|
@@ -54,6 +54,9 @@ img{
|
|
|
outline: none !important;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
/* 文本区域 */
|
|
|
.el-textarea__inner {
|
|
|
height: 100%;
|
|
@@ -86,13 +89,13 @@ img{
|
|
|
align-items: center; /* 垂直居中 */
|
|
|
|
|
|
border-bottom: none;
|
|
|
- padding: 0 5px;
|
|
|
+ padding: 0 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
- background: linear-gradient( 90deg, #00274A 0%, #09154C 100%);
|
|
|
+ background-image: url(@/assets/img/cardinfo-header.png);
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
border-radius: 0px 0px 0px 0px;
|
|
|
- border: 1px solid;
|
|
|
- border-image: linear-gradient(180deg, rgba(61, 115, 255, 0), rgba(61, 115, 255, 1)) 1 1;
|
|
|
}
|
|
|
|
|
|
.custom-card-infoLog .el-card__body {
|
|
@@ -114,6 +117,8 @@ img{
|
|
|
color: #FFFFFF;
|
|
|
border: none;
|
|
|
border-radius: 0px 0px 0px 0px;
|
|
|
+
|
|
|
+ font-size: 12px;
|
|
|
}
|
|
|
|
|
|
.custom-card .el-card__header {
|
|
@@ -142,4 +147,49 @@ img{
|
|
|
border: 2px solid rgba(61,115,255,0.3);
|
|
|
|
|
|
overflow: auto;
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+/* 适用于Webkit内核浏览器(Chrome, Safari, Edge等) */
|
|
|
+::-webkit-scrollbar {
|
|
|
+ width: 10px; /* 垂直滚动条宽度 */
|
|
|
+ height: 10px; /* 水平滚动条高度 */
|
|
|
+}
|
|
|
+
|
|
|
+::-webkit-scrollbar-track {
|
|
|
+ background: transparent; /* 滚动条轨道背景透明 */
|
|
|
+}
|
|
|
+
|
|
|
+::-webkit-scrollbar-thumb {
|
|
|
+ background: rgba(0, 0, 0, 0.3); /* 滚动条滑块半透明 */
|
|
|
+ border-radius: 4px;
|
|
|
+}
|
|
|
+
|
|
|
+::-webkit-scrollbar-thumb:hover {
|
|
|
+ background: rgba(0, 0, 0, 0.4); /* 鼠标悬停时颜色加深 */
|
|
|
+}
|
|
|
+
|
|
|
+.custom-card .content-container {
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+ .content-aside {
|
|
|
+ width: 40%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .content-form {
|
|
|
+ width: 60%;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.custom-switch {
|
|
|
+ transform: scale(0.5);
|
|
|
+}
|
|
|
+
|
|
|
+.custom-switch-colors {
|
|
|
+ --el-switch-on-color: #E1EAFF;
|
|
|
+ --el-switch-off-color: #2CFFFF;
|
|
|
+}
|
|
|
+
|