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
| /* pages/wallet/wallte.wxss */
|
|
| .base-wrapper {
| background-color: #f5f5f5;
| }
|
| .top-wrapper {
| background-color: #1890FF;
| height: 30vh;
| padding-left: 40rpx;
| display: flex;
| flex-direction: column;
| border-radius: 5rpx;
| margin-left: 20rpx;
| margin-right: 20rpx;
| justify-content: space-around;
|
| }
|
|
| .top-one{
| display: flex;
| flex-direction: row;
| justify-content: space-between;
| height: 20vh;
| }
| .top-wallet-bg{
| width: 40%;
| height: 100%;
| }
| .top-wallet-bg image{
| width: 100%;
| height: 100%;
| }
|
| .top-money-button{
| display: flex;
| flex-direction: column;
| justify-content: space-around;
| width: 60%;
| }
|
|
|
| .top-wrapper-button{
| display: flex;
| flex-direction: row;
| justify-content: space-between;
| margin-right: 30rpx;
| }
|
| .button-refund{
| font-size: 35rpx;
| border-radius: 90px;
| width: 30%;
| border: 2px solid #fff;
| display: flex;
| align-items: center;
| padding-top: 10rpx;
| padding-bottom: 10rpx;
| padding-left: 30rpx;
| padding-right: 30rpx;
| justify-content: center;
| color: #fff;
| }
| .button-recharge{
| color: #000;
| font-size: 35rpx;
| border-radius: 90px;
| width: 30%;
| border: 2px solid #fff;
| display: flex;
| align-items: center;
| justify-content: center;
| background-color: #fff;
| padding-top: 10rpx;
| padding-bottom: 10rpx;
| padding-left: 30rpx;
| padding-right: 30rpx;
| }
|
|