unika-components 1.1.153 → 1.1.155

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.
@@ -1,4 +1,13 @@
1
1
 
2
+ /* 添加百位数样式 */
3
+ .c-hundred {
4
+ display: flex;
5
+ align-items: center;
6
+ justify-content: center;
7
+ width: 30px; /* 根据需要调整 */
8
+ margin-right: 5px;
9
+ }
10
+
2
11
  .tip-overlay {
3
12
  position: fixed;
4
13
  top: 0;
@@ -57,15 +66,6 @@
57
66
  font-weight: 600;
58
67
  }
59
68
 
60
- /* 添加百位数样式 */
61
- .c-hundred {
62
- display: flex;
63
- align-items: center;
64
- justify-content: center;
65
- width: 30px; /* 根据需要调整 */
66
- margin-right: 5px;
67
- }
68
-
69
69
  .global-v ::v-deep .global-v-show iframe {
70
70
  position: absolute;
71
71
  left: 0;
@@ -75,56 +75,50 @@
75
75
  max-height: 100%;
76
76
  width: 100%;
77
77
  }
78
- .ele-img {
79
- position: absolute;
80
- overflow: hidden;
81
- }
82
-
83
- .ele-img .ani-wrap {
84
- width: 100%;
85
- height: 100%;
86
- }
87
-
88
- .ele-img .ele-image {
89
- position: relative;
90
- display: block;
91
- }
92
-
93
- .ele-img .rotate-wrap {
94
- position: absolute;
95
- left: 0;
96
- right: 0;
97
- top: 0;
98
- bottom: 0;
99
- }
100
-
101
- .ele-img .ele-img-bg,
102
- .ele-img .rotate-wrap .img-wrap {
103
- width: 100%;
104
- height: 100%;
105
- overflow: hidden;
106
- }
107
-
108
- .ele-img .ele-bg-wrap {
109
- width: 100%;
110
- height: 100%;
111
- background-size: cover;
112
- background-position: 50% 50%;
113
- background-repeat: no-repeat;
114
- background-clip: border-box;
115
- }
116
-
117
- /* 动画关键帧 */
118
- @keyframes zoomIn {
119
- from {
120
- opacity: 0;
121
- transform: scale(0.5);
122
- }
123
- to {
124
- opacity: 1;
125
- transform: scale(1);
126
- }
127
- }
78
+ .ele-shape {
79
+ position: absolute;
80
+ overflow: hidden;
81
+ }
82
+
83
+ .ani-wrap {
84
+ width: 100%;
85
+ height: 100%;
86
+ box-sizing: border-box;
87
+ }
88
+
89
+ .e-shape {
90
+ width: 100%;
91
+ height: 100%;
92
+ }
93
+
94
+ .svg-container :deep(svg) {
95
+ width: 100%;
96
+ height: 100%;
97
+ display: block;
98
+ }
99
+
100
+ .svg-container {
101
+ width: 100%;
102
+ height: 100%;
103
+ display: block;
104
+ }
105
+
106
+
107
+ .svg-loading,
108
+ .svg-error {
109
+ display: flex;
110
+ align-items: center;
111
+ justify-content: center;
112
+ width: 100%;
113
+ height: 100%;
114
+ background: rgba(0,0,0,0.05);
115
+ }
116
+
117
+ .ele-shape .svg-container svg {
118
+ width: 100%;
119
+ height: 100%;
120
+ overflow: visible;
121
+ }
128
122
  .ele-text {
129
123
  position: relative;
130
124
  }
@@ -191,76 +185,101 @@
191
185
  transform: scale(1);
192
186
  opacity: 1;
193
187
  }
194
- }#audio {
195
- position: absolute;
196
- right: 10px;
197
- top: 10px;
198
- z-index: 103;
199
- width: 30px;
200
- height: 30px;
201
- display: flex;
202
- align-items: center;
203
- }
204
-
205
- #audio .mrotate {
206
- animation: mrotate 5s linear infinite;
207
- }
208
-
209
- @keyframes mrotate {
210
- to {
211
- transform: rotate(1turn);
188
+ }.ele-img {
189
+ position: absolute;
190
+ overflow: hidden;
212
191
  }
213
- }
214
-
215
- #audio .audio {
216
- width: 100%;
217
- height: 100%;
218
- display: flex;
219
- align-items: center;
220
- justify-content: center;
221
- color: #fff;
222
- background: #666;
223
- border-radius: 50%;
224
- overflow: hidden;
225
- cursor: pointer;
226
- transition: all 0.3s ease;
227
- }
228
-
229
- #audio .audio.a-border {
230
- border: 1px solid #fff;
231
- }
232
-
233
- #audio .audio .music-icon {
234
- display: block;
235
- width: 60%;
236
- height: 60%;
237
- object-fit: contain;
238
- }
239
-
240
- #audio .audio .iconfont {
241
- font-size: 2opx;
242
- line-height: 1;
243
- }
244
- #audio .icon-cancel {
192
+
193
+ .ele-img .ani-wrap {
194
+ width: 100%;
195
+ height: 100%;
196
+ }
197
+
198
+ .ele-img .ele-image {
199
+ position: relative;
200
+ display: block;
201
+ }
202
+
203
+ .ele-img .rotate-wrap {
245
204
  position: absolute;
205
+ left: 0;
206
+ right: 0;
207
+ top: 0;
208
+ bottom: 0;
209
+ }
210
+
211
+ .ele-img .ele-img-bg,
212
+ .ele-img .rotate-wrap .img-wrap {
246
213
  width: 100%;
247
214
  height: 100%;
248
- border-radius: 50%;
249
215
  overflow: hidden;
250
- padding: 15px 0;
251
- }
252
- #audio .icon-cancel .icon-h {
253
- transform: rotate(45deg);
216
+ }
217
+
218
+ .ele-img .ele-bg-wrap {
254
219
  width: 100%;
255
- height: 2px;
256
- background: #fff;
220
+ height: 100%;
221
+ background-size: cover;
222
+ background-position: 50% 50%;
223
+ background-repeat: no-repeat;
224
+ background-clip: border-box;
257
225
  }
258
- #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
259
- content: '';
226
+
227
+ /* 动画关键帧 */
228
+ @keyframes zoomIn {
229
+ from {
230
+ opacity: 0;
231
+ transform: scale(0.5);
232
+ }
233
+ to {
234
+ opacity: 1;
235
+ transform: scale(1);
236
+ }
237
+ }
238
+ .element-video {
260
239
  position: absolute;
240
+ overflow: hidden;
241
+ background-color: transparent;
242
+ }
243
+
244
+ .element-video .ani-wrap, .element-video img {
245
+ display: block;
246
+ width: 100%;
247
+ height: 100%;
248
+ }
249
+
250
+ .video-container {
261
251
  width: 100%;
262
- height: 2px;
263
- background: #fff;
252
+ height: 100%;
253
+ }
254
+
255
+ .video-container iframe {
256
+ width: 100%;
257
+ height: 100%;
258
+ border: none;
259
+ }
260
+
261
+ .video-cover {
262
+ position: relative;
263
+ width: 100%;
264
+ height: 100%;
265
+ background-size: cover;
266
+ background-position: center;
267
+ cursor: pointer;
268
+ }
269
+
270
+ .video-cover .play-btn {
271
+ position: absolute;
272
+ left: 50%;
273
+ top: 50%;
274
+ transform: translate(-50%, -50%);
275
+ width: 50px;
276
+ height: 50px;
277
+ opacity: 0.8;
278
+ transition: opacity 0.2s;
279
+ }
280
+
281
+ .video-cover:hover .play-btn {
282
+ opacity: 1;
264
283
  }.element-ditu .ani-wrap {
265
284
  width: 100%;
266
285
  height: 100%;
@@ -305,96 +324,7 @@
305
324
  .map-iframe {
306
325
  width: 100%;
307
326
  height: 100%;
308
- }.ele-shape {
309
- position: absolute;
310
- overflow: hidden;
311
- }
312
-
313
- .ani-wrap {
314
- width: 100%;
315
- height: 100%;
316
- box-sizing: border-box;
317
- }
318
-
319
- .e-shape {
320
- width: 100%;
321
- height: 100%;
322
- }
323
-
324
- .svg-container :deep(svg) {
325
- width: 100%;
326
- height: 100%;
327
- display: block;
328
- }
329
-
330
- .svg-container {
331
- width: 100%;
332
- height: 100%;
333
- display: block;
334
- }
335
-
336
-
337
- .svg-loading,
338
- .svg-error {
339
- display: flex;
340
- align-items: center;
341
- justify-content: center;
342
- width: 100%;
343
- height: 100%;
344
- background: rgba(0,0,0,0.05);
345
- }
346
-
347
- .ele-shape .svg-container svg {
348
- width: 100%;
349
- height: 100%;
350
- overflow: visible;
351
- }
352
- .element-video {
353
- position: absolute;
354
- overflow: hidden;
355
- background-color: transparent;
356
- }
357
-
358
- .element-video .ani-wrap, .element-video img {
359
- display: block;
360
- width: 100%;
361
- height: 100%;
362
- }
363
-
364
- .video-container {
365
- width: 100%;
366
- height: 100%;
367
- }
368
-
369
- .video-container iframe {
370
- width: 100%;
371
- height: 100%;
372
- border: none;
373
- }
374
-
375
- .video-cover {
376
- position: relative;
377
- width: 100%;
378
- height: 100%;
379
- background-size: cover;
380
- background-position: center;
381
- cursor: pointer;
382
- }
383
-
384
- .video-cover .play-btn {
385
- position: absolute;
386
- left: 50%;
387
- top: 50%;
388
- transform: translate(-50%, -50%);
389
- width: 50px;
390
- height: 50px;
391
- opacity: 0.8;
392
- transition: opacity 0.2s;
393
- }
394
-
395
- .video-cover:hover .play-btn {
396
- opacity: 1;
397
- }.count-down .drag-point {
327
+ }.count-down .drag-point {
398
328
  cursor: default!important
399
329
  }
400
330
 
@@ -556,46 +486,83 @@
556
486
  align-items: center;
557
487
  white-space: nowrap
558
488
  }
559
- .call {
489
+ #audio {
560
490
  position: absolute;
561
- cursor: pointer;
562
- user-select: none;
563
- }
564
-
565
- .call .ani-wrap {
491
+ right: 10px;
492
+ top: 10px;
493
+ z-index: 103;
494
+ width: 30px;
495
+ height: 30px;
566
496
  display: flex;
567
- justify-content: center;
568
497
  align-items: center;
569
- width: 100%;
570
- height: 100%;
571
- overflow: hidden;
572
- transition: opacity 0.2s;
573
498
  }
574
499
 
575
- .call .ani-wrap:hover {
576
- opacity: 0.9;
500
+ #audio .mrotate {
501
+ animation: mrotate 5s linear infinite;
577
502
  }
578
503
 
579
- .call-content {
504
+ @keyframes mrotate {
505
+ to {
506
+ transform: rotate(1turn);
507
+ }
508
+ }
509
+
510
+ #audio .audio {
511
+ width: 100%;
512
+ height: 100%;
580
513
  display: flex;
581
514
  align-items: center;
582
515
  justify-content: center;
516
+ color: #fff;
517
+ background: #666;
518
+ border-radius: 50%;
519
+ overflow: hidden;
520
+ cursor: pointer;
521
+ transition: all 0.3s ease;
583
522
  }
584
523
 
585
- .btn-text {
586
- margin-left: 10px;
524
+ #audio .audio.a-border {
525
+ border: 1px solid #fff;
587
526
  }
588
527
 
528
+ #audio .audio .music-icon {
529
+ display: block;
530
+ width: 60%;
531
+ height: 60%;
532
+ object-fit: contain;
533
+ }
589
534
 
590
- .hb-tel:before {
591
- content: "\E642";
592
- }.button {
535
+ #audio .audio .iconfont {
536
+ font-size: 2opx;
537
+ line-height: 1;
538
+ }
539
+ #audio .icon-cancel {
540
+ position: absolute;
541
+ width: 100%;
542
+ height: 100%;
543
+ border-radius: 50%;
544
+ overflow: hidden;
545
+ padding: 15px 0;
546
+ }
547
+ #audio .icon-cancel .icon-h {
548
+ transform: rotate(45deg);
549
+ width: 100%;
550
+ height: 2px;
551
+ background: #fff;
552
+ }
553
+ #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
554
+ content: '';
555
+ position: absolute;
556
+ width: 100%;
557
+ height: 2px;
558
+ background: #fff;
559
+ }.call {
593
560
  position: absolute;
594
561
  cursor: pointer;
595
562
  user-select: none;
596
563
  }
