22
schangxiang@126.com
2025-05-21 05c47e0a832bbd2b8bafb732fc55c1ef8e9b97e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.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;
}