| 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
 | | /* pages/wallet/wallte.wxss */ |  |   |  |   |  | .base-wrapper { |  |   background-color: #f5f5f5; |  |   width: 100%; |  |   height: 100vh; |  |   overflow: hidden; |  |   /* 防止底部区域滚动 */ |  |   display: flex; |  |   flex-direction: column; |  | } |  |   |  | .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: 15rpx; |  |   padding-left: 30rpx; |  |   padding-right: 30rpx; |  |   justify-content: center; |  |   text-align: 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; |  | } |  |   |  | .list-item { |  |   background-color: #fff; |  |   margin-top: 10rpx; |  |   display: flex; |  |   justify-content: space-between; |  |   align-items: center; |  |   padding-left: 30rpx; |  |   padding-right: 30rpx; |  |   padding-top: 40rpx; |  |   padding-bottom: 40rpx; |  |   margin-left: 20rpx; |  |   margin-right: 20rpx; |  | } |  |   |  | .scroll-view { |  |   margin-top: 30rpx; |  |   flex: 1; |  |   overflow-y: auto; |  |   /* 允许垂直滚动 */ |  |   z-index: 0; |  | } |  |   |  | .order-right { |  |   display: flex; |  |   flex-direction: column; |  |   align-items: center; |  | } |  |   |  | .money-wrapper text { |  |   font-size: 50rpx; |  |   color: #1890FF; |  | } |  |   |  | .order-state { |  |   font-size: 30rpx; |  |   color: #000000; |  |   opacity: 0.7; |  |    |  | } |  | .order-code text{ |  |   font-size: 35rpx; |  |   color: #000000; |  | } |  | .order-time{ |  |   font-size: 35rpx; |  |   color: #000000; |  |   opacity: 0.7; |  | } | 
 |