597
-
598
- .button .ani-wrap {
564
+
565
+ .call .ani-wrap {
599
566
  display: flex;
600
567
  justify-content: center;
601
568
  align-items: center;
@@ -604,12 +571,12 @@
604
571
  overflow: hidden;
605
572
  transition: opacity 0.2s;
606
573
  }
607
-
608
- .button .ani-wrap:hover {
574
+
575
+ .call .ani-wrap:hover {
609
576
  opacity: 0.9;
610
577
  }
611
578
 
612
- .button-content {
579
+ .call-content {
613
580
  display: flex;
614
581
  align-items: center;
615
582
  justify-content: center;
@@ -618,6 +585,11 @@
618
585
  .btn-text {
619
586
  margin-left: 10px;
620
587
  }
588
+
589
+
590
+ .hb-tel:before {
591
+ content: "\E642";
592
+ }
621
593
  @keyframes jumpheart {
622
594
  to {
623
595
  -webkit-transform: scale(1.2);
@@ -962,965 +934,7 @@
962
934
  }
963
935
  .ele-lottie .ele-lotwrap {
964
936
  overflow: hidden;
965
- }/* Iconfont definition */
966
- .icon-danmuliebiao1:before {
967
- content: "\E68A";
968
- }
969
-
970
- .icon-cuowu2:before {
971
- content: "\E65E";
972
- }
973
-
974
- i {
975
- font-style: normal;
976
- }
977
-
978
- .v-modal {
979
- position: fixed;
980
- left: 0;
981
- top: 0;
982
- width: 100%;
983
- height: 100%;
984
- opacity: .5;
985
- background: #000;
986
- }
987
- /* 底部工具栏样式 */
988
- #toolbarNew {
989
- position: fixed;
990
- left: 0;
991
- bottom: 0;
992
- width: 100%;
993
- padding: 12px 0;
994
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
995
- z-index: 100;
996
- }
997
-
998
- .toolbar {
999
- display: flex;
1000
- align-items: center;
1001
- padding: 0 10px;
1002
- }
1003
-
1004
- .bar-left {
1005
- position: relative;
1006
- flex: 1;
1007
- }
1008
-
1009
- .bar-mess {
1010
- width: 100%;
1011
- height: 36px;
1012
- line-height: 36px;
1013
- font-size: 14px;
1014
- color: #ccc;
1015
- padding: 0 8px;
1016
- border-radius: 18px;
1017
- border: none;
1018
- -webkit-appearance: none;
1019
- background-color: rgba(0, 0, 0, 0.28);
1020
- }
1021
-
1022
- .bar-mess::placeholder {
1023
- color: rgba(255, 255, 255, 0.7);
1024
- }
1025
-
1026
- .bar-left .iconfont {
1027
- position: absolute;
1028
- right: 10px;
1029
- top: 50%;
1030
- transform: translateY(-50%);
1031
- color: #f2f2f2;
1032
- font-size: 16px;
1033
- cursor: pointer;
1034
- z-index: 2;
1035
- padding: 5px;
1036
- }
1037
-
1038
- /* 关闭弹幕按钮样式 */
1039
- .toolbar-close {
1040
- position: absolute;
1041
- left: 10px;
1042
- transform: translateY(-50%);
1043
- display: flex;
1044
- align-items: center;
1045
- cursor: pointer;
1046
- z-index: 2;
1047
- }
1048
-
1049
- .toolbar-close img {
1050
- display: block;
1051
- width: 36px;
1052
- height: 36px;
1053
- cursor: pointer;
1054
- }
1055
-
1056
- /* 弹幕容器样式 */
1057
- .bullet-container {
1058
- position: fixed;
1059
- left: 10px;
1060
- right: 10px;
1061
- height: 120px;
1062
- overflow: hidden;
1063
- z-index: 99;
1064
- pointer-events: none;
1065
- }
1066
-
1067
- .bullet-item {
1068
- position: absolute;
1069
- left: 0;
1070
- bottom: 0;
1071
- padding: 5px 10px;
1072
- border-radius: 15px;
1073
- font-size: 14px;
1074
- white-space: nowrap;
1075
- animation: bulletMove linear;
1076
- animation-fill-mode: forwards;
1077
- will-change: transform;
1078
- display: inline-block;
1079
- max-width: 90%;
1080
- }
1081
-
1082
- @keyframes bulletMove {
1083
- 0% {
1084
- transform: translateY(0);
1085
- opacity: 1;
1086
- }
1087
- 100% {
1088
- transform: translateY(calc(-1 * 150px));
1089
- opacity: 0;
1090
- }
1091
- }
1092
-
1093
- /* 弹幕输入弹窗样式 */
1094
- .popup-overlay {
1095
- position: fixed;
1096
- top: 0;
1097
- left: 0;
1098
- right: 0;
1099
- bottom: 0;
1100
- background: rgba(0, 0, 0, 0.5);
1101
- display: flex;
1102
- justify-content: center;
1103
- align-items: flex-end;
1104
- z-index: 200;
1105
- }
1106
-
1107
- #index .mint-popup {
1108
- background-color: transparent;
1109
- }
1110
-
1111
- .mint-popup {
1112
- position: fixed;
1113
- background: #fff;
1114
- top: 50%;
1115
- left: 50%;
1116
- transform: translate3d(-50%, -50%, 0);
1117
- -webkit-backface-visibility: hidden;
1118
- backface-visibility: hidden;
1119
- transition: .2s ease-out;
1120
- }
1121
-
1122
- .bar-messwin {
1123
- width: 309px;
1124
- height: 341px;
1125
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/mess-bg.png') no-repeat 50%;
1126
- background-size: 100% 100%;
1127
- position: relative;
1128
- display: flex;
1129
- flex-direction: column;
1130
- align-items: center;
1131
- margin-bottom: 20px;
1132
- }
1133
-
1134
- .bar-messwin .mess-logo {
1135
- width: 171px;
1136
- height: 110px;
1137
- margin-top: -64px;
1138
- margin-left: 11px;
1139
- }
1140
-
1141
- .bar-messwin .mess-title {
1142
- margin-top: 12px;
1143
- font-weight: 600;
1144
- font-size: 21px;
1145
- color: #333;
1146
- }
1147
-
1148
- .bar-messwin .mess-input {
1149
- width: 267px;
1150
- height: 43px;
1151
- background: #fff;
1152
- border-radius: 9px;
1153
- border: 1px solid rgba(237,85,102,0.4);
1154
- margin-top: 12px;
1155
- display: flex;
1156
- align-items: center;
1157
- justify-content: center;
1158
- padding: 0 13px;
1159
- }
1160
-
1161
- .bar-messwin .mess-input input {
1162
- width: 100%;
1163
- font-size: 17px;
1164
- font-family: PingFang SC;
1165
- font-weight: 400;
1166
- color: #333;
1167
- border: none;
1168
- outline: none;
1169
- background: transparent;
1170
- }
1171
-
1172
- .bar-messwin .mess-input input::-webkit-input-placeholder {
1173
- color: #999;
1174
- }
1175
-
1176
- .bar-messwin .mess-input input::-ms-input-placeholder {
1177
- color: #999;
1178
- }
1179
-
1180
- .bar-messwin .mess-input input::placeholder {
1181
- color: #999;
1182
- }
1183
-
1184
- .bar-messwin .mess-textarea {
1185
- width: 267px;
1186
- height: 85px;
1187
- background: #fff;
1188
- border-radius: 9px;
1189
- border: 1px solid rgba(237,85,102,0.4);
1190
- display: flex;
1191
- padding: 9px 13px;
1192
- justify-content: space-between;
1193
- margin-top: 12px;
1194
- position: relative;
1195
- }
1196
-
1197
- .bar-messwin .mess-textarea textarea {
1198
- width: 203px;
1199
- height: 68px;
1200
- font-size: 17px;
1201
- resize: none;
1202
- outline: none;
1203
- border: none;
1204
- background: transparent;
1205
- color: #333;
1206
- font-family: PingFang SC;
1207
- }
1208
-
1209
- .bar-messwin .mess-textarea textarea::-webkit-input-placeholder {
1210
- color: #999;
1211
- }
1212
-
1213
- .bar-messwin .mess-textarea textarea::-ms-input-placeholder {
1214
- color: #999;
1215
- }
1216
-
1217
- .bar-messwin .mess-textarea textarea::placeholder {
1218
- color: #999;
1219
- }
1220
-
1221
- .bar-messwin .mess-textarea img {
1222
- width: 26px;
1223
- height: 26px;
1224
- cursor: pointer;
1225
- }
1226
-
1227
- .bar-messwin .mess-textarea .wish-dropdown {
1228
- position: absolute;
1229
- top: 43px;
1230
- right: 0;
1231
- width: 267px;
1232
- background: #fff;
1233
- border-radius: 9px;
1234
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
1235
- z-index: 10;
1236
- max-height: 213px;
1237
- overflow-y: auto;
1238
- border: 1px solid rgba(237,85,102,0.2);
1239
- padding: 0 13px;
1240
- }
1241
-
1242
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar {
1243
- width: 3px;
1244
- background-color: transparent;
1245
- display: block;
1246
- }
1247
-
1248
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-thumb {
1249
- background-color: #ccc;
1250
- border-radius: 9px;
1251
- min-height: 32px;
1252
- }
1253
-
1254
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-track {
1255
- background-color: transparent;
1256
- border-radius: 3px;
1257
- margin: 4px 0;
1258
- }
1259
-
1260
- .bar-messwin .mess-textarea .wish-dropdown .wish-item {
1261
- padding: 11px 0;
1262
- display: flex;
1263
- align-items: flex-start;
1264
- cursor: pointer;
1265
- transition: background-color 0.2s;
1266
- border-bottom: 1px solid rgba(0,0,0,0.05);
1267
- }
1268
-
1269
- .bar-messwin .mess-textarea .wish-dropdown .wish-item:last-child {
1270
- border-bottom: none;
1271
- }
1272
-
1273
- .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-dot {
1274
- color: #ff4874;
1275
- margin-right: 5px;
1276
- font-size: 11px;
1277
- line-height: 21px;
1278
- }
1279
-
1280
- .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-text {
1281
- font-size: 15px;
1282
- color: #333;
1283
- line-height: 21px;
1284
- text-align: left;
1285
- }
1286
-
1287
- .bar-messwin .bar-m-sub {
1288
- width: 267px;
1289
- height: 43px;
1290
- background: linear-gradient(270deg,#ff4874,#ff9061);
1291
- border-radius: 68px;
1292
- font-size: 17px;
1293
- font-family: PingFang SC;
1294
- font-weight: 400;
1295
- color: #fff;
1296
- margin-top: 26px;
1297
- border: none;
1298
- outline: none;
1299
- cursor: pointer;
1300
- display: flex;
1301
- align-items: center;
1302
- justify-content: center;
1303
- }
1304
-
1305
- .bar-messwin .icon-cuowu2, .give-gift .icon-cuowu2 {
1306
- position: absolute;
1307
- bottom: -60px;
1308
- right: 50%;
1309
- transform: translateX(50%);
1310
- font-size: 28px;
1311
- color: #fff;
1312
- cursor: pointer;
1313
- }
1314
-
1315
- /* 提示弹窗样式 */
1316
- .mint-msgbox-wrapper {
1317
- position: fixed;
1318
- top: 0;
1319
- left: 0;
1320
- right: 0;
1321
- bottom: 0;
1322
- background-color: rgba(0,0,0,0.5);
1323
- z-index: 2005;
1324
- display: flex;
1325
- justify-content: center;
1326
- align-items: center;
1327
- }
1328
-
1329
- .mint-msgbox {
1330
- position: relative;
1331
- background-color: #fff;
1332
- width: 85%;
1333
- border-radius: 3px;
1334
- font-size: 17px;
1335
- overflow: hidden;
1336
- }
1337
-
1338
- .mint-msgbox-header {
1339
- padding: 16px 0 0;
1340
- }
1341
-
1342
- .mint-msgbox-content {
1343
- padding: 11px 21px 16px;
1344
- border-bottom: 1px solid #ddd;
1345
- min-height: 38px;
1346
- position: relative;
1347
- }
1348
-
1349
- .mint-msgbox-title {
1350
- text-align: center;
1351
- padding-left: 0;
1352
- margin-bottom: 0;
1353
- font-size: 17px;
1354
- font-weight: 700;
1355
- color: #333;
1356
- }
1357
-
1358
- .mint-msgbox-message {
1359
- color: #999;
1360
- margin: 0;
1361
- text-align: center;
1362
- line-height: 38px;
1363
- }
1364
-
1365
- .mint-msgbox-btns {
1366
- display: flex;
1367
- height: 43px;
1368
- line-height: 43px;
1369
- }
1370
-
1371
- .mint-msgbox-btn {
1372
- line-height: 37px;
1373
- display: block;
1374
- background-color: #fff;
1375
- flex: 1;
1376
- margin: 0;
1377
- border: 0;
1378
- }
1379
-
1380
- .mint-msgbox-confirm {
1381
- color: #26a2ff;
1382
- width: 100%;
1383
- }
1384
- /* 右侧按钮区域样式 */
1385
- #toolbarNew .toolbar .bar-right {
1386
- margin-left: 7px;
1387
- font-size: 0;
1388
- display: flex;
1389
- align-items: center;
1390
- }
1391
-
1392
- #toolbarNew .toolbar .bar-right.move-left {
1393
- right: 64px;
1394
- }
1395
-
1396
- #toolbarNew .toolbar .bar-right .bar-r-com,
1397
- #toolbarNew .toolbar .bar-right>img {
1398
- display: inline-block;
1399
- vertical-align: middle;
1400
- }
1401
-
1402
- #toolbarNew .toolbar .bar-right .bar-r-com {
1403
- margin-left: 8px;
1404
- cursor: pointer;
1405
- }
1406
-
1407
- #toolbarNew .toolbar .bar-right .bar-r-com.bar-r-gift {
1408
- width: 36px;
1409
- height: 36px;
1410
- transform-origin: center bottom;
1411
- animation: giftJump 3s ease infinite;
1412
- }
1413
-
1414
- @keyframes giftJump {
1415
- 0%, 24%, 48%, to {
1416
- transform: translateZ(0);
1417
- }
1418
- 12% {
1419
- transform: translate3d(0, -10px, 0);
1420
- }
1421
- 36% {
1422
- transform: translate3d(0, -10px, 0);
1423
- }
1424
- }
1425
-
1426
- #toolbarNew .toolbar .bar-right .bar-r-com:first-child {
1427
- margin-left: 0;
1428
- }
1429
-
1430
- #toolbarNew .toolbar .bar-right>img {
1431
- position: relative;
1432
- z-index: 1;
1433
- width: 26px;
1434
- height: 26px;
1435
- }
1436
-
1437
- #toolbarNew .toolbar .bar-right .bar-heart {
1438
- position: relative;
1439
- width: 36px;
1440
- height: 36px;
1441
- text-align: center;
1442
- }
1443
-
1444
- #toolbarNew .toolbar .bar-right .bar-heart .bar-praise {
1445
- position: absolute;
1446
- max-width: 36px;
1447
- height: 15px;
1448
- line-height: 15px;
1449
- right: 0;
1450
- top: 0;
1451
- z-index: 3;
1452
- font-size: 10px;
1453
- color: #fff;
1454
- border-radius: 6px;
1455
- padding: 0 4px;
1456
- box-sizing: border-box;
1457
- white-space: nowrap;
1458
- background-color: #f38200;
1459
- transform: translateX(40%);
1460
- }
1461
-
1462
- #toolbarNew .toolbar .bar-right .bar-zan {
1463
- position: relative;
1464
- z-index: 2;
1465
- height: 33px;
1466
- width: 33px;
1467
- box-sizing: border-box;
1468
- }
1469
-
1470
- #toolbarNew .toolbar .bar-right .bar-zan .ani-num {
1471
- position: absolute;
1472
- top: 0;
1473
- left: 10px;
1474
- opacity: 0;
1475
- font-size: 15px;
1476
- color: #f07a87;
1477
- }
1478
-
1479
- #toolbarNew .toolbar .bar-right .bar-zan .stop-longtap {
1480
- position: absolute;
1481
- left: 0;
1482
- right: 0;
1483
- bottom: 0;
1484
- top: 0;
1485
- z-index: 1;
1486
- }
1487
-
1488
- #toolbarNew .toolbar .bar-right .bar-zan img {
1489
- width: 36px;
1490
- height: 36px;
1491
- }
1492
-
1493
- #toolbarNew .toolbar .bar-right .bar-zan.active .ani-num {
1494
- z-index: 2;
1495
- animation: praise 1.2s;
1496
- animation-fill-mode: both;
1497
- }
1498
-
1499
- @keyframes praise {
1500
- 0% {
1501
- opacity: 1;
1502
- }
1503
- 50% {
1504
- opacity: 1;
1505
- transform: translate3d(0, -35px, 0);
1506
- }
1507
- to {
1508
- opacity: 0;
1509
- transform: translate3d(0, -35px, 0);
1510
- }
1511
- }
1512
-
1513
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap {
1514
- transform: scale(0.85);
1515
- }
1516
-
1517
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:first-of-type {
1518
- animation: jump .6s ease-out;
1519
- }
1520
-
1521
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(2) {
1522
- animation: jump2 .6s ease-out;
1523
- }
1524
-
1525
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(3) {
1526
- animation: jump3 .6s ease-out;
1527
- }
1528
-
1529
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(4) {
1530
- animation: jump4 .6s ease-out;
1531
- }
1532
-
1533
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(5) {
1534
- animation: jump5 .6s ease-out;
1535
- }
1536
-
1537
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(6) {
1538
- animation: jump6 .6s ease-out;
1539
- }
1540
-
1541
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(7) {
1542
- animation: jump7 .6s ease-out;
1543
- }
1544
-
1545
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(8) {
1546
- animation: jump8 .6s ease-out;
1547
- }
1548
-
1549
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap {
1550
- position: absolute;
1551
- left: 0;
1552
- top: 0;
1553
- right: 0;
1554
- bottom: 0;
1555
- pointer-events: none;
1556
- overflow: visible;
1557
- }
1558
-
1559
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span {
1560
- position: absolute;
1561
- width: 6px;
1562
- height: 6px;
1563
- border-radius: 50%;
1564
- opacity: 0;
1565
- }
1566
-
1567
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:first-of-type {
1568
- left: 50%;
1569
- top: -8px;
1570
- transform: translate3d(-50%, 0, 0);
1571
- background-color: #b3e5c8;
1572
- }
1573
-
1574
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(2) {
1575
- left: -8px;
1576
- top: 50%;
1577
- transform: translate3d(0, -50%, 0);
1578
- background-color: #f4ba31;
1579
- }
1580
-
1581
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(3) {
1582
- left: 50%;
1583
- bottom: -8px;
1584
- transform: translate3d(-50%, 0, 0);
1585
- background-color: #339fef;
1586
- }
1587
-
1588
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(4) {
1589
- top: 50%;
1590
- right: -8px;
1591
- transform: translate3d(0, -50%, 0);
1592
- background-color: #e2264d;
1593
- }
1594
-
1595
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(5) {
1596
- left: -5px;
1597
- top: 0;
1598
- transform: translate3d(0, -50%, 0);
1599
- background-color: #a08880;
1600
- }
1601
-
1602
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(6) {
1603
- left: -5px;
1604
- bottom: 0;
1605
- transform: translate3d(0, 50%, 0);
1606
- background-color: #43c1b5;
1607
- }
1608
-
1609
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(7) {
1610
- right: -5px;
1611
- bottom: 0;
1612
- transform: translate3d(0, 50%, 0);
1613
- background-color: #f5be3b;
1614
- }
1615
-
1616
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(8) {
1617
- right: -5px;
1618
- top: 0;
1619
- transform: translate3d(0, -50%, 0);
1620
- background-color: coral;
1621
- }
1622
-
1623
- @keyframes jump {
1624
- 0% {
1625
- opacity: 1;
1626
- transform: translate3d(-50%, 0, 0) scale(1);
1627
- }
1628
- 40% {
1629
- transform: translate3d(-50%, -100%, 0) scale(0.7);
1630
- }
1631
- to {
1632
- opacity: 1;
1633
- transform: translate3d(-50%, -150%, 0) scale(0);
1634
- }
1635
- }
1636
-
1637
- @keyframes jump2 {
1638
- 0% {
1639
- opacity: 1;
1640
- transform: translate3d(0, -50%, 0) scale(1);
1641
- }
1642
- 40% {
1643
- transform: translate3d(-100%, -50%, 0) scale(0.7);
1644
- }
1645
- to {
1646
- opacity: 1;
1647
- transform: translate3d(-150%, -50%, 0) scale(0);
1648
- }
1649
- }
1650
-
1651
- @keyframes jump3 {
1652
- 0% {
1653
- opacity: 1;
1654
- transform: translate3d(-50%, 0, 0) scale(1);
1655
- }
1656
- 40% {
1657
- transform: translate3d(-50%, 100%, 0) scale(0.7);
1658
- }
1659
- to {
1660
- opacity: 1;
1661
- transform: translate3d(-50%, 150%, 0) scale(0);
1662
- }
1663
- }
1664
-
1665
- @keyframes jump4 {
1666
- 0% {
1667
- opacity: 1;
1668
- transform: translate3d(0, -50%, 0) scale(1);
1669
- }
1670
- 40% {
1671
- transform: translate3d(100%, -50%, 0) scale(0.7);
1672
- }
1673
- to {
1674
- opacity: 1;
1675
- transform: translate3d(150%, -50%, 0) scale(0);
1676
- }
1677
- }
1678
-
1679
- @keyframes jump5 {
1680
- 0% {
1681
- opacity: 1;
1682
- transform: translate3d(0, -50%, 0) scale(1);
1683
- }
1684
- 40% {
1685
- transform: translate3d(-80%, -80%, 0) scale(0.7);
1686
- }
1687
- to {
1688
- opacity: 1;
1689
- transform: translate3d(-130%, -130%, 0) scale(0);
1690
- }
1691
- }
1692
-
1693
- @keyframes jump6 {
1694
- 0% {
1695
- opacity: 1;
1696
- transform: translate3d(0, 50%, 0) scale(1);
1697
- }
1698
- 40% {
1699
- transform: translate3d(-80%, 80%, 0) scale(0.7);
1700
- }
1701
- to {
1702
- opacity: 1;
1703
- transform: translate3d(-130%, 130%, 0) scale(0);
1704
- }
1705
- }
1706
-
1707
- @keyframes jump7 {
1708
- 0% {
1709
- opacity: 1;
1710
- transform: translate3d(0, 50%, 0) scale(1);
1711
- }
1712
- 40% {
1713
- transform: translate3d(80%, 80%, 0) scale(0.7);
1714
- }
1715
- to {
1716
- opacity: 1;
1717
- transform: translate3d(130%, 130%, 0) scale(0);
1718
- }
1719
- }
1720
-
1721
- @keyframes jump8 {
1722
- 0% {
1723
- opacity: 1;
1724
- transform: translate3d(0, 50%, 0) scale(1);
1725
- }
1726
- 40% {
1727
- transform: translate3d(80%, -80%, 0) scale(0.7);
1728
- }
1729
- to {
1730
- opacity: 1;
1731
- transform: translate3d(130%, -130%, 0) scale(0);
1732
- }
1733
- }
1734
-
1735
- /* 礼物弹窗样式 */
1736
- .give-gift {
1737
- position: fixed;
1738
- top: 50%;
1739
- left: 50%;
1740
- transform: translate(-50%, -50%);
1741
- z-index: 2004;
1742
- background: white;
1743
- padding: 20px;
1744
- border-radius: 10px;
1745
- text-align: center;
1746
- }
1747
-
1748
- .give-gift .back {
1749
- position: absolute;
1750
- top: 10px;
1751
- left: 10px;
1752
- cursor: pointer;
1753
- }
1754
-
1755
- .give-gift img {
1756
- max-width: 300px;
1757
- max-height: 300px;
1758
- margin-top: 20px;
1759
- }
1760
-
1761
- /* 留言成功弹窗样式 */
1762
- .mess-success-popup {
1763
- position: fixed;
1764
- top: 0;
1765
- left: 0;
1766
- right: 0;
1767
- bottom: 0;
1768
- background-color: rgba(0, 0, 0, 0.5);
1769
- z-index: 2003;
1770
- display: flex;
1771
- justify-content: center;
1772
- align-items: center;
1773
- }
1774
-
1775
- .mess-success-popup .gift-popup {
1776
- width: 300px;
1777
- height: 200px;
1778
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
1779
- border-radius: 10px;
1780
- padding: 20px;
1781
- text-align: center;
1782
- position: relative;
1783
- }
1784
-
1785
- .mess-success-popup .gift-popup .icon-cuowu2 {
1786
- position: absolute;
1787
- top: 10px;
1788
- right: 10px;
1789
- cursor: pointer;
1790
- }
1791
-
1792
- .mess-success-popup .gift-popup .toast {
1793
- display: flex;
1794
- align-items: center;
1795
- justify-content: center;
1796
- margin: 10px 0;
1797
- }
1798
-
1799
- .mess-success-popup .gift-popup .toast img {
1800
- width: 20px;
1801
- height: 15px;
1802
- margin: 0 5px;
1803
- }
1804
-
1805
- .mess-success-popup .gift-popup .title {
1806
- margin: 15px 0;
1807
- font-size: 16px;
1808
- color: #333;
1809
- }
1810
-
1811
- .mess-success-popup .gift-popup .btn {
1812
- background: linear-gradient(270deg, #ff4874, #ff9061);
1813
- color: white;
1814
- border: none;
1815
- padding: 10px 20px;
1816
- border-radius: 20px;
1817
- margin-top: 15px;
1818
- cursor: pointer;
1819
- }
1820
-
1821
- /* 新增图片加载动画样式 */
1822
- .gift-image-container {
1823
- position: relative;
1824
- width: 300px;
1825
- height: 300px;
1826
- margin: 20px 0;
1827
- overflow: hidden;
1828
- }
1829
-
1830
- .gift-image-container img {
1831
- width: 100%;
1832
- height: 100%;
1833
- object-fit: contain;
1834
- opacity: 0;
1835
- transition: opacity 0.5s ease-in-out;
1836
- }
1837
-
1838
- .gift-image-container img.loaded {
1839
- opacity: 1;
1840
- }
1841
-
1842
- .image-loading {
1843
- position: absolute;
1844
- top: 0;
1845
- left: 0;
1846
- width: 100%;
1847
- height: 100%;
1848
- display: flex;
1849
- justify-content: center;
1850
- align-items: center;
1851
- background: rgba(255, 255, 255, 0.8);
1852
- }
1853
-
1854
- .loading-spinner {
1855
- width: 40px;
1856
- height: 40px;
1857
- border: 4px solid #f3f3f3;
1858
- border-top: 4px solid #ed5566;
1859
- border-radius: 50%;
1860
- animation: spin 1s linear infinite;
1861
- }
1862
-
1863
- @keyframes spin {
1864
- 0% { transform: rotate(0deg); }
1865
- 100% { transform: rotate(360deg); }
1866
- }
1867
-
1868
- .ele-effect {
1869
- will-change: transform;
1870
- }
1871
-
1872
- .ele-effect .effect-wrap {
1873
- position: relative;
1874
- width: 100%;
1875
- height: 100%;
1876
- }
1877
-
1878
- .particle {
1879
- position: absolute;
1880
- background-repeat: no-repeat;
1881
- background-size: contain;
1882
- animation-name: falling;
1883
- animation-timing-function: linear;
1884
- animation-iteration-count: infinite;
1885
- will-change: transform;
1886
- }
1887
-
1888
- @keyframes falling {
1889
- 0% {
1890
- transform: translateY(0) rotate(0deg);
1891
- opacity: 1;
1892
- }
1893
- 80% {
1894
- opacity: 0.8;
1895
- }
1896
- 100% {
1897
- transform: translateY(100vh) rotate(360deg);
1898
- opacity: 0;
1899
- }
1900
- }
1901
- .ele-lottie .ele-lotwrap {
1902
- overflow: hidden
1903
- }
1904
-
1905
- .ele-effect .effect-wrap {
1906
- position: relative;
1907
- overflow: hidden;
1908
- width: 100%;
1909
- height: 100%
1910
- }
1911
-
1912
- .ele-effect .e-small {
1913
- position: absolute;
1914
- width: 24px;
1915
- height: 24px;
1916
- background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
1917
- background-size: cover;
1918
- background-repeat: no-repeat;
1919
- -webkit-transform-origin: center;
1920
- transform-origin: center;
1921
- -webkit-animation: snow 5s linear infinite;
1922
- animation: snow 5s linear infinite
1923
- }body, html {
937
+ }body, html {
1924
938
  width: 100%;
1925
939
  height: 100%;
1926
940
  }
@@ -3237,7 +2251,65 @@ to {
3237
2251
  }
3238
2252
  }
