unika-components 1.1.169 → 1.1.170

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.
@@ -17,239 +17,7 @@
17
17
  max-height: 100%;
18
18
  width: 100%;
19
19
  }
20
-
21
- .ele-text {
22
- position: relative;
23
- }
24
-
25
- .ele-text .ani-wrap {
26
- width: 100%;
27
- height: 100%;
28
- }
29
-
30
- .text-common {
31
- padding: 5px;
32
- text-orientation: upright;
33
- white-space: pre-wrap;
34
- }
35
-
36
- /* 文本动画类 */
37
- .text-fadeIn {
38
- animation: fadeIn 1s ease-in-out;
39
- }
40
-
41
- .text-slideIn {
42
- animation: slideIn 1s ease-in-out;
43
- }
44
-
45
- .text-bounceIn {
46
- animation: bounceIn 1s ease-in-out;
47
- }
48
-
49
- /* 基础动画关键帧 */
50
- @keyframes fadeIn {
51
- from {
52
- opacity: 0;
53
- }
54
- to {
55
- opacity: 1;
56
- }
57
- }
58
-
59
- @keyframes slideIn {
60
- from {
61
- transform: translateY(20px);
62
- opacity: 0;
63
- }
64
- to {
65
- transform: translateY(0);
66
- opacity: 1;
67
- }
68
- }
69
-
70
- @keyframes bounceIn {
71
- 0% {
72
- transform: scale(0.3);
73
- opacity: 0;
74
- }
75
- 50% {
76
- transform: scale(1.05);
77
- opacity: 0.8;
78
- }
79
- 70% {
80
- transform: scale(0.9);
81
- opacity: 0.9;
82
- }
83
- 100% {
84
- transform: scale(1);
85
- opacity: 1;
86
- }
87
- }.ele-img {
88
- position: absolute;
89
- overflow: hidden;
90
- }
91
-
92
- .ele-img .ani-wrap {
93
- width: 100%;
94
- height: 100%;
95
- }
96
-
97
- .ele-img .ele-image {
98
- position: relative;
99
- display: block;
100
- }
101
-
102
- .ele-img .rotate-wrap {
103
- position: absolute;
104
- left: 0;
105
- right: 0;
106
- top: 0;
107
- bottom: 0;
108
- }
109
-
110
- .ele-img .ele-img-bg,
111
- .ele-img .rotate-wrap .img-wrap {
112
- width: 100%;
113
- height: 100%;
114
- overflow: hidden;
115
- }
116
-
117
- .ele-img .ele-bg-wrap {
118
- width: 100%;
119
- height: 100%;
120
- background-size: cover;
121
- background-position: 50% 50%;
122
- background-repeat: no-repeat;
123
- background-clip: border-box;
124
- }
125
-
126
- /* 动画关键帧 */
127
- @keyframes zoomIn {
128
- from {
129
- opacity: 0;
130
- transform: scale(0.5);
131
- }
132
- to {
133
- opacity: 1;
134
- transform: scale(1);
135
- }
136
- }#audio {
137
- position: absolute;
138
- right: 10px;
139
- top: 10px;
140
- z-index: 103;
141
- width: 30px;
142
- height: 30px;
143
- display: flex;
144
- align-items: center;
145
- }
146
-
147
- #audio .mrotate {
148
- animation: mrotate 5s linear infinite;
149
- }
150
-
151
- @keyframes mrotate {
152
- to {
153
- transform: rotate(1turn);
154
- }
155
- }
156
-
157
- #audio .audio {
158
- width: 100%;
159
- height: 100%;
160
- display: flex;
161
- align-items: center;
162
- justify-content: center;
163
- color: #fff;
164
- background: #666;
165
- border-radius: 50%;
166
- overflow: hidden;
167
- cursor: pointer;
168
- transition: all 0.3s ease;
169
- }
170
-
171
- #audio .audio.a-border {
172
- border: 1px solid #fff;
173
- }
174
-
175
- #audio .audio .music-icon {
176
- display: block;
177
- width: 60%;
178
- height: 60%;
179
- object-fit: contain;
180
- }
181
-
182
- #audio .audio .iconfont {
183
- font-size: 2opx;
184
- line-height: 1;
185
- }
186
- #audio .icon-cancel {
187
- position: absolute;
188
- width: 100%;
189
- height: 100%;
190
- border-radius: 50%;
191
- overflow: hidden;
192
- padding: 15px 0;
193
- }
194
- #audio .icon-cancel .icon-h {
195
- transform: rotate(45deg);
196
- width: 100%;
197
- height: 2px;
198
- background: #fff;
199
- }
200
- #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
201
- content: '';
202
- position: absolute;
203
- width: 100%;
204
- height: 2px;
205
- background: #fff;
206
- }
207
- .element-video {
208
- position: absolute;
209
- overflow: hidden;
210
- background-color: transparent;
211
- }
212
-
213
- .element-video .ani-wrap, .element-video img {
214
- display: block;
215
- width: 100%;
216
- height: 100%;
217
- }
218
-
219
- .video-container {
220
- width: 100%;
221
- height: 100%;
222
- }
223
-
224
- .video-container iframe {
225
- width: 100%;
226
- height: 100%;
227
- border: none;
228
- }
229
-
230
- .video-cover {
231
- position: relative;
232
- width: 100%;
233
- height: 100%;
234
- background-size: cover;
235
- background-position: center;
236
- cursor: pointer;
237
- }
238
-
239
- .video-cover .play-btn {
240
- position: absolute;
241
- left: 50%;
242
- top: 50%;
243
- transform: translate(-50%, -50%);
244
- width: 50px;
245
- height: 50px;
246
- opacity: 0.8;
247
- transition: opacity 0.2s;
248
- }
249
-
250
- .video-cover:hover .play-btn {
251
- opacity: 1;
252
- }.count-down .drag-point {
20
+ .count-down .drag-point {
253
21
  cursor: default!important
254
22
  }
255
23
 
@@ -411,77 +179,220 @@
411
179
  align-items: center;
412
180
  white-space: nowrap
413
181
  }
414
- .ele-shape {
182
+ .call {
415
183
  position: absolute;
416
- overflow: hidden;
184
+ cursor: pointer;
185
+ user-select: none;
417
186
  }
418
187
 
419
- .ani-wrap {
188
+ .call .ani-wrap {
189
+ display: flex;
190
+ justify-content: center;
191
+ align-items: center;
420
192
  width: 100%;
421
193
  height: 100%;
422
- box-sizing: border-box;
194
+ overflow: hidden;
195
+ transition: opacity 0.2s;
423
196
  }
424
197
 
425
- .e-shape {
426
- width: 100%;
427
- height: 100%;
198
+ .call .ani-wrap:hover {
199
+ opacity: 0.9;
428
200
  }
429
201
 
430
- .svg-container :deep(svg) {
431
- width: 100%;
432
- height: 100%;
433
- display: block;
202
+ .call-content {
203
+ display: flex;
204
+ align-items: center;
205
+ justify-content: center;
434
206
  }
435
207
 
436
- .svg-container {
437
- width: 100%;
438
- height: 100%;
439
- display: block;
208
+ .btn-text {
209
+ margin-left: 10px;
440
210
  }
441
211
 
442
212
 
443
- .svg-loading,
444
- .svg-error {
213
+ .hb-tel:before {
214
+ content: "\E642";
215
+ }#audio {
216
+ position: absolute;
217
+ right: 10px;
218
+ top: 10px;
219
+ z-index: 103;
220
+ width: 30px;
221
+ height: 30px;
445
222
  display: flex;
446
223
  align-items: center;
447
- justify-content: center;
224
+ }
225
+
226
+ #audio .mrotate {
227
+ animation: mrotate 5s linear infinite;
228
+ }
229
+
230
+ @keyframes mrotate {
231
+ to {
232
+ transform: rotate(1turn);
233
+ }
234
+ }
235
+
236
+ #audio .audio {
448
237
  width: 100%;
449
238
  height: 100%;
450
- background: rgba(0,0,0,0.05);
239
+ display: flex;
240
+ align-items: center;
241
+ justify-content: center;
242
+ color: #fff;
243
+ background: #666;
244
+ border-radius: 50%;
245
+ overflow: hidden;
246
+ cursor: pointer;
247
+ transition: all 0.3s ease;
451
248
  }
452
249
 
453
- .ele-shape .svg-container svg {
250
+ #audio .audio.a-border {
251
+ border: 1px solid #fff;
252
+ }
253
+
254
+ #audio .audio .music-icon {
255
+ display: block;
256
+ width: 60%;
257
+ height: 60%;
258
+ object-fit: contain;
259
+ }
260
+
261
+ #audio .audio .iconfont {
262
+ font-size: 2opx;
263
+ line-height: 1;
264
+ }
265
+ #audio .icon-cancel {
266
+ position: absolute;
267
+ width: 100%;
268
+ height: 100%;
269
+ border-radius: 50%;
270
+ overflow: hidden;
271
+ padding: 15px 0;
272
+ }
273
+ #audio .icon-cancel .icon-h {
274
+ transform: rotate(45deg);
275
+ width: 100%;
276
+ height: 2px;
277
+ background: #fff;
278
+ }
279
+ #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
280
+ content: '';
281
+ position: absolute;
282
+ width: 100%;
283
+ height: 2px;
284
+ background: #fff;
285
+ }
286
+ .ele-text {
287
+ position: relative;
288
+ }
289
+
290
+ .ele-text .ani-wrap {
454
291
  width: 100%;
455
292
  height: 100%;
456
- overflow: visible;
457
- }.button {
458
- position: absolute;
459
- cursor: pointer;
460
- user-select: none;
461
293
  }
