unika-components 1.1.50 → 1.1.52
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.
|
@@ -72,7 +72,193 @@ cursor: not-allowed;
|
|
|
72
72
|
max-height: 100%;
|
|
73
73
|
width: 100%;
|
|
74
74
|
}
|
|
75
|
-
|
|
75
|
+
|
|
76
|
+
.ele-text {
|
|
77
|
+
position: relative;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.ele-text .ani-wrap {
|
|
81
|
+
width: 100%;
|
|
82
|
+
height: 100%;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.text-common {
|
|
86
|
+
padding: 5px;
|
|
87
|
+
text-orientation: upright;
|
|
88
|
+
white-space: pre-wrap;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* 文本动画类 */
|
|
92
|
+
.text-fadeIn {
|
|
93
|
+
animation: fadeIn 1s ease-in-out;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.text-slideIn {
|
|
97
|
+
animation: slideIn 1s ease-in-out;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.text-bounceIn {
|
|
101
|
+
animation: bounceIn 1s ease-in-out;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* 基础动画关键帧 */
|
|
105
|
+
@keyframes fadeIn {
|
|
106
|
+
from {
|
|
107
|
+
opacity: 0;
|
|
108
|
+
}
|
|
109
|
+
to {
|
|
110
|
+
opacity: 1;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
@keyframes slideIn {
|
|
115
|
+
from {
|
|
116
|
+
transform: translateY(20px);
|
|
117
|
+
opacity: 0;
|
|
118
|
+
}
|
|
119
|
+
to {
|
|
120
|
+
transform: translateY(0);
|
|
121
|
+
opacity: 1;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
@keyframes bounceIn {
|
|
126
|
+
0% {
|
|
127
|
+
transform: scale(0.3);
|
|
128
|
+
opacity: 0;
|
|
129
|
+
}
|
|
130
|
+
50% {
|
|
131
|
+
transform: scale(1.05);
|
|
132
|
+
opacity: 0.8;
|
|
133
|
+
}
|
|
134
|
+
70% {
|
|
135
|
+
transform: scale(0.9);
|
|
136
|
+
opacity: 0.9;
|
|
137
|
+
}
|
|
138
|
+
100% {
|
|
139
|
+
transform: scale(1);
|
|
140
|
+
opacity: 1;
|
|
141
|
+
}
|
|
142
|
+
}.ele-img {
|
|
143
|
+
position: absolute;
|
|
144
|
+
overflow: hidden;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.ele-img .ani-wrap {
|
|
148
|
+
width: 100%;
|
|
149
|
+
height: 100%;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.ele-img .ele-image {
|
|
153
|
+
position: relative;
|
|
154
|
+
display: block;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.ele-img .rotate-wrap {
|
|
158
|
+
position: absolute;
|
|
159
|
+
left: 0;
|
|
160
|
+
right: 0;
|
|
161
|
+
top: 0;
|
|
162
|
+
bottom: 0;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.ele-img .ele-img-bg,
|
|
166
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
167
|
+
width: 100%;
|
|
168
|
+
height: 100%;
|
|
169
|
+
overflow: hidden;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.ele-img .ele-bg-wrap {
|
|
173
|
+
width: 100%;
|
|
174
|
+
height: 100%;
|
|
175
|
+
background-size: cover;
|
|
176
|
+
background-position: 50% 50%;
|
|
177
|
+
background-repeat: no-repeat;
|
|
178
|
+
background-clip: border-box;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/* 动画关键帧 */
|
|
182
|
+
@keyframes zoomIn {
|
|
183
|
+
from {
|
|
184
|
+
opacity: 0;
|
|
185
|
+
transform: scale(0.5);
|
|
186
|
+
}
|
|
187
|
+
to {
|
|
188
|
+
opacity: 1;
|
|
189
|
+
transform: scale(1);
|
|
190
|
+
}
|
|
191
|
+
}#audio {
|
|
192
|
+
position: absolute;
|
|
193
|
+
right: 10px;
|
|
194
|
+
top: 10px;
|
|
195
|
+
z-index: 103;
|
|
196
|
+
width: 30px;
|
|
197
|
+
height: 30px;
|
|
198
|
+
display: flex;
|
|
199
|
+
align-items: center;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
#audio .mrotate {
|
|
203
|
+
animation: mrotate 5s linear infinite;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
@keyframes mrotate {
|
|
207
|
+
to {
|
|
208
|
+
transform: rotate(1turn);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
#audio .audio {
|
|
213
|
+
width: 100%;
|
|
214
|
+
height: 100%;
|
|
215
|
+
display: flex;
|
|
216
|
+
align-items: center;
|
|
217
|
+
justify-content: center;
|
|
218
|
+
color: #fff;
|
|
219
|
+
background: #666;
|
|
220
|
+
border-radius: 50%;
|
|
221
|
+
overflow: hidden;
|
|
222
|
+
cursor: pointer;
|
|
223
|
+
transition: all 0.3s ease;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
#audio .audio.a-border {
|
|
227
|
+
border: 1px solid #fff;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
#audio .audio .music-icon {
|
|
231
|
+
display: block;
|
|
232
|
+
width: 60%;
|
|
233
|
+
height: 60%;
|
|
234
|
+
object-fit: contain;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
#audio .audio .iconfont {
|
|
238
|
+
font-size: 2opx;
|
|
239
|
+
line-height: 1;
|
|
240
|
+
}
|
|
241
|
+
#audio .icon-cancel {
|
|
242
|
+
position: absolute;
|
|
243
|
+
width: 100%;
|
|
244
|
+
height: 100%;
|
|
245
|
+
border-radius: 50%;
|
|
246
|
+
overflow: hidden;
|
|
247
|
+
padding: 15px 0;
|
|
248
|
+
}
|
|
249
|
+
#audio .icon-cancel .icon-h {
|
|
250
|
+
transform: rotate(45deg);
|
|
251
|
+
width: 100%;
|
|
252
|
+
height: 2px;
|
|
253
|
+
background: #fff;
|
|
254
|
+
}
|
|
255
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
256
|
+
content: '';
|
|
257
|
+
position: absolute;
|
|
258
|
+
width: 100%;
|
|
259
|
+
height: 2px;
|
|
260
|
+
background: #fff;
|
|
261
|
+
}.count-down .drag-point {
|
|
76
262
|
cursor: default!important
|
|
77
263
|
}
|
|
78
264
|
|
|
@@ -265,267 +451,75 @@ cursor: not-allowed;
|
|
|
265
451
|
height: 100%;
|
|
266
452
|
background: rgba(0,0,0,0.05);
|
|
267
453
|
}
|
|
268
|
-
.
|
|
454
|
+
.element-video {
|
|
455
|
+
position: absolute;
|
|
456
|
+
overflow: hidden;
|
|
457
|
+
background-color: transparent;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.element-video .ani-wrap, .element-video img {
|
|
461
|
+
display: block;
|
|
462
|
+
width: 100%;
|
|
463
|
+
height: 100%;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.video-container {
|
|
467
|
+
width: 100%;
|
|
468
|
+
height: 100%;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.video-container iframe {
|
|
472
|
+
width: 100%;
|
|
473
|
+
height: 100%;
|
|
474
|
+
border: none;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.video-cover {
|
|
478
|
+
position: relative;
|
|
479
|
+
width: 100%;
|
|
480
|
+
height: 100%;
|
|
481
|
+
background-size: cover;
|
|
482
|
+
background-position: center;
|
|
483
|
+
cursor: pointer;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.video-cover .play-btn {
|
|
487
|
+
position: absolute;
|
|
488
|
+
left: 50%;
|
|
489
|
+
top: 50%;
|
|
490
|
+
transform: translate(-50%, -50%);
|
|
491
|
+
width: 50px;
|
|
492
|
+
height: 50px;
|
|
493
|
+
opacity: 0.8;
|
|
494
|
+
transition: opacity 0.2s;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.video-cover:hover .play-btn {
|
|
498
|
+
opacity: 1;
|
|
499
|
+
}
|
|
500
|
+
@keyframes jumpheart {
|
|
501
|
+
to {
|
|
502
|
+
-webkit-transform: scale(1.2);
|
|
503
|
+
transform: scale(1.2)
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
.ele-calendar {
|
|
269
507
|
position: relative;
|
|
508
|
+
width: 325px !important;
|
|
509
|
+
min-height: 325px !important;
|
|
510
|
+
height: auto !important;
|
|
270
511
|
}
|
|
271
512
|
|
|
272
|
-
.ele-
|
|
513
|
+
.ele-calendar .drag-point {
|
|
514
|
+
cursor: default !important;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.ele-calendar .ani-wrap {
|
|
518
|
+
position: relative;
|
|
273
519
|
width: 100%;
|
|
274
|
-
height:
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
.text-common {
|
|
278
|
-
padding: 5px;
|
|
279
|
-
text-orientation: upright;
|
|
280
|
-
white-space: pre-wrap;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
/* 文本动画类 */
|
|
284
|
-
.text-fadeIn {
|
|
285
|
-
animation: fadeIn 1s ease-in-out;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
.text-slideIn {
|
|
289
|
-
animation: slideIn 1s ease-in-out;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.text-bounceIn {
|
|
293
|
-
animation: bounceIn 1s ease-in-out;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
/* 基础动画关键帧 */
|
|
297
|
-
@keyframes fadeIn {
|
|
298
|
-
from {
|
|
299
|
-
opacity: 0;
|
|
300
|
-
}
|
|
301
|
-
to {
|
|
302
|
-
opacity: 1;
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
@keyframes slideIn {
|
|
307
|
-
from {
|
|
308
|
-
transform: translateY(20px);
|
|
309
|
-
opacity: 0;
|
|
310
|
-
}
|
|
311
|
-
to {
|
|
312
|
-
transform: translateY(0);
|
|
313
|
-
opacity: 1;
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
@keyframes bounceIn {
|
|
318
|
-
0% {
|
|
319
|
-
transform: scale(0.3);
|
|
320
|
-
opacity: 0;
|
|
321
|
-
}
|
|
322
|
-
50% {
|
|
323
|
-
transform: scale(1.05);
|
|
324
|
-
opacity: 0.8;
|
|
325
|
-
}
|
|
326
|
-
70% {
|
|
327
|
-
transform: scale(0.9);
|
|
328
|
-
opacity: 0.9;
|
|
329
|
-
}
|
|
330
|
-
100% {
|
|
331
|
-
transform: scale(1);
|
|
332
|
-
opacity: 1;
|
|
333
|
-
}
|
|
334
|
-
}.ele-effect {
|
|
335
|
-
will-change: transform;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.ele-effect .effect-wrap {
|
|
339
|
-
position: relative;
|
|
340
|
-
width: 100%;
|
|
341
|
-
height: 100%;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
.particle {
|
|
345
|
-
position: absolute;
|
|
346
|
-
background-repeat: no-repeat;
|
|
347
|
-
background-size: contain;
|
|
348
|
-
animation-name: falling;
|
|
349
|
-
animation-timing-function: linear;
|
|
350
|
-
animation-iteration-count: infinite;
|
|
351
|
-
will-change: transform;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
@keyframes falling {
|
|
355
|
-
0% {
|
|
356
|
-
transform: translateY(0) rotate(0deg);
|
|
357
|
-
opacity: 1;
|
|
358
|
-
}
|
|
359
|
-
80% {
|
|
360
|
-
opacity: 0.8;
|
|
361
|
-
}
|
|
362
|
-
100% {
|
|
363
|
-
transform: translateY(100vh) rotate(360deg);
|
|
364
|
-
opacity: 0;
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
.ele-lottie .ele-lotwrap {
|
|
368
|
-
overflow: hidden
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.ele-effect .effect-wrap {
|
|
372
|
-
position: relative;
|
|
373
|
-
overflow: hidden;
|
|
374
|
-
width: 100%;
|
|
375
|
-
height: 100%
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.ele-effect .e-small {
|
|
379
|
-
position: absolute;
|
|
380
|
-
width: 24px;
|
|
381
|
-
height: 24px;
|
|
382
|
-
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
383
|
-
background-size: cover;
|
|
384
|
-
background-repeat: no-repeat;
|
|
385
|
-
-webkit-transform-origin: center;
|
|
386
|
-
transform-origin: center;
|
|
387
|
-
-webkit-animation: snow 5s linear infinite;
|
|
388
|
-
animation: snow 5s linear infinite
|
|
389
|
-
}
|
|
390
|
-
.element-video {
|
|
391
|
-
position: absolute;
|
|
392
|
-
overflow: hidden;
|
|
393
|
-
background-color: transparent;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.element-video .ani-wrap, .element-video img {
|
|
397
|
-
display: block;
|
|
398
|
-
width: 100%;
|
|
399
|
-
height: 100%;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
.video-container {
|
|
403
|
-
width: 100%;
|
|
404
|
-
height: 100%;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
.video-container iframe {
|
|
408
|
-
width: 100%;
|
|
409
|
-
height: 100%;
|
|
410
|
-
border: none;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
.video-cover {
|
|
414
|
-
position: relative;
|
|
415
|
-
width: 100%;
|
|
416
|
-
height: 100%;
|
|
417
|
-
background-size: cover;
|
|
418
|
-
background-position: center;
|
|
419
|
-
cursor: pointer;
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
.video-cover .play-btn {
|
|
423
|
-
position: absolute;
|
|
424
|
-
left: 50%;
|
|
425
|
-
top: 50%;
|
|
426
|
-
transform: translate(-50%, -50%);
|
|
427
|
-
width: 50px;
|
|
428
|
-
height: 50px;
|
|
429
|
-
opacity: 0.8;
|
|
430
|
-
transition: opacity 0.2s;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.video-cover:hover .play-btn {
|
|
434
|
-
opacity: 1;
|
|
435
|
-
}#audio {
|
|
436
|
-
position: absolute;
|
|
437
|
-
right: 10px;
|
|
438
|
-
top: 10px;
|
|
439
|
-
z-index: 103;
|
|
440
|
-
width: 30px;
|
|
441
|
-
height: 30px;
|
|
442
|
-
display: flex;
|
|
443
|
-
align-items: center;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
#audio .mrotate {
|
|
447
|
-
animation: mrotate 5s linear infinite;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
@keyframes mrotate {
|
|
451
|
-
to {
|
|
452
|
-
transform: rotate(1turn);
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
#audio .audio {
|
|
457
|
-
width: 100%;
|
|
458
|
-
height: 100%;
|
|
459
|
-
display: flex;
|
|
460
|
-
align-items: center;
|
|
461
|
-
justify-content: center;
|
|
462
|
-
color: #fff;
|
|
463
|
-
background: #666;
|
|
464
|
-
border-radius: 50%;
|
|
465
|
-
overflow: hidden;
|
|
466
|
-
cursor: pointer;
|
|
467
|
-
transition: all 0.3s ease;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
#audio .audio.a-border {
|
|
471
|
-
border: 1px solid #fff;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
#audio .audio .music-icon {
|
|
475
|
-
display: block;
|
|
476
|
-
width: 60%;
|
|
477
|
-
height: 60%;
|
|
478
|
-
object-fit: contain;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
#audio .audio .iconfont {
|
|
482
|
-
font-size: 2opx;
|
|
483
|
-
line-height: 1;
|
|
484
|
-
}
|
|
485
|
-
#audio .icon-cancel {
|
|
486
|
-
position: absolute;
|
|
487
|
-
width: 100%;
|
|
488
|
-
height: 100%;
|
|
489
|
-
border-radius: 50%;
|
|
490
|
-
overflow: hidden;
|
|
491
|
-
padding: 15px 0;
|
|
492
|
-
}
|
|
493
|
-
#audio .icon-cancel .icon-h {
|
|
494
|
-
transform: rotate(45deg);
|
|
495
|
-
width: 100%;
|
|
496
|
-
height: 2px;
|
|
497
|
-
background: #fff;
|
|
498
|
-
}
|
|
499
|
-
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
500
|
-
content: '';
|
|
501
|
-
position: absolute;
|
|
502
|
-
width: 100%;
|
|
503
|
-
height: 2px;
|
|
504
|
-
background: #fff;
|
|
505
|
-
}
|
|
506
|
-
@keyframes jumpheart {
|
|
507
|
-
to {
|
|
508
|
-
-webkit-transform: scale(1.2);
|
|
509
|
-
transform: scale(1.2)
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
.ele-calendar {
|
|
513
|
-
position: relative;
|
|
514
|
-
width: 325px !important;
|
|
515
|
-
min-height: 325px !important;
|
|
516
|
-
height: auto !important;
|
|
517
|
-
}
|
|
518
|
-
|
|
519
|
-
.ele-calendar .drag-point {
|
|
520
|
-
cursor: default !important;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
.ele-calendar .ani-wrap {
|
|
524
|
-
position: relative;
|
|
525
|
-
width: 100%;
|
|
526
|
-
min-height: 325px !important;
|
|
527
|
-
height: auto !important;
|
|
528
|
-
padding: 22px 0;
|
|
520
|
+
min-height: 325px !important;
|
|
521
|
+
height: auto !important;
|
|
522
|
+
padding: 22px 0;
|
|
529
523
|
}
|
|
530
524
|
|
|
531
525
|
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
@@ -844,102 +838,7 @@ cursor: not-allowed;
|
|
|
844
838
|
}
|
|
845
839
|
.icon-xingzhuangjiehe:before {
|
|
846
840
|
content: "\E6A6";
|
|
847
|
-
}.
|
|
848
|
-
position: absolute;
|
|
849
|
-
cursor: pointer;
|
|
850
|
-
user-select: none;
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
.call .ani-wrap {
|
|
854
|
-
display: flex;
|
|
855
|
-
justify-content: center;
|
|
856
|
-
align-items: center;
|
|
857
|
-
width: 100%;
|
|
858
|
-
height: 100%;
|
|
859
|
-
overflow: hidden;
|
|
860
|
-
transition: opacity 0.2s;
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
.call .ani-wrap:hover {
|
|
864
|
-
opacity: 0.9;
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
.call-content {
|
|
868
|
-
display: flex;
|
|
869
|
-
align-items: center;
|
|
870
|
-
justify-content: center;
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
.btn-text {
|
|
874
|
-
margin-left: 10px;
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
/* 这里可以添加实际的电话图标样式 */
|
|
878
|
-
/* .iconfont.hb-tel {
|
|
879
|
-
display: inline-block;
|
|
880
|
-
width: 16px;
|
|
881
|
-
height: 16px;
|
|
882
|
-
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>');
|
|
883
|
-
background-repeat: no-repeat;
|
|
884
|
-
background-position: center;
|
|
885
|
-
background-size: contain;
|
|
886
|
-
} */
|
|
887
|
-
|
|
888
|
-
.hb-tel:before {
|
|
889
|
-
content: "\E642";
|
|
890
|
-
}.ele-img {
|
|
891
|
-
position: absolute;
|
|
892
|
-
overflow: hidden;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
.ele-img .ani-wrap {
|
|
896
|
-
width: 100%;
|
|
897
|
-
height: 100%;
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
.ele-img .ele-image {
|
|
901
|
-
position: relative;
|
|
902
|
-
display: block;
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
.ele-img .rotate-wrap {
|
|
906
|
-
position: absolute;
|
|
907
|
-
left: 0;
|
|
908
|
-
right: 0;
|
|
909
|
-
top: 0;
|
|
910
|
-
bottom: 0;
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
.ele-img .ele-img-bg,
|
|
914
|
-
.ele-img .rotate-wrap .img-wrap {
|
|
915
|
-
width: 100%;
|
|
916
|
-
height: 100%;
|
|
917
|
-
overflow: hidden;
|
|
918
|
-
}
|
|
919
|
-
|
|
920
|
-
.ele-img .ele-bg-wrap {
|
|
921
|
-
width: 100%;
|
|
922
|
-
height: 100%;
|
|
923
|
-
background-size: cover;
|
|
924
|
-
background-position: 50% 50%;
|
|
925
|
-
background-repeat: no-repeat;
|
|
926
|
-
background-clip: border-box;
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
/* 动画关键帧 */
|
|
930
|
-
@keyframes zoomIn {
|
|
931
|
-
from {
|
|
932
|
-
opacity: 0;
|
|
933
|
-
transform: scale(0.5);
|
|
934
|
-
}
|
|
935
|
-
to {
|
|
936
|
-
opacity: 1;
|
|
937
|
-
transform: scale(1);
|
|
938
|
-
}
|
|
939
|
-
}
|
|
940
|
-
.ele-lottie .ele-lotwrap {
|
|
941
|
-
overflow: hidden;
|
|
942
|
-
}.element-ditu .ani-wrap {
|
|
841
|
+
}.element-ditu .ani-wrap {
|
|
943
842
|
width: 100%;
|
|
944
843
|
height: 100%;
|
|
945
844
|
overflow: hidden
|
|
@@ -983,63 +882,71 @@ cursor: not-allowed;
|
|
|
983
882
|
.map-iframe {
|
|
984
883
|
width: 100%;
|
|
985
884
|
height: 100%;
|
|
986
|
-
}.
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
flex: 1;
|
|
1010
|
-
border: none;
|
|
1011
|
-
outline: none;
|
|
1012
|
-
background: transparent;
|
|
1013
|
-
height: 100%;
|
|
1014
|
-
padding: 0;
|
|
1015
|
-
margin: 0;
|
|
1016
|
-
}
|
|
1017
|
-
/*
|
|
1018
|
-
input::placeholder {
|
|
1019
|
-
color: #ccc;
|
|
1020
|
-
opacity: 1;
|
|
1021
|
-
} */
|
|
1022
|
-
|
|
1023
|
-
.dynamic-placeholder-input::placeholder {
|
|
1024
|
-
color: var(--placeholder-color, #999);
|
|
885
|
+
}.ele-effect {
|
|
886
|
+
will-change: transform;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
.ele-effect .effect-wrap {
|
|
890
|
+
position: relative;
|
|
891
|
+
width: 100%;
|
|
892
|
+
height: 100%;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.particle {
|
|
896
|
+
position: absolute;
|
|
897
|
+
background-repeat: no-repeat;
|
|
898
|
+
background-size: contain;
|
|
899
|
+
animation-name: falling;
|
|
900
|
+
animation-timing-function: linear;
|
|
901
|
+
animation-iteration-count: infinite;
|
|
902
|
+
will-change: transform;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
@keyframes falling {
|
|
906
|
+
0% {
|
|
907
|
+
transform: translateY(0) rotate(0deg);
|
|
1025
908
|
opacity: 1;
|
|
1026
909
|
}
|
|
1027
|
-
|
|
1028
|
-
|
|
910
|
+
80% {
|
|
911
|
+
opacity: 0.8;
|
|
1029
912
|
}
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
opacity:
|
|
913
|
+
100% {
|
|
914
|
+
transform: translateY(100vh) rotate(360deg);
|
|
915
|
+
opacity: 0;
|
|
1033
916
|
}
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
917
|
+
}
|
|
918
|
+
.ele-lottie .ele-lotwrap {
|
|
919
|
+
overflow: hidden
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.ele-effect .effect-wrap {
|
|
923
|
+
position: relative;
|
|
924
|
+
overflow: hidden;
|
|
925
|
+
width: 100%;
|
|
926
|
+
height: 100%
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.ele-effect .e-small {
|
|
930
|
+
position: absolute;
|
|
931
|
+
width: 24px;
|
|
932
|
+
height: 24px;
|
|
933
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
934
|
+
background-size: cover;
|
|
935
|
+
background-repeat: no-repeat;
|
|
936
|
+
-webkit-transform-origin: center;
|
|
937
|
+
transform-origin: center;
|
|
938
|
+
-webkit-animation: snow 5s linear infinite;
|
|
939
|
+
animation: snow 5s linear infinite
|
|
940
|
+
}
|
|
941
|
+
.ele-lottie .ele-lotwrap {
|
|
942
|
+
overflow: hidden;
|
|
943
|
+
}.call {
|
|
1037
944
|
position: absolute;
|
|
1038
945
|
cursor: pointer;
|
|
1039
946
|
user-select: none;
|
|
1040
947
|
}
|
|
1041
|
-
|
|
1042
|
-
.
|
|
948
|
+
|
|
949
|
+
.call .ani-wrap {
|
|
1043
950
|
display: flex;
|
|
1044
951
|
justify-content: center;
|
|
1045
952
|
align-items: center;
|
|
@@ -1048,12 +955,12 @@ cursor: not-allowed;
|
|
|
1048
955
|
overflow: hidden;
|
|
1049
956
|
transition: opacity 0.2s;
|
|
1050
957
|
}
|
|
1051
|
-
|
|
1052
|
-
.
|
|
958
|
+
|
|
959
|
+
.call .ani-wrap:hover {
|
|
1053
960
|
opacity: 0.9;
|
|
1054
961
|
}
|
|
1055
962
|
|
|
1056
|
-
.
|
|
963
|
+
.call-content {
|
|
1057
964
|
display: flex;
|
|
1058
965
|
align-items: center;
|
|
1059
966
|
justify-content: center;
|
|
@@ -1062,301 +969,21 @@ cursor: not-allowed;
|
|
|
1062
969
|
.btn-text {
|
|
1063
970
|
margin-left: 10px;
|
|
1064
971
|
}
|
|
1065
|
-
body, html {
|
|
1066
|
-
width: 100%;
|
|
1067
|
-
height: 100%;
|
|
1068
|
-
}
|
|
1069
|
-
* {
|
|
1070
|
-
padding: 0;
|
|
1071
|
-
margin: 0;
|
|
1072
|
-
box-sizing: border-box;
|
|
1073
|
-
white-space: normal;
|
|
1074
|
-
word-break: break-all;
|
|
1075
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
@font-face {
|
|
1079
|
-
font-family: iconfont;
|
|
1080
|
-
src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
|
|
1081
|
-
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
|
|
1082
|
-
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
|
|
1083
|
-
}
|
|
1084
|
-
|
|
1085
|
-
.iconfont {
|
|
1086
|
-
font-family: "iconfont" !important;
|
|
1087
|
-
font-size: 16px;
|
|
1088
|
-
font-style: normal;
|
|
1089
|
-
-webkit-font-smoothing: antialiased;
|
|
1090
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1091
|
-
}
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
::-webkit-scrollbar {
|
|
1095
|
-
-webkit-appearance: none;
|
|
1096
|
-
width: 2px;
|
|
1097
|
-
height:2px;
|
|
1098
|
-
display:none;
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
::-webkit-scrollbar-button {
|
|
1102
|
-
display: none
|
|
1103
|
-
}
|
|
1104
972
|
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
973
|
+
/* 这里可以添加实际的电话图标样式 */
|
|
974
|
+
/* .iconfont.hb-tel {
|
|
975
|
+
display: inline-block;
|
|
976
|
+
width: 16px;
|
|
977
|
+
height: 16px;
|
|
978
|
+
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>');
|
|
979
|
+
background-repeat: no-repeat;
|
|
980
|
+
background-position: center;
|
|
981
|
+
background-size: contain;
|
|
982
|
+
} */
|
|
1108
983
|
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
#index {
|
|
1116
|
-
position: relative;
|
|
1117
|
-
width: 100%;
|
|
1118
|
-
height: 100%;
|
|
1119
|
-
overflow: hidden;
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
#page-list {
|
|
1123
|
-
position: relative;
|
|
1124
|
-
width: 100%;
|
|
1125
|
-
height: 100%;
|
|
1126
|
-
max-width: 800px;
|
|
1127
|
-
margin: 0 auto;
|
|
1128
|
-
z-index: 1
|
|
1129
|
-
}
|
|
1130
|
-
|
|
1131
|
-
#page-list.hardware .eles {
|
|
1132
|
-
will-change: transform
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
|
-
#page-list .bg-wrap {
|
|
1136
|
-
position: absolute;
|
|
1137
|
-
left: 0;
|
|
1138
|
-
top: 0;
|
|
1139
|
-
right: 0;
|
|
1140
|
-
bottom: 0;
|
|
1141
|
-
z-index: -1
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
#page-list .ani-pause .ani-wrap {
|
|
1145
|
-
animation-play-state: paused!important;
|
|
1146
|
-
-webkit-animation-play-state: paused!important
|
|
1147
|
-
}
|
|
1148
|
-
|
|
1149
|
-
#page-list .audio-wrap {
|
|
1150
|
-
z-index: 10
|
|
1151
|
-
}
|
|
1152
|
-
|
|
1153
|
-
#page-list .audio-wrap,#page-list .page-item {
|
|
1154
|
-
position: absolute;
|
|
1155
|
-
left: 0;
|
|
1156
|
-
top: 0;
|
|
1157
|
-
right: 0;
|
|
1158
|
-
bottom: 0
|
|
1159
|
-
}
|
|
1160
|
-
|
|
1161
|
-
#page-list .page-item {
|
|
1162
|
-
z-index: 0;
|
|
1163
|
-
overflow: hidden;
|
|
1164
|
-
display: none;
|
|
1165
|
-
visibility: hidden;
|
|
1166
|
-
transform-style: preserve-3d;
|
|
1167
|
-
-webkit-backface-visibility: hidden;
|
|
1168
|
-
backface-visibility: hidden;
|
|
1169
|
-
transition-timing-function: cubic-bezier(.1,.57,.1,1)
|
|
1170
|
-
}
|
|
1171
|
-
|
|
1172
|
-
#page-list .page-item .count-down {
|
|
1173
|
-
display: none
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
#page-list .page-item .has-ani {
|
|
1177
|
-
display: none!important
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
#page-list .page-item .ele-effect,#page-list .page-item .page-bg {
|
|
1181
|
-
display: none
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
#page-list .page-item .limit-ani .ani-wrap,#page-list .page-item .limit-ani .eles {
|
|
1185
|
-
animation: none!important
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
#page-list .page-item .ani-pause .ani-wrap {
|
|
1189
|
-
animation-play-state: paused!important;
|
|
1190
|
-
-webkit-animation-play-state: paused!important
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
#page-list .page-item .showAniEle .has-ani {
|
|
1194
|
-
display: block!important
|
|
1195
|
-
}
|
|
1196
|
-
|
|
1197
|
-
#page-list .page-item .showAniEle .page-bg {
|
|
1198
|
-
display: block
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
#page-list .page-item .scroll-wrap {
|
|
1202
|
-
position: relative;
|
|
1203
|
-
width: 100%;
|
|
1204
|
-
overflow: hidden
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
#page-list .page-item .amap-maps {
|
|
1208
|
-
display: none
|
|
1209
|
-
}
|
|
1210
|
-
|
|
1211
|
-
#page-list .page-item.current {
|
|
1212
|
-
z-index: 1;
|
|
1213
|
-
display: block;
|
|
1214
|
-
visibility: visible
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
#page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
|
|
1218
|
-
display: block
|
|
1219
|
-
}
|
|
1220
|
-
|
|
1221
|
-
#page-list .page-item.current .page-wrap .eles {
|
|
1222
|
-
text-align: left
|
|
1223
|
-
}
|
|
1224
|
-
|
|
1225
|
-
#page-list .page-item.current .page-wrap .page-bg {
|
|
1226
|
-
display: block
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
|
-
#page-list .page-item.current .page-wrap .has-ani {
|
|
1230
|
-
display: block!important
|
|
1231
|
-
}
|
|
1232
|
-
|
|
1233
|
-
#page-list .page-item.visibility {
|
|
1234
|
-
display: block;
|
|
1235
|
-
visibility: hidden
|
|
1236
|
-
}
|
|
1237
|
-
|
|
1238
|
-
#page-list .page-item.active {
|
|
1239
|
-
z-index: 2;
|
|
1240
|
-
visibility: visible
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
|
-
#page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
|
|
1244
|
-
display: block
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
#page-list .page-item .page-wrap {
|
|
1248
|
-
position: relative;
|
|
1249
|
-
width: 100%;
|
|
1250
|
-
height: 100%;
|
|
1251
|
-
overflow: hidden;
|
|
1252
|
-
z-index: 1
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
#page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
|
|
1256
|
-
position: absolute;
|
|
1257
|
-
right: 0;
|
|
1258
|
-
left: 0;
|
|
1259
|
-
top: 0;
|
|
1260
|
-
bottom: 0;
|
|
1261
|
-
width: 100%;
|
|
1262
|
-
height: 100%;
|
|
1263
|
-
overflow: hidden
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
#page-list .page-item .page-wrap .page-bg {
|
|
1267
|
-
background-size: cover;
|
|
1268
|
-
background-repeat: no-repeat;
|
|
1269
|
-
background-position: 50% 50%;
|
|
1270
|
-
z-index: 0
|
|
1271
|
-
}
|
|
1272
|
-
|
|
1273
|
-
#page-list .page-item .page-wrap .ele-wrap {
|
|
1274
|
-
z-index: 1
|
|
1275
|
-
}
|
|
1276
|
-
|
|
1277
|
-
#page-list .page-item .page-wrap .eles {
|
|
1278
|
-
position: absolute
|
|
1279
|
-
}
|
|
1280
|
-
|
|
1281
|
-
#page-list .tip-cover {
|
|
1282
|
-
position: fixed;
|
|
1283
|
-
left: 0;
|
|
1284
|
-
top: 0;
|
|
1285
|
-
width: 100%;
|
|
1286
|
-
height: 100%;
|
|
1287
|
-
display: -ms-flexbox;
|
|
1288
|
-
display: flex;
|
|
1289
|
-
-ms-flex-align: center;
|
|
1290
|
-
align-items: center;
|
|
1291
|
-
-ms-flex-pack: center;
|
|
1292
|
-
justify-content: center;
|
|
1293
|
-
z-index: 999;
|
|
1294
|
-
background-color: rgba(0,0,0,.7)
|
|
1295
|
-
}
|
|
1296
|
-
|
|
1297
|
-
#page-list .tip-cover .tip {
|
|
1298
|
-
width: 80%;
|
|
1299
|
-
max-width: 250px;
|
|
1300
|
-
padding: 10px;
|
|
1301
|
-
border-radius: 5px;
|
|
1302
|
-
background-color: #fff
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
#page-list .tip-cover .tip-btn {
|
|
1306
|
-
display: block;
|
|
1307
|
-
margin: 25px auto;
|
|
1308
|
-
width: 120px;
|
|
1309
|
-
height: 30px;
|
|
1310
|
-
color: #fff;
|
|
1311
|
-
border-radius: 4px;
|
|
1312
|
-
text-align: center;
|
|
1313
|
-
font-size: 14px;
|
|
1314
|
-
line-height: 30px;
|
|
1315
|
-
background: #ed5566
|
|
1316
|
-
}
|
|
1317
|
-
|
|
1318
|
-
#page-list .tip-cover .tip-content {
|
|
1319
|
-
font-size: 14px;
|
|
1320
|
-
padding-top: 30px;
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
|
-
.tip-cover {
|
|
1324
|
-
position: fixed;
|
|
1325
|
-
left: 0;
|
|
1326
|
-
top: 0;
|
|
1327
|
-
width: 100%;
|
|
1328
|
-
height: 100%;
|
|
1329
|
-
display: -ms-flexbox;
|
|
1330
|
-
display: flex;
|
|
1331
|
-
-ms-flex-align: center;
|
|
1332
|
-
align-items: center;
|
|
1333
|
-
-ms-flex-pack: center;
|
|
1334
|
-
justify-content: center;
|
|
1335
|
-
z-index: 999;
|
|
1336
|
-
background-color: rgba(0,0,0,.7)
|
|
1337
|
-
}
|
|
1338
|
-
|
|
1339
|
-
.tip-cover .tip {
|
|
1340
|
-
width: 80%;
|
|
1341
|
-
max-width: 250px;
|
|
1342
|
-
padding: 5px;
|
|
1343
|
-
border-radius: 3px;
|
|
1344
|
-
background-color: #fff
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
.tip-cover .tip-btn {
|
|
1348
|
-
display: block;
|
|
1349
|
-
margin: 13px auto;
|
|
1350
|
-
width: 64px;
|
|
1351
|
-
height: 20px;
|
|
1352
|
-
color: #fff;
|
|
1353
|
-
border-radius: 4px;
|
|
1354
|
-
text-align: center;
|
|
1355
|
-
font-size: 14px;
|
|
1356
|
-
line-height: 20px;
|
|
1357
|
-
background: #ed5566;
|
|
1358
|
-
}
|
|
1359
|
-
/* Iconfont definition */
|
|
984
|
+
.hb-tel:before {
|
|
985
|
+
content: "\E642";
|
|
986
|
+
}/* Iconfont definition */
|
|
1360
987
|
.icon-danmuliebiao1:before {
|
|
1361
988
|
content: "\E68A";
|
|
1362
989
|
}
|
|
@@ -2259,101 +1886,302 @@ font-style: normal;
|
|
|
2259
1886
|
100% { transform: rotate(360deg); }
|
|
2260
1887
|
}
|
|
2261
1888
|
|
|
2262
|
-
.ele-form {
|
|
2263
|
-
position: absolute;
|
|
2264
|
-
user-select: none;
|
|
2265
|
-
}
|
|
2266
|
-
|
|
2267
|
-
.f-single {
|
|
2268
|
-
cursor: pointer;
|
|
2269
|
-
}
|
|
2270
1889
|
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
.
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
1890
|
+
body, html {
|
|
1891
|
+
width: 100%;
|
|
1892
|
+
height: 100%;
|
|
1893
|
+
}
|
|
1894
|
+
* {
|
|
1895
|
+
padding: 0;
|
|
1896
|
+
margin: 0;
|
|
1897
|
+
box-sizing: border-box;
|
|
1898
|
+
white-space: normal;
|
|
1899
|
+
word-break: break-all;
|
|
1900
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
@font-face {
|
|
1904
|
+
font-family: iconfont;
|
|
1905
|
+
src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
|
|
1906
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
|
|
1907
|
+
url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
.iconfont {
|
|
1911
|
+
font-family: "iconfont" !important;
|
|
1912
|
+
font-size: 16px;
|
|
1913
|
+
font-style: normal;
|
|
1914
|
+
-webkit-font-smoothing: antialiased;
|
|
1915
|
+
-moz-osx-font-smoothing: grayscale;
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
|
|
1919
|
+
::-webkit-scrollbar {
|
|
1920
|
+
-webkit-appearance: none;
|
|
1921
|
+
width: 2px;
|
|
1922
|
+
height:2px;
|
|
1923
|
+
display:none;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
::-webkit-scrollbar-button {
|
|
1927
|
+
display: none
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
::-webkit-scrollbar-corner,::-webkit-scrollbar-track {
|
|
1931
|
+
background-color: transparent
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
::-webkit-scrollbar-thumb {
|
|
1935
|
+
border-radius: 2px;
|
|
1936
|
+
background-color: rgba(0,0,0,.5)
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
|
|
1940
|
+
#index {
|
|
1941
|
+
position: relative;
|
|
1942
|
+
width: 100%;
|
|
1943
|
+
height: 100%;
|
|
1944
|
+
overflow: hidden;
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
#page-list {
|
|
1948
|
+
position: relative;
|
|
1949
|
+
width: 100%;
|
|
1950
|
+
height: 100%;
|
|
1951
|
+
max-width: 800px;
|
|
1952
|
+
margin: 0 auto;
|
|
1953
|
+
z-index: 1
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
#page-list.hardware .eles {
|
|
1957
|
+
will-change: transform
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
#page-list .bg-wrap {
|
|
1961
|
+
position: absolute;
|
|
1962
|
+
left: 0;
|
|
1963
|
+
top: 0;
|
|
1964
|
+
right: 0;
|
|
1965
|
+
bottom: 0;
|
|
1966
|
+
z-index: -1
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
#page-list .ani-pause .ani-wrap {
|
|
1970
|
+
animation-play-state: paused!important;
|
|
1971
|
+
-webkit-animation-play-state: paused!important
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
#page-list .audio-wrap {
|
|
1975
|
+
z-index: 10
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
#page-list .audio-wrap,#page-list .page-item {
|
|
1979
|
+
position: absolute;
|
|
1980
|
+
left: 0;
|
|
1981
|
+
top: 0;
|
|
1982
|
+
right: 0;
|
|
1983
|
+
bottom: 0
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
#page-list .page-item {
|
|
1987
|
+
z-index: 0;
|
|
1988
|
+
overflow: hidden;
|
|
1989
|
+
display: none;
|
|
1990
|
+
visibility: hidden;
|
|
1991
|
+
transform-style: preserve-3d;
|
|
1992
|
+
-webkit-backface-visibility: hidden;
|
|
1993
|
+
backface-visibility: hidden;
|
|
1994
|
+
transition-timing-function: cubic-bezier(.1,.57,.1,1)
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
#page-list .page-item .count-down {
|
|
1998
|
+
display: none
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
#page-list .page-item .has-ani {
|
|
2002
|
+
display: none!important
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
#page-list .page-item .ele-effect,#page-list .page-item .page-bg {
|
|
2006
|
+
display: none
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
#page-list .page-item .limit-ani .ani-wrap,#page-list .page-item .limit-ani .eles {
|
|
2010
|
+
animation: none!important
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
#page-list .page-item .ani-pause .ani-wrap {
|
|
2014
|
+
animation-play-state: paused!important;
|
|
2015
|
+
-webkit-animation-play-state: paused!important
|
|
2016
|
+
}
|
|
2017
|
+
|
|
2018
|
+
#page-list .page-item .showAniEle .has-ani {
|
|
2019
|
+
display: block!important
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
#page-list .page-item .showAniEle .page-bg {
|
|
2023
|
+
display: block
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
#page-list .page-item .scroll-wrap {
|
|
2027
|
+
position: relative;
|
|
2028
|
+
width: 100%;
|
|
2029
|
+
overflow: hidden
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
#page-list .page-item .amap-maps {
|
|
2033
|
+
display: none
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
#page-list .page-item.current {
|
|
2037
|
+
z-index: 1;
|
|
2038
|
+
display: block;
|
|
2039
|
+
visibility: visible
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
#page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
|
|
2043
|
+
display: block
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
#page-list .page-item.current .page-wrap .eles {
|
|
2047
|
+
text-align: left
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
#page-list .page-item.current .page-wrap .page-bg {
|
|
2051
|
+
display: block
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
#page-list .page-item.current .page-wrap .has-ani {
|
|
2055
|
+
display: block!important
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
#page-list .page-item.visibility {
|
|
2059
|
+
display: block;
|
|
2060
|
+
visibility: hidden
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2063
|
+
#page-list .page-item.active {
|
|
2064
|
+
z-index: 2;
|
|
2065
|
+
visibility: visible
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
#page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
|
|
2069
|
+
display: block
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
#page-list .page-item .page-wrap {
|
|
2073
|
+
position: relative;
|
|
2074
|
+
width: 100%;
|
|
2075
|
+
height: 100%;
|
|
2076
|
+
overflow: hidden;
|
|
2077
|
+
z-index: 1
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
#page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
|
|
2081
|
+
position: absolute;
|
|
2082
|
+
right: 0;
|
|
2083
|
+
left: 0;
|
|
2084
|
+
top: 0;
|
|
2085
|
+
bottom: 0;
|
|
2086
|
+
width: 100%;
|
|
2087
|
+
height: 100%;
|
|
2088
|
+
overflow: hidden
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
#page-list .page-item .page-wrap .page-bg {
|
|
2092
|
+
background-size: cover;
|
|
2093
|
+
background-repeat: no-repeat;
|
|
2094
|
+
background-position: 50% 50%;
|
|
2095
|
+
z-index: 0
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
#page-list .page-item .page-wrap .ele-wrap {
|
|
2099
|
+
z-index: 1
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
#page-list .page-item .page-wrap .eles {
|
|
2103
|
+
position: absolute
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
#page-list .tip-cover {
|
|
2107
|
+
position: fixed;
|
|
2108
|
+
left: 0;
|
|
2109
|
+
top: 0;
|
|
2110
|
+
width: 100%;
|
|
2111
|
+
height: 100%;
|
|
2112
|
+
display: -ms-flexbox;
|
|
2113
|
+
display: flex;
|
|
2114
|
+
-ms-flex-align: center;
|
|
2115
|
+
align-items: center;
|
|
2116
|
+
-ms-flex-pack: center;
|
|
2117
|
+
justify-content: center;
|
|
2118
|
+
z-index: 999;
|
|
2119
|
+
background-color: rgba(0,0,0,.7)
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2122
|
+
#page-list .tip-cover .tip {
|
|
2123
|
+
width: 80%;
|
|
2124
|
+
max-width: 250px;
|
|
2125
|
+
padding: 10px;
|
|
2126
|
+
border-radius: 5px;
|
|
2127
|
+
background-color: #fff
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
#page-list .tip-cover .tip-btn {
|
|
2131
|
+
display: block;
|
|
2132
|
+
margin: 25px auto;
|
|
2133
|
+
width: 120px;
|
|
2134
|
+
height: 30px;
|
|
2135
|
+
color: #fff;
|
|
2136
|
+
border-radius: 4px;
|
|
2137
|
+
text-align: center;
|
|
2138
|
+
font-size: 14px;
|
|
2139
|
+
line-height: 30px;
|
|
2140
|
+
background: #ed5566
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
#page-list .tip-cover .tip-content {
|
|
2144
|
+
font-size: 14px;
|
|
2145
|
+
padding-top: 30px;
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2148
|
+
.tip-cover {
|
|
2149
|
+
position: fixed;
|
|
2150
|
+
left: 0;
|
|
2151
|
+
top: 0;
|
|
2152
|
+
width: 100%;
|
|
2153
|
+
height: 100%;
|
|
2154
|
+
display: -ms-flexbox;
|
|
2155
|
+
display: flex;
|
|
2156
|
+
-ms-flex-align: center;
|
|
2157
|
+
align-items: center;
|
|
2158
|
+
-ms-flex-pack: center;
|
|
2159
|
+
justify-content: center;
|
|
2160
|
+
z-index: 999;
|
|
2161
|
+
background-color: rgba(0,0,0,.7)
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
.tip-cover .tip {
|
|
2165
|
+
width: 80%;
|
|
2166
|
+
max-width: 250px;
|
|
2167
|
+
padding: 5px;
|
|
2168
|
+
border-radius: 3px;
|
|
2169
|
+
background-color: #fff
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
.tip-cover .tip-btn {
|
|
2173
|
+
display: block;
|
|
2174
|
+
margin: 13px auto;
|
|
2175
|
+
width: 64px;
|
|
2176
|
+
height: 20px;
|
|
2177
|
+
color: #fff;
|
|
2178
|
+
border-radius: 4px;
|
|
2179
|
+
text-align: center;
|
|
2180
|
+
font-size: 14px;
|
|
2181
|
+
line-height: 20px;
|
|
2182
|
+
background: #ed5566;
|
|
2183
|
+
}
|
|
2184
|
+
/* body.interaction-locked {
|
|
2357
2185
|
overflow: hidden !important;
|
|
2358
2186
|
position: relative !important;
|
|
2359
2187
|
height: 100% !important;
|
|
@@ -3927,6 +3755,84 @@ to {
|
|
|
3927
3755
|
width: 100%;
|
|
3928
3756
|
height: 100%;
|
|
3929
3757
|
z-index: 1000;
|
|
3758
|
+
}.button {
|
|
3759
|
+
position: absolute;
|
|
3760
|
+
cursor: pointer;
|
|
3761
|
+
user-select: none;
|
|
3762
|
+
}
|
|
3763
|
+
|
|
3764
|
+
.button .ani-wrap {
|
|
3765
|
+
display: flex;
|
|
3766
|
+
justify-content: center;
|
|
3767
|
+
align-items: center;
|
|
3768
|
+
width: 100%;
|
|
3769
|
+
height: 100%;
|
|
3770
|
+
overflow: hidden;
|
|
3771
|
+
transition: opacity 0.2s;
|
|
3772
|
+
}
|
|
3773
|
+
|
|
3774
|
+
.button .ani-wrap:hover {
|
|
3775
|
+
opacity: 0.9;
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3778
|
+
.button-content {
|
|
3779
|
+
display: flex;
|
|
3780
|
+
align-items: center;
|
|
3781
|
+
justify-content: center;
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3784
|
+
.btn-text {
|
|
3785
|
+
margin-left: 10px;
|
|
3786
|
+
}.form-input {
|
|
3787
|
+
position: absolute;
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3790
|
+
.input-wrapper {
|
|
3791
|
+
display: flex;
|
|
3792
|
+
align-items: center;
|
|
3793
|
+
width: 100%;
|
|
3794
|
+
height: 100%;
|
|
3795
|
+
padding: 0 10px;
|
|
3796
|
+
box-sizing: border-box;
|
|
3797
|
+
position: relative;
|
|
3798
|
+
transition: border-color 0.3s;
|
|
3799
|
+
}
|
|
3800
|
+
|
|
3801
|
+
.required-marker {
|
|
3802
|
+
font-size: 12px;
|
|
3803
|
+
padding: 0 5px 0 0;
|
|
3804
|
+
color: red;
|
|
3805
|
+
vertical-align: middle;
|
|
3806
|
+
}
|
|
3807
|
+
|
|
3808
|
+
input {
|
|
3809
|
+
flex: 1;
|
|
3810
|
+
border: none;
|
|
3811
|
+
outline: none;
|
|
3812
|
+
background: transparent;
|
|
3813
|
+
height: 100%;
|
|
3814
|
+
padding: 0;
|
|
3815
|
+
margin: 0;
|
|
3816
|
+
}
|
|
3817
|
+
/*
|
|
3818
|
+
input::placeholder {
|
|
3819
|
+
color: #ccc;
|
|
3820
|
+
opacity: 1;
|
|
3821
|
+
} */
|
|
3822
|
+
|
|
3823
|
+
.dynamic-placeholder-input::placeholder {
|
|
3824
|
+
color: var(--placeholder-color, #999);
|
|
3825
|
+
opacity: 1;
|
|
3826
|
+
}
|
|
3827
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
3828
|
+
color: var(--placeholder-color, #999);
|
|
3829
|
+
}
|
|
3830
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
3831
|
+
color: var(--placeholder-color, #999);
|
|
3832
|
+
opacity: 1;
|
|
3833
|
+
}
|
|
3834
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
3835
|
+
color: var(--placeholder-color, #999);
|
|
3930
3836
|
}.ele-form {
|
|
3931
3837
|
position: absolute;
|
|
3932
3838
|
user-select: none;
|
|
@@ -4012,7 +3918,115 @@ to {
|
|
|
4012
3918
|
|
|
4013
3919
|
.has-error .fs-tit {
|
|
4014
3920
|
border-bottom-color: #ff4d4f;
|
|
3921
|
+
}.ele-form {
|
|
3922
|
+
position: absolute;
|
|
3923
|
+
user-select: none;
|
|
3924
|
+
}
|
|
3925
|
+
|
|
3926
|
+
.f-single {
|
|
3927
|
+
cursor: pointer;
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.ani-wrap {
|
|
3931
|
+
position: relative;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
.f-single .ani-wrap .fs-tit {
|
|
3935
|
+
display: flex;
|
|
3936
|
+
padding: 0 5px;
|
|
3937
|
+
height: 40px;
|
|
3938
|
+
align-items: center;
|
|
3939
|
+
white-space: nowrap;
|
|
3940
|
+
overflow: hidden;
|
|
3941
|
+
text-overflow: ellipsis;
|
|
3942
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3945
|
+
.require {
|
|
3946
|
+
padding: 0 5px 0 0;
|
|
3947
|
+
color: red;
|
|
3948
|
+
vertical-align: middle;
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3951
|
+
.f-single ul {
|
|
3952
|
+
padding: 15px;
|
|
3953
|
+
margin: 0;
|
|
3954
|
+
list-style: none;
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3957
|
+
.f-single ul li {
|
|
3958
|
+
display: flex;
|
|
3959
|
+
align-items: center;
|
|
3960
|
+
margin-top: 12px;
|
|
3961
|
+
font-size: 0;
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
.f-single ul li:first-child {
|
|
3965
|
+
margin-top: 0;
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3968
|
+
.fs-circle {
|
|
3969
|
+
display: inline-block;
|
|
3970
|
+
width: 16px;
|
|
3971
|
+
height: 16px;
|
|
3972
|
+
border-radius: 50%;
|
|
3973
|
+
position: relative;
|
|
3974
|
+
transition: all 0.2s;
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
.fs-circle.selected {
|
|
3978
|
+
background-color: #2687f1;
|
|
3979
|
+
border-color: #2687f1 !important;
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
.fs-circle.selected::after {
|
|
3983
|
+
content: "";
|
|
3984
|
+
position: absolute;
|
|
3985
|
+
top: 3px;
|
|
3986
|
+
left: 3px;
|
|
3987
|
+
width: 8px;
|
|
3988
|
+
height: 8px;
|
|
3989
|
+
border-radius: 50%;
|
|
3990
|
+
background-color: white;
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
.fs-txt {
|
|
3994
|
+
display: inline-block;
|
|
3995
|
+
width: calc(100% - 16px);
|
|
3996
|
+
padding-left: 8px;
|
|
3997
|
+
vertical-align: top;
|
|
3998
|
+
word-break: break-all;
|
|
3999
|
+
font-size: 14px;
|
|
4000
|
+
line-height: 1.2;
|
|
4001
|
+
}
|
|
4002
|
+
|
|
4003
|
+
.has-error .fs-tit {
|
|
4004
|
+
border-bottom-color: #ff4d4f;
|
|
4005
|
+
}
|
|
4006
|
+
|
|
4007
|
+
/* 错误提示样式 */
|
|
4008
|
+
.error-tip {
|
|
4009
|
+
position: fixed;
|
|
4010
|
+
left: 0;
|
|
4011
|
+
top: 0;
|
|
4012
|
+
width: 100%;
|
|
4013
|
+
height: 100%;
|
|
4014
|
+
z-index: 1000;
|
|
4015
|
+
}
|
|
4016
|
+
.global.video {
|
|
4017
|
+
width: 35px;
|
|
4018
|
+
height: 55px;
|
|
4019
|
+
border-radius: 50%;
|
|
4020
|
+
text-align: center;
|
|
4021
|
+
margin-bottom: 5px;
|
|
4022
|
+
border: 2px solid #fff;
|
|
4023
|
+
cursor: pointer;
|
|
4024
|
+
}
|
|
4025
|
+
.icon-shipin2:before { content: "\E611"; }
|
|
4026
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4027
|
+
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
4015
4028
|
}
|
|
4029
|
+
|
|
4016
4030
|
.icon-guanbi:before {
|
|
4017
4031
|
content: "\E676";
|
|
4018
4032
|
}
|
|
@@ -4407,20 +4421,6 @@ to {
|
|
|
4407
4421
|
color: #F44336; /* 失败的红色 */
|
|
4408
4422
|
}
|
|
4409
4423
|
|
|
4410
|
-
.global.video {
|
|
4411
|
-
width: 35px;
|
|
4412
|
-
height: 55px;
|
|
4413
|
-
border-radius: 50%;
|
|
4414
|
-
text-align: center;
|
|
4415
|
-
margin-bottom: 5px;
|
|
4416
|
-
border: 2px solid #fff;
|
|
4417
|
-
cursor: pointer;
|
|
4418
|
-
}
|
|
4419
|
-
.icon-shipin2:before { content: "\E611"; }
|
|
4420
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4421
|
-
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
4422
|
-
}
|
|
4423
|
-
|
|
4424
4424
|
.global.tel {
|
|
4425
4425
|
width: 35px;
|
|
4426
4426
|
height: 55px;
|
|
@@ -4433,7 +4433,7 @@ to {
|
|
|
4433
4433
|
.icon-dianhua:before { content: "\E60E"; }
|
|
4434
4434
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4435
4435
|
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4436
|
-
.global.
|
|
4436
|
+
.global.map {
|
|
4437
4437
|
width: 35px;
|
|
4438
4438
|
height: 55px;
|
|
4439
4439
|
border-radius: 50%;
|
|
@@ -4442,10 +4442,10 @@ to {
|
|
|
4442
4442
|
border: 2px solid #fff;
|
|
4443
4443
|
cursor: pointer;
|
|
4444
4444
|
}
|
|
4445
|
-
.icon-
|
|
4445
|
+
.icon-daohang1:before { content: "\E612"; }
|
|
4446
4446
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4447
|
-
.global.
|
|
4448
|
-
.global.
|
|
4447
|
+
.global.map > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4448
|
+
.global.receipt {
|
|
4449
4449
|
width: 35px;
|
|
4450
4450
|
height: 55px;
|
|
4451
4451
|
border-radius: 50%;
|
|
@@ -4454,6 +4454,6 @@ to {
|
|
|
4454
4454
|
border: 2px solid #fff;
|
|
4455
4455
|
cursor: pointer;
|
|
4456
4456
|
}
|
|
4457
|
-
.icon-
|
|
4457
|
+
.icon-liuyan:before { content: "\E636"; }
|
|
4458
4458
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4459
|
-
.global.
|
|
4459
|
+
.global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
|