unika-components 1.1.91 → 1.1.93

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,540 +8,390 @@
8
8
  max-height: 100%;
9
9
  width: 100%;
10
10
  }
11
-
12
- @keyframes jumpheart {
13
- to {
14
- -webkit-transform: scale(1.2);
15
- transform: scale(1.2)
11
+ .ele-img {
12
+ position: absolute;
13
+ overflow: hidden;
14
+ }
15
+
16
+ .ele-img .ani-wrap {
17
+ width: 100%;
18
+ height: 100%;
19
+ }
20
+
21
+ .ele-img .ele-image {
22
+ position: relative;
23
+ display: block;
24
+ }
25
+
26
+ .ele-img .rotate-wrap {
27
+ position: absolute;
28
+ left: 0;
29
+ right: 0;
30
+ top: 0;
31
+ bottom: 0;
32
+ }
33
+
34
+ .ele-img .ele-img-bg,
35
+ .ele-img .rotate-wrap .img-wrap {
36
+ width: 100%;
37
+ height: 100%;
38
+ overflow: hidden;
16
39
  }
40
+
41
+ .ele-img .ele-bg-wrap {
42
+ width: 100%;
43
+ height: 100%;
44
+ background-size: cover;
45
+ background-position: 50% 50%;
46
+ background-repeat: no-repeat;
47
+ background-clip: border-box;
48
+ }
49
+
50
+ /* 动画关键帧 */
51
+ @keyframes zoomIn {
52
+ from {
53
+ opacity: 0;
54
+ transform: scale(0.5);
55
+ }
56
+ to {
57
+ opacity: 1;
58
+ transform: scale(1);
59
+ }
60
+ }.ele-shape {
61
+ position: absolute;
62
+ overflow: hidden;
17
63
  }
18
- .ele-calendar {
19
- position: relative;
20
- width: 325px !important;
21
- min-height: 325px !important;
22
- height: auto !important;
64
+
65
+ .ani-wrap {
66
+ width: 100%;
67
+ height: 100%;
68
+ box-sizing: border-box;
23
69
  }
24
70
 
25
- .ele-calendar .drag-point {
26
- cursor: default !important;
71
+ .e-shape {
72
+ width: 100%;
73
+ height: 100%;
27
74
  }
28
75
 
29
- .ele-calendar .ani-wrap {
30
- position: relative;
76
+ .svg-container :deep(svg) {
31
77
  width: 100%;
32
- min-height: 325px !important;
33
- height: auto !important;
34
- padding: 22px 0;
78
+ height: 100%;
79
+ display: block;
35
80
  }
36
81
 
37
- .ele-calendar .ani-wrap .can-wrap .can-top {
82
+ .svg-loading,
83
+ .svg-error {
38
84
  display: flex;
39
- justify-content: space-between;
40
- align-items: flex-end;
41
- line-height: 1;
42
- padding: 0 47px 20px;
85
+ align-items: center;
86
+ justify-content: center;
87
+ width: 100%;
88
+ height: 100%;
89
+ background: rgba(0,0,0,0.05);
43
90
  }
44
-
45
- .ele-calendar .ani-wrap .can-wrap .can-top .can-left {
46
- font-size: 25px;
47
- padding-bottom: 4px;
91
+ .ele-text {
92
+ position: relative;
48
93
  }
49
94
 
50
- .ele-calendar .ani-wrap .can-wrap .can-top .can-right {
51
- font-size: 25px;
95
+ .ele-text .ani-wrap {
96
+ width: 100%;
97
+ height: 100%;
52
98
  }
53
99
 
54
- .ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
55
- position: relative;
56
- top: 2px;
57
- font-size: 57px;
100
+ .text-common {
101
+ padding: 5px;
102
+ text-orientation: upright;
103
+ white-space: pre-wrap;
58
104
  }
59
105
 
60
- .ele-calendar .ani-wrap .can-wrap .can-main {
61
- padding: 0 23px;
106
+ /* 文本动画类 */
107
+ .text-fadeIn {
108
+ animation: fadeIn 1s ease-in-out;
62
109
  }
63
110
 
64
- .ele-calendar .ani-wrap .can-wrap .can-main .can-week {
65
- display: flex;
66
- justify-content: flex-start;
67
- height: 25px;
68
- line-height: 25px;
69
- padding: 0 10px;
70
- border-radius: 13px;
111
+ .text-slideIn {
112
+ animation: slideIn 1s ease-in-out;
71
113
  }
72
114
 
73
- .ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
74
- width: 14.2%;
75
- text-align: center;
76
- color: #fff;
77
- font-size: 12px;
115
+ .text-bounceIn {
116
+ animation: bounceIn 1s ease-in-out;
78
117
  }
79
118
 
80
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
81
- font-size: 0;
82
- padding: 5px 10px 0;
83
- text-align: left;
119
+ /* 基础动画关键帧 */
120
+ @keyframes fadeIn {
121
+ from {
122
+ opacity: 0;
123
+ }
124
+ to {
125
+ opacity: 1;
126
+ }
84
127
  }
85
128
 
86
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
87
- position: relative;
88
- display: inline-block;
89
- height: 25px;
90
- text-align: center;
91
- margin-top: 8px;
129
+ @keyframes slideIn {
130
+ from {
131
+ transform: translateY(20px);
132
+ opacity: 0;
133
+ }
134
+ to {
135
+ transform: translateY(0);
136
+ opacity: 1;
137
+ }
92
138
  }
93
139
 
94
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
95
- display: block;
140
+ @keyframes bounceIn {
141
+ 0% {
142
+ transform: scale(0.3);
143
+ opacity: 0;
144
+ }
145
+ 50% {
146
+ transform: scale(1.05);
147
+ opacity: 0.8;
148
+ }
149
+ 70% {
150
+ transform: scale(0.9);
151
+ opacity: 0.9;
152
+ }
153
+ 100% {
154
+ transform: scale(1);
155
+ opacity: 1;
156
+ }
157
+ }
158
+ .element-video {
159
+ position: absolute;
160
+ overflow: hidden;
161
+ background-color: transparent;
162
+ }
163
+
164
+ .element-video .ani-wrap, .element-video img {
165
+ display: block;
166
+ width: 100%;
167
+ height: 100%;
168
+ }
169
+
170
+ .video-container {
171
+ width: 100%;
172
+ height: 100%;
173
+ }
174
+
175
+ .video-container iframe {
176
+ width: 100%;
177
+ height: 100%;
178
+ border: none;
179
+ }
180
+
181
+ .video-cover {
182
+ position: relative;
183
+ width: 100%;
184
+ height: 100%;
185
+ background-size: cover;
186
+ background-position: center;
187
+ cursor: pointer;
188
+ }
189
+
190
+ .video-cover .play-btn {
191
+ position: absolute;
192
+ left: 50%;
193
+ top: 50%;
194
+ transform: translate(-50%, -50%);
195
+ width: 50px;
196
+ height: 50px;
197
+ opacity: 0.8;
198
+ transition: opacity 0.2s;
199
+ }
200
+
201
+ .video-cover:hover .play-btn {
202
+ opacity: 1;
203
+ }.call {
204
+ position: absolute;
205
+ cursor: pointer;
206
+ user-select: none;
96
207
  }
97
208
 
98
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
99
- color: #fff !important;
209
+ .call .ani-wrap {
210
+ display: flex;
211
+ justify-content: center;
212
+ align-items: center;
213
+ width: 100%;
214
+ height: 100%;
215
+ overflow: hidden;
216
+ transition: opacity 0.2s;
100
217
  }
101
218
 
102
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
103
- animation: jumpheart 0.8s ease infinite alternate;
219
+ .call .ani-wrap:hover {
220
+ opacity: 0.9;
104
221
  }
105
222
 
106
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
107
- display: none;
108
- font-size: 26px;
223
+ .call-content {
224
+ display: flex;
225
+ align-items: center;
226
+ justify-content: center;
109
227
  }
110
228
 
111
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
112
- position: absolute;
113
- left: 50%;
114
- top: 50%;
115
- z-index: 1;
116
- color: #666;
117
- font-size: 13px;
118
- transform: translate(-50%, -52%);
229
+ .btn-text {
230
+ margin-left: 10px;
119
231
  }
120
232
 
121
- .ele-calendar .bottom-center,
122
- .ele-calendar .left-center,
123
- .ele-calendar .right-center,
124
- .ele-calendar .top-center {
125
- display: none !important;
126
- }
127
233
 
128
- .ele-calendar .ani-wrap .can-wrap2 {
129
- padding: 21px 23px 0
234
+ .hb-tel:before {
235
+ content: "\E642";
236
+ }.button {
237
+ position: absolute;
238
+ cursor: pointer;
239
+ user-select: none;
130
240
  }
131
-
132
- .ele-calendar .ani-wrap .can-wrap2 .can-top {
133
- display: -webkit-box;
134
- display: -ms-flexbox;
241
+
242
+ .button .ani-wrap {
135
243
  display: flex;
136
- -webkit-box-pack: justify;
137
- -ms-flex-pack: justify;
138
- justify-content: space-between;
139
- -webkit-box-align: end;
140
- -ms-flex-align: end;
141
- align-items: flex-end;
142
- line-height: 1;
143
- padding: 0 16px 22px;
144
- font-size: 36px
244
+ justify-content: center;
245
+ align-items: center;
246
+ width: 100%;
247
+ height: 100%;
248
+ overflow: hidden;
249
+ transition: opacity 0.2s;
145
250
  }
146
-
147
- .ele-calendar .ani-wrap .can-wrap2 .can-top span {
148
- font-size: 16px
251
+
252
+ .button .ani-wrap:hover {
253
+ opacity: 0.9;
149
254
  }
150
255
 
151
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
152
- display: -webkit-box;
153
- display: -ms-flexbox;
256
+ .button-content {
154
257
  display: flex;
155
- -webkit-box-pack: start;
156
- -ms-flex-pack: start;
157
- justify-content: flex-start;
158
- height: 25px;
159
- line-height: 25px;
160
- padding: 0 10px;
161
- border-radius: 13px
162
- }
163
-
164
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
165
- width: 14.2%;
166
- text-align: center;
167
- color: #fff;
168
- font-size: 12px;
169
- font-weight: 600
170
- }
171
-
172
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
173
- position: relative
174
- }
175
-
176
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
177
- position: absolute;
178
- white-space: nowrap;
179
- left: 50%;
180
- top: 15%;
181
- -webkit-transform: translateX(-50%);
182
- transform: translateX(-50%);
183
- font-size: 76px;
184
- opacity: .1;
185
- font-weight: 600
258
+ align-items: center;
259
+ justify-content: center;
186
260
  }
187
261
 
188
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
189
- font-size: 0;
190
- padding: 5px 10px 0;
191
- text-align: left
262
+ .btn-text {
263
+ margin-left: 10px;
264
+ }.ele-effect {
265
+ will-change: transform;
192
266
  }
193
267
 
194
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
268
+ .ele-effect .effect-wrap {
195
269
  position: relative;
196
- display: inline-block;
197
- width: 14.2%;
198
- height: 25px;
199
- text-align: center;
200
- margin-top: 8px
270
+ width: 100%;
271
+ height: 100%;
201
272
  }
202
273
 
203
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
204
- display: block;
274
+ .particle {
205
275
  position: absolute;
206
- left: 17%;
207
- top: 0;
208
- font-size: 25px
276
+ background-repeat: no-repeat;
277
+ background-size: contain;
278
+ animation-name: falling;
279
+ animation-timing-function: linear;
280
+ animation-iteration-count: infinite;
281
+ will-change: transform;
209
282
  }
210
283
 
211
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
212
- color: #fff!important
284
+ @keyframes falling {
285
+ 0% {
286
+ transform: translateY(0) rotate(0deg);
287
+ opacity: 1;
288
+ }
289
+ 80% {
290
+ opacity: 0.8;
291
+ }
292
+ 100% {
293
+ transform: translateY(100vh) rotate(360deg);
294
+ opacity: 0;
295
+ }
296
+ }
297
+ .ele-lottie .ele-lotwrap {
298
+ overflow: hidden
213
299
  }
214
300
 
215
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
216
- -webkit-animation: jumpheart .8s ease infinite alternate;
217
- animation: jumpheart .8s ease infinite alternate
301
+ .ele-effect .effect-wrap {
302
+ position: relative;
303
+ overflow: hidden;
304
+ width: 100%;
305
+ height: 100%
218
306
  }
219
307
 
220
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
221
- display: none;
222
- font-size: 26px
308
+ .ele-effect .e-small {
309
+ position: absolute;
310
+ width: 24px;
311
+ height: 24px;
312
+ background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
313
+ background-size: cover;
314
+ background-repeat: no-repeat;
315
+ -webkit-transform-origin: center;
316
+ transform-origin: center;
317
+ -webkit-animation: snow 5s linear infinite;
318
+ animation: snow 5s linear infinite
319
+ }.count-down .drag-point {
320
+ cursor: default!important
223
321
  }
224
322
 
225
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
226
- position: absolute;
227
- left: 50%;
228
- top: 50%;
229
- z-index: 1;
230
- color: #666;
231
- font-size: 13px;
232
- -webkit-transform: translate(-50%,-52%);
233
- transform: translate(-50%,-52%)
323
+ .count-down .ani-wrap {
324
+ width: 100%;
325
+ height: 100%
234
326
  }
235
327
 
236
- .ele-calendar .ani-wrap .can-wrap3 .can-top {
328
+ .count-down .count-text,.count-down .finish-cont {
237
329
  display: -webkit-box;
238
330
  display: -ms-flexbox;
239
331
  display: flex;
240
- -webkit-box-pack: justify;
241
- -ms-flex-pack: justify;
242
- justify-content: space-between;
243
- -webkit-box-align: end;
244
- -ms-flex-align: end;
245
- align-items: flex-end;
246
- line-height: 1;
247
- padding: 18px 33px 10px;
248
- font-size: 36px;
249
- }
250
-
251
- .ele-calendar .ani-wrap .can-wrap3 .can-top span {
252
- font-size: 16px
332
+ height: 100%;
333
+ -webkit-box-align: center;
334
+ -ms-flex-align: center;
335
+ align-items: center;
336
+ -webkit-box-pack: center;
337
+ -ms-flex-pack: center;
338
+ justify-content: center
253
339
  }
254
340
 
255
- .ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
256
- font-size: 20px
341
+ .count-down .finish-cont {
342
+ width: 100%
257
343
  }
258
344
 
259
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
345
+ .count-down .count-flip {
260
346
  display: -webkit-box;
261
347
  display: -ms-flexbox;
262
348
  display: flex;
263
- -webkit-box-pack: start;
264
- -ms-flex-pack: start;
265
- justify-content: flex-start;
266
- height: 40px;
267
- line-height: 40px;
268
- padding: 0 34px;
269
- border-bottom: 1px solid
349
+ height: 100%;
350
+ -webkit-box-align: center;
351
+ -ms-flex-align: center;
352
+ align-items: center;
353
+ -webkit-box-pack: center;
354
+ -ms-flex-pack: center;
355
+ justify-content: center
270
356
  }
271
357
 
272
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
273
- width: 14.2%;
274
- text-align: center;
275
- color: #fff;
276
- font-size: 12px;
277
- font-weight: 600
358
+ .count-down .count-flip .numscroll {
359
+ -webkit-animation: numscroll .4s ease-in-out;
360
+ animation: numscroll .4s ease-in-out;
361
+ -webkit-animation-fill-mode: both;
362
+ animation-fill-mode: both
278
363
  }
279
364
 
280
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
281
- position: relative
365
+ .count-down .count-flip .numscroll .curr-num {
366
+ -webkit-transition: all .3s ease-in-out;
367
+ transition: all .3s ease-in-out;
368
+ opacity: .6;
369
+ -webkit-transform: scale(.5)!important;
370
+ transform: scale(.5)!important
282
371
  }
283
372
 
284
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
285
- font-size: 0;
286
- padding: 5px 33px 0;
287
- text-align: left
288
- }
373
+ @-webkit-keyframes numscroll {
374
+ 0% {
375
+ -webkit-transform: translateZ(0);
376
+ transform: translateZ(0)
377
+ }
289
378
 
290
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
291
- position: relative;
292
- display: inline-block;
293
- width: 14.2%;
294
- height: 25px;
295
- text-align: center;
296
- margin-top: 8px;
379
+ to {
380
+ -webkit-transform: translate3d(0,100%,0);
381
+ transform: translate3d(0,100%,0)
382
+ }
297
383
  }
298
384
 
299
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
300
- color: #eee
301
- }
302
-
303
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
304
- display: block;
305
- position: absolute;
306
- left: 12%;
307
- top: 2px;
308
- }
309
-
310
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
311
- font-size: 12px
312
- }
313
-
314
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
315
- -webkit-animation: jumpheart .8s ease infinite alternate;
316
- animation: jumpheart .8s ease infinite alternate
317
- }
318
-
319
- @keyframes jumpheart {
320
- to {
321
- -webkit-transform: scale(1.2);
322
- transform: scale(1.2)
323
- }
324
- }
325
-
326
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
327
- display: none;
328
- font-size: 26px
329
- }
330
-
331
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
332
- position: absolute;
333
- left: 50%;
334
- top: 50%;
335
- z-index: 1;
336
- color: #666;
337
- font-size: 13px;
338
- -webkit-transform: translate(-50%,-52%);
339
- transform: translate(-50%,-52%)
340
- }
341
-
342
- .ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
343
- display: none!important
344
- }
345
- .icon-tuoyuanxing:before {
346
- content: "\E6A7";
347
- }
348
- .icon-zan1:before {
349
- content: "\E66D";
350
- }
351
- .icon-xingzhuangjiehe:before {
352
- content: "\E6A6";
353
- }
354
- .ele-text {
355
- position: relative;
356
- }
357
-
358
- .ele-text .ani-wrap {
359
- width: 100%;
360
- height: 100%;
361
- }
362
-
363
- .text-common {
364
- padding: 5px;
365
- text-orientation: upright;
366
- white-space: pre-wrap;
367
- }
368
-
369
- /* 文本动画类 */
370
- .text-fadeIn {
371
- animation: fadeIn 1s ease-in-out;
372
- }
373
-
374
- .text-slideIn {
375
- animation: slideIn 1s ease-in-out;
376
- }
377
-
378
- .text-bounceIn {
379
- animation: bounceIn 1s ease-in-out;
380
- }
381
-
382
- /* 基础动画关键帧 */
383
- @keyframes fadeIn {
384
- from {
385
- opacity: 0;
386
- }
387
- to {
388
- opacity: 1;
389
- }
390
- }
391
-
392
- @keyframes slideIn {
393
- from {
394
- transform: translateY(20px);
395
- opacity: 0;
396
- }
397
- to {
398
- transform: translateY(0);
399
- opacity: 1;
400
- }
401
- }
402
-
403
- @keyframes bounceIn {
404
- 0% {
405
- transform: scale(0.3);
406
- opacity: 0;
407
- }
408
- 50% {
409
- transform: scale(1.05);
410
- opacity: 0.8;
411
- }
412
- 70% {
413
- transform: scale(0.9);
414
- opacity: 0.9;
415
- }
416
- 100% {
417
- transform: scale(1);
418
- opacity: 1;
419
- }
420
- }.ele-img {
421
- position: absolute;
422
- overflow: hidden;
423
- }
424
-
425
- .ele-img .ani-wrap {
426
- width: 100%;
427
- height: 100%;
428
- }
429
-
430
- .ele-img .ele-image {
431
- position: relative;
432
- display: block;
433
- }
434
-
435
- .ele-img .rotate-wrap {
436
- position: absolute;
437
- left: 0;
438
- right: 0;
439
- top: 0;
440
- bottom: 0;
441
- }
442
-
443
- .ele-img .ele-img-bg,
444
- .ele-img .rotate-wrap .img-wrap {
445
- width: 100%;
446
- height: 100%;
447
- overflow: hidden;
448
- }
449
-
450
- .ele-img .ele-bg-wrap {
451
- width: 100%;
452
- height: 100%;
453
- background-size: cover;
454
- background-position: 50% 50%;
455
- background-repeat: no-repeat;
456
- background-clip: border-box;
457
- }
458
-
459
- /* 动画关键帧 */
460
- @keyframes zoomIn {
461
- from {
462
- opacity: 0;
463
- transform: scale(0.5);
464
- }
465
- to {
466
- opacity: 1;
467
- transform: scale(1);
468
- }
469
- }.count-down .drag-point {
470
- cursor: default!important
471
- }
472
-
473
- .count-down .ani-wrap {
474
- width: 100%;
475
- height: 100%
476
- }
477
-
478
- .count-down .count-text,.count-down .finish-cont {
479
- display: -webkit-box;
480
- display: -ms-flexbox;
481
- display: flex;
482
- height: 100%;
483
- -webkit-box-align: center;
484
- -ms-flex-align: center;
485
- align-items: center;
486
- -webkit-box-pack: center;
487
- -ms-flex-pack: center;
488
- justify-content: center
489
- }
490
-
491
- .count-down .finish-cont {
492
- width: 100%
493
- }
494
-
495
- .count-down .count-flip {
496
- display: -webkit-box;
497
- display: -ms-flexbox;
498
- display: flex;
499
- height: 100%;
500
- -webkit-box-align: center;
501
- -ms-flex-align: center;
502
- align-items: center;
503
- -webkit-box-pack: center;
504
- -ms-flex-pack: center;
505
- justify-content: center
506
- }
507
-
508
- .count-down .count-flip .numscroll {
509
- -webkit-animation: numscroll .4s ease-in-out;
510
- animation: numscroll .4s ease-in-out;
511
- -webkit-animation-fill-mode: both;
512
- animation-fill-mode: both
513
- }
514
-
515
- .count-down .count-flip .numscroll .curr-num {
516
- -webkit-transition: all .3s ease-in-out;
517
- transition: all .3s ease-in-out;
518
- opacity: .6;
519
- -webkit-transform: scale(.5)!important;
520
- transform: scale(.5)!important
521
- }
522
-
523
- @-webkit-keyframes numscroll {
524
- 0% {
525
- -webkit-transform: translateZ(0);
526
- transform: translateZ(0)
527
- }
528
-
529
- to {
530
- -webkit-transform: translate3d(0,100%,0);
531
- transform: translate3d(0,100%,0)
532
- }
533
- }
534
-
535
- @keyframes numscroll {
536
- 0% {
537
- -webkit-transform: translateZ(0);
538
- transform: translateZ(0)
539
- }
540
-
541
- to {
542
- -webkit-transform: translate3d(0,100%,0);
543
- transform: translate3d(0,100%,0)
544
- }
385
+ @keyframes numscroll {
386
+ 0% {
387
+ -webkit-transform: translateZ(0);
388
+ transform: translateZ(0)
389
+ }
390
+
391
+ to {
392
+ -webkit-transform: translate3d(0,100%,0);
393
+ transform: translate3d(0,100%,0)
394
+ }
545
395
  }
546
396
 
547
397
  .count-down .count-flip .c-com {
@@ -628,1257 +478,466 @@
628
478
  align-items: center;
629
479
  white-space: nowrap
630
480
  }
481
+ .element-ditu .ani-wrap {
482
+ width: 100%;
483
+ height: 100%;
484
+ overflow: hidden
485
+ }
631
486
 
632
- .element-video {
633
- position: absolute;
634
- overflow: hidden;
635
- background-color: transparent;
636
- }
637
-
638
- .element-video .ani-wrap, .element-video img {
639
- display: block;
640
- width: 100%;
641
- height: 100%;
642
- }
643
-
644
- .video-container {
645
- width: 100%;
646
- height: 100%;
647
- }
648
-
649
- .video-container iframe {
650
- width: 100%;
651
- height: 100%;
652
- border: none;
653
- }
654
-
655
- .video-cover {
656
- position: relative;
657
- width: 100%;
658
- height: 100%;
659
- background-size: cover;
660
- background-position: center;
661
- cursor: pointer;
662
- }
663
-
664
- .video-cover .play-btn {
665
- position: absolute;
666
- left: 50%;
667
- top: 50%;
668
- transform: translate(-50%, -50%);
669
- width: 50px;
670
- height: 50px;
671
- opacity: 0.8;
672
- transition: opacity 0.2s;
673
- }
674
-
675
- .video-cover:hover .play-btn {
676
- opacity: 1;
677
- }.call {
678
- position: absolute;
679
- cursor: pointer;
680
- user-select: none;
487
+ .element-ditu .map {
488
+ width: 100%;
489
+ height: 100%
681
490
  }
682
491
 
683
- .call .ani-wrap {
492
+ .element-ditu .map .el-button {
493
+ width: 100%;
494
+ height: 100%;
495
+ display: -webkit-box;
496
+ display: -ms-flexbox;
684
497
  display: flex;
685
- justify-content: center;
498
+ -webkit-box-align: center;
499
+ -ms-flex-align: center;
686
500
  align-items: center;
501
+ padding: 0;
502
+ -webkit-box-pack: center;
503
+ -ms-flex-pack: center;
504
+ justify-content: center;
505
+ background: inherit;
506
+ color: inherit;
507
+ border: none
508
+ }
509
+
510
+ .element-ditu .center-map {
687
511
  width: 100%;
688
512
  height: 100%;
689
- overflow: hidden;
690
- transition: opacity 0.2s;
513
+ background: #fff
691
514
  }
692
515
 
693
- .call .ani-wrap:hover {
694
- opacity: 0.9;
516
+ .element-ditu .mask-map {
517
+ position: absolute;
518
+ width: 100%;
519
+ height: 100%;
520
+ top: 0
695
521
  }
696
-
697
- .call-content {
522
+ .map-iframe {
523
+ width: 100%;
524
+ height: 100%;
525
+ }#audio {
526
+ position: absolute;
527
+ right: 10px;
528
+ top: 10px;
529
+ z-index: 103;
530
+ width: 30px;
531
+ height: 30px;
698
532
  display: flex;
699
533
  align-items: center;
700
- justify-content: center;
701
534
  }
702
535
 
703
- .btn-text {
704
- margin-left: 10px;
536
+ #audio .mrotate {
537
+ animation: mrotate 5s linear infinite;
705
538
  }
706
539
 
707
-
708
- .hb-tel:before {
709
- content: "\E642";
710
- }.ele-shape {
711
- position: absolute;
712
- overflow: hidden;
540
+ @keyframes mrotate {
541
+ to {
542
+ transform: rotate(1turn);
543
+ }
713
544
  }
714
545
 
715
- .ani-wrap {
546
+ #audio .audio {
716
547
  width: 100%;
717
548
  height: 100%;
718
- box-sizing: border-box;
549
+ display: flex;
550
+ align-items: center;
551
+ justify-content: center;
552
+ color: #fff;
553
+ background: #666;
554
+ border-radius: 50%;
555
+ overflow: hidden;
556
+ cursor: pointer;
557
+ transition: all 0.3s ease;
719
558
  }
720
559
 
721
- .e-shape {
722
- width: 100%;
723
- height: 100%;
560
+ #audio .audio.a-border {
561
+ border: 1px solid #fff;
724
562
  }
725
563
 
726
- .svg-container :deep(svg) {
727
- width: 100%;
728
- height: 100%;
564
+ #audio .audio .music-icon {
729
565
  display: block;
566
+ width: 60%;
567
+ height: 60%;
568
+ object-fit: contain;
730
569
  }
731
570
 
732
- .svg-loading,
733
- .svg-error {
734
- display: flex;
735
- align-items: center;
736
- justify-content: center;
737
- width: 100%;
738
- height: 100%;
739
- background: rgba(0,0,0,0.05);
740
- }.ele-effect {
741
- will-change: transform;
571
+ #audio .audio .iconfont {
572
+ font-size: 2opx;
573
+ line-height: 1;
574
+ }
575
+ #audio .icon-cancel {
576
+ position: absolute;
577
+ width: 100%;
578
+ height: 100%;
579
+ border-radius: 50%;
580
+ overflow: hidden;
581
+ padding: 15px 0;
582
+ }
583
+ #audio .icon-cancel .icon-h {
584
+ transform: rotate(45deg);
585
+ width: 100%;
586
+ height: 2px;
587
+ background: #fff;
588
+ }
589
+ #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
590
+ content: '';
591
+ position: absolute;
592
+ width: 100%;
593
+ height: 2px;
594
+ background: #fff;
595
+ }
596
+ @keyframes jumpheart {
597
+ to {
598
+ -webkit-transform: scale(1.2);
599
+ transform: scale(1.2)
600
+ }
601
+ }
602
+ .ele-calendar {
603
+ position: relative;
604
+ width: 325px !important;
605
+ min-height: 325px !important;
606
+ height: auto !important;
742
607
  }
743
608
 
744
- .ele-effect .effect-wrap {
609
+ .ele-calendar .drag-point {
610
+ cursor: default !important;
611
+ }
612
+
613
+ .ele-calendar .ani-wrap {
745
614
  position: relative;
746
615
  width: 100%;
747
- height: 100%;
616
+ min-height: 325px !important;
617
+ height: auto !important;
618
+ padding: 22px 0;
748
619
  }
749
620
 
750
- .particle {
751
- position: absolute;
752
- background-repeat: no-repeat;
753
- background-size: contain;
754
- animation-name: falling;
755
- animation-timing-function: linear;
756
- animation-iteration-count: infinite;
757
- will-change: transform;
621
+ .ele-calendar .ani-wrap .can-wrap .can-top {
622
+ display: flex;
623
+ justify-content: space-between;
624
+ align-items: flex-end;
625
+ line-height: 1;
626
+ padding: 0 47px 20px;
758
627
  }
759
628
 
760
- @keyframes falling {
761
- 0% {
762
- transform: translateY(0) rotate(0deg);
763
- opacity: 1;
764
- }
765
- 80% {
766
- opacity: 0.8;
767
- }
768
- 100% {
769
- transform: translateY(100vh) rotate(360deg);
770
- opacity: 0;
771
- }
629
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-left {
630
+ font-size: 25px;
631
+ padding-bottom: 4px;
772
632
  }
773
- .ele-lottie .ele-lotwrap {
774
- overflow: hidden
633
+
634
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-right {
635
+ font-size: 25px;
775
636
  }
776
637
 
777
- .ele-effect .effect-wrap {
778
- position: relative;
779
- overflow: hidden;
780
- width: 100%;
781
- height: 100%
638
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
639
+ position: relative;
640
+ top: 2px;
641
+ font-size: 57px;
782
642
  }
783
643
 
784
- .ele-effect .e-small {
785
- position: absolute;
786
- width: 24px;
787
- height: 24px;
788
- background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
789
- background-size: cover;
790
- background-repeat: no-repeat;
791
- -webkit-transform-origin: center;
792
- transform-origin: center;
793
- -webkit-animation: snow 5s linear infinite;
794
- animation: snow 5s linear infinite
795
- }/* Iconfont definition */
796
- .icon-danmuliebiao1:before {
797
- content: "\E68A";
798
- }
799
-
800
- .icon-cuowu2:before {
801
- content: "\E65E";
802
- }
803
-
804
- i {
805
- font-style: normal;
806
- }
807
-
808
- .v-modal {
809
- position: fixed;
810
- left: 0;
811
- top: 0;
812
- width: 100%;
813
- height: 100%;
814
- opacity: .5;
815
- background: #000;
816
- }
817
- /* 底部工具栏样式 */
818
- #toolbarNew {
819
- position: fixed;
820
- left: 0;
821
- bottom: 0;
822
- width: 100%;
823
- padding: 12px 0;
824
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
825
- z-index: 100;
826
- }
827
-
828
- .toolbar {
829
- display: flex;
830
- align-items: center;
831
- padding: 0 10px;
832
- }
833
-
834
- .bar-left {
835
- position: relative;
836
- flex: 1;
837
- }
838
-
839
- .bar-mess {
840
- width: 100%;
841
- height: 36px;
842
- line-height: 36px;
843
- font-size: 14px;
844
- color: #ccc;
845
- padding: 0 8px;
846
- border-radius: 18px;
847
- border: none;
848
- -webkit-appearance: none;
849
- background-color: rgba(0, 0, 0, 0.28);
850
- }
851
-
852
- .bar-mess::placeholder {
853
- color: rgba(255, 255, 255, 0.7);
854
- }
855
-
856
- .bar-left .iconfont {
857
- position: absolute;
858
- right: 10px;
859
- top: 50%;
860
- transform: translateY(-50%);
861
- color: #f2f2f2;
862
- font-size: 16px;
863
- cursor: pointer;
864
- z-index: 2;
865
- padding: 5px;
866
- }
867
-
868
- /* 关闭弹幕按钮样式 */
869
- .toolbar-close {
870
- position: absolute;
871
- left: 10px;
872
- transform: translateY(-50%);
873
- display: flex;
874
- align-items: center;
875
- cursor: pointer;
876
- z-index: 2;
877
- }
878
-
879
- .toolbar-close img {
880
- display: block;
881
- width: 36px;
882
- height: 36px;
883
- cursor: pointer;
884
- }
885
-
886
- /* 弹幕容器样式 */
887
- .bullet-container {
888
- position: fixed;
889
- left: 10px;
890
- right: 10px;
891
- height: 120px;
892
- overflow: hidden;
893
- z-index: 99;
894
- pointer-events: none;
895
- }
896
-
897
- .bullet-item {
898
- position: absolute;
899
- left: 0;
900
- bottom: 0;
901
- padding: 5px 10px;
902
- border-radius: 15px;
903
- font-size: 14px;
904
- white-space: nowrap;
905
- animation: bulletMove linear;
906
- animation-fill-mode: forwards;
907
- will-change: transform;
908
- display: inline-block;
909
- max-width: 90%;
910
- }
911
-
912
- @keyframes bulletMove {
913
- 0% {
914
- transform: translateY(0);
915
- opacity: 1;
916
- }
917
- 100% {
918
- transform: translateY(calc(-1 * 150px));
919
- opacity: 0;
920
- }
921
- }
922
-
923
- /* 弹幕输入弹窗样式 */
924
- .popup-overlay {
925
- position: fixed;
926
- top: 0;
927
- left: 0;
928
- right: 0;
929
- bottom: 0;
930
- background: rgba(0, 0, 0, 0.5);
931
- display: flex;
932
- justify-content: center;
933
- align-items: flex-end;
934
- z-index: 200;
935
- }
936
-
937
- #index .mint-popup {
938
- background-color: transparent;
939
- }
940
-
941
- .mint-popup {
942
- position: fixed;
943
- background: #fff;
944
- top: 50%;
945
- left: 50%;
946
- transform: translate3d(-50%, -50%, 0);
947
- -webkit-backface-visibility: hidden;
948
- backface-visibility: hidden;
949
- transition: .2s ease-out;
950
- }
951
-
952
- .bar-messwin {
953
- width: 309px;
954
- height: 341px;
955
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/mess-bg.png') no-repeat 50%;
956
- background-size: 100% 100%;
957
- position: relative;
958
- display: flex;
959
- flex-direction: column;
960
- align-items: center;
961
- margin-bottom: 20px;
962
- }
963
-
964
- .bar-messwin .mess-logo {
965
- width: 171px;
966
- height: 110px;
967
- margin-top: -64px;
968
- margin-left: 11px;
969
- }
970
-
971
- .bar-messwin .mess-title {
972
- margin-top: 12px;
973
- font-weight: 600;
974
- font-size: 21px;
975
- color: #333;
976
- }
977
-
978
- .bar-messwin .mess-input {
979
- width: 267px;
980
- height: 43px;
981
- background: #fff;
982
- border-radius: 9px;
983
- border: 1px solid rgba(237,85,102,0.4);
984
- margin-top: 12px;
985
- display: flex;
986
- align-items: center;
987
- justify-content: center;
988
- padding: 0 13px;
989
- }
990
-
991
- .bar-messwin .mess-input input {
992
- width: 100%;
993
- font-size: 17px;
994
- font-family: PingFang SC;
995
- font-weight: 400;
996
- color: #333;
997
- border: none;
998
- outline: none;
999
- background: transparent;
1000
- }
1001
-
1002
- .bar-messwin .mess-input input::-webkit-input-placeholder {
1003
- color: #999;
1004
- }
1005
-
1006
- .bar-messwin .mess-input input::-ms-input-placeholder {
1007
- color: #999;
1008
- }
1009
-
1010
- .bar-messwin .mess-input input::placeholder {
1011
- color: #999;
1012
- }
1013
-
1014
- .bar-messwin .mess-textarea {
1015
- width: 267px;
1016
- height: 85px;
1017
- background: #fff;
1018
- border-radius: 9px;
1019
- border: 1px solid rgba(237,85,102,0.4);
1020
- display: flex;
1021
- padding: 9px 13px;
1022
- justify-content: space-between;
1023
- margin-top: 12px;
1024
- position: relative;
1025
- }
1026
-
1027
- .bar-messwin .mess-textarea textarea {
1028
- width: 203px;
1029
- height: 68px;
1030
- font-size: 17px;
1031
- resize: none;
1032
- outline: none;
1033
- border: none;
1034
- background: transparent;
1035
- color: #333;
1036
- font-family: PingFang SC;
1037
- }
1038
-
1039
- .bar-messwin .mess-textarea textarea::-webkit-input-placeholder {
1040
- color: #999;
1041
- }
1042
-
1043
- .bar-messwin .mess-textarea textarea::-ms-input-placeholder {
1044
- color: #999;
1045
- }
1046
-
1047
- .bar-messwin .mess-textarea textarea::placeholder {
1048
- color: #999;
1049
- }
1050
-
1051
- .bar-messwin .mess-textarea img {
1052
- width: 26px;
1053
- height: 26px;
1054
- cursor: pointer;
1055
- }
1056
-
1057
- .bar-messwin .mess-textarea .wish-dropdown {
1058
- position: absolute;
1059
- top: 43px;
1060
- right: 0;
1061
- width: 267px;
1062
- background: #fff;
1063
- border-radius: 9px;
1064
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
1065
- z-index: 10;
1066
- max-height: 213px;
1067
- overflow-y: auto;
1068
- border: 1px solid rgba(237,85,102,0.2);
1069
- padding: 0 13px;
1070
- }
1071
-
1072
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar {
1073
- width: 3px;
1074
- background-color: transparent;
1075
- display: block;
1076
- }
1077
-
1078
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-thumb {
1079
- background-color: #ccc;
1080
- border-radius: 9px;
1081
- min-height: 32px;
1082
- }
1083
-
1084
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-track {
1085
- background-color: transparent;
1086
- border-radius: 3px;
1087
- margin: 4px 0;
1088
- }
1089
-
1090
- .bar-messwin .mess-textarea .wish-dropdown .wish-item {
1091
- padding: 11px 0;
1092
- display: flex;
1093
- align-items: flex-start;
1094
- cursor: pointer;
1095
- transition: background-color 0.2s;
1096
- border-bottom: 1px solid rgba(0,0,0,0.05);
1097
- }
1098
-
1099
- .bar-messwin .mess-textarea .wish-dropdown .wish-item:last-child {
1100
- border-bottom: none;
1101
- }
1102
-
1103
- .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-dot {
1104
- color: #ff4874;
1105
- margin-right: 5px;
1106
- font-size: 11px;
1107
- line-height: 21px;
1108
- }
1109
-
1110
- .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-text {
1111
- font-size: 15px;
1112
- color: #333;
1113
- line-height: 21px;
1114
- text-align: left;
1115
- }
1116
-
1117
- .bar-messwin .bar-m-sub {
1118
- width: 267px;
1119
- height: 43px;
1120
- background: linear-gradient(270deg,#ff4874,#ff9061);
1121
- border-radius: 68px;
1122
- font-size: 17px;
1123
- font-family: PingFang SC;
1124
- font-weight: 400;
1125
- color: #fff;
1126
- margin-top: 26px;
1127
- border: none;
1128
- outline: none;
1129
- cursor: pointer;
1130
- display: flex;
1131
- align-items: center;
1132
- justify-content: center;
1133
- }
1134
-
1135
- .bar-messwin .icon-cuowu2, .give-gift .icon-cuowu2 {
1136
- position: absolute;
1137
- bottom: -60px;
1138
- right: 50%;
1139
- transform: translateX(50%);
1140
- font-size: 28px;
1141
- color: #fff;
1142
- cursor: pointer;
1143
- }
1144
-
1145
- /* 提示弹窗样式 */
1146
- .mint-msgbox-wrapper {
1147
- position: fixed;
1148
- top: 0;
1149
- left: 0;
1150
- right: 0;
1151
- bottom: 0;
1152
- background-color: rgba(0,0,0,0.5);
1153
- z-index: 2005;
1154
- display: flex;
1155
- justify-content: center;
1156
- align-items: center;
1157
- }
1158
-
1159
- .mint-msgbox {
1160
- position: relative;
1161
- background-color: #fff;
1162
- width: 85%;
1163
- border-radius: 3px;
1164
- font-size: 17px;
1165
- overflow: hidden;
1166
- }
1167
-
1168
- .mint-msgbox-header {
1169
- padding: 16px 0 0;
1170
- }
1171
-
1172
- .mint-msgbox-content {
1173
- padding: 11px 21px 16px;
1174
- border-bottom: 1px solid #ddd;
1175
- min-height: 38px;
1176
- position: relative;
1177
- }
1178
-
1179
- .mint-msgbox-title {
1180
- text-align: center;
1181
- padding-left: 0;
1182
- margin-bottom: 0;
1183
- font-size: 17px;
1184
- font-weight: 700;
1185
- color: #333;
1186
- }
1187
-
1188
- .mint-msgbox-message {
1189
- color: #999;
1190
- margin: 0;
1191
- text-align: center;
1192
- line-height: 38px;
1193
- }
1194
-
1195
- .mint-msgbox-btns {
1196
- display: flex;
1197
- height: 43px;
1198
- line-height: 43px;
1199
- }
1200
-
1201
- .mint-msgbox-btn {
1202
- line-height: 37px;
1203
- display: block;
1204
- background-color: #fff;
1205
- flex: 1;
1206
- margin: 0;
1207
- border: 0;
1208
- }
1209
-
1210
- .mint-msgbox-confirm {
1211
- color: #26a2ff;
1212
- width: 100%;
1213
- }
1214
- /* 右侧按钮区域样式 */
1215
- #toolbarNew .toolbar .bar-right {
1216
- margin-left: 7px;
1217
- font-size: 0;
1218
- display: flex;
1219
- align-items: center;
1220
- }
1221
-
1222
- #toolbarNew .toolbar .bar-right.move-left {
1223
- right: 64px;
1224
- }
1225
-
1226
- #toolbarNew .toolbar .bar-right .bar-r-com,
1227
- #toolbarNew .toolbar .bar-right>img {
1228
- display: inline-block;
1229
- vertical-align: middle;
1230
- }
1231
-
1232
- #toolbarNew .toolbar .bar-right .bar-r-com {
1233
- margin-left: 8px;
1234
- cursor: pointer;
1235
- }
1236
-
1237
- #toolbarNew .toolbar .bar-right .bar-r-com.bar-r-gift {
1238
- width: 36px;
1239
- height: 36px;
1240
- transform-origin: center bottom;
1241
- animation: giftJump 3s ease infinite;
1242
- }
1243
-
1244
- @keyframes giftJump {
1245
- 0%, 24%, 48%, to {
1246
- transform: translateZ(0);
1247
- }
1248
- 12% {
1249
- transform: translate3d(0, -10px, 0);
1250
- }
1251
- 36% {
1252
- transform: translate3d(0, -10px, 0);
1253
- }
1254
- }
1255
-
1256
- #toolbarNew .toolbar .bar-right .bar-r-com:first-child {
1257
- margin-left: 0;
1258
- }
1259
-
1260
- #toolbarNew .toolbar .bar-right>img {
1261
- position: relative;
1262
- z-index: 1;
1263
- width: 26px;
1264
- height: 26px;
1265
- }
1266
-
1267
- #toolbarNew .toolbar .bar-right .bar-heart {
1268
- position: relative;
1269
- width: 36px;
1270
- height: 36px;
1271
- text-align: center;
1272
- }
1273
-
1274
- #toolbarNew .toolbar .bar-right .bar-heart .bar-praise {
1275
- position: absolute;
1276
- max-width: 36px;
1277
- height: 15px;
1278
- line-height: 15px;
1279
- right: 0;
1280
- top: 0;
1281
- z-index: 3;
1282
- font-size: 10px;
1283
- color: #fff;
1284
- border-radius: 6px;
1285
- padding: 0 4px;
1286
- box-sizing: border-box;
1287
- white-space: nowrap;
1288
- background-color: #f38200;
1289
- transform: translateX(40%);
1290
- }
1291
-
1292
- #toolbarNew .toolbar .bar-right .bar-zan {
1293
- position: relative;
1294
- z-index: 2;
1295
- height: 33px;
1296
- width: 33px;
1297
- box-sizing: border-box;
1298
- }
1299
-
1300
- #toolbarNew .toolbar .bar-right .bar-zan .ani-num {
1301
- position: absolute;
1302
- top: 0;
1303
- left: 10px;
1304
- opacity: 0;
1305
- font-size: 15px;
1306
- color: #f07a87;
1307
- }
1308
-
1309
- #toolbarNew .toolbar .bar-right .bar-zan .stop-longtap {
1310
- position: absolute;
1311
- left: 0;
1312
- right: 0;
1313
- bottom: 0;
1314
- top: 0;
1315
- z-index: 1;
1316
- }
1317
-
1318
- #toolbarNew .toolbar .bar-right .bar-zan img {
1319
- width: 36px;
1320
- height: 36px;
1321
- }
1322
-
1323
- #toolbarNew .toolbar .bar-right .bar-zan.active .ani-num {
1324
- z-index: 2;
1325
- animation: praise 1.2s;
1326
- animation-fill-mode: both;
1327
- }
1328
-
1329
- @keyframes praise {
1330
- 0% {
1331
- opacity: 1;
1332
- }
1333
- 50% {
1334
- opacity: 1;
1335
- transform: translate3d(0, -35px, 0);
1336
- }
1337
- to {
1338
- opacity: 0;
1339
- transform: translate3d(0, -35px, 0);
1340
- }
1341
- }
1342
-
1343
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap {
1344
- transform: scale(0.85);
1345
- }
1346
-
1347
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:first-of-type {
1348
- animation: jump .6s ease-out;
1349
- }
1350
-
1351
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(2) {
1352
- animation: jump2 .6s ease-out;
1353
- }
1354
-
1355
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(3) {
1356
- animation: jump3 .6s ease-out;
1357
- }
1358
-
1359
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(4) {
1360
- animation: jump4 .6s ease-out;
1361
- }
1362
-
1363
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(5) {
1364
- animation: jump5 .6s ease-out;
1365
- }
1366
-
1367
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(6) {
1368
- animation: jump6 .6s ease-out;
1369
- }
1370
-
1371
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(7) {
1372
- animation: jump7 .6s ease-out;
1373
- }
1374
-
1375
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(8) {
1376
- animation: jump8 .6s ease-out;
1377
- }
1378
-
1379
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap {
1380
- position: absolute;
1381
- left: 0;
1382
- top: 0;
1383
- right: 0;
1384
- bottom: 0;
1385
- pointer-events: none;
1386
- overflow: visible;
1387
- }
1388
-
1389
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span {
1390
- position: absolute;
1391
- width: 6px;
1392
- height: 6px;
1393
- border-radius: 50%;
1394
- opacity: 0;
1395
- }
1396
-
1397
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:first-of-type {
1398
- left: 50%;
1399
- top: -8px;
1400
- transform: translate3d(-50%, 0, 0);
1401
- background-color: #b3e5c8;
1402
- }
1403
-
1404
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(2) {
1405
- left: -8px;
1406
- top: 50%;
1407
- transform: translate3d(0, -50%, 0);
1408
- background-color: #f4ba31;
1409
- }
1410
-
1411
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(3) {
1412
- left: 50%;
1413
- bottom: -8px;
1414
- transform: translate3d(-50%, 0, 0);
1415
- background-color: #339fef;
1416
- }
1417
-
1418
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(4) {
1419
- top: 50%;
1420
- right: -8px;
1421
- transform: translate3d(0, -50%, 0);
1422
- background-color: #e2264d;
1423
- }
1424
-
1425
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(5) {
1426
- left: -5px;
1427
- top: 0;
1428
- transform: translate3d(0, -50%, 0);
1429
- background-color: #a08880;
1430
- }
1431
-
1432
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(6) {
1433
- left: -5px;
1434
- bottom: 0;
1435
- transform: translate3d(0, 50%, 0);
1436
- background-color: #43c1b5;
1437
- }
1438
-
1439
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(7) {
1440
- right: -5px;
1441
- bottom: 0;
1442
- transform: translate3d(0, 50%, 0);
1443
- background-color: #f5be3b;
1444
- }
1445
-
1446
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(8) {
1447
- right: -5px;
1448
- top: 0;
1449
- transform: translate3d(0, -50%, 0);
1450
- background-color: coral;
1451
- }
1452
-
1453
- @keyframes jump {
1454
- 0% {
1455
- opacity: 1;
1456
- transform: translate3d(-50%, 0, 0) scale(1);
1457
- }
1458
- 40% {
1459
- transform: translate3d(-50%, -100%, 0) scale(0.7);
1460
- }
1461
- to {
1462
- opacity: 1;
1463
- transform: translate3d(-50%, -150%, 0) scale(0);
1464
- }
1465
- }
1466
-
1467
- @keyframes jump2 {
1468
- 0% {
1469
- opacity: 1;
1470
- transform: translate3d(0, -50%, 0) scale(1);
1471
- }
1472
- 40% {
1473
- transform: translate3d(-100%, -50%, 0) scale(0.7);
1474
- }
1475
- to {
1476
- opacity: 1;
1477
- transform: translate3d(-150%, -50%, 0) scale(0);
1478
- }
1479
- }
1480
-
1481
- @keyframes jump3 {
1482
- 0% {
1483
- opacity: 1;
1484
- transform: translate3d(-50%, 0, 0) scale(1);
1485
- }
1486
- 40% {
1487
- transform: translate3d(-50%, 100%, 0) scale(0.7);
1488
- }
1489
- to {
1490
- opacity: 1;
1491
- transform: translate3d(-50%, 150%, 0) scale(0);
1492
- }
1493
- }
1494
-
1495
- @keyframes jump4 {
1496
- 0% {
1497
- opacity: 1;
1498
- transform: translate3d(0, -50%, 0) scale(1);
1499
- }
1500
- 40% {
1501
- transform: translate3d(100%, -50%, 0) scale(0.7);
1502
- }
1503
- to {
1504
- opacity: 1;
1505
- transform: translate3d(150%, -50%, 0) scale(0);
1506
- }
1507
- }
1508
-
1509
- @keyframes jump5 {
1510
- 0% {
1511
- opacity: 1;
1512
- transform: translate3d(0, -50%, 0) scale(1);
1513
- }
1514
- 40% {
1515
- transform: translate3d(-80%, -80%, 0) scale(0.7);
1516
- }
1517
- to {
1518
- opacity: 1;
1519
- transform: translate3d(-130%, -130%, 0) scale(0);
1520
- }
1521
- }
1522
-
1523
- @keyframes jump6 {
1524
- 0% {
1525
- opacity: 1;
1526
- transform: translate3d(0, 50%, 0) scale(1);
1527
- }
1528
- 40% {
1529
- transform: translate3d(-80%, 80%, 0) scale(0.7);
1530
- }
1531
- to {
1532
- opacity: 1;
1533
- transform: translate3d(-130%, 130%, 0) scale(0);
1534
- }
1535
- }
1536
-
1537
- @keyframes jump7 {
1538
- 0% {
1539
- opacity: 1;
1540
- transform: translate3d(0, 50%, 0) scale(1);
1541
- }
1542
- 40% {
1543
- transform: translate3d(80%, 80%, 0) scale(0.7);
1544
- }
1545
- to {
1546
- opacity: 1;
1547
- transform: translate3d(130%, 130%, 0) scale(0);
1548
- }
1549
- }
1550
-
1551
- @keyframes jump8 {
1552
- 0% {
1553
- opacity: 1;
1554
- transform: translate3d(0, 50%, 0) scale(1);
1555
- }
1556
- 40% {
1557
- transform: translate3d(80%, -80%, 0) scale(0.7);
1558
- }
1559
- to {
1560
- opacity: 1;
1561
- transform: translate3d(130%, -130%, 0) scale(0);
1562
- }
1563
- }
1564
-
1565
- /* 礼物弹窗样式 */
1566
- .give-gift {
1567
- position: fixed;
1568
- top: 50%;
1569
- left: 50%;
1570
- transform: translate(-50%, -50%);
1571
- z-index: 2004;
1572
- background: white;
1573
- padding: 20px;
1574
- border-radius: 10px;
1575
- text-align: center;
1576
- }
1577
-
1578
- .give-gift .back {
1579
- position: absolute;
1580
- top: 10px;
1581
- left: 10px;
1582
- cursor: pointer;
1583
- }
1584
-
1585
- .give-gift img {
1586
- max-width: 300px;
1587
- max-height: 300px;
1588
- margin-top: 20px;
1589
- }
1590
-
1591
- /* 留言成功弹窗样式 */
1592
- .mess-success-popup {
1593
- position: fixed;
1594
- top: 0;
1595
- left: 0;
1596
- right: 0;
1597
- bottom: 0;
1598
- background-color: rgba(0, 0, 0, 0.5);
1599
- z-index: 2003;
1600
- display: flex;
1601
- justify-content: center;
1602
- align-items: center;
1603
- }
1604
-
1605
- .mess-success-popup .gift-popup {
1606
- width: 300px;
1607
- height: 200px;
1608
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
1609
- border-radius: 10px;
1610
- padding: 20px;
1611
- text-align: center;
1612
- position: relative;
1613
- }
1614
-
1615
- .mess-success-popup .gift-popup .icon-cuowu2 {
1616
- position: absolute;
1617
- top: 10px;
1618
- right: 10px;
1619
- cursor: pointer;
1620
- }
1621
-
1622
- .mess-success-popup .gift-popup .toast {
1623
- display: flex;
1624
- align-items: center;
1625
- justify-content: center;
1626
- margin: 10px 0;
1627
- }
1628
-
1629
- .mess-success-popup .gift-popup .toast img {
1630
- width: 20px;
1631
- height: 15px;
1632
- margin: 0 5px;
1633
- }
1634
-
1635
- .mess-success-popup .gift-popup .title {
1636
- margin: 15px 0;
1637
- font-size: 16px;
1638
- color: #333;
1639
- }
1640
-
1641
- .mess-success-popup .gift-popup .btn {
1642
- background: linear-gradient(270deg, #ff4874, #ff9061);
1643
- color: white;
1644
- border: none;
1645
- padding: 10px 20px;
1646
- border-radius: 20px;
1647
- margin-top: 15px;
1648
- cursor: pointer;
1649
- }
1650
-
1651
- /* 新增图片加载动画样式 */
1652
- .gift-image-container {
1653
- position: relative;
1654
- width: 300px;
1655
- height: 300px;
1656
- margin: 20px 0;
1657
- overflow: hidden;
1658
- }
1659
-
1660
- .gift-image-container img {
1661
- width: 100%;
1662
- height: 100%;
1663
- object-fit: contain;
1664
- opacity: 0;
1665
- transition: opacity 0.5s ease-in-out;
1666
- }
1667
-
1668
- .gift-image-container img.loaded {
1669
- opacity: 1;
1670
- }
1671
-
1672
- .image-loading {
1673
- position: absolute;
1674
- top: 0;
1675
- left: 0;
1676
- width: 100%;
1677
- height: 100%;
1678
- display: flex;
1679
- justify-content: center;
1680
- align-items: center;
1681
- background: rgba(255, 255, 255, 0.8);
1682
- }
1683
-
1684
- .loading-spinner {
1685
- width: 40px;
1686
- height: 40px;
1687
- border: 4px solid #f3f3f3;
1688
- border-top: 4px solid #ed5566;
1689
- border-radius: 50%;
1690
- animation: spin 1s linear infinite;
1691
- }
1692
-
1693
- @keyframes spin {
1694
- 0% { transform: rotate(0deg); }
1695
- 100% { transform: rotate(360deg); }
1696
- }
1697
-
1698
- .button {
644
+ .ele-calendar .ani-wrap .can-wrap .can-main {
645
+ padding: 0 23px;
646
+ }
647
+
648
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-week {
649
+ display: flex;
650
+ justify-content: flex-start;
651
+ height: 25px;
652
+ line-height: 25px;
653
+ padding: 0 10px;
654
+ border-radius: 13px;
655
+ }
656
+
657
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
658
+ width: 14.2%;
659
+ text-align: center;
660
+ color: #fff;
661
+ font-size: 12px;
662
+ }
663
+
664
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
665
+ font-size: 0;
666
+ padding: 5px 10px 0;
667
+ text-align: left;
668
+ }
669
+
670
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
671
+ position: relative;
672
+ display: inline-block;
673
+ height: 25px;
674
+ text-align: center;
675
+ margin-top: 8px;
676
+ }
677
+
678
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
679
+ display: block;
680
+ }
681
+
682
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
683
+ color: #fff !important;
684
+ }
685
+
686
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
687
+ animation: jumpheart 0.8s ease infinite alternate;
688
+ }
689
+
690
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
691
+ display: none;
692
+ font-size: 26px;
693
+ }
694
+
695
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
1699
696
  position: absolute;
