unika-components 1.1.123 → 1.1.124
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,126 +8,7 @@
|
|
|
8
8
|
max-height: 100%;
|
|
9
9
|
width: 100%;
|
|
10
10
|
}
|
|
11
|
-
.ele-img {
|
|
12
|
-
position: absolute;
|
|
13
|
-
overflow: hidden;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.ele-img .ani-wrap {
|
|
17
|
-
width: 100%;
|
|
18
|
-
height: 100%;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.ele-img .ele-image {
|
|
22
|
-
position: relative;
|
|
23
|
-
display: block;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.ele-img .rotate-wrap {
|
|
27
|
-
position: absolute;
|
|
28
|
-
left: 0;
|
|
29
|
-
right: 0;
|
|
30
|
-
top: 0;
|
|
31
|
-
bottom: 0;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.ele-img .ele-img-bg,
|
|
35
|
-
.ele-img .rotate-wrap .img-wrap {
|
|
36
|
-
width: 100%;
|
|
37
|
-
height: 100%;
|
|
38
|
-
overflow: hidden;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.ele-img .ele-bg-wrap {
|
|
42
|
-
width: 100%;
|
|
43
|
-
height: 100%;
|
|
44
|
-
background-size: cover;
|
|
45
|
-
background-position: 50% 50%;
|
|
46
|
-
background-repeat: no-repeat;
|
|
47
|
-
background-clip: border-box;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
/* 动画关键帧 */
|
|
51
|
-
@keyframes zoomIn {
|
|
52
|
-
from {
|
|
53
|
-
opacity: 0;
|
|
54
|
-
transform: scale(0.5);
|
|
55
|
-
}
|
|
56
|
-
to {
|
|
57
|
-
opacity: 1;
|
|
58
|
-
transform: scale(1);
|
|
59
|
-
}
|
|
60
|
-
}#audio {
|
|
61
|
-
position: absolute;
|
|
62
|
-
right: 10px;
|
|
63
|
-
top: 10px;
|
|
64
|
-
z-index: 103;
|
|
65
|
-
width: 30px;
|
|
66
|
-
height: 30px;
|
|
67
|
-
display: flex;
|
|
68
|
-
align-items: center;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
#audio .mrotate {
|
|
72
|
-
animation: mrotate 5s linear infinite;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
@keyframes mrotate {
|
|
76
|
-
to {
|
|
77
|
-
transform: rotate(1turn);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
#audio .audio {
|
|
82
|
-
width: 100%;
|
|
83
|
-
height: 100%;
|
|
84
|
-
display: flex;
|
|
85
|
-
align-items: center;
|
|
86
|
-
justify-content: center;
|
|
87
|
-
color: #fff;
|
|
88
|
-
background: #666;
|
|
89
|
-
border-radius: 50%;
|
|
90
|
-
overflow: hidden;
|
|
91
|
-
cursor: pointer;
|
|
92
|
-
transition: all 0.3s ease;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
#audio .audio.a-border {
|
|
96
|
-
border: 1px solid #fff;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
#audio .audio .music-icon {
|
|
100
|
-
display: block;
|
|
101
|
-
width: 60%;
|
|
102
|
-
height: 60%;
|
|
103
|
-
object-fit: contain;
|
|
104
|
-
}
|
|
105
11
|
|
|
106
|
-
#audio .audio .iconfont {
|
|
107
|
-
font-size: 2opx;
|
|
108
|
-
line-height: 1;
|
|
109
|
-
}
|
|
110
|
-
#audio .icon-cancel {
|
|
111
|
-
position: absolute;
|
|
112
|
-
width: 100%;
|
|
113
|
-
height: 100%;
|
|
114
|
-
border-radius: 50%;
|
|
115
|
-
overflow: hidden;
|
|
116
|
-
padding: 15px 0;
|
|
117
|
-
}
|
|
118
|
-
#audio .icon-cancel .icon-h {
|
|
119
|
-
transform: rotate(45deg);
|
|
120
|
-
width: 100%;
|
|
121
|
-
height: 2px;
|
|
122
|
-
background: #fff;
|
|
123
|
-
}
|
|
124
|
-
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
125
|
-
content: '';
|
|
126
|
-
position: absolute;
|
|
127
|
-
width: 100%;
|
|
128
|
-
height: 2px;
|
|
129
|
-
background: #fff;
|
|
130
|
-
}
|
|
131
12
|
.ele-text {
|
|
132
13
|
position: relative;
|
|
133
14
|
}
|
|
@@ -182,257 +63,68 @@
|
|
|
182
63
|
transform: scale(0.3);
|
|
183
64
|
opacity: 0;
|
|
184
65
|
}
|
|
185
|
-
50% {
|
|
186
|
-
transform: scale(1.05);
|
|
187
|
-
opacity: 0.8;
|
|
188
|
-
}
|
|
189
|
-
70% {
|
|
190
|
-
transform: scale(0.9);
|
|
191
|
-
opacity: 0.9;
|
|
192
|
-
}
|
|
193
|
-
100% {
|
|
194
|
-
transform: scale(1);
|
|
195
|
-
opacity: 1;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
.
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
position:
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.count-down .ani-wrap {
|
|
248
|
-
width: 100%;
|
|
249
|
-
height: 100%
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.count-down .count-text,.count-down .finish-cont {
|
|
253
|
-
display: -webkit-box;
|
|
254
|
-
display: -ms-flexbox;
|
|
255
|
-
display: flex;
|
|
256
|
-
height: 100%;
|
|
257
|
-
-webkit-box-align: center;
|
|
258
|
-
-ms-flex-align: center;
|
|
259
|
-
align-items: center;
|
|
260
|
-
-webkit-box-pack: center;
|
|
261
|
-
-ms-flex-pack: center;
|
|
262
|
-
justify-content: center
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.count-down .finish-cont {
|
|
266
|
-
width: 100%
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.count-down .count-flip {
|
|
270
|
-
display: -webkit-box;
|
|
271
|
-
display: -ms-flexbox;
|
|
272
|
-
display: flex;
|
|
273
|
-
height: 100%;
|
|
274
|
-
-webkit-box-align: center;
|
|
275
|
-
-ms-flex-align: center;
|
|
276
|
-
align-items: center;
|
|
277
|
-
-webkit-box-pack: center;
|
|
278
|
-
-ms-flex-pack: center;
|
|
279
|
-
justify-content: center
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
.count-down .count-flip .numscroll {
|
|
283
|
-
-webkit-animation: numscroll .4s ease-in-out;
|
|
284
|
-
animation: numscroll .4s ease-in-out;
|
|
285
|
-
-webkit-animation-fill-mode: both;
|
|
286
|
-
animation-fill-mode: both
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.count-down .count-flip .numscroll .curr-num {
|
|
290
|
-
-webkit-transition: all .3s ease-in-out;
|
|
291
|
-
transition: all .3s ease-in-out;
|
|
292
|
-
opacity: .6;
|
|
293
|
-
-webkit-transform: scale(.5)!important;
|
|
294
|
-
transform: scale(.5)!important
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
@-webkit-keyframes numscroll {
|
|
298
|
-
0% {
|
|
299
|
-
-webkit-transform: translateZ(0);
|
|
300
|
-
transform: translateZ(0)
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
to {
|
|
304
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
305
|
-
transform: translate3d(0,100%,0)
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
@keyframes numscroll {
|
|
310
|
-
0% {
|
|
311
|
-
-webkit-transform: translateZ(0);
|
|
312
|
-
transform: translateZ(0)
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
to {
|
|
316
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
317
|
-
transform: translate3d(0,100%,0)
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.count-down .count-flip .c-com {
|
|
322
|
-
min-width: 50px;
|
|
323
|
-
height: auto;
|
|
324
|
-
margin: 6px;
|
|
325
|
-
padding: 5px 0 6px;
|
|
326
|
-
background-color: #111
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
.count-down .count-flip .c-com .flex-wrap {
|
|
330
|
-
display: -webkit-box;
|
|
331
|
-
display: -ms-flexbox;
|
|
332
|
-
display: flex;
|
|
333
|
-
position: relative;
|
|
334
|
-
width: 100%;
|
|
335
|
-
height: 100%;
|
|
336
|
-
-webkit-box-align: center;
|
|
337
|
-
-ms-flex-align: center;
|
|
338
|
-
align-items: center
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
342
|
-
line-height: 27px
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
346
|
-
position: absolute;
|
|
347
|
-
top: -100%
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
351
|
-
-webkit-transform: scale(1);
|
|
352
|
-
transform: scale(1)
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
.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 {
|
|
356
|
-
display: none!important
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
.c-wrap {
|
|
360
|
-
width: 100%;
|
|
361
|
-
height: 100%;
|
|
362
|
-
overflow: hidden;
|
|
363
|
-
font-size: 0
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.c-wrap.c-day-wrap {
|
|
367
|
-
text-align: center
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
.c-wrap.c-day-wrap .c-num {
|
|
371
|
-
width: auto
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
.c-wrap .c-num {
|
|
375
|
-
display: inline-block;
|
|
376
|
-
width: 50%;
|
|
377
|
-
overflow: hidden;
|
|
378
|
-
font-size: 20px;
|
|
379
|
-
color: #999
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
.c-wrap .c-left .flex-wrap {
|
|
383
|
-
display: -webkit-box;
|
|
384
|
-
display: -ms-flexbox;
|
|
385
|
-
display: flex;
|
|
386
|
-
-webkit-box-pack: end;
|
|
387
|
-
-ms-flex-pack: end;
|
|
388
|
-
justify-content: flex-end
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
.c-wrap .c-text {
|
|
392
|
-
display: -webkit-box;
|
|
393
|
-
display: -ms-flexbox;
|
|
394
|
-
display: flex;
|
|
395
|
-
width: 100%;
|
|
396
|
-
font-size: 12px;
|
|
397
|
-
-webkit-box-pack: center;
|
|
398
|
-
-ms-flex-pack: center;
|
|
399
|
-
justify-content: center;
|
|
400
|
-
-webkit-box-align: center;
|
|
401
|
-
-ms-flex-align: center;
|
|
402
|
-
align-items: center;
|
|
403
|
-
white-space: nowrap
|
|
404
|
-
}
|
|
405
|
-
.ele-shape {
|
|
406
|
-
position: absolute;
|
|
407
|
-
overflow: hidden;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
.ani-wrap {
|
|
411
|
-
width: 100%;
|
|
412
|
-
height: 100%;
|
|
413
|
-
box-sizing: border-box;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
.e-shape {
|
|
417
|
-
width: 100%;
|
|
418
|
-
height: 100%;
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
.svg-container :deep(svg) {
|
|
422
|
-
width: 100%;
|
|
423
|
-
height: 100%;
|
|
424
|
-
display: block;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
.svg-loading,
|
|
428
|
-
.svg-error {
|
|
429
|
-
display: flex;
|
|
430
|
-
align-items: center;
|
|
431
|
-
justify-content: center;
|
|
432
|
-
width: 100%;
|
|
433
|
-
height: 100%;
|
|
434
|
-
background: rgba(0,0,0,0.05);
|
|
435
|
-
}
|
|
66
|
+
50% {
|
|
67
|
+
transform: scale(1.05);
|
|
68
|
+
opacity: 0.8;
|
|
69
|
+
}
|
|
70
|
+
70% {
|
|
71
|
+
transform: scale(0.9);
|
|
72
|
+
opacity: 0.9;
|
|
73
|
+
}
|
|
74
|
+
100% {
|
|
75
|
+
transform: scale(1);
|
|
76
|
+
opacity: 1;
|
|
77
|
+
}
|
|
78
|
+
}.ele-img {
|
|
79
|
+
position: absolute;
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.ele-img .ani-wrap {
|
|
84
|
+
width: 100%;
|
|
85
|
+
height: 100%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.ele-img .ele-image {
|
|
89
|
+
position: relative;
|
|
90
|
+
display: block;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.ele-img .rotate-wrap {
|
|
94
|
+
position: absolute;
|
|
95
|
+
left: 0;
|
|
96
|
+
right: 0;
|
|
97
|
+
top: 0;
|
|
98
|
+
bottom: 0;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.ele-img .ele-img-bg,
|
|
102
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
103
|
+
width: 100%;
|
|
104
|
+
height: 100%;
|
|
105
|
+
overflow: hidden;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.ele-img .ele-bg-wrap {
|
|
109
|
+
width: 100%;
|
|
110
|
+
height: 100%;
|
|
111
|
+
background-size: cover;
|
|
112
|
+
background-position: 50% 50%;
|
|
113
|
+
background-repeat: no-repeat;
|
|
114
|
+
background-clip: border-box;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* 动画关键帧 */
|
|
118
|
+
@keyframes zoomIn {
|
|
119
|
+
from {
|
|
120
|
+
opacity: 0;
|
|
121
|
+
transform: scale(0.5);
|
|
122
|
+
}
|
|
123
|
+
to {
|
|
124
|
+
opacity: 1;
|
|
125
|
+
transform: scale(1);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
436
128
|
@keyframes jumpheart {
|
|
437
129
|
to {
|
|
438
130
|
-webkit-transform: scale(1.2);
|
|
@@ -763,18 +455,226 @@
|
|
|
763
455
|
transform: translate(-50%,-52%)
|
|
764
456
|
}
|
|
765
457
|
|
|
766
|
-
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
767
|
-
display: none!important
|
|
768
|
-
}
|
|
769
|
-
.icon-tuoyuanxing:before {
|
|
770
|
-
content: "\E6A7";
|
|
458
|
+
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
459
|
+
display: none!important
|
|
460
|
+
}
|
|
461
|
+
.icon-tuoyuanxing:before {
|
|
462
|
+
content: "\E6A7";
|
|
463
|
+
}
|
|
464
|
+
.icon-zan1:before {
|
|
465
|
+
content: "\E66D";
|
|
466
|
+
}
|
|
467
|
+
.icon-xingzhuangjiehe:before {
|
|
468
|
+
content: "\E6A6";
|
|
469
|
+
}
|
|
470
|
+
.element-video {
|
|
471
|
+
position: absolute;
|
|
472
|
+
overflow: hidden;
|
|
473
|
+
background-color: transparent;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.element-video .ani-wrap, .element-video img {
|
|
477
|
+
display: block;
|
|
478
|
+
width: 100%;
|
|
479
|
+
height: 100%;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.video-container {
|
|
483
|
+
width: 100%;
|
|
484
|
+
height: 100%;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.video-container iframe {
|
|
488
|
+
width: 100%;
|
|
489
|
+
height: 100%;
|
|
490
|
+
border: none;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.video-cover {
|
|
494
|
+
position: relative;
|
|
495
|
+
width: 100%;
|
|
496
|
+
height: 100%;
|
|
497
|
+
background-size: cover;
|
|
498
|
+
background-position: center;
|
|
499
|
+
cursor: pointer;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.video-cover .play-btn {
|
|
503
|
+
position: absolute;
|
|
504
|
+
left: 50%;
|
|
505
|
+
top: 50%;
|
|
506
|
+
transform: translate(-50%, -50%);
|
|
507
|
+
width: 50px;
|
|
508
|
+
height: 50px;
|
|
509
|
+
opacity: 0.8;
|
|
510
|
+
transition: opacity 0.2s;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.video-cover:hover .play-btn {
|
|
514
|
+
opacity: 1;
|
|
515
|
+
}.count-down .drag-point {
|
|
516
|
+
cursor: default!important
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.count-down .ani-wrap {
|
|
520
|
+
width: 100%;
|
|
521
|
+
height: 100%
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
525
|
+
display: -webkit-box;
|
|
526
|
+
display: -ms-flexbox;
|
|
527
|
+
display: flex;
|
|
528
|
+
height: 100%;
|
|
529
|
+
-webkit-box-align: center;
|
|
530
|
+
-ms-flex-align: center;
|
|
531
|
+
align-items: center;
|
|
532
|
+
-webkit-box-pack: center;
|
|
533
|
+
-ms-flex-pack: center;
|
|
534
|
+
justify-content: center
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.count-down .finish-cont {
|
|
538
|
+
width: 100%
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.count-down .count-flip {
|
|
542
|
+
display: -webkit-box;
|
|
543
|
+
display: -ms-flexbox;
|
|
544
|
+
display: flex;
|
|
545
|
+
height: 100%;
|
|
546
|
+
-webkit-box-align: center;
|
|
547
|
+
-ms-flex-align: center;
|
|
548
|
+
align-items: center;
|
|
549
|
+
-webkit-box-pack: center;
|
|
550
|
+
-ms-flex-pack: center;
|
|
551
|
+
justify-content: center
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.count-down .count-flip .numscroll {
|
|
555
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
556
|
+
animation: numscroll .4s ease-in-out;
|
|
557
|
+
-webkit-animation-fill-mode: both;
|
|
558
|
+
animation-fill-mode: both
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
562
|
+
-webkit-transition: all .3s ease-in-out;
|
|
563
|
+
transition: all .3s ease-in-out;
|
|
564
|
+
opacity: .6;
|
|
565
|
+
-webkit-transform: scale(.5)!important;
|
|
566
|
+
transform: scale(.5)!important
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
@-webkit-keyframes numscroll {
|
|
570
|
+
0% {
|
|
571
|
+
-webkit-transform: translateZ(0);
|
|
572
|
+
transform: translateZ(0)
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
to {
|
|
576
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
577
|
+
transform: translate3d(0,100%,0)
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
@keyframes numscroll {
|
|
582
|
+
0% {
|
|
583
|
+
-webkit-transform: translateZ(0);
|
|
584
|
+
transform: translateZ(0)
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
to {
|
|
588
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
589
|
+
transform: translate3d(0,100%,0)
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.count-down .count-flip .c-com {
|
|
594
|
+
min-width: 50px;
|
|
595
|
+
height: auto;
|
|
596
|
+
margin: 6px;
|
|
597
|
+
padding: 5px 0 6px;
|
|
598
|
+
background-color: #111
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
602
|
+
display: -webkit-box;
|
|
603
|
+
display: -ms-flexbox;
|
|
604
|
+
display: flex;
|
|
605
|
+
position: relative;
|
|
606
|
+
width: 100%;
|
|
607
|
+
height: 100%;
|
|
608
|
+
-webkit-box-align: center;
|
|
609
|
+
-ms-flex-align: center;
|
|
610
|
+
align-items: center
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
614
|
+
line-height: 27px
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
618
|
+
position: absolute;
|
|
619
|
+
top: -100%
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
623
|
+
-webkit-transform: scale(1);
|
|
624
|
+
transform: scale(1)
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.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 {
|
|
628
|
+
display: none!important
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.c-wrap {
|
|
632
|
+
width: 100%;
|
|
633
|
+
height: 100%;
|
|
634
|
+
overflow: hidden;
|
|
635
|
+
font-size: 0
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.c-wrap.c-day-wrap {
|
|
639
|
+
text-align: center
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.c-wrap.c-day-wrap .c-num {
|
|
643
|
+
width: auto
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.c-wrap .c-num {
|
|
647
|
+
display: inline-block;
|
|
648
|
+
width: 50%;
|
|
649
|
+
overflow: hidden;
|
|
650
|
+
font-size: 20px;
|
|
651
|
+
color: #999
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.c-wrap .c-left .flex-wrap {
|
|
655
|
+
display: -webkit-box;
|
|
656
|
+
display: -ms-flexbox;
|
|
657
|
+
display: flex;
|
|
658
|
+
-webkit-box-pack: end;
|
|
659
|
+
-ms-flex-pack: end;
|
|
660
|
+
justify-content: flex-end
|
|
771
661
|
}
|
|
772
|
-
|
|
773
|
-
|
|
662
|
+
|
|
663
|
+
.c-wrap .c-text {
|
|
664
|
+
display: -webkit-box;
|
|
665
|
+
display: -ms-flexbox;
|
|
666
|
+
display: flex;
|
|
667
|
+
width: 100%;
|
|
668
|
+
font-size: 12px;
|
|
669
|
+
-webkit-box-pack: center;
|
|
670
|
+
-ms-flex-pack: center;
|
|
671
|
+
justify-content: center;
|
|
672
|
+
-webkit-box-align: center;
|
|
673
|
+
-ms-flex-align: center;
|
|
674
|
+
align-items: center;
|
|
675
|
+
white-space: nowrap
|
|
774
676
|
}
|
|
775
|
-
|
|
776
|
-
content: "\E6A6";
|
|
777
|
-
}/* Iconfont definition */
|
|
677
|
+
/* Iconfont definition */
|
|
778
678
|
.icon-danmuliebiao1:before {
|
|
779
679
|
content: "\E68A";
|
|
780
680
|
}
|
|
@@ -1677,40 +1577,151 @@
|
|
|
1677
1577
|
100% { transform: rotate(360deg); }
|
|
1678
1578
|
}
|
|
1679
1579
|
|
|
1680
|
-
.
|
|
1580
|
+
.ele-shape {
|
|
1681
1581
|
position: absolute;
|
|
1682
|
-
|
|
1683
|
-
user-select: none;
|
|
1582
|
+
overflow: hidden;
|
|
1684
1583
|
}
|
|
1685
1584
|
|
|
1686
|
-
.
|
|
1585
|
+
.ani-wrap {
|
|
1586
|
+
width: 100%;
|
|
1587
|
+
height: 100%;
|
|
1588
|
+
box-sizing: border-box;
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
.e-shape {
|
|
1592
|
+
width: 100%;
|
|
1593
|
+
height: 100%;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.svg-container :deep(svg) {
|
|
1597
|
+
width: 100%;
|
|
1598
|
+
height: 100%;
|
|
1599
|
+
display: block;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
.svg-loading,
|
|
1603
|
+
.svg-error {
|
|
1687
1604
|
display: flex;
|
|
1605
|
+
align-items: center;
|
|
1688
1606
|
justify-content: center;
|
|
1607
|
+
width: 100%;
|
|
1608
|
+
height: 100%;
|
|
1609
|
+
background: rgba(0,0,0,0.05);
|
|
1610
|
+
}.element-ditu .ani-wrap {
|
|
1611
|
+
width: 100%;
|
|
1612
|
+
height: 100%;
|
|
1613
|
+
overflow: hidden
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.element-ditu .map {
|
|
1617
|
+
width: 100%;
|
|
1618
|
+
height: 100%
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.element-ditu .map .el-button {
|
|
1622
|
+
width: 100%;
|
|
1623
|
+
height: 100%;
|
|
1624
|
+
display: -webkit-box;
|
|
1625
|
+
display: -ms-flexbox;
|
|
1626
|
+
display: flex;
|
|
1627
|
+
-webkit-box-align: center;
|
|
1628
|
+
-ms-flex-align: center;
|
|
1689
1629
|
align-items: center;
|
|
1630
|
+
padding: 0;
|
|
1631
|
+
-webkit-box-pack: center;
|
|
1632
|
+
-ms-flex-pack: center;
|
|
1633
|
+
justify-content: center;
|
|
1634
|
+
background: inherit;
|
|
1635
|
+
color: inherit;
|
|
1636
|
+
border: none
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.element-ditu .center-map {
|
|
1690
1640
|
width: 100%;
|
|
1691
1641
|
height: 100%;
|
|
1692
|
-
|
|
1693
|
-
transition: opacity 0.2s;
|
|
1642
|
+
background: #fff
|
|
1694
1643
|
}
|
|
1695
1644
|
|
|
1696
|
-
.
|
|
1697
|
-
|
|
1645
|
+
.element-ditu .mask-map {
|
|
1646
|
+
position: absolute;
|
|
1647
|
+
width: 100%;
|
|
1648
|
+
height: 100%;
|
|
1649
|
+
top: 0
|
|
1650
|
+
}
|
|
1651
|
+
.map-iframe {
|
|
1652
|
+
width: 100%;
|
|
1653
|
+
height: 100%;
|
|
1654
|
+
}#audio {
|
|
1655
|
+
position: absolute;
|
|
1656
|
+
right: 10px;
|
|
1657
|
+
top: 10px;
|
|
1658
|
+
z-index: 103;
|
|
1659
|
+
width: 30px;
|
|
1660
|
+
height: 30px;
|
|
1661
|
+
display: flex;
|
|
1662
|
+
align-items: center;
|
|
1698
1663
|
}
|
|
1699
1664
|
|
|
1700
|
-
.
|
|
1665
|
+
#audio .mrotate {
|
|
1666
|
+
animation: mrotate 5s linear infinite;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
@keyframes mrotate {
|
|
1670
|
+
to {
|
|
1671
|
+
transform: rotate(1turn);
|
|
1672
|
+
}
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
#audio .audio {
|
|
1676
|
+
width: 100%;
|
|
1677
|
+
height: 100%;
|
|
1701
1678
|
display: flex;
|
|
1702
1679
|
align-items: center;
|
|
1703
1680
|
justify-content: center;
|
|
1681
|
+
color: #fff;
|
|
1682
|
+
background: #666;
|
|
1683
|
+
border-radius: 50%;
|
|
1684
|
+
overflow: hidden;
|
|
1685
|
+
cursor: pointer;
|
|
1686
|
+
transition: all 0.3s ease;
|
|
1704
1687
|
}
|
|
1705
1688
|
|
|
1706
|
-
.
|
|
1707
|
-
|
|
1689
|
+
#audio .audio.a-border {
|
|
1690
|
+
border: 1px solid #fff;
|
|
1708
1691
|
}
|
|
1709
1692
|
|
|
1693
|
+
#audio .audio .music-icon {
|
|
1694
|
+
display: block;
|
|
1695
|
+
width: 60%;
|
|
1696
|
+
height: 60%;
|
|
1697
|
+
object-fit: contain;
|
|
1698
|
+
}
|
|
1710
1699
|
|
|
1711
|
-
.
|
|
1712
|
-
|
|
1713
|
-
|
|
1700
|
+
#audio .audio .iconfont {
|
|
1701
|
+
font-size: 2opx;
|
|
1702
|
+
line-height: 1;
|
|
1703
|
+
}
|
|
1704
|
+
#audio .icon-cancel {
|
|
1705
|
+
position: absolute;
|
|
1706
|
+
width: 100%;
|
|
1707
|
+
height: 100%;
|
|
1708
|
+
border-radius: 50%;
|
|
1709
|
+
overflow: hidden;
|
|
1710
|
+
padding: 15px 0;
|
|
1711
|
+
}
|
|
1712
|
+
#audio .icon-cancel .icon-h {
|
|
1713
|
+
transform: rotate(45deg);
|
|
1714
|
+
width: 100%;
|
|
1715
|
+
height: 2px;
|
|
1716
|
+
background: #fff;
|
|
1717
|
+
}
|
|
1718
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
1719
|
+
content: '';
|
|
1720
|
+
position: absolute;
|
|
1721
|
+
width: 100%;
|
|
1722
|
+
height: 2px;
|
|
1723
|
+
background: #fff;
|
|
1724
|
+
}.ele-effect {
|
|
1714
1725
|
will-change: transform;
|
|
1715
1726
|
}
|
|
1716
1727
|
|
|
@@ -1735,39 +1746,122 @@
|
|
|
1735
1746
|
transform: translateY(0) rotate(0deg);
|
|
1736
1747
|
opacity: 1;
|
|
1737
1748
|
}
|
|
1738
|
-
80% {
|
|
1739
|
-
opacity: 0.8;
|
|
1749
|
+
80% {
|
|
1750
|
+
opacity: 0.8;
|
|
1751
|
+
}
|
|
1752
|
+
100% {
|
|
1753
|
+
transform: translateY(100vh) rotate(360deg);
|
|
1754
|
+
opacity: 0;
|
|
1755
|
+
}
|
|
1756
|
+
}
|
|
1757
|
+
.ele-lottie .ele-lotwrap {
|
|
1758
|
+
overflow: hidden
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
.ele-effect .effect-wrap {
|
|
1762
|
+
position: relative;
|
|
1763
|
+
overflow: hidden;
|
|
1764
|
+
width: 100%;
|
|
1765
|
+
height: 100%
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
.ele-effect .e-small {
|
|
1769
|
+
position: absolute;
|
|
1770
|
+
width: 24px;
|
|
1771
|
+
height: 24px;
|
|
1772
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
1773
|
+
background-size: cover;
|
|
1774
|
+
background-repeat: no-repeat;
|
|
1775
|
+
-webkit-transform-origin: center;
|
|
1776
|
+
transform-origin: center;
|
|
1777
|
+
-webkit-animation: snow 5s linear infinite;
|
|
1778
|
+
animation: snow 5s linear infinite
|
|
1779
|
+
}
|
|
1780
|
+
.ele-lottie .ele-lotwrap {
|
|
1781
|
+
overflow: hidden;
|
|
1782
|
+
}.call {
|
|
1783
|
+
position: absolute;
|
|
1784
|
+
cursor: pointer;
|
|
1785
|
+
user-select: none;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
.call .ani-wrap {
|
|
1789
|
+
display: flex;
|
|
1790
|
+
justify-content: center;
|
|
1791
|
+
align-items: center;
|
|
1792
|
+
width: 100%;
|
|
1793
|
+
height: 100%;
|
|
1794
|
+
overflow: hidden;
|
|
1795
|
+
transition: opacity 0.2s;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
.call .ani-wrap:hover {
|
|
1799
|
+
opacity: 0.9;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
.call-content {
|
|
1803
|
+
display: flex;
|
|
1804
|
+
align-items: center;
|
|
1805
|
+
justify-content: center;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.btn-text {
|
|
1809
|
+
margin-left: 10px;
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
|
|
1813
|
+
.hb-tel:before {
|
|
1814
|
+
content: "\E642";
|
|
1815
|
+
}.form-input {
|
|
1816
|
+
position: absolute;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
.input-wrapper {
|
|
1820
|
+
display: flex;
|
|
1821
|
+
align-items: center;
|
|
1822
|
+
width: 100%;
|
|
1823
|
+
height: 100%;
|
|
1824
|
+
padding: 0 10px;
|
|
1825
|
+
box-sizing: border-box;
|
|
1826
|
+
position: relative;
|
|
1827
|
+
transition: border-color 0.3s;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
.required-marker {
|
|
1831
|
+
font-size: 12px;
|
|
1832
|
+
padding: 0 5px 0 0;
|
|
1833
|
+
color: red;
|
|
1834
|
+
vertical-align: middle;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
input {
|
|
1838
|
+
flex: 1;
|
|
1839
|
+
border: none;
|
|
1840
|
+
outline: none;
|
|
1841
|
+
background: transparent;
|
|
1842
|
+
height: 100%;
|
|
1843
|
+
padding: 0;
|
|
1844
|
+
margin: 0;
|
|
1845
|
+
}
|
|
1846
|
+
/*
|
|
1847
|
+
input::placeholder {
|
|
1848
|
+
color: #ccc;
|
|
1849
|
+
opacity: 1;
|
|
1850
|
+
} */
|
|
1851
|
+
|
|
1852
|
+
.dynamic-placeholder-input::placeholder {
|
|
1853
|
+
color: var(--placeholder-color, #999);
|
|
1854
|
+
opacity: 1;
|
|
1855
|
+
}
|
|
1856
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
1857
|
+
color: var(--placeholder-color, #999);
|
|
1740
1858
|
}
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
opacity:
|
|
1859
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
1860
|
+
color: var(--placeholder-color, #999);
|
|
1861
|
+
opacity: 1;
|
|
1744
1862
|
}
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
overflow: hidden
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
|
-
.ele-effect .effect-wrap {
|
|
1751
|
-
position: relative;
|
|
1752
|
-
overflow: hidden;
|
|
1753
|
-
width: 100%;
|
|
1754
|
-
height: 100%
|
|
1755
|
-
}
|
|
1756
|
-
|
|
1757
|
-
.ele-effect .e-small {
|
|
1758
|
-
position: absolute;
|
|
1759
|
-
width: 24px;
|
|
1760
|
-
height: 24px;
|
|
1761
|
-
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
1762
|
-
background-size: cover;
|
|
1763
|
-
background-repeat: no-repeat;
|
|
1764
|
-
-webkit-transform-origin: center;
|
|
1765
|
-
transform-origin: center;
|
|
1766
|
-
-webkit-animation: snow 5s linear infinite;
|
|
1767
|
-
animation: snow 5s linear infinite
|
|
1768
|
-
}
|
|
1769
|
-
.ele-lottie .ele-lotwrap {
|
|
1770
|
-
overflow: hidden;
|
|
1863
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
1864
|
+
color: var(--placeholder-color, #999);
|
|
1771
1865
|
}.button {
|
|
1772
1866
|
position: absolute;
|
|
1773
1867
|
cursor: pointer;
|
|
@@ -1796,128 +1890,7 @@
|
|
|
1796
1890
|
|
|
1797
1891
|
.btn-text {
|
|
1798
1892
|
margin-left: 10px;
|
|
1799
|
-
}
|
|
1800
|
-
width: 100%;
|
|
1801
|
-
height: 100%;
|
|
1802
|
-
overflow: hidden
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
.element-ditu .map {
|
|
1806
|
-
width: 100%;
|
|
1807
|
-
height: 100%
|
|
1808
|
-
}
|
|
1809
|
-
|
|
1810
|
-
.element-ditu .map .el-button {
|
|
1811
|
-
width: 100%;
|
|
1812
|
-
height: 100%;
|
|
1813
|
-
display: -webkit-box;
|
|
1814
|
-
display: -ms-flexbox;
|
|
1815
|
-
display: flex;
|
|
1816
|
-
-webkit-box-align: center;
|
|
1817
|
-
-ms-flex-align: center;
|
|
1818
|
-
align-items: center;
|
|
1819
|
-
padding: 0;
|
|
1820
|
-
-webkit-box-pack: center;
|
|
1821
|
-
-ms-flex-pack: center;
|
|
1822
|
-
justify-content: center;
|
|
1823
|
-
background: inherit;
|
|
1824
|
-
color: inherit;
|
|
1825
|
-
border: none
|
|
1826
|
-
}
|
|
1827
|
-
|
|
1828
|
-
.element-ditu .center-map {
|
|
1829
|
-
width: 100%;
|
|
1830
|
-
height: 100%;
|
|
1831
|
-
background: #fff
|
|
1832
|
-
}
|
|
1833
|
-
|
|
1834
|
-
.element-ditu .mask-map {
|
|
1835
|
-
position: absolute;
|
|
1836
|
-
width: 100%;
|
|
1837
|
-
height: 100%;
|
|
1838
|
-
top: 0
|
|
1839
|
-
}
|
|
1840
|
-
.map-iframe {
|
|
1841
|
-
width: 100%;
|
|
1842
|
-
height: 100%;
|
|
1843
|
-
}#page-list .tip-cover {
|
|
1844
|
-
position: fixed;
|
|
1845
|
-
left: 0;
|
|
1846
|
-
top: 0;
|
|
1847
|
-
width: 100%;
|
|
1848
|
-
height: 100%;
|
|
1849
|
-
display: -ms-flexbox;
|
|
1850
|
-
display: flex;
|
|
1851
|
-
-ms-flex-align: center;
|
|
1852
|
-
align-items: center;
|
|
1853
|
-
-ms-flex-pack: center;
|
|
1854
|
-
justify-content: center;
|
|
1855
|
-
z-index: 999;
|
|
1856
|
-
background-color: rgba(0,0,0,.7)
|
|
1857
|
-
}
|
|
1858
|
-
|
|
1859
|
-
#page-list .tip-cover .tip {
|
|
1860
|
-
width: 80%;
|
|
1861
|
-
max-width: 250px;
|
|
1862
|
-
padding: 10px;
|
|
1863
|
-
border-radius: 5px;
|
|
1864
|
-
background-color: #fff
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
|
-
#page-list .tip-cover .tip-btn {
|
|
1868
|
-
display: block;
|
|
1869
|
-
margin: 25px auto;
|
|
1870
|
-
width: 120px;
|
|
1871
|
-
height: 30px;
|
|
1872
|
-
color: #fff;
|
|
1873
|
-
border-radius: 4px;
|
|
1874
|
-
text-align: center;
|
|
1875
|
-
font-size: 14px;
|
|
1876
|
-
line-height: 30px;
|
|
1877
|
-
background: #ed5566
|
|
1878
|
-
}
|
|
1879
|
-
|
|
1880
|
-
#page-list .tip-cover .tip-content {
|
|
1881
|
-
font-size: 14px;
|
|
1882
|
-
padding-top: 30px;
|
|
1883
|
-
}
|
|
1884
|
-
|
|
1885
|
-
.tip-cover {
|
|
1886
|
-
position: fixed;
|
|
1887
|
-
left: 0;
|
|
1888
|
-
top: 0;
|
|
1889
|
-
width: 100%;
|
|
1890
|
-
height: 100%;
|
|
1891
|
-
display: -ms-flexbox;
|
|
1892
|
-
display: flex;
|
|
1893
|
-
-ms-flex-align: center;
|
|
1894
|
-
align-items: center;
|
|
1895
|
-
-ms-flex-pack: center;
|
|
1896
|
-
justify-content: center;
|
|
1897
|
-
z-index: 999;
|
|
1898
|
-
background-color: rgba(0,0,0,.7)
|
|
1899
|
-
}
|
|
1900
|
-
|
|
1901
|
-
.tip-cover .tip {
|
|
1902
|
-
width: 80%;
|
|
1903
|
-
max-width: 250px;
|
|
1904
|
-
padding: 5px;
|
|
1905
|
-
border-radius: 3px;
|
|
1906
|
-
background-color: #fff
|
|
1907
|
-
}
|
|
1908
|
-
|
|
1909
|
-
.tip-cover .tip-btn {
|
|
1910
|
-
display: block;
|
|
1911
|
-
margin: 13px auto;
|
|
1912
|
-
width: 64px;
|
|
1913
|
-
height: 20px;
|
|
1914
|
-
color: #fff;
|
|
1915
|
-
border-radius: 4px;
|
|
1916
|
-
text-align: center;
|
|
1917
|
-
font-size: 14px;
|
|
1918
|
-
line-height: 20px;
|
|
1919
|
-
background: #ed5566;
|
|
1920
|
-
} body, html {
|
|
1893
|
+
}body, html {
|
|
1921
1894
|
width: 100%;
|
|
1922
1895
|
height: 100%;
|
|
1923
1896
|
}
|
|
@@ -3356,94 +3329,44 @@ to {
|
|
|
3356
3329
|
}
|
|
3357
3330
|
|
|
3358
3331
|
40% {
|
|
3359
|
-
opacity: 1;
|
|
3360
|
-
-webkit-transform: scaleY(1.02);
|
|
3361
|
-
transform: scaleY(1.02);
|
|
3362
|
-
-webkit-transform-origin: 50% 0;
|
|
3363
|
-
transform-origin: 50% 0
|
|
3364
|
-
}
|
|
3365
|
-
|
|
3366
|
-
60% {
|
|
3367
|
-
-webkit-transform: scaleY(.98);
|
|
3368
|
-
transform: scaleY(.98);
|
|
3369
|
-
-webkit-transform-origin: 50% 0;
|
|
3370
|
-
transform-origin: 50% 0
|
|
3371
|
-
}
|
|
3372
|
-
|
|
3373
|
-
80% {
|
|
3374
|
-
-webkit-transform: scaleY(1.01);
|
|
3375
|
-
transform: scaleY(1.01);
|
|
3376
|
-
-webkit-transform-origin: 50% 0;
|
|
3377
|
-
transform-origin: 50% 0
|
|
3378
|
-
}
|
|
3379
|
-
|
|
3380
|
-
99% {
|
|
3381
|
-
-webkit-transform: scaleY(1);
|
|
3382
|
-
transform: scaleY(1);
|
|
3383
|
-
-webkit-transform-origin: 50% 0;
|
|
3384
|
-
transform-origin: 50% 0
|
|
3385
|
-
}
|
|
3386
|
-
|
|
3387
|
-
to {
|
|
3388
|
-
-webkit-transform: none;
|
|
3389
|
-
transform: none
|
|
3390
|
-
}
|
|
3391
|
-
}.form
|
|
3392
|
-
position: absolute;
|
|
3393
|
-
}
|
|
3394
|
-
|
|
3395
|
-
.input-wrapper {
|
|
3396
|
-
display: flex;
|
|
3397
|
-
align-items: center;
|
|
3398
|
-
width: 100%;
|
|
3399
|
-
height: 100%;
|
|
3400
|
-
padding: 0 10px;
|
|
3401
|
-
box-sizing: border-box;
|
|
3402
|
-
position: relative;
|
|
3403
|
-
transition: border-color 0.3s;
|
|
3404
|
-
}
|
|
3405
|
-
|
|
3406
|
-
.required-marker {
|
|
3407
|
-
font-size: 12px;
|
|
3408
|
-
padding: 0 5px 0 0;
|
|
3409
|
-
color: red;
|
|
3410
|
-
vertical-align: middle;
|
|
3411
|
-
}
|
|
3412
|
-
|
|
3413
|
-
input {
|
|
3414
|
-
flex: 1;
|
|
3415
|
-
border: none;
|
|
3416
|
-
outline: none;
|
|
3417
|
-
background: transparent;
|
|
3418
|
-
height: 100%;
|
|
3419
|
-
padding: 0;
|
|
3420
|
-
margin: 0;
|
|
3421
|
-
}
|
|
3422
|
-
/*
|
|
3423
|
-
input::placeholder {
|
|
3424
|
-
color: #ccc;
|
|
3425
|
-
opacity: 1;
|
|
3426
|
-
} */
|
|
3427
|
-
|
|
3428
|
-
.dynamic-placeholder-input::placeholder {
|
|
3429
|
-
color: var(--placeholder-color, #999);
|
|
3430
|
-
opacity: 1;
|
|
3431
|
-
}
|
|
3432
|
-
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
3433
|
-
color: var(--placeholder-color, #999);
|
|
3434
|
-
}
|
|
3435
|
-
.dynamic-placeholder-input::-moz-placeholder {
|
|
3436
|
-
color: var(--placeholder-color, #999);
|
|
3437
|
-
opacity: 1;
|
|
3438
|
-
}
|
|
3439
|
-
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
3440
|
-
color: var(--placeholder-color, #999);
|
|
3441
|
-
}/* .ele-form {
|
|
3332
|
+
opacity: 1;
|
|
3333
|
+
-webkit-transform: scaleY(1.02);
|
|
3334
|
+
transform: scaleY(1.02);
|
|
3335
|
+
-webkit-transform-origin: 50% 0;
|
|
3336
|
+
transform-origin: 50% 0
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
60% {
|
|
3340
|
+
-webkit-transform: scaleY(.98);
|
|
3341
|
+
transform: scaleY(.98);
|
|
3342
|
+
-webkit-transform-origin: 50% 0;
|
|
3343
|
+
transform-origin: 50% 0
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
80% {
|
|
3347
|
+
-webkit-transform: scaleY(1.01);
|
|
3348
|
+
transform: scaleY(1.01);
|
|
3349
|
+
-webkit-transform-origin: 50% 0;
|
|
3350
|
+
transform-origin: 50% 0
|
|
3351
|
+
}
|
|
3352
|
+
|
|
3353
|
+
99% {
|
|
3354
|
+
-webkit-transform: scaleY(1);
|
|
3355
|
+
transform: scaleY(1);
|
|
3356
|
+
-webkit-transform-origin: 50% 0;
|
|
3357
|
+
transform-origin: 50% 0
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3360
|
+
to {
|
|
3361
|
+
-webkit-transform: none;
|
|
3362
|
+
transform: none
|
|
3363
|
+
}
|
|
3364
|
+
}/* .ele-form {
|
|
3442
3365
|
position: absolute;
|
|
3443
3366
|
user-select: none;
|
|
3444
|
-
}
|
|
3445
|
-
|
|
3446
|
-
.f-
|
|
3367
|
+
} */
|
|
3368
|
+
|
|
3369
|
+
.f-select {
|
|
3447
3370
|
cursor: pointer;
|
|
3448
3371
|
}
|
|
3449
3372
|
|
|
@@ -3451,15 +3374,13 @@ to {
|
|
|
3451
3374
|
position: relative;
|
|
3452
3375
|
}
|
|
3453
3376
|
|
|
3454
|
-
.f-
|
|
3377
|
+
.f-select .ani-wrap .fs-tit {
|
|
3378
|
+
position: relative;
|
|
3455
3379
|
display: flex;
|
|
3456
3380
|
padding: 0 5px;
|
|
3457
|
-
height:
|
|
3381
|
+
height: 35px;
|
|
3382
|
+
line-height: 35px;
|
|
3458
3383
|
align-items: center;
|
|
3459
|
-
white-space: nowrap;
|
|
3460
|
-
overflow: hidden;
|
|
3461
|
-
text-overflow: ellipsis;
|
|
3462
|
-
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3463
3384
|
}
|
|
3464
3385
|
|
|
3465
3386
|
.require {
|
|
@@ -3468,63 +3389,69 @@ to {
|
|
|
3468
3389
|
vertical-align: middle;
|
|
3469
3390
|
}
|
|
3470
3391
|
|
|
3471
|
-
.
|
|
3472
|
-
padding: 15px;
|
|
3473
|
-
|
|
3474
|
-
|
|
3392
|
+
.fs-cont {
|
|
3393
|
+
padding-right: 15px;
|
|
3394
|
+
white-space: nowrap;
|
|
3395
|
+
overflow: hidden;
|
|
3396
|
+
text-overflow: ellipsis;
|
|
3397
|
+
flex-grow: 1;
|
|
3475
3398
|
}
|
|
3476
3399
|
|
|
3477
|
-
.
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
margin-top: 12px;
|
|
3481
|
-
font-size: 0;
|
|
3400
|
+
.icon-bofang1 {
|
|
3401
|
+
font-size: 12px;
|
|
3402
|
+
transition: transform 0.2s ease;
|
|
3482
3403
|
}
|
|
3483
3404
|
|
|
3484
|
-
.
|
|
3485
|
-
|
|
3405
|
+
.rotate-180 {
|
|
3406
|
+
transform: rotate(180deg) !important;
|
|
3486
3407
|
}
|
|
3487
3408
|
|
|
3488
|
-
.
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3409
|
+
.f-real {
|
|
3410
|
+
position: absolute;
|
|
3411
|
+
left: 0;
|
|
3412
|
+
top: 0;
|
|
3413
|
+
width: 100%;
|
|
3414
|
+
height: 100%;
|
|
3415
|
+
z-index: 1;
|
|
3416
|
+
opacity: 0;
|
|
3417
|
+
cursor: pointer;
|
|
3495
3418
|
}
|
|
3496
3419
|
|
|
3497
|
-
.
|
|
3498
|
-
|
|
3499
|
-
border-color: #2687f1 !important;
|
|
3420
|
+
.dropdown-menu {
|
|
3421
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
3500
3422
|
}
|
|
3501
3423
|
|
|
3502
|
-
.
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
left: 3px;
|
|
3507
|
-
width: 8px;
|
|
3508
|
-
height: 8px;
|
|
3509
|
-
border-radius: 50%;
|
|
3510
|
-
background-color: white;
|
|
3424
|
+
.dropdown-item {
|
|
3425
|
+
padding: 8px 10px;
|
|
3426
|
+
cursor: pointer;
|
|
3427
|
+
transition: background-color 0.2s;
|
|
3511
3428
|
}
|
|
3512
3429
|
|
|
3513
|
-
.
|
|
3514
|
-
|
|
3515
|
-
width: calc(100% - 16px);
|
|
3516
|
-
padding-left: 8px;
|
|
3517
|
-
vertical-align: top;
|
|
3518
|
-
word-break: break-all;
|
|
3519
|
-
font-size: 14px;
|
|
3520
|
-
line-height: 1.2;
|
|
3430
|
+
.dropdown-item:hover {
|
|
3431
|
+
background-color: #f5f5f5;
|
|
3521
3432
|
}
|
|
3522
3433
|
|
|
3523
|
-
.
|
|
3524
|
-
|
|
3434
|
+
.dropdown-item.selected {
|
|
3435
|
+
background-color: #e6f7ff;
|
|
3436
|
+
color: #1890ff;
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3439
|
+
.f-select .fs-tit .icon-bofang1 {
|
|
3440
|
+
position: absolute;
|
|
3441
|
+
right: 10px;
|
|
3442
|
+
font-size: 12px;
|
|
3443
|
+
display: inline-block;
|
|
3444
|
+
transform: rotate(90deg);
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
.icon-bofang1:before {
|
|
3448
|
+
content: "\E6CF";
|
|
3449
|
+
}
|
|
3450
|
+
|
|
3451
|
+
.has-error {
|
|
3452
|
+
border-color: #ff4d4f !important;
|
|
3525
3453
|
}
|
|
3526
3454
|
|
|
3527
|
-
/* 错误提示样式 */
|
|
3528
3455
|
.error-tip {
|
|
3529
3456
|
position: fixed;
|
|
3530
3457
|
left: 0;
|
|
@@ -3532,7 +3459,84 @@ to {
|
|
|
3532
3459
|
width: 100%;
|
|
3533
3460
|
height: 100%;
|
|
3534
3461
|
z-index: 1000;
|
|
3535
|
-
}.
|
|
3462
|
+
}#page-list .tip-cover {
|
|
3463
|
+
position: fixed;
|
|
3464
|
+
left: 0;
|
|
3465
|
+
top: 0;
|
|
3466
|
+
width: 100%;
|
|
3467
|
+
height: 100%;
|
|
3468
|
+
display: -ms-flexbox;
|
|
3469
|
+
display: flex;
|
|
3470
|
+
-ms-flex-align: center;
|
|
3471
|
+
align-items: center;
|
|
3472
|
+
-ms-flex-pack: center;
|
|
3473
|
+
justify-content: center;
|
|
3474
|
+
z-index: 999;
|
|
3475
|
+
background-color: rgba(0,0,0,.7)
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
#page-list .tip-cover .tip {
|
|
3479
|
+
width: 80%;
|
|
3480
|
+
max-width: 250px;
|
|
3481
|
+
padding: 10px;
|
|
3482
|
+
border-radius: 5px;
|
|
3483
|
+
background-color: #fff
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
#page-list .tip-cover .tip-btn {
|
|
3487
|
+
display: block;
|
|
3488
|
+
margin: 25px auto;
|
|
3489
|
+
width: 120px;
|
|
3490
|
+
height: 30px;
|
|
3491
|
+
color: #fff;
|
|
3492
|
+
border-radius: 4px;
|
|
3493
|
+
text-align: center;
|
|
3494
|
+
font-size: 14px;
|
|
3495
|
+
line-height: 30px;
|
|
3496
|
+
background: #ed5566
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3499
|
+
#page-list .tip-cover .tip-content {
|
|
3500
|
+
font-size: 14px;
|
|
3501
|
+
padding-top: 30px;
|
|
3502
|
+
}
|
|
3503
|
+
|
|
3504
|
+
.tip-cover {
|
|
3505
|
+
position: fixed;
|
|
3506
|
+
left: 0;
|
|
3507
|
+
top: 0;
|
|
3508
|
+
width: 100%;
|
|
3509
|
+
height: 100%;
|
|
3510
|
+
display: -ms-flexbox;
|
|
3511
|
+
display: flex;
|
|
3512
|
+
-ms-flex-align: center;
|
|
3513
|
+
align-items: center;
|
|
3514
|
+
-ms-flex-pack: center;
|
|
3515
|
+
justify-content: center;
|
|
3516
|
+
z-index: 999;
|
|
3517
|
+
background-color: rgba(0,0,0,.7)
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3520
|
+
.tip-cover .tip {
|
|
3521
|
+
width: 80%;
|
|
3522
|
+
max-width: 250px;
|
|
3523
|
+
padding: 5px;
|
|
3524
|
+
border-radius: 3px;
|
|
3525
|
+
background-color: #fff
|
|
3526
|
+
}
|
|
3527
|
+
|
|
3528
|
+
.tip-cover .tip-btn {
|
|
3529
|
+
display: block;
|
|
3530
|
+
margin: 13px auto;
|
|
3531
|
+
width: 64px;
|
|
3532
|
+
height: 20px;
|
|
3533
|
+
color: #fff;
|
|
3534
|
+
border-radius: 4px;
|
|
3535
|
+
text-align: center;
|
|
3536
|
+
font-size: 14px;
|
|
3537
|
+
line-height: 20px;
|
|
3538
|
+
background: #ed5566;
|
|
3539
|
+
} .form-submit {
|
|
3536
3540
|
cursor: pointer;
|
|
3537
3541
|
transition: all 0.2s;
|
|
3538
3542
|
outline: none;
|
|
@@ -3581,9 +3585,9 @@ cursor: not-allowed;
|
|
|
3581
3585
|
}/* .ele-form {
|
|
3582
3586
|
position: absolute;
|
|
3583
3587
|
user-select: none;
|
|
3584
|
-
}
|
|
3585
|
-
|
|
3586
|
-
.f-
|
|
3588
|
+
}
|
|
3589
|
+
*/
|
|
3590
|
+
.f-single {
|
|
3587
3591
|
cursor: pointer;
|
|
3588
3592
|
}
|
|
3589
3593
|
|
|
@@ -3591,84 +3595,80 @@ cursor: not-allowed;
|
|
|
3591
3595
|
position: relative;
|
|
3592
3596
|
}
|
|
3593
3597
|
|
|
3594
|
-
.f-
|
|
3595
|
-
position: relative;
|
|
3598
|
+
.f-single .ani-wrap .fs-tit {
|
|
3596
3599
|
display: flex;
|
|
3597
3600
|
padding: 0 5px;
|
|
3598
|
-
height:
|
|
3599
|
-
line-height: 35px;
|
|
3601
|
+
height: 40px;
|
|
3600
3602
|
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
3603
|
white-space: nowrap;
|
|
3612
3604
|
overflow: hidden;
|
|
3613
3605
|
text-overflow: ellipsis;
|
|
3614
|
-
|
|
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;
|
|
3606
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3624
3607
|
}
|
|
3625
3608
|
|
|
3626
|
-
.
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
width: 100%;
|
|
3631
|
-
height: 100%;
|
|
3632
|
-
z-index: 1;
|
|
3633
|
-
opacity: 0;
|
|
3634
|
-
cursor: pointer;
|
|
3609
|
+
.require {
|
|
3610
|
+
padding: 0 5px 0 0;
|
|
3611
|
+
color: red;
|
|
3612
|
+
vertical-align: middle;
|
|
3635
3613
|
}
|
|
3636
3614
|
|
|
3637
|
-
.
|
|
3638
|
-
|
|
3615
|
+
.f-single ul {
|
|
3616
|
+
padding: 15px;
|
|
3617
|
+
margin: 0;
|
|
3618
|
+
list-style: none;
|
|
3639
3619
|
}
|
|
3640
3620
|
|
|
3641
|
-
.
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3621
|
+
.f-single ul li {
|
|
3622
|
+
display: flex;
|
|
3623
|
+
align-items: center;
|
|
3624
|
+
margin-top: 12px;
|
|
3625
|
+
font-size: 0;
|
|
3645
3626
|
}
|
|
3646
3627
|
|
|
3647
|
-
.
|
|
3648
|
-
|
|
3628
|
+
.f-single ul li:first-child {
|
|
3629
|
+
margin-top: 0;
|
|
3649
3630
|
}
|
|
3650
3631
|
|
|
3651
|
-
.
|
|
3652
|
-
|
|
3653
|
-
|
|
3632
|
+
.fs-circle {
|
|
3633
|
+
display: inline-block;
|
|
3634
|
+
width: 16px;
|
|
3635
|
+
height: 16px;
|
|
3636
|
+
border-radius: 50%;
|
|
3637
|
+
position: relative;
|
|
3638
|
+
transition: all 0.2s;
|
|
3654
3639
|
}
|
|
3655
3640
|
|
|
3656
|
-
.
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
font-size: 12px;
|
|
3660
|
-
display: inline-block;
|
|
3661
|
-
transform: rotate(90deg);
|
|
3641
|
+
.fs-circle.selected {
|
|
3642
|
+
background-color: #2687f1;
|
|
3643
|
+
border-color: #2687f1 !important;
|
|
3662
3644
|
}
|
|
3663
3645
|
|
|
3664
|
-
.
|
|
3665
|
-
content: "
|
|
3646
|
+
.fs-circle.selected::after {
|
|
3647
|
+
content: "";
|
|
3648
|
+
position: absolute;
|
|
3649
|
+
top: 3px;
|
|
3650
|
+
left: 3px;
|
|
3651
|
+
width: 8px;
|
|
3652
|
+
height: 8px;
|
|
3653
|
+
border-radius: 50%;
|
|
3654
|
+
background-color: white;
|
|
3666
3655
|
}
|
|
3667
3656
|
|
|
3668
|
-
.
|
|
3669
|
-
|
|
3657
|
+
.fs-txt {
|
|
3658
|
+
display: inline-block;
|
|
3659
|
+
width: calc(100% - 16px);
|
|
3660
|
+
padding-left: 8px;
|
|
3661
|
+
vertical-align: top;
|
|
3662
|
+
word-break: break-all;
|
|
3663
|
+
font-size: 14px;
|
|
3664
|
+
line-height: 1.2;
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3667
|
+
.has-error .fs-tit {
|
|
3668
|
+
border-bottom-color: #ff4d4f;
|
|
3670
3669
|
}
|
|
3671
3670
|
|
|
3671
|
+
/* 错误提示样式 */
|
|
3672
3672
|
.error-tip {
|
|
3673
3673
|
position: fixed;
|
|
3674
3674
|
left: 0;
|
|
@@ -3676,7 +3676,92 @@ cursor: not-allowed;
|
|
|
3676
3676
|
width: 100%;
|
|
3677
3677
|
height: 100%;
|
|
3678
3678
|
z-index: 1000;
|
|
3679
|
-
}
|
|
3679
|
+
}/* .ele-form {
|
|
3680
|
+
position: absolute;
|
|
3681
|
+
user-select: none;
|
|
3682
|
+
} */
|
|
3683
|
+
|
|
3684
|
+
.f-multiple {
|
|
3685
|
+
cursor: pointer;
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
.ani-wrap {
|
|
3689
|
+
position: relative;
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
.f-multiple .ani-wrap .fs-tit {
|
|
3693
|
+
display: flex;
|
|
3694
|
+
padding: 0 5px;
|
|
3695
|
+
height: 40px;
|
|
3696
|
+
align-items: center;
|
|
3697
|
+
white-space: nowrap;
|
|
3698
|
+
overflow: hidden;
|
|
3699
|
+
text-overflow: ellipsis;
|
|
3700
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
.require {
|
|
3704
|
+
padding: 0 5px 0 0;
|
|
3705
|
+
color: red;
|
|
3706
|
+
vertical-align: middle;
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.f-multiple ul {
|
|
3710
|
+
padding: 15px;
|
|
3711
|
+
margin: 0;
|
|
3712
|
+
list-style: none;
|
|
3713
|
+
}
|
|
3714
|
+
|
|
3715
|
+
.f-multiple ul li {
|
|
3716
|
+
margin-top: 12px;
|
|
3717
|
+
font-size: 0;
|
|
3718
|
+
display: flex;
|
|
3719
|
+
align-items: center;
|
|
3720
|
+
cursor: pointer;
|
|
3721
|
+
}
|
|
3722
|
+
|
|
3723
|
+
.f-multiple ul li:first-child {
|
|
3724
|
+
margin-top: 0;
|
|
3725
|
+
}
|
|
3726
|
+
|
|
3727
|
+
.fs-circle {
|
|
3728
|
+
display: inline-block;
|
|
3729
|
+
width: 16px;
|
|
3730
|
+
height: 16px;
|
|
3731
|
+
border-radius: 50%;
|
|
3732
|
+
position: relative;
|
|
3733
|
+
transition: all 0.2s;
|
|
3734
|
+
}
|
|
3735
|
+
|
|
3736
|
+
.fs-circle.selected {
|
|
3737
|
+
background-color: #2687f1;
|
|
3738
|
+
border-color: #2687f1 !important;
|
|
3739
|
+
}
|
|
3740
|
+
|
|
3741
|
+
.fs-circle.selected::after {
|
|
3742
|
+
content: "";
|
|
3743
|
+
position: absolute;
|
|
3744
|
+
top: 3px;
|
|
3745
|
+
left: 3px;
|
|
3746
|
+
width: 8px;
|
|
3747
|
+
height: 8px;
|
|
3748
|
+
border-radius: 50%;
|
|
3749
|
+
background-color: white;
|
|
3750
|
+
}
|
|
3751
|
+
|
|
3752
|
+
.fs-txt {
|
|
3753
|
+
display: inline-block;
|
|
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;
|
|
3760
|
+
}
|
|
3761
|
+
|
|
3762
|
+
.has-error .fs-tit {
|
|
3763
|
+
border-bottom-color: #ff4d4f;
|
|
3764
|
+
}
|
|
3680
3765
|
.icon-guanbi:before {
|
|
3681
3766
|
content: "\E676";
|
|
3682
3767
|
}
|
|
@@ -4084,117 +4169,32 @@ cursor: not-allowed;
|
|
|
4084
4169
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4085
4170
|
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
4086
4171
|
}
|
|
4087
|
-
/* .ele-form {
|
|
4088
|
-
position: absolute;
|
|
4089
|
-
user-select: none;
|
|
4090
|
-
} */
|
|
4091
|
-
|
|
4092
|
-
.f-multiple {
|
|
4093
|
-
cursor: pointer;
|
|
4094
|
-
}
|
|
4095
|
-
|
|
4096
|
-
.ani-wrap {
|
|
4097
|
-
position: relative;
|
|
4098
|
-
}
|
|
4099
|
-
|
|
4100
|
-
.f-multiple .ani-wrap .fs-tit {
|
|
4101
|
-
display: flex;
|
|
4102
|
-
padding: 0 5px;
|
|
4103
|
-
height: 40px;
|
|
4104
|
-
align-items: center;
|
|
4105
|
-
white-space: nowrap;
|
|
4106
|
-
overflow: hidden;
|
|
4107
|
-
text-overflow: ellipsis;
|
|
4108
|
-
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
4109
|
-
}
|
|
4110
|
-
|
|
4111
|
-
.require {
|
|
4112
|
-
padding: 0 5px 0 0;
|
|
4113
|
-
color: red;
|
|
4114
|
-
vertical-align: middle;
|
|
4115
|
-
}
|
|
4116
|
-
|
|
4117
|
-
.f-multiple ul {
|
|
4118
|
-
padding: 15px;
|
|
4119
|
-
margin: 0;
|
|
4120
|
-
list-style: none;
|
|
4121
|
-
}
|
|
4122
|
-
|
|
4123
|
-
.f-multiple ul li {
|
|
4124
|
-
margin-top: 12px;
|
|
4125
|
-
font-size: 0;
|
|
4126
|
-
display: flex;
|
|
4127
|
-
align-items: center;
|
|
4128
|
-
cursor: pointer;
|
|
4129
|
-
}
|
|
4130
|
-
|
|
4131
|
-
.f-multiple ul li:first-child {
|
|
4132
|
-
margin-top: 0;
|
|
4133
|
-
}
|
|
4134
|
-
|
|
4135
|
-
.fs-circle {
|
|
4136
|
-
display: inline-block;
|
|
4137
|
-
width: 16px;
|
|
4138
|
-
height: 16px;
|
|
4139
|
-
border-radius: 50%;
|
|
4140
|
-
position: relative;
|
|
4141
|
-
transition: all 0.2s;
|
|
4142
|
-
}
|
|
4143
|
-
|
|
4144
|
-
.fs-circle.selected {
|
|
4145
|
-
background-color: #2687f1;
|
|
4146
|
-
border-color: #2687f1 !important;
|
|
4147
|
-
}
|
|
4148
|
-
|
|
4149
|
-
.fs-circle.selected::after {
|
|
4150
|
-
content: "";
|
|
4151
|
-
position: absolute;
|
|
4152
|
-
top: 3px;
|
|
4153
|
-
left: 3px;
|
|
4154
|
-
width: 8px;
|
|
4155
|
-
height: 8px;
|
|
4156
|
-
border-radius: 50%;
|
|
4157
|
-
background-color: white;
|
|
4158
|
-
}
|
|
4159
|
-
|
|
4160
|
-
.fs-txt {
|
|
4161
|
-
display: inline-block;
|
|
4162
|
-
width: calc(100% - 16px);
|
|
4163
|
-
padding-left: 8px;
|
|
4164
|
-
vertical-align: top;
|
|
4165
|
-
word-break: break-all;
|
|
4166
|
-
font-size: 14px;
|
|
4167
|
-
line-height: 1.2;
|
|
4168
|
-
}
|
|
4169
4172
|
|
|
4170
|
-
.
|
|
4171
|
-
border-bottom-color: #ff4d4f;
|
|
4172
|
-
}
|
|
4173
|
-
.global.tel {
|
|
4173
|
+
.global.receipt {
|
|
4174
4174
|
width: 35px;
|
|
4175
4175
|
height: 55px;
|
|
4176
4176
|
border-radius: 50%;
|
|
4177
4177
|
text-align: center;
|
|
4178
|
-
margin-bottom:
|
|
4178
|
+
margin-bottom: 5px;
|
|
4179
4179
|
border: 2px solid #fff;
|
|
4180
4180
|
cursor: pointer;
|
|
4181
4181
|
}
|
|
4182
|
-
.icon-
|
|
4182
|
+
.icon-liuyan:before { content: "\E636"; }
|
|
4183
4183
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4184
|
-
.global.
|
|
4185
|
-
.global.
|
|
4184
|
+
.global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
|
|
4185
|
+
.global.tel {
|
|
4186
4186
|
width: 35px;
|
|
4187
4187
|
height: 55px;
|
|
4188
4188
|
border-radius: 50%;
|
|
4189
4189
|
text-align: center;
|
|
4190
|
-
margin-bottom:
|
|
4190
|
+
margin-bottom: 15px;
|
|
4191
4191
|
border: 2px solid #fff;
|
|
4192
4192
|
cursor: pointer;
|
|
4193
4193
|
}
|
|
4194
|
-
.icon-
|
|
4194
|
+
.icon-dianhua:before { content: "\E60E"; }
|
|
4195
4195
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4196
|
-
.global.
|
|
4197
|
-
.global.
|
|
4196
|
+
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4197
|
+
.global.map {
|
|
4198
4198
|
width: 35px;
|
|
4199
4199
|
height: 55px;
|
|
4200
4200
|
border-radius: 50%;
|
|
@@ -4203,6 +4203,6 @@ cursor: not-allowed;
|
|
|
4203
4203
|
border: 2px solid #fff;
|
|
4204
4204
|
cursor: pointer;
|
|
4205
4205
|
}
|
|
4206
|
-
.icon-
|
|
4206
|
+
.icon-daohang1:before { content: "\E612"; }
|
|
4207
4207
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4208
|
-
.global.
|
|
4208
|
+
.global.map > span { font-size: 10px; line-height: 20px; display: block;}
|