3239
2253
 
3240
- @keyframes pullUp {
2254
+ @keyframes pullUp {
2255
+ 0%,40%,60%,80%,99% {
2256
+ -webkit-animation-timing-function: ease-out;
2257
+ animation-timing-function: ease-out
2258
+ }
2259
+
2260
+ 0% {
2261
+ opacity: 0;
2262
+ -webkit-transform: scaleY(.1);
2263
+ transform: scaleY(.1);
2264
+ -webkit-transform-origin: 50% 100%;
2265
+ transform-origin: 50% 100%
2266
+ }
2267
+
2268
+ 40% {
2269
+ opacity: 1;
2270
+ -webkit-transform: scaleY(1.02);
2271
+ transform: scaleY(1.02);
2272
+ -webkit-transform-origin: 50% 100%;
2273
+ transform-origin: 50% 100%
2274
+ }
2275
+
2276
+ 60% {
2277
+ -webkit-transform: scaleY(.98);
2278
+ transform: scaleY(.98);
2279
+ -webkit-transform-origin: 50% 100%;
2280
+ transform-origin: 50% 100%
2281
+ }
2282
+
2283
+ 80% {
2284
+ -webkit-transform: scaleY(1.01);
2285
+ transform: scaleY(1.01);
2286
+ -webkit-transform-origin: 50% 100%;
2287
+ transform-origin: 50% 100%
2288
+ }
2289
+
2290
+ 99% {
2291
+ -webkit-transform: scaleY(1);
2292
+ transform: scaleY(1);
2293
+ -webkit-transform-origin: 50% 100%;
2294
+ transform-origin: 50% 100%
2295
+ }
2296
+
2297
+ to {
2298
+ -webkit-transform: none;
2299
+ transform: none
2300
+ }
2301
+ }
2302
+
2303
+ .pullDown {
2304
+ -webkit-transform-origin: 50% 0;
2305
+ transform-origin: 50% 0;
2306
+ -webkit-animation-name: pullDown;
2307
+ animation-name: pullDown;
2308
+ -webkit-animation-timing-function: ease-out;
2309
+ animation-timing-function: ease-out
2310
+ }
2311
+
2312
+ @-webkit-keyframes pullDown {
3241
2313
  0%,40%,60%,80%,99% {
3242
2314
  -webkit-animation-timing-function: ease-out;
3243
2315
  animation-timing-function: ease-out
@@ -3247,37 +2319,37 @@ to {
3247
2319
  opacity: 0;
3248
2320
  -webkit-transform: scaleY(.1);
3249
2321
  transform: scaleY(.1);
3250
- -webkit-transform-origin: 50% 100%;
3251
- transform-origin: 50% 100%
2322
+ -webkit-transform-origin: 50% 0;
2323
+ transform-origin: 50% 0
3252
2324
  }
3253
2325
 
3254
2326
  40% {
3255
2327
  opacity: 1;
3256
2328
  -webkit-transform: scaleY(1.02);
3257
2329
  transform: scaleY(1.02);
3258
- -webkit-transform-origin: 50% 100%;
3259
- transform-origin: 50% 100%
2330
+ -webkit-transform-origin: 50% 0;
2331
+ transform-origin: 50% 0
3260
2332
  }
3261
2333
 
3262
2334
  60% {
3263
2335
  -webkit-transform: scaleY(.98);
3264
2336
  transform: scaleY(.98);
3265
- -webkit-transform-origin: 50% 100%;
3266
- transform-origin: 50% 100%
2337
+ -webkit-transform-origin: 50% 0;
2338
+ transform-origin: 50% 0
3267
2339
  }
3268
2340
 
3269
2341
  80% {
3270
2342
  -webkit-transform: scaleY(1.01);
3271
2343
  transform: scaleY(1.01);
3272
- -webkit-transform-origin: 50% 100%;
3273
- transform-origin: 50% 100%
2344
+ -webkit-transform-origin: 50% 0;
2345
+ transform-origin: 50% 0
3274
2346
  }
3275
2347
 
3276
2348
  99% {
3277
2349
  -webkit-transform: scaleY(1);
3278
2350
  transform: scaleY(1);
3279
- -webkit-transform-origin: 50% 100%;
3280
- transform-origin: 50% 100%
2351
+ -webkit-transform-origin: 50% 0;
2352
+ transform-origin: 50% 0
3281
2353
  }
3282
2354
 
3283
2355
  to {
@@ -3286,16 +2358,7 @@ to {
3286
2358
  }
3287
2359
  }
3288
2360
 
3289
- .pullDown {
3290
- -webkit-transform-origin: 50% 0;
3291
- transform-origin: 50% 0;
3292
- -webkit-animation-name: pullDown;
3293
- animation-name: pullDown;
3294
- -webkit-animation-timing-function: ease-out;
3295
- animation-timing-function: ease-out
3296
- }
3297
-
3298
- @-webkit-keyframes pullDown {
2361
+ @keyframes pullDown {
3299
2362
  0%,40%,60%,80%,99% {
3300
2363
  -webkit-animation-timing-function: ease-out;
3301
2364
  animation-timing-function: ease-out
@@ -3338,192 +2401,1147 @@ animation-timing-function: ease-out
3338
2401
  transform-origin: 50% 0
3339
2402
  }
3340
2403
 
3341
- to {
3342
- -webkit-transform: none;
3343
- transform: none
3344
- }
2404
+ to {
2405
+ -webkit-transform: none;
2406
+ transform: none
2407
+ }
2408
+ }
2409
+
2410
+
2411
+ .twisterInDown {
2412
+ -webkit-animation-name: twisterInDown;
2413
+ animation-name: twisterInDown;
2414
+ -webkit-animation-timing-function: ease-out;
2415
+ animation-timing-function: ease-out
2416
+ }
2417
+
2418
+ @-webkit-keyframes twisterInDown {
2419
+ 0% {
2420
+ opacity: 0;
2421
+ -webkit-transform: scale(0) rotate(1turn) translateY(-100%);
2422
+ transform: scale(0) rotate(1turn) translateY(-100%);
2423
+ -webkit-transform-origin: 0 100%;
2424
+ transform-origin: 0 100%
2425
+ }
2426
+
2427
+ 30% {
2428
+ -webkit-transform: scale(0) rotate(1turn) translateY(-100%);
2429
+ transform: scale(0) rotate(1turn) translateY(-100%);
2430
+ -webkit-transform-origin: 0 100%;
2431
+ transform-origin: 0 100%
2432
+ }
2433
+
2434
+ to {
2435
+ opacity: 1;
2436
+ -webkit-transform: scale(1) rotate(0deg) translateY(0);
2437
+ transform: scale(1) rotate(0deg) translateY(0);
2438
+ -webkit-transform-origin: 100% 100%;
2439
+ transform-origin: 100% 100%
2440
+ }
2441
+ }
2442
+
2443
+ @keyframes twisterInDown {
2444
+ 0% {
2445
+ opacity: 0;
2446
+ -webkit-transform: scale(0) rotate(1turn) translateY(-100%);
2447
+ transform: scale(0) rotate(1turn) translateY(-100%);
2448
+ -webkit-transform-origin: 0 100%;
2449
+ transform-origin: 0 100%
2450
+ }
2451
+
2452
+ 30% {
2453
+ -webkit-transform: scale(0) rotate(1turn) translateY(-100%);
2454
+ transform: scale(0) rotate(1turn) translateY(-100%);
2455
+ -webkit-transform-origin: 0 100%;
2456
+ transform-origin: 0 100%
2457
+ }
2458
+
2459
+ to {
2460
+ opacity: 1;
2461
+ -webkit-transform: scale(1) rotate(0deg) translateY(0);
2462
+ transform: scale(1) rotate(0deg) translateY(0);
2463
+ -webkit-transform-origin: 100% 100%;
2464
+ transform-origin: 100% 100%
2465
+ }
2466
+ }
2467
+ @keyframes float2 {
2468
+ 0% {
2469
+ -webkit-transform: translateZ(0);
2470
+ transform: translateZ(0)
2471
+ }
2472
+
2473
+ 25% {
2474
+ -webkit-transform: translate3d(-10%,0,0);
2475
+ transform: translate3d(-10%,0,0)
2476
+ }
2477
+
2478
+ 75% {
2479
+ -webkit-transform: translate3d(10%,0,0);
2480
+ transform: translate3d(10%,0,0)
2481
+ }
2482
+
2483
+ to {
2484
+ -webkit-transform: translateZ(0);
2485
+ transform: translateZ(0)
2486
+ }
2487
+ }
2488
+
2489
+ .float {
2490
+ -webkit-animation-name: float;
2491
+ animation-name: float;
2492
+ -webkit-animation-timing-function: ease-in-out;
2493
+ animation-timing-function: ease-in-out
2494
+ }
2495
+
2496
+ @-webkit-keyframes float {
2497
+ 0% {
2498
+ -webkit-transform: translateZ(0);
2499
+ transform: translateZ(0)
2500
+ }
2501
+
2502
+ 25% {
2503
+ -webkit-transform: translate3d(0,-10%,0);
2504
+ transform: translate3d(0,-10%,0)
2505
+ }
2506
+
2507
+ 75% {
2508
+ -webkit-transform: translate3d(0,10%,0);
2509
+ transform: translate3d(0,10%,0)
2510
+ }
2511
+
2512
+ to {
2513
+ -webkit-transform: translateZ(0);
2514
+ transform: translateZ(0)
2515
+ }
2516
+ }
2517
+
2518
+ @keyframes float {
2519
+ 0% {
2520
+ -webkit-transform: translateZ(0);
2521
+ transform: translateZ(0)
2522
+ }
2523
+
2524
+ 25% {
2525
+ -webkit-transform: translate3d(0,-10%,0);
2526
+ transform: translate3d(0,-10%,0)
2527
+ }
2528
+
2529
+ 75% {
2530
+ -webkit-transform: translate3d(0,10%,0);
2531
+ transform: translate3d(0,10%,0)
2532
+ }
2533
+
2534
+ to {
2535
+ -webkit-transform: translateZ(0);
2536
+ transform: translateZ(0)
2537
+ }
2538
+ }
2539
+
2540
+ .ele-effect {
2541
+ will-change: transform;
2542
+ }
2543
+
2544
+ .ele-effect .effect-wrap {
2545
+ position: relative;
2546
+ width: 100%;
2547
+ height: 100%;
2548
+ }
2549
+
2550
+ .particle {
2551
+ position: absolute;
2552
+ background-repeat: no-repeat;
2553
+ background-size: contain;
2554
+ animation-name: falling;
2555
+ animation-timing-function: linear;
2556
+ animation-iteration-count: infinite;
2557
+ will-change: transform;
2558
+ }
2559
+
2560
+ @keyframes falling {
2561
+ 0% {
2562
+ transform: translateY(0) rotate(0deg);
2563
+ opacity: 1;
2564
+ }
2565
+ 80% {
2566
+ opacity: 0.8;
2567
+ }
2568
+ 100% {
2569
+ transform: translateY(100vh) rotate(360deg);
2570
+ opacity: 0;
2571
+ }
2572
+ }
2573
+ .ele-lottie .ele-lotwrap {
2574
+ overflow: hidden
2575
+ }
2576
+
2577
+ .ele-effect .effect-wrap {
2578
+ position: relative;
2579
+ overflow: hidden;
2580
+ width: 100%;
2581
+ height: 100%
2582
+ }
2583
+
2584
+ .ele-effect .e-small {
2585
+ position: absolute;
2586
+ width: 24px;
2587
+ height: 24px;
2588
+ background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
2589
+ background-size: cover;
2590
+ background-repeat: no-repeat;
2591
+ -webkit-transform-origin: center;
2592
+ transform-origin: center;
2593
+ -webkit-animation: snow 5s linear infinite;
2594
+ animation: snow 5s linear infinite
2595
+ }.form-submit {
2596
+ cursor: pointer;
2597
+ transition: all 0.2s;
2598
+ outline: none;
2599
+ border: none;
2600
+ }
2601
+
2602
+ .form-submit:hover {
2603
+ opacity: 0.9;
2604
+ transform: translateY(-1px);
2605
+ }
2606
+
2607
+ .form-submit:active {
2608
+ opacity: 0.8;
2609
+ transform: translateY(0);
2610
+ }
2611
+
2612
+ .form-submit:disabled {
2613
+ opacity: 0.6;
2614
+ cursor: not-allowed;
2615
+ transform: none !important;
2616
+ }
2617
+
2618
+ .f-submit {
2619
+ position: relative;
2620
+ display: block
2621
+ }
2622
+
2623
+ .f-submit .ani-wrap {
2624
+ width: 100%;
2625
+ height: 100%;
2626
+ padding: 10px;
2627
+ overflow: hidden;
2628
+ position: relative
3345
2629
  }
3346
2630
 
3347
- @keyframes pullDown {
3348
- 0%,40%,60%,80%,99% {
3349
- -webkit-animation-timing-function: ease-out;
3350
- animation-timing-function: ease-out
2631
+ .f-submit .f-ovh {
2632
+ position: absolute;
2633
+ left: 50%;
2634
+ top: 50%;
2635
+ transform: translate(-50%,-50%)
3351
2636
  }
3352
2637
 
3353
- 0% {
2638
+ .form-submit:disabled {
2639
+ opacity: 0.7;
2640
+ cursor: not-allowed;
2641
+ }/* Iconfont definition */
2642
+ .icon-danmuliebiao1:before {
2643
+ content: "\E68A";
2644
+ }
2645
+
2646
+ .icon-cuowu2:before {
2647
+ content: "\E65E";
2648
+ }
2649
+
2650
+ i {
2651
+ font-style: normal;
2652
+ }
2653
+
2654
+ .v-modal {
2655
+ position: fixed;
2656
+ left: 0;
2657
+ top: 0;
2658
+ width: 100%;
2659
+ height: 100%;
2660
+ opacity: .5;
2661
+ background: #000;
2662
+ }
2663
+ /* 底部工具栏样式 */
2664
+ #toolbarNew {
2665
+ position: fixed;
2666
+ left: 0;
2667
+ bottom: 0;
2668
+ width: 100%;
2669
+ padding: 12px 0;
2670
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
2671
+ z-index: 100;
2672
+ }
2673
+
2674
+ .toolbar {
2675
+ display: flex;
2676
+ align-items: center;
2677
+ padding: 0 10px;
2678
+ }
2679
+
2680
+ .bar-left {
2681
+ position: relative;
2682
+ flex: 1;
2683
+ }
2684
+
2685
+ .bar-mess {
2686
+ width: 100%;
2687
+ height: 36px;
2688
+ line-height: 36px;
2689
+ font-size: 14px;
2690
+ color: #ccc;
2691
+ padding: 0 8px;
2692
+ border-radius: 18px;
2693
+ border: none;
2694
+ -webkit-appearance: none;
2695
+ background-color: rgba(0, 0, 0, 0.28);
2696
+ }
2697
+
2698
+ .bar-mess::placeholder {
2699
+ color: rgba(255, 255, 255, 0.7);
2700
+ }
2701
+
2702
+ .bar-left .iconfont {
2703
+ position: absolute;
2704
+ right: 10px;
2705
+ top: 50%;
2706
+ transform: translateY(-50%);
2707
+ color: #f2f2f2;
2708
+ font-size: 16px;
2709
+ cursor: pointer;
2710
+ z-index: 2;
2711
+ padding: 5px;
2712
+ }
2713
+
2714
+ /* 关闭弹幕按钮样式 */
2715
+ .toolbar-close {
2716
+ position: absolute;
2717
+ left: 10px;
2718
+ transform: translateY(-50%);
2719
+ display: flex;
2720
+ align-items: center;
2721
+ cursor: pointer;
2722
+ z-index: 2;
2723
+ }
2724
+
2725
+ .toolbar-close img {
2726
+ display: block;
2727
+ width: 36px;
2728
+ height: 36px;
2729
+ cursor: pointer;
2730
+ }
2731
+
2732
+ /* 弹幕容器样式 */
2733
+ .bullet-container {
2734
+ position: fixed;
2735
+ left: 10px;
2736
+ right: 10px;
2737
+ height: 120px;
2738
+ overflow: hidden;
2739
+ z-index: 99;
2740
+ pointer-events: none;
2741
+ }
2742
+
2743
+ .bullet-item {
2744
+ position: absolute;
2745
+ left: 0;
2746
+ bottom: 0;
2747
+ padding: 5px 10px;
2748
+ border-radius: 15px;
2749
+ font-size: 14px;
2750
+ white-space: nowrap;
2751
+ animation: bulletMove linear;
2752
+ animation-fill-mode: forwards;
2753
+ will-change: transform;
2754
+ display: inline-block;
2755
+ max-width: 90%;
2756
+ }
2757
+
2758
+ @keyframes bulletMove {
2759
+ 0% {
2760
+ transform: translateY(0);
2761
+ opacity: 1;
2762
+ }
2763
+ 100% {
2764
+ transform: translateY(calc(-1 * 150px));
2765
+ opacity: 0;
2766
+ }
2767
+ }
2768
+
2769
+ /* 弹幕输入弹窗样式 */
2770
+ .popup-overlay {
2771
+ position: fixed;
2772
+ top: 0;
2773
+ left: 0;
2774
+ right: 0;
2775
+ bottom: 0;
2776
+ background: rgba(0, 0, 0, 0.5);
2777
+ display: flex;
2778
+ justify-content: center;
2779
+ align-items: flex-end;
2780
+ z-index: 200;
2781
+ }
2782
+
2783
+ #index .mint-popup {
2784
+ background-color: transparent;
2785
+ }
2786
+
2787
+ .mint-popup {
2788
+ position: fixed;
2789
+ background: #fff;
2790
+ top: 50%;
2791
+ left: 50%;
2792
+ transform: translate3d(-50%, -50%, 0);
2793
+ -webkit-backface-visibility: hidden;
2794
+ backface-visibility: hidden;
2795
+ transition: .2s ease-out;
2796
+ }
2797
+
2798
+ .bar-messwin {
2799
+ width: 309px;
2800
+ height: 341px;
2801
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/mess-bg.png') no-repeat 50%;
2802
+ background-size: 100% 100%;
2803
+ position: relative;
2804
+ display: flex;
2805
+ flex-direction: column;
2806
+ align-items: center;
2807
+ margin-bottom: 20px;
2808
+ }
2809
+
2810
+ .bar-messwin .mess-logo {
2811
+ width: 171px;
2812
+ height: 110px;
2813
+ margin-top: -64px;
2814
+ margin-left: 11px;
2815
+ }
2816
+
2817
+ .bar-messwin .mess-title {
2818
+ margin-top: 12px;
2819
+ font-weight: 600;
2820
+ font-size: 21px;
2821
+ color: #333;
2822
+ }
2823
+
2824
+ .bar-messwin .mess-input {
2825
+ width: 267px;
2826
+ height: 43px;
2827
+ background: #fff;
2828
+ border-radius: 9px;
2829
+ border: 1px solid rgba(237,85,102,0.4);
2830
+ margin-top: 12px;
2831
+ display: flex;
2832
+ align-items: center;
2833
+ justify-content: center;
2834
+ padding: 0 13px;
2835
+ }
2836
+
2837
+ .bar-messwin .mess-input input {
2838
+ width: 100%;
2839
+ font-size: 17px;
2840
+ font-family: PingFang SC;
2841
+ font-weight: 400;
2842
+ color: #333;
2843
+ border: none;
2844
+ outline: none;
2845
+ background: transparent;
2846
+ }
2847
+
2848
+ .bar-messwin .mess-input input::-webkit-input-placeholder {
2849
+ color: #999;
2850
+ }
2851
+
2852
+ .bar-messwin .mess-input input::-ms-input-placeholder {
2853
+ color: #999;
2854
+ }
2855
+
2856
+ .bar-messwin .mess-input input::placeholder {
2857
+ color: #999;
2858
+ }
2859
+
2860
+ .bar-messwin .mess-textarea {
2861
+ width: 267px;
2862
+ height: 85px;
2863
+ background: #fff;
2864
+ border-radius: 9px;
2865
+ border: 1px solid rgba(237,85,102,0.4);
2866
+ display: flex;
2867
+ padding: 9px 13px;
2868
+ justify-content: space-between;
2869
+ margin-top: 12px;
2870
+ position: relative;
2871
+ }
2872
+
2873
+ .bar-messwin .mess-textarea textarea {
2874
+ width: 203px;
2875
+ height: 68px;
2876
+ font-size: 17px;
2877
+ resize: none;
2878
+ outline: none;
2879
+ border: none;
2880
+ background: transparent;
2881
+ color: #333;
2882
+ font-family: PingFang SC;
2883
+ }
2884
+
2885
+ .bar-messwin .mess-textarea textarea::-webkit-input-placeholder {
2886
+ color: #999;
2887
+ }
2888
+
2889
+ .bar-messwin .mess-textarea textarea::-ms-input-placeholder {
2890
+ color: #999;
2891
+ }
2892
+
2893
+ .bar-messwin .mess-textarea textarea::placeholder {
2894
+ color: #999;
2895
+ }
2896
+
2897
+ .bar-messwin .mess-textarea img {
2898
+ width: 26px;
2899
+ height: 26px;
2900
+ cursor: pointer;
2901
+ }
2902
+
2903
+ .bar-messwin .mess-textarea .wish-dropdown {
2904
+ position: absolute;
2905
+ top: 43px;
2906
+ right: 0;
2907
+ width: 267px;
2908
+ background: #fff;
2909
+ border-radius: 9px;
2910
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
2911
+ z-index: 10;
2912
+ max-height: 213px;
2913
+ overflow-y: auto;
2914
+ border: 1px solid rgba(237,85,102,0.2);
2915
+ padding: 0 13px;
2916
+ }
2917
+
2918
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar {
2919
+ width: 3px;
2920
+ background-color: transparent;
2921
+ display: block;
2922
+ }
2923
+
2924
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-thumb {
2925
+ background-color: #ccc;
2926
+ border-radius: 9px;
2927
+ min-height: 32px;
2928
+ }
2929
+
2930
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-track {
2931
+ background-color: transparent;
2932
+ border-radius: 3px;
2933
+ margin: 4px 0;
2934
+ }
2935
+
2936
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item {
2937
+ padding: 11px 0;
2938
+ display: flex;
2939
+ align-items: flex-start;
2940
+ cursor: pointer;
2941
+ transition: background-color 0.2s;
2942
+ border-bottom: 1px solid rgba(0,0,0,0.05);
2943
+ }
2944
+
2945
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item:last-child {
2946
+ border-bottom: none;
2947
+ }
2948
+
2949
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-dot {
2950
+ color: #ff4874;
2951
+ margin-right: 5px;
2952
+ font-size: 11px;
2953
+ line-height: 21px;
2954
+ }
2955
+
2956
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-text {
2957
+ font-size: 15px;
2958
+ color: #333;
2959
+ line-height: 21px;
2960
+ text-align: left;
2961
+ }
2962
+
2963
+ .bar-messwin .bar-m-sub {
2964
+ width: 267px;
2965
+ height: 43px;
2966
+ background: linear-gradient(270deg,#ff4874,#ff9061);
2967
+ border-radius: 68px;
2968
+ font-size: 17px;
2969
+ font-family: PingFang SC;
2970
+ font-weight: 400;
2971
+ color: #fff;
2972
+ margin-top: 26px;
2973
+ border: none;
2974
+ outline: none;
2975
+ cursor: pointer;
2976
+ display: flex;
2977
+ align-items: center;
2978
+ justify-content: center;
2979
+ }
2980
+
2981
+ .bar-messwin .icon-cuowu2, .give-gift .icon-cuowu2 {
2982
+ position: absolute;
2983
+ bottom: -60px;
2984
+ right: 50%;
2985
+ transform: translateX(50%);
2986
+ font-size: 28px;
2987
+ color: #fff;
2988
+ cursor: pointer;
2989
+ }
2990
+
2991
+ /* 提示弹窗样式 */
2992
+ .mint-msgbox-wrapper {
2993
+ position: fixed;
2994
+ top: 0;
2995
+ left: 0;
2996
+ right: 0;
2997
+ bottom: 0;
2998
+ background-color: rgba(0,0,0,0.5);
2999
+ z-index: 2005;
3000
+ display: flex;
3001
+ justify-content: center;
3002
+ align-items: center;
3003
+ }
3004
+
3005
+ .mint-msgbox {
3006
+ position: relative;
3007
+ background-color: #fff;
3008
+ width: 85%;
3009
+ border-radius: 3px;
3010
+ font-size: 17px;
3011
+ overflow: hidden;
3012
+ }
3013
+
3014
+ .mint-msgbox-header {
3015
+ padding: 16px 0 0;
3016
+ }
3017
+
3018
+ .mint-msgbox-content {
3019
+ padding: 11px 21px 16px;
3020
+ border-bottom: 1px solid #ddd;
3021
+ min-height: 38px;
3022
+ position: relative;
3023
+ }
3024
+
3025
+ .mint-msgbox-title {
3026
+ text-align: center;
3027
+ padding-left: 0;
3028
+ margin-bottom: 0;
3029
+ font-size: 17px;
3030
+ font-weight: 700;
3031
+ color: #333;
3032
+ }
3033
+
3034
+ .mint-msgbox-message {
3035
+ color: #999;
3036
+ margin: 0;
3037
+ text-align: center;
3038
+ line-height: 38px;
3039
+ }
3040
+
3041
+ .mint-msgbox-btns {
3042
+ display: flex;
3043
+ height: 43px;
3044
+ line-height: 43px;
3045
+ }
3046
+
3047
+ .mint-msgbox-btn {
3048
+ line-height: 37px;
3049
+ display: block;
3050
+ background-color: #fff;
3051
+ flex: 1;
3052
+ margin: 0;
3053
+ border: 0;
3054
+ }
3055
+
3056
+ .mint-msgbox-confirm {
3057
+ color: #26a2ff;
3058
+ width: 100%;
3059
+ }
3060
+ /* 右侧按钮区域样式 */
3061
+ #toolbarNew .toolbar .bar-right {
3062
+ margin-left: 7px;
3063
+ font-size: 0;
3064
+ display: flex;
3065
+ align-items: center;
3066
+ }
3067
+
3068
+ #toolbarNew .toolbar .bar-right.move-left {
3069
+ right: 64px;
3070
+ }
3071
+
3072
+ #toolbarNew .toolbar .bar-right .bar-r-com,
3073
+ #toolbarNew .toolbar .bar-right>img {
3074
+ display: inline-block;
3075
+ vertical-align: middle;
3076
+ }
3077
+
3078
+ #toolbarNew .toolbar .bar-right .bar-r-com {
3079
+ margin-left: 8px;
3080
+ cursor: pointer;
3081
+ }
3082
+
3083
+ #toolbarNew .toolbar .bar-right .bar-r-com.bar-r-gift {
3084
+ width: 36px;
3085
+ height: 36px;
3086
+ transform-origin: center bottom;
3087
+ animation: giftJump 3s ease infinite;
3088
+ }
3089
+
3090
+ @keyframes giftJump {
3091
+ 0%, 24%, 48%, to {
3092
+ transform: translateZ(0);
3093
+ }
3094
+ 12% {
3095
+ transform: translate3d(0, -10px, 0);
3096
+ }
3097
+ 36% {
3098
+ transform: translate3d(0, -10px, 0);
3099
+ }
3100
+ }
3101
+
3102
+ #toolbarNew .toolbar .bar-right .bar-r-com:first-child {
3103
+ margin-left: 0;
3104
+ }
3105
+
3106
+ #toolbarNew .toolbar .bar-right>img {
3107
+ position: relative;
3108
+ z-index: 1;
3109
+ width: 26px;
3110
+ height: 26px;
3111
+ }
3112
+
3113
+ #toolbarNew .toolbar .bar-right .bar-heart {
3114
+ position: relative;
3115
+ width: 36px;
3116
+ height: 36px;
3117
+ text-align: center;
3118
+ }
3119
+
3120
+ #toolbarNew .toolbar .bar-right .bar-heart .bar-praise {
3121
+ position: absolute;
3122
+ max-width: 36px;
3123
+ height: 15px;
3124
+ line-height: 15px;
3125
+ right: 0;
3126
+ top: 0;
3127
+ z-index: 3;
3128
+ font-size: 10px;
3129
+ color: #fff;
3130
+ border-radius: 6px;
3131
+ padding: 0 4px;
3132
+ box-sizing: border-box;
3133
+ white-space: nowrap;
3134
+ background-color: #f38200;
3135
+ transform: translateX(40%);
3136
+ }
3137
+
3138
+ #toolbarNew .toolbar .bar-right .bar-zan {
3139
+ position: relative;
3140
+ z-index: 2;
3141
+ height: 33px;
3142
+ width: 33px;
3143
+ box-sizing: border-box;
3144
+ }
3145
+
3146
+ #toolbarNew .toolbar .bar-right .bar-zan .ani-num {
3147
+ position: absolute;
3148
+ top: 0;
3149
+ left: 10px;
3354
3150
  opacity: 0;
