管灌系统农户端微信小程序(嘉峪关应用)
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
/* pages/my/my.wxss */
 
/* pages/home/home.wxss */
.base-wrapper {
  background-color: #f5f5f5;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* 防止底部区域滚动 */
  display: flex;
  flex-direction: column;
}
 
.head-wrapper {
  background-color: #1890FF;
  height: 30vh;
  display: grid;
  flex-direction: column;
  align-items: center;
  border-bottom-left-radius: 5rpx;
  border-bottom-right-radius: 5rpx;
  z-index: 1;
}
 
.head-top {
  margin-top: 40rpx;
  display: flex;
  align-items: center;
  /* 在纵向方向上居中对齐 */
}
 
 
.head-text-wrapper {
  display: flex;
  flex-direction: column;
  margin-left: 30rpx;
}
 
.head-text-wrapper text {
  margin-bottom: 10rpx;
  color: #fff;
}
 
.balance-label {
  margin-bottom: 40rpx;
  color: #fff;
  font-size: 35rpx;
}
 
.center-wrapper {
  margin-top: 30rpx;
  margin-right: 20rpx;
  margin-left: 20rpx;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
 
 
  justify-content: space-around;
  z-index: 1;
  height: 30vh;
  /* 使 center-wrapper 在头部之上 */
}
 
.center-view {
  display: flex;
  flex-direction: column;
  /* 在纵向上排列子元素 */
  align-items: center;
  /* 在纵向上居中显示子元素 */
  justify-content: center;
  /* 在横向和纵向上都居中显示子元素 */
}
 
.center-view text {
  margin-top: 15rpx;
  font-size: 30rpx;
}
 
.bottom-wrapper {
  margin-right: 20rpx;
  margin-left: 20rpx;
  display: flex;
  flex-direction: column;
  margin-top: 48vh;
}
 
.scroll-view {
  flex: 1;
  overflow-y: auto;
  /* 允许垂直滚动 */
  z-index: 0;
  /* 确保 scroll-view 在头部和 center-wrapper 之下 */
}
 
 
 
.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: 20rpx;
  padding-bottom: 20rpx;
 
}
 
.list-item text {
  font-size: 30rpx;
}
 
.list-item image {
  width: 80rpx;
  height: 80rpx;
}
 
.list-item-piping {
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.bottom-title {
  background-color: #fff;
  padding-left: 30rpx;
  padding-top: 30rpx;
  padding-bottom: 30rpx;
  margin-top: 60rpx;
}
.item {
  background-color: #fff;
  padding-left: 30rpx;
  padding-top: 30rpx;
  padding-bottom: 30rpx;
  margin-top: 10rpx;
}
text{
  color: #000;
  font-size: 38rpx;
}