管灌系统农户端微信小程序(嘉峪关应用)
zuoxiao
2024-05-30 7123295bac789011a9dad11938997721149a35ce
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* pages/recharge/recharge.wxss */ 
.base-wrapper { 
  background-color: #f5f5f5; 
  width: 100%; 
  height: 100vh; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
 
.user-wrapper { 
  background-color: #1890FF; 
  height: 20vh; 
  padding-left: 10rpx; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-around; 
  padding-top: 20rpx; 
  padding-bottom: 30rpx; 
 
.user-wrapper text { 
  color: #fff; 
  margin-left: 30rpx; 
 
.money-base-wrapper { 
  flex-direction: column; 
  height: 20vh; 
  display: flex; 
  justify-content: space-around; 
  margin-top: 20rpx; 
 
.row { 
  display: flex; 
  justify-content: space-around; 
 
.item { 
  background-color: #fff; 
  border-radius: 5px; 
  width: 100%; 
  height: 10vh; 
  margin-left: 20rpx; 
  margin-top: 30rpx; 
  margin-right: 20rpx; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
 
.item text { 
  color: #2D8BF7; 
 
.money-number { 
  font-size: 40rpx; 
 
.money-label { 
  font-size: 30rpx; 
  margin-left: 5rpx; 
 
.itemactive { 
  background-color: #2D8BF7; 
  border-radius: 5px; 
  width: 100%; 
  height: 10vh; 
  margin-top: 30rpx; 
  margin-left: 20rpx; 
  margin-right: 20rpx; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
 
.itemactive text { 
  color: #fff; 
 
.money-wrapper { 
  display: flex; 
  align-items: flex-end; 
  /* 底部对齐 */ 
  justify-content: center; 
  /* 水平居中 */ 
 
.rechage-view { 
  margin-top: 40rpx;
  /* 占据剩余的全部高度 */ 
  flex-direction: column; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 100%; 
.rechage-view text { 
  font-size: 30rpx; 
  padding-top: 10rpx; 
  padding-bottom: 10rpx; 
 
.rechageList-view { 
  margin-top: 40rpx;
  width: 50%; 
  background-color: #fff; 
  display: flex; 
  margin-left: 20rpx; 
  margin-right: 20rpx; 
  align-items: center; 
  justify-content: center; 
  margin-top: 30rpx; 
  border-radius: 90px; 
  border: 2px solid #2D8BF7; 
  /* 添加蓝色的边框 */ 
  padding-top: 15rpx; 
  padding-bottom: 15rpx; 
 
.rechage { 
  display: flex; 
  width: 80%; 
  background-color: #2D8BF7; 
  align-items: center; 
  justify-content: center; 
  padding-top: 15rpx; 
  padding-bottom: 15rpx; 
  border-radius: 90px; 
  margin-top: 45rpx; 
 
.rechageactive { 
  display: flex; 
  margin-top: 45rpx; 
  align-items: center; 
  justify-content: center; 
  width: 80%; 
  background-color: #bababa; 
  padding-top: 15rpx; 
  padding-bottom: 15rpx; 
  border-radius: 90px; 
 
 
 
.rechageactive text { 
  color: #fff; 
 
.rechage text { 
  color: #fff; 
}