3355
- -webkit-transform: scaleY(.1);
3356
- transform: scaleY(.1);
3357
- -webkit-transform-origin: 50% 0;
3358
- transform-origin: 50% 0
3359
- }
3360
-
3361
- 40% {
3362
- opacity: 1;
3363
- -webkit-transform: scaleY(1.02);
3364
- transform: scaleY(1.02);
3365
- -webkit-transform-origin: 50% 0;
3366
- transform-origin: 50% 0
3367
- }
3368
-
3369
- 60% {
3370
- -webkit-transform: scaleY(.98);
3371
- transform: scaleY(.98);
3372
- -webkit-transform-origin: 50% 0;
3373
- transform-origin: 50% 0
3374
- }
3375
-
3376
- 80% {
3377
- -webkit-transform: scaleY(1.01);
3378
- transform: scaleY(1.01);
3379
- -webkit-transform-origin: 50% 0;
3380
- transform-origin: 50% 0
3381
- }
3382
-
3383
- 99% {
3384
- -webkit-transform: scaleY(1);
3385
- transform: scaleY(1);
3386
- -webkit-transform-origin: 50% 0;
3387
- transform-origin: 50% 0
3388
- }
3389
-
3390
- to {
3391
- -webkit-transform: none;
3392
- transform: none
3393
- }
3394
- }
3395
-
3396
-
3397
- .twisterInDown {
3398
- -webkit-animation-name: twisterInDown;
3399
- animation-name: twisterInDown;
3400
- -webkit-animation-timing-function: ease-out;
3401
- animation-timing-function: ease-out
3402
- }
3403
-
3404
- @-webkit-keyframes twisterInDown {
3405
- 0% {
3151
+ font-size: 15px;
3152
+ color: #f07a87;
3153
+ }
3154
+
3155
+ #toolbarNew .toolbar .bar-right .bar-zan .stop-longtap {
3156
+ position: absolute;
3157
+ left: 0;
3158
+ right: 0;
3159
+ bottom: 0;
3160
+ top: 0;
3161
+ z-index: 1;
3162
+ }
3163
+
3164
+ #toolbarNew .toolbar .bar-right .bar-zan img {
3165
+ width: 36px;
3166
+ height: 36px;
3167
+ }
3168
+
3169
+ #toolbarNew .toolbar .bar-right .bar-zan.active .ani-num {
3170
+ z-index: 2;
3171
+ animation: praise 1.2s;
3172
+ animation-fill-mode: both;
3173
+ }
3174
+
3175
+ @keyframes praise {
3176
+ 0% {
3177
+ opacity: 1;
3178
+ }
3179
+ 50% {
3180
+ opacity: 1;
3181
+ transform: translate3d(0, -35px, 0);
3182
+ }
3183
+ to {
3406
3184
  opacity: 0;
3407
- -webkit-transform: scale(0) rotate(1turn) translateY(-100%);
3408
- transform: scale(0) rotate(1turn) translateY(-100%);
3409
- -webkit-transform-origin: 0 100%;
3410
- transform-origin: 0 100%
3185
+ transform: translate3d(0, -35px, 0);
3186
+ }
3187
+ }
3188
+
3189
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap {
3190
+ transform: scale(0.85);
3191
+ }
3192
+
3193
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:first-of-type {
3194
+ animation: jump .6s ease-out;
3195
+ }
3196
+
3197
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(2) {
3198
+ animation: jump2 .6s ease-out;
3199
+ }
3200
+
3201
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(3) {
3202
+ animation: jump3 .6s ease-out;
3203
+ }
3204
+
3205
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(4) {
3206
+ animation: jump4 .6s ease-out;
3207
+ }
3208
+
3209
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(5) {
3210
+ animation: jump5 .6s ease-out;
3211
+ }
3212
+
3213
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(6) {
3214
+ animation: jump6 .6s ease-out;
3215
+ }
3216
+
3217
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(7) {
3218
+ animation: jump7 .6s ease-out;
3219
+ }
3220
+
3221
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(8) {
3222
+ animation: jump8 .6s ease-out;
3223
+ }
3224
+
3225
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap {
3226
+ position: absolute;
3227
+ left: 0;
3228
+ top: 0;
3229
+ right: 0;
3230
+ bottom: 0;
3231
+ pointer-events: none;
3232
+ overflow: visible;
3233
+ }
3234
+
3235
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span {
3236
+ position: absolute;
3237
+ width: 6px;
3238
+ height: 6px;
3239
+ border-radius: 50%;
3240
+ opacity: 0;
3241
+ }
3242
+
3243
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:first-of-type {
3244
+ left: 50%;
3245
+ top: -8px;
3246
+ transform: translate3d(-50%, 0, 0);
3247
+ background-color: #b3e5c8;
3248
+ }
3249
+
3250
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(2) {
3251
+ left: -8px;
3252
+ top: 50%;
3253
+ transform: translate3d(0, -50%, 0);
3254
+ background-color: #f4ba31;
3255
+ }
3256
+
3257
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(3) {
3258
+ left: 50%;
3259
+ bottom: -8px;
3260
+ transform: translate3d(-50%, 0, 0);
3261
+ background-color: #339fef;
3262
+ }
3263
+
3264
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(4) {
3265
+ top: 50%;
3266
+ right: -8px;
3267
+ transform: translate3d(0, -50%, 0);
3268
+ background-color: #e2264d;
3269
+ }
3270
+
3271
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(5) {
3272
+ left: -5px;
3273
+ top: 0;
3274
+ transform: translate3d(0, -50%, 0);
3275
+ background-color: #a08880;
3276
+ }
3277
+
3278
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(6) {
3279
+ left: -5px;
3280
+ bottom: 0;
3281
+ transform: translate3d(0, 50%, 0);
3282
+ background-color: #43c1b5;
3283
+ }
3284
+
3285
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(7) {
3286
+ right: -5px;
3287
+ bottom: 0;
3288
+ transform: translate3d(0, 50%, 0);
3289
+ background-color: #f5be3b;
3290
+ }
3291
+
3292
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(8) {
3293
+ right: -5px;
3294
+ top: 0;
3295
+ transform: translate3d(0, -50%, 0);
3296
+ background-color: coral;
3297
+ }
3298
+
3299
+ @keyframes jump {
3300
+ 0% {
3301
+ opacity: 1;
3302
+ transform: translate3d(-50%, 0, 0) scale(1);
3303
+ }
3304
+ 40% {
3305
+ transform: translate3d(-50%, -100%, 0) scale(0.7);
3306
+ }
3307
+ to {
3308
+ opacity: 1;
3309
+ transform: translate3d(-50%, -150%, 0) scale(0);
3310
+ }
3311
+ }
3312
+
3313
+ @keyframes jump2 {
3314
+ 0% {
3315
+ opacity: 1;
3316
+ transform: translate3d(0, -50%, 0) scale(1);
3317
+ }
3318
+ 40% {
3319
+ transform: translate3d(-100%, -50%, 0) scale(0.7);
3320
+ }
3321
+ to {
3322
+ opacity: 1;
3323
+ transform: translate3d(-150%, -50%, 0) scale(0);
3324
+ }
3325
+ }
3326
+
3327
+ @keyframes jump3 {
3328
+ 0% {
3329
+ opacity: 1;
3330
+ transform: translate3d(-50%, 0, 0) scale(1);
3331
+ }
3332
+ 40% {
3333
+ transform: translate3d(-50%, 100%, 0) scale(0.7);
3334
+ }
3335
+ to {
3336
+ opacity: 1;
3337
+ transform: translate3d(-50%, 150%, 0) scale(0);
3338
+ }
3411
3339
  }
