|
@@ -693,7 +693,7 @@ body {
|
|
|
width: calc(50% - 22px);
|
|
width: calc(50% - 22px);
|
|
|
margin-right: 20px;
|
|
margin-right: 20px;
|
|
|
margin-bottom: 30px;
|
|
margin-bottom: 30px;
|
|
|
- height: 50px;
|
|
|
|
|
|
|
+ height: 70px;
|
|
|
font-weight: 500;
|
|
font-weight: 500;
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
// color: #333333;
|
|
// color: #333333;
|
|
@@ -878,7 +878,7 @@ body {
|
|
|
width: calc(50% - 22px);
|
|
width: calc(50% - 22px);
|
|
|
margin-right: 20px;
|
|
margin-right: 20px;
|
|
|
margin-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
|
- height: 70px;
|
|
|
|
|
|
|
+ height: 80px;
|
|
|
font-weight: 500;
|
|
font-weight: 500;
|
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
|
// color: #333333;
|
|
// color: #333333;
|
|
@@ -1096,7 +1096,7 @@ body {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- // height: 50px;
|
|
|
|
|
|
|
+ min-height: 50px;
|
|
|
// line-height: 60px;
|
|
// line-height: 60px;
|
|
|
|
|
|
|
|
// 未扫描
|
|
// 未扫描
|
|
@@ -1229,6 +1229,362 @@ body {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ /* 当屏幕高度至少为900px时应用的样式 常见分辨率:2560x1440*/
|
|
|
|
|
+ @media screen and (min-height: 900px) and (max-height: 1200px) {
|
|
|
|
|
+ .scan_list {
|
|
|
|
|
+ width: calc(100% - 20px);
|
|
|
|
|
+ margin-left: 20px;
|
|
|
|
|
+ margin-top: 40px;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ // gap: 20px;
|
|
|
|
|
+
|
|
|
|
|
+ .list_item {
|
|
|
|
|
+ width: calc(50% - 22px);
|
|
|
|
|
+ height: clamp(80px, 12vh, 120px);
|
|
|
|
|
+ min-height: 80px;
|
|
|
|
|
+ max-height: 150px;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ font-size: clamp(14px, 1.5vw, 18px);
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ background: #ffffff;
|
|
|
|
|
+ border-radius: 10px;
|
|
|
|
|
+ border: 1px solid #ebeef5;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ background-position: calc(100% - 10px) 10px;
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ background-size: clamp(32px, 3.5vw, 40px) clamp(32px, 3.5vw, 40px);
|
|
|
|
|
+
|
|
|
|
|
+ .list_item_info {
|
|
|
|
|
+ width: calc(100% - 20px);
|
|
|
|
|
+ margin: auto;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ padding: 10px 0;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ font-size: clamp(14px, 1.5vw, 18px);
|
|
|
|
|
+ color: #333333;
|
|
|
|
|
+ padding-top: 10px;
|
|
|
|
|
+ text-align: left;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_number {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ min-height: clamp(40px, 7vh, 60px);
|
|
|
|
|
+
|
|
|
|
|
+ .number_no_scan,
|
|
|
|
|
+ .number_no_exam,
|
|
|
|
|
+ .number_uploaded,
|
|
|
|
|
+ .number_abnormal {
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ font-size: clamp(18px, 2.5vw, 24px);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_no_scan {
|
|
|
|
|
+ color: #2e64fa;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_no_exam {
|
|
|
|
|
+ color: #fb9f34;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_uploaded {
|
|
|
|
|
+ color: #2bc644;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_abnormal {
|
|
|
|
|
+ color: #f56c6c;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_no_icon {
|
|
|
|
|
+ width: clamp(32px, 3.5vw, 40px);
|
|
|
|
|
+ height: clamp(32px, 3.5vw, 40px);
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
|
+ margin-left: 20px;
|
|
|
|
|
+ margin-top: 5px;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_hover {
|
|
|
|
|
+ pointer-events: none;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_scan {
|
|
|
|
|
+ background-image: url("../assets/icon/no_scan_icon.png");
|
|
|
|
|
+ border: 1px solid #2e64fa;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #2e64fa !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_scan:hover {
|
|
|
|
|
+ background-color: rgba(46, 100, 250, 0.1);
|
|
|
|
|
+ background-image: url("../assets/icon/no_scan_icon_hover.png");
|
|
|
|
|
+ border-radius: 10px;
|
|
|
|
|
+ border: 1px solid #2e64fa;
|
|
|
|
|
+ box-shadow: 4px 2px 10px #2e64fa;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #2e64fa !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_exam {
|
|
|
|
|
+ background-image: url("../assets/icon/miss_exam.png");
|
|
|
|
|
+ border: 1px solid #fb9f34;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #fb9f34 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_exam:hover {
|
|
|
|
|
+ background-color: rgba(251, 159, 52, 0.1);
|
|
|
|
|
+ background-image: url("../assets/icon/miss_exam_hover.png");
|
|
|
|
|
+ border-radius: 10px;
|
|
|
|
|
+ border: 1px solid #fb9f34;
|
|
|
|
|
+ box-shadow: 4px 2px 10px #fb9f34;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #fb9f34 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .annormal_icon {
|
|
|
|
|
+ background-image: url("../assets/icon/abnormal_icon.png");
|
|
|
|
|
+ border: 1px solid #f56c6c;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #f56c6c !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .annormal_icon:hover {
|
|
|
|
|
+ background-color: rgba(245, 108, 108, 0.1);
|
|
|
|
|
+ background-image: url("../assets/icon/abnormal_icon_hover.png");
|
|
|
|
|
+ border-radius: 10px;
|
|
|
|
|
+ border: 1px solid #f56c6c;
|
|
|
|
|
+ box-shadow: 4px 2px 10px #f56c6c;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #f56c6c !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .sucess_upload {
|
|
|
|
|
+ background-image: url("../assets/icon/sucess_upload.png");
|
|
|
|
|
+ border: 1px solid #2bc644;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #2bc644 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .sucess_upload:hover {
|
|
|
|
|
+ background-color: rgba(43, 198, 68, 0.1);
|
|
|
|
|
+ background-image: url("../assets/icon/sucess_upload_hover.png");
|
|
|
|
|
+ border-radius: 10px;
|
|
|
|
|
+ border: 1px solid #2bc644;
|
|
|
|
|
+ box-shadow: 4px 2px 10px #2bc644;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #2bc644 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /* 超高分辨率样式 常见分辨率:3840x2160 (4K), 高度>1440px */
|
|
|
|
|
+ @media screen and (min-height: 1200px) {
|
|
|
|
|
+ .scan_list {
|
|
|
|
|
+ width: calc(100% - 40px);
|
|
|
|
|
+ margin-left: 40px;
|
|
|
|
|
+ margin-top: 60px;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ // gap: 30px;
|
|
|
|
|
+
|
|
|
|
|
+ .list_item {
|
|
|
|
|
+ width: calc(50% - 15px);
|
|
|
|
|
+ height: clamp(100px, 15vh, 180px);
|
|
|
|
|
+ min-height: 100px;
|
|
|
|
|
+ max-height: 200px;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ font-size: clamp(16px, 2vw, 24px);
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ background: #ffffff;
|
|
|
|
|
+ border-radius: 15px;
|
|
|
|
|
+ border: 2px solid #ebeef5;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ background-position: calc(100% - 15px) 15px;
|
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
|
+ background-size: clamp(40px, 5vw, 60px) clamp(40px, 5vw, 60px);
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ .list_item_info {
|
|
|
|
|
+ width: calc(100% - 30px);
|
|
|
|
|
+ margin: auto;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ padding: 15px 0;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ font-size: clamp(16px, 2vw, 24px);
|
|
|
|
|
+ color: #333333;
|
|
|
|
|
+ padding-top: 15px;
|
|
|
|
|
+ text-align: left;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_number {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ min-height: clamp(50px, 8vh, 80px);
|
|
|
|
|
+
|
|
|
|
|
+ .number_no_scan,
|
|
|
|
|
+ .number_no_exam,
|
|
|
|
|
+ .number_uploaded,
|
|
|
|
|
+ .number_abnormal {
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ font-size: clamp(22px, 3vw, 32px);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_no_scan {
|
|
|
|
|
+ color: #2e64fa;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_no_exam {
|
|
|
|
|
+ color: #fb9f34;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_uploaded {
|
|
|
|
|
+ color: #2bc644;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_abnormal {
|
|
|
|
|
+ color: #f56c6c;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .number_no_icon {
|
|
|
|
|
+ width: clamp(40px, 5vw, 60px);
|
|
|
|
|
+ height: clamp(40px, 5vw, 60px);
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
|
+ margin-left: 30px;
|
|
|
|
|
+ margin-top: 10px;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_hover {
|
|
|
|
|
+ pointer-events: none;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_scan {
|
|
|
|
|
+ background-image: url("../assets/icon/no_scan_icon.png");
|
|
|
|
|
+ border: 2px solid #2e64fa;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #2e64fa !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_scan:hover {
|
|
|
|
|
+ background-color: rgba(46, 100, 250, 0.1);
|
|
|
|
|
+ background-image: url("../assets/icon/no_scan_icon_hover.png");
|
|
|
|
|
+ border-radius: 15px;
|
|
|
|
|
+ border: 2px solid #2e64fa;
|
|
|
|
|
+ box-shadow: 6px 4px 15px #2e64fa;
|
|
|
|
|
+ transform: translateY(-3px);
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #2e64fa !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_exam {
|
|
|
|
|
+ background-image: url("../assets/icon/miss_exam.png");
|
|
|
|
|
+ border: 2px solid #fb9f34;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #fb9f34 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .no_exam:hover {
|
|
|
|
|
+ background-color: rgba(251, 159, 52, 0.1);
|
|
|
|
|
+ background-image: url("../assets/icon/miss_exam_hover.png");
|
|
|
|
|
+ border-radius: 15px;
|
|
|
|
|
+ border: 2px solid #fb9f34;
|
|
|
|
|
+ box-shadow: 6px 4px 15px #fb9f34;
|
|
|
|
|
+ transform: translateY(-3px);
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #fb9f34 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .annormal_icon {
|
|
|
|
|
+ background-image: url("../assets/icon/abnormal_icon.png");
|
|
|
|
|
+ border: 2px solid #f56c6c;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #f56c6c !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .annormal_icon:hover {
|
|
|
|
|
+ background-color: rgba(245, 108, 108, 0.1);
|
|
|
|
|
+ background-image: url("../assets/icon/abnormal_icon_hover.png");
|
|
|
|
|
+ border-radius: 15px;
|
|
|
|
|
+ border: 2px solid #f56c6c;
|
|
|
|
|
+ box-shadow: 6px 4px 15px #f56c6c;
|
|
|
|
|
+ transform: translateY(-3px);
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #f56c6c !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .sucess_upload {
|
|
|
|
|
+ background-image: url("../assets/icon/sucess_upload.png");
|
|
|
|
|
+ border: 2px solid #2bc644;
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #2bc644 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .sucess_upload:hover {
|
|
|
|
|
+ background-color: rgba(43, 198, 68, 0.1);
|
|
|
|
|
+ background-image: url("../assets/icon/sucess_upload_hover.png");
|
|
|
|
|
+ border-radius: 15px;
|
|
|
|
|
+ border: 2px solid #2bc644;
|
|
|
|
|
+ box-shadow: 6px 4px 15px #2bc644;
|
|
|
|
|
+ transform: translateY(-3px);
|
|
|
|
|
+
|
|
|
|
|
+ .item_info_title {
|
|
|
|
|
+ color: #2bc644 !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.right_button {
|
|
.right_button {
|