管灌系统农户端微信小程序(嘉峪关应用)
zuoxiao
2024-02-26 3f7ec892d68f71e996489d14d9918dc332281b1e
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
.t-float-left {
  float: left;
}
.t-float-right {
  float: right;
}
@keyframes tdesign-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.hotspot-expanded.relative {
  position: relative;
}
.hotspot-expanded::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: scale(1.5);
}
.t-action-sheet__content {
  color: var(--td-action-sheet-color, var(--td-font-gray-1, rgba(0, 0, 0, 0.9)));
  border-top-left-radius: var(--td-action-sheet-border-radius, var(--td-radius-extra-large, 24rpx));
  border-top-right-radius: var(--td-action-sheet-border-radius, var(--td-radius-extra-large, 24rpx));
  background-color: var(--td-bg-color-container, var(--td-font-white-1, #ffffff));
  overflow: hidden;
}
.t-action-sheet__content--grid {
  padding-top: 16rpx;
}
.t-action-sheet__content:focus {
  outline: 0;
}
.t-action-sheet__grid {
  padding-bottom: 16rpx;
}
.t-action-sheet__grid--swiper {
  padding-bottom: 48rpx;
}
.t-action-sheet__description {
  color: var(--td-action-sheet-description-color, var(--td-font-gray-3, rgba(0, 0, 0, 0.4)));
  line-height: 44rpx;
  font-size: 28rpx;
  text-align: var(--td-action-sheet-text-align, center);
  padding: 24rpx 32rpx;
  position: relative;
}
.t-action-sheet__description:focus {
  outline: 0;
}
.t-action-sheet__description::after {
  content: '';
  display: block;
  position: absolute;
  top: unset;
  bottom: 0;
  left: unset;
  right: unset;
  background-color: var(--td-action-sheet-border-color, var(--td-gray-color-1, #f3f3f3));
}
.t-action-sheet__description::after {
  height: 1px;
  left: 0;
  right: 0;
  transform: scaleY(0.5);
}
.t-action-sheet__description--left {
  text-align: left;
}
.t-action-sheet__description--left::after {
  left: 32rpx;
}
.t-action-sheet__list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: var(--td-action-sheet-list-item-height, 112rpx);
  padding: 0 32rpx;
}
.t-action-sheet__list-item::after {
  content: '';
  display: block;
  position: absolute;
  top: unset;
  bottom: 0;
  left: unset;
  right: unset;
  background-color: var(--td-action-sheet-border-color, var(--td-gray-color-1, #f3f3f3));
}
.t-action-sheet__list-item::after {
  height: 1px;
  left: 0;
  right: 0;
  transform: scaleY(0.5);
}
.t-action-sheet__list-item:focus {
  outline: 0;
}
.t-action-sheet__list-item--left {
  justify-content: start;
}
.t-action-sheet__list-item--left::after {
  left: 32rpx;
}
.t-action-sheet__list-item--disabled {
  color: var(--td-action-sheet-list-item-disabled-color, var(--td-font-gray-4, rgba(0, 0, 0, 0.26)));
}
.t-action-sheet__list-item-text {
  font-size: var(--td-font-size-m, 32rpx);
  word-wrap: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-action-sheet__list-item-icon {
  margin-right: 16rpx;
}
.t-action-sheet__list-item-icon--suffix {
  margin-left: auto;
}
.t-action-sheet__swiper-wrap {
  margin-top: 8rpx;
  position: relative;
}
.t-action-sheet__footer {
  background-color: var(--td-bg-color-container, var(--td-font-white-1, #ffffff));
}
.t-action-sheet__gap-list {
  height: 16rpx;
  background-color: var(--td-action-sheet-border-color, var(--td-gray-color-1, #f3f3f3));
}
.t-action-sheet__gap-grid {
  height: 1rpx;
  background-color: var(--td-action-sheet-border-color, var(--td-gray-color-1, #f3f3f3));
}
.t-action-sheet__cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--td-action-sheet-cancel-color, var(--td-font-gray-1, rgba(0, 0, 0, 0.9)));
  height: var(--td-action-sheet-cancel-height, 96rpx);
}
.t-action-sheet__dots {
  position: absolute;
  left: 50%;
  bottom: 32rpx;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
}
.t-action-sheet__dots-item {
  width: 16rpx;
  height: 16rpx;
  background-color: #dcdcdc;
  border-radius: 50%;
  margin: 0 16rpx;
  transition: all 0.4s ease-in;
}
.t-action-sheet__dots-item.t-is-active {
  background-color: #0052d9;
}