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
| page {
| min-height: 100%;
| width: 100%;
| background: #fff;
| }
|
| .container {
| height: 100%;
| background: #fff;
| }
|
| .pay-result {
| background: #fff;
| }
|
| .pay-result .msg {
| text-align: center;
| margin: 100rpx auto;
| color: #2bab25;
| font-size: 36rpx;
| }
|
| .pay-result .btns {
| display: flex;
| align-items: center;
| justify-content: center;
| }
|
| .pay-result .btn {
| text-align: center;
| height: 80rpx;
| margin: 0 20rpx;
| width: 200rpx;
| line-height: 78rpx;
| border: 1px solid #868686;
| color: #000;
| border-radius: 5rpx;
| }
|
| .pay-result .error .msg {
| color: #b4282d;
| margin-bottom: 60rpx;
| }
|
| .pay-result .error .tips {
| color: #7f7f7f;
| margin-bottom: 70rpx;
| }
|
| .pay-result .error .tips .p {
| font-size: 24rpx;
| line-height: 42rpx;
| text-align: center;
| }
|
| .pay-result .error .tips .p {
| line-height: 42rpx;
| text-align: center;
| }
|
|