1700
- cursor: pointer;
1701
- user-select: none;
697
+ left: 50%;
698
+ top: 50%;
699
+ z-index: 1;
700
+ color: #666;
701
+ font-size: 13px;
702
+ transform: translate(-50%, -52%);
1702
703
  }
1703
-
1704
- .button .ani-wrap {
704
+
705
+ .ele-calendar .bottom-center,
706
+ .ele-calendar .left-center,
707
+ .ele-calendar .right-center,
708
+ .ele-calendar .top-center {
709
+ display: none !important;
710
+ }
711
+
712
+ .ele-calendar .ani-wrap .can-wrap2 {
713
+ padding: 21px 23px 0
714
+ }
715
+
716
+ .ele-calendar .ani-wrap .can-wrap2 .can-top {
717
+ display: -webkit-box;
718
+ display: -ms-flexbox;
1705
719
  display: flex;
1706
- justify-content: center;
1707
- align-items: center;
1708
- width: 100%;
1709
- height: 100%;
1710
- overflow: hidden;
1711
- transition: opacity 0.2s;
720
+ -webkit-box-pack: justify;
721
+ -ms-flex-pack: justify;
722
+ justify-content: space-between;
723
+ -webkit-box-align: end;
724
+ -ms-flex-align: end;
725
+ align-items: flex-end;
726
+ line-height: 1;
727
+ padding: 0 16px 22px;
728
+ font-size: 36px
1712
729
  }
1713
-
1714
- .button .ani-wrap:hover {
1715
- opacity: 0.9;
730
+
731
+ .ele-calendar .ani-wrap .can-wrap2 .can-top span {
732
+ font-size: 16px
1716
733
  }
1717
734
 
1718
- .button-content {
735
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
736
+ display: -webkit-box;
737
+ display: -ms-flexbox;
1719
738
  display: flex;
1720
- align-items: center;
1721
- justify-content: center;
739
+ -webkit-box-pack: start;
740
+ -ms-flex-pack: start;
741
+ justify-content: flex-start;
742
+ height: 25px;
743
+ line-height: 25px;
744
+ padding: 0 10px;
745
+ border-radius: 13px
1722
746
  }
1723
747
 
1724
- .btn-text {
1725
- margin-left: 10px;
1726
- }#audio {
748
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
749
+ width: 14.2%;
750
+ text-align: center;
751
+ color: #fff;
752
+ font-size: 12px;
753
+ font-weight: 600
754
+ }
755
+
756
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
757
+ position: relative
758
+ }
759
+
760
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
1727
761
  position: absolute;
