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
| /* 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;
| }
|
| .steps-item-active,
| .steps-item-active .steps-item-icon {
| color: var(--main-color);
| }
|
| .steps-item-active .steps-item-round {
| background-color: var(--red-1);
| color: var(--main-color);
| }
|
| .steps-item-round {
| position: relative;
| width: 60rpx;
| height: 60rpx;
| border-radius: 50%;
| color: #646566;
| margin-bottom: 8rpx;
| background-color: #f2f2f2;
| display: flex;
| align-items: center;
| justify-content: center;
| }
|
| .steps-item-text {
| font-size: 24rpx;
| line-height: 40rpx;
| }
|
| .steps-item-icon {
| position: absolute;
| z-index: 999;
| top: 50%;
| margin-top: -16rpx;
| right: -16rpx;
| color: #cccccc;
| }
|
|