.content {
|
padding: 20px;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
}
|
|
.timeItem {
|
margin-bottom: 16px;
|
display: flex;
|
align-items: center;
|
|
&:last-child {
|
margin-bottom: 0;
|
}
|
}
|
|
.label {
|
color: #666;
|
margin-right: 8px;
|
}
|
|
.time {
|
font-size: 16px;
|
color: #333;
|
}
|
|
.processContent {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
width: 100%;
|
height: 10px;
|
margin: 10px 0;
|
margin-top: 20px;
|
}
|
|
.processItem {
|
display: flex;
|
justify-content: flex-start;
|
align-items: center;
|
height: 20px;
|
border-radius: 15px;
|
background-color: #f0f0f0;
|
margin: 10px 0;
|
width: calc(100% - 70px);
|
}
|
|
.process {
|
height: 20px;
|
width: 0%;
|
border-radius: 5px;
|
background-color: #5a97ff;
|
transition: width 0.3s ease-in-out;
|
position: relative;
|
border-radius: 15px;
|
overflow: hidden;
|
|
&::after {
|
content: '';
|
position: absolute;
|
top: 0;
|
left: 0;
|
width: 100%;
|
height: 100%;
|
background: linear-gradient(
|
90deg,
|
rgba(255, 255, 255, 0) 0%,
|
rgba(255, 255, 255, 0.3) 50%,
|
rgba(255, 255, 255, 0) 100%
|
);
|
animation: shimmer 1.5s infinite;
|
}
|
}
|
|
@keyframes shimmer {
|
0% {
|
transform: translateX(-100%);
|
}
|
100% {
|
transform: translateX(100%);
|
}
|
}
|
|
.processTitle {
|
font-size: 14px;
|
color: #333;
|
}
|