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
| .pay-result {
| display: flex;
| flex-direction: column;
| align-items: center;
| width: 100%;
| }
|
| .pay-result .pay-status {
| margin-top: 100rpx;
| font-size: 48rpx;
| line-height: 72rpx;
| font-weight: bold;
| color: #333333;
| display: flex;
| align-items: center;
| }
| .pay-result .pay-status text {
| padding-left: 12rpx;
| }
| .pay-result .pay-money {
| color: #666666;
| font-size: 28rpx;
| line-height: 48rpx;
| margin-top: 28rpx;
| display: flex;
| align-items: baseline;
| }
|
| .pay-result .pay-money .pay-money__price {
| font-size: 36rpx;
| line-height: 48rpx;
| color: #fa4126;
| }
| .pay-result .btn-wrapper {
| margin-top: 48rpx;
| padding: 12rpx 32rpx;
| display: flex;
| align-items: center;
| justify-content: space-between;
| width: 100%;
| box-sizing: border-box;
| }
|
| .pay-result .btn-wrapper .status-btn {
| height: 88rpx;
| width: 334rpx;
| border-radius: 44rpx;
| border: 2rpx solid #fa4126;
| color: #fa4126;
| font-size: 28rpx;
| font-weight: bold;
| line-height: 88rpx;
| text-align: center;
| }
|
|