1728
- right: 10px;
1729
- top: 10px;
1730
- z-index: 103;
1731
- width: 30px;
1732
- height: 30px;
1733
- display: flex;
1734
- align-items: center;
762
+ white-space: nowrap;
763
+ left: 50%;
764
+ top: 15%;
765
+ -webkit-transform: translateX(-50%);
766
+ transform: translateX(-50%);
767
+ font-size: 76px;
768
+ opacity: .1;
769
+ font-weight: 600
1735
770
  }
1736
771
 
1737
- #audio .mrotate {
1738
- animation: mrotate 5s linear infinite;
772
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
773
+ font-size: 0;
774
+ padding: 5px 10px 0;
775
+ text-align: left
776
+ }
777
+
778
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
779
+ position: relative;
780
+ display: inline-block;
781
+ width: 14.2%;
782
+ height: 25px;
783
+ text-align: center;
784
+ margin-top: 8px
785
+ }
786
+
787
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
788
+ display: block;
789
+ position: absolute;
790
+ left: 17%;
791
+ top: 0;
792
+ font-size: 25px
793
+ }
794
+
795
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
796
+ color: #fff!important
797
+ }
798
+
799
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
800
+ -webkit-animation: jumpheart .8s ease infinite alternate;
801
+ animation: jumpheart .8s ease infinite alternate
802
+ }
803
+
804
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
805
+ display: none;
806
+ font-size: 26px
807
+ }
808
+
809
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
810
+ position: absolute;
811
+ left: 50%;
812
+ top: 50%;
813
+ z-index: 1;
814
+ color: #666;
815
+ font-size: 13px;
816
+ -webkit-transform: translate(-50%,-52%);
817
+ transform: translate(-50%,-52%)
818
+ }
819
+
820
+ .ele-calendar .ani-wrap .can-wrap3 .can-top {
821
+ display: -webkit-box;
822
+ display: -ms-flexbox;
823
+ display: flex;
824
+ -webkit-box-pack: justify;
825
+ -ms-flex-pack: justify;
826
+ justify-content: space-between;
827
+ -webkit-box-align: end;
828
+ -ms-flex-align: end;
829
+ align-items: flex-end;
830
+ line-height: 1;
831
+ padding: 18px 33px 10px;
832
+ font-size: 36px;
1739
833
  }
