unika-components 1.1.55 → 1.1.57
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.
- package/dist/unika-components.css +975 -975
- package/dist/unika-components.esm.js +35 -15
- package/dist/unika-components.umd.js +35 -15
- package/package.json +1 -1
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
|
|
2
|
+
body {
|
|
3
|
+
margin: 0 auto;
|
|
4
|
+
white-space: normal;
|
|
5
|
+
word-break: break-all;
|
|
6
|
+
font-family: PingFang SC, Microsoft Yahei, Lato, Helvetica Neue, Arial, SimSun, Helvetica, STHeiTi, Roboto Regular, Roboto, Droid Sans, sans-serif;
|
|
7
|
+
}
|
|
8
|
+
|
|
2
9
|
.form-submit {
|
|
3
10
|
cursor: pointer;
|
|
4
11
|
transition: all 0.2s;
|
|
@@ -46,13 +53,6 @@ transform: none !important;
|
|
|
46
53
|
opacity: 0.7;
|
|
47
54
|
cursor: not-allowed;
|
|
48
55
|
}
|
|
49
|
-
body {
|
|
50
|
-
margin: 0 auto;
|
|
51
|
-
white-space: normal;
|
|
52
|
-
word-break: break-all;
|
|
53
|
-
font-family: PingFang SC, Microsoft Yahei, Lato, Helvetica Neue, Arial, SimSun, Helvetica, STHeiTi, Roboto Regular, Roboto, Droid Sans, sans-serif;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
56
|
.form-container {
|
|
57
57
|
position: relative;
|
|
58
58
|
width: 100%;
|
|
@@ -68,77 +68,153 @@ body {
|
|
|
68
68
|
max-height: 100%;
|
|
69
69
|
width: 100%;
|
|
70
70
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
top: 10px;
|
|
75
|
-
z-index: 103;
|
|
76
|
-
width: 30px;
|
|
77
|
-
height: 30px;
|
|
78
|
-
display: flex;
|
|
79
|
-
align-items: center;
|
|
71
|
+
|
|
72
|
+
.ele-text {
|
|
73
|
+
position: relative;
|
|
80
74
|
}
|
|
81
75
|
|
|
82
|
-
|
|
83
|
-
|
|
76
|
+
.ele-text .ani-wrap {
|
|
77
|
+
width: 100%;
|
|
78
|
+
height: 100%;
|
|
84
79
|
}
|
|
85
80
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
81
|
+
.text-common {
|
|
82
|
+
padding: 5px;
|
|
83
|
+
text-orientation: upright;
|
|
84
|
+
white-space: pre-wrap;
|
|
90
85
|
}
|
|
91
86
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
display: flex;
|
|
96
|
-
align-items: center;
|
|
97
|
-
justify-content: center;
|
|
98
|
-
color: #fff;
|
|
99
|
-
background: #666;
|
|
100
|
-
border-radius: 50%;
|
|
101
|
-
overflow: hidden;
|
|
102
|
-
cursor: pointer;
|
|
103
|
-
transition: all 0.3s ease;
|
|
87
|
+
/* 文本动画类 */
|
|
88
|
+
.text-fadeIn {
|
|
89
|
+
animation: fadeIn 1s ease-in-out;
|
|
104
90
|
}
|
|
105
91
|
|
|
106
|
-
|
|
107
|
-
|
|
92
|
+
.text-slideIn {
|
|
93
|
+
animation: slideIn 1s ease-in-out;
|
|
108
94
|
}
|
|
109
95
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
width: 60%;
|
|
113
|
-
height: 60%;
|
|
114
|
-
object-fit: contain;
|
|
96
|
+
.text-bounceIn {
|
|
97
|
+
animation: bounceIn 1s ease-in-out;
|
|
115
98
|
}
|
|
116
99
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
100
|
+
/* 基础动画关键帧 */
|
|
101
|
+
@keyframes fadeIn {
|
|
102
|
+
from {
|
|
103
|
+
opacity: 0;
|
|
104
|
+
}
|
|
105
|
+
to {
|
|
106
|
+
opacity: 1;
|
|
107
|
+
}
|
|
120
108
|
}
|
|
121
|
-
|
|
109
|
+
|
|
110
|
+
@keyframes slideIn {
|
|
111
|
+
from {
|
|
112
|
+
transform: translateY(20px);
|
|
113
|
+
opacity: 0;
|
|
114
|
+
}
|
|
115
|
+
to {
|
|
116
|
+
transform: translateY(0);
|
|
117
|
+
opacity: 1;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
@keyframes bounceIn {
|
|
122
|
+
0% {
|
|
123
|
+
transform: scale(0.3);
|
|
124
|
+
opacity: 0;
|
|
125
|
+
}
|
|
126
|
+
50% {
|
|
127
|
+
transform: scale(1.05);
|
|
128
|
+
opacity: 0.8;
|
|
129
|
+
}
|
|
130
|
+
70% {
|
|
131
|
+
transform: scale(0.9);
|
|
132
|
+
opacity: 0.9;
|
|
133
|
+
}
|
|
134
|
+
100% {
|
|
135
|
+
transform: scale(1);
|
|
136
|
+
opacity: 1;
|
|
137
|
+
}
|
|
138
|
+
}.ele-img {
|
|
122
139
|
position: absolute;
|
|
123
|
-
width: 100%;
|
|
124
|
-
height: 100%;
|
|
125
|
-
border-radius: 50%;
|
|
126
140
|
overflow: hidden;
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
transform: rotate(45deg);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.ele-img .ani-wrap {
|
|
131
144
|
width: 100%;
|
|
132
|
-
height:
|
|
133
|
-
background: #fff;
|
|
145
|
+
height: 100%;
|
|
134
146
|
}
|
|
135
|
-
|
|
136
|
-
|
|
147
|
+
|
|
148
|
+
.ele-img .ele-image {
|
|
149
|
+
position: relative;
|
|
150
|
+
display: block;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.ele-img .rotate-wrap {
|
|
137
154
|
position: absolute;
|
|
155
|
+
left: 0;
|
|
156
|
+
right: 0;
|
|
157
|
+
top: 0;
|
|
158
|
+
bottom: 0;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.ele-img .ele-img-bg,
|
|
162
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
138
163
|
width: 100%;
|
|
139
|
-
height:
|
|
140
|
-
|
|
141
|
-
}
|
|
164
|
+
height: 100%;
|
|
165
|
+
overflow: hidden;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.ele-img .ele-bg-wrap {
|
|
169
|
+
width: 100%;
|
|
170
|
+
height: 100%;
|
|
171
|
+
background-size: cover;
|
|
172
|
+
background-position: 50% 50%;
|
|
173
|
+
background-repeat: no-repeat;
|
|
174
|
+
background-clip: border-box;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/* 动画关键帧 */
|
|
178
|
+
@keyframes zoomIn {
|
|
179
|
+
from {
|
|
180
|
+
opacity: 0;
|
|
181
|
+
transform: scale(0.5);
|
|
182
|
+
}
|
|
183
|
+
to {
|
|
184
|
+
opacity: 1;
|
|
185
|
+
transform: scale(1);
|
|
186
|
+
}
|
|
187
|
+
}.ele-shape {
|
|
188
|
+
position: absolute;
|
|
189
|
+
overflow: hidden;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.ani-wrap {
|
|
193
|
+
width: 100%;
|
|
194
|
+
height: 100%;
|
|
195
|
+
box-sizing: border-box;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.e-shape {
|
|
199
|
+
width: 100%;
|
|
200
|
+
height: 100%;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.svg-container :deep(svg) {
|
|
204
|
+
width: 100%;
|
|
205
|
+
height: 100%;
|
|
206
|
+
display: block;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.svg-loading,
|
|
210
|
+
.svg-error {
|
|
211
|
+
display: flex;
|
|
212
|
+
align-items: center;
|
|
213
|
+
justify-content: center;
|
|
214
|
+
width: 100%;
|
|
215
|
+
height: 100%;
|
|
216
|
+
background: rgba(0,0,0,0.05);
|
|
217
|
+
}.count-down .drag-point {
|
|
142
218
|
cursor: default!important
|
|
143
219
|
}
|
|
144
220
|
|
|
@@ -300,198 +376,165 @@ body {
|
|
|
300
376
|
align-items: center;
|
|
301
377
|
white-space: nowrap
|
|
302
378
|
}
|
|
303
|
-
|
|
379
|
+
#audio {
|
|
304
380
|
position: absolute;
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
381
|
+
right: 10px;
|
|
382
|
+
top: 10px;
|
|
383
|
+
z-index: 103;
|
|
384
|
+
width: 30px;
|
|
385
|
+
height: 30px;
|
|
310
386
|
display: flex;
|
|
311
|
-
justify-content: center;
|
|
312
387
|
align-items: center;
|
|
313
|
-
width: 100%;
|
|
314
|
-
height: 100%;
|
|
315
|
-
overflow: hidden;
|
|
316
|
-
transition: opacity 0.2s;
|
|
317
388
|
}
|
|
318
389
|
|
|
319
|
-
|
|
320
|
-
|
|
390
|
+
#audio .mrotate {
|
|
391
|
+
animation: mrotate 5s linear infinite;
|
|
321
392
|
}
|
|
322
393
|
|
|
323
|
-
|
|
394
|
+
@keyframes mrotate {
|
|
395
|
+
to {
|
|
396
|
+
transform: rotate(1turn);
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
#audio .audio {
|
|
401
|
+
width: 100%;
|
|
402
|
+
height: 100%;
|
|
324
403
|
display: flex;
|
|
325
404
|
align-items: center;
|
|
326
405
|
justify-content: center;
|
|
406
|
+
color: #fff;
|
|
407
|
+
background: #666;
|
|
408
|
+
border-radius: 50%;
|
|
409
|
+
overflow: hidden;
|
|
410
|
+
cursor: pointer;
|
|
411
|
+
transition: all 0.3s ease;
|
|
327
412
|
}
|
|
328
413
|
|
|
329
|
-
.
|
|
330
|
-
|
|
414
|
+
#audio .audio.a-border {
|
|
415
|
+
border: 1px solid #fff;
|
|
331
416
|
}
|
|
332
417
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/></svg>');
|
|
339
|
-
background-repeat: no-repeat;
|
|
340
|
-
background-position: center;
|
|
341
|
-
background-size: contain;
|
|
342
|
-
} */
|
|
343
|
-
|
|
344
|
-
.hb-tel:before {
|
|
345
|
-
content: "\E642";
|
|
346
|
-
}
|
|
347
|
-
.ele-lottie .ele-lotwrap {
|
|
348
|
-
overflow: hidden;
|
|
349
|
-
}.ele-shape {
|
|
350
|
-
position: absolute;
|
|
351
|
-
overflow: hidden;
|
|
418
|
+
#audio .audio .music-icon {
|
|
419
|
+
display: block;
|
|
420
|
+
width: 60%;
|
|
421
|
+
height: 60%;
|
|
422
|
+
object-fit: contain;
|
|
352
423
|
}
|
|
353
424
|
|
|
354
|
-
.
|
|
355
|
-
|
|
356
|
-
height:
|
|
357
|
-
box-sizing: border-box;
|
|
425
|
+
#audio .audio .iconfont {
|
|
426
|
+
font-size: 2opx;
|
|
427
|
+
line-height: 1;
|
|
358
428
|
}
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
429
|
+
#audio .icon-cancel {
|
|
430
|
+
position: absolute;
|
|
431
|
+
width: 100%;
|
|
432
|
+
height: 100%;
|
|
433
|
+
border-radius: 50%;
|
|
434
|
+
overflow: hidden;
|
|
435
|
+
padding: 15px 0;
|
|
363
436
|
}
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
437
|
+
#audio .icon-cancel .icon-h {
|
|
438
|
+
transform: rotate(45deg);
|
|
439
|
+
width: 100%;
|
|
440
|
+
height: 2px;
|
|
441
|
+
background: #fff;
|
|
442
|
+
}
|
|
443
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
444
|
+
content: '';
|
|
445
|
+
position: absolute;
|
|
446
|
+
width: 100%;
|
|
447
|
+
height: 2px;
|
|
448
|
+
background: #fff;
|
|
449
|
+
}.call {
|
|
450
|
+
position: absolute;
|
|
451
|
+
cursor: pointer;
|
|
452
|
+
user-select: none;
|
|
369
453
|
}
|
|
370
454
|
|
|
371
|
-
.
|
|
372
|
-
.svg-error {
|
|
455
|
+
.call .ani-wrap {
|
|
373
456
|
display: flex;
|
|
374
|
-
align-items: center;
|
|
375
457
|
justify-content: center;
|
|
458
|
+
align-items: center;
|
|
376
459
|
width: 100%;
|
|
377
460
|
height: 100%;
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
.ele-text {
|
|
381
|
-
position: relative;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.ele-text .ani-wrap {
|
|
385
|
-
width: 100%;
|
|
386
|
-
height: 100%;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.text-common {
|
|
390
|
-
padding: 5px;
|
|
391
|
-
text-orientation: upright;
|
|
392
|
-
white-space: pre-wrap;
|
|
461
|
+
overflow: hidden;
|
|
462
|
+
transition: opacity 0.2s;
|
|
393
463
|
}
|
|
394
464
|
|
|
395
|
-
|
|
396
|
-
.
|
|
397
|
-
animation: fadeIn 1s ease-in-out;
|
|
465
|
+
.call .ani-wrap:hover {
|
|
466
|
+
opacity: 0.9;
|
|
398
467
|
}
|
|
399
468
|
|
|
400
|
-
.
|
|
401
|
-
|
|
469
|
+
.call-content {
|
|
470
|
+
display: flex;
|
|
471
|
+
align-items: center;
|
|
472
|
+
justify-content: center;
|
|
402
473
|
}
|
|
403
474
|
|
|
404
|
-
.text
|
|
405
|
-
|
|
475
|
+
.btn-text {
|
|
476
|
+
margin-left: 10px;
|
|
406
477
|
}
|
|
407
478
|
|
|
408
|
-
/*
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
479
|
+
/* 这里可以添加实际的电话图标样式 */
|
|
480
|
+
/* .iconfont.hb-tel {
|
|
481
|
+
display: inline-block;
|
|
482
|
+
width: 16px;
|
|
483
|
+
height: 16px;
|
|
484
|
+
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/></svg>');
|
|
485
|
+
background-repeat: no-repeat;
|
|
486
|
+
background-position: center;
|
|
487
|
+
background-size: contain;
|
|
488
|
+
} */
|
|
417
489
|
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
transform: translateY(20px);
|
|
421
|
-
opacity: 0;
|
|
422
|
-
}
|
|
423
|
-
to {
|
|
424
|
-
transform: translateY(0);
|
|
425
|
-
opacity: 1;
|
|
426
|
-
}
|
|
490
|
+
.hb-tel:before {
|
|
491
|
+
content: "\E642";
|
|
427
492
|
}
|
|
428
|
-
|
|
429
|
-
@keyframes bounceIn {
|
|
430
|
-
0% {
|
|
431
|
-
transform: scale(0.3);
|
|
432
|
-
opacity: 0;
|
|
433
|
-
}
|
|
434
|
-
50% {
|
|
435
|
-
transform: scale(1.05);
|
|
436
|
-
opacity: 0.8;
|
|
437
|
-
}
|
|
438
|
-
70% {
|
|
439
|
-
transform: scale(0.9);
|
|
440
|
-
opacity: 0.9;
|
|
441
|
-
}
|
|
442
|
-
100% {
|
|
443
|
-
transform: scale(1);
|
|
444
|
-
opacity: 1;
|
|
445
|
-
}
|
|
446
|
-
}.ele-img {
|
|
493
|
+
.element-video {
|
|
447
494
|
position: absolute;
|
|
448
495
|
overflow: hidden;
|
|
496
|
+
background-color: transparent;
|
|
449
497
|
}
|
|
450
498
|
|
|
451
|
-
.
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
.ele-img .ele-image {
|
|
457
|
-
position: relative;
|
|
458
|
-
display: block;
|
|
499
|
+
.element-video .ani-wrap, .element-video img {
|
|
500
|
+
display: block;
|
|
501
|
+
width: 100%;
|
|
502
|
+
height: 100%;
|
|
459
503
|
}
|
|
460
504
|
|
|
461
|
-
.
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
right: 0;
|
|
465
|
-
top: 0;
|
|
466
|
-
bottom: 0;
|
|
505
|
+
.video-container {
|
|
506
|
+
width: 100%;
|
|
507
|
+
height: 100%;
|
|
467
508
|
}
|
|
468
509
|
|
|
469
|
-
.
|
|
470
|
-
.ele-img .rotate-wrap .img-wrap {
|
|
510
|
+
.video-container iframe {
|
|
471
511
|
width: 100%;
|
|
472
512
|
height: 100%;
|
|
473
|
-
|
|
513
|
+
border: none;
|
|
474
514
|
}
|
|
475
515
|
|
|
476
|
-
.
|
|
516
|
+
.video-cover {
|
|
517
|
+
position: relative;
|
|
477
518
|
width: 100%;
|
|
478
519
|
height: 100%;
|
|
479
520
|
background-size: cover;
|
|
480
|
-
background-position:
|
|
481
|
-
|
|
482
|
-
background-clip: border-box;
|
|
521
|
+
background-position: center;
|
|
522
|
+
cursor: pointer;
|
|
483
523
|
}
|
|
484
524
|
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
525
|
+
.video-cover .play-btn {
|
|
526
|
+
position: absolute;
|
|
527
|
+
left: 50%;
|
|
528
|
+
top: 50%;
|
|
529
|
+
transform: translate(-50%, -50%);
|
|
530
|
+
width: 50px;
|
|
531
|
+
height: 50px;
|
|
532
|
+
opacity: 0.8;
|
|
533
|
+
transition: opacity 0.2s;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.video-cover:hover .play-btn {
|
|
537
|
+
opacity: 1;
|
|
495
538
|
}
|
|
496
539
|
@keyframes jumpheart {
|
|
497
540
|
to {
|
|
@@ -862,46 +905,168 @@ body {
|
|
|
862
905
|
|
|
863
906
|
.btn-text {
|
|
864
907
|
margin-left: 10px;
|
|
865
|
-
}
|
|
908
|
+
}.ele-effect {
|
|
909
|
+
will-change: transform;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.ele-effect .effect-wrap {
|
|
913
|
+
position: relative;
|
|
866
914
|
width: 100%;
|
|
867
915
|
height: 100%;
|
|
868
916
|
}
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
-
|
|
917
|
+
|
|
918
|
+
.particle {
|
|
919
|
+
position: absolute;
|
|
920
|
+
background-repeat: no-repeat;
|
|
921
|
+
background-size: contain;
|
|
922
|
+
animation-name: falling;
|
|
923
|
+
animation-timing-function: linear;
|
|
924
|
+
animation-iteration-count: infinite;
|
|
925
|
+
will-change: transform;
|
|
876
926
|
}
|
|
877
927
|
|
|
878
|
-
@
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
928
|
+
@keyframes falling {
|
|
929
|
+
0% {
|
|
930
|
+
transform: translateY(0) rotate(0deg);
|
|
931
|
+
opacity: 1;
|
|
932
|
+
}
|
|
933
|
+
80% {
|
|
934
|
+
opacity: 0.8;
|
|
935
|
+
}
|
|
936
|
+
100% {
|
|
937
|
+
transform: translateY(100vh) rotate(360deg);
|
|
938
|
+
opacity: 0;
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
.ele-lottie .ele-lotwrap {
|
|
942
|
+
overflow: hidden
|
|
883
943
|
}
|
|
884
944
|
|
|
885
|
-
.
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
-moz-osx-font-smoothing: grayscale;
|
|
945
|
+
.ele-effect .effect-wrap {
|
|
946
|
+
position: relative;
|
|
947
|
+
overflow: hidden;
|
|
948
|
+
width: 100%;
|
|
949
|
+
height: 100%
|
|
891
950
|
}
|
|
892
951
|
|
|
893
|
-
|
|
894
|
-
|
|
952
|
+
.ele-effect .e-small {
|
|
953
|
+
position: absolute;
|
|
954
|
+
width: 24px;
|
|
955
|
+
height: 24px;
|
|
956
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
957
|
+
background-size: cover;
|
|
958
|
+
background-repeat: no-repeat;
|
|
959
|
+
-webkit-transform-origin: center;
|
|
960
|
+
transform-origin: center;
|
|
961
|
+
-webkit-animation: snow 5s linear infinite;
|
|
962
|
+
animation: snow 5s linear infinite
|
|
963
|
+
}.element-ditu .ani-wrap {
|
|
895
964
|
width: 100%;
|
|
896
965
|
height: 100%;
|
|
897
|
-
overflow: hidden
|
|
966
|
+
overflow: hidden
|
|
898
967
|
}
|
|
899
968
|
|
|
900
|
-
|
|
901
|
-
position: relative;
|
|
969
|
+
.element-ditu .map {
|
|
902
970
|
width: 100%;
|
|
903
|
-
height: 100
|
|
904
|
-
|
|
971
|
+
height: 100%
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.element-ditu .map .el-button {
|
|
975
|
+
width: 100%;
|
|
976
|
+
height: 100%;
|
|
977
|
+
display: -webkit-box;
|
|
978
|
+
display: -ms-flexbox;
|
|
979
|
+
display: flex;
|
|
980
|
+
-webkit-box-align: center;
|
|
981
|
+
-ms-flex-align: center;
|
|
982
|
+
align-items: center;
|
|
983
|
+
padding: 0;
|
|
984
|
+
-webkit-box-pack: center;
|
|
985
|
+
-ms-flex-pack: center;
|
|
986
|
+
justify-content: center;
|
|
987
|
+
background: inherit;
|
|
988
|
+
color: inherit;
|
|
989
|
+
border: none
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.element-ditu .center-map {
|
|
993
|
+
width: 100%;
|
|
994
|
+
height: 100%;
|
|
995
|
+
background: #fff
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.element-ditu .mask-map {
|
|
999
|
+
position: absolute;
|
|
1000
|
+
width: 100%;
|
|
1001
|
+
height: 100%;
|
|
1002
|
+
top: 0
|
|
1003
|
+
}
|
|
1004
|
+
.map-iframe {
|
|
1005
|
+
width: 100%;
|
|
1006
|
+
height: 100%;
|
|
1007
|
+
}
|
|
1008
|
+
body, html {
|
|
1009
|
+
width: 100%;
|
|
1010
|
+
height: 100%;
|
|
1011
|
+
}
|
|
1012
|
+
* {
|
|
1013
|
+
padding: 0;
|
|
1014
|
+
margin: 0;
|
|
1015
|
+
box-sizing: border-box;
|
|
1016
|
+
white-space: normal;
|
|
1017
|
+
word-break: break-all;
|
|
1018
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
@font-face {
|
|
1022
|
+
font-family: iconfont;
|
|
1023
|
+
src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
|
|
1024
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
|
|
1025
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.iconfont {
|
|
1029
|
+
font-family: "iconfont" !important;
|
|
1030
|
+
font-size: 16px;
|
|
1031
|
+
font-style: normal;
|
|
1032
|
+
-webkit-font-smoothing: antialiased;
|
|
1033
|
+
-moz-osx-font-smoothing: grayscale;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
::-webkit-scrollbar {
|
|
1038
|
+
-webkit-appearance: none;
|
|
1039
|
+
width: 2px;
|
|
1040
|
+
height:2px;
|
|
1041
|
+
display:none;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
::-webkit-scrollbar-button {
|
|
1045
|
+
display: none
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
::-webkit-scrollbar-corner,::-webkit-scrollbar-track {
|
|
1049
|
+
background-color: transparent
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
::-webkit-scrollbar-thumb {
|
|
1053
|
+
border-radius: 2px;
|
|
1054
|
+
background-color: rgba(0,0,0,.5)
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
|
|
1058
|
+
#index {
|
|
1059
|
+
position: relative;
|
|
1060
|
+
width: 100%;
|
|
1061
|
+
height: 100%;
|
|
1062
|
+
overflow: hidden;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
#page-list {
|
|
1066
|
+
position: relative;
|
|
1067
|
+
width: 100%;
|
|
1068
|
+
height: 100%;
|
|
1069
|
+
max-width: 800px;
|
|
905
1070
|
margin: 0 auto;
|
|
906
1071
|
z-index: 1
|
|
907
1072
|
}
|
|
@@ -959,7 +1124,7 @@ font-style: normal;
|
|
|
959
1124
|
display: none
|
|
960
1125
|
}
|
|
961
1126
|
|
|
962
|
-
#page-list .page-item .limit-ani .ani-wrap {
|
|
1127
|
+
#page-list .page-item .limit-ani .ani-wrap,#page-list .page-item .limit-ani .eles {
|
|
963
1128
|
animation: none!important
|
|
964
1129
|
}
|
|
965
1130
|
|
|
@@ -979,16 +1144,7 @@ font-style: normal;
|
|
|
979
1144
|
#page-list .page-item .scroll-wrap {
|
|
980
1145
|
position: relative;
|
|
981
1146
|
width: 100%;
|
|
982
|
-
overflow: hidden
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
#page-list .page-item .scroll-wrap.scroll-long .bg-wrap {
|
|
986
|
-
position: absolute;
|
|
987
|
-
top: 0;
|
|
988
|
-
left: 0;
|
|
989
|
-
right: 0;
|
|
990
|
-
bottom: 0;
|
|
991
|
-
z-index: -1;
|
|
1147
|
+
overflow: hidden
|
|
992
1148
|
}
|
|
993
1149
|
|
|
994
1150
|
#page-list .page-item .amap-maps {
|
|
@@ -1065,77 +1221,358 @@ font-style: normal;
|
|
|
1065
1221
|
position: absolute
|
|
1066
1222
|
}
|
|
1067
1223
|
|
|
1068
|
-
|
|
1069
|
-
:
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
width: 100%;
|
|
1073
|
-
height: 100%;
|
|
1224
|
+
#page-list .tip-cover {
|
|
1225
|
+
position: fixed;
|
|
1226
|
+
left: 0;
|
|
1227
|
+
top: 0;
|
|
1228
|
+
width: 100%;
|
|
1229
|
+
height: 100%;
|
|
1230
|
+
display: -ms-flexbox;
|
|
1231
|
+
display: flex;
|
|
1232
|
+
-ms-flex-align: center;
|
|
1233
|
+
align-items: center;
|
|
1234
|
+
-ms-flex-pack: center;
|
|
1235
|
+
justify-content: center;
|
|
1236
|
+
z-index: 999;
|
|
1237
|
+
background-color: rgba(0,0,0,.7)
|
|
1074
1238
|
}
|
|
1075
1239
|
|
|
1076
|
-
.
|
|
1077
|
-
|
|
1078
|
-
width:
|
|
1079
|
-
|
|
1080
|
-
|
|
1240
|
+
#page-list .tip-cover .tip {
|
|
1241
|
+
width: 80%;
|
|
1242
|
+
max-width: 250px;
|
|
1243
|
+
padding: 10px;
|
|
1244
|
+
border-radius: 5px;
|
|
1245
|
+
background-color: #fff
|
|
1081
1246
|
}
|
|
1082
1247
|
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1248
|
+
#page-list .tip-cover .tip-btn {
|
|
1249
|
+
display: block;
|
|
1250
|
+
margin: 25px auto;
|
|
1251
|
+
width: 120px;
|
|
1252
|
+
height: 30px;
|
|
1253
|
+
color: #fff;
|
|
1254
|
+
border-radius: 4px;
|
|
1255
|
+
text-align: center;
|
|
1256
|
+
font-size: 14px;
|
|
1257
|
+
line-height: 30px;
|
|
1258
|
+
background: #ed5566
|
|
1090
1259
|
}
|
|
1091
1260
|
|
|
1092
|
-
|
|
1093
|
-
|
|
1261
|
+
#page-list .tip-cover .tip-content {
|
|
1262
|
+
font-size: 14px;
|
|
1263
|
+
padding-top: 30px;
|
|
1094
1264
|
}
|
|
1095
1265
|
|
|
1096
|
-
.
|
|
1097
|
-
position:
|
|
1098
|
-
|
|
1266
|
+
.tip-cover {
|
|
1267
|
+
position: fixed;
|
|
1268
|
+
left: 0;
|
|
1269
|
+
top: 0;
|
|
1270
|
+
width: 100%;
|
|
1271
|
+
height: 100%;
|
|
1272
|
+
display: -ms-flexbox;
|
|
1273
|
+
display: flex;
|
|
1274
|
+
-ms-flex-align: center;
|
|
1275
|
+
align-items: center;
|
|
1276
|
+
-ms-flex-pack: center;
|
|
1277
|
+
justify-content: center;
|
|
1278
|
+
z-index: 999;
|
|
1279
|
+
background-color: rgba(0,0,0,.7)
|
|
1099
1280
|
}
|
|
1100
1281
|
|
|
1101
|
-
.
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
-webkit-transform: translateY(-100%);
|
|
1108
|
-
transform: translateY(-100%)
|
|
1109
|
-
}
|
|
1282
|
+
.tip-cover .tip {
|
|
1283
|
+
width: 80%;
|
|
1284
|
+
max-width: 250px;
|
|
1285
|
+
padding: 5px;
|
|
1286
|
+
border-radius: 3px;
|
|
1287
|
+
background-color: #fff
|
|
1110
1288
|
}
|
|
1111
1289
|
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1290
|
+
.tip-cover .tip-btn {
|
|
1291
|
+
display: block;
|
|
1292
|
+
margin: 13px auto;
|
|
1293
|
+
width: 64px;
|
|
1294
|
+
height: 20px;
|
|
1295
|
+
color: #fff;
|
|
1296
|
+
border-radius: 4px;
|
|
1297
|
+
text-align: center;
|
|
1298
|
+
font-size: 14px;
|
|
1299
|
+
line-height: 20px;
|
|
1300
|
+
background: #ed5566;
|
|
1117
1301
|
}
|
|
1118
|
-
|
|
1119
|
-
|
|
1302
|
+
body, html {
|
|
1303
|
+
width: 100%;
|
|
1304
|
+
height: 100%;
|
|
1120
1305
|
}
|
|
1121
|
-
|
|
1122
|
-
|
|
1306
|
+
* {
|
|
1307
|
+
padding: 0;
|
|
1308
|
+
margin: 0;
|
|
1309
|
+
box-sizing: border-box;
|
|
1310
|
+
white-space: normal;
|
|
1311
|
+
word-break: break-all;
|
|
1312
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1123
1313
|
}
|
|
1124
1314
|
|
|
1125
|
-
|
|
1126
|
-
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1315
|
+
@font-face {
|
|
1316
|
+
font-family: iconfont;
|
|
1317
|
+
src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
|
|
1318
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
|
|
1319
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
|
|
1130
1320
|
}
|
|
1131
|
-
|
|
1132
|
-
|
|
1321
|
+
|
|
1322
|
+
.iconfont {
|
|
1323
|
+
font-family: "iconfont" !important;
|
|
1324
|
+
font-size: 16px;
|
|
1325
|
+
font-style: normal;
|
|
1326
|
+
-webkit-font-smoothing: antialiased;
|
|
1327
|
+
-moz-osx-font-smoothing: grayscale;
|
|
1133
1328
|
}
|
|
1134
|
-
|
|
1135
|
-
|
|
1329
|
+
|
|
1330
|
+
#index {
|
|
1331
|
+
position: relative;
|
|
1332
|
+
width: 100%;
|
|
1333
|
+
height: 100%;
|
|
1334
|
+
overflow: hidden;
|
|
1136
1335
|
}
|
|
1137
1336
|
|
|
1138
|
-
|
|
1337
|
+
#page-list {
|
|
1338
|
+
position: relative;
|
|
1339
|
+
width: 100%;
|
|
1340
|
+
height: 100%;
|
|
1341
|
+
max-width: 800px;
|
|
1342
|
+
margin: 0 auto;
|
|
1343
|
+
z-index: 1
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
#page-list.hardware .eles {
|
|
1347
|
+
will-change: transform
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
#page-list .bg-wrap {
|
|
1351
|
+
position: absolute;
|
|
1352
|
+
left: 0;
|
|
1353
|
+
top: 0;
|
|
1354
|
+
right: 0;
|
|
1355
|
+
bottom: 0;
|
|
1356
|
+
z-index: -1
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
#page-list .ani-pause .ani-wrap {
|
|
1360
|
+
animation-play-state: paused!important;
|
|
1361
|
+
-webkit-animation-play-state: paused!important
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
#page-list .audio-wrap {
|
|
1365
|
+
z-index: 10
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
#page-list .audio-wrap,#page-list .page-item {
|
|
1369
|
+
position: absolute;
|
|
1370
|
+
left: 0;
|
|
1371
|
+
top: 0;
|
|
1372
|
+
right: 0;
|
|
1373
|
+
bottom: 0
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
#page-list .page-item {
|
|
1377
|
+
z-index: 0;
|
|
1378
|
+
overflow: hidden;
|
|
1379
|
+
display: none;
|
|
1380
|
+
visibility: hidden;
|
|
1381
|
+
transform-style: preserve-3d;
|
|
1382
|
+
-webkit-backface-visibility: hidden;
|
|
1383
|
+
backface-visibility: hidden;
|
|
1384
|
+
transition-timing-function: cubic-bezier(.1,.57,.1,1)
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
#page-list .page-item .count-down {
|
|
1388
|
+
display: none
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
#page-list .page-item .has-ani {
|
|
1392
|
+
display: none!important
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
#page-list .page-item .ele-effect,#page-list .page-item .page-bg {
|
|
1396
|
+
display: none
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
#page-list .page-item .limit-ani .ani-wrap {
|
|
1400
|
+
animation: none!important
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
#page-list .page-item .ani-pause .ani-wrap {
|
|
1404
|
+
animation-play-state: paused!important;
|
|
1405
|
+
-webkit-animation-play-state: paused!important
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
#page-list .page-item .showAniEle .has-ani {
|
|
1409
|
+
display: block!important
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
#page-list .page-item .showAniEle .page-bg {
|
|
1413
|
+
display: block
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
#page-list .page-item .scroll-wrap {
|
|
1417
|
+
position: relative;
|
|
1418
|
+
width: 100%;
|
|
1419
|
+
overflow: hidden;
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
#page-list .page-item .scroll-wrap.scroll-long .bg-wrap {
|
|
1423
|
+
position: absolute;
|
|
1424
|
+
top: 0;
|
|
1425
|
+
left: 0;
|
|
1426
|
+
right: 0;
|
|
1427
|
+
bottom: 0;
|
|
1428
|
+
z-index: -1;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
#page-list .page-item .amap-maps {
|
|
1432
|
+
display: none
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
#page-list .page-item.current {
|
|
1436
|
+
z-index: 1;
|
|
1437
|
+
display: block;
|
|
1438
|
+
visibility: visible
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
#page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
|
|
1442
|
+
display: block
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
#page-list .page-item.current .page-wrap .eles {
|
|
1446
|
+
text-align: left
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
#page-list .page-item.current .page-wrap .page-bg {
|
|
1450
|
+
display: block
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
#page-list .page-item.current .page-wrap .has-ani {
|
|
1454
|
+
display: block!important
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
#page-list .page-item.visibility {
|
|
1458
|
+
display: block;
|
|
1459
|
+
visibility: hidden
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
#page-list .page-item.active {
|
|
1463
|
+
z-index: 2;
|
|
1464
|
+
visibility: visible
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
#page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
|
|
1468
|
+
display: block
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
#page-list .page-item .page-wrap {
|
|
1472
|
+
position: relative;
|
|
1473
|
+
width: 100%;
|
|
1474
|
+
height: 100%;
|
|
1475
|
+
overflow: hidden;
|
|
1476
|
+
z-index: 1
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
#page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
|
|
1480
|
+
position: absolute;
|
|
1481
|
+
right: 0;
|
|
1482
|
+
left: 0;
|
|
1483
|
+
top: 0;
|
|
1484
|
+
bottom: 0;
|
|
1485
|
+
width: 100%;
|
|
1486
|
+
height: 100%;
|
|
1487
|
+
overflow: hidden
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
#page-list .page-item .page-wrap .page-bg {
|
|
1491
|
+
background-size: cover;
|
|
1492
|
+
background-repeat: no-repeat;
|
|
1493
|
+
background-position: 50% 50%;
|
|
1494
|
+
z-index: 0
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
#page-list .page-item .page-wrap .ele-wrap {
|
|
1498
|
+
z-index: 1
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
#page-list .page-item .page-wrap .eles {
|
|
1502
|
+
position: absolute
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
|
|
1506
|
+
:deep(.vue-transition-group) {
|
|
1507
|
+
display: block;
|
|
1508
|
+
position: relative;
|
|
1509
|
+
width: 100%;
|
|
1510
|
+
height: 100%;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.pages-wrapper {
|
|
1514
|
+
position: relative;
|
|
1515
|
+
width: 100%;
|
|
1516
|
+
height: 100%;
|
|
1517
|
+
overflow: hidden;
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
.page-container {
|
|
1521
|
+
position: absolute;
|
|
1522
|
+
width: 100%;
|
|
1523
|
+
height: 100%;
|
|
1524
|
+
background-size: cover;
|
|
1525
|
+
background-position: center;
|
|
1526
|
+
will-change: transform;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.no-ani .ani-wrap,.no-ani .ele-text-long {
|
|
1530
|
+
animation: none!important
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.scroll-mode .page-container {
|
|
1534
|
+
position: relative;
|
|
1535
|
+
min-height: 100vh;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
.slide-enter-active, .slide-leave-active {
|
|
1539
|
+
-webkit-animation: slideToTop .6s ease-in both;
|
|
1540
|
+
animation: slideToTop .6s ease-in both
|
|
1541
|
+
}
|
|
1542
|
+
@-webkit-keyframes slideToTop {
|
|
1543
|
+
to {
|
|
1544
|
+
-webkit-transform: translateY(-100%);
|
|
1545
|
+
transform: translateY(-100%)
|
|
1546
|
+
}
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
@keyframes slideToTop {
|
|
1550
|
+
to {
|
|
1551
|
+
-webkit-transform: translateY(-100%);
|
|
1552
|
+
transform: translateY(-100%)
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
.slide-enter-from {
|
|
1556
|
+
transform: translateX(100%);
|
|
1557
|
+
}
|
|
1558
|
+
.slide-leave-to {
|
|
1559
|
+
transform: translateX(-100%);
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
.rotateCube-enter-active, .rotateCube-leave-active {
|
|
1563
|
+
-webkit-transform-origin: 50% 100%;
|
|
1564
|
+
transform-origin: 50% 100%;
|
|
1565
|
+
-webkit-animation: rotateCubeTopOut .6s ease-in both;
|
|
1566
|
+
animation: rotateCubeTopOut .6s ease-in both
|
|
1567
|
+
}
|
|
1568
|
+
.rotateCube-enter-from {
|
|
1569
|
+
transform: translateX(100%);
|
|
1570
|
+
}
|
|
1571
|
+
.rotateCube-leave-to {
|
|
1572
|
+
transform: translateX(-100%);
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
.wind-enter-active, .wind-leave-active {
|
|
1139
1576
|
-webkit-animation: windOut .5s ease-in both;
|
|
1140
1577
|
animation: windOut .5s ease-in both
|
|
1141
1578
|
}
|
|
@@ -2334,161 +2771,19 @@ to {
|
|
|
2334
2771
|
transform: none
|
|
2335
2772
|
}
|
|
2336
2773
|
}
|
|
2337
|
-
.
|
|
2338
|
-
position: absolute;
|
|
2774
|
+
.ele-lottie .ele-lotwrap {
|
|
2339
2775
|
overflow: hidden;
|
|
2340
|
-
|
|
2776
|
+
}/* Iconfont definition */
|
|
2777
|
+
.icon-danmuliebiao1:before {
|
|
2778
|
+
content: "\E68A";
|
|
2341
2779
|
}
|
|
2342
2780
|
|
|
2343
|
-
.
|
|
2344
|
-
|
|
2345
|
-
width: 100%;
|
|
2346
|
-
height: 100%;
|
|
2781
|
+
.icon-cuowu2:before {
|
|
2782
|
+
content: "\E65E";
|
|
2347
2783
|
}
|
|
2348
2784
|
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
height: 100%;
|
|
2352
|
-
}
|
|
2353
|
-
|
|
2354
|
-
.video-container iframe {
|
|
2355
|
-
width: 100%;
|
|
2356
|
-
height: 100%;
|
|
2357
|
-
border: none;
|
|
2358
|
-
}
|
|
2359
|
-
|
|
2360
|
-
.video-cover {
|
|
2361
|
-
position: relative;
|
|
2362
|
-
width: 100%;
|
|
2363
|
-
height: 100%;
|
|
2364
|
-
background-size: cover;
|
|
2365
|
-
background-position: center;
|
|
2366
|
-
cursor: pointer;
|
|
2367
|
-
}
|
|
2368
|
-
|
|
2369
|
-
.video-cover .play-btn {
|
|
2370
|
-
position: absolute;
|
|
2371
|
-
left: 50%;
|
|
2372
|
-
top: 50%;
|
|
2373
|
-
transform: translate(-50%, -50%);
|
|
2374
|
-
width: 50px;
|
|
2375
|
-
height: 50px;
|
|
2376
|
-
opacity: 0.8;
|
|
2377
|
-
transition: opacity 0.2s;
|
|
2378
|
-
}
|
|
2379
|
-
|
|
2380
|
-
.video-cover:hover .play-btn {
|
|
2381
|
-
opacity: 1;
|
|
2382
|
-
}.ele-effect {
|
|
2383
|
-
will-change: transform;
|
|
2384
|
-
}
|
|
2385
|
-
|
|
2386
|
-
.ele-effect .effect-wrap {
|
|
2387
|
-
position: relative;
|
|
2388
|
-
width: 100%;
|
|
2389
|
-
height: 100%;
|
|
2390
|
-
}
|
|
2391
|
-
|
|
2392
|
-
.particle {
|
|
2393
|
-
position: absolute;
|
|
2394
|
-
background-repeat: no-repeat;
|
|
2395
|
-
background-size: contain;
|
|
2396
|
-
animation-name: falling;
|
|
2397
|
-
animation-timing-function: linear;
|
|
2398
|
-
animation-iteration-count: infinite;
|
|
2399
|
-
will-change: transform;
|
|
2400
|
-
}
|
|
2401
|
-
|
|
2402
|
-
@keyframes falling {
|
|
2403
|
-
0% {
|
|
2404
|
-
transform: translateY(0) rotate(0deg);
|
|
2405
|
-
opacity: 1;
|
|
2406
|
-
}
|
|
2407
|
-
80% {
|
|
2408
|
-
opacity: 0.8;
|
|
2409
|
-
}
|
|
2410
|
-
100% {
|
|
2411
|
-
transform: translateY(100vh) rotate(360deg);
|
|
2412
|
-
opacity: 0;
|
|
2413
|
-
}
|
|
2414
|
-
}
|
|
2415
|
-
.ele-lottie .ele-lotwrap {
|
|
2416
|
-
overflow: hidden
|
|
2417
|
-
}
|
|
2418
|
-
|
|
2419
|
-
.ele-effect .effect-wrap {
|
|
2420
|
-
position: relative;
|
|
2421
|
-
overflow: hidden;
|
|
2422
|
-
width: 100%;
|
|
2423
|
-
height: 100%
|
|
2424
|
-
}
|
|
2425
|
-
|
|
2426
|
-
.ele-effect .e-small {
|
|
2427
|
-
position: absolute;
|
|
2428
|
-
width: 24px;
|
|
2429
|
-
height: 24px;
|
|
2430
|
-
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
2431
|
-
background-size: cover;
|
|
2432
|
-
background-repeat: no-repeat;
|
|
2433
|
-
-webkit-transform-origin: center;
|
|
2434
|
-
transform-origin: center;
|
|
2435
|
-
-webkit-animation: snow 5s linear infinite;
|
|
2436
|
-
animation: snow 5s linear infinite
|
|
2437
|
-
}.element-ditu .ani-wrap {
|
|
2438
|
-
width: 100%;
|
|
2439
|
-
height: 100%;
|
|
2440
|
-
overflow: hidden
|
|
2441
|
-
}
|
|
2442
|
-
|
|
2443
|
-
.element-ditu .map {
|
|
2444
|
-
width: 100%;
|
|
2445
|
-
height: 100%
|
|
2446
|
-
}
|
|
2447
|
-
|
|
2448
|
-
.element-ditu .map .el-button {
|
|
2449
|
-
width: 100%;
|
|
2450
|
-
height: 100%;
|
|
2451
|
-
display: -webkit-box;
|
|
2452
|
-
display: -ms-flexbox;
|
|
2453
|
-
display: flex;
|
|
2454
|
-
-webkit-box-align: center;
|
|
2455
|
-
-ms-flex-align: center;
|
|
2456
|
-
align-items: center;
|
|
2457
|
-
padding: 0;
|
|
2458
|
-
-webkit-box-pack: center;
|
|
2459
|
-
-ms-flex-pack: center;
|
|
2460
|
-
justify-content: center;
|
|
2461
|
-
background: inherit;
|
|
2462
|
-
color: inherit;
|
|
2463
|
-
border: none
|
|
2464
|
-
}
|
|
2465
|
-
|
|
2466
|
-
.element-ditu .center-map {
|
|
2467
|
-
width: 100%;
|
|
2468
|
-
height: 100%;
|
|
2469
|
-
background: #fff
|
|
2470
|
-
}
|
|
2471
|
-
|
|
2472
|
-
.element-ditu .mask-map {
|
|
2473
|
-
position: absolute;
|
|
2474
|
-
width: 100%;
|
|
2475
|
-
height: 100%;
|
|
2476
|
-
top: 0
|
|
2477
|
-
}
|
|
2478
|
-
.map-iframe {
|
|
2479
|
-
width: 100%;
|
|
2480
|
-
height: 100%;
|
|
2481
|
-
}/* Iconfont definition */
|
|
2482
|
-
.icon-danmuliebiao1:before {
|
|
2483
|
-
content: "\E68A";
|
|
2484
|
-
}
|
|
2485
|
-
|
|
2486
|
-
.icon-cuowu2:before {
|
|
2487
|
-
content: "\E65E";
|
|
2488
|
-
}
|
|
2489
|
-
|
|
2490
|
-
i {
|
|
2491
|
-
font-style: normal;
|
|
2785
|
+
i {
|
|
2786
|
+
font-style: normal;
|
|
2492
2787
|
}
|
|
2493
2788
|
|
|
2494
2789
|
.v-modal {
|
|
@@ -3210,523 +3505,178 @@ to {
|
|
|
3210
3505
|
0% {
|
|
3211
3506
|
opacity: 1;
|
|
3212
3507
|
transform: translate3d(0, 50%, 0) scale(1);
|
|
3213
|
-
}
|
|
3214
|
-
40% {
|
|
3215
|
-
transform: translate3d(-80%, 80%, 0) scale(0.7);
|
|
3216
|
-
}
|
|
3217
|
-
to {
|
|
3218
|
-
opacity: 1;
|
|
3219
|
-
transform: translate3d(-130%, 130%, 0) scale(0);
|
|
3220
|
-
}
|
|
3221
|
-
}
|
|
3222
|
-
|
|
3223
|
-
@keyframes jump7 {
|
|
3224
|
-
0% {
|
|
3225
|
-
opacity: 1;
|
|
3226
|
-
transform: translate3d(0, 50%, 0) scale(1);
|
|
3227
|
-
}
|
|
3228
|
-
40% {
|
|
3229
|
-
transform: translate3d(80%, 80%, 0) scale(0.7);
|
|
3230
|
-
}
|
|
3231
|
-
to {
|
|
3232
|
-
opacity: 1;
|
|
3233
|
-
transform: translate3d(130%, 130%, 0) scale(0);
|
|
3234
|
-
}
|
|
3235
|
-
}
|
|
3236
|
-
|
|
3237
|
-
@keyframes jump8 {
|
|
3238
|
-
0% {
|
|
3239
|
-
opacity: 1;
|
|
3240
|
-
transform: translate3d(0, 50%, 0) scale(1);
|
|
3241
|
-
}
|
|
3242
|
-
40% {
|
|
3243
|
-
transform: translate3d(80%, -80%, 0) scale(0.7);
|
|
3244
|
-
}
|
|
3245
|
-
to {
|
|
3246
|
-
opacity: 1;
|
|
3247
|
-
transform: translate3d(130%, -130%, 0) scale(0);
|
|
3248
|
-
}
|
|
3249
|
-
}
|
|
3250
|
-
|
|
3251
|
-
/* 礼物弹窗样式 */
|
|
3252
|
-
.give-gift {
|
|
3253
|
-
position: fixed;
|
|
3254
|
-
top: 50%;
|
|
3255
|
-
left: 50%;
|
|
3256
|
-
transform: translate(-50%, -50%);
|
|
3257
|
-
z-index: 2004;
|
|
3258
|
-
background: white;
|
|
3259
|
-
padding: 20px;
|
|
3260
|
-
border-radius: 10px;
|
|
3261
|
-
text-align: center;
|
|
3262
|
-
}
|
|
3263
|
-
|
|
3264
|
-
.give-gift .back {
|
|
3265
|
-
position: absolute;
|
|
3266
|
-
top: 10px;
|
|
3267
|
-
left: 10px;
|
|
3268
|
-
cursor: pointer;
|
|
3269
|
-
}
|
|
3270
|
-
|
|
3271
|
-
.give-gift img {
|
|
3272
|
-
max-width: 300px;
|
|
3273
|
-
max-height: 300px;
|
|
3274
|
-
margin-top: 20px;
|
|
3275
|
-
}
|
|
3276
|
-
|
|
3277
|
-
/* 留言成功弹窗样式 */
|
|
3278
|
-
.mess-success-popup {
|
|
3279
|
-
position: fixed;
|
|
3280
|
-
top: 0;
|
|
3281
|
-
left: 0;
|
|
3282
|
-
right: 0;
|
|
3283
|
-
bottom: 0;
|
|
3284
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
3285
|
-
z-index: 2003;
|
|
3286
|
-
display: flex;
|
|
3287
|
-
justify-content: center;
|
|
3288
|
-
align-items: center;
|
|
3289
|
-
}
|
|
3290
|
-
|
|
3291
|
-
.mess-success-popup .gift-popup {
|
|
3292
|
-
width: 300px;
|
|
3293
|
-
height: 200px;
|
|
3294
|
-
background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
|
|
3295
|
-
border-radius: 10px;
|
|
3296
|
-
padding: 20px;
|
|
3297
|
-
text-align: center;
|
|
3298
|
-
position: relative;
|
|
3299
|
-
}
|
|
3300
|
-
|
|
3301
|
-
.mess-success-popup .gift-popup .icon-cuowu2 {
|
|
3302
|
-
position: absolute;
|
|
3303
|
-
top: 10px;
|
|
3304
|
-
right: 10px;
|
|
3305
|
-
cursor: pointer;
|
|
3306
|
-
}
|
|
3307
|
-
|
|
3308
|
-
.mess-success-popup .gift-popup .toast {
|
|
3309
|
-
display: flex;
|
|
3310
|
-
align-items: center;
|
|
3311
|
-
justify-content: center;
|
|
3312
|
-
margin: 10px 0;
|
|
3313
|
-
}
|
|
3314
|
-
|
|
3315
|
-
.mess-success-popup .gift-popup .toast img {
|
|
3316
|
-
width: 20px;
|
|
3317
|
-
height: 15px;
|
|
3318
|
-
margin: 0 5px;
|
|
3319
|
-
}
|
|
3320
|
-
|
|
3321
|
-
.mess-success-popup .gift-popup .title {
|
|
3322
|
-
margin: 15px 0;
|
|
3323
|
-
font-size: 16px;
|
|
3324
|
-
color: #333;
|
|
3325
|
-
}
|
|
3326
|
-
|
|
3327
|
-
.mess-success-popup .gift-popup .btn {
|
|
3328
|
-
background: linear-gradient(270deg, #ff4874, #ff9061);
|
|
3329
|
-
color: white;
|
|
3330
|
-
border: none;
|
|
3331
|
-
padding: 10px 20px;
|
|
3332
|
-
border-radius: 20px;
|
|
3333
|
-
margin-top: 15px;
|
|
3334
|
-
cursor: pointer;
|
|
3335
|
-
}
|
|
3336
|
-
|
|
3337
|
-
/* 新增图片加载动画样式 */
|
|
3338
|
-
.gift-image-container {
|
|
3339
|
-
position: relative;
|
|
3340
|
-
width: 300px;
|
|
3341
|
-
height: 300px;
|
|
3342
|
-
margin: 20px 0;
|
|
3343
|
-
overflow: hidden;
|
|
3344
|
-
}
|
|
3345
|
-
|
|
3346
|
-
.gift-image-container img {
|
|
3347
|
-
width: 100%;
|
|
3348
|
-
height: 100%;
|
|
3349
|
-
object-fit: contain;
|
|
3350
|
-
opacity: 0;
|
|
3351
|
-
transition: opacity 0.5s ease-in-out;
|
|
3352
|
-
}
|
|
3353
|
-
|
|
3354
|
-
.gift-image-container img.loaded {
|
|
3355
|
-
opacity: 1;
|
|
3356
|
-
}
|
|
3357
|
-
|
|
3358
|
-
.image-loading {
|
|
3359
|
-
position: absolute;
|
|
3360
|
-
top: 0;
|
|
3361
|
-
left: 0;
|
|
3362
|
-
width: 100%;
|
|
3363
|
-
height: 100%;
|
|
3364
|
-
display: flex;
|
|
3365
|
-
justify-content: center;
|
|
3366
|
-
align-items: center;
|
|
3367
|
-
background: rgba(255, 255, 255, 0.8);
|
|
3368
|
-
}
|
|
3369
|
-
|
|
3370
|
-
.loading-spinner {
|
|
3371
|
-
width: 40px;
|
|
3372
|
-
height: 40px;
|
|
3373
|
-
border: 4px solid #f3f3f3;
|
|
3374
|
-
border-top: 4px solid #ed5566;
|
|
3375
|
-
border-radius: 50%;
|
|
3376
|
-
animation: spin 1s linear infinite;
|
|
3377
|
-
}
|
|
3378
|
-
|
|
3379
|
-
@keyframes spin {
|
|
3380
|
-
0% { transform: rotate(0deg); }
|
|
3381
|
-
100% { transform: rotate(360deg); }
|
|
3382
|
-
}
|
|
3383
|
-
|
|
3384
|
-
.form
|
|
3385
|
-
position: absolute;
|
|
3386
|
-
}
|
|
3387
|
-
|
|
3388
|
-
.input-wrapper {
|
|
3389
|
-
display: flex;
|
|
3390
|
-
align-items: center;
|
|
3391
|
-
width: 100%;
|
|
3392
|
-
height: 100%;
|
|
3393
|
-
padding: 0 10px;
|
|
3394
|
-
box-sizing: border-box;
|
|
3395
|
-
position: relative;
|
|
3396
|
-
transition: border-color 0.3s;
|
|
3397
|
-
}
|
|
3398
|
-
|
|
3399
|
-
.required-marker {
|
|
3400
|
-
font-size: 12px;
|
|
3401
|
-
padding: 0 5px 0 0;
|
|
3402
|
-
color: red;
|
|
3403
|
-
vertical-align: middle;
|
|
3404
|
-
}
|
|
3405
|
-
|
|
3406
|
-
input {
|
|
3407
|
-
flex: 1;
|
|
3408
|
-
border: none;
|
|
3409
|
-
outline: none;
|
|
3410
|
-
background: transparent;
|
|
3411
|
-
height: 100%;
|
|
3412
|
-
padding: 0;
|
|
3413
|
-
margin: 0;
|
|
3414
|
-
}
|
|
3415
|
-
/*
|
|
3416
|
-
input::placeholder {
|
|
3417
|
-
color: #ccc;
|
|
3418
|
-
opacity: 1;
|
|
3419
|
-
} */
|
|
3420
|
-
|
|
3421
|
-
.dynamic-placeholder-input::placeholder {
|
|
3422
|
-
color: var(--placeholder-color, #999);
|
|
3423
|
-
opacity: 1;
|
|
3424
|
-
}
|
|
3425
|
-
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
3426
|
-
color: var(--placeholder-color, #999);
|
|
3427
|
-
}
|
|
3428
|
-
.dynamic-placeholder-input::-moz-placeholder {
|
|
3429
|
-
color: var(--placeholder-color, #999);
|
|
3430
|
-
opacity: 1;
|
|
3431
|
-
}
|
|
3432
|
-
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
3433
|
-
color: var(--placeholder-color, #999);
|
|
3434
|
-
}
|
|
3435
|
-
body, html {
|
|
3436
|
-
width: 100%;
|
|
3437
|
-
height: 100%;
|
|
3438
|
-
}
|
|
3439
|
-
* {
|
|
3440
|
-
padding: 0;
|
|
3441
|
-
margin: 0;
|
|
3442
|
-
box-sizing: border-box;
|
|
3443
|
-
white-space: normal;
|
|
3444
|
-
word-break: break-all;
|
|
3445
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
3446
|
-
}
|
|
3447
|
-
|
|
3448
|
-
@font-face {
|
|
3449
|
-
font-family: iconfont;
|
|
3450
|
-
src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
|
|
3451
|
-
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
|
|
3452
|
-
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
|
|
3453
|
-
}
|
|
3454
|
-
|
|
3455
|
-
.iconfont {
|
|
3456
|
-
font-family: "iconfont" !important;
|
|
3457
|
-
font-size: 16px;
|
|
3458
|
-
font-style: normal;
|
|
3459
|
-
-webkit-font-smoothing: antialiased;
|
|
3460
|
-
-moz-osx-font-smoothing: grayscale;
|
|
3461
|
-
}
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
::-webkit-scrollbar {
|
|
3465
|
-
-webkit-appearance: none;
|
|
3466
|
-
width: 2px;
|
|
3467
|
-
height:2px;
|
|
3468
|
-
display:none;
|
|
3469
|
-
}
|
|
3470
|
-
|
|
3471
|
-
::-webkit-scrollbar-button {
|
|
3472
|
-
display: none
|
|
3473
|
-
}
|
|
3474
|
-
|
|
3475
|
-
::-webkit-scrollbar-corner,::-webkit-scrollbar-track {
|
|
3476
|
-
background-color: transparent
|
|
3477
|
-
}
|
|
3478
|
-
|
|
3479
|
-
::-webkit-scrollbar-thumb {
|
|
3480
|
-
border-radius: 2px;
|
|
3481
|
-
background-color: rgba(0,0,0,.5)
|
|
3482
|
-
}
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
#index {
|
|
3486
|
-
position: relative;
|
|
3487
|
-
width: 100%;
|
|
3488
|
-
height: 100%;
|
|
3489
|
-
overflow: hidden;
|
|
3490
|
-
}
|
|
3491
|
-
|
|
3492
|
-
#page-list {
|
|
3493
|
-
position: relative;
|
|
3494
|
-
width: 100%;
|
|
3495
|
-
height: 100%;
|
|
3496
|
-
max-width: 800px;
|
|
3497
|
-
margin: 0 auto;
|
|
3498
|
-
z-index: 1
|
|
3499
|
-
}
|
|
3500
|
-
|
|
3501
|
-
#page-list.hardware .eles {
|
|
3502
|
-
will-change: transform
|
|
3503
|
-
}
|
|
3504
|
-
|
|
3505
|
-
#page-list .bg-wrap {
|
|
3506
|
-
position: absolute;
|
|
3507
|
-
left: 0;
|
|
3508
|
-
top: 0;
|
|
3509
|
-
right: 0;
|
|
3510
|
-
bottom: 0;
|
|
3511
|
-
z-index: -1
|
|
3512
|
-
}
|
|
3513
|
-
|
|
3514
|
-
#page-list .ani-pause .ani-wrap {
|
|
3515
|
-
animation-play-state: paused!important;
|
|
3516
|
-
-webkit-animation-play-state: paused!important
|
|
3517
|
-
}
|
|
3518
|
-
|
|
3519
|
-
#page-list .audio-wrap {
|
|
3520
|
-
z-index: 10
|
|
3521
|
-
}
|
|
3522
|
-
|
|
3523
|
-
#page-list .audio-wrap,#page-list .page-item {
|
|
3524
|
-
position: absolute;
|
|
3525
|
-
left: 0;
|
|
3526
|
-
top: 0;
|
|
3527
|
-
right: 0;
|
|
3528
|
-
bottom: 0
|
|
3529
|
-
}
|
|
3530
|
-
|
|
3531
|
-
#page-list .page-item {
|
|
3532
|
-
z-index: 0;
|
|
3533
|
-
overflow: hidden;
|
|
3534
|
-
display: none;
|
|
3535
|
-
visibility: hidden;
|
|
3536
|
-
transform-style: preserve-3d;
|
|
3537
|
-
-webkit-backface-visibility: hidden;
|
|
3538
|
-
backface-visibility: hidden;
|
|
3539
|
-
transition-timing-function: cubic-bezier(.1,.57,.1,1)
|
|
3540
|
-
}
|
|
3541
|
-
|
|
3542
|
-
#page-list .page-item .count-down {
|
|
3543
|
-
display: none
|
|
3544
|
-
}
|
|
3545
|
-
|
|
3546
|
-
#page-list .page-item .has-ani {
|
|
3547
|
-
display: none!important
|
|
3548
|
-
}
|
|
3549
|
-
|
|
3550
|
-
#page-list .page-item .ele-effect,#page-list .page-item .page-bg {
|
|
3551
|
-
display: none
|
|
3552
|
-
}
|
|
3553
|
-
|
|
3554
|
-
#page-list .page-item .limit-ani .ani-wrap,#page-list .page-item .limit-ani .eles {
|
|
3555
|
-
animation: none!important
|
|
3556
|
-
}
|
|
3557
|
-
|
|
3558
|
-
#page-list .page-item .ani-pause .ani-wrap {
|
|
3559
|
-
animation-play-state: paused!important;
|
|
3560
|
-
-webkit-animation-play-state: paused!important
|
|
3561
|
-
}
|
|
3562
|
-
|
|
3563
|
-
#page-list .page-item .showAniEle .has-ani {
|
|
3564
|
-
display: block!important
|
|
3565
|
-
}
|
|
3566
|
-
|
|
3567
|
-
#page-list .page-item .showAniEle .page-bg {
|
|
3568
|
-
display: block
|
|
3569
|
-
}
|
|
3570
|
-
|
|
3571
|
-
#page-list .page-item .scroll-wrap {
|
|
3572
|
-
position: relative;
|
|
3573
|
-
width: 100%;
|
|
3574
|
-
overflow: hidden
|
|
3575
|
-
}
|
|
3576
|
-
|
|
3577
|
-
#page-list .page-item .amap-maps {
|
|
3578
|
-
display: none
|
|
3579
|
-
}
|
|
3580
|
-
|
|
3581
|
-
#page-list .page-item.current {
|
|
3582
|
-
z-index: 1;
|
|
3583
|
-
display: block;
|
|
3584
|
-
visibility: visible
|
|
3585
|
-
}
|
|
3586
|
-
|
|
3587
|
-
#page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
|
|
3588
|
-
display: block
|
|
3589
|
-
}
|
|
3590
|
-
|
|
3591
|
-
#page-list .page-item.current .page-wrap .eles {
|
|
3592
|
-
text-align: left
|
|
3593
|
-
}
|
|
3594
|
-
|
|
3595
|
-
#page-list .page-item.current .page-wrap .page-bg {
|
|
3596
|
-
display: block
|
|
3597
|
-
}
|
|
3598
|
-
|
|
3599
|
-
#page-list .page-item.current .page-wrap .has-ani {
|
|
3600
|
-
display: block!important
|
|
3601
|
-
}
|
|
3602
|
-
|
|
3603
|
-
#page-list .page-item.visibility {
|
|
3604
|
-
display: block;
|
|
3605
|
-
visibility: hidden
|
|
3606
|
-
}
|
|
3607
|
-
|
|
3608
|
-
#page-list .page-item.active {
|
|
3609
|
-
z-index: 2;
|
|
3610
|
-
visibility: visible
|
|
3611
|
-
}
|
|
3612
|
-
|
|
3613
|
-
#page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
|
|
3614
|
-
display: block
|
|
3615
|
-
}
|
|
3616
|
-
|
|
3617
|
-
#page-list .page-item .page-wrap {
|
|
3618
|
-
position: relative;
|
|
3619
|
-
width: 100%;
|
|
3620
|
-
height: 100%;
|
|
3621
|
-
overflow: hidden;
|
|
3622
|
-
z-index: 1
|
|
3623
|
-
}
|
|
3624
|
-
|
|
3625
|
-
#page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
|
|
3626
|
-
position: absolute;
|
|
3627
|
-
right: 0;
|
|
3628
|
-
left: 0;
|
|
3629
|
-
top: 0;
|
|
3630
|
-
bottom: 0;
|
|
3631
|
-
width: 100%;
|
|
3632
|
-
height: 100%;
|
|
3633
|
-
overflow: hidden
|
|
3634
|
-
}
|
|
3635
|
-
|
|
3636
|
-
#page-list .page-item .page-wrap .page-bg {
|
|
3637
|
-
background-size: cover;
|
|
3638
|
-
background-repeat: no-repeat;
|
|
3639
|
-
background-position: 50% 50%;
|
|
3640
|
-
z-index: 0
|
|
3641
|
-
}
|
|
3642
|
-
|
|
3643
|
-
#page-list .page-item .page-wrap .ele-wrap {
|
|
3644
|
-
z-index: 1
|
|
3645
|
-
}
|
|
3646
|
-
|
|
3647
|
-
#page-list .page-item .page-wrap .eles {
|
|
3648
|
-
position: absolute
|
|
3649
|
-
}
|
|
3650
|
-
|
|
3651
|
-
#page-list .tip-cover {
|
|
3652
|
-
position: fixed;
|
|
3653
|
-
left: 0;
|
|
3654
|
-
top: 0;
|
|
3655
|
-
width: 100%;
|
|
3656
|
-
height: 100%;
|
|
3657
|
-
display: -ms-flexbox;
|
|
3658
|
-
display: flex;
|
|
3659
|
-
-ms-flex-align: center;
|
|
3660
|
-
align-items: center;
|
|
3661
|
-
-ms-flex-pack: center;
|
|
3662
|
-
justify-content: center;
|
|
3663
|
-
z-index: 999;
|
|
3664
|
-
background-color: rgba(0,0,0,.7)
|
|
3665
|
-
}
|
|
3666
|
-
|
|
3667
|
-
#page-list .tip-cover .tip {
|
|
3668
|
-
width: 80%;
|
|
3669
|
-
max-width: 250px;
|
|
3670
|
-
padding: 10px;
|
|
3671
|
-
border-radius: 5px;
|
|
3672
|
-
background-color: #fff
|
|
3673
|
-
}
|
|
3674
|
-
|
|
3675
|
-
#page-list .tip-cover .tip-btn {
|
|
3676
|
-
display: block;
|
|
3677
|
-
margin: 25px auto;
|
|
3678
|
-
width: 120px;
|
|
3679
|
-
height: 30px;
|
|
3680
|
-
color: #fff;
|
|
3681
|
-
border-radius: 4px;
|
|
3682
|
-
text-align: center;
|
|
3683
|
-
font-size: 14px;
|
|
3684
|
-
line-height: 30px;
|
|
3685
|
-
background: #ed5566
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
#page-list .tip-cover .tip-content {
|
|
3689
|
-
font-size: 14px;
|
|
3690
|
-
padding-top: 30px;
|
|
3691
|
-
}
|
|
3692
|
-
|
|
3693
|
-
.tip-cover {
|
|
3694
|
-
position: fixed;
|
|
3695
|
-
left: 0;
|
|
3696
|
-
top: 0;
|
|
3697
|
-
width: 100%;
|
|
3698
|
-
height: 100%;
|
|
3699
|
-
display: -ms-flexbox;
|
|
3700
|
-
display: flex;
|
|
3701
|
-
-ms-flex-align: center;
|
|
3702
|
-
align-items: center;
|
|
3703
|
-
-ms-flex-pack: center;
|
|
3704
|
-
justify-content: center;
|
|
3705
|
-
z-index: 999;
|
|
3706
|
-
background-color: rgba(0,0,0,.7)
|
|
3707
|
-
}
|
|
3708
|
-
|
|
3709
|
-
.tip-cover .tip {
|
|
3710
|
-
width: 80%;
|
|
3711
|
-
max-width: 250px;
|
|
3712
|
-
padding: 5px;
|
|
3713
|
-
border-radius: 3px;
|
|
3714
|
-
background-color: #fff
|
|
3715
|
-
}
|
|
3716
|
-
|
|
3717
|
-
.tip-cover .tip-btn {
|
|
3718
|
-
display: block;
|
|
3719
|
-
margin: 13px auto;
|
|
3720
|
-
width: 64px;
|
|
3721
|
-
height: 20px;
|
|
3722
|
-
color: #fff;
|
|
3723
|
-
border-radius: 4px;
|
|
3724
|
-
text-align: center;
|
|
3725
|
-
font-size: 14px;
|
|
3726
|
-
line-height: 20px;
|
|
3727
|
-
background: #ed5566;
|
|
3728
|
-
}
|
|
3729
|
-
/* .ele-form {
|
|
3508
|
+
}
|
|
3509
|
+
40% {
|
|
3510
|
+
transform: translate3d(-80%, 80%, 0) scale(0.7);
|
|
3511
|
+
}
|
|
3512
|
+
to {
|
|
3513
|
+
opacity: 1;
|
|
3514
|
+
transform: translate3d(-130%, 130%, 0) scale(0);
|
|
3515
|
+
}
|
|
3516
|
+
}
|
|
3517
|
+
|
|
3518
|
+
@keyframes jump7 {
|
|
3519
|
+
0% {
|
|
3520
|
+
opacity: 1;
|
|
3521
|
+
transform: translate3d(0, 50%, 0) scale(1);
|
|
3522
|
+
}
|
|
3523
|
+
40% {
|
|
3524
|
+
transform: translate3d(80%, 80%, 0) scale(0.7);
|
|
3525
|
+
}
|
|
3526
|
+
to {
|
|
3527
|
+
opacity: 1;
|
|
3528
|
+
transform: translate3d(130%, 130%, 0) scale(0);
|
|
3529
|
+
}
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
@keyframes jump8 {
|
|
3533
|
+
0% {
|
|
3534
|
+
opacity: 1;
|
|
3535
|
+
transform: translate3d(0, 50%, 0) scale(1);
|
|
3536
|
+
}
|
|
3537
|
+
40% {
|
|
3538
|
+
transform: translate3d(80%, -80%, 0) scale(0.7);
|
|
3539
|
+
}
|
|
3540
|
+
to {
|
|
3541
|
+
opacity: 1;
|
|
3542
|
+
transform: translate3d(130%, -130%, 0) scale(0);
|
|
3543
|
+
}
|
|
3544
|
+
}
|
|
3545
|
+
|
|
3546
|
+
/* 礼物弹窗样式 */
|
|
3547
|
+
.give-gift {
|
|
3548
|
+
position: fixed;
|
|
3549
|
+
top: 50%;
|
|
3550
|
+
left: 50%;
|
|
3551
|
+
transform: translate(-50%, -50%);
|
|
3552
|
+
z-index: 2004;
|
|
3553
|
+
background: white;
|
|
3554
|
+
padding: 20px;
|
|
3555
|
+
border-radius: 10px;
|
|
3556
|
+
text-align: center;
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
.give-gift .back {
|
|
3560
|
+
position: absolute;
|
|
3561
|
+
top: 10px;
|
|
3562
|
+
left: 10px;
|
|
3563
|
+
cursor: pointer;
|
|
3564
|
+
}
|
|
3565
|
+
|
|
3566
|
+
.give-gift img {
|
|
3567
|
+
max-width: 300px;
|
|
3568
|
+
max-height: 300px;
|
|
3569
|
+
margin-top: 20px;
|
|
3570
|
+
}
|
|
3571
|
+
|
|
3572
|
+
/* 留言成功弹窗样式 */
|
|
3573
|
+
.mess-success-popup {
|
|
3574
|
+
position: fixed;
|
|
3575
|
+
top: 0;
|
|
3576
|
+
left: 0;
|
|
3577
|
+
right: 0;
|
|
3578
|
+
bottom: 0;
|
|
3579
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
3580
|
+
z-index: 2003;
|
|
3581
|
+
display: flex;
|
|
3582
|
+
justify-content: center;
|
|
3583
|
+
align-items: center;
|
|
3584
|
+
}
|
|
3585
|
+
|
|
3586
|
+
.mess-success-popup .gift-popup {
|
|
3587
|
+
width: 300px;
|
|
3588
|
+
height: 200px;
|
|
3589
|
+
background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
|
|
3590
|
+
border-radius: 10px;
|
|
3591
|
+
padding: 20px;
|
|
3592
|
+
text-align: center;
|
|
3593
|
+
position: relative;
|
|
3594
|
+
}
|
|
3595
|
+
|
|
3596
|
+
.mess-success-popup .gift-popup .icon-cuowu2 {
|
|
3597
|
+
position: absolute;
|
|
3598
|
+
top: 10px;
|
|
3599
|
+
right: 10px;
|
|
3600
|
+
cursor: pointer;
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3603
|
+
.mess-success-popup .gift-popup .toast {
|
|
3604
|
+
display: flex;
|
|
3605
|
+
align-items: center;
|
|
3606
|
+
justify-content: center;
|
|
3607
|
+
margin: 10px 0;
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3610
|
+
.mess-success-popup .gift-popup .toast img {
|
|
3611
|
+
width: 20px;
|
|
3612
|
+
height: 15px;
|
|
3613
|
+
margin: 0 5px;
|
|
3614
|
+
}
|
|
3615
|
+
|
|
3616
|
+
.mess-success-popup .gift-popup .title {
|
|
3617
|
+
margin: 15px 0;
|
|
3618
|
+
font-size: 16px;
|
|
3619
|
+
color: #333;
|
|
3620
|
+
}
|
|
3621
|
+
|
|
3622
|
+
.mess-success-popup .gift-popup .btn {
|
|
3623
|
+
background: linear-gradient(270deg, #ff4874, #ff9061);
|
|
3624
|
+
color: white;
|
|
3625
|
+
border: none;
|
|
3626
|
+
padding: 10px 20px;
|
|
3627
|
+
border-radius: 20px;
|
|
3628
|
+
margin-top: 15px;
|
|
3629
|
+
cursor: pointer;
|
|
3630
|
+
}
|
|
3631
|
+
|
|
3632
|
+
/* 新增图片加载动画样式 */
|
|
3633
|
+
.gift-image-container {
|
|
3634
|
+
position: relative;
|
|
3635
|
+
width: 300px;
|
|
3636
|
+
height: 300px;
|
|
3637
|
+
margin: 20px 0;
|
|
3638
|
+
overflow: hidden;
|
|
3639
|
+
}
|
|
3640
|
+
|
|
3641
|
+
.gift-image-container img {
|
|
3642
|
+
width: 100%;
|
|
3643
|
+
height: 100%;
|
|
3644
|
+
object-fit: contain;
|
|
3645
|
+
opacity: 0;
|
|
3646
|
+
transition: opacity 0.5s ease-in-out;
|
|
3647
|
+
}
|
|
3648
|
+
|
|
3649
|
+
.gift-image-container img.loaded {
|
|
3650
|
+
opacity: 1;
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3653
|
+
.image-loading {
|
|
3654
|
+
position: absolute;
|
|
3655
|
+
top: 0;
|
|
3656
|
+
left: 0;
|
|
3657
|
+
width: 100%;
|
|
3658
|
+
height: 100%;
|
|
3659
|
+
display: flex;
|
|
3660
|
+
justify-content: center;
|
|
3661
|
+
align-items: center;
|
|
3662
|
+
background: rgba(255, 255, 255, 0.8);
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3665
|
+
.loading-spinner {
|
|
3666
|
+
width: 40px;
|
|
3667
|
+
height: 40px;
|
|
3668
|
+
border: 4px solid #f3f3f3;
|
|
3669
|
+
border-top: 4px solid #ed5566;
|
|
3670
|
+
border-radius: 50%;
|
|
3671
|
+
animation: spin 1s linear infinite;
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3674
|
+
@keyframes spin {
|
|
3675
|
+
0% { transform: rotate(0deg); }
|
|
3676
|
+
100% { transform: rotate(360deg); }
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3679
|
+
/* .ele-form {
|
|
3730
3680
|
position: absolute;
|
|
3731
3681
|
user-select: none;
|
|
3732
3682
|
}
|
|
@@ -3820,6 +3770,56 @@ font-style: normal;
|
|
|
3820
3770
|
width: 100%;
|
|
3821
3771
|
height: 100%;
|
|
3822
3772
|
z-index: 1000;
|
|
3773
|
+
}.form-input {
|
|
3774
|
+
position: absolute;
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
.input-wrapper {
|
|
3778
|
+
display: flex;
|
|
3779
|
+
align-items: center;
|
|
3780
|
+
width: 100%;
|
|
3781
|
+
height: 100%;
|
|
3782
|
+
padding: 0 10px;
|
|
3783
|
+
box-sizing: border-box;
|
|
3784
|
+
position: relative;
|
|
3785
|
+
transition: border-color 0.3s;
|
|
3786
|
+
}
|
|
3787
|
+
|
|
3788
|
+
.required-marker {
|
|
3789
|
+
font-size: 12px;
|
|
3790
|
+
padding: 0 5px 0 0;
|
|
3791
|
+
color: red;
|
|
3792
|
+
vertical-align: middle;
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3795
|
+
input {
|
|
3796
|
+
flex: 1;
|
|
3797
|
+
border: none;
|
|
3798
|
+
outline: none;
|
|
3799
|
+
background: transparent;
|
|
3800
|
+
height: 100%;
|
|
3801
|
+
padding: 0;
|
|
3802
|
+
margin: 0;
|
|
3803
|
+
}
|
|
3804
|
+
/*
|
|
3805
|
+
input::placeholder {
|
|
3806
|
+
color: #ccc;
|
|
3807
|
+
opacity: 1;
|
|
3808
|
+
} */
|
|
3809
|
+
|
|
3810
|
+
.dynamic-placeholder-input::placeholder {
|
|
3811
|
+
color: var(--placeholder-color, #999);
|
|
3812
|
+
opacity: 1;
|
|
3813
|
+
}
|
|
3814
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
3815
|
+
color: var(--placeholder-color, #999);
|
|
3816
|
+
}
|
|
3817
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
3818
|
+
color: var(--placeholder-color, #999);
|
|
3819
|
+
opacity: 1;
|
|
3820
|
+
}
|
|
3821
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
3822
|
+
color: var(--placeholder-color, #999);
|
|
3823
3823
|
}/* .ele-form {
|
|
3824
3824
|
position: absolute;
|
|
3825
3825
|
user-select: none;
|
|
@@ -4004,6 +4004,20 @@ font-style: normal;
|
|
|
4004
4004
|
.has-error .fs-tit {
|
|
4005
4005
|
border-bottom-color: #ff4d4f;
|
|
4006
4006
|
}
|
|
4007
|
+
.global.video {
|
|
4008
|
+
width: 35px;
|
|
4009
|
+
height: 55px;
|
|
4010
|
+
border-radius: 50%;
|
|
4011
|
+
text-align: center;
|
|
4012
|
+
margin-bottom: 5px;
|
|
4013
|
+
border: 2px solid #fff;
|
|
4014
|
+
cursor: pointer;
|
|
4015
|
+
}
|
|
4016
|
+
.icon-shipin2:before { content: "\E611"; }
|
|
4017
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4018
|
+
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
4019
|
+
}
|
|
4020
|
+
|
|
4007
4021
|
.icon-guanbi:before {
|
|
4008
4022
|
content: "\E676";
|
|
4009
4023
|
}
|
|
@@ -4398,20 +4412,6 @@ font-style: normal;
|
|
|
4398
4412
|
color: #F44336; /* 失败的红色 */
|
|
4399
4413
|
}
|
|
4400
4414
|
|
|
4401
|
-
.global.video {
|
|
4402
|
-
width: 35px;
|
|
4403
|
-
height: 55px;
|
|
4404
|
-
border-radius: 50%;
|
|
4405
|
-
text-align: center;
|
|
4406
|
-
margin-bottom: 5px;
|
|
4407
|
-
border: 2px solid #fff;
|
|
4408
|
-
cursor: pointer;
|
|
4409
|
-
}
|
|
4410
|
-
.icon-shipin2:before { content: "\E611"; }
|
|
4411
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4412
|
-
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
4413
|
-
}
|
|
4414
|
-
|
|
4415
4415
|
.global.tel {
|
|
4416
4416
|
width: 35px;
|
|
4417
4417
|
height: 55px;
|
|
@@ -4424,7 +4424,7 @@ font-style: normal;
|
|
|
4424
4424
|
.icon-dianhua:before { content: "\E60E"; }
|
|
4425
4425
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4426
4426
|
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4427
|
-
.global.
|
|
4427
|
+
.global.map {
|
|
4428
4428
|
width: 35px;
|
|
4429
4429
|
height: 55px;
|
|
4430
4430
|
border-radius: 50%;
|
|
@@ -4433,10 +4433,10 @@ font-style: normal;
|
|
|
4433
4433
|
border: 2px solid #fff;
|
|
4434
4434
|
cursor: pointer;
|
|
4435
4435
|
}
|
|
4436
|
-
.icon-
|
|
4436
|
+
.icon-daohang1:before { content: "\E612"; }
|
|
4437
4437
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4438
|
-
.global.
|
|
4439
|
-
.global.
|
|
4438
|
+
.global.map > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4439
|
+
.global.receipt {
|
|
4440
4440
|
width: 35px;
|
|
4441
4441
|
height: 55px;
|
|
4442
4442
|
border-radius: 50%;
|
|
@@ -4445,6 +4445,6 @@ font-style: normal;
|
|
|
4445
4445
|
border: 2px solid #fff;
|
|
4446
4446
|
cursor: pointer;
|
|
4447
4447
|
}
|
|
4448
|
-
.icon-
|
|
4448
|
+
.icon-liuyan:before { content: "\E636"; }
|
|
4449
4449
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4450
|
-
.global.
|
|
4450
|
+
.global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
|