From ac4341ea6b66ae02427d39d35f41d42d78b2eb2e Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期五, 14 二月 2025 10:08:32 +0800
Subject: [PATCH] #

---
 zy-asrs-admin/src/assets/main.css |   83 ++++++++++++++++++++++++++++++++++++++---
 1 files changed, 77 insertions(+), 6 deletions(-)

diff --git a/zy-asrs-admin/src/assets/main.css b/zy-asrs-admin/src/assets/main.css
index 3273d31..db794de 100644
--- a/zy-asrs-admin/src/assets/main.css
+++ b/zy-asrs-admin/src/assets/main.css
@@ -8,6 +8,7 @@
 .main .main-sider {
   overflow-x: hidden;
   overflow-y: scroll;
+  user-select: none;
 }
  
 .main .main-sider::-webkit-scrollbar {
@@ -49,6 +50,10 @@
   color: #333333 !important;
 }
 
+.triggerLarge {
+  font-size: 18px !important;
+}
+
 .logo {
   height: 50px;
   /* background: rgba(255, 255, 255, 0.3); */
@@ -64,6 +69,7 @@
 .header-top {
   display: flex;
   justify-content: space-between;
+  margin-bottom: 10px;
 }
 
 .header-top-left {
@@ -95,13 +101,67 @@
 }
 
 .tabs-fixed {
+  width: 100%;
   position: relative;
   top: -64px;
   left: -24px;
   display: flex;
 }
 
+.tabs-arrow-left {
+  position: absolute;
+
+  width: 40px;
+  height: 30px;
+  background: #fff;
+  display: flex;
+  justify-content: space-evenly;
+  align-items: center;
+  padding: 20px 0px;
+  cursor: pointer;
+  margin-right: 5px;
+  user-select: none;
+}
+
+.tabs-arrow-right {
+  position: absolute;
+  right: -54px;
+
+  width: 40px;
+  height: 30px;
+  background: #fff;
+  display: flex;
+  justify-content: space-evenly;
+  align-items: center;
+  padding: 20px 0px;
+  cursor: pointer;
+  margin-right: 5px;
+  user-select: none;
+}
+
+.tabs-arrow-left {
+  float: left;
+}
+
+.tabs-content {
+  width: 97%;
+  display: flex;
+  margin-left: 45px;
+  margin-right: 25px;
+  overflow-x: scroll;
+  will-change: transform;
+  transition: transform 0.3s;
+  scrollbar-width: none; /* Firefox */
+  -ms-overflow-style: none; /* IE and Edge */
+}
+
+.tabs-content-item {
+  flex: 10;
+  display: flex;
+}
+
 .tabs-item {
+  min-width: 120px;
   height: 30px;
   background: #fff;
   display: flex;
@@ -114,8 +174,8 @@
 }
 
 .tabs-item>div:nth-child(1) {
-  margin-right: 10px;
-  margin-left: 10px;
+  margin-right: 5px;
+  margin-left: 5px;
 }
 
 .tabs-item>div:nth-child(1):hover {
@@ -123,13 +183,13 @@
 }
 
 .tabs-item>div:nth-child(2) {
-  margin-right: 10px;
-  margin-left: 10px;
+  margin-right: 5px;
+  margin-left: 5px;
 }
 
 .tabs-item>div:nth-child(3) {
-  margin-right: 10px;
-  margin-left: 10px;
+  margin-right: 5px;
+  margin-left: 5px;
 }
 
 .tabs-item>div:nth-child(3):hover {
@@ -156,7 +216,18 @@
 
 .content-view {
   margin: 45px 16px;
+  margin-top: 60px;
   padding: 24px;
   background: #fff;
   min-height: 280px;
+}
+
+.form-block {
+  display: flex;
+  justify-content: space-between;
+  flex-wrap: wrap;
+}
+
+.form-block .ant-form-item {
+  width: 100%;
 }
\ No newline at end of file

--
Gitblit v1.9.1