1740
834
 
1741
- @keyframes mrotate {
1742
- to {
1743
- transform: rotate(1turn);
1744
- }
835
+ .ele-calendar .ani-wrap .can-wrap3 .can-top span {
836
+ font-size: 16px
1745
837
  }
1746
838
 
1747
- #audio .audio {
1748
- width: 100%;
1749
- height: 100%;
1750
- display: flex;
1751
- align-items: center;
1752
- justify-content: center;
1753
- color: #fff;
1754
- background: #666;
1755
- border-radius: 50%;
1756
- overflow: hidden;
1757
- cursor: pointer;
1758
- transition: all 0.3s ease;
839
+ .ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
840
+ font-size: 20px
1759
841
  }
1760
842
 
1761
- #audio .audio.a-border {
1762
- border: 1px solid #fff;
843
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
844
+ display: -webkit-box;
845
+ display: -ms-flexbox;
846
+ display: flex;
847
+ -webkit-box-pack: start;
848
+ -ms-flex-pack: start;
849
+ justify-content: flex-start;
850
+ height: 40px;
851
+ line-height: 40px;
852
+ padding: 0 34px;
853
+ border-bottom: 1px solid
1763
854
  }
1764
855
 
1765
- #audio .audio .music-icon {
1766
- display: block;
1767
- width: 60%;
1768
- height: 60%;
1769
- object-fit: contain;
856
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
857
+ width: 14.2%;
858
+ text-align: center;
859
+ color: #fff;
860
+ font-size: 12px;
861
+ font-weight: 600
1770
862
  }
