xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
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
/* components/steps/index.wxss */
.steps {
  display: flex;
  align-items: center;
  background-color: #ffffff;
}
 
.steps-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(23, 26, 29, 0.40);
}
 
.steps-item-active,
.steps-item-active .steps-item-icon {
  color: var(--main-color);
}
 
.steps-item-active .steps-item-round {
  background-color: var(--main-color);
  color: var(--white);
}
 
.steps-item-line {}
 
.steps-item-hoverLine {
  width: 168rpx;
  border: 1px solid var(--main-color);
}
 
.steps-item-line {
  width: 168rpx;
  border: 1px solid #E5E6EB;
}
 
.steps-item-active .steps-item-number1 {
  background-color: var(--main-color);
  color: var(--white);
}
 
.steps-item-round {
  position: relative;
  width: 60rpx;
  height: 60rpx;
  border-radius: 50%;
  color: #86909C;
  margin-bottom: 8rpx;
  background-color: #F2F3F5;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.steps-item-round1 {
  position: relative;
  width: 60rpx;
  height: 60rpx;
  border-radius: 50%;
  color: #86909C;
  margin-bottom: 8rpx;
  background-color: #e8f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.steps-item-text {
  font-size: 24rpx;
  line-height: 40rpx;
}
 
.steps-item-icon {
  position: absolute;
  z-index: 889;
  top: 50%;
  margin-top: -24rpx;
  right: -88rpx;
  color: #cccccc;
}