462
-
463
- .button .ani-wrap {
464
- display: flex;
465
- justify-content: center;
466
- align-items: center;
294
+
295
+ .text-common {
296
+ padding: 5px;
297
+ text-orientation: upright;
298
+ white-space: pre-wrap;
299
+ }
300
+
301
+ /* 文本动画类 */
302
+ .text-fadeIn {
303
+ animation: fadeIn 1s ease-in-out;
304
+ }
305
+
306
+ .text-slideIn {
307
+ animation: slideIn 1s ease-in-out;
308
+ }
309
+
310
+ .text-bounceIn {
311
+ animation: bounceIn 1s ease-in-out;
312
+ }
313
+
314
+ /* 基础动画关键帧 */
315
+ @keyframes fadeIn {
316
+ from {
317
+ opacity: 0;
318
+ }
319
+ to {
320
+ opacity: 1;
321
+ }
322
+ }
323
+
324
+ @keyframes slideIn {
325
+ from {
326
+ transform: translateY(20px);
327
+ opacity: 0;
328
+ }
329
+ to {
330
+ transform: translateY(0);
331
+ opacity: 1;
332
+ }
333
+ }
334
+
335
+ @keyframes bounceIn {
336
+ 0% {
337
+ transform: scale(0.3);
338
+ opacity: 0;
339
+ }
340
+ 50% {
341
+ transform: scale(1.05);
342
+ opacity: 0.8;
343
+ }
344
+ 70% {
345
+ transform: scale(0.9);
346
+ opacity: 0.9;
347
+ }
348
+ 100% {
349
+ transform: scale(1);
350
+ opacity: 1;
351
+ }
352
+ }.element-ditu .ani-wrap {
467
353
  width: 100%;
468
354
  height: 100%;
469
- overflow: hidden;
470
- transition: opacity 0.2s;
355
+ overflow: hidden
471
356
  }
472
-
473
- .button .ani-wrap:hover {
474
- opacity: 0.9;
357
+
358
+ .element-ditu .map {
359
+ width: 100%;
360
+ height: 100%
475
361
  }
476
362
 
477
- .button-content {
363
+ .element-ditu .map .el-button {
364
+ width: 100%;
365
+ height: 100%;
366
+ display: -webkit-box;
367
+ display: -ms-flexbox;
478
368
  display: flex;
369
+ -webkit-box-align: center;
370
+ -ms-flex-align: center;
479
371
  align-items: center;
372
+ padding: 0;
373
+ -webkit-box-pack: center;
374
+ -ms-flex-pack: center;
480
375
  justify-content: center;
376
+ background: inherit;
377
+ color: inherit;
378
+ border: none
481
379
  }
482
380
 
483
- .btn-text {
484
- margin-left: 10px;
381
+ .element-ditu .center-map {
382
+ width: 100%;
383
+ height: 100%;
384
+ background: #fff
385
+ }
386
+
387
+ .element-ditu .mask-map {
388
+ position: absolute;
389
+ width: 100%;
390
+ height: 100%;
391
+ top: 0
392
+ }
393
+ .map-iframe {
394
+ width: 100%;
395
+ height: 100%;
485
396
  }.ele-effect {
486
397
  will-change: transform;
487
398
  }
@@ -537,68 +448,176 @@
537
448
  transform-origin: center;
538
449
  -webkit-animation: snow 5s linear infinite;
539
450
  animation: snow 5s linear infinite
540
- }.call {
451
+ }.ele-shape {
541
452
  position: absolute;
542
- cursor: pointer;
543
- user-select: none;
453
+ overflow: hidden;
544
454
  }
545
455
 
546
- .call .ani-wrap {
547
- display: flex;
548
- justify-content: center;
549
- align-items: center;
456
+ .ani-wrap {
550
457
  width: 100%;
551
458
  height: 100%;
552
- overflow: hidden;
553
- transition: opacity 0.2s;
459
+ box-sizing: border-box;
554
460
  }
555
461
 
556
- .call .ani-wrap:hover {
557
- opacity: 0.9;
462
+ .e-shape {
463
+ width: 100%;
464
+ height: 100%;
558
465
  }
559
466
 
560
- .call-content {
561
- display: flex;
562
- align-items: center;
563
- justify-content: center;
467
+ .svg-container :deep(svg) {
468
+ width: 100%;
469
+ height: 100%;
470
+ display: block;
564
471
  }
565
472
 
566
- .btn-text {
567
- margin-left: 10px;
473
+ .svg-container {
474
+ width: 100%;
475
+ height: 100%;
476
+ display: block;
568
477
  }
569
478
 
570
479
 
571
- .hb-tel:before {
572
- content: "\E642";
573
- }
574
- @keyframes jumpheart {
575
- to {
576
- -webkit-transform: scale(1.2);
577
- transform: scale(1.2)
578
- }
579
- }
580
- .ele-calendar {
581
- position: relative;
582
- width: 325px !important;
583
- min-height: 325px !important;
584
- height: auto !important;
585
- }
586
-
587
- .ele-calendar .drag-point {
588
- cursor: default !important;
480
+ .svg-loading,
481
+ .svg-error {
482
+ display: flex;
483
+ align-items: center;
484
+ justify-content: center;
485
+ width: 100%;
486
+ height: 100%;
487
+ background: rgba(0,0,0,0.05);
589
488
  }
590
489
 
591
- .ele-calendar .ani-wrap {
592
- position: relative;
490
+ .ele-shape .svg-container svg {
593
491
  width: 100%;
594
- min-height: 325px !important;
595
- height: auto !important;
596
- padding: 22px 0;
492
+ height: 100%;
493
+ overflow: visible;
597
494
  }
598
-
599
- .ele-calendar .ani-wrap .can-wrap .can-top {
600
- display: flex;
601
- justify-content: space-between;
495
+ .element-video {
496
+ position: absolute;
497
+ overflow: hidden;
498
+ background-color: transparent;
499
+ }
500
+
501
+ .element-video .ani-wrap, .element-video img {
502
+ display: block;
503
+ width: 100%;
504
+ height: 100%;
505
+ }
506
+
507
+ .video-container {
508
+ width: 100%;
509
+ height: 100%;
510
+ }
511
+
512
+ .video-container iframe {
513
+ width: 100%;
514
+ height: 100%;
515
+ border: none;
516
+ }
517
+
518
+ .video-cover {
519
+ position: relative;
520
+ width: 100%;
521
+ height: 100%;
522
+ background-size: cover;
523
+ background-position: center;
524
+ cursor: pointer;
525
+ }
526
+
527
+ .video-cover .play-btn {
528
+ position: absolute;
529
+ left: 50%;
530
+ top: 50%;
531
+ transform: translate(-50%, -50%);
532
+ width: 50px;
533
+ height: 50px;
534
+ opacity: 0.8;
535
+ transition: opacity 0.2s;
536
+ }
537
+
538
+ .video-cover:hover .play-btn {
539
+ opacity: 1;
540
+ }.ele-img {
541
+ position: absolute;
542
+ overflow: hidden;
543
+ }
544
+
545
+ .ele-img .ani-wrap {
546
+ width: 100%;
547
+ height: 100%;
548
+ }
549
+
550
+ .ele-img .ele-image {
551
+ position: relative;
552
+ display: block;
553
+ }
554
+
555
+ .ele-img .rotate-wrap {
556
+ position: absolute;
557
+ left: 0;
558
+ right: 0;
559
+ top: 0;
560
+ bottom: 0;
561
+ }
562
+
563
+ .ele-img .ele-img-bg,
564
+ .ele-img .rotate-wrap .img-wrap {
565
+ width: 100%;
566
+ height: 100%;
567
+ overflow: hidden;
568
+ }
569
+
570
+ .ele-img .ele-bg-wrap {
571
+ width: 100%;
572
+ height: 100%;
573
+ background-size: cover;
574
+ background-position: 50% 50%;
575
+ background-repeat: no-repeat;
576
+ background-clip: border-box;
577
+ }
578
+
579
+ /* 动画关键帧 */
580
+ @keyframes zoomIn {
581
+ from {
582
+ opacity: 0;
583
+ transform: scale(0.5);
584
+ }
585
+ to {
586
+ opacity: 1;
587
+ transform: scale(1);
588
+ }
589
+ }
590
+ .ele-lottie .ele-lotwrap {
591
+ overflow: hidden;
592
+ }
593
+ @keyframes jumpheart {
594
+ to {
595
+ -webkit-transform: scale(1.2);
596
+ transform: scale(1.2)
597
+ }
598
+ }
599
+ .ele-calendar {
600
+ position: relative;
601
+ width: 325px !important;
602
+ min-height: 325px !important;
603
+ height: auto !important;
604
+ }
605
+
606
+ .ele-calendar .drag-point {
607
+ cursor: default !important;
608
+ }
609
+
610
+ .ele-calendar .ani-wrap {
611
+ position: relative;
612
+ width: 100%;
613
+ min-height: 325px !important;
614
+ height: auto !important;
615
+ padding: 22px 0;
616
+ }
617
+
618
+ .ele-calendar .ani-wrap .can-wrap .can-top {
619
+ display: flex;
620
+ justify-content: space-between;
602
621
  align-items: flex-end;
603
622
  line-height: 1;
604
623
  padding: 0 47px 20px;
@@ -912,910 +931,7 @@
912
931
  }
913
932
  .icon-xingzhuangjiehe:before {
914
933
  content: "\E6A6";
915
- }/* Iconfont definition */
916
- .icon-danmuliebiao1:before {
917
- content: "\E68A";
918
- }
919
-
920
- .icon-cuowu2:before {
921
- content: "\E65E";
922
- }
923
-
924
- i {
925
- font-style: normal;
926
- }
927
-
928
- .v-modal {
929
- position: fixed;
930
- left: 0;
931
- top: 0;
932
- width: 100%;
933
- height: 100%;
934
- opacity: .5;
935
- background: #000;
936
- }
937
- /* 底部工具栏样式 */
938
- #toolbarNew {
939
- position: fixed;
940
- left: 0;
941
- bottom: 0;
942
- width: 100%;
943
- padding: 12px 0;
944
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
945
- z-index: 100;
946
- }
947
-
948
- .toolbar {
949
- display: flex;
950
- align-items: center;
951
- padding: 0 10px;
952
- }
953
-
954
- .bar-left {
955
- position: relative;
956
- flex: 1;
957
- }
958
-
959
- .bar-mess {
960
- width: 100%;
961
- height: 36px;
962
- line-height: 36px;
963
- font-size: 14px;
964
- color: #ccc;
965
- padding: 0 8px;
966
- border-radius: 18px;
967
- border: none;
968
- -webkit-appearance: none;
969
- background-color: rgba(0, 0, 0, 0.28);
970
- }
971
-
972
- .bar-mess::placeholder {
973
- color: rgba(255, 255, 255, 0.7);
974
- }
975
-
976
- .bar-left .iconfont {
977
- position: absolute;
978
- right: 10px;
979
- top: 50%;
980
- transform: translateY(-50%);
981
- color: #f2f2f2;
982
- font-size: 16px;
983
- cursor: pointer;
984
- z-index: 2;
985
- padding: 5px;
986
- }
987
-
988
- /* 关闭弹幕按钮样式 */
989
- .toolbar-close {
990
- position: absolute;
991
- left: 10px;
992
- transform: translateY(-50%);
993
- display: flex;
994
- align-items: center;
995
- cursor: pointer;
996
- z-index: 2;
997
- }
998
-
999
- .toolbar-close img {
1000
- display: block;
1001
- width: 36px;
1002
- height: 36px;
1003
- cursor: pointer;
1004
- }
1005
-
1006
- /* 弹幕容器样式 */
1007
- .bullet-container {
1008
- position: fixed;
1009
- left: 10px;
1010
- right: 10px;
1011
- height: 120px;
1012
- overflow: hidden;
1013
- z-index: 99;
1014
- pointer-events: none;
1015
- }
1016
-
1017
- .bullet-item {
1018
- position: absolute;
1019
- left: 0;
1020
- bottom: 0;
1021
- padding: 5px 10px;
1022
- border-radius: 15px;
1023
- font-size: 14px;
1024
- white-space: nowrap;
1025
- animation: bulletMove linear;
1026
- animation-fill-mode: forwards;
1027
- will-change: transform;
1028
- display: inline-block;
1029
- max-width: 90%;
1030
- }
1031
-
1032
- @keyframes bulletMove {
1033
- 0% {
1034
- transform: translateY(0);
1035
- opacity: 1;
1036
- }
1037
- 100% {
1038
- transform: translateY(calc(-1 * 150px));
1039
- opacity: 0;
1040
- }
1041
- }
1042
-
1043
- /* 弹幕输入弹窗样式 */
1044
- .popup-overlay {
1045
- position: fixed;
1046
- top: 0;
1047
- left: 0;
1048
- right: 0;
1049
- bottom: 0;
1050
- background: rgba(0, 0, 0, 0.5);
1051
- display: flex;
1052
- justify-content: center;
1053
- align-items: flex-end;
1054
- z-index: 200;
1055
- }
1056
-
1057
- #index .mint-popup {
1058
- background-color: transparent;
1059
- }
1060
-
1061
- .mint-popup {
1062
- position: fixed;
1063
- background: #fff;
1064
- top: 50%;
1065
- left: 50%;
1066
- transform: translate3d(-50%, -50%, 0);
1067
- -webkit-backface-visibility: hidden;
1068
- backface-visibility: hidden;
1069
- transition: .2s ease-out;
1070
- }
1071
-
1072
- .bar-messwin {
1073
- width: 309px;
1074
- height: 341px;
1075
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/mess-bg.png') no-repeat 50%;
1076
- background-size: 100% 100%;
1077
- position: relative;
1078
- display: flex;
1079
- flex-direction: column;
1080
- align-items: center;
1081
- margin-bottom: 20px;
1082
- }
1083
-
1084
- .bar-messwin .mess-logo {
1085
- width: 171px;
1086
- height: 110px;
1087
- margin-top: -64px;
1088
- margin-left: 11px;
1089
- }
1090
-
1091
- .bar-messwin .mess-title {
1092
- margin-top: 12px;
1093
- font-weight: 600;
1094
- font-size: 21px;
1095
- color: #333;
1096
- }
1097
-
1098
- .bar-messwin .mess-input {
1099
- width: 267px;
1100
- height: 43px;
1101
- background: #fff;
1102
- border-radius: 9px;
1103
- border: 1px solid rgba(237,85,102,0.4);
1104
- margin-top: 12px;
1105
- display: flex;
1106
- align-items: center;
1107
- justify-content: center;
1108
- padding: 0 13px;
1109
- }
1110
-
1111
- .bar-messwin .mess-input input {
1112
- width: 100%;
1113
- font-size: 17px;
1114
- font-family: PingFang SC;
1115
- font-weight: 400;
1116
- color: #333;
1117
- border: none;
1118
- outline: none;
1119
- background: transparent;
1120
- }
1121
-
1122
- .bar-messwin .mess-input input::-webkit-input-placeholder {
1123
- color: #999;
1124
- }
1125
-
1126
- .bar-messwin .mess-input input::-ms-input-placeholder {
1127
- color: #999;
1128
- }
1129
-
1130
- .bar-messwin .mess-input input::placeholder {
1131
- color: #999;
1132
- }
1133
-
1134
- .bar-messwin .mess-textarea {
1135
- width: 267px;
1136
- height: 85px;
1137
- background: #fff;
1138
- border-radius: 9px;
1139
- border: 1px solid rgba(237,85,102,0.4);
1140
- display: flex;
1141
- padding: 9px 13px;
1142
- justify-content: space-between;
1143
- margin-top: 12px;
1144
- position: relative;
1145
- }
1146
-
1147
- .bar-messwin .mess-textarea textarea {
1148
- width: 203px;
1149
- height: 68px;
1150
- font-size: 17px;
1151
- resize: none;
1152
- outline: none;
1153
- border: none;
1154
- background: transparent;
1155
- color: #333;
1156
- font-family: PingFang SC;
1157
- }
1158
-
1159
- .bar-messwin .mess-textarea textarea::-webkit-input-placeholder {
1160
- color: #999;
1161
- }
1162
-
1163
- .bar-messwin .mess-textarea textarea::-ms-input-placeholder {
1164
- color: #999;
1165
- }
1166
-
1167
- .bar-messwin .mess-textarea textarea::placeholder {
1168
- color: #999;
1169
- }
1170
-
1171
- .bar-messwin .mess-textarea img {
1172
- width: 26px;
1173
- height: 26px;
1174
- cursor: pointer;
1175
- }
1176
-
1177
- .bar-messwin .mess-textarea .wish-dropdown {
1178
- position: absolute;
1179
- top: 43px;
1180
- right: 0;
1181
- width: 267px;
1182
- background: #fff;
1183
- border-radius: 9px;
1184
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
1185
- z-index: 10;
1186
- max-height: 213px;
1187
- overflow-y: auto;
1188
- border: 1px solid rgba(237,85,102,0.2);
1189
- padding: 0 13px;
1190
- }
1191
-
1192
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar {
1193
- width: 3px;
1194
- background-color: transparent;
1195
- display: block;
1196
- }
1197
-
1198
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-thumb {
1199
- background-color: #ccc;
1200
- border-radius: 9px;
1201
- min-height: 32px;
1202
- }
1203
-
1204
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-track {
1205
- background-color: transparent;
1206
- border-radius: 3px;
1207
- margin: 4px 0;
1208
- }
1209
-
1210
- .bar-messwin .mess-textarea .wish-dropdown .wish-item {
1211
- padding: 11px 0;
1212
- display: flex;
1213
- align-items: flex-start;
1214
- cursor: pointer;
1215
- transition: background-color 0.2s;
1216
- border-bottom: 1px solid rgba(0,0,0,0.05);
1217
- }
1218
-
1219
- .bar-messwin .mess-textarea .wish-dropdown .wish-item:last-child {
1220
- border-bottom: none;
1221
- }
1222
-
1223
- .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-dot {
1224
- color: #ff4874;
1225
- margin-right: 5px;
1226
- font-size: 11px;
1227
- line-height: 21px;
1228
- }
1229
-
1230
- .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-text {
1231
- font-size: 15px;
1232
- color: #333;
1233
- line-height: 21px;
1234
- text-align: left;
1235
- }
1236
-
1237
- .bar-messwin .bar-m-sub {
1238
- width: 267px;
1239
- height: 43px;
1240
- background: linear-gradient(270deg,#ff4874,#ff9061);
1241
- border-radius: 68px;
1242
- font-size: 17px;
1243
- font-family: PingFang SC;
1244
- font-weight: 400;
1245
- color: #fff;
1246
- margin-top: 26px;
1247
- border: none;
1248
- outline: none;
1249
- cursor: pointer;
1250
- display: flex;
1251
- align-items: center;
1252
- justify-content: center;
1253
- }
1254
-
1255
- .bar-messwin .icon-cuowu2, .give-gift .icon-cuowu2 {
1256
- position: absolute;
1257
- bottom: -60px;
1258
- right: 50%;
1259
- transform: translateX(50%);
1260
- font-size: 28px;
1261
- color: #fff;
1262
- cursor: pointer;
1263
- }
1264
-
1265
- /* 提示弹窗样式 */
1266
- .mint-msgbox-wrapper {
1267
- position: fixed;
1268
- top: 0;
1269
- left: 0;
1270
- right: 0;
1271
- bottom: 0;
1272
- background-color: rgba(0,0,0,0.5);
1273
- z-index: 2005;
1274
- display: flex;
1275
- justify-content: center;
1276
- align-items: center;
1277
- }
1278
-
1279
- .mint-msgbox {
1280
- position: relative;
1281
- background-color: #fff;
1282
- width: 85%;
1283
- border-radius: 3px;
1284
- font-size: 17px;
1285
- overflow: hidden;
1286
- }
1287
-
1288
- .mint-msgbox-header {
1289
- padding: 16px 0 0;
1290
- }
1291
-
1292
- .mint-msgbox-content {
1293
- padding: 11px 21px 16px;
1294
- border-bottom: 1px solid #ddd;
1295
- min-height: 38px;
1296
- position: relative;
1297
- }
1298
-
1299
- .mint-msgbox-title {
1300
- text-align: center;
1301
- padding-left: 0;
1302
- margin-bottom: 0;
1303
- font-size: 17px;
1304
- font-weight: 700;
1305
- color: #333;
1306
- }
1307
-
1308
- .mint-msgbox-message {
1309
- color: #999;
1310
- margin: 0;
1311
- text-align: center;
1312
- line-height: 38px;
1313
- }
1314
-
1315
- .mint-msgbox-btns {
1316
- display: flex;
1317
- height: 43px;
1318
- line-height: 43px;
1319
- }
1320
-
1321
- .mint-msgbox-btn {
1322
- line-height: 37px;
1323
- display: block;
1324
- background-color: #fff;
1325
- flex: 1;
1326
- margin: 0;
1327
- border: 0;
1328
- }
1329
-
1330
- .mint-msgbox-confirm {
1331
- color: #26a2ff;
1332
- width: 100%;
1333
- }
1334
- /* 右侧按钮区域样式 */
1335
- #toolbarNew .toolbar .bar-right {
1336
- margin-left: 7px;
1337
- font-size: 0;
1338
- display: flex;
1339
- align-items: center;
1340
- }
1341
-
1342
- #toolbarNew .toolbar .bar-right.move-left {
1343
- right: 64px;
1344
- }
1345
-
1346
- #toolbarNew .toolbar .bar-right .bar-r-com,
1347
- #toolbarNew .toolbar .bar-right>img {
1348
- display: inline-block;
1349
- vertical-align: middle;
1350
- }
1351
-
1352
- #toolbarNew .toolbar .bar-right .bar-r-com {
1353
- margin-left: 8px;
1354
- cursor: pointer;
1355
- }
1356
-
1357
- #toolbarNew .toolbar .bar-right .bar-r-com.bar-r-gift {
1358
- width: 36px;
1359
- height: 36px;
1360
- transform-origin: center bottom;
1361
- animation: giftJump 3s ease infinite;
1362
- }
1363
-
1364
- @keyframes giftJump {
1365
- 0%, 24%, 48%, to {
1366
- transform: translateZ(0);
1367
- }
1368
- 12% {
1369
- transform: translate3d(0, -10px, 0);
1370
- }
1371
- 36% {
1372
- transform: translate3d(0, -10px, 0);
1373
- }
1374
- }
1375
-
1376
- #toolbarNew .toolbar .bar-right .bar-r-com:first-child {
1377
- margin-left: 0;
1378
- }
1379
-
1380
- #toolbarNew .toolbar .bar-right>img {
1381
- position: relative;
1382
- z-index: 1;
1383
- width: 26px;
1384
- height: 26px;
1385
- }
1386
-
1387
- #toolbarNew .toolbar .bar-right .bar-heart {
1388
- position: relative;
1389
- width: 36px;
1390
- height: 36px;
1391
- text-align: center;
1392
- }
1393
-
1394
- #toolbarNew .toolbar .bar-right .bar-heart .bar-praise {
1395
- position: absolute;
1396
- max-width: 36px;
1397
- height: 15px;
1398
- line-height: 15px;
1399
- right: 0;
1400
- top: 0;
1401
- z-index: 3;
1402
- font-size: 10px;
1403
- color: #fff;
1404
- border-radius: 6px;
1405
- padding: 0 4px;
1406
- box-sizing: border-box;
1407
- white-space: nowrap;
1408
- background-color: #f38200;
1409
- transform: translateX(40%);
1410
- }
1411
-
1412
- #toolbarNew .toolbar .bar-right .bar-zan {
1413
- position: relative;
1414
- z-index: 2;
1415
- height: 33px;
1416
- width: 33px;
1417
- box-sizing: border-box;
1418
- }
1419
-
1420
- #toolbarNew .toolbar .bar-right .bar-zan .ani-num {
1421
- position: absolute;
1422
- top: 0;
1423
- left: 10px;
1424
- opacity: 0;
1425
- font-size: 15px;
1426
- color: #f07a87;
1427
- }
1428
-
1429
- #toolbarNew .toolbar .bar-right .bar-zan .stop-longtap {
1430
- position: absolute;
1431
- left: 0;
1432
- right: 0;
1433
- bottom: 0;
1434
- top: 0;
1435
- z-index: 1;
1436
- }
1437
-
1438
- #toolbarNew .toolbar .bar-right .bar-zan img {
1439
- width: 36px;
1440
- height: 36px;
1441
- }
1442
-
1443
- #toolbarNew .toolbar .bar-right .bar-zan.active .ani-num {
1444
- z-index: 2;
1445
- animation: praise 1.2s;
1446
- animation-fill-mode: both;
1447
- }
1448
-
1449
- @keyframes praise {
1450
- 0% {
1451
- opacity: 1;
1452
- }
1453
- 50% {
1454
- opacity: 1;
1455
- transform: translate3d(0, -35px, 0);
1456
- }
1457
- to {
1458
- opacity: 0;
1459
- transform: translate3d(0, -35px, 0);
1460
- }
1461
- }
1462
-
1463
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap {
1464
- transform: scale(0.85);
1465
- }
1466
-
1467
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:first-of-type {
1468
- animation: jump .6s ease-out;
1469
- }
1470
-
1471
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(2) {
1472
- animation: jump2 .6s ease-out;
1473
- }
1474
-
1475
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(3) {
1476
- animation: jump3 .6s ease-out;
1477
- }
1478
-
1479
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(4) {
1480
- animation: jump4 .6s ease-out;
1481
- }
1482
-
1483
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(5) {
1484
- animation: jump5 .6s ease-out;
1485
- }
1486
-
1487
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(6) {
1488
- animation: jump6 .6s ease-out;
1489
- }
1490
-
1491
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(7) {
1492
- animation: jump7 .6s ease-out;
1493
- }
1494
-
1495
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(8) {
1496
- animation: jump8 .6s ease-out;
1497
- }
1498
-
1499
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap {
1500
- position: absolute;
1501
- left: 0;
1502
- top: 0;
1503
- right: 0;
1504
- bottom: 0;
1505
- pointer-events: none;
1506
- overflow: visible;
1507
- }
1508
-
1509
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span {
1510
- position: absolute;
1511
- width: 6px;
1512
- height: 6px;
1513
- border-radius: 50%;
1514
- opacity: 0;
1515
- }
1516
-
1517
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:first-of-type {
1518
- left: 50%;
1519
- top: -8px;
1520
- transform: translate3d(-50%, 0, 0);
1521
- background-color: #b3e5c8;
1522
- }
1523
-
1524
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(2) {
1525
- left: -8px;
1526
- top: 50%;
1527
- transform: translate3d(0, -50%, 0);
1528
- background-color: #f4ba31;
1529
- }
1530
-
1531
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(3) {
1532
- left: 50%;
1533
- bottom: -8px;
1534
- transform: translate3d(-50%, 0, 0);
1535
- background-color: #339fef;
1536
- }
1537
-
1538
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(4) {
1539
- top: 50%;
1540
- right: -8px;
1541
- transform: translate3d(0, -50%, 0);
1542
- background-color: #e2264d;
1543
- }
1544
-
1545
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(5) {
1546
- left: -5px;
1547
- top: 0;
1548
- transform: translate3d(0, -50%, 0);
1549
- background-color: #a08880;
1550
- }
1551
-
1552
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(6) {
1553
- left: -5px;
1554
- bottom: 0;
1555
- transform: translate3d(0, 50%, 0);
1556
- background-color: #43c1b5;
1557
- }
1558
-
1559
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(7) {
1560
- right: -5px;
1561
- bottom: 0;
1562
- transform: translate3d(0, 50%, 0);
1563
- background-color: #f5be3b;
1564
- }
1565
-
1566
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(8) {
1567
- right: -5px;
1568
- top: 0;
1569
- transform: translate3d(0, -50%, 0);
1570
- background-color: coral;
1571
- }
1572
-
1573
- @keyframes jump {
1574
- 0% {
1575
- opacity: 1;
1576
- transform: translate3d(-50%, 0, 0) scale(1);
1577
- }
1578
- 40% {
1579
- transform: translate3d(-50%, -100%, 0) scale(0.7);
1580
- }
1581
- to {
1582
- opacity: 1;
1583
- transform: translate3d(-50%, -150%, 0) scale(0);
1584
- }
1585
- }
1586
-
1587
- @keyframes jump2 {
1588
- 0% {
1589
- opacity: 1;
1590
- transform: translate3d(0, -50%, 0) scale(1);
1591
- }
1592
- 40% {
1593
- transform: translate3d(-100%, -50%, 0) scale(0.7);
1594
- }
1595
- to {
1596
- opacity: 1;
1597
- transform: translate3d(-150%, -50%, 0) scale(0);
1598
- }
1599
- }
1600
-
1601
- @keyframes jump3 {
1602
- 0% {
1603
- opacity: 1;
1604
- transform: translate3d(-50%, 0, 0) scale(1);
1605
- }
1606
- 40% {
1607
- transform: translate3d(-50%, 100%, 0) scale(0.7);
1608
- }
1609
- to {
1610
- opacity: 1;
1611
- transform: translate3d(-50%, 150%, 0) scale(0);
1612
- }
1613
- }
1614
-
1615
- @keyframes jump4 {
1616
- 0% {
1617
- opacity: 1;
1618
- transform: translate3d(0, -50%, 0) scale(1);
1619
- }
1620
- 40% {
1621
- transform: translate3d(100%, -50%, 0) scale(0.7);
1622
- }
1623
- to {
1624
- opacity: 1;
1625
- transform: translate3d(150%, -50%, 0) scale(0);
1626
- }
1627
- }
1628
-
1629
- @keyframes jump5 {
1630
- 0% {
1631
- opacity: 1;
1632
- transform: translate3d(0, -50%, 0) scale(1);
1633
- }
1634
- 40% {
1635
- transform: translate3d(-80%, -80%, 0) scale(0.7);
1636
- }
1637
- to {
1638
- opacity: 1;
1639
- transform: translate3d(-130%, -130%, 0) scale(0);
1640
- }
1641
- }
1642
-
1643
- @keyframes jump6 {
1644
- 0% {
1645
- opacity: 1;
1646
- transform: translate3d(0, 50%, 0) scale(1);
1647
- }
1648
- 40% {
1649
- transform: translate3d(-80%, 80%, 0) scale(0.7);
1650
- }
1651
- to {
1652
- opacity: 1;
1653
- transform: translate3d(-130%, 130%, 0) scale(0);
1654
- }
1655
- }
1656
-
1657
- @keyframes jump7 {
1658
- 0% {
1659
- opacity: 1;
1660
- transform: translate3d(0, 50%, 0) scale(1);
1661
- }
1662
- 40% {
1663
- transform: translate3d(80%, 80%, 0) scale(0.7);
1664
- }
1665
- to {
1666
- opacity: 1;
1667
- transform: translate3d(130%, 130%, 0) scale(0);
1668
- }
1669
- }
1670
-
1671
- @keyframes jump8 {
1672
- 0% {
1673
- opacity: 1;
1674
- transform: translate3d(0, 50%, 0) scale(1);
1675
- }
1676
- 40% {
1677
- transform: translate3d(80%, -80%, 0) scale(0.7);
1678
- }
1679
- to {
1680
- opacity: 1;
1681
- transform: translate3d(130%, -130%, 0) scale(0);
1682
- }
1683
- }
1684
-
1685
- /* 礼物弹窗样式 */
1686
- .give-gift {
1687
- position: fixed;
1688
- top: 50%;
1689
- left: 50%;
1690
- transform: translate(-50%, -50%);
1691
- z-index: 2004;
1692
- background: white;
1693
- padding: 20px;
1694
- border-radius: 10px;
1695
- text-align: center;
1696
- }
1697
-
1698
- .give-gift .back {
1699
- position: absolute;
1700
- top: 10px;
1701
- left: 10px;
1702
- cursor: pointer;
1703
- }
1704
-
1705
- .give-gift img {
1706
- max-width: 300px;
1707
- max-height: 300px;
1708
- margin-top: 20px;
1709
- }
1710
-
1711
- /* 留言成功弹窗样式 */
1712
- .mess-success-popup {
1713
- position: fixed;
1714
- top: 0;
1715
- left: 0;
1716
- right: 0;
1717
- bottom: 0;
1718
- background-color: rgba(0, 0, 0, 0.5);
1719
- z-index: 2003;
1720
- display: flex;
1721
- justify-content: center;
1722
- align-items: center;
1723
- }
1724
-
1725
- .mess-success-popup .gift-popup {
1726
- width: 300px;
1727
- height: 200px;
1728
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
1729
- border-radius: 10px;
1730
- padding: 20px;
1731
- text-align: center;
1732
- position: relative;
1733
- }
1734
-
1735
- .mess-success-popup .gift-popup .icon-cuowu2 {
1736
- position: absolute;
1737
- top: 10px;
1738
- right: 10px;
1739
- cursor: pointer;
1740
- }
1741
-
1742
- .mess-success-popup .gift-popup .toast {
1743
- display: flex;
1744
- align-items: center;
1745
- justify-content: center;
1746
- margin: 10px 0;
1747
- }
1748
-
1749
- .mess-success-popup .gift-popup .toast img {
1750
- width: 20px;
1751
- height: 15px;
1752
- margin: 0 5px;
1753
- }
1754
-
1755
- .mess-success-popup .gift-popup .title {
1756
- margin: 15px 0;
1757
- font-size: 16px;
1758
- color: #333;
1759
- }
1760
-
1761
- .mess-success-popup .gift-popup .btn {
1762
- background: linear-gradient(270deg, #ff4874, #ff9061);
1763
- color: white;
1764
- border: none;
1765
- padding: 10px 20px;
1766
- border-radius: 20px;
1767
- margin-top: 15px;
1768
- cursor: pointer;
1769
- }
1770
-
1771
- /* 新增图片加载动画样式 */
1772
- .gift-image-container {
1773
- position: relative;
1774
- width: 300px;
1775
- height: 300px;
1776
- margin: 20px 0;
1777
- overflow: hidden;
1778
- }
1779
-
1780
- .gift-image-container img {
1781
- width: 100%;
1782
- height: 100%;
1783
- object-fit: contain;
1784
- opacity: 0;
1785
- transition: opacity 0.5s ease-in-out;
1786
- }
1787
-
1788
- .gift-image-container img.loaded {
1789
- opacity: 1;
1790
- }
1791
-
1792
- .image-loading {
1793
- position: absolute;
1794
- top: 0;
1795
- left: 0;
1796
- width: 100%;
1797
- height: 100%;
1798
- display: flex;
1799
- justify-content: center;
1800
- align-items: center;
1801
- background: rgba(255, 255, 255, 0.8);
1802
- }
1803
-
1804
- .loading-spinner {
1805
- width: 40px;
1806
- height: 40px;
1807
- border: 4px solid #f3f3f3;
1808
- border-top: 4px solid #ed5566;
1809
- border-radius: 50%;
1810
- animation: spin 1s linear infinite;
1811
- }
1812
-
1813
- @keyframes spin {
1814
- 0% { transform: rotate(0deg); }
1815
- 100% { transform: rotate(360deg); }
1816
- }
1817
-
1818
- body, html {
934
+ }body, html {
1819
935
  width: 100%;
1820
936
  height: 100%;
1821
937
  }
@@ -3418,50 +2534,34 @@ to {
3418
2534
  }
3419
2535
  }