1771
863
 
1772
- #audio .audio .iconfont {
1773
- font-size: 2opx;
1774
- line-height: 1;
1775
- }
1776
- #audio .icon-cancel {
1777
- position: absolute;
1778
- width: 100%;
1779
- height: 100%;
1780
- border-radius: 50%;
1781
- overflow: hidden;
1782
- padding: 15px 0;
864
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
865
+ position: relative
1783
866
  }
1784
- #audio .icon-cancel .icon-h {
1785
- transform: rotate(45deg);
1786
- width: 100%;
1787
- height: 2px;
1788
- background: #fff;
1789
- }
1790
- #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
1791
- content: '';
1792
- position: absolute;
1793
- width: 100%;
1794
- height: 2px;
1795
- background: #fff;
1796
- }/* .ele-form {
1797
- position: absolute;
1798
- user-select: none;
1799
- } */
1800
867
 
1801
- .f-multiple {
1802
- cursor: pointer;
868
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
869
+ font-size: 0;
870
+ padding: 5px 33px 0;
871
+ text-align: left
1803
872
  }
1804
873
 
1805
- .ani-wrap {
874
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
1806
875
  position: relative;
876
+ display: inline-block;
877
+ width: 14.2%;
878
+ height: 25px;
879
+ text-align: center;
880
+ margin-top: 8px;
1807
881
  }
1808
882
 
1809
- .f-multiple .ani-wrap .fs-tit {
1810
- display: flex;
1811
- padding: 0 5px;
1812
- height: 40px;
1813
- align-items: center;
1814
- white-space: nowrap;
1815
- overflow: hidden;
1816
- text-overflow: ellipsis;
1817
- border-bottom: 1px solid rgba(153, 153, 153, 1);
1818
- }
1819
-
1820
- .require {
1821
- padding: 0 5px 0 0;
1822
- color: red;
1823
- vertical-align: middle;
883
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
884
+ color: #eee
1824
885
  }
1825
886
 
1826
- .f-multiple ul {
1827
- padding: 15px;
1828
- margin: 0;
1829
- list-style: none;
887
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
888
+ display: block;
889
+ position: absolute;
890
+ left: 12%;
891
+ top: 2px;
1830
892
  }
1831
893
 
1832
- .f-multiple ul li {
1833
- margin-top: 12px;
1834
- font-size: 0;
1835
- display: flex;
1836
- align-items: center;
1837
- cursor: pointer;
894
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
895
+ font-size: 12px
1838
896
  }
1839
897
 
1840
- .f-multiple ul li:first-child {
1841
- margin-top: 0;
898
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
899
+ -webkit-animation: jumpheart .8s ease infinite alternate;
900
+ animation: jumpheart .8s ease infinite alternate
1842
901
  }
1843
902
 
