unika-components 1.1.122 → 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,7 +8,74 @@
8
8
  max-height: 100%;
9
9
  width: 100%;
10
10
  }
11
- .ele-img {
11
+
12
+ .ele-text {
13
+ position: relative;
14
+ }
15
+
16
+ .ele-text .ani-wrap {
17
+ width: 100%;
18
+ height: 100%;
19
+ }
20
+
21
+ .text-common {
22
+ padding: 5px;
23
+ text-orientation: upright;
24
+ white-space: pre-wrap;
25
+ }
26
+
27
+ /* 文本动画类 */
28
+ .text-fadeIn {
29
+ animation: fadeIn 1s ease-in-out;
30
+ }
31
+
32
+ .text-slideIn {
33
+ animation: slideIn 1s ease-in-out;
34
+ }
35
+
36
+ .text-bounceIn {
37
+ animation: bounceIn 1s ease-in-out;
38
+ }
39
+
40
+ /* 基础动画关键帧 */
41
+ @keyframes fadeIn {
42
+ from {
43
+ opacity: 0;
44
+ }
45
+ to {
46
+ opacity: 1;
47
+ }
48
+ }
49
+
50
+ @keyframes slideIn {
51
+ from {
52
+ transform: translateY(20px);
53
+ opacity: 0;
54
+ }
55
+ to {
56
+ transform: translateY(0);
57
+ opacity: 1;
58
+ }
59
+ }
60
+
61
+ @keyframes bounceIn {
62
+ 0% {
63
+ transform: scale(0.3);
64
+ opacity: 0;
65
+ }
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 {
12
79
  position: absolute;
13
80
  overflow: hidden;
14
81
  }
@@ -57,602 +124,128 @@
57
124
  opacity: 1;
58
125
  transform: scale(1);
59
126
  }
60
- }.count-down .drag-point {
61
- cursor: default!important
127
+ }
128
+ @keyframes jumpheart {
129
+ to {
130
+ -webkit-transform: scale(1.2);
131
+ transform: scale(1.2)
132
+ }
62
133
  }
63
-
64
- .count-down .ani-wrap {
65
- width: 100%;
66
- height: 100%
134
+ .ele-calendar {
135
+ position: relative;
136
+ width: 325px !important;
137
+ min-height: 325px !important;
138
+ height: auto !important;
67
139
  }
68
140
 
69
- .count-down .count-text,.count-down .finish-cont {
70
- display: -webkit-box;
71
- display: -ms-flexbox;
72
- display: flex;
73
- height: 100%;
74
- -webkit-box-align: center;
75
- -ms-flex-align: center;
76
- align-items: center;
77
- -webkit-box-pack: center;
78
- -ms-flex-pack: center;
79
- justify-content: center
141
+ .ele-calendar .drag-point {
142
+ cursor: default !important;
80
143
  }
81
144
 
82
- .count-down .finish-cont {
83
- width: 100%
145
+ .ele-calendar .ani-wrap {
146
+ position: relative;
147
+ width: 100%;
148
+ min-height: 325px !important;
149
+ height: auto !important;
150
+ padding: 22px 0;
84
151
  }
85
152
 
86
- .count-down .count-flip {
87
- display: -webkit-box;
88
- display: -ms-flexbox;
153
+ .ele-calendar .ani-wrap .can-wrap .can-top {
89
154
  display: flex;
90
- height: 100%;
91
- -webkit-box-align: center;
92
- -ms-flex-align: center;
93
- align-items: center;
94
- -webkit-box-pack: center;
95
- -ms-flex-pack: center;
96
- justify-content: center
155
+ justify-content: space-between;
156
+ align-items: flex-end;
157
+ line-height: 1;
158
+ padding: 0 47px 20px;
97
159
  }
98
160
 
99
- .count-down .count-flip .numscroll {
100
- -webkit-animation: numscroll .4s ease-in-out;
101
- animation: numscroll .4s ease-in-out;
102
- -webkit-animation-fill-mode: both;
103
- animation-fill-mode: both
161
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-left {
162
+ font-size: 25px;
163
+ padding-bottom: 4px;
104
164
  }
105
165
 
106
- .count-down .count-flip .numscroll .curr-num {
107
- -webkit-transition: all .3s ease-in-out;
108
- transition: all .3s ease-in-out;
109
- opacity: .6;
110
- -webkit-transform: scale(.5)!important;
111
- transform: scale(.5)!important
166
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-right {
167
+ font-size: 25px;
112
168
  }
113
169
 
114
- @-webkit-keyframes numscroll {
115
- 0% {
116
- -webkit-transform: translateZ(0);
117
- transform: translateZ(0)
118
- }
119
-
120
- to {
121
- -webkit-transform: translate3d(0,100%,0);
122
- transform: translate3d(0,100%,0)
123
- }
170
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
171
+ position: relative;
172
+ top: 2px;
173
+ font-size: 57px;
124
174
  }
125
175
 
126
- @keyframes numscroll {
127
- 0% {
128
- -webkit-transform: translateZ(0);
129
- transform: translateZ(0)
130
- }
176
+ .ele-calendar .ani-wrap .can-wrap .can-main {
177
+ padding: 0 23px;
178
+ }
131
179
 
132
- to {
133
- -webkit-transform: translate3d(0,100%,0);
134
- transform: translate3d(0,100%,0)
135
- }
180
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-week {
181
+ display: flex;
182
+ justify-content: flex-start;
183
+ height: 25px;
184
+ line-height: 25px;
185
+ padding: 0 10px;
186
+ border-radius: 13px;
136
187
  }
137
188
 
138
- .count-down .count-flip .c-com {
139
- min-width: 50px;
140
- height: auto;
141
- margin: 6px;
142
- padding: 5px 0 6px;
143
- background-color: #111
189
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
190
+ width: 14.2%;
191
+ text-align: center;
192
+ color: #fff;
193
+ font-size: 12px;
144
194
  }
145
195
 
146
- .count-down .count-flip .c-com .flex-wrap {
147
- display: -webkit-box;
148
- display: -ms-flexbox;
149
- display: flex;
150
- position: relative;
151
- width: 100%;
152
- height: 100%;
153
- -webkit-box-align: center;
154
- -ms-flex-align: center;
155
- align-items: center
196
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
197
+ font-size: 0;
198
+ padding: 5px 10px 0;
199
+ text-align: left;
156
200
  }
157
201
 
158
- .count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
159
- line-height: 27px
202
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
203
+ position: relative;
204
+ display: inline-block;
205
+ height: 25px;
206
+ text-align: center;
207
+ margin-top: 8px;
160
208
  }
161
209
 
162
- .count-down .count-flip .c-com .flex-wrap .next-num {
163
- position: absolute;
164
- top: -100%
210
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
211
+ display: block;
165
212
  }
166
213
 
167
- .count-down .count-flip .c-com .flex-wrap .curr-num {
168
- -webkit-transform: scale(1);
169
- transform: scale(1)
214
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
215
+ color: #fff !important;
170
216
  }
171
217
 
172
- .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 {
173
- display: none!important
218
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
219
+ animation: jumpheart 0.8s ease infinite alternate;
174
220
  }
175
221
 
176
- .c-wrap {
177
- width: 100%;
178
- height: 100%;
179
- overflow: hidden;
180
- font-size: 0
222
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
223
+ display: none;
224
+ font-size: 26px;
181
225
  }
182
226
 
183
- .c-wrap.c-day-wrap {
184
- text-align: center
227
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
228
+ position: absolute;
229
+ left: 50%;
230
+ top: 50%;
231
+ z-index: 1;
232
+ color: #666;
233
+ font-size: 13px;
234
+ transform: translate(-50%, -52%);
185
235
  }
186
236
 
187
- .c-wrap.c-day-wrap .c-num {
188
- width: auto
237
+ .ele-calendar .bottom-center,
238
+ .ele-calendar .left-center,
239
+ .ele-calendar .right-center,
240
+ .ele-calendar .top-center {
241
+ display: none !important;
189
242
  }
190
243
 
191
- .c-wrap .c-num {
192
- display: inline-block;
193
- width: 50%;
194
- overflow: hidden;
195
- font-size: 20px;
196
- color: #999
244
+ .ele-calendar .ani-wrap .can-wrap2 {
245
+ padding: 21px 23px 0
197
246
  }
198
247
 
199
- .c-wrap .c-left .flex-wrap {
200
- display: -webkit-box;
201
- display: -ms-flexbox;
202
- display: flex;
203
- -webkit-box-pack: end;
204
- -ms-flex-pack: end;
205
- justify-content: flex-end
206
- }
207
-
208
- .c-wrap .c-text {
209
- display: -webkit-box;
210
- display: -ms-flexbox;
211
- display: flex;
212
- width: 100%;
213
- font-size: 12px;
214
- -webkit-box-pack: center;
215
- -ms-flex-pack: center;
216
- justify-content: center;
217
- -webkit-box-align: center;
218
- -ms-flex-align: center;
219
- align-items: center;
220
- white-space: nowrap
221
- }
222
- #audio {
223
- position: absolute;
224
- right: 10px;
225
- top: 10px;
226
- z-index: 103;
227
- width: 30px;
228
- height: 30px;
229
- display: flex;
230
- align-items: center;
231
- }
232
-
233
- #audio .mrotate {
234
- animation: mrotate 5s linear infinite;
235
- }
236
-
237
- @keyframes mrotate {
238
- to {
239
- transform: rotate(1turn);
240
- }
241
- }
242
-
243
- #audio .audio {
244
- width: 100%;
245
- height: 100%;
246
- display: flex;
247
- align-items: center;
248
- justify-content: center;
249
- color: #fff;
250
- background: #666;
251
- border-radius: 50%;
252
- overflow: hidden;
253
- cursor: pointer;
254
- transition: all 0.3s ease;
255
- }
256
-
257
- #audio .audio.a-border {
258
- border: 1px solid #fff;
259
- }
260
-
261
- #audio .audio .music-icon {
262
- display: block;
263
- width: 60%;
264
- height: 60%;
265
- object-fit: contain;
266
- }
267
-
268
- #audio .audio .iconfont {
269
- font-size: 2opx;
270
- line-height: 1;
271
- }
272
- #audio .icon-cancel {
273
- position: absolute;
274
- width: 100%;
275
- height: 100%;
276
- border-radius: 50%;
277
- overflow: hidden;
278
- padding: 15px 0;
279
- }
280
- #audio .icon-cancel .icon-h {
281
- transform: rotate(45deg);
282
- width: 100%;
283
- height: 2px;
284
- background: #fff;
285
- }
286
- #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
287
- content: '';
288
- position: absolute;
289
- width: 100%;
290
- height: 2px;
291
- background: #fff;
292
- }
293
- .ele-text {
294
- position: relative;
295
- }
296
-
297
- .ele-text .ani-wrap {
298
- width: 100%;
299
- height: 100%;
300
- }
301
-
302
- .text-common {
303
- padding: 5px;
304
- text-orientation: upright;
305
- white-space: pre-wrap;
306
- }
307
-
308
- /* 文本动画类 */
309
- .text-fadeIn {
310
- animation: fadeIn 1s ease-in-out;
311
- }
312
-
313
- .text-slideIn {
314
- animation: slideIn 1s ease-in-out;
315
- }
316
-
317
- .text-bounceIn {
318
- animation: bounceIn 1s ease-in-out;
319
- }
320
-
321
- /* 基础动画关键帧 */
322
- @keyframes fadeIn {
323
- from {
324
- opacity: 0;
325
- }
326
- to {
327
- opacity: 1;
328
- }
329
- }
330
-
331
- @keyframes slideIn {
332
- from {
333
- transform: translateY(20px);
334
- opacity: 0;
335
- }
336
- to {
337
- transform: translateY(0);
338
- opacity: 1;
339
- }
340
- }
341
-
342
- @keyframes bounceIn {
343
- 0% {
344
- transform: scale(0.3);
345
- opacity: 0;
346
- }
347
- 50% {
348
- transform: scale(1.05);
349
- opacity: 0.8;
350
- }
351
- 70% {
352
- transform: scale(0.9);
353
- opacity: 0.9;
354
- }
355
- 100% {
356
- transform: scale(1);
357
- opacity: 1;
358
- }
359
- }.ele-shape {
360
- position: absolute;
361
- overflow: hidden;
362
- }
363
-
364
- .ani-wrap {
365
- width: 100%;
366
- height: 100%;
367
- box-sizing: border-box;
368
- }
369
-
370
- .e-shape {
371
- width: 100%;
372
- height: 100%;
373
- }
374
-
375
- .svg-container :deep(svg) {
376
- width: 100%;
377
- height: 100%;
378
- display: block;
379
- }
380
-
381
- .svg-loading,
382
- .svg-error {
383
- display: flex;
384
- align-items: center;
385
- justify-content: center;
386
- width: 100%;
387
- height: 100%;
388
- background: rgba(0,0,0,0.05);
389
- }.element-ditu .ani-wrap {
390
- width: 100%;
391
- height: 100%;
392
- overflow: hidden
393
- }
394
-
395
- .element-ditu .map {
396
- width: 100%;
397
- height: 100%
398
- }
399
-
400
- .element-ditu .map .el-button {
401
- width: 100%;
402
- height: 100%;
403
- display: -webkit-box;
404
- display: -ms-flexbox;
405
- display: flex;
406
- -webkit-box-align: center;
407
- -ms-flex-align: center;
408
- align-items: center;
409
- padding: 0;
410
- -webkit-box-pack: center;
411
- -ms-flex-pack: center;
412
- justify-content: center;
413
- background: inherit;
414
- color: inherit;
415
- border: none
416
- }
417
-
418
- .element-ditu .center-map {
419
- width: 100%;
420
- height: 100%;
421
- background: #fff
422
- }
423
-
424
- .element-ditu .mask-map {
425
- position: absolute;
426
- width: 100%;
427
- height: 100%;
428
- top: 0
429
- }
430
- .map-iframe {
431
- width: 100%;
432
- height: 100%;
433
- }.ele-effect {
434
- will-change: transform;
435
- }
436
-
437
- .ele-effect .effect-wrap {
438
- position: relative;
439
- width: 100%;
440
- height: 100%;
441
- }
442
-
443
- .particle {
444
- position: absolute;
445
- background-repeat: no-repeat;
446
- background-size: contain;
447
- animation-name: falling;
448
- animation-timing-function: linear;
449
- animation-iteration-count: infinite;
450
- will-change: transform;
451
- }
452
-
453
- @keyframes falling {
454
- 0% {
455
- transform: translateY(0) rotate(0deg);
456
- opacity: 1;
457
- }
458
- 80% {
459
- opacity: 0.8;
460
- }
461
- 100% {
462
- transform: translateY(100vh) rotate(360deg);
463
- opacity: 0;
464
- }
465
- }
466
- .ele-lottie .ele-lotwrap {
467
- overflow: hidden
468
- }
469
-
470
- .ele-effect .effect-wrap {
471
- position: relative;
472
- overflow: hidden;
473
- width: 100%;
474
- height: 100%
475
- }
476
-
477
- .ele-effect .e-small {
478
- position: absolute;
479
- width: 24px;
480
- height: 24px;
481
- background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
482
- background-size: cover;
483
- background-repeat: no-repeat;
484
- -webkit-transform-origin: center;
485
- transform-origin: center;
486
- -webkit-animation: snow 5s linear infinite;
487
- animation: snow 5s linear infinite
488
- }
489
- .element-video {
490
- position: absolute;
491
- overflow: hidden;
492
- background-color: transparent;
493
- }
494
-
495
- .element-video .ani-wrap, .element-video img {
496
- display: block;
497
- width: 100%;
498
- height: 100%;
499
- }
500
-
501
- .video-container {
502
- width: 100%;
503
- height: 100%;
504
- }
505
-
506
- .video-container iframe {
507
- width: 100%;
508
- height: 100%;
509
- border: none;
510
- }
511
-
512
- .video-cover {
513
- position: relative;
514
- width: 100%;
515
- height: 100%;
516
- background-size: cover;
517
- background-position: center;
518
- cursor: pointer;
519
- }
520
-
521
- .video-cover .play-btn {
522
- position: absolute;
523
- left: 50%;
524
- top: 50%;
525
- transform: translate(-50%, -50%);
526
- width: 50px;
527
- height: 50px;
528
- opacity: 0.8;
529
- transition: opacity 0.2s;
530
- }
531
-
532
- .video-cover:hover .play-btn {
533
- opacity: 1;
534
- }
535
- @keyframes jumpheart {
536
- to {
537
- -webkit-transform: scale(1.2);
538
- transform: scale(1.2)
539
- }
540
- }
541
- .ele-calendar {
542
- position: relative;
543
- width: 325px !important;
544
- min-height: 325px !important;
545
- height: auto !important;
546
- }
547
-
548
- .ele-calendar .drag-point {
549
- cursor: default !important;
550
- }
551
-
552
- .ele-calendar .ani-wrap {
553
- position: relative;
554
- width: 100%;
555
- min-height: 325px !important;
556
- height: auto !important;
557
- padding: 22px 0;
558
- }
559
-
560
- .ele-calendar .ani-wrap .can-wrap .can-top {
561
- display: flex;
562
- justify-content: space-between;
563
- align-items: flex-end;
564
- line-height: 1;
565
- padding: 0 47px 20px;
566
- }
567
-
568
- .ele-calendar .ani-wrap .can-wrap .can-top .can-left {
569
- font-size: 25px;
570
- padding-bottom: 4px;
571
- }
572
-
573
- .ele-calendar .ani-wrap .can-wrap .can-top .can-right {
574
- font-size: 25px;
575
- }
576
-
577
- .ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
578
- position: relative;
579
- top: 2px;
580
- font-size: 57px;
581
- }
582
-
583
- .ele-calendar .ani-wrap .can-wrap .can-main {
584
- padding: 0 23px;
585
- }
586
-
587
- .ele-calendar .ani-wrap .can-wrap .can-main .can-week {
588
- display: flex;
589
- justify-content: flex-start;
590
- height: 25px;
591
- line-height: 25px;
592
- padding: 0 10px;
593
- border-radius: 13px;
594
- }
595
-
596
- .ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
597
- width: 14.2%;
598
- text-align: center;
599
- color: #fff;
600
- font-size: 12px;
601
- }
602
-
603
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
604
- font-size: 0;
605
- padding: 5px 10px 0;
606
- text-align: left;
607
- }
608
-
609
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
610
- position: relative;
611
- display: inline-block;
612
- height: 25px;
613
- text-align: center;
614
- margin-top: 8px;
615
- }
616
-
617
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
618
- display: block;
619
- }
620
-
621
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
622
- color: #fff !important;
623
- }
624
-
625
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
626
- animation: jumpheart 0.8s ease infinite alternate;
627
- }
628
-
629
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
630
- display: none;
631
- font-size: 26px;
632
- }
633
-
634
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
635
- position: absolute;
636
- left: 50%;
637
- top: 50%;
638
- z-index: 1;
639
- color: #666;
640
- font-size: 13px;
641
- transform: translate(-50%, -52%);
642
- }
643
-
644
- .ele-calendar .bottom-center,
645
- .ele-calendar .left-center,
646
- .ele-calendar .right-center,
647
- .ele-calendar .top-center {
648
- display: none !important;
649
- }
650
-
651
- .ele-calendar .ani-wrap .can-wrap2 {
652
- padding: 21px 23px 0
653
- }
654
-
655
- .ele-calendar .ani-wrap .can-wrap2 .can-top {
248
+ .ele-calendar .ani-wrap .can-wrap2 .can-top {
656
249
  display: -webkit-box;
657
250
  display: -ms-flexbox;
658
251
  display: flex;
@@ -874,9 +467,214 @@
874
467
  .icon-xingzhuangjiehe:before {
875
468
  content: "\E6A6";
876
469
  }
877
- .ele-lottie .ele-lotwrap {
470
+ .element-video {
471
+ position: absolute;
878
472
  overflow: hidden;
879
- }/* Iconfont definition */
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
661
+ }
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
676
+ }
677
+ /* Iconfont definition */
880
678
  .icon-danmuliebiao1:before {
881
679
  content: "\E68A";
882
680
  }
@@ -1779,117 +1577,292 @@
1779
1577
  100% { transform: rotate(360deg); }
1780
1578
  }
