depositProcess.wxss
835 Bytes
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
/* component/depositProcess/depositProcess.wxss */
.deposit-process {
margin-top: 60rpx;
margin-bottom: 40rpx;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: white;
}
.content {
display: flex;
flex-direction: column;
flex: 1;
}
.process {
display: flex;
flex-direction: row;
align-items: center;
}
.process-image-container {
display: flex;
}
.process-image {
width: 30rpx;
height: 30rpx;
margin-left: 20rpx;
margin-right: 20rpx;
}
.process-line {
background-color: #e0e0e0;
height: 2rpx;
width: 80rpx;
}
.process-text {
font-size: 24rpx;
margin-top: 10rpx;
text-align: center;
}
.process-price {
font-size: 24rpx;
margin-bottom: 10rpx;
text-align: center;
}
.active {
color: #D0021B;
}
.undo {
color: #e0e0e0;
}