1844
- .fs-circle {
1845
- display: inline-block;
1846
- width: 16px;
1847
- height: 16px;
1848
- border-radius: 50%;
1849
- position: relative;
1850
- transition: all 0.2s;
903
+ @keyframes jumpheart {
904
+ to {
905
+ -webkit-transform: scale(1.2);
906
+ transform: scale(1.2)
907
+ }
1851
908
  }
1852
909
 
1853
- .fs-circle.selected {
1854
- background-color: #2687f1;
1855
- border-color: #2687f1 !important;
910
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
911
+ display: none;
912
+ font-size: 26px
1856
913
  }
1857
914
 
1858
- .fs-circle.selected::after {
1859
- content: "";
915
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
1860
916
  position: absolute;
1861
- top: 3px;
1862
- left: 3px;
1863
- width: 8px;
1864
- height: 8px;
1865
- border-radius: 50%;
1866
- background-color: white;
917
+ left: 50%;
918
+ top: 50%;
919
+ z-index: 1;
920
+ color: #666;
921
+ font-size: 13px;
922
+ -webkit-transform: translate(-50%,-52%);
923
+ transform: translate(-50%,-52%)
1867
924
  }
1868
925
 
1869
- .fs-txt {
1870
- display: inline-block;
1871
- width: calc(100% - 16px);
1872
- padding-left: 8px;
1873
- vertical-align: top;
1874
- word-break: break-all;
1875
- font-size: 14px;
1876
- line-height: 1.2;
926
+ .ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
927
+ display: none!important
1877
928
  }
1878
-
1879
- .has-error .fs-tit {
1880
- border-bottom-color: #ff4d4f;
1881
- }body, html {
929
+ .icon-tuoyuanxing:before {
930
+ content: "\E6A7";
931
+ }
932
+ .icon-zan1:before {
933
+ content: "\E66D";
934
+ }
935
+ .icon-xingzhuangjiehe:before {
936
+ content: "\E6A6";
937
+ }
938
+ .ele-lottie .ele-lotwrap {
939
+ overflow: hidden;
940
+ }body, html {
1882
941
  width: 100%;
1883
942
  height: 100%;
1884
943
  }
@@ -3101,52 +2160,159 @@ animation-timing-function: ease-out
3101
2160
  }
3102
2161
 
3103
2162
  80% {
3104
- -webkit-transform: scale(1.05)
2163
+ -webkit-transform: scale(1.05)
2164
+ }
2165
+
2166
+ 90% {
2167
+ -webkit-transform: scale(.98)
2168
+ }
2169
+
2170
+ to {
2171
+ -webkit-transform: scale(1)
2172
+ }
2173
+ }
2174
+
2175
+ @keyframes bounceSmall {
2176
+ 0% {
2177
+ opacity: 0;
2178
+ -webkit-transform: scale(1.7)
2179
+ }
2180
+
2181
+ 50% {
2182
+ opacity: 1;
2183
+ -webkit-transform: scale(.95)
2184
+ }
2185
+
2186
+ 80% {
2187
+ -webkit-transform: scale(1.05)
2188
+ }
2189
+
2190
+ 90% {
2191
+ -webkit-transform: scale(.98)
2192
+ }
2193
+
2194
+ to {
2195
+ -webkit-transform: scale(1)
2196
+ }
2197
+ }
2198
+
2199
+ .pullUp {
2200
+ -webkit-transform-origin: 50% 100%;
2201
+ transform-origin: 50% 100%;
2202
+ -webkit-animation-name: pullUp;
2203
+ animation-name: pullUp;
2204
+ -webkit-animation-timing-function: ease-out;
2205
+ animation-timing-function: ease-out
2206
+ }
2207
+
2208
+ @-webkit-keyframes pullUp {
2209
+ 0%,40%,60%,80%,99% {
2210
+ -webkit-animation-timing-function: ease-out;
2211
+ animation-timing-function: ease-out
2212
+ }
2213
+
2214
+ 0% {
2215
+ opacity: 0;
2216
+ -webkit-transform: scaleY(.1);
2217
+ transform: scaleY(.1);
2218
+ -webkit-transform-origin: 50% 100%;
2219
+ transform-origin: 50% 100%
2220
+ }
2221
+
2222
+ 40% {
2223
+ opacity: 1;
2224
+ -webkit-transform: scaleY(1.02);
2225
+ transform: scaleY(1.02);
2226
+ -webkit-transform-origin: 50% 100%;
2227
+ transform-origin: 50% 100%
2228
+ }
2229
+
2230
+ 60% {
2231
+ -webkit-transform: scaleY(.98);
2232
+ transform: scaleY(.98);
2233
+ -webkit-transform-origin: 50% 100%;
2234
+ transform-origin: 50% 100%
2235
+ }
2236
+
2237
+ 80% {
2238
+ -webkit-transform: scaleY(1.01);
2239
+ transform: scaleY(1.01);
2240
+ -webkit-transform-origin: 50% 100%;
2241
+ transform-origin: 50% 100%
3105
2242
  }
3106
2243
 
3107
- 90% {
3108
- -webkit-transform: scale(.98)
2244
+ 99% {
2245
+ -webkit-transform: scaleY(1);
2246
+ transform: scaleY(1);
2247
+ -webkit-transform-origin: 50% 100%;
2248
+ transform-origin: 50% 100%
3109
2249
  }
3110
2250
 
3111
2251
  to {
3112
- -webkit-transform: scale(1)
2252
+ -webkit-transform: none;
2253
+ transform: none
3113
2254
  }
3114
2255
  }
3115
2256
 
3116
- @keyframes bounceSmall {
2257
+ @keyframes pullUp {
2258
+ 0%,40%,60%,80%,99% {
2259
+ -webkit-animation-timing-function: ease-out;
2260
+ animation-timing-function: ease-out
2261
+ }
2262
+
3117
2263
  0% {
3118
2264
  opacity: 0;
3119
- -webkit-transform: scale(1.7)
2265
+ -webkit-transform: scaleY(.1);
2266
+ transform: scaleY(.1);
2267
+ -webkit-transform-origin: 50% 100%;
2268
+ transform-origin: 50% 100%
3120
2269
  }
3121
2270
 
3122
- 50% {
2271
+ 40% {
3123
2272
  opacity: 1;
3124
- -webkit-transform: scale(.95)
2273
+ -webkit-transform: scaleY(1.02);
2274
+ transform: scaleY(1.02);
2275
+ -webkit-transform-origin: 50% 100%;
2276
+ transform-origin: 50% 100%
2277
+ }
2278
+
2279
+ 60% {
2280
+ -webkit-transform: scaleY(.98);
2281
+ transform: scaleY(.98);
2282
+ -webkit-transform-origin: 50% 100%;
2283
+ transform-origin: 50% 100%
3125
2284
  }
3126
2285
 
3127
2286
  80% {
3128
- -webkit-transform: scale(1.05)
2287
+ -webkit-transform: scaleY(1.01);
2288
+ transform: scaleY(1.01);
2289
+ -webkit-transform-origin: 50% 100%;
2290
+ transform-origin: 50% 100%
3129
2291
  }
3130
2292
 
3131
- 90% {
3132
- -webkit-transform: scale(.98)
2293
+ 99% {
2294
+ -webkit-transform: scaleY(1);
2295
+ transform: scaleY(1);
2296
+ -webkit-transform-origin: 50% 100%;
2297
+ transform-origin: 50% 100%
3133
2298
  }
3134
2299
 
3135
2300
  to {
3136
- -webkit-transform: scale(1)
2301
+ -webkit-transform: none;
2302
+ transform: none
3137
2303
  }
3138
2304
  }
3139
2305
 
3140
- .pullUp {
3141
- -webkit-transform-origin: 50% 100%;
3142
- transform-origin: 50% 100%;
3143
- -webkit-animation-name: pullUp;
3144
- animation-name: pullUp;
2306
+ .pullDown {
2307
+ -webkit-transform-origin: 50% 0;
2308
+ transform-origin: 50% 0;
2309
+ -webkit-animation-name: pullDown;
2310
+ animation-name: pullDown;
3145
2311
  -webkit-animation-timing-function: ease-out;
3146
2312
  animation-timing-function: ease-out
3147
2313
  }
3148
2314
 
3149
- @-webkit-keyframes pullUp {
2315
+ @-webkit-keyframes pullDown {
3150
2316
  0%,40%,60%,80%,99% {
3151
2317
  -webkit-animation-timing-function: ease-out;
3152
2318
  animation-timing-function: ease-out
@@ -3156,37 +2322,37 @@ animation-timing-function: ease-out
3156
2322
  opacity: 0;
3157
2323
  -webkit-transform: scaleY(.1);
3158
2324
  transform: scaleY(.1);
3159
- -webkit-transform-origin: 50% 100%;
3160
- transform-origin: 50% 100%
2325
+ -webkit-transform-origin: 50% 0;
2326
+ transform-origin: 50% 0
3161
2327
  }
3162
2328
 
3163
2329
  40% {
3164
2330
  opacity: 1;
3165
2331
  -webkit-transform: scaleY(1.02);
3166
2332
  transform: scaleY(1.02);
3167
- -webkit-transform-origin: 50% 100%;
3168
- transform-origin: 50% 100%
2333
+ -webkit-transform-origin: 50% 0;
2334
+ transform-origin: 50% 0
3169
2335
  }
3170
2336
 
3171
2337
  60% {
3172
2338
  -webkit-transform: scaleY(.98);
3173
2339
  transform: scaleY(.98);
3174
- -webkit-transform-origin: 50% 100%;
3175
- transform-origin: 50% 100%
2340
+ -webkit-transform-origin: 50% 0;
2341
+ transform-origin: 50% 0
3176
2342
  }
3177
2343
 
3178
2344
  80% {
3179
2345
  -webkit-transform: scaleY(1.01);
3180
2346
  transform: scaleY(1.01);
3181
- -webkit-transform-origin: 50% 100%;
3182
- transform-origin: 50% 100%
2347
+ -webkit-transform-origin: 50% 0;
2348
+ transform-origin: 50% 0
3183
2349
  }
3184
2350
 
3185
2351
  99% {
3186
2352
  -webkit-transform: scaleY(1);
3187
2353
  transform: scaleY(1);
3188
- -webkit-transform-origin: 50% 100%;
3189
- transform-origin: 50% 100%
2354
+ -webkit-transform-origin: 50% 0;
2355
+ transform-origin: 50% 0
3190
2356
  }
3191
2357
 
3192
2358
  to {
@@ -3195,7 +2361,7 @@ to {
3195
2361
  }
3196
2362
  }
3197
2363
 
3198
- @keyframes pullUp {
2364
+ @keyframes pullDown {
3199
2365
  0%,40%,60%,80%,99% {
3200
2366
  -webkit-animation-timing-function: ease-out;
3201
2367
  animation-timing-function: ease-out
@@ -3203,200 +2369,949 @@ to {
3203
2369
 
3204
2370
  0% {
3205
2371
  opacity: 0;
3206
- -webkit-transform: scaleY(.1);
3207
- transform: scaleY(.1);
3208
- -webkit-transform-origin: 50% 100%;
3209
- transform-origin: 50% 100%
3210
- }
3211
-
3212
- 40% {
3213
- opacity: 1;
3214
- -webkit-transform: scaleY(1.02);
3215
- transform: scaleY(1.02);
3216
- -webkit-transform-origin: 50% 100%;
3217
- transform-origin: 50% 100%
3218
- }
3219
-
3220
- 60% {
3221
- -webkit-transform: scaleY(.98);
3222
- transform: scaleY(.98);
3223
- -webkit-transform-origin: 50% 100%;
3224
- transform-origin: 50% 100%
3225
- }
3226
-
3227
- 80% {
3228
- -webkit-transform: scaleY(1.01);
3229
- transform: scaleY(1.01);
3230
- -webkit-transform-origin: 50% 100%;
3231
- transform-origin: 50% 100%
3232
- }
3233
-
3234
- 99% {
3235
- -webkit-transform: scaleY(1);
3236
- transform: scaleY(1);
3237
- -webkit-transform-origin: 50% 100%;
3238
- transform-origin: 50% 100%
3239
- }
3240
-
3241
- to {
3242
- -webkit-transform: none;
3243
- transform: none
3244
- }
3245
- }
3246
-
3247
- .pullDown {
3248
- -webkit-transform-origin: 50% 0;
3249
- transform-origin: 50% 0;
3250
- -webkit-animation-name: pullDown;
3251
- animation-name: pullDown;
3252
- -webkit-animation-timing-function: ease-out;
3253
- animation-timing-function: ease-out
3254
- }
3255
-
3256
- @-webkit-keyframes pullDown {
3257
- 0%,40%,60%,80%,99% {
3258
- -webkit-animation-timing-function: ease-out;
3259
- animation-timing-function: ease-out
3260
- }
3261
-
3262
- 0% {
2372
+ -webkit-transform: scaleY(.1);
2373
+ transform: scaleY(.1);
2374
+ -webkit-transform-origin: 50% 0;
2375
+ transform-origin: 50% 0
2376
+ }
2377
+
2378
+ 40% {
2379
+ opacity: 1;
2380
+ -webkit-transform: scaleY(1.02);
2381
+ transform: scaleY(1.02);
2382
+ -webkit-transform-origin: 50% 0;
2383
+ transform-origin: 50% 0
2384
+ }
2385
+
2386
+ 60% {
2387
+ -webkit-transform: scaleY(.98);
2388
+ transform: scaleY(.98);
2389
+ -webkit-transform-origin: 50% 0;
2390
+ transform-origin: 50% 0
2391
+ }
2392
+
2393
+ 80% {
2394
+ -webkit-transform: scaleY(1.01);
2395
+ transform: scaleY(1.01);
2396
+ -webkit-transform-origin: 50% 0;
2397
+ transform-origin: 50% 0
2398
+ }
2399
+
2400
+ 99% {
2401
+ -webkit-transform: scaleY(1);
2402
+ transform: scaleY(1);
2403
+ -webkit-transform-origin: 50% 0;
2404
+ transform-origin: 50% 0
2405
+ }
2406
+
2407
+ to {
2408
+ -webkit-transform: none;
2409
+ transform: none
2410
+ }
2411
+ }/* Iconfont definition */
2412
+ .icon-danmuliebiao1:before {
2413
+ content: "\E68A";
2414
+ }
2415
+
2416
+ .icon-cuowu2:before {
2417
+ content: "\E65E";
2418
+ }
2419
+
2420
+ i {
2421
+ font-style: normal;
2422
+ }
2423
+
2424
+ .v-modal {
2425
+ position: fixed;
2426
+ left: 0;
2427
+ top: 0;
2428
+ width: 100%;
2429
+ height: 100%;
2430
+ opacity: .5;
2431
+ background: #000;
2432
+ }
2433
+ /* 底部工具栏样式 */
2434
+ #toolbarNew {
2435
+ position: fixed;
2436
+ left: 0;
2437
+ bottom: 0;
2438
+ width: 100%;
2439
+ padding: 12px 0;
2440
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
2441
+ z-index: 100;
2442
+ }
2443
+
2444
+ .toolbar {
2445
+ display: flex;
2446
+ align-items: center;
2447
+ padding: 0 10px;
2448
+ }
2449
+
2450
+ .bar-left {
2451
+ position: relative;
2452
+ flex: 1;
2453
+ }
2454
+
2455
+ .bar-mess {
2456
+ width: 100%;
2457
+ height: 36px;
2458
+ line-height: 36px;
2459
+ font-size: 14px;
2460
+ color: #ccc;
2461
+ padding: 0 8px;
2462
+ border-radius: 18px;
2463
+ border: none;
2464
+ -webkit-appearance: none;
2465
+ background-color: rgba(0, 0, 0, 0.28);
2466
+ }
2467
+
2468
+ .bar-mess::placeholder {
2469
+ color: rgba(255, 255, 255, 0.7);
2470
+ }
2471
+
2472
+ .bar-left .iconfont {
2473
+ position: absolute;
2474
+ right: 10px;
2475
+ top: 50%;
2476
+ transform: translateY(-50%);
2477
+ color: #f2f2f2;
2478
+ font-size: 16px;
2479
+ cursor: pointer;
2480
+ z-index: 2;
2481
+ padding: 5px;
2482
+ }
2483
+
2484
+ /* 关闭弹幕按钮样式 */
2485
+ .toolbar-close {
2486
+ position: absolute;
2487
+ left: 10px;
2488
+ transform: translateY(-50%);
2489
+ display: flex;
2490
+ align-items: center;
2491
+ cursor: pointer;
2492
+ z-index: 2;
2493
+ }
2494
+
2495
+ .toolbar-close img {
2496
+ display: block;
2497
+ width: 36px;
2498
+ height: 36px;
2499
+ cursor: pointer;
2500
+ }
2501
+
2502
+ /* 弹幕容器样式 */
2503
+ .bullet-container {
2504
+ position: fixed;
2505
+ left: 10px;
2506
+ right: 10px;
2507
+ height: 120px;
2508
+ overflow: hidden;
2509
+ z-index: 99;
2510
+ pointer-events: none;
2511
+ }
2512
+
2513
+ .bullet-item {
2514
+ position: absolute;
2515
+ left: 0;
2516
+ bottom: 0;
2517
+ padding: 5px 10px;
2518
+ border-radius: 15px;
2519
+ font-size: 14px;
2520
+ white-space: nowrap;
2521
+ animation: bulletMove linear;
2522
+ animation-fill-mode: forwards;
2523
+ will-change: transform;
2524
+ display: inline-block;
2525
+ max-width: 90%;
2526
+ }
2527
+
2528
+ @keyframes bulletMove {
2529
+ 0% {
2530
+ transform: translateY(0);
2531
+ opacity: 1;
2532
+ }
2533
+ 100% {
2534
+ transform: translateY(calc(-1 * 150px));
2535
+ opacity: 0;
2536
+ }
2537
+ }
2538
+
2539
+ /* 弹幕输入弹窗样式 */
2540
+ .popup-overlay {
2541
+ position: fixed;
2542
+ top: 0;
2543
+ left: 0;
2544
+ right: 0;
2545
+ bottom: 0;
2546
+ background: rgba(0, 0, 0, 0.5);
2547
+ display: flex;
2548
+ justify-content: center;
2549
+ align-items: flex-end;
2550
+ z-index: 200;
2551
+ }
2552
+
2553
+ #index .mint-popup {
2554
+ background-color: transparent;
2555
+ }
2556
+
2557
+ .mint-popup {
2558
+ position: fixed;
2559
+ background: #fff;
2560
+ top: 50%;
2561
+ left: 50%;
2562
+ transform: translate3d(-50%, -50%, 0);
2563
+ -webkit-backface-visibility: hidden;
2564
+ backface-visibility: hidden;
2565
+ transition: .2s ease-out;
2566
+ }
2567
+
2568
+ .bar-messwin {
2569
+ width: 309px;
2570
+ height: 341px;
2571
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/mess-bg.png') no-repeat 50%;
2572
+ background-size: 100% 100%;
2573
+ position: relative;
2574
+ display: flex;
2575
+ flex-direction: column;
2576
+ align-items: center;
2577
+ margin-bottom: 20px;
2578
+ }
2579
+
2580
+ .bar-messwin .mess-logo {
2581
+ width: 171px;
2582
+ height: 110px;
2583
+ margin-top: -64px;
2584
+ margin-left: 11px;
2585
+ }
2586
+
2587
+ .bar-messwin .mess-title {
2588
+ margin-top: 12px;
2589
+ font-weight: 600;
2590
+ font-size: 21px;
2591
+ color: #333;
2592
+ }
2593
+
2594
+ .bar-messwin .mess-input {
2595
+ width: 267px;
2596
+ height: 43px;
2597
+ background: #fff;
2598
+ border-radius: 9px;
2599
+ border: 1px solid rgba(237,85,102,0.4);
2600
+ margin-top: 12px;
2601
+ display: flex;
2602
+ align-items: center;
2603
+ justify-content: center;
2604
+ padding: 0 13px;
2605
+ }
2606
+
2607
+ .bar-messwin .mess-input input {
2608
+ width: 100%;
2609
+ font-size: 17px;
2610
+ font-family: PingFang SC;
2611
+ font-weight: 400;
2612
+ color: #333;
2613
+ border: none;
2614
+ outline: none;
2615
+ background: transparent;
2616
+ }
2617
+
2618
+ .bar-messwin .mess-input input::-webkit-input-placeholder {
2619
+ color: #999;
2620
+ }
2621
+
2622
+ .bar-messwin .mess-input input::-ms-input-placeholder {
2623
+ color: #999;
2624
+ }
2625
+
2626
+ .bar-messwin .mess-input input::placeholder {
2627
+ color: #999;
2628
+ }
2629
+
2630
+ .bar-messwin .mess-textarea {
2631
+ width: 267px;
2632
+ height: 85px;
2633
+ background: #fff;
2634
+ border-radius: 9px;
2635
+ border: 1px solid rgba(237,85,102,0.4);
2636
+ display: flex;
2637
+ padding: 9px 13px;
2638
+ justify-content: space-between;
2639
+ margin-top: 12px;
2640
+ position: relative;
2641
+ }
2642
+
2643
+ .bar-messwin .mess-textarea textarea {
2644
+ width: 203px;
2645
+ height: 68px;
2646
+ font-size: 17px;
2647
+ resize: none;
2648
+ outline: none;
2649
+ border: none;
2650
+ background: transparent;
2651
+ color: #333;
2652
+ font-family: PingFang SC;
2653
+ }
2654
+
2655
+ .bar-messwin .mess-textarea textarea::-webkit-input-placeholder {
2656
+ color: #999;
2657
+ }
2658
+
2659
+ .bar-messwin .mess-textarea textarea::-ms-input-placeholder {
2660
+ color: #999;
2661
+ }
2662
+
2663
+ .bar-messwin .mess-textarea textarea::placeholder {
2664
+ color: #999;
2665
+ }
2666
+
2667
+ .bar-messwin .mess-textarea img {
2668
+ width: 26px;
2669
+ height: 26px;
2670
+ cursor: pointer;
2671
+ }
2672
+
2673
+ .bar-messwin .mess-textarea .wish-dropdown {
2674
+ position: absolute;
2675
+ top: 43px;
2676
+ right: 0;
2677
+ width: 267px;
2678
+ background: #fff;
2679
+ border-radius: 9px;
2680
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
2681
+ z-index: 10;
2682
+ max-height: 213px;
2683
+ overflow-y: auto;
2684
+ border: 1px solid rgba(237,85,102,0.2);
2685
+ padding: 0 13px;
2686
+ }
2687
+
2688
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar {
2689
+ width: 3px;
2690
+ background-color: transparent;
2691
+ display: block;
2692
+ }
2693
+
2694
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-thumb {
2695
+ background-color: #ccc;
2696
+ border-radius: 9px;
2697
+ min-height: 32px;
2698
+ }
2699
+
2700
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-track {
2701
+ background-color: transparent;
2702
+ border-radius: 3px;
2703
+ margin: 4px 0;
2704
+ }
2705
+
2706
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item {
2707
+ padding: 11px 0;
2708
+ display: flex;
2709
+ align-items: flex-start;
2710
+ cursor: pointer;
2711
+ transition: background-color 0.2s;
2712
+ border-bottom: 1px solid rgba(0,0,0,0.05);
2713
+ }
2714
+
2715
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item:last-child {
2716
+ border-bottom: none;
2717
+ }
2718
+
2719
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-dot {
2720
+ color: #ff4874;
2721
+ margin-right: 5px;
2722
+ font-size: 11px;
2723
+ line-height: 21px;
2724
+ }
2725
+
2726
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-text {
2727
+ font-size: 15px;
2728
+ color: #333;
2729
+ line-height: 21px;
2730
+ text-align: left;
2731
+ }
2732
+
2733
+ .bar-messwin .bar-m-sub {
2734
+ width: 267px;
2735
+ height: 43px;
2736
+ background: linear-gradient(270deg,#ff4874,#ff9061);
2737
+ border-radius: 68px;
2738
+ font-size: 17px;
2739
+ font-family: PingFang SC;
2740
+ font-weight: 400;
2741
+ color: #fff;
2742
+ margin-top: 26px;
2743
+ border: none;
2744
+ outline: none;
2745
+ cursor: pointer;
2746
+ display: flex;
2747
+ align-items: center;
2748
+ justify-content: center;
2749
+ }
2750
+
2751
+ .bar-messwin .icon-cuowu2, .give-gift .icon-cuowu2 {
2752
+ position: absolute;
2753
+ bottom: -60px;
2754
+ right: 50%;
2755
+ transform: translateX(50%);
2756
+ font-size: 28px;
2757
+ color: #fff;
2758
+ cursor: pointer;
2759
+ }
2760
+
2761
+ /* 提示弹窗样式 */
2762
+ .mint-msgbox-wrapper {
2763
+ position: fixed;
2764
+ top: 0;
2765
+ left: 0;
2766
+ right: 0;
2767
+ bottom: 0;
2768
+ background-color: rgba(0,0,0,0.5);
2769
+ z-index: 2005;
2770
+ display: flex;
2771
+ justify-content: center;
2772
+ align-items: center;
2773
+ }
2774
+
2775
+ .mint-msgbox {
2776
+ position: relative;
2777
+ background-color: #fff;
2778
+ width: 85%;
2779
+ border-radius: 3px;
2780
+ font-size: 17px;
2781
+ overflow: hidden;
2782
+ }
2783
+
2784
+ .mint-msgbox-header {
2785
+ padding: 16px 0 0;
2786
+ }
2787
+
2788
+ .mint-msgbox-content {
2789
+ padding: 11px 21px 16px;
2790
+ border-bottom: 1px solid #ddd;
2791
+ min-height: 38px;
2792
+ position: relative;
2793
+ }
2794
+
2795
+ .mint-msgbox-title {
2796
+ text-align: center;
2797
+ padding-left: 0;
2798
+ margin-bottom: 0;
2799
+ font-size: 17px;
2800
+ font-weight: 700;
2801
+ color: #333;
2802
+ }
2803
+
2804
+ .mint-msgbox-message {
2805
+ color: #999;
2806
+ margin: 0;
2807
+ text-align: center;
2808
+ line-height: 38px;
2809
+ }
2810
+
2811
+ .mint-msgbox-btns {
2812
+ display: flex;
2813
+ height: 43px;
2814
+ line-height: 43px;
2815
+ }
2816
+
2817
+ .mint-msgbox-btn {
2818
+ line-height: 37px;
2819
+ display: block;
2820
+ background-color: #fff;
2821
+ flex: 1;
2822
+ margin: 0;
2823
+ border: 0;
2824
+ }
2825
+
2826
+ .mint-msgbox-confirm {
2827
+ color: #26a2ff;
2828
+ width: 100%;
2829
+ }
2830
+ /* 右侧按钮区域样式 */
2831
+ #toolbarNew .toolbar .bar-right {
2832
+ margin-left: 7px;
2833
+ font-size: 0;
2834
+ display: flex;
2835
+ align-items: center;
2836
+ }
2837
+
2838
+ #toolbarNew .toolbar .bar-right.move-left {
2839
+ right: 64px;
2840
+ }
2841
+
2842
+ #toolbarNew .toolbar .bar-right .bar-r-com,
2843
+ #toolbarNew .toolbar .bar-right>img {
2844
+ display: inline-block;
2845
+ vertical-align: middle;
2846
+ }
2847
+
2848
+ #toolbarNew .toolbar .bar-right .bar-r-com {
2849
+ margin-left: 8px;
2850
+ cursor: pointer;
2851
+ }
2852
+
2853
+ #toolbarNew .toolbar .bar-right .bar-r-com.bar-r-gift {
2854
+ width: 36px;
2855
+ height: 36px;
2856
+ transform-origin: center bottom;
2857
+ animation: giftJump 3s ease infinite;
2858
+ }
2859
+
2860
+ @keyframes giftJump {
2861
+ 0%, 24%, 48%, to {
2862
+ transform: translateZ(0);
2863
+ }
2864
+ 12% {
2865
+ transform: translate3d(0, -10px, 0);
2866
+ }
2867
+ 36% {
2868
+ transform: translate3d(0, -10px, 0);
2869
+ }
2870
+ }
2871
+
2872
+ #toolbarNew .toolbar .bar-right .bar-r-com:first-child {
2873
+ margin-left: 0;
2874
+ }
2875
+
2876
+ #toolbarNew .toolbar .bar-right>img {
2877
+ position: relative;
2878
+ z-index: 1;
2879
+ width: 26px;
2880
+ height: 26px;
2881
+ }
2882
+
2883
+ #toolbarNew .toolbar .bar-right .bar-heart {
2884
+ position: relative;
2885
+ width: 36px;
2886
+ height: 36px;
2887
+ text-align: center;
2888
+ }
2889
+
2890
+ #toolbarNew .toolbar .bar-right .bar-heart .bar-praise {
2891
+ position: absolute;
2892
+ max-width: 36px;
2893
+ height: 15px;
2894
+ line-height: 15px;
2895
+ right: 0;
2896
+ top: 0;
2897
+ z-index: 3;
2898
+ font-size: 10px;
2899
+ color: #fff;
2900
+ border-radius: 6px;
2901
+ padding: 0 4px;
2902
+ box-sizing: border-box;
2903
+ white-space: nowrap;
2904
+ background-color: #f38200;
2905
+ transform: translateX(40%);
2906
+ }
2907
+
2908
+ #toolbarNew .toolbar .bar-right .bar-zan {
2909
+ position: relative;
2910
+ z-index: 2;
2911
+ height: 33px;
2912
+ width: 33px;
2913
+ box-sizing: border-box;
2914
+ }
2915
+
2916
+ #toolbarNew .toolbar .bar-right .bar-zan .ani-num {
2917
+ position: absolute;
2918
+ top: 0;
2919
+ left: 10px;
2920
+ opacity: 0;
2921
+ font-size: 15px;
2922
+ color: #f07a87;
2923
+ }
2924
+
2925
+ #toolbarNew .toolbar .bar-right .bar-zan .stop-longtap {
2926
+ position: absolute;
2927
+ left: 0;
2928
+ right: 0;
2929
+ bottom: 0;
2930
+ top: 0;
2931
+ z-index: 1;
2932
+ }
2933
+
2934
+ #toolbarNew .toolbar .bar-right .bar-zan img {
2935
+ width: 36px;
2936
+ height: 36px;
2937
+ }
2938
+
2939
+ #toolbarNew .toolbar .bar-right .bar-zan.active .ani-num {
2940
+ z-index: 2;
2941
+ animation: praise 1.2s;
2942
+ animation-fill-mode: both;
2943
+ }
2944
+
2945
+ @keyframes praise {
2946
+ 0% {
2947
+ opacity: 1;
2948
+ }
2949
+ 50% {
2950
+ opacity: 1;
2951
+ transform: translate3d(0, -35px, 0);
2952
+ }
2953
+ to {
2954
+ opacity: 0;
2955
+ transform: translate3d(0, -35px, 0);
2956
+ }
2957
+ }
2958
+
2959
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap {
2960
+ transform: scale(0.85);
2961
+ }
2962
+
2963
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:first-of-type {
2964
+ animation: jump .6s ease-out;
2965
+ }
2966
+
2967
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(2) {
2968
+ animation: jump2 .6s ease-out;
2969
+ }
2970
+
2971
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(3) {
2972
+ animation: jump3 .6s ease-out;
2973
+ }
2974
+
2975
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(4) {
2976
+ animation: jump4 .6s ease-out;
2977
+ }
2978
+
2979
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(5) {
2980
+ animation: jump5 .6s ease-out;
2981
+ }
2982
+
2983
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(6) {
2984
+ animation: jump6 .6s ease-out;
2985
+ }
2986
+
2987
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(7) {
2988
+ animation: jump7 .6s ease-out;
2989
+ }
2990
+
2991
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(8) {
2992
+ animation: jump8 .6s ease-out;
2993
+ }
2994
+
2995
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap {
2996
+ position: absolute;
2997
+ left: 0;
2998
+ top: 0;
2999
+ right: 0;
3000
+ bottom: 0;
3001
+ pointer-events: none;
3002
+ overflow: visible;
3003
+ }
3004
+
3005
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span {
3006
+ position: absolute;
3007
+ width: 6px;
3008
+ height: 6px;
3009
+ border-radius: 50%;
3263
3010
  opacity: 0;
3264
- -webkit-transform: scaleY(.1);
3265
- transform: scaleY(.1);
3266
- -webkit-transform-origin: 50% 0;
3267
- transform-origin: 50% 0
3268
- }
3269
-
3270
- 40% {
3271
- opacity: 1;
3272
- -webkit-transform: scaleY(1.02);
3273
- transform: scaleY(1.02);
3274
- -webkit-transform-origin: 50% 0;
3275
- transform-origin: 50% 0
3276
- }
3277
-
3278
- 60% {
3279
- -webkit-transform: scaleY(.98);
3280
- transform: scaleY(.98);
3281
- -webkit-transform-origin: 50% 0;
3282
- transform-origin: 50% 0
3283
- }
3284
-
3285
- 80% {
3286
- -webkit-transform: scaleY(1.01);
3287
- transform: scaleY(1.01);
3288
- -webkit-transform-origin: 50% 0;
3289
- transform-origin: 50% 0
3290
- }
3291
-
3292
- 99% {
3293
- -webkit-transform: scaleY(1);
3294
- transform: scaleY(1);
3295
- -webkit-transform-origin: 50% 0;
3296
- transform-origin: 50% 0
3297
- }
3298
-
3299
- to {
3300
- -webkit-transform: none;
3301
- transform: none
3302
- }
3303
- }
3304
-
3305
- @keyframes pullDown {
3306
- 0%,40%,60%,80%,99% {
3307
- -webkit-animation-timing-function: ease-out;
3308
- animation-timing-function: ease-out
3309
- }
3310
-
3311
- 0% {
3011
+ }
3012
+
3013
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:first-of-type {
3014
+ left: 50%;
3015
+ top: -8px;
3016
+ transform: translate3d(-50%, 0, 0);
3017
+ background-color: #b3e5c8;
3018
+ }
3019
+
3020
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(2) {
3021
+ left: -8px;
3022
+ top: 50%;
3023
+ transform: translate3d(0, -50%, 0);
3024
+ background-color: #f4ba31;
3025
+ }
3026
+
3027
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(3) {
3028
+ left: 50%;
3029
+ bottom: -8px;
3030
+ transform: translate3d(-50%, 0, 0);
3031
+ background-color: #339fef;
3032
+ }
3033
+
3034
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(4) {
3035
+ top: 50%;
3036
+ right: -8px;
3037
+ transform: translate3d(0, -50%, 0);
3038
+ background-color: #e2264d;
3039
+ }
3040
+
3041
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(5) {
3042
+ left: -5px;
3043
+ top: 0;
3044
+ transform: translate3d(0, -50%, 0);
3045
+ background-color: #a08880;
3046
+ }
3047
+
3048
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(6) {
3049
+ left: -5px;
3050
+ bottom: 0;
3051
+ transform: translate3d(0, 50%, 0);
3052
+ background-color: #43c1b5;
3053
+ }
3054
+
3055
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(7) {
3056
+ right: -5px;
3057
+ bottom: 0;
3058
+ transform: translate3d(0, 50%, 0);
3059
+ background-color: #f5be3b;
3060
+ }
3061
+
3062
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(8) {
3063
+ right: -5px;
3064
+ top: 0;
3065
+ transform: translate3d(0, -50%, 0);
3066
+ background-color: coral;
3067
+ }
3068
+
3069
+ @keyframes jump {
3070
+ 0% {
3071
+ opacity: 1;
3072
+ transform: translate3d(-50%, 0, 0) scale(1);
3073
+ }
3074
+ 40% {
3075
+ transform: translate3d(-50%, -100%, 0) scale(0.7);
3076
+ }
3077
+ to {
3078
+ opacity: 1;
3079
+ transform: translate3d(-50%, -150%, 0) scale(0);
3080
+ }
3081
+ }
3082
+
3083
+ @keyframes jump2 {
3084
+ 0% {
3085
+ opacity: 1;
3086
+ transform: translate3d(0, -50%, 0) scale(1);
3087
+ }
3088
+ 40% {
3089
+ transform: translate3d(-100%, -50%, 0) scale(0.7);
3090
+ }
3091
+ to {
3092
+ opacity: 1;
3093
+ transform: translate3d(-150%, -50%, 0) scale(0);
3094
+ }
3095
+ }
3096
+
3097
+ @keyframes jump3 {
3098
+ 0% {
3099
+ opacity: 1;
3100
+ transform: translate3d(-50%, 0, 0) scale(1);
3101
+ }
3102
+ 40% {
3103
+ transform: translate3d(-50%, 100%, 0) scale(0.7);
3104
+ }
3105
+ to {
3106
+ opacity: 1;
3107
+ transform: translate3d(-50%, 150%, 0) scale(0);
3108
+ }
3109
+ }
3110
+
3111
+ @keyframes jump4 {
3112
+ 0% {
3113
+ opacity: 1;
3114
+ transform: translate3d(0, -50%, 0) scale(1);
3115
+ }
3116
+ 40% {
3117
+ transform: translate3d(100%, -50%, 0) scale(0.7);
3118
+ }
3119
+ to {
3120
+ opacity: 1;
3121
+ transform: translate3d(150%, -50%, 0) scale(0);
3122
+ }
3123
+ }
3124
+
3125
+ @keyframes jump5 {
3126
+ 0% {
3127
+ opacity: 1;
3128
+ transform: translate3d(0, -50%, 0) scale(1);
3129
+ }
3130
+ 40% {
3131
+ transform: translate3d(-80%, -80%, 0) scale(0.7);
3132
+ }
3133
+ to {
3134
+ opacity: 1;
3135
+ transform: translate3d(-130%, -130%, 0) scale(0);
3136
+ }
3137
+ }
3138
+
3139
+ @keyframes jump6 {
3140
+ 0% {
3141
+ opacity: 1;
3142
+ transform: translate3d(0, 50%, 0) scale(1);
3143
+ }
3144
+ 40% {
3145
+ transform: translate3d(-80%, 80%, 0) scale(0.7);
3146
+ }
3147
+ to {
3148
+ opacity: 1;
3149
+ transform: translate3d(-130%, 130%, 0) scale(0);
3150
+ }
3151
+ }
3152
+
3153
+ @keyframes jump7 {
3154
+ 0% {
3155
+ opacity: 1;
3156
+ transform: translate3d(0, 50%, 0) scale(1);
3157
+ }
3158
+ 40% {
3159
+ transform: translate3d(80%, 80%, 0) scale(0.7);
3160
+ }
3161
+ to {
3162
+ opacity: 1;
3163
+ transform: translate3d(130%, 130%, 0) scale(0);
3164
+ }
3165
+ }
3166
+
3167
+ @keyframes jump8 {
3168
+ 0% {
3169
+ opacity: 1;
3170
+ transform: translate3d(0, 50%, 0) scale(1);
3171
+ }
3172
+ 40% {
3173
+ transform: translate3d(80%, -80%, 0) scale(0.7);
3174
+ }
3175
+ to {
3176
+ opacity: 1;
3177
+ transform: translate3d(130%, -130%, 0) scale(0);
3178
+ }
3179
+ }
3180
+
3181
+ /* 礼物弹窗样式 */
3182
+ .give-gift {
3183
+ position: fixed;
3184
+ top: 50%;
3185
+ left: 50%;
3186
+ transform: translate(-50%, -50%);
3187
+ z-index: 2004;
3188
+ background: white;
3189
+ padding: 20px;
3190
+ border-radius: 10px;
3191
+ text-align: center;
3192
+ }
3193
+
3194
+ .give-gift .back {
3195
+ position: absolute;
3196
+ top: 10px;
3197
+ left: 10px;
3198
+ cursor: pointer;
3199
+ }
3200
+
3201
+ .give-gift img {
3202
+ max-width: 300px;
3203
+ max-height: 300px;
3204
+ margin-top: 20px;
3205
+ }
3206
+
3207
+ /* 留言成功弹窗样式 */
3208
+ .mess-success-popup {
3209
+ position: fixed;
3210
+ top: 0;
3211
+ left: 0;
3212
+ right: 0;
3213
+ bottom: 0;
3214
+ background-color: rgba(0, 0, 0, 0.5);
3215
+ z-index: 2003;
3216
+ display: flex;
3217
+ justify-content: center;
3218
+ align-items: center;
3219
+ }
3220
+
3221
+ .mess-success-popup .gift-popup {
3222
+ width: 300px;
3223
+ height: 200px;
3224
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
3225
+ border-radius: 10px;
3226
+ padding: 20px;
3227
+ text-align: center;
3228
+ position: relative;
3229
+ }
3230
+
3231
+ .mess-success-popup .gift-popup .icon-cuowu2 {
3232
+ position: absolute;
3233
+ top: 10px;
3234
+ right: 10px;
3235
+ cursor: pointer;
3236
+ }
3237
+
3238
+ .mess-success-popup .gift-popup .toast {
3239
+ display: flex;
3240
+ align-items: center;
3241
+ justify-content: center;
3242
+ margin: 10px 0;
3243
+ }
3244
+
3245
+ .mess-success-popup .gift-popup .toast img {
3246
+ width: 20px;
3247
+ height: 15px;
3248
+ margin: 0 5px;
3249
+ }
3250
+
3251
+ .mess-success-popup .gift-popup .title {
3252
+ margin: 15px 0;
3253
+ font-size: 16px;
3254
+ color: #333;
3255
+ }
3256
+
3257
+ .mess-success-popup .gift-popup .btn {
3258
+ background: linear-gradient(270deg, #ff4874, #ff9061);
3259
+ color: white;
3260
+ border: none;
3261
+ padding: 10px 20px;
3262
+ border-radius: 20px;
3263
+ margin-top: 15px;
3264
+ cursor: pointer;
3265
+ }
3266
+
3267
+ /* 新增图片加载动画样式 */
3268
+ .gift-image-container {
3269
+ position: relative;
3270
+ width: 300px;
3271
+ height: 300px;
3272
+ margin: 20px 0;
3273
+ overflow: hidden;
3274
+ }
3275
+
3276
+ .gift-image-container img {
3277
+ width: 100%;
3278
+ height: 100%;
3279
+ object-fit: contain;
3312
3280
  opacity: 0;
3313
- -webkit-transform: scaleY(.1);
3314
- transform: scaleY(.1);
3315
- -webkit-transform-origin: 50% 0;
3316
- transform-origin: 50% 0
3317
- }
3318
-
3319
- 40% {
3281
+ transition: opacity 0.5s ease-in-out;
3282
+ }
3283
+
3284
+ .gift-image-container img.loaded {
3320
3285
  opacity: 1;
3321
- -webkit-transform: scaleY(1.02);
3322
- transform: scaleY(1.02);
3323
- -webkit-transform-origin: 50% 0;
3324
- transform-origin: 50% 0
3325
- }
3326
-
3327
- 60% {
3328
- -webkit-transform: scaleY(.98);
3329
- transform: scaleY(.98);
3330
- -webkit-transform-origin: 50% 0;
3331
- transform-origin: 50% 0
3332
- }
3333
-
3334
- 80% {
3335
- -webkit-transform: scaleY(1.01);
3336
- transform: scaleY(1.01);
3337
- -webkit-transform-origin: 50% 0;
3338
- transform-origin: 50% 0
3339
- }
3340
-
3341
- 99% {
3342
- -webkit-transform: scaleY(1);
3343
- transform: scaleY(1);
3344
- -webkit-transform-origin: 50% 0;
3345
- transform-origin: 50% 0
3346
- }
3347
-
3348
- to {
3349
- -webkit-transform: none;
3350
- transform: none
3351
- }
3352
- }.element-ditu .ani-wrap {
3353
- width: 100%;
3354
- height: 100%;
3355
- overflow: hidden
3356
- }
3357
-
3358
- .element-ditu .map {
3359
- width: 100%;
3360
- height: 100%
3361
- }
3362
-
3363
- .element-ditu .map .el-button {
3364
- width: 100%;
3365
- height: 100%;
3366
- display: -webkit-box;
3367
- display: -ms-flexbox;
3368
- display: flex;
3369
- -webkit-box-align: center;
3370
- -ms-flex-align: center;
3371
- align-items: center;
3372
- padding: 0;
3373
- -webkit-box-pack: center;
3374
- -ms-flex-pack: center;
3375
- justify-content: center;
3376
- background: inherit;
3377
- color: inherit;
3378
- border: none
3379
- }
3380
-
3381
- .element-ditu .center-map {
3382
- width: 100%;
3383
- height: 100%;
3384
- background: #fff
3385
- }
3386
-
3387
- .element-ditu .mask-map {
3388
- position: absolute;
3389
- width: 100%;
3390
- height: 100%;
3391
- top: 0
3392
- }
3393
- .map-iframe {
3394
- width: 100%;
3395
- height: 100%;
3396
- }
3397
- .ele-lottie .ele-lotwrap {
3398
- overflow: hidden;
3399
- }#page-list .tip-cover {
3286
+ }
3287
+
3288
+ .image-loading {
3289
+ position: absolute;
3290
+ top: 0;
3291
+ left: 0;
3292
+ width: 100%;
3293
+ height: 100%;
3294
+ display: flex;
3295
+ justify-content: center;
3296
+ align-items: center;
3297
+ background: rgba(255, 255, 255, 0.8);
3298
+ }
3299
+
3300
+ .loading-spinner {
3301
+ width: 40px;
3302
+ height: 40px;
3303
+ border: 4px solid #f3f3f3;
3304
+ border-top: 4px solid #ed5566;
3305
+ border-radius: 50%;
3306
+ animation: spin 1s linear infinite;
3307
+ }
3308
+
3309
+ @keyframes spin {
3310
+ 0% { transform: rotate(0deg); }
3311
+ 100% { transform: rotate(360deg); }
3312
+ }
3313
+
3314
+ #page-list .tip-cover {
3400
3315
  position: fixed;