3412
-
3413
- 30% {
3414
- -webkit-transform: scale(0) rotate(1turn) translateY(-100%);
3415
- transform: scale(0) rotate(1turn) translateY(-100%);
3416
- -webkit-transform-origin: 0 100%;
3417
- transform-origin: 0 100%
3340
+
3341
+ @keyframes jump4 {
3342
+ 0% {
3343
+ opacity: 1;
3344
+ transform: translate3d(0, -50%, 0) scale(1);
3345
+ }
3346
+ 40% {
3347
+ transform: translate3d(100%, -50%, 0) scale(0.7);
3348
+ }
3349
+ to {
3350
+ opacity: 1;
3351
+ transform: translate3d(150%, -50%, 0) scale(0);
3352
+ }
3418
3353
  }
3419
-
3420
- to {
3354
+
3355
+ @keyframes jump5 {
3356
+ 0% {
3421
3357
  opacity: 1;
3422
- -webkit-transform: scale(1) rotate(0deg) translateY(0);
3423
- transform: scale(1) rotate(0deg) translateY(0);
3424
- -webkit-transform-origin: 100% 100%;
3425
- transform-origin: 100% 100%
3358
+ transform: translate3d(0, -50%, 0) scale(1);
3359
+ }
3360
+ 40% {
3361
+ transform: translate3d(-80%, -80%, 0) scale(0.7);
3362
+ }
3363
+ to {
3364
+ opacity: 1;
3365
+ transform: translate3d(-130%, -130%, 0) scale(0);
3366
+ }
3426
3367
  }
3427
- }
3428
-
3429
- @keyframes twisterInDown {
3430
- 0% {
3431
- opacity: 0;
3432
- -webkit-transform: scale(0) rotate(1turn) translateY(-100%);
3433
- transform: scale(0) rotate(1turn) translateY(-100%);
3434
- -webkit-transform-origin: 0 100%;
3435
- transform-origin: 0 100%
3368
+
3369
+ @keyframes jump6 {
3370
+ 0% {
3371
+ opacity: 1;
3372
+ transform: translate3d(0, 50%, 0) scale(1);
3373
+ }
3374
+ 40% {
3375
+ transform: translate3d(-80%, 80%, 0) scale(0.7);
3376
+ }
3377
+ to {
3378
+ opacity: 1;
3379
+ transform: translate3d(-130%, 130%, 0) scale(0);
3380
+ }
3436
3381
  }
3437
-
3438
- 30% {
3439
- -webkit-transform: scale(0) rotate(1turn) translateY(-100%);
3440
- transform: scale(0) rotate(1turn) translateY(-100%);
3441
- -webkit-transform-origin: 0 100%;
3442
- transform-origin: 0 100%
3382
+
3383
+ @keyframes jump7 {
3384
+ 0% {
3385
+ opacity: 1;
3386
+ transform: translate3d(0, 50%, 0) scale(1);
3387
+ }
3388
+ 40% {
3389
+ transform: translate3d(80%, 80%, 0) scale(0.7);
3390
+ }
3391
+ to {
3392
+ opacity: 1;
3393
+ transform: translate3d(130%, 130%, 0) scale(0);
3394
+ }
3443
3395
  }
3444
-
3445
- to {
3396
+
3397
+ @keyframes jump8 {
3398
+ 0% {
3446
3399
  opacity: 1;
3447
- -webkit-transform: scale(1) rotate(0deg) translateY(0);
3448
- transform: scale(1) rotate(0deg) translateY(0);
3449
- -webkit-transform-origin: 100% 100%;
3450
- transform-origin: 100% 100%
3400
+ transform: translate3d(0, 50%, 0) scale(1);
3401
+ }
3402
+ 40% {
3403
+ transform: translate3d(80%, -80%, 0) scale(0.7);
3404
+ }
3405
+ to {
3406
+ opacity: 1;
3407
+ transform: translate3d(130%, -130%, 0) scale(0);
3408
+ }
3451
3409
  }
3452
- }
3453
- @keyframes float2 {
3454
- 0% {
3455
- -webkit-transform: translateZ(0);
3456
- transform: translateZ(0)
3410
+
3411
+ /* 礼物弹窗样式 */
3412
+ .give-gift {
3413
+ position: fixed;
3414
+ top: 50%;
3415
+ left: 50%;
3416
+ transform: translate(-50%, -50%);
3417
+ z-index: 2004;
3418
+ background: white;
3419
+ padding: 20px;
3420
+ border-radius: 10px;
3421
+ text-align: center;
3457
3422
  }
3458
-
3459
- 25% {
3460
- -webkit-transform: translate3d(-10%,0,0);
3461
- transform: translate3d(-10%,0,0)
3423
+
3424
+ .give-gift .back {
3425
+ position: absolute;
3426
+ top: 10px;
3427
+ left: 10px;
3428
+ cursor: pointer;
3462
3429
  }
3463
-
3464
- 75% {
3465
- -webkit-transform: translate3d(10%,0,0);
3466
- transform: translate3d(10%,0,0)
3430
+
3431
+ .give-gift img {
3432
+ max-width: 300px;
3433
+ max-height: 300px;
3434
+ margin-top: 20px;
3467
3435
  }
3468
-
3469
- to {
3470
- -webkit-transform: translateZ(0);
3471
- transform: translateZ(0)
3436
+
3437
+ /* 留言成功弹窗样式 */
3438
+ .mess-success-popup {
3439
+ position: fixed;
3440
+ top: 0;
3441
+ left: 0;
3442
+ right: 0;
3443
+ bottom: 0;
3444
+ background-color: rgba(0, 0, 0, 0.5);
3445
+ z-index: 2003;
3446
+ display: flex;
3447
+ justify-content: center;
3448
+ align-items: center;
3472
3449
  }
3473
- }
3474
-
3475
- .float {
3476
- -webkit-animation-name: float;
3477
- animation-name: float;
3478
- -webkit-animation-timing-function: ease-in-out;
3479
- animation-timing-function: ease-in-out
3480
- }
3481
-
3482
- @-webkit-keyframes float {
3483
- 0% {
3484
- -webkit-transform: translateZ(0);
3485
- transform: translateZ(0)
3450
+
3451
+ .mess-success-popup .gift-popup {
3452
+ width: 300px;
3453
+ height: 200px;
3454
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
3455
+ border-radius: 10px;
3456
+ padding: 20px;
3457
+ text-align: center;
3458
+ position: relative;
3486
3459
  }
3487
-
3488
- 25% {
3489
- -webkit-transform: translate3d(0,-10%,0);
3490
- transform: translate3d(0,-10%,0)
3460
+
3461
+ .mess-success-popup .gift-popup .icon-cuowu2 {
3462
+ position: absolute;
3463
+ top: 10px;
3464
+ right: 10px;
3465
+ cursor: pointer;
3491
3466
  }
3492
-
3493
- 75% {
3494
- -webkit-transform: translate3d(0,10%,0);
3495
- transform: translate3d(0,10%,0)
3467
+
3468
+ .mess-success-popup .gift-popup .toast {
3469
+ display: flex;
3470
+ align-items: center;
3471
+ justify-content: center;
3472
+ margin: 10px 0;
3496
3473
  }
3497
-
3498
- to {
3499
- -webkit-transform: translateZ(0);
3500
- transform: translateZ(0)
3474
+
3475
+ .mess-success-popup .gift-popup .toast img {
3476
+ width: 20px;
3477
+ height: 15px;
3478
+ margin: 0 5px;
3501
3479
  }
3502
- }
3503
-
3504
- @keyframes float {
3505
- 0% {
3506
- -webkit-transform: translateZ(0);
3507
- transform: translateZ(0)
3480
+
3481
+ .mess-success-popup .gift-popup .title {
3482
+ margin: 15px 0;
3483
+ font-size: 16px;
3484
+ color: #333;
3508
3485
  }
3509
-
3510
- 25% {
3511
- -webkit-transform: translate3d(0,-10%,0);
3512
- transform: translate3d(0,-10%,0)
3486
+
3487
+ .mess-success-popup .gift-popup .btn {
3488
+ background: linear-gradient(270deg, #ff4874, #ff9061);
3489
+ color: white;
3490
+ border: none;
3491
+ padding: 10px 20px;
3492
+ border-radius: 20px;
3493
+ margin-top: 15px;
3494
+ cursor: pointer;
3495
+ }
3496
+
3497
+ /* 新增图片加载动画样式 */
3498
+ .gift-image-container {
3499
+ position: relative;
3500
+ width: 300px;
3501
+ height: 300px;
3502
+ margin: 20px 0;
3503
+ overflow: hidden;
3504
+ }
3505
+
3506
+ .gift-image-container img {
3507
+ width: 100%;
3508
+ height: 100%;
3509
+ object-fit: contain;
3510
+ opacity: 0;
3511
+ transition: opacity 0.5s ease-in-out;
3512
+ }
3513
+
3514
+ .gift-image-container img.loaded {
3515
+ opacity: 1;
3516
+ }
3517
+
3518
+ .image-loading {
3519
+ position: absolute;
3520
+ top: 0;
3521
+ left: 0;
3522
+ width: 100%;
3523
+ height: 100%;
3524
+ display: flex;
3525
+ justify-content: center;
3526
+ align-items: center;
3527
+ background: rgba(255, 255, 255, 0.8);
3513
3528
  }
3514
-
3515
- 75% {
3516
- -webkit-transform: translate3d(0,10%,0);
3517
- transform: translate3d(0,10%,0)
3529
+
3530
+ .loading-spinner {
3531
+ width: 40px;
3532
+ height: 40px;
3533
+ border: 4px solid #f3f3f3;
3534
+ border-top: 4px solid #ed5566;
3535
+ border-radius: 50%;
3536
+ animation: spin 1s linear infinite;
3518
3537
  }
3519
-
3520
- to {
3521
- -webkit-transform: translateZ(0);
3522
- transform: translateZ(0)
3538
+
3539
+ @keyframes spin {
3540
+ 0% { transform: rotate(0deg); }
3541
+ 100% { transform: rotate(360deg); }
3523
3542
  }
3524
- }
3525
-
3526
- #page-list .tip-cover {
3543
+
3544
+ #page-list .tip-cover {
3527
3545
  position: fixed;
3528
3546
  left: 0;
3529
3547
  top: 0;
@@ -3600,7 +3618,133 @@ to {
3600
3618
  font-size: 14px;
3601
3619
  line-height: 20px;
3602
3620
  background: #ed5566;
3603
- } .form-input {
3621
+ } /* .ele-form {
3622
+ position: absolute;
3623
+ user-select: none;
3624
+ } */
3625
+
3626
+ .f-select {
3627
+ cursor: pointer;
3628
+ }
3629
+
3630
+ .ani-wrap {
3631
+ position: relative;
3632
+ }
3633
+
3634
+ .f-select .ani-wrap .fs-tit {
3635
+ position: relative;
3636
+ display: flex;
3637
+ padding: 0 5px;
3638
+ height: 35px;
3639
+ line-height: 35px;
3640
+ align-items: center;
3641
+ }
3642
+
3643
+ .require {
3644
+ padding: 0 5px 0 0;
3645
+ color: red;
3646
+ vertical-align: middle;
3647
+ }
3648
+
3649
+ .fs-cont {
3650
+ padding-right: 15px;
3651
+ white-space: nowrap;
3652
+ overflow: hidden;
3653
+ text-overflow: ellipsis;
3654
+ flex-grow: 1;
3655
+ }
3656
+
3657
+ .icon-bofang1 {
3658
+ font-size: 12px;
3659
+ transition: transform 0.2s ease;
3660
+ }
3661
+
3662
+ .rotate-180 {
3663
+ transform: rotate(180deg) !important;
3664
+ }
3665
+
3666
+ .f-real {
3667
+ position: absolute;
3668
+ left: 0;
3669
+ top: 0;
3670
+ width: 100%;
3671
+ height: 100%;
3672
+ z-index: 1;
3673
+ opacity: 0;
3674
+ cursor: pointer;
3675
+ }
3676
+
3677
+ .dropdown-menu {
3678
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
3679
+ }
3680
+
3681
+ .dropdown-item {
3682
+ padding: 8px 10px;
3683
+ cursor: pointer;
3684
+ transition: background-color 0.2s;
3685
+ }
3686
+
3687
+ .dropdown-item:hover {
3688
+ background-color: #f5f5f5;
3689
+ }
3690
+
3691
+ .dropdown-item.selected {
3692
+ background-color: #e6f7ff;
3693
+ color: #1890ff;
3694
+ }
3695
+
3696
+ .f-select .fs-tit .icon-bofang1 {
3697
+ position: absolute;
3698
+ right: 10px;
3699
+ font-size: 12px;
3700
+ display: inline-block;
3701
+ transform: rotate(90deg);
3702
+ }
3703
+
3704
+ .icon-bofang1:before {
3705
+ content: "\E6CF";
3706
+ }
3707
+
3708
+ .has-error {
3709
+ border-color: #ff4d4f !important;
3710
+ }
3711
+
3712
+ .error-tip {
3713
+ position: fixed;
3714
+ left: 0;
3715
+ top: 0;
3716
+ width: 100%;
3717
+ height: 100%;
3718
+ z-index: 1000;
3719
+ }.button {
3720
+ position: absolute;
3721
+ cursor: pointer;
3722
+ user-select: none;
3723
+ }
3724
+
3725
+ .button .ani-wrap {
3726
+ display: flex;
3727
+ justify-content: center;
3728
+ align-items: center;
3729
+ width: 100%;
3730
+ height: 100%;
3731
+ overflow: hidden;
3732
+ transition: opacity 0.2s;
3733
+ }
3734
+
3735
+ .button .ani-wrap:hover {
3736
+ opacity: 0.9;
3737
+ }
3738
+
3739
+ .button-content {
3740
+ display: flex;
3741
+ align-items: center;
3742
+ justify-content: center;
3743
+ }
3744
+
3745
+ .btn-text {
3746
+ margin-left: 10px;
3747
+ }.form-input {
3604
3748
  position: absolute;
3605
3749
  }
3606
3750
 
@@ -3615,41 +3759,135 @@ to {
3615
3759
  transition: border-color 0.3s;
3616
3760
  }
3617
3761
 
3618
- .required-marker {
3619
- font-size: 12px;
3620
- padding: 0 5px 0 0;
3621
- color: red;
3622
- vertical-align: middle;
3762
+ .required-marker {
3763
+ font-size: 12px;
3764
+ padding: 0 5px 0 0;
3765
+ color: red;
3766
+ vertical-align: middle;
3767
+ }
3768
+
3769
+ input {
3770
+ flex: 1;
3771
+ border: none;
3772
+ outline: none;
3773
+ background: transparent;
3774
+ height: 100%;
3775
+ padding: 0;
3776
+ margin: 0;
3777
+ }
3778
+ /*
3779
+ input::placeholder {
3780
+ color: #ccc;
3781
+ opacity: 1;
3782
+ } */
3783
+
3784
+ .dynamic-placeholder-input::placeholder {
3785
+ color: var(--placeholder-color, #999);
3786
+ opacity: 1;
3787
+ }
3788
+ .dynamic-placeholder-input::-webkit-input-placeholder {
3789
+ color: var(--placeholder-color, #999);
3790
+ }
3791
+ .dynamic-placeholder-input::-moz-placeholder {
3792
+ color: var(--placeholder-color, #999);
3793
+ opacity: 1;
3794
+ }
3795
+ .dynamic-placeholder-input:-ms-input-placeholder {
3796
+ color: var(--placeholder-color, #999);
3797
+ }/* .ele-form {
3798
+ position: absolute;
3799
+ user-select: none;
3800
+ }
3801
+ */
3802
+ .f-single {
3803
+ cursor: pointer;
3804
+ }
3805
+
3806
+ .ani-wrap {
3807
+ position: relative;
3808
+ }
3809
+
3810
+ .f-single .ani-wrap .fs-tit {
3811
+ display: flex;
3812
+ padding: 0 5px;
3813
+ height: 40px;
3814
+ align-items: center;
3815
+ white-space: nowrap;
3816
+ overflow: hidden;
3817
+ text-overflow: ellipsis;
3818
+ border-bottom: 1px solid rgba(153, 153, 153, 1);
3819
+ }
3820
+
3821
+ .require {
3822
+ padding: 0 5px 0 0;
3823
+ color: red;
3824
+ vertical-align: middle;
3825
+ }
3826
+
3827
+ .f-single ul {
3828
+ padding: 15px;
3829
+ margin: 0;
3830
+ list-style: none;
3831
+ }
3832
+
3833
+ .f-single ul li {
3834
+ display: flex;
3835
+ align-items: center;
3836
+ margin-top: 12px;
3837
+ font-size: 0;
3838
+ }
3839
+
3840
+ .f-single ul li:first-child {
3841
+ margin-top: 0;
3842
+ }
3843
+
3844
+ .fs-circle {
3845
+ display: inline-block;
3846
+ width: 16px;
3847
+ height: 16px;
3848
+ border-radius: 50%;
3849
+ position: relative;
3850
+ transition: all 0.2s;
3851
+ }
3852
+
3853
+ .fs-circle.selected {
3854
+ background-color: #2687f1;
3855
+ border-color: #2687f1 !important;
3856
+ }
3857
+
3858
+ .fs-circle.selected::after {
3859
+ content: "";
3860
+ position: absolute;
3861
+ top: 3px;
3862
+ left: 3px;
3863
+ width: 8px;
3864
+ height: 8px;
3865
+ border-radius: 50%;
3866
+ background-color: white;
3867
+ }
3868
+
3869
+ .fs-txt {
3870
+ display: inline-block;
3871
+ width: calc(100% - 16px);
3872
+ padding-left: 8px;
3873
+ vertical-align: top;
3874
+ word-break: break-all;
3875
+ font-size: 14px;
3876
+ line-height: 1.2;
3623
3877
  }
3624
3878
 
3625
- input {
3626
- flex: 1;
3627
- border: none;
3628
- outline: none;
3629
- background: transparent;
3630
- height: 100%;
3631
- padding: 0;
3632
- margin: 0;
3879
+ .has-error .fs-tit {
3880
+ border-bottom-color: #ff4d4f;
3633
3881
  }
3634
- /*
3635
- input::placeholder {
3636
- color: #ccc;
3637
- opacity: 1;
3638
- } */
3639
3882
 
3640
- .dynamic-placeholder-input::placeholder {
3641
- color: var(--placeholder-color, #999);
3642
- opacity: 1;
3643
- }
3644
- .dynamic-placeholder-input::-webkit-input-placeholder {
3645
- color: var(--placeholder-color, #999);
3646
- }
3647
- .dynamic-placeholder-input::-moz-placeholder {
3648
- color: var(--placeholder-color, #999);
3649
- opacity: 1;
3650
- }
3651
- .dynamic-placeholder-input:-ms-input-placeholder {
3652
- color: var(--placeholder-color, #999);
3883
+ /* 错误提示样式 */
3884
+ .error-tip {
3885
+ position: fixed;
3886
+ left: 0;
3887
+ top: 0;
3888
+ width: 100%;
3889
+ height: 100%;
3890
+ z-index: 1000;
3653
3891
  }@charset"UTF-8";.animated {
3654
3892
  animation-duration: 1s;
3655
3893
  animation-fill-mode: both
@@ -8434,347 +8672,133 @@ to {
8434
8672
 
8435
8673
  to {
8436
8674
  -webkit-transform: translateY(0);
8437
- transform: translateY(0)
8438
- }
8439
- }
8440
-
8441
- @keyframes upSlide {
8442
- 0% {
8443
- -webkit-transform: translateY(-100%);
8444
- transform: translateY(-100%)
8445
- }
8446
-
8447
- to {
8448
- -webkit-transform: translateY(0);
8449
- transform: translateY(0)
8450
- }
8451
- }
8452
-
8453
- .p-downSlide {
8454
- -webkit-animation: downSlide .7s ease both;
8455
- animation: downSlide .7s ease both
8456
- }
8457
-
8458
- @-webkit-keyframes downSlide {
8459
- 0% {
8460
- -webkit-transform: translateY(100%);
8461
- transform: translateY(100%)
8462
- }
8463
-
8464
- to {
8465
- -webkit-transform: translateY(0);
8466
- transform: translateY(0)
8467
- }
8468
- }
8469
-
8470
- @keyframes downSlide {
8471
- 0% {
8472
- -webkit-transform: translateY(100%);
8473
- transform: translateY(100%)
8474
- }
8475
-
8476
- to {
8477
- -webkit-transform: translateY(0);
8478
- transform: translateY(0)
8479
- }
8480
- }
8481
-
8482
- .p-leftSlide {
8483
- -webkit-animation: leftSlide .7s ease both;
8484
- animation: leftSlide .7s ease both
8485
- }
8486
-
8487
- @-webkit-keyframes leftSlide {
8488
- 0% {
8489
- -webkit-transform: translateX(-100%);
8490
- transform: translateX(-100%)
8491
- }
8492
-
8493
- to {
8494
- -webkit-transform: translateX(0);
8495
- transform: translateX(0)
8496
- }
8497
- }
8498
-
8499
- @keyframes leftSlide {
8500
- 0% {
8501
- -webkit-transform: translateX(-100%);
8502
- transform: translateX(-100%)
8503
- }
8504
-
8505
- to {
8506
- -webkit-transform: translateX(0);
8507
- transform: translateX(0)
8508
- }
8509
- }
8510
-
8511
- .p-rightSlide {
8512
- -webkit-animation: rightSlide .7s ease both;
8513
- animation: rightSlide .7s ease both
8514
- }
8515
-
8516
- @-webkit-keyframes rightSlide {
8517
- 0% {
8518
- -webkit-transform: translateX(100%);
8519
- transform: translateX(100%)
8520
- }
8521
-
8522
- to {
8523
- -webkit-transform: translateX(0);
8524
- transform: translateX(0)
8525
- }
8526
- }
8527
-
8528
- @keyframes rightSlide {
8529
- 0% {
8530
- -webkit-transform: translateX(100%);
8531
- transform: translateX(100%)
8532
- }
8533
-
8534
- to {
8535
- -webkit-transform: translateX(0);
8536
- transform: translateX(0)
8537
- }
8538
- }
8539
- /* .ele-form {
8540
- position: absolute;
8541
- user-select: none;
8542
- } */
8543
-
8544
- .f-select {
8545
- cursor: pointer;
8546
- }
8547
-
8548
- .ani-wrap {
8549
- position: relative;
8550
- }
8551
-
8552
- .f-select .ani-wrap .fs-tit {
8553
- position: relative;
8554
- display: flex;
8555
- padding: 0 5px;
8556
- height: 35px;
8557
- line-height: 35px;
8558
- align-items: center;
8559
- }
8560
-
8561
- .require {
8562
- padding: 0 5px 0 0;
8563
- color: red;
8564
- vertical-align: middle;
8565
- }
8566
-
8567
- .fs-cont {
8568
- padding-right: 15px;
8569
- white-space: nowrap;
8570
- overflow: hidden;
8571
- text-overflow: ellipsis;
8572
- flex-grow: 1;
8573
- }
8574
-
8575
- .icon-bofang1 {
8576
- font-size: 12px;
8577
- transition: transform 0.2s ease;
8578
- }
8579
-
8580
- .rotate-180 {
8581
- transform: rotate(180deg) !important;
8582
- }
8583
-
8584
- .f-real {
8585
- position: absolute;
8586
- left: 0;
8587
- top: 0;
8588
- width: 100%;
8589
- height: 100%;
8590
- z-index: 1;
8591
- opacity: 0;
8592
- cursor: pointer;
8593
- }
8594
-
8595
- .dropdown-menu {
8596
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
8597
- }
8598
-
8599
- .dropdown-item {
8600
- padding: 8px 10px;
8601
- cursor: pointer;
8602
- transition: background-color 0.2s;
8603
- }
8604
-
8605
- .dropdown-item:hover {
8606
- background-color: #f5f5f5;
8607
- }
8608
-
8609
- .dropdown-item.selected {
8610
- background-color: #e6f7ff;
8611
- color: #1890ff;
8612
- }
8613
-
8614
- .f-select .fs-tit .icon-bofang1 {
8615
- position: absolute;
8616
- right: 10px;
8617
- font-size: 12px;
8618
- display: inline-block;
8619
- transform: rotate(90deg);
8620
- }
8621
-
8622
- .icon-bofang1:before {
8623
- content: "\E6CF";
8624
- }
8625
-
8626
- .has-error {
8627
- border-color: #ff4d4f !important;
8628
- }
8629
-
8630
- .error-tip {
8631
- position: fixed;
8632
- left: 0;
8633
- top: 0;
8634
- width: 100%;
8635
- height: 100%;
8636
- z-index: 1000;
8637
- }.form-submit {
8638
- cursor: pointer;
8639
- transition: all 0.2s;
8640
- outline: none;
8641
- border: none;
8675
+ transform: translateY(0)
8676
+ }
8642
8677
  }
8643
8678
 
8644
- .form-submit:hover {
8645
- opacity: 0.9;
8646
- transform: translateY(-1px);
8679
+ @keyframes upSlide {
8680
+ 0% {
8681
+ -webkit-transform: translateY(-100%);
8682
+ transform: translateY(-100%)
8683
+ }
8684
+
8685
+ to {
8686
+ -webkit-transform: translateY(0);
8687
+ transform: translateY(0)
8688
+ }
8647
8689
  }
8648
8690
 
8649
- .form-submit:active {
8650
- opacity: 0.8;
8651
- transform: translateY(0);
8691
+ .p-downSlide {
8692
+ -webkit-animation: downSlide .7s ease both;
8693
+ animation: downSlide .7s ease both
8652
8694
  }
8653
8695
 
8654
- .form-submit:disabled {
8655
- opacity: 0.6;
8656
- cursor: not-allowed;
8657
- transform: none !important;
8696
+ @-webkit-keyframes downSlide {
8697
+ 0% {
8698
+ -webkit-transform: translateY(100%);
8699
+ transform: translateY(100%)
8700
+ }
8701
+
8702
+ to {
8703
+ -webkit-transform: translateY(0);
8704
+ transform: translateY(0)
8705
+ }
8658
8706
  }
8659
8707
 
8660
- .f-submit {
8661
- position: relative;
8662
- display: block
8708
+ @keyframes downSlide {
8709
+ 0% {
8710
+ -webkit-transform: translateY(100%);
8711
+ transform: translateY(100%)
8712
+ }
8713
+
8714
+ to {
8715
+ -webkit-transform: translateY(0);
8716
+ transform: translateY(0)
8717
+ }
8663
8718
  }
8664
8719
 
8665
- .f-submit .ani-wrap {
8666
- width: 100%;
8667
- height: 100%;
8668
- padding: 10px;
8669
- overflow: hidden;
8670
- position: relative
8720
+ .p-leftSlide {
8721
+ -webkit-animation: leftSlide .7s ease both;
8722
+ animation: leftSlide .7s ease both
8671
8723
  }
8672
8724
 
8673
- .f-submit .f-ovh {
8674
- position: absolute;
8675
- left: 50%;
8676
- top: 50%;
8677
- transform: translate(-50%,-50%)
8725
+ @-webkit-keyframes leftSlide {
8726
+ 0% {
8727
+ -webkit-transform: translateX(-100%);
8728
+ transform: translateX(-100%)
8729
+ }
8730
+
8731
+ to {
8732
+ -webkit-transform: translateX(0);
8733
+ transform: translateX(0)
8734
+ }
8678
8735
  }
8679
8736
 
8680
- .form-submit:disabled {
8681
- opacity: 0.7;
8682
- cursor: not-allowed;
8683
- }/* .ele-form {
8684
- position: absolute;
8685
- user-select: none;
8686
- }
8687
- */
8688
- .f-single {
8689
- cursor: pointer;
8690
- }
8691
-
8692
- .ani-wrap {
8693
- position: relative;
8694
- }
8695
-
8696
- .f-single .ani-wrap .fs-tit {
8697
- display: flex;
8698
- padding: 0 5px;
8699
- height: 40px;
8700
- align-items: center;
8701
- white-space: nowrap;
8702
- overflow: hidden;
8703
- text-overflow: ellipsis;
8704
- border-bottom: 1px solid rgba(153, 153, 153, 1);
8705
- }
8706
-
8707
- .require {
8708
- padding: 0 5px 0 0;
8709
- color: red;
8710
- vertical-align: middle;
8711
- }
8712
-
8713
- .f-single ul {
8714
- padding: 15px;
8715
- margin: 0;
8716
- list-style: none;
8717
- }
8718
-
8719
- .f-single ul li {
8720
- display: flex;
8721
- align-items: center;
8722
- margin-top: 12px;
8723
- font-size: 0;
8724
- }
8725
-
8726
- .f-single ul li:first-child {
8727
- margin-top: 0;
8728
- }
8729
-
8730
- .fs-circle {
8731
- display: inline-block;
8732
- width: 16px;
8733
- height: 16px;
8734
- border-radius: 50%;
8735
- position: relative;
8736
- transition: all 0.2s;
8737
- }
8738
-
8739
- .fs-circle.selected {
8740
- background-color: #2687f1;
8741
- border-color: #2687f1 !important;
8742
- }
8743
-
8744
- .fs-circle.selected::after {
8745
- content: "";
8746
- position: absolute;
8747
- top: 3px;
8748
- left: 3px;
8749
- width: 8px;
8750
- height: 8px;
8751
- border-radius: 50%;
8752
- background-color: white;
8753
- }
8754
-
8755
- .fs-txt {
8756
- display: inline-block;
8757
- width: calc(100% - 16px);
8758
- padding-left: 8px;
8759
- vertical-align: top;
8760
- word-break: break-all;
8761
- font-size: 14px;
8762
- line-height: 1.2;
8763
- }
8764
-
8765
- .has-error .fs-tit {
8766
- border-bottom-color: #ff4d4f;
8767
- }
8768
-
8769
- /* 错误提示样式 */
8770
- .error-tip {
8771
- position: fixed;
8772
- left: 0;
8773
- top: 0;
8774
- width: 100%;
8775
- height: 100%;
8776
- z-index: 1000;
8777
- }
8737
+ @keyframes leftSlide {
8738
+ 0% {
8739
+ -webkit-transform: translateX(-100%);
8740
+ transform: translateX(-100%)
8741
+ }
8742
+
8743
+ to {
8744
+ -webkit-transform: translateX(0);
8745
+ transform: translateX(0)
8746
+ }
8747
+ }
8748
+
8749
+ .p-rightSlide {
8750
+ -webkit-animation: rightSlide .7s ease both;
8751
+ animation: rightSlide .7s ease both
8752
+ }
8753
+
8754
+ @-webkit-keyframes rightSlide {
8755
+ 0% {
8756
+ -webkit-transform: translateX(100%);
8757
+ transform: translateX(100%)
8758
+ }
8759
+
8760
+ to {
8761
+ -webkit-transform: translateX(0);
8762
+ transform: translateX(0)
8763
+ }
8764
+ }
8765
+
8766
+ @keyframes rightSlide {
8767
+ 0% {
8768
+ -webkit-transform: translateX(100%);
8769
+ transform: translateX(100%)
8770
+ }
8771
+
8772
+ to {
8773
+ -webkit-transform: translateX(0);
8774
+ transform: translateX(0)
8775
+ }
8776
+ }
8777
+
8778
+ .global.tel {
8779
+ width: 35px;
8780
+ height: 55px;
8781
+ border-radius: 50%;
8782
+ text-align: center;
8783
+ margin-bottom: 15px;
8784
+ border: 2px solid #fff;
8785
+ cursor: pointer;
8786
+ }
8787
+ .icon-dianhua:before { content: "\E60E"; }
8788
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
8789
+ .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
8790
+ .global.map {
8791
+ width: 35px;
8792
+ height: 55px;
8793
+ border-radius: 50%;
8794
+ text-align: center;
8795
+ margin-bottom: 5px;
8796
+ border: 2px solid #fff;
8797
+ cursor: pointer;
8798
+ }
8799
+ .icon-daohang1:before { content: "\E612"; }
8800
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
8801
+ .global.map > span { font-size: 10px; line-height: 20px; display: block;}
8778
8802
  .icon-guanbi:before {
8779
8803
  content: "\E676";
8780
8804
  }
@@ -9268,18 +9292,6 @@ cursor: not-allowed;
9268
9292
  .global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
9269
9293
  }
9270
9294
 
9271
- .global.tel {
9272
- width: 35px;
9273
- height: 55px;
9274
- border-radius: 50%;
9275
- text-align: center;
9276
- margin-bottom: 15px;
9277
- border: 2px solid #fff;
9278
- cursor: pointer;
9279
- }
9280
- .icon-dianhua:before { content: "\E60E"; }
9281
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9282
- .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
9283
9295
  .global.receipt {
9284
9296
  width: 35px;
9285
9297
  height: 55px;
@@ -9291,16 +9303,4 @@ cursor: not-allowed;
9291
9303
  }
9292
9304
  .icon-liuyan:before { content: "\E636"; }
9293
9305
  .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9294
- .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
9295
- .global.map {
9296
- width: 35px;
9297
- height: 55px;
9298
- border-radius: 50%;
9299
- text-align: center;
9300
- margin-bottom: 5px;
9301
- border: 2px solid #fff;
9302
- cursor: pointer;
9303
- }
9304
- .icon-daohang1:before { content: "\E612"; }
9305
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9306
- .global.map > span { font-size: 10px; line-height: 20px; display: block;}
9306
+ .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }