unika-components 1.1.60 → 1.1.61
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 +896 -896
- package/dist/unika-components.esm.js +30 -5
- package/dist/unika-components.umd.js +30 -5
- 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;
|
|
@@ -45,14 +52,7 @@ transform: none !important;
|
|
|
45
52
|
.form-submit:disabled {
|
|
46
53
|
opacity: 0.7;
|
|
47
54
|
cursor: not-allowed;
|
|
48
|
-
}
|
|
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
|
-
|
|
55
|
+
}
|
|
56
56
|
.global-v ::v-deep .global-v-show iframe {
|
|
57
57
|
position: absolute;
|
|
58
58
|
left: 0;
|
|
@@ -62,7 +62,199 @@ body {
|
|
|
62
62
|
max-height: 100%;
|
|
63
63
|
width: 100%;
|
|
64
64
|
}
|
|
65
|
-
|
|
65
|
+
|
|
66
|
+
.ele-text {
|
|
67
|
+
position: relative;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.ele-text .ani-wrap {
|
|
71
|
+
width: 100%;
|
|
72
|
+
height: 100%;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.text-common {
|
|
76
|
+
padding: 5px;
|
|
77
|
+
text-orientation: upright;
|
|
78
|
+
white-space: pre-wrap;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/* 文本动画类 */
|
|
82
|
+
.text-fadeIn {
|
|
83
|
+
animation: fadeIn 1s ease-in-out;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.text-slideIn {
|
|
87
|
+
animation: slideIn 1s ease-in-out;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.text-bounceIn {
|
|
91
|
+
animation: bounceIn 1s ease-in-out;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* 基础动画关键帧 */
|
|
95
|
+
@keyframes fadeIn {
|
|
96
|
+
from {
|
|
97
|
+
opacity: 0;
|
|
98
|
+
}
|
|
99
|
+
to {
|
|
100
|
+
opacity: 1;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
@keyframes slideIn {
|
|
105
|
+
from {
|
|
106
|
+
transform: translateY(20px);
|
|
107
|
+
opacity: 0;
|
|
108
|
+
}
|
|
109
|
+
to {
|
|
110
|
+
transform: translateY(0);
|
|
111
|
+
opacity: 1;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
@keyframes bounceIn {
|
|
116
|
+
0% {
|
|
117
|
+
transform: scale(0.3);
|
|
118
|
+
opacity: 0;
|
|
119
|
+
}
|
|
120
|
+
50% {
|
|
121
|
+
transform: scale(1.05);
|
|
122
|
+
opacity: 0.8;
|
|
123
|
+
}
|
|
124
|
+
70% {
|
|
125
|
+
transform: scale(0.9);
|
|
126
|
+
opacity: 0.9;
|
|
127
|
+
}
|
|
128
|
+
100% {
|
|
129
|
+
transform: scale(1);
|
|
130
|
+
opacity: 1;
|
|
131
|
+
}
|
|
132
|
+
}.ele-shape {
|
|
133
|
+
position: absolute;
|
|
134
|
+
overflow: hidden;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.ani-wrap {
|
|
138
|
+
width: 100%;
|
|
139
|
+
height: 100%;
|
|
140
|
+
box-sizing: border-box;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-shape {
|
|
144
|
+
width: 100%;
|
|
145
|
+
height: 100%;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.svg-container :deep(svg) {
|
|
149
|
+
width: 100%;
|
|
150
|
+
height: 100%;
|
|
151
|
+
display: block;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.svg-loading,
|
|
155
|
+
.svg-error {
|
|
156
|
+
display: flex;
|
|
157
|
+
align-items: center;
|
|
158
|
+
justify-content: center;
|
|
159
|
+
width: 100%;
|
|
160
|
+
height: 100%;
|
|
161
|
+
background: rgba(0,0,0,0.05);
|
|
162
|
+
}
|
|
163
|
+
.element-video {
|
|
164
|
+
position: absolute;
|
|
165
|
+
overflow: hidden;
|
|
166
|
+
background-color: transparent;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.element-video .ani-wrap, .element-video img {
|
|
170
|
+
display: block;
|
|
171
|
+
width: 100%;
|
|
172
|
+
height: 100%;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.video-container {
|
|
176
|
+
width: 100%;
|
|
177
|
+
height: 100%;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.video-container iframe {
|
|
181
|
+
width: 100%;
|
|
182
|
+
height: 100%;
|
|
183
|
+
border: none;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.video-cover {
|
|
187
|
+
position: relative;
|
|
188
|
+
width: 100%;
|
|
189
|
+
height: 100%;
|
|
190
|
+
background-size: cover;
|
|
191
|
+
background-position: center;
|
|
192
|
+
cursor: pointer;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.video-cover .play-btn {
|
|
196
|
+
position: absolute;
|
|
197
|
+
left: 50%;
|
|
198
|
+
top: 50%;
|
|
199
|
+
transform: translate(-50%, -50%);
|
|
200
|
+
width: 50px;
|
|
201
|
+
height: 50px;
|
|
202
|
+
opacity: 0.8;
|
|
203
|
+
transition: opacity 0.2s;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.video-cover:hover .play-btn {
|
|
207
|
+
opacity: 1;
|
|
208
|
+
}.ele-img {
|
|
209
|
+
position: absolute;
|
|
210
|
+
overflow: hidden;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.ele-img .ani-wrap {
|
|
214
|
+
width: 100%;
|
|
215
|
+
height: 100%;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.ele-img .ele-image {
|
|
219
|
+
position: relative;
|
|
220
|
+
display: block;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.ele-img .rotate-wrap {
|
|
224
|
+
position: absolute;
|
|
225
|
+
left: 0;
|
|
226
|
+
right: 0;
|
|
227
|
+
top: 0;
|
|
228
|
+
bottom: 0;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.ele-img .ele-img-bg,
|
|
232
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
233
|
+
width: 100%;
|
|
234
|
+
height: 100%;
|
|
235
|
+
overflow: hidden;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.ele-img .ele-bg-wrap {
|
|
239
|
+
width: 100%;
|
|
240
|
+
height: 100%;
|
|
241
|
+
background-size: cover;
|
|
242
|
+
background-position: 50% 50%;
|
|
243
|
+
background-repeat: no-repeat;
|
|
244
|
+
background-clip: border-box;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/* 动画关键帧 */
|
|
248
|
+
@keyframes zoomIn {
|
|
249
|
+
from {
|
|
250
|
+
opacity: 0;
|
|
251
|
+
transform: scale(0.5);
|
|
252
|
+
}
|
|
253
|
+
to {
|
|
254
|
+
opacity: 1;
|
|
255
|
+
transform: scale(1);
|
|
256
|
+
}
|
|
257
|
+
}.count-down .drag-point {
|
|
66
258
|
cursor: default!important
|
|
67
259
|
}
|
|
68
260
|
|
|
@@ -224,181 +416,121 @@ body {
|
|
|
224
416
|
align-items: center;
|
|
225
417
|
white-space: nowrap
|
|
226
418
|
}
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
419
|
+
#audio {
|
|
420
|
+
position: absolute;
|
|
421
|
+
right: 10px;
|
|
422
|
+
top: 10px;
|
|
423
|
+
z-index: 103;
|
|
424
|
+
width: 30px;
|
|
425
|
+
height: 30px;
|
|
426
|
+
display: flex;
|
|
427
|
+
align-items: center;
|
|
230
428
|
}
|
|
231
429
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
height: 100%;
|
|
430
|
+
#audio .mrotate {
|
|
431
|
+
animation: mrotate 5s linear infinite;
|
|
235
432
|
}
|
|
236
433
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
434
|
+
@keyframes mrotate {
|
|
435
|
+
to {
|
|
436
|
+
transform: rotate(1turn);
|
|
437
|
+
}
|
|
241
438
|
}
|
|
242
439
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
440
|
+
#audio .audio {
|
|
441
|
+
width: 100%;
|
|
442
|
+
height: 100%;
|
|
443
|
+
display: flex;
|
|
444
|
+
align-items: center;
|
|
445
|
+
justify-content: center;
|
|
446
|
+
color: #fff;
|
|
447
|
+
background: #666;
|
|
448
|
+
border-radius: 50%;
|
|
449
|
+
overflow: hidden;
|
|
450
|
+
cursor: pointer;
|
|
451
|
+
transition: all 0.3s ease;
|
|
246
452
|
}
|
|
247
453
|
|
|
248
|
-
.
|
|
249
|
-
|
|
454
|
+
#audio .audio.a-border {
|
|
455
|
+
border: 1px solid #fff;
|
|
250
456
|
}
|
|
251
457
|
|
|
252
|
-
.
|
|
253
|
-
|
|
458
|
+
#audio .audio .music-icon {
|
|
459
|
+
display: block;
|
|
460
|
+
width: 60%;
|
|
461
|
+
height: 60%;
|
|
462
|
+
object-fit: contain;
|
|
254
463
|
}
|
|
255
464
|
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
opacity: 0;
|
|
260
|
-
}
|
|
261
|
-
to {
|
|
262
|
-
opacity: 1;
|
|
263
|
-
}
|
|
465
|
+
#audio .audio .iconfont {
|
|
466
|
+
font-size: 2opx;
|
|
467
|
+
line-height: 1;
|
|
264
468
|
}
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
transform: translateY(0);
|
|
273
|
-
opacity: 1;
|
|
274
|
-
}
|
|
469
|
+
#audio .icon-cancel {
|
|
470
|
+
position: absolute;
|
|
471
|
+
width: 100%;
|
|
472
|
+
height: 100%;
|
|
473
|
+
border-radius: 50%;
|
|
474
|
+
overflow: hidden;
|
|
475
|
+
padding: 15px 0;
|
|
275
476
|
}
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
}
|
|
282
|
-
50% {
|
|
283
|
-
transform: scale(1.05);
|
|
284
|
-
opacity: 0.8;
|
|
285
|
-
}
|
|
286
|
-
70% {
|
|
287
|
-
transform: scale(0.9);
|
|
288
|
-
opacity: 0.9;
|
|
289
|
-
}
|
|
290
|
-
100% {
|
|
291
|
-
transform: scale(1);
|
|
292
|
-
opacity: 1;
|
|
477
|
+
#audio .icon-cancel .icon-h {
|
|
478
|
+
transform: rotate(45deg);
|
|
479
|
+
width: 100%;
|
|
480
|
+
height: 2px;
|
|
481
|
+
background: #fff;
|
|
293
482
|
}
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
483
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
484
|
+
content: '';
|
|
485
|
+
position: absolute;
|
|
486
|
+
width: 100%;
|
|
487
|
+
height: 2px;
|
|
488
|
+
background: #fff;
|
|
489
|
+
}.element-ditu .ani-wrap {
|
|
300
490
|
width: 100%;
|
|
301
491
|
height: 100%;
|
|
302
|
-
|
|
492
|
+
overflow: hidden
|
|
303
493
|
}
|
|
304
494
|
|
|
305
|
-
.
|
|
495
|
+
.element-ditu .map {
|
|
306
496
|
width: 100%;
|
|
307
|
-
height: 100
|
|
497
|
+
height: 100%
|
|
308
498
|
}
|
|
309
499
|
|
|
310
|
-
.
|
|
500
|
+
.element-ditu .map .el-button {
|
|
311
501
|
width: 100%;
|
|
312
502
|
height: 100%;
|
|
313
|
-
display:
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
.svg-loading,
|
|
317
|
-
.svg-error {
|
|
503
|
+
display: -webkit-box;
|
|
504
|
+
display: -ms-flexbox;
|
|
318
505
|
display: flex;
|
|
506
|
+
-webkit-box-align: center;
|
|
507
|
+
-ms-flex-align: center;
|
|
319
508
|
align-items: center;
|
|
509
|
+
padding: 0;
|
|
510
|
+
-webkit-box-pack: center;
|
|
511
|
+
-ms-flex-pack: center;
|
|
320
512
|
justify-content: center;
|
|
513
|
+
background: inherit;
|
|
514
|
+
color: inherit;
|
|
515
|
+
border: none
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.element-ditu .center-map {
|
|
321
519
|
width: 100%;
|
|
322
520
|
height: 100%;
|
|
323
|
-
background:
|
|
324
|
-
}.button {
|
|
325
|
-
position: absolute;
|
|
326
|
-
cursor: pointer;
|
|
327
|
-
user-select: none;
|
|
521
|
+
background: #fff
|
|
328
522
|
}
|
|
329
|
-
|
|
330
|
-
.
|
|
331
|
-
|
|
332
|
-
justify-content: center;
|
|
333
|
-
align-items: center;
|
|
523
|
+
|
|
524
|
+
.element-ditu .mask-map {
|
|
525
|
+
position: absolute;
|
|
334
526
|
width: 100%;
|
|
335
527
|
height: 100%;
|
|
336
|
-
|
|
337
|
-
transition: opacity 0.2s;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.button .ani-wrap:hover {
|
|
341
|
-
opacity: 0.9;
|
|
528
|
+
top: 0
|
|
342
529
|
}
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
align-items: center;
|
|
347
|
-
justify-content: center;
|
|
530
|
+
.map-iframe {
|
|
531
|
+
width: 100%;
|
|
532
|
+
height: 100%;
|
|
348
533
|
}
|
|
349
|
-
|
|
350
|
-
.btn-text {
|
|
351
|
-
margin-left: 10px;
|
|
352
|
-
}.ele-img {
|
|
353
|
-
position: absolute;
|
|
354
|
-
overflow: hidden;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
.ele-img .ani-wrap {
|
|
358
|
-
width: 100%;
|
|
359
|
-
height: 100%;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.ele-img .ele-image {
|
|
363
|
-
position: relative;
|
|
364
|
-
display: block;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
.ele-img .rotate-wrap {
|
|
368
|
-
position: absolute;
|
|
369
|
-
left: 0;
|
|
370
|
-
right: 0;
|
|
371
|
-
top: 0;
|
|
372
|
-
bottom: 0;
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
.ele-img .ele-img-bg,
|
|
376
|
-
.ele-img .rotate-wrap .img-wrap {
|
|
377
|
-
width: 100%;
|
|
378
|
-
height: 100%;
|
|
379
|
-
overflow: hidden;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
.ele-img .ele-bg-wrap {
|
|
383
|
-
width: 100%;
|
|
384
|
-
height: 100%;
|
|
385
|
-
background-size: cover;
|
|
386
|
-
background-position: 50% 50%;
|
|
387
|
-
background-repeat: no-repeat;
|
|
388
|
-
background-clip: border-box;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
/* 动画关键帧 */
|
|
392
|
-
@keyframes zoomIn {
|
|
393
|
-
from {
|
|
394
|
-
opacity: 0;
|
|
395
|
-
transform: scale(0.5);
|
|
396
|
-
}
|
|
397
|
-
to {
|
|
398
|
-
opacity: 1;
|
|
399
|
-
transform: scale(1);
|
|
400
|
-
}
|
|
401
|
-
}
|
|
402
534
|
@keyframes jumpheart {
|
|
403
535
|
to {
|
|
404
536
|
-webkit-transform: scale(1.2);
|
|
@@ -740,226 +872,69 @@ body {
|
|
|
740
872
|
}
|
|
741
873
|
.icon-xingzhuangjiehe:before {
|
|
742
874
|
content: "\E6A6";
|
|
743
|
-
}
|
|
875
|
+
}
|
|
876
|
+
.ele-lottie .ele-lotwrap {
|
|
877
|
+
overflow: hidden;
|
|
878
|
+
}body, html {
|
|
744
879
|
width: 100%;
|
|
745
880
|
height: 100%;
|
|
746
|
-
|
|
881
|
+
}
|
|
882
|
+
* {
|
|
883
|
+
padding: 0;
|
|
884
|
+
margin: 0;
|
|
885
|
+
box-sizing: border-box;
|
|
886
|
+
white-space: normal;
|
|
887
|
+
word-break: break-all;
|
|
888
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
747
889
|
}
|
|
748
890
|
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
891
|
+
@font-face {
|
|
892
|
+
font-family: iconfont;
|
|
893
|
+
src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
|
|
894
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
|
|
895
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
|
|
752
896
|
}
|
|
753
897
|
|
|
754
|
-
.
|
|
898
|
+
.iconfont {
|
|
899
|
+
font-family: "iconfont" !important;
|
|
900
|
+
font-size: 16px;
|
|
901
|
+
font-style: normal;
|
|
902
|
+
-webkit-font-smoothing: antialiased;
|
|
903
|
+
-moz-osx-font-smoothing: grayscale;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
#index {
|
|
907
|
+
position: relative;
|
|
755
908
|
width: 100%;
|
|
756
909
|
height: 100%;
|
|
757
|
-
|
|
758
|
-
display: -ms-flexbox;
|
|
759
|
-
display: flex;
|
|
760
|
-
-webkit-box-align: center;
|
|
761
|
-
-ms-flex-align: center;
|
|
762
|
-
align-items: center;
|
|
763
|
-
padding: 0;
|
|
764
|
-
-webkit-box-pack: center;
|
|
765
|
-
-ms-flex-pack: center;
|
|
766
|
-
justify-content: center;
|
|
767
|
-
background: inherit;
|
|
768
|
-
color: inherit;
|
|
769
|
-
border: none
|
|
910
|
+
overflow: hidden;
|
|
770
911
|
}
|
|
771
912
|
|
|
772
|
-
|
|
913
|
+
#page-list {
|
|
914
|
+
position: relative;
|
|
773
915
|
width: 100%;
|
|
774
916
|
height: 100%;
|
|
775
|
-
|
|
917
|
+
max-width: 800px;
|
|
918
|
+
margin: 0 auto;
|
|
919
|
+
z-index: 1
|
|
776
920
|
}
|
|
777
921
|
|
|
778
|
-
.
|
|
922
|
+
#page-list.hardware .eles {
|
|
923
|
+
will-change: transform
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
#page-list .bg-wrap {
|
|
779
927
|
position: absolute;
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
928
|
+
left: 0;
|
|
929
|
+
top: 0;
|
|
930
|
+
right: 0;
|
|
931
|
+
bottom: 0;
|
|
932
|
+
z-index: -1
|
|
783
933
|
}
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
.element-video {
|
|
789
|
-
position: absolute;
|
|
790
|
-
overflow: hidden;
|
|
791
|
-
background-color: transparent;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
.element-video .ani-wrap, .element-video img {
|
|
795
|
-
display: block;
|
|
796
|
-
width: 100%;
|
|
797
|
-
height: 100%;
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
.video-container {
|
|
801
|
-
width: 100%;
|
|
802
|
-
height: 100%;
|
|
803
|
-
}
|
|
804
|
-
|
|
805
|
-
.video-container iframe {
|
|
806
|
-
width: 100%;
|
|
807
|
-
height: 100%;
|
|
808
|
-
border: none;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
.video-cover {
|
|
812
|
-
position: relative;
|
|
813
|
-
width: 100%;
|
|
814
|
-
height: 100%;
|
|
815
|
-
background-size: cover;
|
|
816
|
-
background-position: center;
|
|
817
|
-
cursor: pointer;
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.video-cover .play-btn {
|
|
821
|
-
position: absolute;
|
|
822
|
-
left: 50%;
|
|
823
|
-
top: 50%;
|
|
824
|
-
transform: translate(-50%, -50%);
|
|
825
|
-
width: 50px;
|
|
826
|
-
height: 50px;
|
|
827
|
-
opacity: 0.8;
|
|
828
|
-
transition: opacity 0.2s;
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
.video-cover:hover .play-btn {
|
|
832
|
-
opacity: 1;
|
|
833
|
-
}#audio {
|
|
834
|
-
position: absolute;
|
|
835
|
-
right: 10px;
|
|
836
|
-
top: 10px;
|
|
837
|
-
z-index: 103;
|
|
838
|
-
width: 30px;
|
|
839
|
-
height: 30px;
|
|
840
|
-
display: flex;
|
|
841
|
-
align-items: center;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
#audio .mrotate {
|
|
845
|
-
animation: mrotate 5s linear infinite;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
@keyframes mrotate {
|
|
849
|
-
to {
|
|
850
|
-
transform: rotate(1turn);
|
|
851
|
-
}
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
#audio .audio {
|
|
855
|
-
width: 100%;
|
|
856
|
-
height: 100%;
|
|
857
|
-
display: flex;
|
|
858
|
-
align-items: center;
|
|
859
|
-
justify-content: center;
|
|
860
|
-
color: #fff;
|
|
861
|
-
background: #666;
|
|
862
|
-
border-radius: 50%;
|
|
863
|
-
overflow: hidden;
|
|
864
|
-
cursor: pointer;
|
|
865
|
-
transition: all 0.3s ease;
|
|
866
|
-
}
|
|
867
|
-
|
|
868
|
-
#audio .audio.a-border {
|
|
869
|
-
border: 1px solid #fff;
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
#audio .audio .music-icon {
|
|
873
|
-
display: block;
|
|
874
|
-
width: 60%;
|
|
875
|
-
height: 60%;
|
|
876
|
-
object-fit: contain;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
#audio .audio .iconfont {
|
|
880
|
-
font-size: 2opx;
|
|
881
|
-
line-height: 1;
|
|
882
|
-
}
|
|
883
|
-
#audio .icon-cancel {
|
|
884
|
-
position: absolute;
|
|
885
|
-
width: 100%;
|
|
886
|
-
height: 100%;
|
|
887
|
-
border-radius: 50%;
|
|
888
|
-
overflow: hidden;
|
|
889
|
-
padding: 15px 0;
|
|
890
|
-
}
|
|
891
|
-
#audio .icon-cancel .icon-h {
|
|
892
|
-
transform: rotate(45deg);
|
|
893
|
-
width: 100%;
|
|
894
|
-
height: 2px;
|
|
895
|
-
background: #fff;
|
|
896
|
-
}
|
|
897
|
-
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
898
|
-
content: '';
|
|
899
|
-
position: absolute;
|
|
900
|
-
width: 100%;
|
|
901
|
-
height: 2px;
|
|
902
|
-
background: #fff;
|
|
903
|
-
}body, html {
|
|
904
|
-
width: 100%;
|
|
905
|
-
height: 100%;
|
|
906
|
-
}
|
|
907
|
-
* {
|
|
908
|
-
padding: 0;
|
|
909
|
-
margin: 0;
|
|
910
|
-
box-sizing: border-box;
|
|
911
|
-
white-space: normal;
|
|
912
|
-
word-break: break-all;
|
|
913
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
@font-face {
|
|
917
|
-
font-family: iconfont;
|
|
918
|
-
src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
|
|
919
|
-
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
|
|
920
|
-
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
.iconfont {
|
|
924
|
-
font-family: "iconfont" !important;
|
|
925
|
-
font-size: 16px;
|
|
926
|
-
font-style: normal;
|
|
927
|
-
-webkit-font-smoothing: antialiased;
|
|
928
|
-
-moz-osx-font-smoothing: grayscale;
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
#index {
|
|
932
|
-
position: relative;
|
|
933
|
-
width: 100%;
|
|
934
|
-
height: 100%;
|
|
935
|
-
overflow: hidden;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
#page-list {
|
|
939
|
-
position: relative;
|
|
940
|
-
width: 100%;
|
|
941
|
-
height: 100%;
|
|
942
|
-
max-width: 800px;
|
|
943
|
-
margin: 0 auto;
|
|
944
|
-
z-index: 1
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
#page-list.hardware .eles {
|
|
948
|
-
will-change: transform
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
#page-list .bg-wrap {
|
|
952
|
-
position: absolute;
|
|
953
|
-
left: 0;
|
|
954
|
-
top: 0;
|
|
955
|
-
right: 0;
|
|
956
|
-
bottom: 0;
|
|
957
|
-
z-index: -1
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
#page-list .ani-pause .ani-wrap {
|
|
961
|
-
animation-play-state: paused!important;
|
|
962
|
-
-webkit-animation-play-state: paused!important
|
|
934
|
+
|
|
935
|
+
#page-list .ani-pause .ani-wrap {
|
|
936
|
+
animation-play-state: paused!important;
|
|
937
|
+
-webkit-animation-play-state: paused!important
|
|
963
938
|
}
|
|
964
939
|
|
|
965
940
|
#page-list .audio-wrap {
|
|
@@ -2414,471 +2389,68 @@ to {
|
|
|
2414
2389
|
|
|
2415
2390
|
.hb-tel:before {
|
|
2416
2391
|
content: "\E642";
|
|
2417
|
-
}
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
.ele-effect .effect-wrap {
|
|
2422
|
-
position: relative;
|
|
2423
|
-
width: 100%;
|
|
2424
|
-
height: 100%;
|
|
2425
|
-
}
|
|
2426
|
-
|
|
2427
|
-
.particle {
|
|
2428
|
-
position: absolute;
|
|
2429
|
-
background-repeat: no-repeat;
|
|
2430
|
-
background-size: contain;
|
|
2431
|
-
animation-name: falling;
|
|
2432
|
-
animation-timing-function: linear;
|
|
2433
|
-
animation-iteration-count: infinite;
|
|
2434
|
-
will-change: transform;
|
|
2435
|
-
}
|
|
2436
|
-
|
|
2437
|
-
@keyframes falling {
|
|
2438
|
-
0% {
|
|
2439
|
-
transform: translateY(0) rotate(0deg);
|
|
2440
|
-
opacity: 1;
|
|
2392
|
+
}/* Iconfont definition */
|
|
2393
|
+
.icon-danmuliebiao1:before {
|
|
2394
|
+
content: "\E68A";
|
|
2441
2395
|
}
|
|
2442
|
-
|
|
2443
|
-
|
|
2396
|
+
|
|
2397
|
+
.icon-cuowu2:before {
|
|
2398
|
+
content: "\E65E";
|
|
2444
2399
|
}
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2400
|
+
|
|
2401
|
+
i {
|
|
2402
|
+
font-style: normal;
|
|
2448
2403
|
}
|
|
2449
|
-
|
|
2450
|
-
.
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2404
|
+
|
|
2405
|
+
.v-modal {
|
|
2406
|
+
position: fixed;
|
|
2407
|
+
left: 0;
|
|
2408
|
+
top: 0;
|
|
2409
|
+
width: 100%;
|
|
2410
|
+
height: 100%;
|
|
2411
|
+
opacity: .5;
|
|
2412
|
+
background: #000;
|
|
2413
|
+
}
|
|
2414
|
+
/* 底部工具栏样式 */
|
|
2415
|
+
#toolbarNew {
|
|
2416
|
+
position: fixed;
|
|
2417
|
+
left: 0;
|
|
2418
|
+
bottom: 0;
|
|
2419
|
+
width: 100%;
|
|
2420
|
+
padding: 12px 0;
|
|
2421
|
+
background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
|
|
2422
|
+
z-index: 100;
|
|
2423
|
+
}
|
|
2424
|
+
|
|
2425
|
+
.toolbar {
|
|
2426
|
+
display: flex;
|
|
2427
|
+
align-items: center;
|
|
2428
|
+
padding: 0 10px;
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2431
|
+
.bar-left {
|
|
2455
2432
|
position: relative;
|
|
2456
|
-
|
|
2433
|
+
flex: 1;
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.bar-mess {
|
|
2457
2437
|
width: 100%;
|
|
2458
|
-
height:
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
background-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
.
|
|
2474
|
-
overflow: hidden;
|
|
2475
|
-
}
|
|
2476
|
-
body, html {
|
|
2477
|
-
width: 100%;
|
|
2478
|
-
height: 100%;
|
|
2479
|
-
}
|
|
2480
|
-
* {
|
|
2481
|
-
padding: 0;
|
|
2482
|
-
margin: 0;
|
|
2483
|
-
box-sizing: border-box;
|
|
2484
|
-
white-space: normal;
|
|
2485
|
-
word-break: break-all;
|
|
2486
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
2487
|
-
}
|
|
2488
|
-
|
|
2489
|
-
@font-face {
|
|
2490
|
-
font-family: iconfont;
|
|
2491
|
-
src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
|
|
2492
|
-
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
|
|
2493
|
-
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
|
|
2494
|
-
}
|
|
2495
|
-
|
|
2496
|
-
.iconfont {
|
|
2497
|
-
font-family: "iconfont" !important;
|
|
2498
|
-
font-size: 16px;
|
|
2499
|
-
font-style: normal;
|
|
2500
|
-
-webkit-font-smoothing: antialiased;
|
|
2501
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2502
|
-
}
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
::-webkit-scrollbar {
|
|
2506
|
-
-webkit-appearance: none;
|
|
2507
|
-
width: 2px;
|
|
2508
|
-
height:2px;
|
|
2509
|
-
display:none;
|
|
2510
|
-
}
|
|
2511
|
-
|
|
2512
|
-
::-webkit-scrollbar-button {
|
|
2513
|
-
display: none
|
|
2514
|
-
}
|
|
2515
|
-
|
|
2516
|
-
::-webkit-scrollbar-corner,::-webkit-scrollbar-track {
|
|
2517
|
-
background-color: transparent
|
|
2518
|
-
}
|
|
2519
|
-
|
|
2520
|
-
::-webkit-scrollbar-thumb {
|
|
2521
|
-
border-radius: 2px;
|
|
2522
|
-
background-color: rgba(0,0,0,.5)
|
|
2523
|
-
}
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
#index {
|
|
2527
|
-
position: relative;
|
|
2528
|
-
width: 100%;
|
|
2529
|
-
height: 100%;
|
|
2530
|
-
overflow: hidden;
|
|
2531
|
-
}
|
|
2532
|
-
|
|
2533
|
-
#page-list {
|
|
2534
|
-
position: relative;
|
|
2535
|
-
width: 100%;
|
|
2536
|
-
height: 100%;
|
|
2537
|
-
max-width: 800px;
|
|
2538
|
-
margin: 0 auto;
|
|
2539
|
-
z-index: 1
|
|
2540
|
-
}
|
|
2541
|
-
|
|
2542
|
-
#page-list.hardware .eles {
|
|
2543
|
-
will-change: transform
|
|
2544
|
-
}
|
|
2545
|
-
|
|
2546
|
-
#page-list .bg-wrap {
|
|
2547
|
-
position: absolute;
|
|
2548
|
-
left: 0;
|
|
2549
|
-
top: 0;
|
|
2550
|
-
right: 0;
|
|
2551
|
-
bottom: 0;
|
|
2552
|
-
z-index: -1
|
|
2553
|
-
}
|
|
2554
|
-
|
|
2555
|
-
#page-list .ani-pause .ani-wrap {
|
|
2556
|
-
animation-play-state: paused!important;
|
|
2557
|
-
-webkit-animation-play-state: paused!important
|
|
2558
|
-
}
|
|
2559
|
-
|
|
2560
|
-
#page-list .audio-wrap {
|
|
2561
|
-
z-index: 10
|
|
2562
|
-
}
|
|
2563
|
-
|
|
2564
|
-
#page-list .audio-wrap,#page-list .page-item {
|
|
2565
|
-
position: absolute;
|
|
2566
|
-
left: 0;
|
|
2567
|
-
top: 0;
|
|
2568
|
-
right: 0;
|
|
2569
|
-
bottom: 0
|
|
2570
|
-
}
|
|
2571
|
-
|
|
2572
|
-
#page-list .page-item {
|
|
2573
|
-
z-index: 0;
|
|
2574
|
-
overflow: hidden;
|
|
2575
|
-
display: none;
|
|
2576
|
-
visibility: hidden;
|
|
2577
|
-
transform-style: preserve-3d;
|
|
2578
|
-
-webkit-backface-visibility: hidden;
|
|
2579
|
-
backface-visibility: hidden;
|
|
2580
|
-
transition-timing-function: cubic-bezier(.1,.57,.1,1)
|
|
2581
|
-
}
|
|
2582
|
-
|
|
2583
|
-
#page-list .page-item .count-down {
|
|
2584
|
-
display: none
|
|
2585
|
-
}
|
|
2586
|
-
|
|
2587
|
-
#page-list .page-item .has-ani {
|
|
2588
|
-
display: none!important
|
|
2589
|
-
}
|
|
2590
|
-
|
|
2591
|
-
#page-list .page-item .ele-effect,#page-list .page-item .page-bg {
|
|
2592
|
-
display: none
|
|
2593
|
-
}
|
|
2594
|
-
|
|
2595
|
-
#page-list .page-item .limit-ani .ani-wrap,#page-list .page-item .limit-ani .eles {
|
|
2596
|
-
animation: none!important
|
|
2597
|
-
}
|
|
2598
|
-
|
|
2599
|
-
#page-list .page-item .ani-pause .ani-wrap {
|
|
2600
|
-
animation-play-state: paused!important;
|
|
2601
|
-
-webkit-animation-play-state: paused!important
|
|
2602
|
-
}
|
|
2603
|
-
|
|
2604
|
-
#page-list .page-item .showAniEle .has-ani {
|
|
2605
|
-
display: block!important
|
|
2606
|
-
}
|
|
2607
|
-
|
|
2608
|
-
#page-list .page-item .showAniEle .page-bg {
|
|
2609
|
-
display: block
|
|
2610
|
-
}
|
|
2611
|
-
|
|
2612
|
-
#page-list .page-item .scroll-wrap {
|
|
2613
|
-
position: relative;
|
|
2614
|
-
width: 100%;
|
|
2615
|
-
overflow: hidden
|
|
2616
|
-
}
|
|
2617
|
-
|
|
2618
|
-
#page-list .page-item .amap-maps {
|
|
2619
|
-
display: none
|
|
2620
|
-
}
|
|
2621
|
-
|
|
2622
|
-
#page-list .page-item.current {
|
|
2623
|
-
z-index: 1;
|
|
2624
|
-
display: block;
|
|
2625
|
-
visibility: visible
|
|
2626
|
-
}
|
|
2627
|
-
|
|
2628
|
-
#page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
|
|
2629
|
-
display: block
|
|
2630
|
-
}
|
|
2631
|
-
|
|
2632
|
-
#page-list .page-item.current .page-wrap .eles {
|
|
2633
|
-
text-align: left
|
|
2634
|
-
}
|
|
2635
|
-
|
|
2636
|
-
#page-list .page-item.current .page-wrap .page-bg {
|
|
2637
|
-
display: block
|
|
2638
|
-
}
|
|
2639
|
-
|
|
2640
|
-
#page-list .page-item.current .page-wrap .has-ani {
|
|
2641
|
-
display: block!important
|
|
2642
|
-
}
|
|
2643
|
-
|
|
2644
|
-
#page-list .page-item.visibility {
|
|
2645
|
-
display: block;
|
|
2646
|
-
visibility: hidden
|
|
2647
|
-
}
|
|
2648
|
-
|
|
2649
|
-
#page-list .page-item.active {
|
|
2650
|
-
z-index: 2;
|
|
2651
|
-
visibility: visible
|
|
2652
|
-
}
|
|
2653
|
-
|
|
2654
|
-
#page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
|
|
2655
|
-
display: block
|
|
2656
|
-
}
|
|
2657
|
-
|
|
2658
|
-
#page-list .page-item .page-wrap {
|
|
2659
|
-
position: relative;
|
|
2660
|
-
width: 100%;
|
|
2661
|
-
height: 100%;
|
|
2662
|
-
overflow: hidden;
|
|
2663
|
-
z-index: 1
|
|
2664
|
-
}
|
|
2665
|
-
|
|
2666
|
-
#page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
|
|
2667
|
-
position: absolute;
|
|
2668
|
-
right: 0;
|
|
2669
|
-
left: 0;
|
|
2670
|
-
top: 0;
|
|
2671
|
-
bottom: 0;
|
|
2672
|
-
width: 100%;
|
|
2673
|
-
height: 100%;
|
|
2674
|
-
overflow: hidden
|
|
2675
|
-
}
|
|
2676
|
-
|
|
2677
|
-
#page-list .page-item .page-wrap .page-bg {
|
|
2678
|
-
background-size: cover;
|
|
2679
|
-
background-repeat: no-repeat;
|
|
2680
|
-
background-position: 50% 50%;
|
|
2681
|
-
z-index: 0
|
|
2682
|
-
}
|
|
2683
|
-
|
|
2684
|
-
#page-list .page-item .page-wrap .ele-wrap {
|
|
2685
|
-
z-index: 1
|
|
2686
|
-
}
|
|
2687
|
-
|
|
2688
|
-
#page-list .page-item .page-wrap .eles {
|
|
2689
|
-
position: absolute
|
|
2690
|
-
}
|
|
2691
|
-
|
|
2692
|
-
#page-list .tip-cover {
|
|
2693
|
-
position: fixed;
|
|
2694
|
-
left: 0;
|
|
2695
|
-
top: 0;
|
|
2696
|
-
width: 100%;
|
|
2697
|
-
height: 100%;
|
|
2698
|
-
display: -ms-flexbox;
|
|
2699
|
-
display: flex;
|
|
2700
|
-
-ms-flex-align: center;
|
|
2701
|
-
align-items: center;
|
|
2702
|
-
-ms-flex-pack: center;
|
|
2703
|
-
justify-content: center;
|
|
2704
|
-
z-index: 999;
|
|
2705
|
-
background-color: rgba(0,0,0,.7)
|
|
2706
|
-
}
|
|
2707
|
-
|
|
2708
|
-
#page-list .tip-cover .tip {
|
|
2709
|
-
width: 80%;
|
|
2710
|
-
max-width: 250px;
|
|
2711
|
-
padding: 10px;
|
|
2712
|
-
border-radius: 5px;
|
|
2713
|
-
background-color: #fff
|
|
2714
|
-
}
|
|
2715
|
-
|
|
2716
|
-
#page-list .tip-cover .tip-btn {
|
|
2717
|
-
display: block;
|
|
2718
|
-
margin: 25px auto;
|
|
2719
|
-
width: 120px;
|
|
2720
|
-
height: 30px;
|
|
2721
|
-
color: #fff;
|
|
2722
|
-
border-radius: 4px;
|
|
2723
|
-
text-align: center;
|
|
2724
|
-
font-size: 14px;
|
|
2725
|
-
line-height: 30px;
|
|
2726
|
-
background: #ed5566
|
|
2727
|
-
}
|
|
2728
|
-
|
|
2729
|
-
#page-list .tip-cover .tip-content {
|
|
2730
|
-
font-size: 14px;
|
|
2731
|
-
padding-top: 30px;
|
|
2732
|
-
}
|
|
2733
|
-
|
|
2734
|
-
.tip-cover {
|
|
2735
|
-
position: fixed;
|
|
2736
|
-
left: 0;
|
|
2737
|
-
top: 0;
|
|
2738
|
-
width: 100%;
|
|
2739
|
-
height: 100%;
|
|
2740
|
-
display: -ms-flexbox;
|
|
2741
|
-
display: flex;
|
|
2742
|
-
-ms-flex-align: center;
|
|
2743
|
-
align-items: center;
|
|
2744
|
-
-ms-flex-pack: center;
|
|
2745
|
-
justify-content: center;
|
|
2746
|
-
z-index: 999;
|
|
2747
|
-
background-color: rgba(0,0,0,.7)
|
|
2748
|
-
}
|
|
2749
|
-
|
|
2750
|
-
.tip-cover .tip {
|
|
2751
|
-
width: 80%;
|
|
2752
|
-
max-width: 250px;
|
|
2753
|
-
padding: 5px;
|
|
2754
|
-
border-radius: 3px;
|
|
2755
|
-
background-color: #fff
|
|
2756
|
-
}
|
|
2757
|
-
|
|
2758
|
-
.tip-cover .tip-btn {
|
|
2759
|
-
display: block;
|
|
2760
|
-
margin: 13px auto;
|
|
2761
|
-
width: 64px;
|
|
2762
|
-
height: 20px;
|
|
2763
|
-
color: #fff;
|
|
2764
|
-
border-radius: 4px;
|
|
2765
|
-
text-align: center;
|
|
2766
|
-
font-size: 14px;
|
|
2767
|
-
line-height: 20px;
|
|
2768
|
-
background: #ed5566;
|
|
2769
|
-
}
|
|
2770
|
-
.form-input {
|
|
2771
|
-
position: absolute;
|
|
2772
|
-
}
|
|
2773
|
-
|
|
2774
|
-
.input-wrapper {
|
|
2775
|
-
display: flex;
|
|
2776
|
-
align-items: center;
|
|
2777
|
-
width: 100%;
|
|
2778
|
-
height: 100%;
|
|
2779
|
-
padding: 0 10px;
|
|
2780
|
-
box-sizing: border-box;
|
|
2781
|
-
position: relative;
|
|
2782
|
-
transition: border-color 0.3s;
|
|
2783
|
-
}
|
|
2784
|
-
|
|
2785
|
-
.required-marker {
|
|
2786
|
-
font-size: 12px;
|
|
2787
|
-
padding: 0 5px 0 0;
|
|
2788
|
-
color: red;
|
|
2789
|
-
vertical-align: middle;
|
|
2790
|
-
}
|
|
2791
|
-
|
|
2792
|
-
input {
|
|
2793
|
-
flex: 1;
|
|
2794
|
-
border: none;
|
|
2795
|
-
outline: none;
|
|
2796
|
-
background: transparent;
|
|
2797
|
-
height: 100%;
|
|
2798
|
-
padding: 0;
|
|
2799
|
-
margin: 0;
|
|
2800
|
-
}
|
|
2801
|
-
/*
|
|
2802
|
-
input::placeholder {
|
|
2803
|
-
color: #ccc;
|
|
2804
|
-
opacity: 1;
|
|
2805
|
-
} */
|
|
2806
|
-
|
|
2807
|
-
.dynamic-placeholder-input::placeholder {
|
|
2808
|
-
color: var(--placeholder-color, #999);
|
|
2809
|
-
opacity: 1;
|
|
2810
|
-
}
|
|
2811
|
-
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
2812
|
-
color: var(--placeholder-color, #999);
|
|
2813
|
-
}
|
|
2814
|
-
.dynamic-placeholder-input::-moz-placeholder {
|
|
2815
|
-
color: var(--placeholder-color, #999);
|
|
2816
|
-
opacity: 1;
|
|
2817
|
-
}
|
|
2818
|
-
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
2819
|
-
color: var(--placeholder-color, #999);
|
|
2820
|
-
}/* Iconfont definition */
|
|
2821
|
-
.icon-danmuliebiao1:before {
|
|
2822
|
-
content: "\E68A";
|
|
2823
|
-
}
|
|
2824
|
-
|
|
2825
|
-
.icon-cuowu2:before {
|
|
2826
|
-
content: "\E65E";
|
|
2827
|
-
}
|
|
2828
|
-
|
|
2829
|
-
i {
|
|
2830
|
-
font-style: normal;
|
|
2831
|
-
}
|
|
2832
|
-
|
|
2833
|
-
.v-modal {
|
|
2834
|
-
position: fixed;
|
|
2835
|
-
left: 0;
|
|
2836
|
-
top: 0;
|
|
2837
|
-
width: 100%;
|
|
2838
|
-
height: 100%;
|
|
2839
|
-
opacity: .5;
|
|
2840
|
-
background: #000;
|
|
2841
|
-
}
|
|
2842
|
-
/* 底部工具栏样式 */
|
|
2843
|
-
#toolbarNew {
|
|
2844
|
-
position: fixed;
|
|
2845
|
-
left: 0;
|
|
2846
|
-
bottom: 0;
|
|
2847
|
-
width: 100%;
|
|
2848
|
-
padding: 12px 0;
|
|
2849
|
-
background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
|
|
2850
|
-
z-index: 100;
|
|
2851
|
-
}
|
|
2852
|
-
|
|
2853
|
-
.toolbar {
|
|
2854
|
-
display: flex;
|
|
2855
|
-
align-items: center;
|
|
2856
|
-
padding: 0 10px;
|
|
2857
|
-
}
|
|
2858
|
-
|
|
2859
|
-
.bar-left {
|
|
2860
|
-
position: relative;
|
|
2861
|
-
flex: 1;
|
|
2862
|
-
}
|
|
2863
|
-
|
|
2864
|
-
.bar-mess {
|
|
2865
|
-
width: 100%;
|
|
2866
|
-
height: 36px;
|
|
2867
|
-
line-height: 36px;
|
|
2868
|
-
font-size: 14px;
|
|
2869
|
-
color: #ccc;
|
|
2870
|
-
padding: 0 8px;
|
|
2871
|
-
border-radius: 18px;
|
|
2872
|
-
border: none;
|
|
2873
|
-
-webkit-appearance: none;
|
|
2874
|
-
background-color: rgba(0, 0, 0, 0.28);
|
|
2875
|
-
}
|
|
2876
|
-
|
|
2877
|
-
.bar-mess::placeholder {
|
|
2878
|
-
color: rgba(255, 255, 255, 0.7);
|
|
2879
|
-
}
|
|
2880
|
-
|
|
2881
|
-
.bar-left .iconfont {
|
|
2438
|
+
height: 36px;
|
|
2439
|
+
line-height: 36px;
|
|
2440
|
+
font-size: 14px;
|
|
2441
|
+
color: #ccc;
|
|
2442
|
+
padding: 0 8px;
|
|
2443
|
+
border-radius: 18px;
|
|
2444
|
+
border: none;
|
|
2445
|
+
-webkit-appearance: none;
|
|
2446
|
+
background-color: rgba(0, 0, 0, 0.28);
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
.bar-mess::placeholder {
|
|
2450
|
+
color: rgba(255, 255, 255, 0.7);
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
.bar-left .iconfont {
|
|
2882
2454
|
position: absolute;
|
|
2883
2455
|
right: 10px;
|
|
2884
2456
|
top: 50%;
|
|
@@ -3720,101 +3292,435 @@ font-style: normal;
|
|
|
3720
3292
|
100% { transform: rotate(360deg); }
|
|
3721
3293
|
}
|
|
3722
3294
|
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
.f-single {
|
|
3729
|
-
cursor: pointer;
|
|
3730
|
-
}
|
|
3295
|
+
.button {
|
|
3296
|
+
position: absolute;
|
|
3297
|
+
cursor: pointer;
|
|
3298
|
+
user-select: none;
|
|
3299
|
+
}
|
|
3731
3300
|
|
|
3732
|
-
|
|
3733
|
-
|
|
3301
|
+
.button .ani-wrap {
|
|
3302
|
+
display: flex;
|
|
3303
|
+
justify-content: center;
|
|
3304
|
+
align-items: center;
|
|
3305
|
+
width: 100%;
|
|
3306
|
+
height: 100%;
|
|
3307
|
+
overflow: hidden;
|
|
3308
|
+
transition: opacity 0.2s;
|
|
3309
|
+
}
|
|
3310
|
+
|
|
3311
|
+
.button .ani-wrap:hover {
|
|
3312
|
+
opacity: 0.9;
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3315
|
+
.button-content {
|
|
3316
|
+
display: flex;
|
|
3317
|
+
align-items: center;
|
|
3318
|
+
justify-content: center;
|
|
3319
|
+
}
|
|
3320
|
+
|
|
3321
|
+
.btn-text {
|
|
3322
|
+
margin-left: 10px;
|
|
3323
|
+
}.form-input {
|
|
3324
|
+
position: absolute;
|
|
3734
3325
|
}
|
|
3735
3326
|
|
|
3736
|
-
.
|
|
3327
|
+
.input-wrapper {
|
|
3737
3328
|
display: flex;
|
|
3738
|
-
padding: 0 5px;
|
|
3739
|
-
height: 40px;
|
|
3740
3329
|
align-items: center;
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3330
|
+
width: 100%;
|
|
3331
|
+
height: 100%;
|
|
3332
|
+
padding: 0 10px;
|
|
3333
|
+
box-sizing: border-box;
|
|
3334
|
+
position: relative;
|
|
3335
|
+
transition: border-color 0.3s;
|
|
3745
3336
|
}
|
|
3746
3337
|
|
|
3747
|
-
.
|
|
3338
|
+
.required-marker {
|
|
3339
|
+
font-size: 12px;
|
|
3748
3340
|
padding: 0 5px 0 0;
|
|
3749
3341
|
color: red;
|
|
3750
3342
|
vertical-align: middle;
|
|
3751
3343
|
}
|
|
3752
3344
|
|
|
3753
|
-
|
|
3754
|
-
|
|
3345
|
+
input {
|
|
3346
|
+
flex: 1;
|
|
3347
|
+
border: none;
|
|
3348
|
+
outline: none;
|
|
3349
|
+
background: transparent;
|
|
3350
|
+
height: 100%;
|
|
3351
|
+
padding: 0;
|
|
3755
3352
|
margin: 0;
|
|
3756
|
-
list-style: none;
|
|
3757
|
-
}
|
|
3758
|
-
|
|
3759
|
-
.f-single ul li {
|
|
3760
|
-
display: flex;
|
|
3761
|
-
align-items: center;
|
|
3762
|
-
margin-top: 12px;
|
|
3763
|
-
font-size: 0;
|
|
3764
3353
|
}
|
|
3354
|
+
/*
|
|
3355
|
+
input::placeholder {
|
|
3356
|
+
color: #ccc;
|
|
3357
|
+
opacity: 1;
|
|
3358
|
+
} */
|
|
3765
3359
|
|
|
3766
|
-
|
|
3767
|
-
|
|
3360
|
+
.dynamic-placeholder-input::placeholder {
|
|
3361
|
+
color: var(--placeholder-color, #999);
|
|
3362
|
+
opacity: 1;
|
|
3768
3363
|
}
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
display: inline-block;
|
|
3772
|
-
width: 16px;
|
|
3773
|
-
height: 16px;
|
|
3774
|
-
border-radius: 50%;
|
|
3775
|
-
position: relative;
|
|
3776
|
-
transition: all 0.2s;
|
|
3364
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
3365
|
+
color: var(--placeholder-color, #999);
|
|
3777
3366
|
}
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
border-color: #2687f1 !important;
|
|
3367
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
3368
|
+
color: var(--placeholder-color, #999);
|
|
3369
|
+
opacity: 1;
|
|
3782
3370
|
}
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3371
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
3372
|
+
color: var(--placeholder-color, #999);
|
|
3373
|
+
}.ele-effect {
|
|
3374
|
+
will-change: transform;
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3377
|
+
.ele-effect .effect-wrap {
|
|
3378
|
+
position: relative;
|
|
3379
|
+
width: 100%;
|
|
3380
|
+
height: 100%;
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
.particle {
|
|
3384
|
+
position: absolute;
|
|
3385
|
+
background-repeat: no-repeat;
|
|
3386
|
+
background-size: contain;
|
|
3387
|
+
animation-name: falling;
|
|
3388
|
+
animation-timing-function: linear;
|
|
3389
|
+
animation-iteration-count: infinite;
|
|
3390
|
+
will-change: transform;
|
|
3391
|
+
}
|
|
3392
|
+
|
|
3393
|
+
@keyframes falling {
|
|
3394
|
+
0% {
|
|
3395
|
+
transform: translateY(0) rotate(0deg);
|
|
3396
|
+
opacity: 1;
|
|
3793
3397
|
}
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
display: inline-block;
|
|
3797
|
-
width: calc(100% - 16px);
|
|
3798
|
-
padding-left: 8px;
|
|
3799
|
-
vertical-align: top;
|
|
3800
|
-
word-break: break-all;
|
|
3801
|
-
font-size: 14px;
|
|
3802
|
-
line-height: 1.2;
|
|
3398
|
+
80% {
|
|
3399
|
+
opacity: 0.8;
|
|
3803
3400
|
}
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3401
|
+
100% {
|
|
3402
|
+
transform: translateY(100vh) rotate(360deg);
|
|
3403
|
+
opacity: 0;
|
|
3807
3404
|
}
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
|
|
3813
|
-
|
|
3405
|
+
}
|
|
3406
|
+
.ele-lottie .ele-lotwrap {
|
|
3407
|
+
overflow: hidden
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3410
|
+
.ele-effect .effect-wrap {
|
|
3411
|
+
position: relative;
|
|
3412
|
+
overflow: hidden;
|
|
3814
3413
|
width: 100%;
|
|
3815
|
-
height: 100
|
|
3816
|
-
|
|
3817
|
-
|
|
3414
|
+
height: 100%
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3417
|
+
.ele-effect .e-small {
|
|
3418
|
+
position: absolute;
|
|
3419
|
+
width: 24px;
|
|
3420
|
+
height: 24px;
|
|
3421
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
3422
|
+
background-size: cover;
|
|
3423
|
+
background-repeat: no-repeat;
|
|
3424
|
+
-webkit-transform-origin: center;
|
|
3425
|
+
transform-origin: center;
|
|
3426
|
+
-webkit-animation: snow 5s linear infinite;
|
|
3427
|
+
animation: snow 5s linear infinite
|
|
3428
|
+
}
|
|
3429
|
+
body, html {
|
|
3430
|
+
width: 100%;
|
|
3431
|
+
height: 100%;
|
|
3432
|
+
}
|
|
3433
|
+
* {
|
|
3434
|
+
padding: 0;
|
|
3435
|
+
margin: 0;
|
|
3436
|
+
box-sizing: border-box;
|
|
3437
|
+
white-space: normal;
|
|
3438
|
+
word-break: break-all;
|
|
3439
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
3440
|
+
}
|
|
3441
|
+
|
|
3442
|
+
@font-face {
|
|
3443
|
+
font-family: iconfont;
|
|
3444
|
+
src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
|
|
3445
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
|
|
3446
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
.iconfont {
|
|
3450
|
+
font-family: "iconfont" !important;
|
|
3451
|
+
font-size: 16px;
|
|
3452
|
+
font-style: normal;
|
|
3453
|
+
-webkit-font-smoothing: antialiased;
|
|
3454
|
+
-moz-osx-font-smoothing: grayscale;
|
|
3455
|
+
}
|
|
3456
|
+
|
|
3457
|
+
|
|
3458
|
+
::-webkit-scrollbar {
|
|
3459
|
+
-webkit-appearance: none;
|
|
3460
|
+
width: 2px;
|
|
3461
|
+
height:2px;
|
|
3462
|
+
display:none;
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3465
|
+
::-webkit-scrollbar-button {
|
|
3466
|
+
display: none
|
|
3467
|
+
}
|
|
3468
|
+
|
|
3469
|
+
::-webkit-scrollbar-corner,::-webkit-scrollbar-track {
|
|
3470
|
+
background-color: transparent
|
|
3471
|
+
}
|
|
3472
|
+
|
|
3473
|
+
::-webkit-scrollbar-thumb {
|
|
3474
|
+
border-radius: 2px;
|
|
3475
|
+
background-color: rgba(0,0,0,.5)
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
|
|
3479
|
+
#index {
|
|
3480
|
+
position: relative;
|
|
3481
|
+
width: 100%;
|
|
3482
|
+
height: 100%;
|
|
3483
|
+
overflow: hidden;
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
#page-list {
|
|
3487
|
+
position: relative;
|
|
3488
|
+
width: 100%;
|
|
3489
|
+
height: 100%;
|
|
3490
|
+
max-width: 800px;
|
|
3491
|
+
margin: 0 auto;
|
|
3492
|
+
z-index: 1
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3495
|
+
#page-list.hardware .eles {
|
|
3496
|
+
will-change: transform
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3499
|
+
#page-list .bg-wrap {
|
|
3500
|
+
position: absolute;
|
|
3501
|
+
left: 0;
|
|
3502
|
+
top: 0;
|
|
3503
|
+
right: 0;
|
|
3504
|
+
bottom: 0;
|
|
3505
|
+
z-index: -1
|
|
3506
|
+
}
|
|
3507
|
+
|
|
3508
|
+
#page-list .ani-pause .ani-wrap {
|
|
3509
|
+
animation-play-state: paused!important;
|
|
3510
|
+
-webkit-animation-play-state: paused!important
|
|
3511
|
+
}
|
|
3512
|
+
|
|
3513
|
+
#page-list .audio-wrap {
|
|
3514
|
+
z-index: 10
|
|
3515
|
+
}
|
|
3516
|
+
|
|
3517
|
+
#page-list .audio-wrap,#page-list .page-item {
|
|
3518
|
+
position: absolute;
|
|
3519
|
+
left: 0;
|
|
3520
|
+
top: 0;
|
|
3521
|
+
right: 0;
|
|
3522
|
+
bottom: 0
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
#page-list .page-item {
|
|
3526
|
+
z-index: 0;
|
|
3527
|
+
overflow: hidden;
|
|
3528
|
+
display: none;
|
|
3529
|
+
visibility: hidden;
|
|
3530
|
+
transform-style: preserve-3d;
|
|
3531
|
+
-webkit-backface-visibility: hidden;
|
|
3532
|
+
backface-visibility: hidden;
|
|
3533
|
+
transition-timing-function: cubic-bezier(.1,.57,.1,1)
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
#page-list .page-item .count-down {
|
|
3537
|
+
display: none
|
|
3538
|
+
}
|
|
3539
|
+
|
|
3540
|
+
#page-list .page-item .has-ani {
|
|
3541
|
+
display: none!important
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
#page-list .page-item .ele-effect,#page-list .page-item .page-bg {
|
|
3545
|
+
display: none
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
#page-list .page-item .limit-ani .ani-wrap,#page-list .page-item .limit-ani .eles {
|
|
3549
|
+
animation: none!important
|
|
3550
|
+
}
|
|
3551
|
+
|
|
3552
|
+
#page-list .page-item .ani-pause .ani-wrap {
|
|
3553
|
+
animation-play-state: paused!important;
|
|
3554
|
+
-webkit-animation-play-state: paused!important
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3557
|
+
#page-list .page-item .showAniEle .has-ani {
|
|
3558
|
+
display: block!important
|
|
3559
|
+
}
|
|
3560
|
+
|
|
3561
|
+
#page-list .page-item .showAniEle .page-bg {
|
|
3562
|
+
display: block
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3565
|
+
#page-list .page-item .scroll-wrap {
|
|
3566
|
+
position: relative;
|
|
3567
|
+
width: 100%;
|
|
3568
|
+
overflow: hidden
|
|
3569
|
+
}
|
|
3570
|
+
|
|
3571
|
+
#page-list .page-item .amap-maps {
|
|
3572
|
+
display: none
|
|
3573
|
+
}
|
|
3574
|
+
|
|
3575
|
+
#page-list .page-item.current {
|
|
3576
|
+
z-index: 1;
|
|
3577
|
+
display: block;
|
|
3578
|
+
visibility: visible
|
|
3579
|
+
}
|
|
3580
|
+
|
|
3581
|
+
#page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
|
|
3582
|
+
display: block
|
|
3583
|
+
}
|
|
3584
|
+
|
|
3585
|
+
#page-list .page-item.current .page-wrap .eles {
|
|
3586
|
+
text-align: left
|
|
3587
|
+
}
|
|
3588
|
+
|
|
3589
|
+
#page-list .page-item.current .page-wrap .page-bg {
|
|
3590
|
+
display: block
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
#page-list .page-item.current .page-wrap .has-ani {
|
|
3594
|
+
display: block!important
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3597
|
+
#page-list .page-item.visibility {
|
|
3598
|
+
display: block;
|
|
3599
|
+
visibility: hidden
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
#page-list .page-item.active {
|
|
3603
|
+
z-index: 2;
|
|
3604
|
+
visibility: visible
|
|
3605
|
+
}
|
|
3606
|
+
|
|
3607
|
+
#page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
|
|
3608
|
+
display: block
|
|
3609
|
+
}
|
|
3610
|
+
|
|
3611
|
+
#page-list .page-item .page-wrap {
|
|
3612
|
+
position: relative;
|
|
3613
|
+
width: 100%;
|
|
3614
|
+
height: 100%;
|
|
3615
|
+
overflow: hidden;
|
|
3616
|
+
z-index: 1
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3619
|
+
#page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
|
|
3620
|
+
position: absolute;
|
|
3621
|
+
right: 0;
|
|
3622
|
+
left: 0;
|
|
3623
|
+
top: 0;
|
|
3624
|
+
bottom: 0;
|
|
3625
|
+
width: 100%;
|
|
3626
|
+
height: 100%;
|
|
3627
|
+
overflow: hidden
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3630
|
+
#page-list .page-item .page-wrap .page-bg {
|
|
3631
|
+
background-size: cover;
|
|
3632
|
+
background-repeat: no-repeat;
|
|
3633
|
+
background-position: 50% 50%;
|
|
3634
|
+
z-index: 0
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
#page-list .page-item .page-wrap .ele-wrap {
|
|
3638
|
+
z-index: 1
|
|
3639
|
+
}
|
|
3640
|
+
|
|
3641
|
+
#page-list .page-item .page-wrap .eles {
|
|
3642
|
+
position: absolute
|
|
3643
|
+
}
|
|
3644
|
+
|
|
3645
|
+
#page-list .tip-cover {
|
|
3646
|
+
position: fixed;
|
|
3647
|
+
left: 0;
|
|
3648
|
+
top: 0;
|
|
3649
|
+
width: 100%;
|
|
3650
|
+
height: 100%;
|
|
3651
|
+
display: -ms-flexbox;
|
|
3652
|
+
display: flex;
|
|
3653
|
+
-ms-flex-align: center;
|
|
3654
|
+
align-items: center;
|
|
3655
|
+
-ms-flex-pack: center;
|
|
3656
|
+
justify-content: center;
|
|
3657
|
+
z-index: 999;
|
|
3658
|
+
background-color: rgba(0,0,0,.7)
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3661
|
+
#page-list .tip-cover .tip {
|
|
3662
|
+
width: 80%;
|
|
3663
|
+
max-width: 250px;
|
|
3664
|
+
padding: 10px;
|
|
3665
|
+
border-radius: 5px;
|
|
3666
|
+
background-color: #fff
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
#page-list .tip-cover .tip-btn {
|
|
3670
|
+
display: block;
|
|
3671
|
+
margin: 25px auto;
|
|
3672
|
+
width: 120px;
|
|
3673
|
+
height: 30px;
|
|
3674
|
+
color: #fff;
|
|
3675
|
+
border-radius: 4px;
|
|
3676
|
+
text-align: center;
|
|
3677
|
+
font-size: 14px;
|
|
3678
|
+
line-height: 30px;
|
|
3679
|
+
background: #ed5566
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3682
|
+
#page-list .tip-cover .tip-content {
|
|
3683
|
+
font-size: 14px;
|
|
3684
|
+
padding-top: 30px;
|
|
3685
|
+
}
|
|
3686
|
+
|
|
3687
|
+
.tip-cover {
|
|
3688
|
+
position: fixed;
|
|
3689
|
+
left: 0;
|
|
3690
|
+
top: 0;
|
|
3691
|
+
width: 100%;
|
|
3692
|
+
height: 100%;
|
|
3693
|
+
display: -ms-flexbox;
|
|
3694
|
+
display: flex;
|
|
3695
|
+
-ms-flex-align: center;
|
|
3696
|
+
align-items: center;
|
|
3697
|
+
-ms-flex-pack: center;
|
|
3698
|
+
justify-content: center;
|
|
3699
|
+
z-index: 999;
|
|
3700
|
+
background-color: rgba(0,0,0,.7)
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
.tip-cover .tip {
|
|
3704
|
+
width: 80%;
|
|
3705
|
+
max-width: 250px;
|
|
3706
|
+
padding: 5px;
|
|
3707
|
+
border-radius: 3px;
|
|
3708
|
+
background-color: #fff
|
|
3709
|
+
}
|
|
3710
|
+
|
|
3711
|
+
.tip-cover .tip-btn {
|
|
3712
|
+
display: block;
|
|
3713
|
+
margin: 13px auto;
|
|
3714
|
+
width: 64px;
|
|
3715
|
+
height: 20px;
|
|
3716
|
+
color: #fff;
|
|
3717
|
+
border-radius: 4px;
|
|
3718
|
+
text-align: center;
|
|
3719
|
+
font-size: 14px;
|
|
3720
|
+
line-height: 20px;
|
|
3721
|
+
background: #ed5566;
|
|
3722
|
+
}
|
|
3723
|
+
/* .ele-form {
|
|
3818
3724
|
position: absolute;
|
|
3819
3725
|
user-select: none;
|
|
3820
3726
|
} */
|
|
@@ -4405,31 +4311,125 @@ font-style: normal;
|
|
|
4405
4311
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4406
4312
|
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
4407
4313
|
}
|
|
4408
|
-
|
|
4409
|
-
|
|
4314
|
+
/* .ele-form {
|
|
4315
|
+
position: absolute;
|
|
4316
|
+
user-select: none;
|
|
4317
|
+
}
|
|
4318
|
+
*/
|
|
4319
|
+
.f-single {
|
|
4320
|
+
cursor: pointer;
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
.ani-wrap {
|
|
4324
|
+
position: relative;
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
.f-single .ani-wrap .fs-tit {
|
|
4328
|
+
display: flex;
|
|
4329
|
+
padding: 0 5px;
|
|
4330
|
+
height: 40px;
|
|
4331
|
+
align-items: center;
|
|
4332
|
+
white-space: nowrap;
|
|
4333
|
+
overflow: hidden;
|
|
4334
|
+
text-overflow: ellipsis;
|
|
4335
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
4336
|
+
}
|
|
4337
|
+
|
|
4338
|
+
.require {
|
|
4339
|
+
padding: 0 5px 0 0;
|
|
4340
|
+
color: red;
|
|
4341
|
+
vertical-align: middle;
|
|
4342
|
+
}
|
|
4343
|
+
|
|
4344
|
+
.f-single ul {
|
|
4345
|
+
padding: 15px;
|
|
4346
|
+
margin: 0;
|
|
4347
|
+
list-style: none;
|
|
4348
|
+
}
|
|
4349
|
+
|
|
4350
|
+
.f-single ul li {
|
|
4351
|
+
display: flex;
|
|
4352
|
+
align-items: center;
|
|
4353
|
+
margin-top: 12px;
|
|
4354
|
+
font-size: 0;
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4357
|
+
.f-single ul li:first-child {
|
|
4358
|
+
margin-top: 0;
|
|
4359
|
+
}
|
|
4360
|
+
|
|
4361
|
+
.fs-circle {
|
|
4362
|
+
display: inline-block;
|
|
4363
|
+
width: 16px;
|
|
4364
|
+
height: 16px;
|
|
4365
|
+
border-radius: 50%;
|
|
4366
|
+
position: relative;
|
|
4367
|
+
transition: all 0.2s;
|
|
4368
|
+
}
|
|
4369
|
+
|
|
4370
|
+
.fs-circle.selected {
|
|
4371
|
+
background-color: #2687f1;
|
|
4372
|
+
border-color: #2687f1 !important;
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
.fs-circle.selected::after {
|
|
4376
|
+
content: "";
|
|
4377
|
+
position: absolute;
|
|
4378
|
+
top: 3px;
|
|
4379
|
+
left: 3px;
|
|
4380
|
+
width: 8px;
|
|
4381
|
+
height: 8px;
|
|
4382
|
+
border-radius: 50%;
|
|
4383
|
+
background-color: white;
|
|
4384
|
+
}
|
|
4385
|
+
|
|
4386
|
+
.fs-txt {
|
|
4387
|
+
display: inline-block;
|
|
4388
|
+
width: calc(100% - 16px);
|
|
4389
|
+
padding-left: 8px;
|
|
4390
|
+
vertical-align: top;
|
|
4391
|
+
word-break: break-all;
|
|
4392
|
+
font-size: 14px;
|
|
4393
|
+
line-height: 1.2;
|
|
4394
|
+
}
|
|
4395
|
+
|
|
4396
|
+
.has-error .fs-tit {
|
|
4397
|
+
border-bottom-color: #ff4d4f;
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
/* 错误提示样式 */
|
|
4401
|
+
.error-tip {
|
|
4402
|
+
position: fixed;
|
|
4403
|
+
left: 0;
|
|
4404
|
+
top: 0;
|
|
4405
|
+
width: 100%;
|
|
4406
|
+
height: 100%;
|
|
4407
|
+
z-index: 1000;
|
|
4408
|
+
}
|
|
4409
|
+
.global.receipt {
|
|
4410
4410
|
width: 35px;
|
|
4411
4411
|
height: 55px;
|
|
4412
4412
|
border-radius: 50%;
|
|
4413
4413
|
text-align: center;
|
|
4414
|
-
margin-bottom:
|
|
4414
|
+
margin-bottom: 5px;
|
|
4415
4415
|
border: 2px solid #fff;
|
|
4416
4416
|
cursor: pointer;
|
|
4417
4417
|
}
|
|
4418
|
-
.icon-
|
|
4418
|
+
.icon-liuyan:before { content: "\E636"; }
|
|
4419
4419
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4420
|
-
.global.
|
|
4421
|
-
.global.
|
|
4420
|
+
.global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
|
|
4421
|
+
.global.tel {
|
|
4422
4422
|
width: 35px;
|
|
4423
4423
|
height: 55px;
|
|
4424
4424
|
border-radius: 50%;
|
|
4425
4425
|
text-align: center;
|
|
4426
|
-
margin-bottom:
|
|
4426
|
+
margin-bottom: 15px;
|
|
4427
4427
|
border: 2px solid #fff;
|
|
4428
4428
|
cursor: pointer;
|
|
4429
4429
|
}
|
|
4430
|
-
.icon-
|
|
4430
|
+
.icon-dianhua:before { content: "\E60E"; }
|
|
4431
4431
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4432
|
-
.global.
|
|
4432
|
+
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4433
4433
|
.global.map {
|
|
4434
4434
|
width: 35px;
|
|
4435
4435
|
height: 55px;
|