This commit is contained in:
huangyaohui 2026-03-19 15:24:10 +08:00
parent 60187caaf3
commit e5fa1a99de
1 changed files with 35 additions and 11 deletions

View File

@ -654,7 +654,7 @@ const effectEvaluation = ref({
.process-item {
position: relative;
padding-left: 26px;
padding-left: 24px;
flex: 1;
min-height: 0;
display: flex;
@ -664,11 +664,11 @@ const effectEvaluation = ref({
.process-item::before {
content: '';
position: absolute;
left: 12px;
top: 22px;
bottom: -8px;
width: 2px;
background: #6d95f4;
left: 10px;
top: 20px;
bottom: -6px;
width: 1px;
background: #8ba9eb;
}
.process-item:last-child::before {
@ -686,13 +686,14 @@ const effectEvaluation = ref({
.process-number {
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 20px;
border-radius: 50%;
border: 2px solid #6a8df1;
background: #eef3ff;
border: 1px solid #6a8df1;
background: #f2f6ff;
color: #6a8df1;
font-size: 14px;
font-size: 13px;
line-height: 1;
font-family: 'AlibabaPuHuiTi-2-85-Bold';
display: flex;
@ -700,6 +701,26 @@ const effectEvaluation = ref({
justify-content: center;
}
.process-item.done .process-number {
border-color: #6a8df1;
background: #f7faff;
color: #5f84ea;
}
.process-item.processing .process-number {
border-color: #3f74e8;
background: #3f74e8;
color: #fff;
}
.process-item.pending .process-number {
border-radius: 4px;
border: 1px dashed #b8c4db;
background: #f6f8fc;
color: #8ea0c5;
font-size: 12px;
}
.process-title {
font-size: 12px;
color: #2b313a;
@ -864,21 +885,24 @@ const effectEvaluation = ref({
}
.icon-circle {
width: 40px;
height: 40px;
width: 50px;
height: 50px;
border-radius: 50%;
}
.rescue-metrics .rescue-item:nth-of-type(1) .rescue-left .icon-circle {
background: url("@/assets/emergency/平均速度.png") no-repeat center;
background-size: cover;
}
.rescue-metrics .rescue-item:nth-of-type(2) .rescue-left .icon-circle {
background: url("@/assets/emergency/平均行程时间.png") no-repeat center;
background-size: cover;
}
.rescue-metrics .rescue-item:nth-of-type(3) .rescue-left .icon-circle {
background: url("@/assets/emergency/效率提升.png") no-repeat center;
background-size: cover;
}
.icon-text {