1781
1579
 
1782
- .call {
1580
+ .ele-shape {
1783
1581
  position: absolute;
1784
- cursor: pointer;
1785
- user-select: none;
1582
+ overflow: hidden;
1583
+ }
1584
+
1585
+ .ani-wrap {
1586
+ width: 100%;
1587
+ height: 100%;
1588
+ box-sizing: border-box;
1786
1589
  }
1787
1590
 
1788
- .call .ani-wrap {
1789
- display: flex;
1790
- justify-content: center;
1791
- align-items: center;
1591
+ .e-shape {
1792
1592
  width: 100%;
1793
1593
  height: 100%;
1794
- overflow: hidden;
1795
- transition: opacity 0.2s;
1796
1594
  }
1797
1595
 
1798
- .call .ani-wrap:hover {
1799
- opacity: 0.9;
1596
+ .svg-container :deep(svg) {
1597
+ width: 100%;
1598
+ height: 100%;
1599
+ display: block;
1800
1600
  }
1801
1601
 
1802
- .call-content {
1602
+ .svg-loading,
1603
+ .svg-error {
1803
1604
  display: flex;
1804
1605
  align-items: center;
1805
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
1806
1614
  }
1807
1615
 
1808
- .btn-text {
1809
- margin-left: 10px;
1616
+ .element-ditu .map {
1617
+ width: 100%;
1618
+ height: 100%
1810
1619
  }
1811
1620
 
1812
-
1813
- .hb-tel:before {
1814
- content: "\E642";
1815
- }#page-list .tip-cover {
1816
- position: fixed;
1817
- left: 0;
1818
- top: 0;
1621
+ .element-ditu .map .el-button {
1819
1622
  width: 100%;
1820
1623
  height: 100%;
1624
+ display: -webkit-box;
1821
1625
  display: -ms-flexbox;
1822
1626
  display: flex;
1627
+ -webkit-box-align: center;
1823
1628
  -ms-flex-align: center;
1824
1629
  align-items: center;
1630
+ padding: 0;
1631
+ -webkit-box-pack: center;
1825
1632
  -ms-flex-pack: center;
1826
1633
  justify-content: center;
1827
- z-index: 999;
1828
- background-color: rgba(0,0,0,.7)
1634
+ background: inherit;
1635
+ color: inherit;
1636
+ border: none
1829
1637
  }
1830
1638
 
1831
- #page-list .tip-cover .tip {
1832
- width: 80%;
1833
- max-width: 250px;
1834
- padding: 10px;
1835
- border-radius: 5px;
1836
- background-color: #fff
1639
+ .element-ditu .center-map {
1640
+ width: 100%;
1641
+ height: 100%;
1642
+ background: #fff
1837
1643
  }
1838
1644
 
1839
- #page-list .tip-cover .tip-btn {
1840
- display: block;
1841
- margin: 25px auto;
1842
- width: 120px;
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;
1843
1660
  height: 30px;
1844
- color: #fff;
1845
- border-radius: 4px;
1846
- text-align: center;
1847
- font-size: 14px;
1848
- line-height: 30px;
1849
- background: #ed5566
1661
+ display: flex;
1662
+ align-items: center;
1850
1663
  }
1851
1664
 
1852
- #page-list .tip-cover .tip-content {
1853
- font-size: 14px;
1854
- padding-top: 30px;
1665
+ #audio .mrotate {
1666
+ animation: mrotate 5s linear infinite;
1855
1667
  }
1856
1668
 
1857
- .tip-cover {
1858
- position: fixed;
1859
- left: 0;
1860
- top: 0;
1669
+ @keyframes mrotate {
1670
+ to {
1671
+ transform: rotate(1turn);
1672
+ }
1673
+ }
1674
+
1675
+ #audio .audio {
1861
1676
  width: 100%;
1862
1677
  height: 100%;
1863
- display: -ms-flexbox;
1864
1678
  display: flex;
1865
- -ms-flex-align: center;
1866
1679
  align-items: center;
1867
- -ms-flex-pack: center;
1868
1680
  justify-content: center;
1869
- z-index: 999;
1870
- background-color: rgba(0,0,0,.7)
1681
+ color: #fff;
1682
+ background: #666;
1683
+ border-radius: 50%;
1684
+ overflow: hidden;
1685
+ cursor: pointer;
1686
+ transition: all 0.3s ease;
1871
1687
  }
1872
1688
 
1873
- .tip-cover .tip {
1874
- width: 80%;
1875
- max-width: 250px;
1876
- padding: 5px;
1877
- border-radius: 3px;
1878
- background-color: #fff
1689
+ #audio .audio.a-border {
1690
+ border: 1px solid #fff;
1879
1691
  }
1880
1692
 
1881
- .tip-cover .tip-btn {
1693
+ #audio .audio .music-icon {
1882
1694
  display: block;
1883
- margin: 13px auto;
1884
- width: 64px;
1885
- height: 20px;
1886
- color: #fff;
1887
- border-radius: 4px;
1888
- text-align: center;
1889
- font-size: 14px;
1890
- line-height: 20px;
1891
- background: #ed5566;
1892
- } .button {
1695
+ width: 60%;
1696
+ height: 60%;
1697
+ object-fit: contain;
1698
+ }
1699
+
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 {
1725
+ will-change: transform;
1726
+ }
1727
+
1728
+ .ele-effect .effect-wrap {
1729
+ position: relative;
1730
+ width: 100%;
1731
+ height: 100%;
1732
+ }
1733
+
1734
+ .particle {
1735
+ position: absolute;
1736
+ background-repeat: no-repeat;
1737
+ background-size: contain;
1738
+ animation-name: falling;
1739
+ animation-timing-function: linear;
1740
+ animation-iteration-count: infinite;
1741
+ will-change: transform;
1742
+ }
1743
+
1744
+ @keyframes falling {
1745
+ 0% {
1746
+ transform: translateY(0) rotate(0deg);
1747
+ opacity: 1;
1748
+ }
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);
1858
+ }
1859
+ .dynamic-placeholder-input::-moz-placeholder {
1860
+ color: var(--placeholder-color, #999);
1861
+ opacity: 1;
1862
+ }
1863
+ .dynamic-placeholder-input:-ms-input-placeholder {
1864
+ color: var(--placeholder-color, #999);
1865
+ }.button {
1893
1866
  position: absolute;
1894
1867
  cursor: pointer;
1895
1868
  user-select: none;
@@ -3363,31 +3336,252 @@ to {
3363
3336
  transform-origin: 50% 0
3364
3337
  }
3365
3338
 
3366
- 60% {
3367
- -webkit-transform: scaleY(.98);
3368
- transform: scaleY(.98);
3369
- -webkit-transform-origin: 50% 0;
3370
- transform-origin: 50% 0
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 {
3365
+ position: absolute;
3366
+ user-select: none;
3367
+ } */
3368
+
3369
+ .f-select {
3370
+ cursor: pointer;
3371
+ }
3372
+
3373
+ .ani-wrap {
3374
+ position: relative;
3375
+ }
3376
+
3377
+ .f-select .ani-wrap .fs-tit {
3378
+ position: relative;
3379
+ display: flex;
3380
+ padding: 0 5px;
3381
+ height: 35px;
3382
+ line-height: 35px;
3383
+ align-items: center;
3384
+ }
3385
+
3386
+ .require {
3387
+ padding: 0 5px 0 0;
3388
+ color: red;
3389
+ vertical-align: middle;
3390
+ }
3391
+
3392
+ .fs-cont {
3393
+ padding-right: 15px;
3394
+ white-space: nowrap;
3395
+ overflow: hidden;
3396
+ text-overflow: ellipsis;
3397
+ flex-grow: 1;
3398
+ }
3399
+
3400
+ .icon-bofang1 {
3401
+ font-size: 12px;
3402
+ transition: transform 0.2s ease;
3403
+ }
3404
+
3405
+ .rotate-180 {
3406
+ transform: rotate(180deg) !important;
3407
+ }
3408
+
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;
3418
+ }
3419
+
3420
+ .dropdown-menu {
3421
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
3422
+ }
3423
+
3424
+ .dropdown-item {
3425
+ padding: 8px 10px;
3426
+ cursor: pointer;
3427
+ transition: background-color 0.2s;
3428
+ }
3429
+
3430
+ .dropdown-item:hover {
3431
+ background-color: #f5f5f5;
3432
+ }
3433
+
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;
3453
+ }
3454
+
3455
+ .error-tip {
3456
+ position: fixed;
3457
+ left: 0;
3458
+ top: 0;
3459
+ width: 100%;
3460
+ height: 100%;
3461
+ z-index: 1000;
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 {
3540
+ cursor: pointer;
3541
+ transition: all 0.2s;
3542
+ outline: none;
3543
+ border: none;
3544
+ }
3545
+
3546
+ .form-submit:hover {
3547
+ opacity: 0.9;
3548
+ transform: translateY(-1px);
3549
+ }
3550
+
3551
+ .form-submit:active {
3552
+ opacity: 0.8;
3553
+ transform: translateY(0);
3554
+ }
3555
+
3556
+ .form-submit:disabled {
3557
+ opacity: 0.6;
3558
+ cursor: not-allowed;
3559
+ transform: none !important;
3560
+ }
3561
+
3562
+ .f-submit {
3563
+ position: relative;
3564
+ display: block
3371
3565
  }
3372
3566
 
3373
- 80% {
3374
- -webkit-transform: scaleY(1.01);
3375
- transform: scaleY(1.01);
3376
- -webkit-transform-origin: 50% 0;
3377
- transform-origin: 50% 0
3567
+ .f-submit .ani-wrap {
3568
+ width: 100%;
3569
+ height: 100%;
3570
+ padding: 10px;
3571
+ overflow: hidden;
3572
+ position: relative
3378
3573
  }
3379
3574
 
3380
- 99% {
3381
- -webkit-transform: scaleY(1);
3382
- transform: scaleY(1);
3383
- -webkit-transform-origin: 50% 0;
3384
- transform-origin: 50% 0
3575
+ .f-submit .f-ovh {
3576
+ position: absolute;
3577
+ left: 50%;
3578
+ top: 50%;
3579
+ transform: translate(-50%,-50%)
3385
3580
  }
3386
3581
 
3387
- to {
3388
- -webkit-transform: none;
3389
- transform: none
3390
- }
3582
+ .form-submit:disabled {
3583
+ opacity: 0.7;
3584
+ cursor: not-allowed;
3391
3585
  }/* .ele-form {
3392
3586
  position: absolute;
3393
3587
  user-select: none;
@@ -3475,200 +3669,6 @@ to {
3475
3669
  }
3476
3670
 
3477
3671
  /* 错误提示样式 */
3478
- .error-tip {
3479
- position: fixed;
3480
- left: 0;
3481
- top: 0;
3482
- width: 100%;
3483
- height: 100%;
3484
- z-index: 1000;
3485
- }.form-submit {
3486
- cursor: pointer;
3487
- transition: all 0.2s;
3488
- outline: none;
3489
- border: none;
3490
- }
3491
-
3492
- .form-submit:hover {
3493
- opacity: 0.9;
3494
- transform: translateY(-1px);
3495
- }
3496
-
3497
- .form-submit:active {
3498
- opacity: 0.8;
3499
- transform: translateY(0);
3500
- }
3501
-
3502
- .form-submit:disabled {
3503
- opacity: 0.6;
3504
- cursor: not-allowed;
3505
- transform: none !important;
3506
- }
3507
-
3508
- .f-submit {
3509
- position: relative;
3510
- display: block
3511
- }
3512
-
3513
- .f-submit .ani-wrap {
3514
- width: 100%;
3515
- height: 100%;
3516
- padding: 10px;
3517
- overflow: hidden;
3518
- position: relative
3519
- }
3520
-
3521
- .f-submit .f-ovh {
3522
- position: absolute;
3523
- left: 50%;
3524
- top: 50%;
3525
- transform: translate(-50%,-50%)
3526
- }
3527
-
3528
- .form-submit:disabled {
3529
- opacity: 0.7;
3530
- cursor: not-allowed;
3531
- }.form-input {
3532
- position: absolute;
3533
- }
3534
-
3535
- .input-wrapper {
3536
- display: flex;
3537
- align-items: center;
3538
- width: 100%;
3539
- height: 100%;
3540
- padding: 0 10px;
3541
- box-sizing: border-box;
3542
- position: relative;
3543
- transition: border-color 0.3s;
3544
- }
3545
-
3546
- .required-marker {
3547
- font-size: 12px;
3548
- padding: 0 5px 0 0;
3549
- color: red;
3550
- vertical-align: middle;
3551
- }
3552
-
3553
- input {
3554
- flex: 1;
3555
- border: none;
3556
- outline: none;
3557
- background: transparent;
3558
- height: 100%;
3559
- padding: 0;
3560
- margin: 0;
3561
- }
3562
- /*
3563
- input::placeholder {
3564
- color: #ccc;
3565
- opacity: 1;
3566
- } */
3567
-
3568
- .dynamic-placeholder-input::placeholder {
3569
- color: var(--placeholder-color, #999);
3570
- opacity: 1;
3571
- }
3572
- .dynamic-placeholder-input::-webkit-input-placeholder {
3573
- color: var(--placeholder-color, #999);
3574
- }
3575
- .dynamic-placeholder-input::-moz-placeholder {
3576
- color: var(--placeholder-color, #999);
3577
- opacity: 1;
3578
- }
3579
- .dynamic-placeholder-input:-ms-input-placeholder {
3580
- color: var(--placeholder-color, #999);
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
3672
  .error-tip {
3673
3673
  position: fixed;
3674
3674
  left: 0;
@@ -3762,18 +3762,6 @@ cursor: not-allowed;
3762
3762
  .has-error .fs-tit {
3763
3763
  border-bottom-color: #ff4d4f;
3764
3764
  }
3765
- .global.tel {
3766
- width: 35px;
3767
- height: 55px;
3768
- border-radius: 50%;
3769
- text-align: center;
3770
- margin-bottom: 15px;
3771
- border: 2px solid #fff;
3772
- cursor: pointer;
3773
- }
3774
- .icon-dianhua:before { content: "\E60E"; }
3775
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3776
- .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
3777
3765
  .icon-guanbi:before {
3778
3766
  content: "\E676";
3779
3767
  }
@@ -4194,6 +4182,18 @@ cursor: not-allowed;
4194
4182
  .icon-liuyan:before { content: "\E636"; }
4195
4183
  .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4196
4184
  .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
4185
+ .global.tel {
4186
+ width: 35px;
4187
+ height: 55px;
4188
+ border-radius: 50%;
4189
+ text-align: center;
4190
+ margin-bottom: 15px;
4191
+ border: 2px solid #fff;
4192
+ cursor: pointer;
4193
+ }
4194
+ .icon-dianhua:before { content: "\E60E"; }
4195
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4196
+ .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
4197
4197
  .global.map {
4198
4198
  width: 35px;
4199
4199
  height: 55px;