3401
3316
  left: 0;
3402
3317
  top: 0;
@@ -3473,56 +3388,100 @@ to {
3473
3388
  font-size: 14px;
3474
3389
  line-height: 20px;
3475
3390
  background: #ed5566;
3476
- } .form-input {
3391
+ } /* .ele-form {
3477
3392
  position: absolute;
3393
+ user-select: none;
3394
+ }
3395
+ */
3396
+ .f-single {
3397
+ cursor: pointer;
3478
3398
  }
3479
3399
 
3480
- .input-wrapper {
3400
+ .ani-wrap {
3401
+ position: relative;
3402
+ }
3403
+
3404
+ .f-single .ani-wrap .fs-tit {
3481
3405
  display: flex;
3406
+ padding: 0 5px;
3407
+ height: 40px;
3482
3408
  align-items: center;
3483
- width: 100%;
3484
- height: 100%;
3485
- padding: 0 10px;
3486
- box-sizing: border-box;
3487
- position: relative;
3488
- transition: border-color 0.3s;
3409
+ white-space: nowrap;
3410
+ overflow: hidden;
3411
+ text-overflow: ellipsis;
3412
+ border-bottom: 1px solid rgba(153, 153, 153, 1);
3489
3413
  }
3490
3414
 
3491
- .required-marker {
3492
- font-size: 12px;
3415
+ .require {
3493
3416
  padding: 0 5px 0 0;
3494
3417
  color: red;
3495
3418
  vertical-align: middle;
3496
3419
  }
3497
3420
 
3498
- input {
3499
- flex: 1;
3500
- border: none;
3501
- outline: none;
3502
- background: transparent;
3503
- height: 100%;
3504
- padding: 0;
3421
+ .f-single ul {
3422
+ padding: 15px;
3505
3423
  margin: 0;
3424
+ list-style: none;
3425
+ }
3426
+
3427
+ .f-single ul li {
3428
+ display: flex;
3429
+ align-items: center;
3430
+ margin-top: 12px;
3431
+ font-size: 0;
3432
+ }
3433
+
3434
+ .f-single ul li:first-child {
3435
+ margin-top: 0;
3436
+ }
3437
+
3438
+ .fs-circle {
3439
+ display: inline-block;
3440
+ width: 16px;
3441
+ height: 16px;
3442
+ border-radius: 50%;
3443
+ position: relative;
3444
+ transition: all 0.2s;
3445
+ }
3446
+
3447
+ .fs-circle.selected {
3448
+ background-color: #2687f1;
3449
+ border-color: #2687f1 !important;
3506
3450
  }
3507
- /*
3508
- input::placeholder {
3509
- color: #ccc;
3510
- opacity: 1;
3511
- } */
3512
3451
 
3513
- .dynamic-placeholder-input::placeholder {
3514
- color: var(--placeholder-color, #999);
3515
- opacity: 1;
3452
+ .fs-circle.selected::after {
3453
+ content: "";
3454
+ position: absolute;
3455
+ top: 3px;
3456
+ left: 3px;
3457
+ width: 8px;
3458
+ height: 8px;
3459
+ border-radius: 50%;
3460
+ background-color: white;
3516
3461
  }
3517
- .dynamic-placeholder-input::-webkit-input-placeholder {
3518
- color: var(--placeholder-color, #999);
3462
+
3463
+ .fs-txt {
3464
+ display: inline-block;
3465
+ width: calc(100% - 16px);
3466
+ padding-left: 8px;
3467
+ vertical-align: top;
3468
+ word-break: break-all;
3469
+ font-size: 14px;
3470
+ line-height: 1.2;
3519
3471
  }
3520
- .dynamic-placeholder-input::-moz-placeholder {
3521
- color: var(--placeholder-color, #999);
3522
- opacity: 1;
3472
+
3473
+ .has-error .fs-tit {
3474
+ border-bottom-color: #ff4d4f;
3523
3475
  }
3524
- .dynamic-placeholder-input:-ms-input-placeholder {
3525
- color: var(--placeholder-color, #999);
3476
+
3477
+ /* 错误提示样式 */
3478
+ .error-tip {
3479
+ position: fixed;
3480
+ left: 0;
3481
+ top: 0;
3482
+ width: 100%;
3483
+ height: 100%;
3484
+ z-index: 1000;
3526
3485
  }/* .ele-form {
3527
3486
  position: absolute;
3528
3487
  user-select: none;
@@ -3667,100 +3626,56 @@ transform: none !important;
3667
3626
  .form-submit:disabled {
3668
3627
  opacity: 0.7;
3669
3628
  cursor: not-allowed;
3670
- }/* .ele-form {
3629
+ }.form-input {
3671
3630
  position: absolute;
3672
- user-select: none;
3673
- }
3674
- */
3675
- .f-single {
3676
- cursor: pointer;
3677
- }
3678
-
3679
- .ani-wrap {
3680
- position: relative;
3681
3631
  }
3682
3632
 
3683
- .f-single .ani-wrap .fs-tit {
3633
+ .input-wrapper {
3684
3634
  display: flex;
3685
- padding: 0 5px;
3686
- height: 40px;
3687
3635
  align-items: center;
3688
- white-space: nowrap;
3689
- overflow: hidden;
3690
- text-overflow: ellipsis;
3691
- border-bottom: 1px solid rgba(153, 153, 153, 1);
3636
+ width: 100%;
3637
+ height: 100%;
3638
+ padding: 0 10px;
3639
+ box-sizing: border-box;
3640
+ position: relative;
3641
+ transition: border-color 0.3s;
3692
3642
  }
3693
3643
 
3694
- .require {
3644
+ .required-marker {
3645
+ font-size: 12px;
3695
3646
  padding: 0 5px 0 0;
3696
3647
  color: red;
3697
3648
  vertical-align: middle;
3698
3649
  }
3699
3650
 
3700
- .f-single ul {
3701
- padding: 15px;
3651
+ input {
3652
+ flex: 1;
3653
+ border: none;
3654
+ outline: none;
3655
+ background: transparent;
3656
+ height: 100%;
3657
+ padding: 0;
3702
3658
  margin: 0;
3703
- list-style: none;
3704
- }
3705
-
3706
- .f-single ul li {
3707
- display: flex;
3708
- align-items: center;
3709
- margin-top: 12px;
3710
- font-size: 0;
3711
- }
3712
-
3713
- .f-single ul li:first-child {
3714
- margin-top: 0;
3715
- }
3716
-
3717
- .fs-circle {
3718
- display: inline-block;
3719
- width: 16px;
3720
- height: 16px;
3721
- border-radius: 50%;
3722
- position: relative;
3723
- transition: all 0.2s;
3724
- }
3725
-
3726
- .fs-circle.selected {
3727
- background-color: #2687f1;
3728
- border-color: #2687f1 !important;
3729
3659
  }
3660
+ /*
3661
+ input::placeholder {
3662
+ color: #ccc;
3663
+ opacity: 1;
3664
+ } */
3730
3665
 
3731
- .fs-circle.selected::after {
3732
- content: "";
3733
- position: absolute;
3734
- top: 3px;
3735
- left: 3px;
3736
- width: 8px;
3737
- height: 8px;
3738
- border-radius: 50%;
3739
- background-color: white;
3666
+ .dynamic-placeholder-input::placeholder {
3667
+ color: var(--placeholder-color, #999);
3668
+ opacity: 1;
3740
3669
  }
3741
-
3742
- .fs-txt {
3743
- display: inline-block;
3744
- width: calc(100% - 16px);
3745
- padding-left: 8px;
3746
- vertical-align: top;
3747
- word-break: break-all;
3748
- font-size: 14px;
3749
- line-height: 1.2;
3670
+ .dynamic-placeholder-input::-webkit-input-placeholder {
3671
+ color: var(--placeholder-color, #999);
3750
3672
  }
3751
-
3752
- .has-error .fs-tit {
3753
- border-bottom-color: #ff4d4f;
3673
+ .dynamic-placeholder-input::-moz-placeholder {
3674
+ color: var(--placeholder-color, #999);
3675
+ opacity: 1;
3754
3676
  }
3755
-
3756
- /* 错误提示样式 */
3757
- .error-tip {
3758
- position: fixed;
3759
- left: 0;
3760
- top: 0;
3761
- width: 100%;
3762
- height: 100%;
3763
- z-index: 1000;
3677
+ .dynamic-placeholder-input:-ms-input-placeholder {
3678
+ color: var(--placeholder-color, #999);
3764
3679
  }
3765
3680
  .global.video {
3766
3681
  width: 35px;
@@ -3775,19 +3690,92 @@ cursor: not-allowed;
3775
3690
  .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3776
3691
  .global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
3777
3692
  }
3693
+ /* .ele-form {
3694
+ position: absolute;
3695
+ user-select: none;
3696
+ } */
3778
3697
 
3779
- .global.tel {
3780
- width: 35px;
3781
- height: 55px;
3782
- border-radius: 50%;
3783
- text-align: center;
3784
- margin-bottom: 15px;
3785
- border: 2px solid #fff;
3698
+ .f-multiple {
3786
3699
  cursor: pointer;
3787
3700
  }
3788
- .icon-dianhua:before { content: "\E60E"; }
3789
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3790
- .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
3701
+
3702
+ .ani-wrap {
3703
+ position: relative;
3704
+ }
3705
+
3706
+ .f-multiple .ani-wrap .fs-tit {
3707
+ display: flex;
3708
+ padding: 0 5px;
3709
+ height: 40px;
3710
+ align-items: center;
3711
+ white-space: nowrap;
3712
+ overflow: hidden;
3713
+ text-overflow: ellipsis;
3714
+ border-bottom: 1px solid rgba(153, 153, 153, 1);
3715
+ }
3716
+
3717
+ .require {
3718
+ padding: 0 5px 0 0;
3719
+ color: red;
3720
+ vertical-align: middle;
3721
+ }
3722
+
3723
+ .f-multiple ul {
3724
+ padding: 15px;
3725
+ margin: 0;
3726
+ list-style: none;
3727
+ }
3728
+
3729
+ .f-multiple ul li {
3730
+ margin-top: 12px;
3731
+ font-size: 0;
3732
+ display: flex;
3733
+ align-items: center;
3734
+ cursor: pointer;
3735
+ }
3736
+
3737
+ .f-multiple ul li:first-child {
3738
+ margin-top: 0;
3739
+ }
3740
+
3741
+ .fs-circle {
3742
+ display: inline-block;
3743
+ width: 16px;
3744
+ height: 16px;
3745
+ border-radius: 50%;
3746
+ position: relative;
3747
+ transition: all 0.2s;
3748
+ }
3749
+
3750
+ .fs-circle.selected {
3751
+ background-color: #2687f1;
3752
+ border-color: #2687f1 !important;
3753
+ }
3754
+
3755
+ .fs-circle.selected::after {
3756
+ content: "";
3757
+ position: absolute;
3758
+ top: 3px;
3759
+ left: 3px;
3760
+ width: 8px;
3761
+ height: 8px;
3762
+ border-radius: 50%;
3763
+ background-color: white;
3764
+ }
3765
+
3766
+ .fs-txt {
3767
+ display: inline-block;
3768
+ width: calc(100% - 16px);
3769
+ padding-left: 8px;
3770
+ vertical-align: top;
3771
+ word-break: break-all;
3772
+ font-size: 14px;
3773
+ line-height: 1.2;
3774
+ }
3775
+
3776
+ .has-error .fs-tit {
3777
+ border-bottom-color: #ff4d4f;
3778
+ }
3791
3779
  .icon-guanbi:before {
3792
3780
  content: "\E676";
3793
3781
  }
@@ -4182,6 +4170,18 @@ cursor: not-allowed;
4182
4170
  color: #F44336; /* 失败的红色 */
4183
4171
  }
4184
4172
 
4173
+ .global.tel {
4174
+ width: 35px;
4175
+ height: 55px;
4176
+ border-radius: 50%;
4177
+ text-align: center;
4178
+ margin-bottom: 15px;
4179
+ border: 2px solid #fff;
4180
+ cursor: pointer;
4181
+ }
4182
+ .icon-dianhua:before { content: "\E60E"; }
4183
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4184
+ .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
4185
4185
  .global.receipt {
4186
4186
  width: 35px;
4187
4187
  height: 55px;