|
|
@@ -7,10 +7,18 @@ html {
|
|
|
height: 100%;
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
+/* 主题色 */
|
|
|
+:root {
|
|
|
+ --themeColor: #002c15;
|
|
|
+ --themeColor2: #fddb77;
|
|
|
+ --boxBcaColor: #f7efed;
|
|
|
+}
|
|
|
+
|
|
|
body {
|
|
|
- font: 1em/1.4 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB', 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif;
|
|
|
+ font: 1em/1.4 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB',
|
|
|
+ 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif;
|
|
|
height: 100%;
|
|
|
- color: black;
|
|
|
+ color: var(--themeColor) !important;
|
|
|
}
|
|
|
i {
|
|
|
font-style: normal;
|
|
|
@@ -33,11 +41,7 @@ textarea {
|
|
|
resize: none !important;
|
|
|
min-height: 100px !important;
|
|
|
}
|
|
|
-/* 主题色 */
|
|
|
-:root {
|
|
|
- --themeColor: #b02b23;
|
|
|
- --themeColor2: #f7c481;
|
|
|
-}
|
|
|
+
|
|
|
/* 找不到页面 */
|
|
|
.noFindPage {
|
|
|
opacity: 0;
|
|
|
@@ -68,7 +72,6 @@ textarea {
|
|
|
/* antd分页器样式 */
|
|
|
/* 表格的图片居中 */
|
|
|
/* antd图片预览组件 */
|
|
|
- /* antd表格居中 */
|
|
|
}
|
|
|
#root a {
|
|
|
text-decoration: none;
|
|
|
@@ -107,9 +110,6 @@ textarea {
|
|
|
#root .ant-image {
|
|
|
display: none;
|
|
|
}
|
|
|
-#root .ant-table-cell {
|
|
|
- text-align: center !important;
|
|
|
-}
|
|
|
#root #A2Table3 .ant-table-row-expand-icon {
|
|
|
background-color: var(--themeColor);
|
|
|
color: #fff;
|
|
|
@@ -135,20 +135,20 @@ textarea {
|
|
|
font-weight: 700;
|
|
|
position: absolute;
|
|
|
z-index: 11;
|
|
|
- top: -56px;
|
|
|
+ top: -73px;
|
|
|
left: -18px;
|
|
|
padding-left: 40px;
|
|
|
- color: var(--themeColor);
|
|
|
+ color: var(--themeColor2);
|
|
|
+ text-shadow: 1px 1px 1px black;
|
|
|
+ letter-spacing: 2px;
|
|
|
}
|
|
|
.pageTitle::before {
|
|
|
position: absolute;
|
|
|
- left: 20px;
|
|
|
- top: 50%;
|
|
|
- transform: translateY(-50%);
|
|
|
- content: '';
|
|
|
- width: 6px;
|
|
|
- height: 20px;
|
|
|
- background-color: var(--themeColor);
|
|
|
+ left: 0px;
|
|
|
+ content: '|';
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: 700;
|
|
|
+ top: -3px;
|
|
|
}
|
|
|
.mySorrl::-webkit-scrollbar {
|
|
|
/*滚动条整体样式*/
|
|
|
@@ -177,3 +177,16 @@ textarea {
|
|
|
height: 100%;
|
|
|
text-align: center;
|
|
|
}
|
|
|
+.ant-table-body {
|
|
|
+ background-color: var(--boxBcaColor) !important;
|
|
|
+}
|
|
|
+/* antd表格居中 */
|
|
|
+.ant-table-cell {
|
|
|
+ text-align: center !important;
|
|
|
+}
|
|
|
+.ant-table-header .ant-table-cell {
|
|
|
+ color: var(--themeColor) !important;
|
|
|
+}
|
|
|
+.ant-table-body .ant-table-cell {
|
|
|
+ border-color: #ccc !important;
|
|
|
+}
|