3420
2536
 
3421
- .element-ditu .ani-wrap {
2537
+ .button {
2538
+ position: absolute;
2539
+ cursor: pointer;
2540
+ user-select: none;
2541
+ }
2542
+
2543
+ .button .ani-wrap {
2544
+ display: flex;
2545
+ justify-content: center;
2546
+ align-items: center;
3422
2547
  width: 100%;
3423
2548
  height: 100%;
3424
- overflow: hidden
2549
+ overflow: hidden;
2550
+ transition: opacity 0.2s;
3425
2551
  }
3426
-
3427
- .element-ditu .map {
3428
- width: 100%;
3429
- height: 100%
2552
+
2553
+ .button .ani-wrap:hover {
2554
+ opacity: 0.9;
3430
2555
  }
3431
2556
 
3432
- .element-ditu .map .el-button {
3433
- width: 100%;
3434
- height: 100%;
3435
- display: -webkit-box;
3436
- display: -ms-flexbox;
2557
+ .button-content {
3437
2558
  display: flex;
3438
- -webkit-box-align: center;
3439
- -ms-flex-align: center;
3440
2559
  align-items: center;
3441
- padding: 0;
3442
- -webkit-box-pack: center;
3443
- -ms-flex-pack: center;
3444
2560
  justify-content: center;
3445
- background: inherit;
3446
- color: inherit;
3447
- border: none
3448
- }
3449
-
3450
- .element-ditu .center-map {
3451
- width: 100%;
3452
- height: 100%;
3453
- background: #fff
3454
2561
  }
3455
2562
 
3456
- .element-ditu .mask-map {
3457
- position: absolute;
3458
- width: 100%;
3459
- height: 100%;
3460
- top: 0
3461
- }
3462
- .map-iframe {
3463
- width: 100%;
3464
- height: 100%;
2563
+ .btn-text {
2564
+ margin-left: 10px;
3465
2565
  }#page-list .tip-cover {
3466
2566
  position: fixed;
3467
2567
  left: 0;
@@ -3539,7 +2639,57 @@ to {
3539
2639
  font-size: 14px;
3540
2640
  line-height: 20px;
3541
2641
  background: #ed5566;
3542
- } @charset"UTF-8";.animated {
2642
+ } .form-input {
2643
+ position: absolute;
2644
+ }
2645
+
2646
+ .input-wrapper {
2647
+ display: flex;
2648
+ align-items: center;
2649
+ width: 100%;
2650
+ height: 100%;
2651
+ padding: 0 10px;
2652
+ box-sizing: border-box;
2653
+ position: relative;
2654
+ transition: border-color 0.3s;
2655
+ }
2656
+
2657
+ .required-marker {
2658
+ font-size: 12px;
2659
+ padding: 0 5px 0 0;
2660
+ color: red;
2661
+ vertical-align: middle;
2662
+ }
2663
+
2664
+ input {
2665
+ flex: 1;
2666
+ border: none;
2667
+ outline: none;
2668
+ background: transparent;
2669
+ height: 100%;
2670
+ padding: 0;
2671
+ margin: 0;
2672
+ }
2673
+ /*
2674
+ input::placeholder {
2675
+ color: #ccc;
2676
+ opacity: 1;
2677
+ } */
2678
+
2679
+ .dynamic-placeholder-input::placeholder {
2680
+ color: var(--placeholder-color, #999);
2681
+ opacity: 1;
2682
+ }
2683
+ .dynamic-placeholder-input::-webkit-input-placeholder {
2684
+ color: var(--placeholder-color, #999);
2685
+ }
2686
+ .dynamic-placeholder-input::-moz-placeholder {
2687
+ color: var(--placeholder-color, #999);
2688
+ opacity: 1;
2689
+ }
2690
+ .dynamic-placeholder-input:-ms-input-placeholder {
2691
+ color: var(--placeholder-color, #999);
2692
+ }@charset"UTF-8";.animated {
3543
2693
  animation-duration: 1s;
3544
2694
  animation-fill-mode: both
3545
2695
  }
@@ -8210,320 +7360,1223 @@ to {
8210
7360
 
8211
7361
  @-webkit-keyframes qunbai {
8212
7362
  0% {
8213
- -webkit-transform: rotate(4deg);
8214
- -webkit-transform-origin: 40% 0
8215
- }
8216
-
8217
- 48% {
8218
- -webkit-transform: rotate(-2deg);
8219
- -webkit-transform-origin: 40% 0
7363
+ -webkit-transform: rotate(4deg);
7364
+ -webkit-transform-origin: 40% 0
7365
+ }
7366
+
7367
+ 48% {
7368
+ -webkit-transform: rotate(-2deg);
7369
+ -webkit-transform-origin: 40% 0
7370
+ }
7371
+
7372
+ to {
7373
+ -webkit-transform: rotate(4deg);
7374
+ -webkit-transform-origin: 40% 0
7375
+ }
7376
+ }
7377
+
7378
+ @keyframes qunbai {
7379
+ 0% {
7380
+ -webkit-transform: rotate(4deg);
7381
+ -webkit-transform-origin: 40% 0
7382
+ }
7383
+
7384
+ 48% {
7385
+ -webkit-transform: rotate(-2deg);
7386
+ -webkit-transform-origin: 40% 0
7387
+ }
7388
+
7389
+ to {
7390
+ -webkit-transform: rotate(4deg);
7391
+ -webkit-transform-origin: 40% 0
7392
+ }
7393
+ }
7394
+
7395
+ @-webkit-keyframes flipInX {
7396
+ 0% {
7397
+ -webkit-transform: rotateX(0deg);
7398
+ transform: rotateX(0deg)
7399
+ }
7400
+
7401
+ 50% {
7402
+ -webkit-transform: rotateX(90deg);
7403
+ transform: rotateX(90deg)
7404
+ }
7405
+
7406
+ to {
7407
+ -webkit-transform: rotateX(1);
7408
+ transform: rotateX(1)
7409
+ }
7410
+ }
7411
+
7412
+ @keyframes flipInX {
7413
+ 0% {
7414
+ -webkit-transform: rotateX(0deg);
7415
+ transform: rotateX(0deg)
7416
+ }
7417
+
7418
+ 50% {
7419
+ -webkit-transform: rotateX(90deg);
7420
+ transform: rotateX(90deg)
7421
+ }
7422
+
7423
+ to {
7424
+ -webkit-transform: rotateX(1);
7425
+ transform: rotateX(1)
7426
+ }
7427
+ }
7428
+
7429
+ @-webkit-keyframes flipInY {
7430
+ 0% {
7431
+ -webkit-transform: rotateY(0deg);
7432
+ transform: rotateY(0deg)
7433
+ }
7434
+
7435
+ 50% {
7436
+ -webkit-transform: rotateY(90deg);
7437
+ transform: rotateY(90deg)
7438
+ }
7439
+
7440
+ to {
7441
+ -webkit-transform: rotateY(1);
7442
+ transform: rotateY(1)
7443
+ }
7444
+ }
7445
+
7446
+ @keyframes flipInY {
7447
+ 0% {
7448
+ -webkit-transform: rotateY(0deg);
7449
+ transform: rotateY(0deg)
7450
+ }
7451
+
7452
+ 50% {
7453
+ -webkit-transform: rotateY(90deg);
7454
+ transform: rotateY(90deg)
7455
+ }
7456
+
7457
+ to {
7458
+ -webkit-transform: rotateY(1);
7459
+ transform: rotateY(1)
7460
+ }
7461
+ }
7462
+
7463
+ .p-upSlide {
7464
+ -webkit-animation: upSlide .7s ease both;
7465
+ animation: upSlide .7s ease both
7466
+ }
7467
+
7468
+ @-webkit-keyframes upSlide {
7469
+ 0% {
7470
+ -webkit-transform: translateY(-100%);
7471
+ transform: translateY(-100%)
7472
+ }
7473
+
7474
+ to {
7475
+ -webkit-transform: translateY(0);
7476
+ transform: translateY(0)
7477
+ }
7478
+ }
7479
+
7480
+ @keyframes upSlide {
7481
+ 0% {
7482
+ -webkit-transform: translateY(-100%);
7483
+ transform: translateY(-100%)
7484
+ }
7485
+
7486
+ to {
7487
+ -webkit-transform: translateY(0);
7488
+ transform: translateY(0)
7489
+ }
7490
+ }
7491
+
7492
+ .p-downSlide {
7493
+ -webkit-animation: downSlide .7s ease both;
7494
+ animation: downSlide .7s ease both
7495
+ }
7496
+
7497
+ @-webkit-keyframes downSlide {
7498
+ 0% {
7499
+ -webkit-transform: translateY(100%);
7500
+ transform: translateY(100%)
7501
+ }
7502
+
7503
+ to {
7504
+ -webkit-transform: translateY(0);
7505
+ transform: translateY(0)
7506
+ }
7507
+ }
7508
+
7509
+ @keyframes downSlide {
7510
+ 0% {
7511
+ -webkit-transform: translateY(100%);
7512
+ transform: translateY(100%)
7513
+ }
7514
+
7515
+ to {
7516
+ -webkit-transform: translateY(0);
7517
+ transform: translateY(0)
7518
+ }
7519
+ }
7520
+
7521
+ .p-leftSlide {
7522
+ -webkit-animation: leftSlide .7s ease both;
7523
+ animation: leftSlide .7s ease both
7524
+ }
7525
+
7526
+ @-webkit-keyframes leftSlide {
7527
+ 0% {
7528
+ -webkit-transform: translateX(-100%);
7529
+ transform: translateX(-100%)
7530
+ }
7531
+
7532
+ to {
7533
+ -webkit-transform: translateX(0);
7534
+ transform: translateX(0)
7535
+ }
7536
+ }
7537
+
7538
+ @keyframes leftSlide {
7539
+ 0% {
7540
+ -webkit-transform: translateX(-100%);
7541
+ transform: translateX(-100%)
7542
+ }
7543
+
7544
+ to {
7545
+ -webkit-transform: translateX(0);
7546
+ transform: translateX(0)
7547
+ }
7548
+ }
7549
+
7550
+ .p-rightSlide {
7551
+ -webkit-animation: rightSlide .7s ease both;
7552
+ animation: rightSlide .7s ease both
7553
+ }
7554
+
7555
+ @-webkit-keyframes rightSlide {
7556
+ 0% {
7557
+ -webkit-transform: translateX(100%);
7558
+ transform: translateX(100%)
7559
+ }
7560
+
7561
+ to {
7562
+ -webkit-transform: translateX(0);
7563
+ transform: translateX(0)
7564
+ }
7565
+ }
7566
+
7567
+ @keyframes rightSlide {
7568
+ 0% {
7569
+ -webkit-transform: translateX(100%);
7570
+ transform: translateX(100%)
7571
+ }
7572
+
7573
+ to {
7574
+ -webkit-transform: translateX(0);
7575
+ transform: translateX(0)
7576
+ }
7577
+ }
7578
+ /* .ele-form {
7579
+ position: absolute;
7580
+ user-select: none;
7581
+ } */
7582
+
7583
+ .f-select {
7584
+ cursor: pointer;
7585
+ }
7586
+
7587
+ .ani-wrap {
7588
+ position: relative;
7589
+ }
7590
+
7591
+ .f-select .ani-wrap .fs-tit {
7592
+ position: relative;
7593
+ display: flex;
7594
+ padding: 0 5px;
7595
+ height: 35px;
7596
+ line-height: 35px;
7597
+ align-items: center;
7598
+ }
7599
+
7600
+ .require {
7601
+ padding: 0 5px 0 0;
7602
+ color: red;
7603
+ vertical-align: middle;
7604
+ }
7605
+
7606
+ .fs-cont {
7607
+ padding-right: 15px;
7608
+ white-space: nowrap;
7609
+ overflow: hidden;
7610
+ text-overflow: ellipsis;
7611
+ flex-grow: 1;
7612
+ }
7613
+
7614
+ .icon-bofang1 {
7615
+ font-size: 12px;
7616
+ transition: transform 0.2s ease;
7617
+ }
7618
+
7619
+ .rotate-180 {
7620
+ transform: rotate(180deg) !important;
7621
+ }
7622
+
7623
+ .f-real {
7624
+ position: absolute;
7625
+ left: 0;
7626
+ top: 0;
7627
+ width: 100%;
7628
+ height: 100%;
7629
+ z-index: 1;
7630
+ opacity: 0;
7631
+ cursor: pointer;
7632
+ }
7633
+
7634
+ .dropdown-menu {
7635
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
7636
+ }
7637
+
7638
+ .dropdown-item {
7639
+ padding: 8px 10px;
7640
+ cursor: pointer;
7641
+ transition: background-color 0.2s;
7642
+ }
7643
+
7644
+ .dropdown-item:hover {
7645
+ background-color: #f5f5f5;
7646
+ }
7647
+
7648
+ .dropdown-item.selected {
7649
+ background-color: #e6f7ff;
7650
+ color: #1890ff;
7651
+ }
7652
+
7653
+ .f-select .fs-tit .icon-bofang1 {
7654
+ position: absolute;
7655
+ right: 10px;
7656
+ font-size: 12px;
7657
+ display: inline-block;
7658
+ transform: rotate(90deg);
7659
+ }
7660
+
7661
+ .icon-bofang1:before {
7662
+ content: "\E6CF";
7663
+ }
7664
+
7665
+ .has-error {
7666
+ border-color: #ff4d4f !important;
7667
+ }
7668
+
7669
+ .error-tip {
7670
+ position: fixed;
7671
+ left: 0;
7672
+ top: 0;
7673
+ width: 100%;
7674
+ height: 100%;
7675
+ z-index: 1000;
7676
+ }/* Iconfont definition */
7677
+ .icon-danmuliebiao1:before {
7678
+ content: "\E68A";
7679
+ }
7680
+
7681
+ .icon-cuowu2:before {
7682
+ content: "\E65E";
7683
+ }
7684
+
7685
+ i {
7686
+ font-style: normal;
7687
+ }
7688
+
7689
+ .v-modal {
7690
+ position: fixed;
7691
+ left: 0;
7692
+ top: 0;
7693
+ width: 100%;
7694
+ height: 100%;
7695
+ opacity: .5;
7696
+ background: #000;
7697
+ }
7698
+ /* 底部工具栏样式 */
7699
+ #toolbarNew {
7700
+ position: fixed;
7701
+ left: 0;
7702
+ bottom: 0;
7703
+ width: 100%;
7704
+ padding: 12px 0;
7705
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
7706
+ z-index: 100;
7707
+ }
7708
+
7709
+ .toolbar {
7710
+ display: flex;
7711
+ align-items: center;
7712
+ padding: 0 10px;
7713
+ }
7714
+
7715
+ .bar-left {
7716
+ position: relative;
7717
+ flex: 1;
7718
+ }
7719
+
7720
+ .bar-mess {
7721
+ width: 100%;
7722
+ height: 36px;
7723
+ line-height: 36px;
7724
+ font-size: 14px;
7725
+ color: #ccc;
7726
+ padding: 0 8px;
7727
+ border-radius: 18px;
7728
+ border: none;
7729
+ -webkit-appearance: none;
7730
+ background-color: rgba(0, 0, 0, 0.28);
7731
+ }
7732
+
7733
+ .bar-mess::placeholder {
7734
+ color: rgba(255, 255, 255, 0.7);
7735
+ }
7736
+
7737
+ .bar-left .iconfont {
7738
+ position: absolute;
7739
+ right: 10px;
7740
+ top: 50%;
7741
+ transform: translateY(-50%);
7742
+ color: #f2f2f2;
7743
+ font-size: 16px;
7744
+ cursor: pointer;
7745
+ z-index: 2;
7746
+ padding: 5px;
7747
+ }
7748
+
7749
+ /* 关闭弹幕按钮样式 */
7750
+ .toolbar-close {
7751
+ position: absolute;
7752
+ left: 10px;
7753
+ transform: translateY(-50%);
7754
+ display: flex;
7755
+ align-items: center;
7756
+ cursor: pointer;
7757
+ z-index: 2;
7758
+ }
7759
+
7760
+ .toolbar-close img {
7761
+ display: block;
7762
+ width: 36px;
7763
+ height: 36px;
7764
+ cursor: pointer;
7765
+ }
7766
+
7767
+ /* 弹幕容器样式 */
7768
+ .bullet-container {
7769
+ position: fixed;
7770
+ left: 10px;
7771
+ right: 10px;
7772
+ height: 120px;
7773
+ overflow: hidden;
7774
+ z-index: 99;
7775
+ pointer-events: none;
7776
+ }
7777
+
7778
+ .bullet-item {
7779
+ position: absolute;
7780
+ left: 0;
7781
+ bottom: 0;
7782
+ padding: 5px 10px;
7783
+ border-radius: 15px;
7784
+ font-size: 14px;
7785
+ white-space: nowrap;
7786
+ animation: bulletMove linear;
7787
+ animation-fill-mode: forwards;
7788
+ will-change: transform;
7789
+ display: inline-block;
7790
+ max-width: 90%;
7791
+ }
7792
+
7793
+ @keyframes bulletMove {
7794
+ 0% {
7795
+ transform: translateY(0);
7796
+ opacity: 1;
8220
7797
  }
8221
-
8222
- to {
8223
- -webkit-transform: rotate(4deg);
8224
- -webkit-transform-origin: 40% 0
7798
+ 100% {
7799
+ transform: translateY(calc(-1 * 150px));
7800
+ opacity: 0;
8225
7801
  }
8226
- }
8227
-
8228
- @keyframes qunbai {
8229
- 0% {
8230
- -webkit-transform: rotate(4deg);
8231
- -webkit-transform-origin: 40% 0
7802
+ }
7803
+
7804
+ /* 弹幕输入弹窗样式 */
7805
+ .popup-overlay {
7806
+ position: fixed;
7807
+ top: 0;
7808
+ left: 0;
7809
+ right: 0;
7810
+ bottom: 0;
7811
+ background: rgba(0, 0, 0, 0.5);
7812
+ display: flex;
7813
+ justify-content: center;
7814
+ align-items: flex-end;
7815
+ z-index: 200;
7816
+ }
7817
+
7818
+ #index .mint-popup {
7819
+ background-color: transparent;
7820
+ }
7821
+
7822
+ .mint-popup {
7823
+ position: fixed;
7824
+ background: #fff;
7825
+ top: 50%;
7826
+ left: 50%;
7827
+ transform: translate3d(-50%, -50%, 0);
7828
+ -webkit-backface-visibility: hidden;
7829
+ backface-visibility: hidden;
7830
+ transition: .2s ease-out;
7831
+ }
7832
+
7833
+ .bar-messwin {
7834
+ width: 309px;
7835
+ height: 341px;
7836
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/mess-bg.png') no-repeat 50%;
7837
+ background-size: 100% 100%;
7838
+ position: relative;
7839
+ display: flex;
7840
+ flex-direction: column;
7841
+ align-items: center;
7842
+ margin-bottom: 20px;
7843
+ }
7844
+
7845
+ .bar-messwin .mess-logo {
7846
+ width: 171px;
7847
+ height: 110px;
7848
+ margin-top: -64px;
7849
+ margin-left: 11px;
7850
+ }
7851
+
7852
+ .bar-messwin .mess-title {
7853
+ margin-top: 12px;
7854
+ font-weight: 600;
7855
+ font-size: 21px;
7856
+ color: #333;
7857
+ }
7858
+
7859
+ .bar-messwin .mess-input {
7860
+ width: 267px;
7861
+ height: 43px;
7862
+ background: #fff;
7863
+ border-radius: 9px;
7864
+ border: 1px solid rgba(237,85,102,0.4);
7865
+ margin-top: 12px;
7866
+ display: flex;
7867
+ align-items: center;
7868
+ justify-content: center;
7869
+ padding: 0 13px;
7870
+ }
7871
+
7872
+ .bar-messwin .mess-input input {
7873
+ width: 100%;
7874
+ font-size: 17px;
7875
+ font-family: PingFang SC;
7876
+ font-weight: 400;
7877
+ color: #333;
7878
+ border: none;
7879
+ outline: none;
7880
+ background: transparent;
7881
+ }
7882
+
7883
+ .bar-messwin .mess-input input::-webkit-input-placeholder {
7884
+ color: #999;
7885
+ }
7886
+
7887
+ .bar-messwin .mess-input input::-ms-input-placeholder {
7888
+ color: #999;
7889
+ }
7890
+
7891
+ .bar-messwin .mess-input input::placeholder {
7892
+ color: #999;
7893
+ }
7894
+
7895
+ .bar-messwin .mess-textarea {
7896
+ width: 267px;
7897
+ height: 85px;
7898
+ background: #fff;
7899
+ border-radius: 9px;
7900
+ border: 1px solid rgba(237,85,102,0.4);
7901
+ display: flex;
7902
+ padding: 9px 13px;
7903
+ justify-content: space-between;
7904
+ margin-top: 12px;
7905
+ position: relative;
7906
+ }
7907
+
7908
+ .bar-messwin .mess-textarea textarea {
7909
+ width: 203px;
7910
+ height: 68px;
7911
+ font-size: 17px;
7912
+ resize: none;
7913
+ outline: none;
7914
+ border: none;
7915
+ background: transparent;
7916
+ color: #333;
7917
+ font-family: PingFang SC;
7918
+ }
7919
+
7920
+ .bar-messwin .mess-textarea textarea::-webkit-input-placeholder {
7921
+ color: #999;
7922
+ }
7923
+
7924
+ .bar-messwin .mess-textarea textarea::-ms-input-placeholder {
7925
+ color: #999;
7926
+ }
7927
+
7928
+ .bar-messwin .mess-textarea textarea::placeholder {
7929
+ color: #999;
7930
+ }
7931
+
7932
+ .bar-messwin .mess-textarea img {
7933
+ width: 26px;
7934
+ height: 26px;
7935
+ cursor: pointer;
7936
+ }
7937
+
7938
+ .bar-messwin .mess-textarea .wish-dropdown {
7939
+ position: absolute;
7940
+ top: 43px;
7941
+ right: 0;
7942
+ width: 267px;
7943
+ background: #fff;
7944
+ border-radius: 9px;
7945
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
7946
+ z-index: 10;
7947
+ max-height: 213px;
7948
+ overflow-y: auto;
7949
+ border: 1px solid rgba(237,85,102,0.2);
7950
+ padding: 0 13px;
7951
+ }
7952
+
7953
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar {
7954
+ width: 3px;
7955
+ background-color: transparent;
7956
+ display: block;
7957
+ }
7958
+
7959
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-thumb {
7960
+ background-color: #ccc;
7961
+ border-radius: 9px;
7962
+ min-height: 32px;
7963
+ }
7964
+
7965
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-track {
7966
+ background-color: transparent;
7967
+ border-radius: 3px;
7968
+ margin: 4px 0;
7969
+ }
7970
+
7971
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item {
7972
+ padding: 11px 0;
7973
+ display: flex;
7974
+ align-items: flex-start;
7975
+ cursor: pointer;
7976
+ transition: background-color 0.2s;
7977
+ border-bottom: 1px solid rgba(0,0,0,0.05);
7978
+ }
7979
+
7980
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item:last-child {
7981
+ border-bottom: none;
7982
+ }
7983
+
7984
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-dot {
7985
+ color: #ff4874;
7986
+ margin-right: 5px;
7987
+ font-size: 11px;
7988
+ line-height: 21px;
7989
+ }
7990
+
7991
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-text {
7992
+ font-size: 15px;
7993
+ color: #333;
7994
+ line-height: 21px;
7995
+ text-align: left;
7996
+ }
7997
+
7998
+ .bar-messwin .bar-m-sub {
7999
+ width: 267px;
8000
+ height: 43px;
8001
+ background: linear-gradient(270deg,#ff4874,#ff9061);
8002
+ border-radius: 68px;
8003
+ font-size: 17px;
8004
+ font-family: PingFang SC;
8005
+ font-weight: 400;
8006
+ color: #fff;
8007
+ margin-top: 26px;
8008
+ border: none;
8009
+ outline: none;
8010
+ cursor: pointer;
8011
+ display: flex;
8012
+ align-items: center;
8013
+ justify-content: center;
8014
+ }
8015
+
8016
+ .bar-messwin .icon-cuowu2, .give-gift .icon-cuowu2 {
8017
+ position: absolute;
8018
+ bottom: -60px;
8019
+ right: 50%;
8020
+ transform: translateX(50%);
8021
+ font-size: 28px;
8022
+ color: #fff;
8023
+ cursor: pointer;
8024
+ }
8025
+
8026
+ /* 提示弹窗样式 */
8027
+ .mint-msgbox-wrapper {
8028
+ position: fixed;
8029
+ top: 0;
8030
+ left: 0;
8031
+ right: 0;
8032
+ bottom: 0;
8033
+ background-color: rgba(0,0,0,0.5);
8034
+ z-index: 2005;
8035
+ display: flex;
8036
+ justify-content: center;
8037
+ align-items: center;
8038
+ }
8039
+
8040
+ .mint-msgbox {
8041
+ position: relative;
8042
+ background-color: #fff;
8043
+ width: 85%;
8044
+ border-radius: 3px;
8045
+ font-size: 17px;
8046
+ overflow: hidden;
8047
+ }
8048
+
8049
+ .mint-msgbox-header {
8050
+ padding: 16px 0 0;
8051
+ }
8052
+
8053
+ .mint-msgbox-content {
8054
+ padding: 11px 21px 16px;
8055
+ border-bottom: 1px solid #ddd;
8056
+ min-height: 38px;
8057
+ position: relative;
8058
+ }
8059
+
8060
+ .mint-msgbox-title {
8061
+ text-align: center;
8062
+ padding-left: 0;
8063
+ margin-bottom: 0;
8064
+ font-size: 17px;
8065
+ font-weight: 700;
8066
+ color: #333;
8067
+ }
8068
+
8069
+ .mint-msgbox-message {
8070
+ color: #999;
8071
+ margin: 0;
8072
+ text-align: center;
8073
+ line-height: 38px;
8074
+ }
8075
+
8076
+ .mint-msgbox-btns {
8077
+ display: flex;
8078
+ height: 43px;
8079
+ line-height: 43px;
8080
+ }
8081
+
8082
+ .mint-msgbox-btn {
8083
+ line-height: 37px;
8084
+ display: block;
8085
+ background-color: #fff;
8086
+ flex: 1;
8087
+ margin: 0;
8088
+ border: 0;
8089
+ }
8090
+
8091
+ .mint-msgbox-confirm {
8092
+ color: #26a2ff;
8093
+ width: 100%;
8094
+ }
8095
+ /* 右侧按钮区域样式 */
8096
+ #toolbarNew .toolbar .bar-right {
8097
+ margin-left: 7px;
8098
+ font-size: 0;
8099
+ display: flex;
8100
+ align-items: center;
8101
+ }
8102
+
8103
+ #toolbarNew .toolbar .bar-right.move-left {
8104
+ right: 64px;
8105
+ }
8106
+
8107
+ #toolbarNew .toolbar .bar-right .bar-r-com,
8108
+ #toolbarNew .toolbar .bar-right>img {
8109
+ display: inline-block;
8110
+ vertical-align: middle;
8111
+ }
8112
+
8113
+ #toolbarNew .toolbar .bar-right .bar-r-com {
8114
+ margin-left: 8px;
8115
+ cursor: pointer;
8116
+ }
8117
+
8118
+ #toolbarNew .toolbar .bar-right .bar-r-com.bar-r-gift {
8119
+ width: 36px;
8120
+ height: 36px;
8121
+ transform-origin: center bottom;
8122
+ animation: giftJump 3s ease infinite;
8123
+ }
8124
+
8125
+ @keyframes giftJump {
8126
+ 0%, 24%, 48%, to {
8127
+ transform: translateZ(0);
8232
8128
  }
8233
-
8234
- 48% {
8235
- -webkit-transform: rotate(-2deg);
8236
- -webkit-transform-origin: 40% 0
8129
+ 12% {
8130
+ transform: translate3d(0, -10px, 0);
8237
8131
  }
8238
-
8239
- to {
8240
- -webkit-transform: rotate(4deg);
8241
- -webkit-transform-origin: 40% 0
8132
+ 36% {
8133
+ transform: translate3d(0, -10px, 0);
8242
8134
  }
8243
- }
8244
-
8245
- @-webkit-keyframes flipInX {
8135
+ }
8136
+
8137
+ #toolbarNew .toolbar .bar-right .bar-r-com:first-child {
8138
+ margin-left: 0;
8139
+ }
8140
+
8141
+ #toolbarNew .toolbar .bar-right>img {
8142
+ position: relative;
8143
+ z-index: 1;
8144
+ width: 26px;
8145
+ height: 26px;
8146
+ }
8147
+
8148
+ #toolbarNew .toolbar .bar-right .bar-heart {
8149
+ position: relative;
8150
+ width: 36px;
8151
+ height: 36px;
8152
+ text-align: center;
8153
+ }
8154
+
8155
+ #toolbarNew .toolbar .bar-right .bar-heart .bar-praise {
8156
+ position: absolute;
8157
+ max-width: 36px;
8158
+ height: 15px;
8159
+ line-height: 15px;
8160
+ right: 0;
8161
+ top: 0;
8162
+ z-index: 3;
8163
+ font-size: 10px;
8164
+ color: #fff;
8165
+ border-radius: 6px;
8166
+ padding: 0 4px;
8167
+ box-sizing: border-box;
8168
+ white-space: nowrap;
8169
+ background-color: #f38200;
8170
+ transform: translateX(40%);
8171
+ }
8172
+
8173
+ #toolbarNew .toolbar .bar-right .bar-zan {
8174
+ position: relative;
8175
+ z-index: 2;
8176
+ height: 33px;
8177
+ width: 33px;
8178
+ box-sizing: border-box;
8179
+ }
8180
+
8181
+ #toolbarNew .toolbar .bar-right .bar-zan .ani-num {
8182
+ position: absolute;
8183
+ top: 0;
8184
+ left: 10px;
8185
+ opacity: 0;
8186
+ font-size: 15px;
8187
+ color: #f07a87;
8188
+ }
8189
+
8190
+ #toolbarNew .toolbar .bar-right .bar-zan .stop-longtap {
8191
+ position: absolute;
8192
+ left: 0;
8193
+ right: 0;
8194
+ bottom: 0;
8195
+ top: 0;
8196
+ z-index: 1;
8197
+ }
8198
+
8199
+ #toolbarNew .toolbar .bar-right .bar-zan img {
8200
+ width: 36px;
8201
+ height: 36px;
8202
+ }
8203
+
8204
+ #toolbarNew .toolbar .bar-right .bar-zan.active .ani-num {
8205
+ z-index: 2;
8206
+ animation: praise 1.2s;
8207
+ animation-fill-mode: both;
8208
+ }
8209
+
8210
+ @keyframes praise {
8246
8211
  0% {
8247
- -webkit-transform: rotateX(0deg);
8248
- transform: rotateX(0deg)
8212
+ opacity: 1;
8249
8213
  }
8250
-
8251
8214
  50% {
8252
- -webkit-transform: rotateX(90deg);
8253
- transform: rotateX(90deg)
8215
+ opacity: 1;
8216
+ transform: translate3d(0, -35px, 0);
8254
8217
  }
8255
-
8256
8218
  to {
8257
- -webkit-transform: rotateX(1);
8258
- transform: rotateX(1)
8219
+ opacity: 0;
8220
+ transform: translate3d(0, -35px, 0);
8259
8221
  }
8260
- }
8261
-
8262
- @keyframes flipInX {
8222
+ }
8223
+
8224
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap {
8225
+ transform: scale(0.85);
8226
+ }
8227
+
8228
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:first-of-type {
8229
+ animation: jump .6s ease-out;
8230
+ }
8231
+
8232
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(2) {
8233
+ animation: jump2 .6s ease-out;
8234
+ }
8235
+
8236
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(3) {
8237
+ animation: jump3 .6s ease-out;
8238
+ }
8239
+
8240
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(4) {
8241
+ animation: jump4 .6s ease-out;
8242
+ }
8243
+
8244
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(5) {
8245
+ animation: jump5 .6s ease-out;
8246
+ }
8247
+
8248
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(6) {
8249
+ animation: jump6 .6s ease-out;
8250
+ }
8251
+
8252
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(7) {
8253
+ animation: jump7 .6s ease-out;
8254
+ }
8255
+
8256
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(8) {
8257
+ animation: jump8 .6s ease-out;
8258
+ }
8259
+
8260
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap {
8261
+ position: absolute;
8262
+ left: 0;
8263
+ top: 0;
8264
+ right: 0;
8265
+ bottom: 0;
8266
+ pointer-events: none;
8267
+ overflow: visible;
8268
+ }
8269
+
8270
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span {
8271
+ position: absolute;
8272
+ width: 6px;
8273
+ height: 6px;
8274
+ border-radius: 50%;
8275
+ opacity: 0;
8276
+ }
8277
+
8278
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:first-of-type {
8279
+ left: 50%;
8280
+ top: -8px;
8281
+ transform: translate3d(-50%, 0, 0);
8282
+ background-color: #b3e5c8;
8283
+ }
8284
+
8285
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(2) {
8286
+ left: -8px;
8287
+ top: 50%;
8288
+ transform: translate3d(0, -50%, 0);
8289
+ background-color: #f4ba31;
8290
+ }
8291
+
8292
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(3) {
8293
+ left: 50%;
8294
+ bottom: -8px;
8295
+ transform: translate3d(-50%, 0, 0);
8296
+ background-color: #339fef;
8297
+ }
8298
+
8299
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(4) {
8300
+ top: 50%;
8301
+ right: -8px;
8302
+ transform: translate3d(0, -50%, 0);
8303
+ background-color: #e2264d;
8304
+ }
8305
+
8306
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(5) {
8307
+ left: -5px;
8308
+ top: 0;
8309
+ transform: translate3d(0, -50%, 0);
8310
+ background-color: #a08880;
8311
+ }
8312
+
8313
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(6) {
8314
+ left: -5px;
8315
+ bottom: 0;
8316
+ transform: translate3d(0, 50%, 0);
8317
+ background-color: #43c1b5;
8318
+ }
8319
+
8320
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(7) {
8321
+ right: -5px;
8322
+ bottom: 0;
8323
+ transform: translate3d(0, 50%, 0);
8324
+ background-color: #f5be3b;
8325
+ }
8326
+
8327
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(8) {
8328
+ right: -5px;
8329
+ top: 0;
8330
+ transform: translate3d(0, -50%, 0);
8331
+ background-color: coral;
8332
+ }
8333
+
8334
+ @keyframes jump {
8263
8335
  0% {
8264
- -webkit-transform: rotateX(0deg);
8265
- transform: rotateX(0deg)
8336
+ opacity: 1;
8337
+ transform: translate3d(-50%, 0, 0) scale(1);
8266
8338
  }
8267
-
8268
- 50% {
8269
- -webkit-transform: rotateX(90deg);
8270
- transform: rotateX(90deg)
8339
+ 40% {
8340
+ transform: translate3d(-50%, -100%, 0) scale(0.7);
8271
8341
  }
8272
-
8273
8342
  to {
8274
- -webkit-transform: rotateX(1);
8275
- transform: rotateX(1)
8343
+ opacity: 1;
8344
+ transform: translate3d(-50%, -150%, 0) scale(0);
8276
8345
  }
8277
- }
8278
-
8279
- @-webkit-keyframes flipInY {
8346
+ }
8347
+
8348
+ @keyframes jump2 {
8280
8349
  0% {
8281
- -webkit-transform: rotateY(0deg);
8282
- transform: rotateY(0deg)
8350
+ opacity: 1;
8351
+ transform: translate3d(0, -50%, 0) scale(1);
8283
8352
  }
8284
-
8285
- 50% {
8286
- -webkit-transform: rotateY(90deg);
8287
- transform: rotateY(90deg)
8353
+ 40% {
8354
+ transform: translate3d(-100%, -50%, 0) scale(0.7);
8288
8355
  }
8289
-
8290
8356
  to {
8291
- -webkit-transform: rotateY(1);
8292
- transform: rotateY(1)
8357
+ opacity: 1;
8358
+ transform: translate3d(-150%, -50%, 0) scale(0);
8293
8359
  }
8294
- }
8295
-
8296
- @keyframes flipInY {
8360
+ }
8361
+
8362
+ @keyframes jump3 {
8297
8363
  0% {
8298
- -webkit-transform: rotateY(0deg);
8299
- transform: rotateY(0deg)
8364
+ opacity: 1;
8365
+ transform: translate3d(-50%, 0, 0) scale(1);
8300
8366
  }
8301
-
8302
- 50% {
8303
- -webkit-transform: rotateY(90deg);
8304
- transform: rotateY(90deg)
8367
+ 40% {
8368
+ transform: translate3d(-50%, 100%, 0) scale(0.7);
8305
8369
  }
8306
-
8307
8370
  to {
8308
- -webkit-transform: rotateY(1);
8309
- transform: rotateY(1)
8371
+ opacity: 1;
8372
+ transform: translate3d(-50%, 150%, 0) scale(0);
8310
8373
  }
8311
- }
8312
-
8313
- .p-upSlide {
8314
- -webkit-animation: upSlide .7s ease both;
8315
- animation: upSlide .7s ease both
8316
- }
8317
-
8318
- @-webkit-keyframes upSlide {
8374
+ }
8375
+
8376
+ @keyframes jump4 {
8319
8377
  0% {
8320
- -webkit-transform: translateY(-100%);
8321
- transform: translateY(-100%)
8322
- }
8323
-
8324
- to {
8325
- -webkit-transform: translateY(0);
8326
- transform: translateY(0)
8378
+ opacity: 1;
8379
+ transform: translate3d(0, -50%, 0) scale(1);
8327
8380
  }
8328
- }
8329
-
8330
- @keyframes upSlide {
8331
- 0% {
8332
- -webkit-transform: translateY(-100%);
8333
- transform: translateY(-100%)
8381
+ 40% {
8382
+ transform: translate3d(100%, -50%, 0) scale(0.7);
8334
8383
  }
8335
-
8336
8384
  to {
8337
- -webkit-transform: translateY(0);
8338
- transform: translateY(0)
8385
+ opacity: 1;
8386
+ transform: translate3d(150%, -50%, 0) scale(0);
8339
8387
  }
8340
- }
8341
-
8342
- .p-downSlide {
8343
- -webkit-animation: downSlide .7s ease both;
8344
- animation: downSlide .7s ease both
8345
- }
8346
-
8347
- @-webkit-keyframes downSlide {
8388
+ }
8389
+
8390
+ @keyframes jump5 {
8348
8391
  0% {
8349
- -webkit-transform: translateY(100%);
8350
- transform: translateY(100%)
8351
- }
8352
-
8353
- to {
8354
- -webkit-transform: translateY(0);
8355
- transform: translateY(0)
8392
+ opacity: 1;
8393
+ transform: translate3d(0, -50%, 0) scale(1);
8356
8394
  }
8357
- }
8358
-
8359
- @keyframes downSlide {
8360
- 0% {
8361
- -webkit-transform: translateY(100%);
8362
- transform: translateY(100%)
8395
+ 40% {
8396
+ transform: translate3d(-80%, -80%, 0) scale(0.7);
8363
8397
  }
8364
-
8365
8398
  to {
8366
- -webkit-transform: translateY(0);
8367
- transform: translateY(0)
8399
+ opacity: 1;
8400
+ transform: translate3d(-130%, -130%, 0) scale(0);
8368
8401
  }
8369
- }
8370
-
8371
- .p-leftSlide {
8372
- -webkit-animation: leftSlide .7s ease both;
8373
- animation: leftSlide .7s ease both
8374
- }
8375
-
8376
- @-webkit-keyframes leftSlide {
8402
+ }
8403
+
8404
+ @keyframes jump6 {
8377
8405
  0% {
8378
- -webkit-transform: translateX(-100%);
8379
- transform: translateX(-100%)
8380
- }
8381
-
8382
- to {
8383
- -webkit-transform: translateX(0);
8384
- transform: translateX(0)
8406
+ opacity: 1;
8407
+ transform: translate3d(0, 50%, 0) scale(1);
8385
8408
  }
8386
- }
8387
-
8388
- @keyframes leftSlide {
8389
- 0% {
8390
- -webkit-transform: translateX(-100%);
8391
- transform: translateX(-100%)
8409
+ 40% {
8410
+ transform: translate3d(-80%, 80%, 0) scale(0.7);
8392
8411
  }
8393
-
8394
8412
  to {
8395
- -webkit-transform: translateX(0);
8396
- transform: translateX(0)
8413
+ opacity: 1;
8414
+ transform: translate3d(-130%, 130%, 0) scale(0);
8397
8415
  }
8398
- }
8399
-
8400
- .p-rightSlide {
8401
- -webkit-animation: rightSlide .7s ease both;
8402
- animation: rightSlide .7s ease both
8403
- }
8404
-
8405
- @-webkit-keyframes rightSlide {
8416
+ }
8417
+
8418
+ @keyframes jump7 {
8406
8419
  0% {
8407
- -webkit-transform: translateX(100%);
8408
- transform: translateX(100%)
8420
+ opacity: 1;
8421
+ transform: translate3d(0, 50%, 0) scale(1);
8422
+ }
8423
+ 40% {
8424
+ transform: translate3d(80%, 80%, 0) scale(0.7);
8409
8425
  }
8410
-
8411
8426
  to {
8412
- -webkit-transform: translateX(0);
8413
- transform: translateX(0)
8427
+ opacity: 1;
8428
+ transform: translate3d(130%, 130%, 0) scale(0);
8414
8429
  }
8415
- }
8416
-
8417
- @keyframes rightSlide {
8430
+ }
8431
+
8432
+ @keyframes jump8 {
8418
8433
  0% {
8419
- -webkit-transform: translateX(100%);
8420
- transform: translateX(100%)
8434
+ opacity: 1;
8435
+ transform: translate3d(0, 50%, 0) scale(1);
8436
+ }
8437
+ 40% {
8438
+ transform: translate3d(80%, -80%, 0) scale(0.7);
8421
8439
  }
8422
-
8423
8440
  to {
8424
- -webkit-transform: translateX(0);
8425
- transform: translateX(0)
8441
+ opacity: 1;
8442
+ transform: translate3d(130%, -130%, 0) scale(0);
8426
8443
  }
8427
- }
8428
- /* .ele-form {
8429
- position: absolute;
8430
- user-select: none;
8431
- } */
8444
+ }
8432
8445
 
8433
- .f-select {
8446
+ /* 礼物弹窗样式 */
8447
+ .give-gift {
8448
+ position: fixed;
8449
+ top: 50%;
8450
+ left: 50%;
8451
+ transform: translate(-50%, -50%);
8452
+ z-index: 2004;
8453
+ background: white;
8454
+ padding: 20px;
8455
+ border-radius: 10px;
8456
+ text-align: center;
8457
+ }
8458
+
8459
+ .give-gift .back {
8460
+ position: absolute;
8461
+ top: 10px;
8462
+ left: 10px;
8434
8463
  cursor: pointer;
8435
8464
  }
8436
8465
 
8437
- .ani-wrap {
8466
+ .give-gift img {
8467
+ max-width: 300px;
8468
+ max-height: 300px;
8469
+ margin-top: 20px;
8470
+ }
8471
+
8472
+ /* 留言成功弹窗样式 */
8473
+ .mess-success-popup {
8474
+ position: fixed;
8475
+ top: 0;
8476
+ left: 0;
8477
+ right: 0;
8478
+ bottom: 0;
8479
+ background-color: rgba(0, 0, 0, 0.5);
8480
+ z-index: 2003;
8481
+ display: flex;
8482
+ justify-content: center;
8483
+ align-items: center;
8484
+ }
8485
+
8486
+ .mess-success-popup .gift-popup {
8487
+ width: 300px;
8488
+ height: 200px;
8489
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
8490
+ border-radius: 10px;
8491
+ padding: 20px;
8492
+ text-align: center;
8438
8493
  position: relative;
8439
8494
  }
8440
8495
 
8441
- .f-select .ani-wrap .fs-tit {
8442
- position: relative;
8496
+ .mess-success-popup .gift-popup .icon-cuowu2 {
8497
+ position: absolute;
8498
+ top: 10px;
8499
+ right: 10px;
8500
+ cursor: pointer;
8501
+ }
8502
+
8503
+ .mess-success-popup .gift-popup .toast {
8443
8504
  display: flex;
8444
- padding: 0 5px;
8445
- height: 35px;
8446
- line-height: 35px;
8447
8505
  align-items: center;
8506
+ justify-content: center;
8507
+ margin: 10px 0;
8448
8508
  }
8449
8509
 
8450
- .require {
8451
- padding: 0 5px 0 0;
8452
- color: red;
8453
- vertical-align: middle;
8510
+ .mess-success-popup .gift-popup .toast img {
8511
+ width: 20px;
8512
+ height: 15px;
8513
+ margin: 0 5px;
8454
8514
  }
8455
8515
 
8456
- .fs-cont {
8457
- padding-right: 15px;
8458
- white-space: nowrap;
8459
- overflow: hidden;
8460
- text-overflow: ellipsis;
8461
- flex-grow: 1;
8516
+ .mess-success-popup .gift-popup .title {
8517
+ margin: 15px 0;
8518
+ font-size: 16px;
8519
+ color: #333;
8462
8520
  }
8463
8521
 
8464
- .icon-bofang1 {
8465
- font-size: 12px;
8466
- transition: transform 0.2s ease;
8522
+ .mess-success-popup .gift-popup .btn {
8523
+ background: linear-gradient(270deg, #ff4874, #ff9061);
8524
+ color: white;
8525
+ border: none;
8526
+ padding: 10px 20px;
8527
+ border-radius: 20px;
8528
+ margin-top: 15px;
8529
+ cursor: pointer;
8467
8530
  }
8468
8531
 
8469
- .rotate-180 {
8470
- transform: rotate(180deg) !important;
8532
+ /* 新增图片加载动画样式 */
8533
+ .gift-image-container {
8534
+ position: relative;
8535
+ width: 300px;
8536
+ height: 300px;
8537
+ margin: 20px 0;
8538
+ overflow: hidden;
8471
8539
  }
8472
8540
 
8473
- .f-real {
8474
- position: absolute;
8475
- left: 0;
8476
- top: 0;
8541
+ .gift-image-container img {
8477
8542
  width: 100%;
8478
8543
  height: 100%;
8479
- z-index: 1;
8544
+ object-fit: contain;
8480
8545
  opacity: 0;
8481
- cursor: pointer;
8482
- }
8483
-
8484
- .dropdown-menu {
8485
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
8486
- }
8487
-
8488
- .dropdown-item {
8489
- padding: 8px 10px;
8490
- cursor: pointer;
8491
- transition: background-color 0.2s;
8492
- }
8493
-
8494
- .dropdown-item:hover {
8495
- background-color: #f5f5f5;
8546
+ transition: opacity 0.5s ease-in-out;
8496
8547
  }
8497
8548
 
8498
- .dropdown-item.selected {
8499
- background-color: #e6f7ff;
8500
- color: #1890ff;
8549
+ .gift-image-container img.loaded {
8550
+ opacity: 1;
8501
8551
  }
8502
8552
 
8503
- .f-select .fs-tit .icon-bofang1 {
8504
- position: absolute;
8505
- right: 10px;
8506
- font-size: 12px;
8507
- display: inline-block;
8508
- transform: rotate(90deg);
8553
+ .image-loading {
8554
+ position: absolute;
8555
+ top: 0;
8556
+ left: 0;
8557
+ width: 100%;
8558
+ height: 100%;
8559
+ display: flex;
8560
+ justify-content: center;
8561
+ align-items: center;
8562
+ background: rgba(255, 255, 255, 0.8);
8509
8563
  }
8510
8564
 
8511
- .icon-bofang1:before {
8512
- content: "\E6CF";
8565
+ .loading-spinner {
8566
+ width: 40px;
8567
+ height: 40px;
8568
+ border: 4px solid #f3f3f3;
8569
+ border-top: 4px solid #ed5566;
8570
+ border-radius: 50%;
8571
+ animation: spin 1s linear infinite;
8513
8572
  }
8514
8573
 
8515
- .has-error {
8516
- border-color: #ff4d4f !important;
8574
+ @keyframes spin {
8575
+ 0% { transform: rotate(0deg); }
8576
+ 100% { transform: rotate(360deg); }
8517
8577
  }
8518
8578
 
8519
- .error-tip {
8520
- position: fixed;
8521
- left: 0;
8522
- top: 0;
8523
- width: 100%;
8524
- height: 100%;
8525
- z-index: 1000;
8526
- }.form-submit {
8579
+ .form-submit {
8527
8580
  cursor: pointer;
8528
8581
  transition: all 0.2s;
8529
8582
  outline: none;
@@ -8569,145 +8622,101 @@ transform: none !important;
8569
8622
  .form-submit:disabled {
8570
8623
  opacity: 0.7;
8571
8624
  cursor: not-allowed;
8572
- }
8573
- .ele-lottie .ele-lotwrap {
8574
- overflow: hidden;
8575
- }.form-input {
8625
+ }/* .ele-form {
8576
8626
  position: absolute;
8627
+ user-select: none;
8628
+ }
8629
+ */
8630
+ .f-single {
8631
+ cursor: pointer;
8577
8632
  }
8578
8633
 
8579
- .input-wrapper {
8634
+ .ani-wrap {
8635
+ position: relative;
8636
+ }
8637
+
8638
+ .f-single .ani-wrap .fs-tit {
8580
8639
  display: flex;
8640
+ padding: 0 5px;
8641
+ height: 40px;
8581
8642
  align-items: center;
8582
- width: 100%;
8583
- height: 100%;
8584
- padding: 0 10px;
8585
- box-sizing: border-box;
8586
- position: relative;
8587
- transition: border-color 0.3s;
8643
+ white-space: nowrap;
8644
+ overflow: hidden;
8645
+ text-overflow: ellipsis;
8646
+ border-bottom: 1px solid rgba(153, 153, 153, 1);
8588
8647
  }
8589
8648
 
8590
- .required-marker {
8591
- font-size: 12px;
8649
+ .require {
8592
8650
  padding: 0 5px 0 0;
8593
8651
  color: red;
8594
8652
  vertical-align: middle;
8595
8653
  }
8596
8654
 
8597
- input {
8598
- flex: 1;
8599
- border: none;
8600
- outline: none;
8601
- background: transparent;
8602
- height: 100%;
8603
- padding: 0;
8655
+ .f-single ul {
8656
+ padding: 15px;
8604
8657
  margin: 0;
8658
+ list-style: none;
8605
8659
  }
8606
- /*
8607
- input::placeholder {
8608
- color: #ccc;
8609
- opacity: 1;
8610
- } */
8611
8660
 
8612
- .dynamic-placeholder-input::placeholder {
8613
- color: var(--placeholder-color, #999);
8614
- opacity: 1;
8615
- }
8616
- .dynamic-placeholder-input::-webkit-input-placeholder {
8617
- color: var(--placeholder-color, #999);
8618
- }
8619
- .dynamic-placeholder-input::-moz-placeholder {
8620
- color: var(--placeholder-color, #999);
8621
- opacity: 1;
8622
- }
8623
- .dynamic-placeholder-input:-ms-input-placeholder {
8624
- color: var(--placeholder-color, #999);
8625
- }/* .ele-form {
8626
- position: absolute;
8627
- user-select: none;
8628
- } */
8629
-
8630
- .f-multiple {
8631
- cursor: pointer;
8632
- }
8633
-
8634
- .ani-wrap {
8635
- position: relative;
8636
- }
8637
-
8638
- .f-multiple .ani-wrap .fs-tit {
8639
- display: flex;
8640
- padding: 0 5px;
8641
- height: 40px;
8642
- align-items: center;
8643
- white-space: nowrap;
8644
- overflow: hidden;
8645
- text-overflow: ellipsis;
8646
- border-bottom: 1px solid rgba(153, 153, 153, 1);
8647
- }
8648
-
8649
- .require {
8650
- padding: 0 5px 0 0;
8651
- color: red;
8652
- vertical-align: middle;
8653
- }
8654
-
8655
- .f-multiple ul {
8656
- padding: 15px;
8657
- margin: 0;
8658
- list-style: none;
8659
- }
8660
-
8661
- .f-multiple ul li {
8662
- margin-top: 12px;
8663
- font-size: 0;
8664
- display: flex;
8665
- align-items: center;
8666
- cursor: pointer;
8667
- }
8668
-
8669
- .f-multiple ul li:first-child {
8670
- margin-top: 0;
8671
- }
8672
-
8673
- .fs-circle {
8674
- display: inline-block;
8675
- width: 16px;
8676
- height: 16px;
8677
- border-radius: 50%;
8678
- position: relative;
8679
- transition: all 0.2s;
8680
- }
8681
-
8682
- .fs-circle.selected {
8683
- background-color: #2687f1;
8684
- border-color: #2687f1 !important;
8685
- }
8686
-
8687
- .fs-circle.selected::after {
8688
- content: "";
8689
- position: absolute;
8690
- top: 3px;
8691
- left: 3px;
8692
- width: 8px;
8693
- height: 8px;
8694
- border-radius: 50%;
8695
- background-color: white;
8696
- }
8697
-
8698
- .fs-txt {
8699
- display: inline-block;
8700
- width: calc(100% - 16px);
8701
- padding-left: 8px;
8702
- vertical-align: top;
8703
- word-break: break-all;
8704
- font-size: 14px;
8705
- line-height: 1.2;
8706
- }
8707
-
8708
- .has-error .fs-tit {
8709
- border-bottom-color: #ff4d4f;
8710
- }
8661
+ .f-single ul li {
8662
+ display: flex;
8663
+ align-items: center;
8664
+ margin-top: 12px;
8665
+ font-size: 0;
8666
+ }
8667
+
8668
+ .f-single ul li:first-child {
8669
+ margin-top: 0;
8670
+ }
8671
+
8672
+ .fs-circle {
8673
+ display: inline-block;
8674
+ width: 16px;
8675
+ height: 16px;
8676
+ border-radius: 50%;
8677
+ position: relative;
8678
+ transition: all 0.2s;
8679
+ }
8680
+
8681
+ .fs-circle.selected {
8682
+ background-color: #2687f1;
8683
+ border-color: #2687f1 !important;
8684
+ }
8685
+
8686
+ .fs-circle.selected::after {
8687
+ content: "";
8688
+ position: absolute;
8689
+ top: 3px;
8690
+ left: 3px;
8691
+ width: 8px;
8692
+ height: 8px;
8693
+ border-radius: 50%;
8694
+ background-color: white;
8695
+ }
8696
+
8697
+ .fs-txt {
8698
+ display: inline-block;
8699
+ width: calc(100% - 16px);
8700
+ padding-left: 8px;
8701
+ vertical-align: top;
8702
+ word-break: break-all;
8703
+ font-size: 14px;
8704
+ line-height: 1.2;
8705
+ }
8706
+
8707
+ .has-error .fs-tit {
8708
+ border-bottom-color: #ff4d4f;
8709
+ }
8710
+
8711
+ /* 错误提示样式 */
8712
+ .error-tip {
8713
+ position: fixed;
8714
+ left: 0;
8715
+ top: 0;
8716
+ width: 100%;
8717
+ height: 100%;
8718
+ z-index: 1000;
8719
+ }
8711
8720
  .icon-guanbi:before {
8712
8721
  content: "\E676";
8713
8722
  }
@@ -9102,100 +9111,91 @@ cursor: not-allowed;
9102
9111
  color: #F44336; /* 失败的红色 */
9103
9112
  }
9104
9113
  /* .ele-form {
9105
- position: absolute;
9106
- user-select: none;
9107
- }
9108
- */
9109
- .f-single {
9110
- cursor: pointer;
9111
- }
9112
-
9113
- .ani-wrap {
9114
- position: relative;
9115
- }
9116
-
9117
- .f-single .ani-wrap .fs-tit {
9118
- display: flex;
9119
- padding: 0 5px;
9120
- height: 40px;
9121
- align-items: center;
9122
- white-space: nowrap;
9123
- overflow: hidden;
9124
- text-overflow: ellipsis;
9125
- border-bottom: 1px solid rgba(153, 153, 153, 1);
9126
- }
9127
-
9128
- .require {
9129
- padding: 0 5px 0 0;
9130
- color: red;
9131
- vertical-align: middle;
9132
- }
9133
-
9134
- .f-single ul {
9135
- padding: 15px;
9136
- margin: 0;
9137
- list-style: none;
9138
- }
9139
-
9140
- .f-single ul li {
9141
- display: flex;
9142
- align-items: center;
9143
- margin-top: 12px;
9144
- font-size: 0;
9145
- }
9146
-
9147
- .f-single ul li:first-child {
9148
- margin-top: 0;
9149
- }
9150
-
9151
- .fs-circle {
9152
- display: inline-block;
9153
- width: 16px;
9154
- height: 16px;
9155
- border-radius: 50%;
9156
- position: relative;
9157
- transition: all 0.2s;
9158
- }
9159
-
9160
- .fs-circle.selected {
9161
- background-color: #2687f1;
9162
- border-color: #2687f1 !important;
9163
- }
9164
-
9165
- .fs-circle.selected::after {
9166
- content: "";
9167
- position: absolute;
9168
- top: 3px;
9169
- left: 3px;
9170
- width: 8px;
9171
- height: 8px;
9172
- border-radius: 50%;
9173
- background-color: white;
9174
- }
9175
-
9176
- .fs-txt {
9177
- display: inline-block;
9178
- width: calc(100% - 16px);
9179
- padding-left: 8px;
9180
- vertical-align: top;
9181
- word-break: break-all;
9182
- font-size: 14px;
9183
- line-height: 1.2;
9184
- }
9185
-
9186
- .has-error .fs-tit {
9187
- border-bottom-color: #ff4d4f;
9188
- }
9189
-
9190
- /* 错误提示样式 */
9191
- .error-tip {
9192
- position: fixed;
9193
- left: 0;
9194
- top: 0;
9195
- width: 100%;
9196
- height: 100%;
9197
- z-index: 1000;
9198
- }
9114
+ position: absolute;
9115
+ user-select: none;
9116
+ } */
9117
+
9118
+ .f-multiple {
9119
+ cursor: pointer;
9120
+ }
9121
+
9122
+ .ani-wrap {
9123
+ position: relative;
9124
+ }
9125
+
9126
+ .f-multiple .ani-wrap .fs-tit {
9127
+ display: flex;
9128
+ padding: 0 5px;
9129
+ height: 40px;
9130
+ align-items: center;
9131
+ white-space: nowrap;
9132
+ overflow: hidden;
9133
+ text-overflow: ellipsis;
9134
+ border-bottom: 1px solid rgba(153, 153, 153, 1);
9135
+ }
9136
+
9137
+ .require {
9138
+ padding: 0 5px 0 0;
9139
+ color: red;
9140
+ vertical-align: middle;
9141
+ }
9142
+
9143
+ .f-multiple ul {
9144
+ padding: 15px;
9145
+ margin: 0;
9146
+ list-style: none;
9147
+ }
9148
+
9149
+ .f-multiple ul li {
9150
+ margin-top: 12px;
9151
+ font-size: 0;
9152
+ display: flex;
9153
+ align-items: center;
9154
+ cursor: pointer;
9155
+ }
9156
+
9157
+ .f-multiple ul li:first-child {
9158
+ margin-top: 0;
9159
+ }
9160
+
9161
+ .fs-circle {
9162
+ display: inline-block;
9163
+ width: 16px;
9164
+ height: 16px;
9165
+ border-radius: 50%;
9166
+ position: relative;
9167
+ transition: all 0.2s;
9168
+ }
9169
+
9170
+ .fs-circle.selected {
9171
+ background-color: #2687f1;
9172
+ border-color: #2687f1 !important;
9173
+ }
9174
+
9175
+ .fs-circle.selected::after {
9176
+ content: "";
9177
+ position: absolute;
9178
+ top: 3px;
9179
+ left: 3px;
9180
+ width: 8px;
9181
+ height: 8px;
9182
+ border-radius: 50%;
9183
+ background-color: white;
9184
+ }
9185
+
9186
+ .fs-txt {
9187
+ display: inline-block;
9188
+ width: calc(100% - 16px);
9189
+ padding-left: 8px;
9190
+ vertical-align: top;
9191
+ word-break: break-all;
9192
+ font-size: 14px;
9193
+ line-height: 1.2;
9194
+ }
9195
+
9196
+ .has-error .fs-tit {
9197
+ border-bottom-color: #ff4d4f;
9198
+ }
9199
9199
  .global.video {
9200
9200
  width: 35px;
9201
9201
  height: 55px;
@@ -9210,7 +9210,7 @@ cursor: not-allowed;
9210
9210
  .global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
9211
9211
  }
9212
9212
 
9213
- .global.receipt {
9213
+ .global.map {
9214
9214
  width: 35px;
9215
9215
  height: 55px;
9216
9216
  border-radius: 50%;
@@ -9219,30 +9219,30 @@ cursor: not-allowed;
9219
9219
  border: 2px solid #fff;
9220
9220
  cursor: pointer;
9221
9221
  }
9222
- .icon-liuyan:before { content: "\E636"; }
9222
+ .icon-daohang1:before { content: "\E612"; }
9223
9223
  .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9224
- .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
9225
- .global.tel {
9224
+ .global.map > span { font-size: 10px; line-height: 20px; display: block;}
9225
+ .global.receipt {
9226
9226
  width: 35px;
9227
9227
  height: 55px;
9228
9228
  border-radius: 50%;
9229
9229
  text-align: center;
9230
- margin-bottom: 15px;
9230
+ margin-bottom: 5px;
9231
9231
  border: 2px solid #fff;
9232
9232
  cursor: pointer;
9233
9233
  }
9234
- .icon-dianhua:before { content: "\E60E"; }
9234
+ .icon-liuyan:before { content: "\E636"; }
9235
9235
  .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9236
- .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
9237
- .global.map {
9236
+ .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
9237
+ .global.tel {
9238
9238
  width: 35px;
9239
9239
  height: 55px;
9240
9240
  border-radius: 50%;
9241
9241
  text-align: center;
9242
- margin-bottom: 5px;
9242
+ margin-bottom: 15px;
9243
9243
  border: 2px solid #fff;
9244
9244
  cursor: pointer;
9245
9245
  }
9246
- .icon-daohang1:before { content: "\E612"; }
9246
+ .icon-dianhua:before { content: "\E60E"; }
9247
9247
  .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9248
- .global.map > span { font-size: 10px; line-height: 20px; display: block;}
9248
+ .global.tel > span { font-size: 10px; line-height: 20px; display: block;}