unika-components 1.1.89 → 1.1.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8,56 +8,95 @@
|
|
|
8
8
|
max-height: 100%;
|
|
9
9
|
width: 100%;
|
|
10
10
|
}
|
|
11
|
-
.ele-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
11
|
+
.ele-effect {
|
|
12
|
+
will-change: transform;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ele-effect .effect-wrap {
|
|
16
|
+
position: relative;
|
|
17
|
+
width: 100%;
|
|
18
|
+
height: 100%;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.particle {
|
|
22
|
+
position: absolute;
|
|
23
|
+
background-repeat: no-repeat;
|
|
24
|
+
background-size: contain;
|
|
25
|
+
animation-name: falling;
|
|
26
|
+
animation-timing-function: linear;
|
|
27
|
+
animation-iteration-count: infinite;
|
|
28
|
+
will-change: transform;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@keyframes falling {
|
|
32
|
+
0% {
|
|
33
|
+
transform: translateY(0) rotate(0deg);
|
|
34
|
+
opacity: 1;
|
|
19
35
|
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
position: relative;
|
|
23
|
-
display: block;
|
|
36
|
+
80% {
|
|
37
|
+
opacity: 0.8;
|
|
24
38
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
left: 0;
|
|
29
|
-
right: 0;
|
|
30
|
-
top: 0;
|
|
31
|
-
bottom: 0;
|
|
39
|
+
100% {
|
|
40
|
+
transform: translateY(100vh) rotate(360deg);
|
|
41
|
+
opacity: 0;
|
|
32
42
|
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
43
|
+
}
|
|
44
|
+
.ele-lottie .ele-lotwrap {
|
|
45
|
+
overflow: hidden
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.ele-effect .effect-wrap {
|
|
49
|
+
position: relative;
|
|
38
50
|
overflow: hidden;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.ele-img .ele-bg-wrap {
|
|
42
51
|
width: 100%;
|
|
43
|
-
height: 100
|
|
52
|
+
height: 100%
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.ele-effect .e-small {
|
|
56
|
+
position: absolute;
|
|
57
|
+
width: 24px;
|
|
58
|
+
height: 24px;
|
|
59
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
44
60
|
background-size: cover;
|
|
45
|
-
background-position: 50% 50%;
|
|
46
61
|
background-repeat: no-repeat;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
62
|
+
-webkit-transform-origin: center;
|
|
63
|
+
transform-origin: center;
|
|
64
|
+
-webkit-animation: snow 5s linear infinite;
|
|
65
|
+
animation: snow 5s linear infinite
|
|
66
|
+
}.call {
|
|
67
|
+
position: absolute;
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
user-select: none;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.call .ani-wrap {
|
|
73
|
+
display: flex;
|
|
74
|
+
justify-content: center;
|
|
75
|
+
align-items: center;
|
|
76
|
+
width: 100%;
|
|
77
|
+
height: 100%;
|
|
78
|
+
overflow: hidden;
|
|
79
|
+
transition: opacity 0.2s;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.call .ani-wrap:hover {
|
|
83
|
+
opacity: 0.9;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.call-content {
|
|
87
|
+
display: flex;
|
|
88
|
+
align-items: center;
|
|
89
|
+
justify-content: center;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.btn-text {
|
|
93
|
+
margin-left: 10px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
.hb-tel:before {
|
|
98
|
+
content: "\E642";
|
|
99
|
+
}
|
|
61
100
|
.element-video {
|
|
62
101
|
position: absolute;
|
|
63
102
|
overflow: hidden;
|
|
@@ -133,298 +172,33 @@
|
|
|
133
172
|
width: 100%;
|
|
134
173
|
height: 100%;
|
|
135
174
|
background: rgba(0,0,0,0.05);
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
user-select: none;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.call .ani-wrap {
|
|
143
|
-
display: flex;
|
|
144
|
-
justify-content: center;
|
|
145
|
-
align-items: center;
|
|
146
|
-
width: 100%;
|
|
147
|
-
height: 100%;
|
|
148
|
-
overflow: hidden;
|
|
149
|
-
transition: opacity 0.2s;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.call .ani-wrap:hover {
|
|
153
|
-
opacity: 0.9;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.call-content {
|
|
157
|
-
display: flex;
|
|
158
|
-
align-items: center;
|
|
159
|
-
justify-content: center;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.btn-text {
|
|
163
|
-
margin-left: 10px;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
.hb-tel:before {
|
|
168
|
-
content: "\E642";
|
|
169
|
-
}#audio {
|
|
170
|
-
position: absolute;
|
|
171
|
-
right: 10px;
|
|
172
|
-
top: 10px;
|
|
173
|
-
z-index: 103;
|
|
174
|
-
width: 30px;
|
|
175
|
-
height: 30px;
|
|
176
|
-
display: flex;
|
|
177
|
-
align-items: center;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
#audio .mrotate {
|
|
181
|
-
animation: mrotate 5s linear infinite;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
@keyframes mrotate {
|
|
185
|
-
to {
|
|
186
|
-
transform: rotate(1turn);
|
|
175
|
+
}/* Iconfont definition */
|
|
176
|
+
.icon-danmuliebiao1:before {
|
|
177
|
+
content: "\E68A";
|
|
187
178
|
}
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
width: 100%;
|
|
192
|
-
height: 100%;
|
|
193
|
-
display: flex;
|
|
194
|
-
align-items: center;
|
|
195
|
-
justify-content: center;
|
|
196
|
-
color: #fff;
|
|
197
|
-
background: #666;
|
|
198
|
-
border-radius: 50%;
|
|
199
|
-
overflow: hidden;
|
|
200
|
-
cursor: pointer;
|
|
201
|
-
transition: all 0.3s ease;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
#audio .audio.a-border {
|
|
205
|
-
border: 1px solid #fff;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
#audio .audio .music-icon {
|
|
209
|
-
display: block;
|
|
210
|
-
width: 60%;
|
|
211
|
-
height: 60%;
|
|
212
|
-
object-fit: contain;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
#audio .audio .iconfont {
|
|
216
|
-
font-size: 2opx;
|
|
217
|
-
line-height: 1;
|
|
218
|
-
}
|
|
219
|
-
#audio .icon-cancel {
|
|
220
|
-
position: absolute;
|
|
221
|
-
width: 100%;
|
|
222
|
-
height: 100%;
|
|
223
|
-
border-radius: 50%;
|
|
224
|
-
overflow: hidden;
|
|
225
|
-
padding: 15px 0;
|
|
226
|
-
}
|
|
227
|
-
#audio .icon-cancel .icon-h {
|
|
228
|
-
transform: rotate(45deg);
|
|
229
|
-
width: 100%;
|
|
230
|
-
height: 2px;
|
|
231
|
-
background: #fff;
|
|
179
|
+
|
|
180
|
+
.icon-cuowu2:before {
|
|
181
|
+
content: "\E65E";
|
|
232
182
|
}
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
height: 100%;
|
|
253
|
-
-webkit-box-align: center;
|
|
254
|
-
-ms-flex-align: center;
|
|
255
|
-
align-items: center;
|
|
256
|
-
-webkit-box-pack: center;
|
|
257
|
-
-ms-flex-pack: center;
|
|
258
|
-
justify-content: center
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.count-down .finish-cont {
|
|
262
|
-
width: 100%
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.count-down .count-flip {
|
|
266
|
-
display: -webkit-box;
|
|
267
|
-
display: -ms-flexbox;
|
|
268
|
-
display: flex;
|
|
269
|
-
height: 100%;
|
|
270
|
-
-webkit-box-align: center;
|
|
271
|
-
-ms-flex-align: center;
|
|
272
|
-
align-items: center;
|
|
273
|
-
-webkit-box-pack: center;
|
|
274
|
-
-ms-flex-pack: center;
|
|
275
|
-
justify-content: center
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.count-down .count-flip .numscroll {
|
|
279
|
-
-webkit-animation: numscroll .4s ease-in-out;
|
|
280
|
-
animation: numscroll .4s ease-in-out;
|
|
281
|
-
-webkit-animation-fill-mode: both;
|
|
282
|
-
animation-fill-mode: both
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.count-down .count-flip .numscroll .curr-num {
|
|
286
|
-
-webkit-transition: all .3s ease-in-out;
|
|
287
|
-
transition: all .3s ease-in-out;
|
|
288
|
-
opacity: .6;
|
|
289
|
-
-webkit-transform: scale(.5)!important;
|
|
290
|
-
transform: scale(.5)!important
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
@-webkit-keyframes numscroll {
|
|
294
|
-
0% {
|
|
295
|
-
-webkit-transform: translateZ(0);
|
|
296
|
-
transform: translateZ(0)
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
to {
|
|
300
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
301
|
-
transform: translate3d(0,100%,0)
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
@keyframes numscroll {
|
|
306
|
-
0% {
|
|
307
|
-
-webkit-transform: translateZ(0);
|
|
308
|
-
transform: translateZ(0)
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
to {
|
|
312
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
313
|
-
transform: translate3d(0,100%,0)
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
.count-down .count-flip .c-com {
|
|
318
|
-
min-width: 50px;
|
|
319
|
-
height: auto;
|
|
320
|
-
margin: 6px;
|
|
321
|
-
padding: 5px 0 6px;
|
|
322
|
-
background-color: #111
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.count-down .count-flip .c-com .flex-wrap {
|
|
326
|
-
display: -webkit-box;
|
|
327
|
-
display: -ms-flexbox;
|
|
328
|
-
display: flex;
|
|
329
|
-
position: relative;
|
|
330
|
-
width: 100%;
|
|
331
|
-
height: 100%;
|
|
332
|
-
-webkit-box-align: center;
|
|
333
|
-
-ms-flex-align: center;
|
|
334
|
-
align-items: center
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
338
|
-
line-height: 27px
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
342
|
-
position: absolute;
|
|
343
|
-
top: -100%
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
347
|
-
-webkit-transform: scale(1);
|
|
348
|
-
transform: scale(1)
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.count-down .bottom-center,.count-down .left-bottom,.count-down .left-center,.count-down .left-top,.count-down .right-bottom,.count-down .right-center,.count-down .right-top,.count-down .top-center {
|
|
352
|
-
display: none!important
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
.c-wrap {
|
|
356
|
-
width: 100%;
|
|
357
|
-
height: 100%;
|
|
358
|
-
overflow: hidden;
|
|
359
|
-
font-size: 0
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.c-wrap.c-day-wrap {
|
|
363
|
-
text-align: center
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.c-wrap.c-day-wrap .c-num {
|
|
367
|
-
width: auto
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
.c-wrap .c-num {
|
|
371
|
-
display: inline-block;
|
|
372
|
-
width: 50%;
|
|
373
|
-
overflow: hidden;
|
|
374
|
-
font-size: 20px;
|
|
375
|
-
color: #999
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.c-wrap .c-left .flex-wrap {
|
|
379
|
-
display: -webkit-box;
|
|
380
|
-
display: -ms-flexbox;
|
|
381
|
-
display: flex;
|
|
382
|
-
-webkit-box-pack: end;
|
|
383
|
-
-ms-flex-pack: end;
|
|
384
|
-
justify-content: flex-end
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.c-wrap .c-text {
|
|
388
|
-
display: -webkit-box;
|
|
389
|
-
display: -ms-flexbox;
|
|
390
|
-
display: flex;
|
|
391
|
-
width: 100%;
|
|
392
|
-
font-size: 12px;
|
|
393
|
-
-webkit-box-pack: center;
|
|
394
|
-
-ms-flex-pack: center;
|
|
395
|
-
justify-content: center;
|
|
396
|
-
-webkit-box-align: center;
|
|
397
|
-
-ms-flex-align: center;
|
|
398
|
-
align-items: center;
|
|
399
|
-
white-space: nowrap
|
|
400
|
-
}
|
|
401
|
-
/* Iconfont definition */
|
|
402
|
-
.icon-danmuliebiao1:before {
|
|
403
|
-
content: "\E68A";
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
.icon-cuowu2:before {
|
|
407
|
-
content: "\E65E";
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
i {
|
|
411
|
-
font-style: normal;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
.v-modal {
|
|
415
|
-
position: fixed;
|
|
416
|
-
left: 0;
|
|
417
|
-
top: 0;
|
|
418
|
-
width: 100%;
|
|
419
|
-
height: 100%;
|
|
420
|
-
opacity: .5;
|
|
421
|
-
background: #000;
|
|
422
|
-
}
|
|
423
|
-
/* 底部工具栏样式 */
|
|
424
|
-
#toolbarNew {
|
|
425
|
-
position: fixed;
|
|
426
|
-
left: 0;
|
|
427
|
-
bottom: 0;
|
|
183
|
+
|
|
184
|
+
i {
|
|
185
|
+
font-style: normal;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.v-modal {
|
|
189
|
+
position: fixed;
|
|
190
|
+
left: 0;
|
|
191
|
+
top: 0;
|
|
192
|
+
width: 100%;
|
|
193
|
+
height: 100%;
|
|
194
|
+
opacity: .5;
|
|
195
|
+
background: #000;
|
|
196
|
+
}
|
|
197
|
+
/* 底部工具栏样式 */
|
|
198
|
+
#toolbarNew {
|
|
199
|
+
position: fixed;
|
|
200
|
+
left: 0;
|
|
201
|
+
bottom: 0;
|
|
428
202
|
width: 100%;
|
|
429
203
|
padding: 12px 0;
|
|
430
204
|
background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
|
|
@@ -1301,63 +1075,57 @@
|
|
|
1301
1075
|
100% { transform: rotate(360deg); }
|
|
1302
1076
|
}
|
|
1303
1077
|
|
|
1304
|
-
.ele-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
.ele-effect .effect-wrap {
|
|
1309
|
-
position: relative;
|
|
1310
|
-
width: 100%;
|
|
1311
|
-
height: 100%;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
.particle {
|
|
1315
|
-
position: absolute;
|
|
1316
|
-
background-repeat: no-repeat;
|
|
1317
|
-
background-size: contain;
|
|
1318
|
-
animation-name: falling;
|
|
1319
|
-
animation-timing-function: linear;
|
|
1320
|
-
animation-iteration-count: infinite;
|
|
1321
|
-
will-change: transform;
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
|
-
@keyframes falling {
|
|
1325
|
-
0% {
|
|
1326
|
-
transform: translateY(0) rotate(0deg);
|
|
1327
|
-
opacity: 1;
|
|
1328
|
-
}
|
|
1329
|
-
80% {
|
|
1330
|
-
opacity: 0.8;
|
|
1078
|
+
.ele-img {
|
|
1079
|
+
position: absolute;
|
|
1080
|
+
overflow: hidden;
|
|
1331
1081
|
}
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1082
|
+
|
|
1083
|
+
.ele-img .ani-wrap {
|
|
1084
|
+
width: 100%;
|
|
1085
|
+
height: 100%;
|
|
1335
1086
|
}
|
|
1336
|
-
|
|
1337
|
-
.ele-
|
|
1338
|
-
overflow: hidden
|
|
1339
|
-
}
|
|
1340
|
-
|
|
1341
|
-
.ele-effect .effect-wrap {
|
|
1087
|
+
|
|
1088
|
+
.ele-img .ele-image {
|
|
1342
1089
|
position: relative;
|
|
1090
|
+
display: block;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.ele-img .rotate-wrap {
|
|
1094
|
+
position: absolute;
|
|
1095
|
+
left: 0;
|
|
1096
|
+
right: 0;
|
|
1097
|
+
top: 0;
|
|
1098
|
+
bottom: 0;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
.ele-img .ele-img-bg,
|
|
1102
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
1103
|
+
width: 100%;
|
|
1104
|
+
height: 100%;
|
|
1343
1105
|
overflow: hidden;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.ele-img .ele-bg-wrap {
|
|
1344
1109
|
width: 100%;
|
|
1345
|
-
height: 100
|
|
1346
|
-
}
|
|
1347
|
-
|
|
1348
|
-
.ele-effect .e-small {
|
|
1349
|
-
position: absolute;
|
|
1350
|
-
width: 24px;
|
|
1351
|
-
height: 24px;
|
|
1352
|
-
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
1110
|
+
height: 100%;
|
|
1353
1111
|
background-size: cover;
|
|
1112
|
+
background-position: 50% 50%;
|
|
1354
1113
|
background-repeat: no-repeat;
|
|
1355
|
-
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1114
|
+
background-clip: border-box;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
/* 动画关键帧 */
|
|
1118
|
+
@keyframes zoomIn {
|
|
1119
|
+
from {
|
|
1120
|
+
opacity: 0;
|
|
1121
|
+
transform: scale(0.5);
|
|
1122
|
+
}
|
|
1123
|
+
to {
|
|
1124
|
+
opacity: 1;
|
|
1125
|
+
transform: scale(1);
|
|
1126
|
+
}
|
|
1127
|
+
}.element-ditu .ani-wrap {
|
|
1128
|
+
width: 100%;
|
|
1361
1129
|
height: 100%;
|
|
1362
1130
|
overflow: hidden
|
|
1363
1131
|
}
|
|
@@ -1400,74 +1168,77 @@
|
|
|
1400
1168
|
.map-iframe {
|
|
1401
1169
|
width: 100%;
|
|
1402
1170
|
height: 100%;
|
|
1403
|
-
}
|
|
1404
|
-
|
|
1405
|
-
|
|
1171
|
+
}#audio {
|
|
1172
|
+
position: absolute;
|
|
1173
|
+
right: 10px;
|
|
1174
|
+
top: 10px;
|
|
1175
|
+
z-index: 103;
|
|
1176
|
+
width: 30px;
|
|
1177
|
+
height: 30px;
|
|
1178
|
+
display: flex;
|
|
1179
|
+
align-items: center;
|
|
1406
1180
|
}
|
|
1407
1181
|
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
height: 100%;
|
|
1182
|
+
#audio .mrotate {
|
|
1183
|
+
animation: mrotate 5s linear infinite;
|
|
1411
1184
|
}
|
|
1412
1185
|
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1186
|
+
@keyframes mrotate {
|
|
1187
|
+
to {
|
|
1188
|
+
transform: rotate(1turn);
|
|
1189
|
+
}
|
|
1417
1190
|
}
|
|
1418
1191
|
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1192
|
+
#audio .audio {
|
|
1193
|
+
width: 100%;
|
|
1194
|
+
height: 100%;
|
|
1195
|
+
display: flex;
|
|
1196
|
+
align-items: center;
|
|
1197
|
+
justify-content: center;
|
|
1198
|
+
color: #fff;
|
|
1199
|
+
background: #666;
|
|
1200
|
+
border-radius: 50%;
|
|
1201
|
+
overflow: hidden;
|
|
1202
|
+
cursor: pointer;
|
|
1203
|
+
transition: all 0.3s ease;
|
|
1422
1204
|
}
|
|
1423
1205
|
|
|
1424
|
-
.
|
|
1425
|
-
|
|
1206
|
+
#audio .audio.a-border {
|
|
1207
|
+
border: 1px solid #fff;
|
|
1426
1208
|
}
|
|
1427
1209
|
|
|
1428
|
-
.
|
|
1429
|
-
|
|
1210
|
+
#audio .audio .music-icon {
|
|
1211
|
+
display: block;
|
|
1212
|
+
width: 60%;
|
|
1213
|
+
height: 60%;
|
|
1214
|
+
object-fit: contain;
|
|
1430
1215
|
}
|
|
1431
1216
|
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
opacity: 0;
|
|
1436
|
-
}
|
|
1437
|
-
to {
|
|
1438
|
-
opacity: 1;
|
|
1439
|
-
}
|
|
1217
|
+
#audio .audio .iconfont {
|
|
1218
|
+
font-size: 2opx;
|
|
1219
|
+
line-height: 1;
|
|
1440
1220
|
}
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
transform: translateY(0);
|
|
1449
|
-
opacity: 1;
|
|
1450
|
-
}
|
|
1221
|
+
#audio .icon-cancel {
|
|
1222
|
+
position: absolute;
|
|
1223
|
+
width: 100%;
|
|
1224
|
+
height: 100%;
|
|
1225
|
+
border-radius: 50%;
|
|
1226
|
+
overflow: hidden;
|
|
1227
|
+
padding: 15px 0;
|
|
1451
1228
|
}
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
}
|
|
1458
|
-
50% {
|
|
1459
|
-
transform: scale(1.05);
|
|
1460
|
-
opacity: 0.8;
|
|
1461
|
-
}
|
|
1462
|
-
70% {
|
|
1463
|
-
transform: scale(0.9);
|
|
1464
|
-
opacity: 0.9;
|
|
1229
|
+
#audio .icon-cancel .icon-h {
|
|
1230
|
+
transform: rotate(45deg);
|
|
1231
|
+
width: 100%;
|
|
1232
|
+
height: 2px;
|
|
1233
|
+
background: #fff;
|
|
1465
1234
|
}
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1235
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
1236
|
+
content: '';
|
|
1237
|
+
position: absolute;
|
|
1238
|
+
width: 100%;
|
|
1239
|
+
height: 2px;
|
|
1240
|
+
background: #fff;
|
|
1469
1241
|
}
|
|
1470
|
-
}
|
|
1471
1242
|
@keyframes jumpheart {
|
|
1472
1243
|
to {
|
|
1473
1244
|
-webkit-transform: scale(1.2);
|
|
@@ -1809,87 +1580,7 @@
|
|
|
1809
1580
|
}
|
|
1810
1581
|
.icon-xingzhuangjiehe:before {
|
|
1811
1582
|
content: "\E6A6";
|
|
1812
|
-
}
|
|
1813
|
-
position: fixed;
|
|
1814
|
-
left: 0;
|
|
1815
|
-
top: 0;
|
|
1816
|
-
width: 100%;
|
|
1817
|
-
height: 100%;
|
|
1818
|
-
display: -ms-flexbox;
|
|
1819
|
-
display: flex;
|
|
1820
|
-
-ms-flex-align: center;
|
|
1821
|
-
align-items: center;
|
|
1822
|
-
-ms-flex-pack: center;
|
|
1823
|
-
justify-content: center;
|
|
1824
|
-
z-index: 999;
|
|
1825
|
-
background-color: rgba(0,0,0,.7)
|
|
1826
|
-
}
|
|
1827
|
-
|
|
1828
|
-
#page-list .tip-cover .tip {
|
|
1829
|
-
width: 80%;
|
|
1830
|
-
max-width: 250px;
|
|
1831
|
-
padding: 10px;
|
|
1832
|
-
border-radius: 5px;
|
|
1833
|
-
background-color: #fff
|
|
1834
|
-
}
|
|
1835
|
-
|
|
1836
|
-
#page-list .tip-cover .tip-btn {
|
|
1837
|
-
display: block;
|
|
1838
|
-
margin: 25px auto;
|
|
1839
|
-
width: 120px;
|
|
1840
|
-
height: 30px;
|
|
1841
|
-
color: #fff;
|
|
1842
|
-
border-radius: 4px;
|
|
1843
|
-
text-align: center;
|
|
1844
|
-
font-size: 14px;
|
|
1845
|
-
line-height: 30px;
|
|
1846
|
-
background: #ed5566
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
|
-
#page-list .tip-cover .tip-content {
|
|
1850
|
-
font-size: 14px;
|
|
1851
|
-
padding-top: 30px;
|
|
1852
|
-
}
|
|
1853
|
-
|
|
1854
|
-
.tip-cover {
|
|
1855
|
-
position: fixed;
|
|
1856
|
-
left: 0;
|
|
1857
|
-
top: 0;
|
|
1858
|
-
width: 100%;
|
|
1859
|
-
height: 100%;
|
|
1860
|
-
display: -ms-flexbox;
|
|
1861
|
-
display: flex;
|
|
1862
|
-
-ms-flex-align: center;
|
|
1863
|
-
align-items: center;
|
|
1864
|
-
-ms-flex-pack: center;
|
|
1865
|
-
justify-content: center;
|
|
1866
|
-
z-index: 999;
|
|
1867
|
-
background-color: rgba(0,0,0,.7)
|
|
1868
|
-
}
|
|
1869
|
-
|
|
1870
|
-
.tip-cover .tip {
|
|
1871
|
-
width: 80%;
|
|
1872
|
-
max-width: 250px;
|
|
1873
|
-
padding: 5px;
|
|
1874
|
-
border-radius: 3px;
|
|
1875
|
-
background-color: #fff
|
|
1876
|
-
}
|
|
1877
|
-
|
|
1878
|
-
.tip-cover .tip-btn {
|
|
1879
|
-
display: block;
|
|
1880
|
-
margin: 13px auto;
|
|
1881
|
-
width: 64px;
|
|
1882
|
-
height: 20px;
|
|
1883
|
-
color: #fff;
|
|
1884
|
-
border-radius: 4px;
|
|
1885
|
-
text-align: center;
|
|
1886
|
-
font-size: 14px;
|
|
1887
|
-
line-height: 20px;
|
|
1888
|
-
background: #ed5566;
|
|
1889
|
-
}
|
|
1890
|
-
.ele-lottie .ele-lotwrap {
|
|
1891
|
-
overflow: hidden;
|
|
1892
|
-
}.button {
|
|
1583
|
+
}.button {
|
|
1893
1584
|
position: absolute;
|
|
1894
1585
|
cursor: pointer;
|
|
1895
1586
|
user-select: none;
|
|
@@ -1917,57 +1608,74 @@
|
|
|
1917
1608
|
|
|
1918
1609
|
.btn-text {
|
|
1919
1610
|
margin-left: 10px;
|
|
1920
|
-
}
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1611
|
+
}
|
|
1612
|
+
.ele-text {
|
|
1613
|
+
position: relative;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.ele-text .ani-wrap {
|
|
1617
|
+
width: 100%;
|
|
1618
|
+
height: 100%;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.text-common {
|
|
1622
|
+
padding: 5px;
|
|
1623
|
+
text-orientation: upright;
|
|
1624
|
+
white-space: pre-wrap;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
/* 文本动画类 */
|
|
1628
|
+
.text-fadeIn {
|
|
1629
|
+
animation: fadeIn 1s ease-in-out;
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
.text-slideIn {
|
|
1633
|
+
animation: slideIn 1s ease-in-out;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
.text-bounceIn {
|
|
1637
|
+
animation: bounceIn 1s ease-in-out;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
/* 基础动画关键帧 */
|
|
1641
|
+
@keyframes fadeIn {
|
|
1642
|
+
from {
|
|
1643
|
+
opacity: 0;
|
|
1933
1644
|
}
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
font-size: 12px;
|
|
1937
|
-
padding: 0 5px 0 0;
|
|
1938
|
-
color: red;
|
|
1939
|
-
vertical-align: middle;
|
|
1645
|
+
to {
|
|
1646
|
+
opacity: 1;
|
|
1940
1647
|
}
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
height: 100%;
|
|
1948
|
-
padding: 0;
|
|
1949
|
-
margin: 0;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
@keyframes slideIn {
|
|
1651
|
+
from {
|
|
1652
|
+
transform: translateY(20px);
|
|
1653
|
+
opacity: 0;
|
|
1950
1654
|
}
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
color: #ccc;
|
|
1954
|
-
opacity: 1;
|
|
1955
|
-
} */
|
|
1956
|
-
|
|
1957
|
-
.dynamic-placeholder-input::placeholder {
|
|
1958
|
-
color: var(--placeholder-color, #999);
|
|
1655
|
+
to {
|
|
1656
|
+
transform: translateY(0);
|
|
1959
1657
|
opacity: 1;
|
|
1960
1658
|
}
|
|
1961
|
-
|
|
1962
|
-
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
@keyframes bounceIn {
|
|
1662
|
+
0% {
|
|
1663
|
+
transform: scale(0.3);
|
|
1664
|
+
opacity: 0;
|
|
1963
1665
|
}
|
|
1964
|
-
|
|
1965
|
-
|
|
1666
|
+
50% {
|
|
1667
|
+
transform: scale(1.05);
|
|
1668
|
+
opacity: 0.8;
|
|
1669
|
+
}
|
|
1670
|
+
70% {
|
|
1671
|
+
transform: scale(0.9);
|
|
1672
|
+
opacity: 0.9;
|
|
1673
|
+
}
|
|
1674
|
+
100% {
|
|
1675
|
+
transform: scale(1);
|
|
1966
1676
|
opacity: 1;
|
|
1967
1677
|
}
|
|
1968
|
-
|
|
1969
|
-
color: var(--placeholder-color, #999);
|
|
1970
|
-
}.form-submit {
|
|
1678
|
+
}.form-submit {
|
|
1971
1679
|
cursor: pointer;
|
|
1972
1680
|
transition: all 0.2s;
|
|
1973
1681
|
outline: none;
|
|
@@ -2013,198 +1721,221 @@ transform: none !important;
|
|
|
2013
1721
|
.form-submit:disabled {
|
|
2014
1722
|
opacity: 0.7;
|
|
2015
1723
|
cursor: not-allowed;
|
|
2016
|
-
}
|
|
1724
|
+
}.form-input {
|
|
2017
1725
|
position: absolute;
|
|
2018
|
-
user-select: none;
|
|
2019
|
-
}
|
|
2020
|
-
*/
|
|
2021
|
-
.f-single {
|
|
2022
|
-
cursor: pointer;
|
|
2023
1726
|
}
|
|
2024
1727
|
|
|
2025
|
-
.
|
|
2026
|
-
position: relative;
|
|
2027
|
-
}
|
|
2028
|
-
|
|
2029
|
-
.f-single .ani-wrap .fs-tit {
|
|
1728
|
+
.input-wrapper {
|
|
2030
1729
|
display: flex;
|
|
2031
|
-
padding: 0 5px;
|
|
2032
|
-
height: 40px;
|
|
2033
1730
|
align-items: center;
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
1731
|
+
width: 100%;
|
|
1732
|
+
height: 100%;
|
|
1733
|
+
padding: 0 10px;
|
|
1734
|
+
box-sizing: border-box;
|
|
1735
|
+
position: relative;
|
|
1736
|
+
transition: border-color 0.3s;
|
|
2038
1737
|
}
|
|
2039
1738
|
|
|
2040
|
-
.
|
|
1739
|
+
.required-marker {
|
|
1740
|
+
font-size: 12px;
|
|
2041
1741
|
padding: 0 5px 0 0;
|
|
2042
1742
|
color: red;
|
|
2043
1743
|
vertical-align: middle;
|
|
2044
1744
|
}
|
|
2045
1745
|
|
|
2046
|
-
|
|
2047
|
-
|
|
1746
|
+
input {
|
|
1747
|
+
flex: 1;
|
|
1748
|
+
border: none;
|
|
1749
|
+
outline: none;
|
|
1750
|
+
background: transparent;
|
|
1751
|
+
height: 100%;
|
|
1752
|
+
padding: 0;
|
|
2048
1753
|
margin: 0;
|
|
2049
|
-
list-style: none;
|
|
2050
|
-
}
|
|
2051
|
-
|
|
2052
|
-
.f-single ul li {
|
|
2053
|
-
display: flex;
|
|
2054
|
-
align-items: center;
|
|
2055
|
-
margin-top: 12px;
|
|
2056
|
-
font-size: 0;
|
|
2057
|
-
}
|
|
2058
|
-
|
|
2059
|
-
.f-single ul li:first-child {
|
|
2060
|
-
margin-top: 0;
|
|
2061
|
-
}
|
|
2062
|
-
|
|
2063
|
-
.fs-circle {
|
|
2064
|
-
display: inline-block;
|
|
2065
|
-
width: 16px;
|
|
2066
|
-
height: 16px;
|
|
2067
|
-
border-radius: 50%;
|
|
2068
|
-
position: relative;
|
|
2069
|
-
transition: all 0.2s;
|
|
2070
|
-
}
|
|
2071
|
-
|
|
2072
|
-
.fs-circle.selected {
|
|
2073
|
-
background-color: #2687f1;
|
|
2074
|
-
border-color: #2687f1 !important;
|
|
2075
1754
|
}
|
|
1755
|
+
/*
|
|
1756
|
+
input::placeholder {
|
|
1757
|
+
color: #ccc;
|
|
1758
|
+
opacity: 1;
|
|
1759
|
+
} */
|
|
2076
1760
|
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
top: 3px;
|
|
2081
|
-
left: 3px;
|
|
2082
|
-
width: 8px;
|
|
2083
|
-
height: 8px;
|
|
2084
|
-
border-radius: 50%;
|
|
2085
|
-
background-color: white;
|
|
1761
|
+
.dynamic-placeholder-input::placeholder {
|
|
1762
|
+
color: var(--placeholder-color, #999);
|
|
1763
|
+
opacity: 1;
|
|
2086
1764
|
}
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
display: inline-block;
|
|
2090
|
-
width: calc(100% - 16px);
|
|
2091
|
-
padding-left: 8px;
|
|
2092
|
-
vertical-align: top;
|
|
2093
|
-
word-break: break-all;
|
|
2094
|
-
font-size: 14px;
|
|
2095
|
-
line-height: 1.2;
|
|
1765
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
1766
|
+
color: var(--placeholder-color, #999);
|
|
2096
1767
|
}
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
1768
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
1769
|
+
color: var(--placeholder-color, #999);
|
|
1770
|
+
opacity: 1;
|
|
2100
1771
|
}
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
.
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
1772
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
1773
|
+
color: var(--placeholder-color, #999);
|
|
1774
|
+
}.count-down .drag-point {
|
|
1775
|
+
cursor: default!important
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
.count-down .ani-wrap {
|
|
1779
|
+
width: 100%;
|
|
1780
|
+
height: 100%
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1783
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
1784
|
+
display: -webkit-box;
|
|
1785
|
+
display: -ms-flexbox;
|
|
1786
|
+
display: flex;
|
|
1787
|
+
height: 100%;
|
|
1788
|
+
-webkit-box-align: center;
|
|
1789
|
+
-ms-flex-align: center;
|
|
1790
|
+
align-items: center;
|
|
1791
|
+
-webkit-box-pack: center;
|
|
1792
|
+
-ms-flex-pack: center;
|
|
1793
|
+
justify-content: center
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.count-down .finish-cont {
|
|
1797
|
+
width: 100%
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
.count-down .count-flip {
|
|
1801
|
+
display: -webkit-box;
|
|
1802
|
+
display: -ms-flexbox;
|
|
1803
|
+
display: flex;
|
|
1804
|
+
height: 100%;
|
|
1805
|
+
-webkit-box-align: center;
|
|
1806
|
+
-ms-flex-align: center;
|
|
1807
|
+
align-items: center;
|
|
1808
|
+
-webkit-box-pack: center;
|
|
1809
|
+
-ms-flex-pack: center;
|
|
1810
|
+
justify-content: center
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
.count-down .count-flip .numscroll {
|
|
1814
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
1815
|
+
animation: numscroll .4s ease-in-out;
|
|
1816
|
+
-webkit-animation-fill-mode: both;
|
|
1817
|
+
animation-fill-mode: both
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
1821
|
+
-webkit-transition: all .3s ease-in-out;
|
|
1822
|
+
transition: all .3s ease-in-out;
|
|
1823
|
+
opacity: .6;
|
|
1824
|
+
-webkit-transform: scale(.5)!important;
|
|
1825
|
+
transform: scale(.5)!important
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
@-webkit-keyframes numscroll {
|
|
1829
|
+
0% {
|
|
1830
|
+
-webkit-transform: translateZ(0);
|
|
1831
|
+
transform: translateZ(0)
|
|
2117
1832
|
}
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
1833
|
+
|
|
1834
|
+
to {
|
|
1835
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
1836
|
+
transform: translate3d(0,100%,0)
|
|
2121
1837
|
}
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
line-height: 35px;
|
|
2129
|
-
align-items: center;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
@keyframes numscroll {
|
|
1841
|
+
0% {
|
|
1842
|
+
-webkit-transform: translateZ(0);
|
|
1843
|
+
transform: translateZ(0)
|
|
2130
1844
|
}
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
vertical-align: middle;
|
|
1845
|
+
|
|
1846
|
+
to {
|
|
1847
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
1848
|
+
transform: translate3d(0,100%,0)
|
|
2136
1849
|
}
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
.count-down .count-flip .c-com {
|
|
1853
|
+
min-width: 50px;
|
|
1854
|
+
height: auto;
|
|
1855
|
+
margin: 6px;
|
|
1856
|
+
padding: 5px 0 6px;
|
|
1857
|
+
background-color: #111
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
1861
|
+
display: -webkit-box;
|
|
1862
|
+
display: -ms-flexbox;
|
|
1863
|
+
display: flex;
|
|
1864
|
+
position: relative;
|
|
1865
|
+
width: 100%;
|
|
1866
|
+
height: 100%;
|
|
1867
|
+
-webkit-box-align: center;
|
|
1868
|
+
-ms-flex-align: center;
|
|
1869
|
+
align-items: center
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
1873
|
+
line-height: 27px
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
1877
|
+
position: absolute;
|
|
1878
|
+
top: -100%
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
1882
|
+
-webkit-transform: scale(1);
|
|
1883
|
+
transform: scale(1)
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.count-down .bottom-center,.count-down .left-bottom,.count-down .left-center,.count-down .left-top,.count-down .right-bottom,.count-down .right-center,.count-down .right-top,.count-down .top-center {
|
|
1887
|
+
display: none!important
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.c-wrap {
|
|
1891
|
+
width: 100%;
|
|
1892
|
+
height: 100%;
|
|
1893
|
+
overflow: hidden;
|
|
1894
|
+
font-size: 0
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.c-wrap.c-day-wrap {
|
|
1898
|
+
text-align: center
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
.c-wrap.c-day-wrap .c-num {
|
|
1902
|
+
width: auto
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
.c-wrap .c-num {
|
|
1906
|
+
display: inline-block;
|
|
1907
|
+
width: 50%;
|
|
1908
|
+
overflow: hidden;
|
|
1909
|
+
font-size: 20px;
|
|
1910
|
+
color: #999
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
.c-wrap .c-left .flex-wrap {
|
|
1914
|
+
display: -webkit-box;
|
|
1915
|
+
display: -ms-flexbox;
|
|
1916
|
+
display: flex;
|
|
1917
|
+
-webkit-box-pack: end;
|
|
1918
|
+
-ms-flex-pack: end;
|
|
1919
|
+
justify-content: flex-end
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
.c-wrap .c-text {
|
|
1923
|
+
display: -webkit-box;
|
|
1924
|
+
display: -ms-flexbox;
|
|
1925
|
+
display: flex;
|
|
1926
|
+
width: 100%;
|
|
1927
|
+
font-size: 12px;
|
|
1928
|
+
-webkit-box-pack: center;
|
|
1929
|
+
-ms-flex-pack: center;
|
|
1930
|
+
justify-content: center;
|
|
1931
|
+
-webkit-box-align: center;
|
|
1932
|
+
-ms-flex-align: center;
|
|
1933
|
+
align-items: center;
|
|
1934
|
+
white-space: nowrap
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.ele-lottie .ele-lotwrap {
|
|
2141
1938
|
overflow: hidden;
|
|
2142
|
-
text-overflow: ellipsis;
|
|
2143
|
-
flex-grow: 1;
|
|
2144
|
-
}
|
|
2145
|
-
|
|
2146
|
-
.icon-bofang1 {
|
|
2147
|
-
font-size: 12px;
|
|
2148
|
-
transition: transform 0.2s ease;
|
|
2149
|
-
}
|
|
2150
|
-
|
|
2151
|
-
.rotate-180 {
|
|
2152
|
-
transform: rotate(180deg) !important;
|
|
2153
|
-
}
|
|
2154
|
-
|
|
2155
|
-
.f-real {
|
|
2156
|
-
position: absolute;
|
|
2157
|
-
left: 0;
|
|
2158
|
-
top: 0;
|
|
2159
|
-
width: 100%;
|
|
2160
|
-
height: 100%;
|
|
2161
|
-
z-index: 1;
|
|
2162
|
-
opacity: 0;
|
|
2163
|
-
cursor: pointer;
|
|
2164
|
-
}
|
|
2165
|
-
|
|
2166
|
-
.dropdown-menu {
|
|
2167
|
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
2168
|
-
}
|
|
2169
|
-
|
|
2170
|
-
.dropdown-item {
|
|
2171
|
-
padding: 8px 10px;
|
|
2172
|
-
cursor: pointer;
|
|
2173
|
-
transition: background-color 0.2s;
|
|
2174
|
-
}
|
|
2175
|
-
|
|
2176
|
-
.dropdown-item:hover {
|
|
2177
|
-
background-color: #f5f5f5;
|
|
2178
|
-
}
|
|
2179
|
-
|
|
2180
|
-
.dropdown-item.selected {
|
|
2181
|
-
background-color: #e6f7ff;
|
|
2182
|
-
color: #1890ff;
|
|
2183
|
-
}
|
|
2184
|
-
|
|
2185
|
-
.f-select .fs-tit .icon-bofang1 {
|
|
2186
|
-
position: absolute;
|
|
2187
|
-
right: 10px;
|
|
2188
|
-
font-size: 12px;
|
|
2189
|
-
display: inline-block;
|
|
2190
|
-
transform: rotate(90deg);
|
|
2191
|
-
}
|
|
2192
|
-
|
|
2193
|
-
.icon-bofang1:before {
|
|
2194
|
-
content: "\E6CF";
|
|
2195
|
-
}
|
|
2196
|
-
|
|
2197
|
-
.has-error {
|
|
2198
|
-
border-color: #ff4d4f !important;
|
|
2199
|
-
}
|
|
2200
|
-
|
|
2201
|
-
.error-tip {
|
|
2202
|
-
position: fixed;
|
|
2203
|
-
left: 0;
|
|
2204
|
-
top: 0;
|
|
2205
|
-
width: 100%;
|
|
2206
|
-
height: 100%;
|
|
2207
|
-
z-index: 1000;
|
|
2208
1939
|
}body, html {
|
|
2209
1940
|
width: 100%;
|
|
2210
1941
|
height: 100%;
|
|
@@ -3676,92 +3407,290 @@ to {
|
|
|
3676
3407
|
-webkit-transform: none;
|
|
3677
3408
|
transform: none
|
|
3678
3409
|
}
|
|
3679
|
-
}
|
|
3680
|
-
position:
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
.ani-wrap {
|
|
3689
|
-
position: relative;
|
|
3690
|
-
}
|
|
3691
|
-
|
|
3692
|
-
.f-multiple .ani-wrap .fs-tit {
|
|
3410
|
+
}#page-list .tip-cover {
|
|
3411
|
+
position: fixed;
|
|
3412
|
+
left: 0;
|
|
3413
|
+
top: 0;
|
|
3414
|
+
width: 100%;
|
|
3415
|
+
height: 100%;
|
|
3416
|
+
display: -ms-flexbox;
|
|
3693
3417
|
display: flex;
|
|
3694
|
-
|
|
3695
|
-
height: 40px;
|
|
3418
|
+
-ms-flex-align: center;
|
|
3696
3419
|
align-items: center;
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
}
|
|
3702
|
-
|
|
3703
|
-
.require {
|
|
3704
|
-
padding: 0 5px 0 0;
|
|
3705
|
-
color: red;
|
|
3706
|
-
vertical-align: middle;
|
|
3420
|
+
-ms-flex-pack: center;
|
|
3421
|
+
justify-content: center;
|
|
3422
|
+
z-index: 999;
|
|
3423
|
+
background-color: rgba(0,0,0,.7)
|
|
3707
3424
|
}
|
|
3708
3425
|
|
|
3709
|
-
.
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3426
|
+
#page-list .tip-cover .tip {
|
|
3427
|
+
width: 80%;
|
|
3428
|
+
max-width: 250px;
|
|
3429
|
+
padding: 10px;
|
|
3430
|
+
border-radius: 5px;
|
|
3431
|
+
background-color: #fff
|
|
3713
3432
|
}
|
|
3714
3433
|
|
|
3715
|
-
.
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3434
|
+
#page-list .tip-cover .tip-btn {
|
|
3435
|
+
display: block;
|
|
3436
|
+
margin: 25px auto;
|
|
3437
|
+
width: 120px;
|
|
3438
|
+
height: 30px;
|
|
3439
|
+
color: #fff;
|
|
3440
|
+
border-radius: 4px;
|
|
3441
|
+
text-align: center;
|
|
3442
|
+
font-size: 14px;
|
|
3443
|
+
line-height: 30px;
|
|
3444
|
+
background: #ed5566
|
|
3721
3445
|
}
|
|
3722
3446
|
|
|
3723
|
-
.
|
|
3724
|
-
|
|
3447
|
+
#page-list .tip-cover .tip-content {
|
|
3448
|
+
font-size: 14px;
|
|
3449
|
+
padding-top: 30px;
|
|
3725
3450
|
}
|
|
3726
3451
|
|
|
3727
|
-
.
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3452
|
+
.tip-cover {
|
|
3453
|
+
position: fixed;
|
|
3454
|
+
left: 0;
|
|
3455
|
+
top: 0;
|
|
3456
|
+
width: 100%;
|
|
3457
|
+
height: 100%;
|
|
3458
|
+
display: -ms-flexbox;
|
|
3459
|
+
display: flex;
|
|
3460
|
+
-ms-flex-align: center;
|
|
3461
|
+
align-items: center;
|
|
3462
|
+
-ms-flex-pack: center;
|
|
3463
|
+
justify-content: center;
|
|
3464
|
+
z-index: 999;
|
|
3465
|
+
background-color: rgba(0,0,0,.7)
|
|
3734
3466
|
}
|
|
3735
3467
|
|
|
3736
|
-
.
|
|
3737
|
-
|
|
3738
|
-
|
|
3468
|
+
.tip-cover .tip {
|
|
3469
|
+
width: 80%;
|
|
3470
|
+
max-width: 250px;
|
|
3471
|
+
padding: 5px;
|
|
3472
|
+
border-radius: 3px;
|
|
3473
|
+
background-color: #fff
|
|
3739
3474
|
}
|
|
3740
3475
|
|
|
3741
|
-
.
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3476
|
+
.tip-cover .tip-btn {
|
|
3477
|
+
display: block;
|
|
3478
|
+
margin: 13px auto;
|
|
3479
|
+
width: 64px;
|
|
3480
|
+
height: 20px;
|
|
3481
|
+
color: #fff;
|
|
3482
|
+
border-radius: 4px;
|
|
3483
|
+
text-align: center;
|
|
3484
|
+
font-size: 14px;
|
|
3485
|
+
line-height: 20px;
|
|
3486
|
+
background: #ed5566;
|
|
3487
|
+
} /* .ele-form {
|
|
3488
|
+
position: absolute;
|
|
3489
|
+
user-select: none;
|
|
3490
|
+
}
|
|
3491
|
+
*/
|
|
3492
|
+
.f-single {
|
|
3493
|
+
cursor: pointer;
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
.ani-wrap {
|
|
3497
|
+
position: relative;
|
|
3498
|
+
}
|
|
3499
|
+
|
|
3500
|
+
.f-single .ani-wrap .fs-tit {
|
|
3501
|
+
display: flex;
|
|
3502
|
+
padding: 0 5px;
|
|
3503
|
+
height: 40px;
|
|
3504
|
+
align-items: center;
|
|
3505
|
+
white-space: nowrap;
|
|
3506
|
+
overflow: hidden;
|
|
3507
|
+
text-overflow: ellipsis;
|
|
3508
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
.require {
|
|
3512
|
+
padding: 0 5px 0 0;
|
|
3513
|
+
color: red;
|
|
3514
|
+
vertical-align: middle;
|
|
3515
|
+
}
|
|
3516
|
+
|
|
3517
|
+
.f-single ul {
|
|
3518
|
+
padding: 15px;
|
|
3519
|
+
margin: 0;
|
|
3520
|
+
list-style: none;
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
|
+
.f-single ul li {
|
|
3524
|
+
display: flex;
|
|
3525
|
+
align-items: center;
|
|
3526
|
+
margin-top: 12px;
|
|
3527
|
+
font-size: 0;
|
|
3528
|
+
}
|
|
3529
|
+
|
|
3530
|
+
.f-single ul li:first-child {
|
|
3531
|
+
margin-top: 0;
|
|
3532
|
+
}
|
|
3533
|
+
|
|
3534
|
+
.fs-circle {
|
|
3535
|
+
display: inline-block;
|
|
3536
|
+
width: 16px;
|
|
3537
|
+
height: 16px;
|
|
3538
|
+
border-radius: 50%;
|
|
3539
|
+
position: relative;
|
|
3540
|
+
transition: all 0.2s;
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
.fs-circle.selected {
|
|
3544
|
+
background-color: #2687f1;
|
|
3545
|
+
border-color: #2687f1 !important;
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
.fs-circle.selected::after {
|
|
3549
|
+
content: "";
|
|
3550
|
+
position: absolute;
|
|
3551
|
+
top: 3px;
|
|
3552
|
+
left: 3px;
|
|
3553
|
+
width: 8px;
|
|
3554
|
+
height: 8px;
|
|
3555
|
+
border-radius: 50%;
|
|
3556
|
+
background-color: white;
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
.fs-txt {
|
|
3560
|
+
display: inline-block;
|
|
3561
|
+
width: calc(100% - 16px);
|
|
3562
|
+
padding-left: 8px;
|
|
3563
|
+
vertical-align: top;
|
|
3564
|
+
word-break: break-all;
|
|
3565
|
+
font-size: 14px;
|
|
3566
|
+
line-height: 1.2;
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
.has-error .fs-tit {
|
|
3570
|
+
border-bottom-color: #ff4d4f;
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
/* 错误提示样式 */
|
|
3574
|
+
.error-tip {
|
|
3575
|
+
position: fixed;
|
|
3576
|
+
left: 0;
|
|
3577
|
+
top: 0;
|
|
3578
|
+
width: 100%;
|
|
3579
|
+
height: 100%;
|
|
3580
|
+
z-index: 1000;
|
|
3581
|
+
}/* .ele-form {
|
|
3582
|
+
position: absolute;
|
|
3583
|
+
user-select: none;
|
|
3584
|
+
} */
|
|
3585
|
+
|
|
3586
|
+
.f-select {
|
|
3587
|
+
cursor: pointer;
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
.ani-wrap {
|
|
3591
|
+
position: relative;
|
|
3592
|
+
}
|
|
3593
|
+
|
|
3594
|
+
.f-select .ani-wrap .fs-tit {
|
|
3595
|
+
position: relative;
|
|
3596
|
+
display: flex;
|
|
3597
|
+
padding: 0 5px;
|
|
3598
|
+
height: 35px;
|
|
3599
|
+
line-height: 35px;
|
|
3600
|
+
align-items: center;
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3603
|
+
.require {
|
|
3604
|
+
padding: 0 5px 0 0;
|
|
3605
|
+
color: red;
|
|
3606
|
+
vertical-align: middle;
|
|
3607
|
+
}
|
|
3608
|
+
|
|
3609
|
+
.fs-cont {
|
|
3610
|
+
padding-right: 15px;
|
|
3611
|
+
white-space: nowrap;
|
|
3612
|
+
overflow: hidden;
|
|
3613
|
+
text-overflow: ellipsis;
|
|
3614
|
+
flex-grow: 1;
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
.icon-bofang1 {
|
|
3618
|
+
font-size: 12px;
|
|
3619
|
+
transition: transform 0.2s ease;
|
|
3620
|
+
}
|
|
3621
|
+
|
|
3622
|
+
.rotate-180 {
|
|
3623
|
+
transform: rotate(180deg) !important;
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
.f-real {
|
|
3627
|
+
position: absolute;
|
|
3628
|
+
left: 0;
|
|
3629
|
+
top: 0;
|
|
3630
|
+
width: 100%;
|
|
3631
|
+
height: 100%;
|
|
3632
|
+
z-index: 1;
|
|
3633
|
+
opacity: 0;
|
|
3634
|
+
cursor: pointer;
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
.dropdown-menu {
|
|
3638
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
3639
|
+
}
|
|
3640
|
+
|
|
3641
|
+
.dropdown-item {
|
|
3642
|
+
padding: 8px 10px;
|
|
3643
|
+
cursor: pointer;
|
|
3644
|
+
transition: background-color 0.2s;
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3647
|
+
.dropdown-item:hover {
|
|
3648
|
+
background-color: #f5f5f5;
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
.dropdown-item.selected {
|
|
3652
|
+
background-color: #e6f7ff;
|
|
3653
|
+
color: #1890ff;
|
|
3654
|
+
}
|
|
3655
|
+
|
|
3656
|
+
.f-select .fs-tit .icon-bofang1 {
|
|
3657
|
+
position: absolute;
|
|
3658
|
+
right: 10px;
|
|
3659
|
+
font-size: 12px;
|
|
3660
|
+
display: inline-block;
|
|
3661
|
+
transform: rotate(90deg);
|
|
3662
|
+
}
|
|
3663
|
+
|
|
3664
|
+
.icon-bofang1:before {
|
|
3665
|
+
content: "\E6CF";
|
|
3666
|
+
}
|
|
3667
|
+
|
|
3668
|
+
.has-error {
|
|
3669
|
+
border-color: #ff4d4f !important;
|
|
3670
|
+
}
|
|
3671
|
+
|
|
3672
|
+
.error-tip {
|
|
3673
|
+
position: fixed;
|
|
3674
|
+
left: 0;
|
|
3675
|
+
top: 0;
|
|
3676
|
+
width: 100%;
|
|
3677
|
+
height: 100%;
|
|
3678
|
+
z-index: 1000;
|
|
3679
|
+
}
|
|
3680
|
+
.global.video {
|
|
3681
|
+
width: 35px;
|
|
3682
|
+
height: 55px;
|
|
3748
3683
|
border-radius: 50%;
|
|
3749
|
-
|
|
3684
|
+
text-align: center;
|
|
3685
|
+
margin-bottom: 5px;
|
|
3686
|
+
border: 2px solid #fff;
|
|
3687
|
+
cursor: pointer;
|
|
3750
3688
|
}
|
|
3751
|
-
|
|
3752
|
-
.
|
|
3753
|
-
|
|
3754
|
-
width: calc(100% - 16px);
|
|
3755
|
-
padding-left: 8px;
|
|
3756
|
-
vertical-align: top;
|
|
3757
|
-
word-break: break-all;
|
|
3758
|
-
font-size: 14px;
|
|
3759
|
-
line-height: 1.2;
|
|
3689
|
+
.icon-shipin2:before { content: "\E611"; }
|
|
3690
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
3691
|
+
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
3760
3692
|
}
|
|
3761
3693
|
|
|
3762
|
-
.has-error .fs-tit {
|
|
3763
|
-
border-bottom-color: #ff4d4f;
|
|
3764
|
-
}
|
|
3765
3694
|
.icon-guanbi:before {
|
|
3766
3695
|
content: "\E676";
|
|
3767
3696
|
}
|
|
@@ -4156,44 +4085,115 @@ to {
|
|
|
4156
4085
|
color: #F44336; /* 失败的红色 */
|
|
4157
4086
|
}
|
|
4158
4087
|
|
|
4159
|
-
.global.
|
|
4088
|
+
.global.map {
|
|
4160
4089
|
width: 35px;
|
|
4161
4090
|
height: 55px;
|
|
4162
4091
|
border-radius: 50%;
|
|
4163
4092
|
text-align: center;
|
|
4164
|
-
margin-bottom:
|
|
4093
|
+
margin-bottom: 5px;
|
|
4165
4094
|
border: 2px solid #fff;
|
|
4166
4095
|
cursor: pointer;
|
|
4167
4096
|
}
|
|
4168
|
-
.icon-
|
|
4097
|
+
.icon-daohang1:before { content: "\E612"; }
|
|
4169
4098
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4170
|
-
.global.
|
|
4171
|
-
.global.
|
|
4099
|
+
.global.map > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4100
|
+
.global.tel {
|
|
4172
4101
|
width: 35px;
|
|
4173
4102
|
height: 55px;
|
|
4174
4103
|
border-radius: 50%;
|
|
4175
4104
|
text-align: center;
|
|
4176
|
-
margin-bottom:
|
|
4105
|
+
margin-bottom: 15px;
|
|
4177
4106
|
border: 2px solid #fff;
|
|
4178
4107
|
cursor: pointer;
|
|
4179
4108
|
}
|
|
4180
|
-
.icon-
|
|
4109
|
+
.icon-dianhua:before { content: "\E60E"; }
|
|
4181
4110
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4182
|
-
.global.
|
|
4111
|
+
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}/* .ele-form {
|
|
4112
|
+
position: absolute;
|
|
4113
|
+
user-select: none;
|
|
4114
|
+
} */
|
|
4115
|
+
|
|
4116
|
+
.f-multiple {
|
|
4117
|
+
cursor: pointer;
|
|
4183
4118
|
}
|
|
4184
4119
|
|
|
4185
|
-
.
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4120
|
+
.ani-wrap {
|
|
4121
|
+
position: relative;
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.f-multiple .ani-wrap .fs-tit {
|
|
4125
|
+
display: flex;
|
|
4126
|
+
padding: 0 5px;
|
|
4127
|
+
height: 40px;
|
|
4128
|
+
align-items: center;
|
|
4129
|
+
white-space: nowrap;
|
|
4130
|
+
overflow: hidden;
|
|
4131
|
+
text-overflow: ellipsis;
|
|
4132
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
4133
|
+
}
|
|
4134
|
+
|
|
4135
|
+
.require {
|
|
4136
|
+
padding: 0 5px 0 0;
|
|
4137
|
+
color: red;
|
|
4138
|
+
vertical-align: middle;
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
.f-multiple ul {
|
|
4142
|
+
padding: 15px;
|
|
4143
|
+
margin: 0;
|
|
4144
|
+
list-style: none;
|
|
4145
|
+
}
|
|
4146
|
+
|
|
4147
|
+
.f-multiple ul li {
|
|
4148
|
+
margin-top: 12px;
|
|
4149
|
+
font-size: 0;
|
|
4150
|
+
display: flex;
|
|
4151
|
+
align-items: center;
|
|
4192
4152
|
cursor: pointer;
|
|
4193
4153
|
}
|
|
4194
|
-
|
|
4195
|
-
.
|
|
4196
|
-
|
|
4154
|
+
|
|
4155
|
+
.f-multiple ul li:first-child {
|
|
4156
|
+
margin-top: 0;
|
|
4157
|
+
}
|
|
4158
|
+
|
|
4159
|
+
.fs-circle {
|
|
4160
|
+
display: inline-block;
|
|
4161
|
+
width: 16px;
|
|
4162
|
+
height: 16px;
|
|
4163
|
+
border-radius: 50%;
|
|
4164
|
+
position: relative;
|
|
4165
|
+
transition: all 0.2s;
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
.fs-circle.selected {
|
|
4169
|
+
background-color: #2687f1;
|
|
4170
|
+
border-color: #2687f1 !important;
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4173
|
+
.fs-circle.selected::after {
|
|
4174
|
+
content: "";
|
|
4175
|
+
position: absolute;
|
|
4176
|
+
top: 3px;
|
|
4177
|
+
left: 3px;
|
|
4178
|
+
width: 8px;
|
|
4179
|
+
height: 8px;
|
|
4180
|
+
border-radius: 50%;
|
|
4181
|
+
background-color: white;
|
|
4182
|
+
}
|
|
4183
|
+
|
|
4184
|
+
.fs-txt {
|
|
4185
|
+
display: inline-block;
|
|
4186
|
+
width: calc(100% - 16px);
|
|
4187
|
+
padding-left: 8px;
|
|
4188
|
+
vertical-align: top;
|
|
4189
|
+
word-break: break-all;
|
|
4190
|
+
font-size: 14px;
|
|
4191
|
+
line-height: 1.2;
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
.has-error .fs-tit {
|
|
4195
|
+
border-bottom-color: #ff4d4f;
|
|
4196
|
+
}
|
|
4197
4197
|
.global.receipt {
|
|
4198
4198
|
width: 35px;
|
|
4199
4199
|
height: 55px;
|