unika-components 1.2.2 → 1.2.4
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/src/components/UniButton/UniButton.vue.d.ts +1 -0
- package/dist/src/components/UniCalendar/UniCalendar.vue.d.ts +1 -0
- package/dist/src/components/UniCall/UniCall.vue.d.ts +1 -0
- package/dist/src/components/UniFormInput/UniFormInput.vue.d.ts +1 -0
- package/dist/src/components/UniFormMultiple/UniFormMultiple.vue.d.ts +1 -0
- package/dist/src/components/UniFormSelect/UniFormSelect.vue.d.ts +1 -0
- package/dist/src/components/UniFormSingle/UniFormSingle.vue.d.ts +1 -0
- package/dist/src/components/UniFormSubmit/UniFormSubmit.vue.d.ts +1 -0
- package/dist/src/components/UniLottie/UniLottie.vue.d.ts +1 -0
- package/dist/src/components/UniMap/UniMap.vue.d.ts +1 -0
- package/dist/src/components/UniShape/UniShape.vue.d.ts +1 -0
- package/dist/src/components/UniVideo/UniVideo.vue.d.ts +1 -0
- package/dist/unika-components.css +764 -764
- package/dist/unika-components.esm.js +13 -1
- package/dist/unika-components.umd.js +13 -1
- package/package.json +1 -1
|
@@ -35,126 +35,7 @@
|
|
|
35
35
|
background-size: 220px 140px;
|
|
36
36
|
opacity: 0.5;
|
|
37
37
|
}
|
|
38
|
-
.ele-img {
|
|
39
|
-
position: absolute;
|
|
40
|
-
overflow: hidden;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.ele-img .ani-wrap {
|
|
44
|
-
width: 100%;
|
|
45
|
-
height: 100%;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.ele-img .ele-image {
|
|
49
|
-
position: relative;
|
|
50
|
-
display: block;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.ele-img .rotate-wrap {
|
|
54
|
-
position: absolute;
|
|
55
|
-
left: 0;
|
|
56
|
-
right: 0;
|
|
57
|
-
top: 0;
|
|
58
|
-
bottom: 0;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.ele-img .ele-img-bg,
|
|
62
|
-
.ele-img .rotate-wrap .img-wrap {
|
|
63
|
-
width: 100%;
|
|
64
|
-
height: 100%;
|
|
65
|
-
overflow: hidden;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.ele-img .ele-bg-wrap {
|
|
69
|
-
width: 100%;
|
|
70
|
-
height: 100%;
|
|
71
|
-
background-size: cover;
|
|
72
|
-
background-position: 50% 50%;
|
|
73
|
-
background-repeat: no-repeat;
|
|
74
|
-
background-clip: border-box;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/* 动画关键帧 */
|
|
78
|
-
@keyframes zoomIn {
|
|
79
|
-
from {
|
|
80
|
-
opacity: 0;
|
|
81
|
-
transform: scale(0.5);
|
|
82
|
-
}
|
|
83
|
-
to {
|
|
84
|
-
opacity: 1;
|
|
85
|
-
transform: scale(1);
|
|
86
|
-
}
|
|
87
|
-
}#audio {
|
|
88
|
-
position: absolute;
|
|
89
|
-
right: 10px;
|
|
90
|
-
top: 10px;
|
|
91
|
-
z-index: 103;
|
|
92
|
-
width: 30px;
|
|
93
|
-
height: 30px;
|
|
94
|
-
display: flex;
|
|
95
|
-
align-items: center;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
#audio .mrotate {
|
|
99
|
-
animation: mrotate 5s linear infinite;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
@keyframes mrotate {
|
|
103
|
-
to {
|
|
104
|
-
transform: rotate(1turn);
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
#audio .audio {
|
|
109
|
-
width: 100%;
|
|
110
|
-
height: 100%;
|
|
111
|
-
display: flex;
|
|
112
|
-
align-items: center;
|
|
113
|
-
justify-content: center;
|
|
114
|
-
color: #fff;
|
|
115
|
-
background: #666;
|
|
116
|
-
border-radius: 50%;
|
|
117
|
-
overflow: hidden;
|
|
118
|
-
cursor: pointer;
|
|
119
|
-
transition: all 0.3s ease;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
#audio .audio.a-border {
|
|
123
|
-
border: 1px solid #fff;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
#audio .audio .music-icon {
|
|
127
|
-
display: block;
|
|
128
|
-
width: 60%;
|
|
129
|
-
height: 60%;
|
|
130
|
-
object-fit: contain;
|
|
131
|
-
}
|
|
132
38
|
|
|
133
|
-
#audio .audio .iconfont {
|
|
134
|
-
font-size: 2opx;
|
|
135
|
-
line-height: 1;
|
|
136
|
-
}
|
|
137
|
-
#audio .icon-cancel {
|
|
138
|
-
position: absolute;
|
|
139
|
-
width: 100%;
|
|
140
|
-
height: 100%;
|
|
141
|
-
border-radius: 50%;
|
|
142
|
-
overflow: hidden;
|
|
143
|
-
padding: 15px 0;
|
|
144
|
-
}
|
|
145
|
-
#audio .icon-cancel .icon-h {
|
|
146
|
-
transform: rotate(45deg);
|
|
147
|
-
width: 100%;
|
|
148
|
-
height: 2px;
|
|
149
|
-
background: #fff;
|
|
150
|
-
}
|
|
151
|
-
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
152
|
-
content: '';
|
|
153
|
-
position: absolute;
|
|
154
|
-
width: 100%;
|
|
155
|
-
height: 2px;
|
|
156
|
-
background: #fff;
|
|
157
|
-
}
|
|
158
39
|
.ele-text {
|
|
159
40
|
position: relative;
|
|
160
41
|
}
|
|
@@ -221,304 +102,96 @@
|
|
|
221
102
|
transform: scale(1);
|
|
222
103
|
opacity: 1;
|
|
223
104
|
}
|
|
224
|
-
}.
|
|
225
|
-
|
|
105
|
+
}.ele-shape {
|
|
106
|
+
position: absolute;
|
|
107
|
+
overflow: hidden;
|
|
226
108
|
}
|
|
227
109
|
|
|
228
|
-
.
|
|
110
|
+
.ani-wrap {
|
|
229
111
|
width: 100%;
|
|
230
|
-
height: 100
|
|
112
|
+
height: 100%;
|
|
113
|
+
box-sizing: border-box;
|
|
231
114
|
}
|
|
232
115
|
|
|
233
|
-
.
|
|
234
|
-
|
|
235
|
-
display: -ms-flexbox;
|
|
236
|
-
display: flex;
|
|
116
|
+
.e-shape {
|
|
117
|
+
width: 100%;
|
|
237
118
|
height: 100%;
|
|
238
|
-
-webkit-box-align: center;
|
|
239
|
-
-ms-flex-align: center;
|
|
240
|
-
align-items: center;
|
|
241
|
-
-webkit-box-pack: center;
|
|
242
|
-
-ms-flex-pack: center;
|
|
243
|
-
justify-content: center
|
|
244
119
|
}
|
|
245
120
|
|
|
246
|
-
.
|
|
247
|
-
width: 100
|
|
121
|
+
.svg-container :deep(svg) {
|
|
122
|
+
width: 100%;
|
|
123
|
+
height: 100%;
|
|
124
|
+
display: block;
|
|
248
125
|
}
|
|
249
126
|
|
|
250
|
-
.
|
|
251
|
-
|
|
252
|
-
display: -ms-flexbox;
|
|
253
|
-
display: flex;
|
|
127
|
+
.svg-container {
|
|
128
|
+
width: 100%;
|
|
254
129
|
height: 100%;
|
|
255
|
-
|
|
256
|
-
-ms-flex-align: center;
|
|
257
|
-
align-items: center;
|
|
258
|
-
-webkit-box-pack: center;
|
|
259
|
-
-ms-flex-pack: center;
|
|
260
|
-
justify-content: center
|
|
130
|
+
display: block;
|
|
261
131
|
}
|
|
262
132
|
|
|
263
|
-
.count-down .count-flip .numscroll {
|
|
264
|
-
-webkit-animation: numscroll .4s ease-in-out;
|
|
265
|
-
animation: numscroll .4s ease-in-out;
|
|
266
|
-
-webkit-animation-fill-mode: both;
|
|
267
|
-
animation-fill-mode: both
|
|
268
|
-
}
|
|
269
133
|
|
|
270
|
-
.
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
-
|
|
275
|
-
|
|
134
|
+
.svg-loading,
|
|
135
|
+
.svg-error {
|
|
136
|
+
display: flex;
|
|
137
|
+
align-items: center;
|
|
138
|
+
justify-content: center;
|
|
139
|
+
width: 100%;
|
|
140
|
+
height: 100%;
|
|
141
|
+
background: rgba(0,0,0,0.05);
|
|
276
142
|
}
|
|
277
143
|
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
to {
|
|
285
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
286
|
-
transform: translate3d(0,100%,0)
|
|
287
|
-
}
|
|
144
|
+
.ele-shape .svg-container svg {
|
|
145
|
+
width: 100%;
|
|
146
|
+
height: 100%;
|
|
147
|
+
overflow: visible;
|
|
288
148
|
}
|
|
289
|
-
|
|
290
|
-
@keyframes numscroll {
|
|
291
|
-
0% {
|
|
292
|
-
-webkit-transform: translateZ(0);
|
|
293
|
-
transform: translateZ(0)
|
|
294
|
-
}
|
|
295
|
-
|
|
149
|
+
@keyframes jumpheart {
|
|
296
150
|
to {
|
|
297
|
-
|
|
298
|
-
|
|
151
|
+
-webkit-transform: scale(1.2);
|
|
152
|
+
transform: scale(1.2)
|
|
299
153
|
}
|
|
300
154
|
}
|
|
155
|
+
.ele-calendar {
|
|
156
|
+
position: relative;
|
|
157
|
+
width: 325px !important;
|
|
158
|
+
min-height: 325px !important;
|
|
159
|
+
height: auto !important;
|
|
160
|
+
}
|
|
301
161
|
|
|
302
|
-
.
|
|
303
|
-
|
|
304
|
-
height: auto;
|
|
305
|
-
margin: 6px;
|
|
306
|
-
padding: 5px 0 6px;
|
|
307
|
-
background-color: #111
|
|
162
|
+
.ele-calendar .drag-point {
|
|
163
|
+
cursor: default !important;
|
|
308
164
|
}
|
|
309
165
|
|
|
310
|
-
.
|
|
311
|
-
display: -webkit-box;
|
|
312
|
-
display: -ms-flexbox;
|
|
313
|
-
display: flex;
|
|
166
|
+
.ele-calendar .ani-wrap {
|
|
314
167
|
position: relative;
|
|
315
168
|
width: 100%;
|
|
316
|
-
height:
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
align-items: center
|
|
169
|
+
min-height: 325px !important;
|
|
170
|
+
height: auto !important;
|
|
171
|
+
padding: 22px 0;
|
|
320
172
|
}
|
|
321
173
|
|
|
322
|
-
.
|
|
323
|
-
|
|
174
|
+
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
175
|
+
display: flex;
|
|
176
|
+
justify-content: space-between;
|
|
177
|
+
align-items: flex-end;
|
|
178
|
+
line-height: 1;
|
|
179
|
+
padding: 0 47px 20px;
|
|
324
180
|
}
|
|
325
181
|
|
|
326
|
-
.
|
|
327
|
-
|
|
328
|
-
|
|
182
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
183
|
+
font-size: 25px;
|
|
184
|
+
padding-bottom: 4px;
|
|
329
185
|
}
|
|
330
186
|
|
|
331
|
-
.
|
|
332
|
-
-
|
|
333
|
-
transform: scale(1)
|
|
187
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
188
|
+
font-size: 25px;
|
|
334
189
|
}
|
|
335
190
|
|
|
336
|
-
.
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
.c-wrap {
|
|
341
|
-
width: 100%;
|
|
342
|
-
height: 100%;
|
|
343
|
-
overflow: hidden;
|
|
344
|
-
font-size: 0
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
.c-wrap.c-day-wrap {
|
|
348
|
-
text-align: center
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.c-wrap.c-day-wrap .c-num {
|
|
352
|
-
width: auto
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
.c-wrap .c-num {
|
|
356
|
-
display: inline-block;
|
|
357
|
-
width: 50%;
|
|
358
|
-
overflow: hidden;
|
|
359
|
-
font-size: 20px;
|
|
360
|
-
color: #999
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
.c-wrap .c-left .flex-wrap {
|
|
364
|
-
display: -webkit-box;
|
|
365
|
-
display: -ms-flexbox;
|
|
366
|
-
display: flex;
|
|
367
|
-
-webkit-box-pack: end;
|
|
368
|
-
-ms-flex-pack: end;
|
|
369
|
-
justify-content: flex-end
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.c-wrap .c-text {
|
|
373
|
-
display: -webkit-box;
|
|
374
|
-
display: -ms-flexbox;
|
|
375
|
-
display: flex;
|
|
376
|
-
width: 100%;
|
|
377
|
-
font-size: 12px;
|
|
378
|
-
-webkit-box-pack: center;
|
|
379
|
-
-ms-flex-pack: center;
|
|
380
|
-
justify-content: center;
|
|
381
|
-
-webkit-box-align: center;
|
|
382
|
-
-ms-flex-align: center;
|
|
383
|
-
align-items: center;
|
|
384
|
-
white-space: nowrap
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.element-video {
|
|
388
|
-
position: absolute;
|
|
389
|
-
overflow: hidden;
|
|
390
|
-
background-color: transparent;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.element-video .ani-wrap, .element-video img {
|
|
394
|
-
display: block;
|
|
395
|
-
width: 100%;
|
|
396
|
-
height: 100%;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
.video-container {
|
|
400
|
-
width: 100%;
|
|
401
|
-
height: 100%;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
.video-container iframe {
|
|
405
|
-
width: 100%;
|
|
406
|
-
height: 100%;
|
|
407
|
-
border: none;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
.video-cover {
|
|
411
|
-
position: relative;
|
|
412
|
-
width: 100%;
|
|
413
|
-
height: 100%;
|
|
414
|
-
background-size: cover;
|
|
415
|
-
background-position: center;
|
|
416
|
-
cursor: pointer;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
.video-cover .play-btn {
|
|
420
|
-
position: absolute;
|
|
421
|
-
left: 50%;
|
|
422
|
-
top: 50%;
|
|
423
|
-
transform: translate(-50%, -50%);
|
|
424
|
-
width: 50px;
|
|
425
|
-
height: 50px;
|
|
426
|
-
opacity: 0.8;
|
|
427
|
-
transition: opacity 0.2s;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
.video-cover:hover .play-btn {
|
|
431
|
-
opacity: 1;
|
|
432
|
-
}.ele-shape {
|
|
433
|
-
position: absolute;
|
|
434
|
-
overflow: hidden;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
.ani-wrap {
|
|
438
|
-
width: 100%;
|
|
439
|
-
height: 100%;
|
|
440
|
-
box-sizing: border-box;
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
.e-shape {
|
|
444
|
-
width: 100%;
|
|
445
|
-
height: 100%;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.svg-container :deep(svg) {
|
|
449
|
-
width: 100%;
|
|
450
|
-
height: 100%;
|
|
451
|
-
display: block;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
.svg-container {
|
|
455
|
-
width: 100%;
|
|
456
|
-
height: 100%;
|
|
457
|
-
display: block;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
.svg-loading,
|
|
462
|
-
.svg-error {
|
|
463
|
-
display: flex;
|
|
464
|
-
align-items: center;
|
|
465
|
-
justify-content: center;
|
|
466
|
-
width: 100%;
|
|
467
|
-
height: 100%;
|
|
468
|
-
background: rgba(0,0,0,0.05);
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
.ele-shape .svg-container svg {
|
|
472
|
-
width: 100%;
|
|
473
|
-
height: 100%;
|
|
474
|
-
overflow: visible;
|
|
475
|
-
}
|
|
476
|
-
@keyframes jumpheart {
|
|
477
|
-
to {
|
|
478
|
-
-webkit-transform: scale(1.2);
|
|
479
|
-
transform: scale(1.2)
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
.ele-calendar {
|
|
483
|
-
position: relative;
|
|
484
|
-
width: 325px !important;
|
|
485
|
-
min-height: 325px !important;
|
|
486
|
-
height: auto !important;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.ele-calendar .drag-point {
|
|
490
|
-
cursor: default !important;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.ele-calendar .ani-wrap {
|
|
494
|
-
position: relative;
|
|
495
|
-
width: 100%;
|
|
496
|
-
min-height: 325px !important;
|
|
497
|
-
height: auto !important;
|
|
498
|
-
padding: 22px 0;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
502
|
-
display: flex;
|
|
503
|
-
justify-content: space-between;
|
|
504
|
-
align-items: flex-end;
|
|
505
|
-
line-height: 1;
|
|
506
|
-
padding: 0 47px 20px;
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
510
|
-
font-size: 25px;
|
|
511
|
-
padding-bottom: 4px;
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
515
|
-
font-size: 25px;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
519
|
-
position: relative;
|
|
520
|
-
top: 2px;
|
|
521
|
-
font-size: 57px;
|
|
191
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
192
|
+
position: relative;
|
|
193
|
+
top: 2px;
|
|
194
|
+
font-size: 57px;
|
|
522
195
|
}
|
|
523
196
|
|
|
524
197
|
.ele-calendar .ani-wrap .can-wrap .can-main {
|
|
@@ -741,79 +414,401 @@
|
|
|
741
414
|
font-weight: 600
|
|
742
415
|
}
|
|
743
416
|
|
|
744
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
745
|
-
position: relative
|
|
417
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
418
|
+
position: relative
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
|
|
422
|
+
font-size: 0;
|
|
423
|
+
padding: 5px 33px 0;
|
|
424
|
+
text-align: left
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
|
|
428
|
+
position: relative;
|
|
429
|
+
display: inline-block;
|
|
430
|
+
width: 14.2%;
|
|
431
|
+
height: 25px;
|
|
432
|
+
text-align: center;
|
|
433
|
+
margin-top: 8px;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
|
|
437
|
+
color: #eee
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
|
|
441
|
+
display: block;
|
|
442
|
+
position: absolute;
|
|
443
|
+
left: 12%;
|
|
444
|
+
top: 2px;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
|
|
448
|
+
font-size: 12px
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
|
|
452
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
453
|
+
animation: jumpheart .8s ease infinite alternate
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
@keyframes jumpheart {
|
|
457
|
+
to {
|
|
458
|
+
-webkit-transform: scale(1.2);
|
|
459
|
+
transform: scale(1.2)
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
|
|
464
|
+
display: none;
|
|
465
|
+
font-size: 26px
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
|
|
469
|
+
position: absolute;
|
|
470
|
+
left: 50%;
|
|
471
|
+
top: 50%;
|
|
472
|
+
z-index: 1;
|
|
473
|
+
color: #666;
|
|
474
|
+
font-size: 13px;
|
|
475
|
+
-webkit-transform: translate(-50%,-52%);
|
|
476
|
+
transform: translate(-50%,-52%)
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
480
|
+
display: none!important
|
|
481
|
+
}
|
|
482
|
+
.icon-tuoyuanxing:before {
|
|
483
|
+
content: "\E6A7";
|
|
484
|
+
}
|
|
485
|
+
.icon-zan1:before {
|
|
486
|
+
content: "\E66D";
|
|
487
|
+
}
|
|
488
|
+
.icon-xingzhuangjiehe:before {
|
|
489
|
+
content: "\E6A6";
|
|
490
|
+
}.ele-img {
|
|
491
|
+
position: absolute;
|
|
492
|
+
overflow: hidden;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.ele-img .ani-wrap {
|
|
496
|
+
width: 100%;
|
|
497
|
+
height: 100%;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.ele-img .ele-image {
|
|
501
|
+
position: relative;
|
|
502
|
+
display: block;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.ele-img .rotate-wrap {
|
|
506
|
+
position: absolute;
|
|
507
|
+
left: 0;
|
|
508
|
+
right: 0;
|
|
509
|
+
top: 0;
|
|
510
|
+
bottom: 0;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.ele-img .ele-img-bg,
|
|
514
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
515
|
+
width: 100%;
|
|
516
|
+
height: 100%;
|
|
517
|
+
overflow: hidden;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.ele-img .ele-bg-wrap {
|
|
521
|
+
width: 100%;
|
|
522
|
+
height: 100%;
|
|
523
|
+
background-size: cover;
|
|
524
|
+
background-position: 50% 50%;
|
|
525
|
+
background-repeat: no-repeat;
|
|
526
|
+
background-clip: border-box;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
/* 动画关键帧 */
|
|
530
|
+
@keyframes zoomIn {
|
|
531
|
+
from {
|
|
532
|
+
opacity: 0;
|
|
533
|
+
transform: scale(0.5);
|
|
534
|
+
}
|
|
535
|
+
to {
|
|
536
|
+
opacity: 1;
|
|
537
|
+
transform: scale(1);
|
|
538
|
+
}
|
|
539
|
+
}#audio {
|
|
540
|
+
position: absolute;
|
|
541
|
+
right: 10px;
|
|
542
|
+
top: 10px;
|
|
543
|
+
z-index: 103;
|
|
544
|
+
width: 30px;
|
|
545
|
+
height: 30px;
|
|
546
|
+
display: flex;
|
|
547
|
+
align-items: center;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
#audio .mrotate {
|
|
551
|
+
animation: mrotate 5s linear infinite;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
@keyframes mrotate {
|
|
555
|
+
to {
|
|
556
|
+
transform: rotate(1turn);
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
#audio .audio {
|
|
561
|
+
width: 100%;
|
|
562
|
+
height: 100%;
|
|
563
|
+
display: flex;
|
|
564
|
+
align-items: center;
|
|
565
|
+
justify-content: center;
|
|
566
|
+
color: #fff;
|
|
567
|
+
background: #666;
|
|
568
|
+
border-radius: 50%;
|
|
569
|
+
overflow: hidden;
|
|
570
|
+
cursor: pointer;
|
|
571
|
+
transition: all 0.3s ease;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
#audio .audio.a-border {
|
|
575
|
+
border: 1px solid #fff;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
#audio .audio .music-icon {
|
|
579
|
+
display: block;
|
|
580
|
+
width: 60%;
|
|
581
|
+
height: 60%;
|
|
582
|
+
object-fit: contain;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
#audio .audio .iconfont {
|
|
586
|
+
font-size: 2opx;
|
|
587
|
+
line-height: 1;
|
|
588
|
+
}
|
|
589
|
+
#audio .icon-cancel {
|
|
590
|
+
position: absolute;
|
|
591
|
+
width: 100%;
|
|
592
|
+
height: 100%;
|
|
593
|
+
border-radius: 50%;
|
|
594
|
+
overflow: hidden;
|
|
595
|
+
padding: 15px 0;
|
|
596
|
+
}
|
|
597
|
+
#audio .icon-cancel .icon-h {
|
|
598
|
+
transform: rotate(45deg);
|
|
599
|
+
width: 100%;
|
|
600
|
+
height: 2px;
|
|
601
|
+
background: #fff;
|
|
602
|
+
}
|
|
603
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
604
|
+
content: '';
|
|
605
|
+
position: absolute;
|
|
606
|
+
width: 100%;
|
|
607
|
+
height: 2px;
|
|
608
|
+
background: #fff;
|
|
609
|
+
}
|
|
610
|
+
.element-video {
|
|
611
|
+
position: absolute;
|
|
612
|
+
overflow: hidden;
|
|
613
|
+
background-color: transparent;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.element-video .ani-wrap, .element-video img {
|
|
617
|
+
display: block;
|
|
618
|
+
width: 100%;
|
|
619
|
+
height: 100%;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.video-container {
|
|
623
|
+
width: 100%;
|
|
624
|
+
height: 100%;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.video-container iframe {
|
|
628
|
+
width: 100%;
|
|
629
|
+
height: 100%;
|
|
630
|
+
border: none;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.video-cover {
|
|
634
|
+
position: relative;
|
|
635
|
+
width: 100%;
|
|
636
|
+
height: 100%;
|
|
637
|
+
background-size: cover;
|
|
638
|
+
background-position: center;
|
|
639
|
+
cursor: pointer;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.video-cover .play-btn {
|
|
643
|
+
position: absolute;
|
|
644
|
+
left: 50%;
|
|
645
|
+
top: 50%;
|
|
646
|
+
transform: translate(-50%, -50%);
|
|
647
|
+
width: 50px;
|
|
648
|
+
height: 50px;
|
|
649
|
+
opacity: 0.8;
|
|
650
|
+
transition: opacity 0.2s;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.video-cover:hover .play-btn {
|
|
654
|
+
opacity: 1;
|
|
655
|
+
}.element-ditu .ani-wrap {
|
|
656
|
+
width: 100%;
|
|
657
|
+
height: 100%;
|
|
658
|
+
overflow: hidden
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.element-ditu .map {
|
|
662
|
+
width: 100%;
|
|
663
|
+
height: 100%
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.element-ditu .map .el-button {
|
|
667
|
+
width: 100%;
|
|
668
|
+
height: 100%;
|
|
669
|
+
display: -webkit-box;
|
|
670
|
+
display: -ms-flexbox;
|
|
671
|
+
display: flex;
|
|
672
|
+
-webkit-box-align: center;
|
|
673
|
+
-ms-flex-align: center;
|
|
674
|
+
align-items: center;
|
|
675
|
+
padding: 0;
|
|
676
|
+
-webkit-box-pack: center;
|
|
677
|
+
-ms-flex-pack: center;
|
|
678
|
+
justify-content: center;
|
|
679
|
+
background: inherit;
|
|
680
|
+
color: inherit;
|
|
681
|
+
border: none
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.element-ditu .center-map {
|
|
685
|
+
width: 100%;
|
|
686
|
+
height: 100%;
|
|
687
|
+
background: #fff
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.element-ditu .mask-map {
|
|
691
|
+
position: absolute;
|
|
692
|
+
width: 100%;
|
|
693
|
+
height: 100%;
|
|
694
|
+
top: 0
|
|
695
|
+
}
|
|
696
|
+
.map-iframe {
|
|
697
|
+
width: 100%;
|
|
698
|
+
height: 100%;
|
|
699
|
+
}#page-list .tip-cover {
|
|
700
|
+
position: fixed;
|
|
701
|
+
left: 0;
|
|
702
|
+
top: 0;
|
|
703
|
+
width: 100%;
|
|
704
|
+
height: 100%;
|
|
705
|
+
display: -ms-flexbox;
|
|
706
|
+
display: flex;
|
|
707
|
+
-ms-flex-align: center;
|
|
708
|
+
align-items: center;
|
|
709
|
+
-ms-flex-pack: center;
|
|
710
|
+
justify-content: center;
|
|
711
|
+
z-index: 999;
|
|
712
|
+
background-color: rgba(0,0,0,.7)
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
#page-list .tip-cover .tip {
|
|
716
|
+
width: 80%;
|
|
717
|
+
max-width: 250px;
|
|
718
|
+
padding: 10px;
|
|
719
|
+
border-radius: 5px;
|
|
720
|
+
background-color: #fff
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
#page-list .tip-cover .tip-btn {
|
|
724
|
+
display: block;
|
|
725
|
+
margin: 25px auto;
|
|
726
|
+
width: 120px;
|
|
727
|
+
height: 30px;
|
|
728
|
+
color: #fff;
|
|
729
|
+
border-radius: 4px;
|
|
730
|
+
text-align: center;
|
|
731
|
+
font-size: 14px;
|
|
732
|
+
line-height: 30px;
|
|
733
|
+
background: #ed5566
|
|
746
734
|
}
|
|
747
735
|
|
|
748
|
-
|
|
749
|
-
font-size:
|
|
750
|
-
padding:
|
|
751
|
-
text-align: left
|
|
736
|
+
#page-list .tip-cover .tip-content {
|
|
737
|
+
font-size: 14px;
|
|
738
|
+
padding-top: 30px;
|
|
752
739
|
}
|
|
753
740
|
|
|
754
|
-
.
|
|
755
|
-
position:
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
741
|
+
.tip-cover {
|
|
742
|
+
position: fixed;
|
|
743
|
+
left: 0;
|
|
744
|
+
top: 0;
|
|
745
|
+
width: 100%;
|
|
746
|
+
height: 100%;
|
|
747
|
+
display: -ms-flexbox;
|
|
748
|
+
display: flex;
|
|
749
|
+
-ms-flex-align: center;
|
|
750
|
+
align-items: center;
|
|
751
|
+
-ms-flex-pack: center;
|
|
752
|
+
justify-content: center;
|
|
753
|
+
z-index: 999;
|
|
754
|
+
background-color: rgba(0,0,0,.7)
|
|
761
755
|
}
|
|
762
756
|
|
|
763
|
-
.
|
|
764
|
-
|
|
757
|
+
.tip-cover .tip {
|
|
758
|
+
width: 80%;
|
|
759
|
+
max-width: 250px;
|
|
760
|
+
padding: 5px;
|
|
761
|
+
border-radius: 3px;
|
|
762
|
+
background-color: #fff
|
|
765
763
|
}
|
|
766
764
|
|
|
767
|
-
.
|
|
765
|
+
.tip-cover .tip-btn {
|
|
768
766
|
display: block;
|
|
767
|
+
margin: 13px auto;
|
|
768
|
+
width: 64px;
|
|
769
|
+
height: 20px;
|
|
770
|
+
color: #fff;
|
|
771
|
+
border-radius: 4px;
|
|
772
|
+
text-align: center;
|
|
773
|
+
font-size: 14px;
|
|
774
|
+
line-height: 20px;
|
|
775
|
+
background: #ed5566;
|
|
776
|
+
}
|
|
777
|
+
.ele-lottie .ele-lotwrap {
|
|
778
|
+
overflow: hidden;
|
|
779
|
+
}.call {
|
|
769
780
|
position: absolute;
|
|
770
|
-
|
|
771
|
-
|
|
781
|
+
cursor: pointer;
|
|
782
|
+
user-select: none;
|
|
772
783
|
}
|
|
773
784
|
|
|
774
|
-
.
|
|
775
|
-
|
|
785
|
+
.call .ani-wrap {
|
|
786
|
+
display: flex;
|
|
787
|
+
justify-content: center;
|
|
788
|
+
align-items: center;
|
|
789
|
+
width: 100%;
|
|
790
|
+
height: 100%;
|
|
791
|
+
overflow: hidden;
|
|
792
|
+
transition: opacity 0.2s;
|
|
776
793
|
}
|
|
777
794
|
|
|
778
|
-
.
|
|
779
|
-
|
|
780
|
-
animation: jumpheart .8s ease infinite alternate
|
|
795
|
+
.call .ani-wrap:hover {
|
|
796
|
+
opacity: 0.9;
|
|
781
797
|
}
|
|
782
798
|
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
}
|
|
799
|
+
.call-content {
|
|
800
|
+
display: flex;
|
|
801
|
+
align-items: center;
|
|
802
|
+
justify-content: center;
|
|
788
803
|
}
|
|
789
804
|
|
|
790
|
-
.
|
|
791
|
-
|
|
792
|
-
font-size: 26px
|
|
805
|
+
.btn-text {
|
|
806
|
+
margin-left: 10px;
|
|
793
807
|
}
|
|
794
808
|
|
|
795
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
|
|
796
|
-
position: absolute;
|
|
797
|
-
left: 50%;
|
|
798
|
-
top: 50%;
|
|
799
|
-
z-index: 1;
|
|
800
|
-
color: #666;
|
|
801
|
-
font-size: 13px;
|
|
802
|
-
-webkit-transform: translate(-50%,-52%);
|
|
803
|
-
transform: translate(-50%,-52%)
|
|
804
|
-
}
|
|
805
809
|
|
|
806
|
-
.
|
|
807
|
-
|
|
808
|
-
}
|
|
809
|
-
.icon-tuoyuanxing:before {
|
|
810
|
-
content: "\E6A7";
|
|
811
|
-
}
|
|
812
|
-
.icon-zan1:before {
|
|
813
|
-
content: "\E66D";
|
|
814
|
-
}
|
|
815
|
-
.icon-xingzhuangjiehe:before {
|
|
816
|
-
content: "\E6A6";
|
|
810
|
+
.hb-tel:before {
|
|
811
|
+
content: "\E642";
|
|
817
812
|
}/* Iconfont definition */
|
|
818
813
|
.icon-danmuliebiao1:before {
|
|
819
814
|
content: "\E68A";
|
|
@@ -1653,173 +1648,71 @@
|
|
|
1653
1648
|
height: 15px;
|
|
1654
1649
|
margin: 0 5px;
|
|
1655
1650
|
}
|
|
1656
|
-
|
|
1657
|
-
.mess-success-popup .gift-popup .title {
|
|
1658
|
-
margin: 15px 0;
|
|
1659
|
-
font-size: 16px;
|
|
1660
|
-
color: #333;
|
|
1661
|
-
}
|
|
1662
|
-
|
|
1663
|
-
.mess-success-popup .gift-popup .btn {
|
|
1664
|
-
background: linear-gradient(270deg, #ff4874, #ff9061);
|
|
1665
|
-
color: white;
|
|
1666
|
-
border: none;
|
|
1667
|
-
padding: 10px 20px;
|
|
1668
|
-
border-radius: 20px;
|
|
1669
|
-
margin-top: 15px;
|
|
1670
|
-
cursor: pointer;
|
|
1671
|
-
}
|
|
1672
|
-
|
|
1673
|
-
/* 新增图片加载动画样式 */
|
|
1674
|
-
.gift-image-container {
|
|
1675
|
-
position: relative;
|
|
1676
|
-
width: 300px;
|
|
1677
|
-
height: 300px;
|
|
1678
|
-
margin: 20px 0;
|
|
1679
|
-
overflow: hidden;
|
|
1680
|
-
}
|
|
1681
|
-
|
|
1682
|
-
.gift-image-container img {
|
|
1683
|
-
width: 100%;
|
|
1684
|
-
height: 100%;
|
|
1685
|
-
object-fit: contain;
|
|
1686
|
-
opacity: 0;
|
|
1687
|
-
transition: opacity 0.5s ease-in-out;
|
|
1688
|
-
}
|
|
1689
|
-
|
|
1690
|
-
.gift-image-container img.loaded {
|
|
1691
|
-
opacity: 1;
|
|
1692
|
-
}
|
|
1693
|
-
|
|
1694
|
-
.image-loading {
|
|
1695
|
-
position: absolute;
|
|
1696
|
-
top: 0;
|
|
1697
|
-
left: 0;
|
|
1698
|
-
width: 100%;
|
|
1699
|
-
height: 100%;
|
|
1700
|
-
display: flex;
|
|
1701
|
-
justify-content: center;
|
|
1702
|
-
align-items: center;
|
|
1703
|
-
background: rgba(255, 255, 255, 0.8);
|
|
1704
|
-
}
|
|
1705
|
-
|
|
1706
|
-
.loading-spinner {
|
|
1707
|
-
width: 40px;
|
|
1708
|
-
height: 40px;
|
|
1709
|
-
border: 4px solid #f3f3f3;
|
|
1710
|
-
border-top: 4px solid #ed5566;
|
|
1711
|
-
border-radius: 50%;
|
|
1712
|
-
animation: spin 1s linear infinite;
|
|
1713
|
-
}
|
|
1714
|
-
|
|
1715
|
-
@keyframes spin {
|
|
1716
|
-
0% { transform: rotate(0deg); }
|
|
1717
|
-
100% { transform: rotate(360deg); }
|
|
1718
|
-
}
|
|
1719
|
-
|
|
1720
|
-
.element-ditu .ani-wrap {
|
|
1721
|
-
width: 100%;
|
|
1722
|
-
height: 100%;
|
|
1723
|
-
overflow: hidden
|
|
1724
|
-
}
|
|
1725
|
-
|
|
1726
|
-
.element-ditu .map {
|
|
1727
|
-
width: 100%;
|
|
1728
|
-
height: 100%
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
.element-ditu .map .el-button {
|
|
1732
|
-
width: 100%;
|
|
1733
|
-
height: 100%;
|
|
1734
|
-
display: -webkit-box;
|
|
1735
|
-
display: -ms-flexbox;
|
|
1736
|
-
display: flex;
|
|
1737
|
-
-webkit-box-align: center;
|
|
1738
|
-
-ms-flex-align: center;
|
|
1739
|
-
align-items: center;
|
|
1740
|
-
padding: 0;
|
|
1741
|
-
-webkit-box-pack: center;
|
|
1742
|
-
-ms-flex-pack: center;
|
|
1743
|
-
justify-content: center;
|
|
1744
|
-
background: inherit;
|
|
1745
|
-
color: inherit;
|
|
1746
|
-
border: none
|
|
1747
|
-
}
|
|
1748
|
-
|
|
1749
|
-
.element-ditu .center-map {
|
|
1750
|
-
width: 100%;
|
|
1751
|
-
height: 100%;
|
|
1752
|
-
background: #fff
|
|
1753
|
-
}
|
|
1754
|
-
|
|
1755
|
-
.element-ditu .mask-map {
|
|
1756
|
-
position: absolute;
|
|
1757
|
-
width: 100%;
|
|
1758
|
-
height: 100%;
|
|
1759
|
-
top: 0
|
|
1760
|
-
}
|
|
1761
|
-
.map-iframe {
|
|
1762
|
-
width: 100%;
|
|
1763
|
-
height: 100%;
|
|
1764
|
-
}
|
|
1765
|
-
.ele-lottie .ele-lotwrap {
|
|
1766
|
-
overflow: hidden;
|
|
1767
|
-
}.ele-effect {
|
|
1768
|
-
will-change: transform;
|
|
1769
|
-
}
|
|
1770
|
-
|
|
1771
|
-
.ele-effect .effect-wrap {
|
|
1772
|
-
position: relative;
|
|
1773
|
-
width: 100%;
|
|
1774
|
-
height: 100%;
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
.particle {
|
|
1778
|
-
position: absolute;
|
|
1779
|
-
background-repeat: no-repeat;
|
|
1780
|
-
background-size: contain;
|
|
1781
|
-
animation-name: falling;
|
|
1782
|
-
animation-timing-function: linear;
|
|
1783
|
-
animation-iteration-count: infinite;
|
|
1784
|
-
will-change: transform;
|
|
1785
|
-
}
|
|
1786
|
-
|
|
1787
|
-
@keyframes falling {
|
|
1788
|
-
0% {
|
|
1789
|
-
transform: translateY(0) rotate(0deg);
|
|
1790
|
-
opacity: 1;
|
|
1791
|
-
}
|
|
1792
|
-
80% {
|
|
1793
|
-
opacity: 0.8;
|
|
1651
|
+
|
|
1652
|
+
.mess-success-popup .gift-popup .title {
|
|
1653
|
+
margin: 15px 0;
|
|
1654
|
+
font-size: 16px;
|
|
1655
|
+
color: #333;
|
|
1794
1656
|
}
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1657
|
+
|
|
1658
|
+
.mess-success-popup .gift-popup .btn {
|
|
1659
|
+
background: linear-gradient(270deg, #ff4874, #ff9061);
|
|
1660
|
+
color: white;
|
|
1661
|
+
border: none;
|
|
1662
|
+
padding: 10px 20px;
|
|
1663
|
+
border-radius: 20px;
|
|
1664
|
+
margin-top: 15px;
|
|
1665
|
+
cursor: pointer;
|
|
1798
1666
|
}
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
}
|
|
1803
|
-
|
|
1804
|
-
.ele-effect .effect-wrap {
|
|
1667
|
+
|
|
1668
|
+
/* 新增图片加载动画样式 */
|
|
1669
|
+
.gift-image-container {
|
|
1805
1670
|
position: relative;
|
|
1671
|
+
width: 300px;
|
|
1672
|
+
height: 300px;
|
|
1673
|
+
margin: 20px 0;
|
|
1806
1674
|
overflow: hidden;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.gift-image-container img {
|
|
1807
1678
|
width: 100%;
|
|
1808
|
-
height: 100
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
.
|
|
1679
|
+
height: 100%;
|
|
1680
|
+
object-fit: contain;
|
|
1681
|
+
opacity: 0;
|
|
1682
|
+
transition: opacity 0.5s ease-in-out;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
.gift-image-container img.loaded {
|
|
1686
|
+
opacity: 1;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.image-loading {
|
|
1812
1690
|
position: absolute;
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1691
|
+
top: 0;
|
|
1692
|
+
left: 0;
|
|
1693
|
+
width: 100%;
|
|
1694
|
+
height: 100%;
|
|
1695
|
+
display: flex;
|
|
1696
|
+
justify-content: center;
|
|
1697
|
+
align-items: center;
|
|
1698
|
+
background: rgba(255, 255, 255, 0.8);
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.loading-spinner {
|
|
1702
|
+
width: 40px;
|
|
1703
|
+
height: 40px;
|
|
1704
|
+
border: 4px solid #f3f3f3;
|
|
1705
|
+
border-top: 4px solid #ed5566;
|
|
1706
|
+
border-radius: 50%;
|
|
1707
|
+
animation: spin 1s linear infinite;
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
@keyframes spin {
|
|
1711
|
+
0% { transform: rotate(0deg); }
|
|
1712
|
+
100% { transform: rotate(360deg); }
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
body, html {
|
|
1823
1716
|
width: 100%;
|
|
1824
1717
|
height: 100%;
|
|
1825
1718
|
}
|
|
@@ -8308,91 +8201,175 @@ to {
|
|
|
8308
8201
|
transform: translateX(0)
|
|
8309
8202
|
}
|
|
8310
8203
|
}
|
|
8311
|
-
.
|
|
8312
|
-
|
|
8313
|
-
cursor: pointer;
|
|
8314
|
-
user-select: none;
|
|
8204
|
+
.count-down .drag-point {
|
|
8205
|
+
cursor: default!important
|
|
8315
8206
|
}
|
|
8316
|
-
|
|
8317
|
-
.
|
|
8318
|
-
display: flex;
|
|
8319
|
-
justify-content: center;
|
|
8320
|
-
align-items: center;
|
|
8207
|
+
|
|
8208
|
+
.count-down .ani-wrap {
|
|
8321
8209
|
width: 100%;
|
|
8210
|
+
height: 100%
|
|
8211
|
+
}
|
|
8212
|
+
|
|
8213
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
8214
|
+
display: -webkit-box;
|
|
8215
|
+
display: -ms-flexbox;
|
|
8216
|
+
display: flex;
|
|
8322
8217
|
height: 100%;
|
|
8323
|
-
|
|
8324
|
-
|
|
8218
|
+
-webkit-box-align: center;
|
|
8219
|
+
-ms-flex-align: center;
|
|
8220
|
+
align-items: center;
|
|
8221
|
+
-webkit-box-pack: center;
|
|
8222
|
+
-ms-flex-pack: center;
|
|
8223
|
+
justify-content: center
|
|
8325
8224
|
}
|
|
8326
|
-
|
|
8327
|
-
.
|
|
8328
|
-
|
|
8225
|
+
|
|
8226
|
+
.count-down .finish-cont {
|
|
8227
|
+
width: 100%
|
|
8329
8228
|
}
|
|
8330
8229
|
|
|
8331
|
-
.
|
|
8230
|
+
.count-down .count-flip {
|
|
8231
|
+
display: -webkit-box;
|
|
8232
|
+
display: -ms-flexbox;
|
|
8332
8233
|
display: flex;
|
|
8234
|
+
height: 100%;
|
|
8235
|
+
-webkit-box-align: center;
|
|
8236
|
+
-ms-flex-align: center;
|
|
8333
8237
|
align-items: center;
|
|
8334
|
-
|
|
8238
|
+
-webkit-box-pack: center;
|
|
8239
|
+
-ms-flex-pack: center;
|
|
8240
|
+
justify-content: center
|
|
8335
8241
|
}
|
|
8336
8242
|
|
|
8337
|
-
.
|
|
8338
|
-
|
|
8339
|
-
|
|
8340
|
-
|
|
8341
|
-
|
|
8342
|
-
|
|
8343
|
-
|
|
8344
|
-
|
|
8345
|
-
|
|
8346
|
-
|
|
8347
|
-
|
|
8348
|
-
|
|
8349
|
-
|
|
8350
|
-
|
|
8351
|
-
|
|
8352
|
-
|
|
8353
|
-
|
|
8354
|
-
|
|
8355
|
-
|
|
8356
|
-
padding: 0 5px 0 0;
|
|
8357
|
-
color: red;
|
|
8358
|
-
vertical-align: middle;
|
|
8359
|
-
}
|
|
8360
|
-
|
|
8361
|
-
input {
|
|
8362
|
-
flex: 1;
|
|
8363
|
-
border: none;
|
|
8364
|
-
outline: none;
|
|
8365
|
-
background: transparent;
|
|
8366
|
-
height: 100%;
|
|
8367
|
-
padding: 0;
|
|
8368
|
-
margin: 0;
|
|
8243
|
+
.count-down .count-flip .numscroll {
|
|
8244
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
8245
|
+
animation: numscroll .4s ease-in-out;
|
|
8246
|
+
-webkit-animation-fill-mode: both;
|
|
8247
|
+
animation-fill-mode: both
|
|
8248
|
+
}
|
|
8249
|
+
|
|
8250
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
8251
|
+
-webkit-transition: all .3s ease-in-out;
|
|
8252
|
+
transition: all .3s ease-in-out;
|
|
8253
|
+
opacity: .6;
|
|
8254
|
+
-webkit-transform: scale(.5)!important;
|
|
8255
|
+
transform: scale(.5)!important
|
|
8256
|
+
}
|
|
8257
|
+
|
|
8258
|
+
@-webkit-keyframes numscroll {
|
|
8259
|
+
0% {
|
|
8260
|
+
-webkit-transform: translateZ(0);
|
|
8261
|
+
transform: translateZ(0)
|
|
8369
8262
|
}
|
|
8370
|
-
|
|
8371
|
-
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
} */
|
|
8375
|
-
|
|
8376
|
-
.dynamic-placeholder-input::placeholder {
|
|
8377
|
-
color: var(--placeholder-color, #999);
|
|
8378
|
-
opacity: 1;
|
|
8263
|
+
|
|
8264
|
+
to {
|
|
8265
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
8266
|
+
transform: translate3d(0,100%,0)
|
|
8379
8267
|
}
|
|
8380
|
-
|
|
8381
|
-
|
|
8268
|
+
}
|
|
8269
|
+
|
|
8270
|
+
@keyframes numscroll {
|
|
8271
|
+
0% {
|
|
8272
|
+
-webkit-transform: translateZ(0);
|
|
8273
|
+
transform: translateZ(0)
|
|
8382
8274
|
}
|
|
8383
|
-
|
|
8384
|
-
|
|
8385
|
-
|
|
8275
|
+
|
|
8276
|
+
to {
|
|
8277
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
8278
|
+
transform: translate3d(0,100%,0)
|
|
8386
8279
|
}
|
|
8387
|
-
|
|
8388
|
-
|
|
8389
|
-
|
|
8280
|
+
}
|
|
8281
|
+
|
|
8282
|
+
.count-down .count-flip .c-com {
|
|
8283
|
+
min-width: 50px;
|
|
8284
|
+
height: auto;
|
|
8285
|
+
margin: 6px;
|
|
8286
|
+
padding: 5px 0 6px;
|
|
8287
|
+
background-color: #111
|
|
8288
|
+
}
|
|
8289
|
+
|
|
8290
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
8291
|
+
display: -webkit-box;
|
|
8292
|
+
display: -ms-flexbox;
|
|
8293
|
+
display: flex;
|
|
8294
|
+
position: relative;
|
|
8295
|
+
width: 100%;
|
|
8296
|
+
height: 100%;
|
|
8297
|
+
-webkit-box-align: center;
|
|
8298
|
+
-ms-flex-align: center;
|
|
8299
|
+
align-items: center
|
|
8300
|
+
}
|
|
8301
|
+
|
|
8302
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
8303
|
+
line-height: 27px
|
|
8304
|
+
}
|
|
8305
|
+
|
|
8306
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
8307
|
+
position: absolute;
|
|
8308
|
+
top: -100%
|
|
8309
|
+
}
|
|
8310
|
+
|
|
8311
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
8312
|
+
-webkit-transform: scale(1);
|
|
8313
|
+
transform: scale(1)
|
|
8314
|
+
}
|
|
8315
|
+
|
|
8316
|
+
.count-down .bottom-center,.count-down .left-bottom,.count-down .left-center,.count-down .left-top,.count-down .right-bottom,.count-down .right-center,.count-down .right-top,.count-down .top-center {
|
|
8317
|
+
display: none!important
|
|
8318
|
+
}
|
|
8319
|
+
|
|
8320
|
+
.c-wrap {
|
|
8321
|
+
width: 100%;
|
|
8322
|
+
height: 100%;
|
|
8323
|
+
overflow: hidden;
|
|
8324
|
+
font-size: 0
|
|
8325
|
+
}
|
|
8326
|
+
|
|
8327
|
+
.c-wrap.c-day-wrap {
|
|
8328
|
+
text-align: center
|
|
8329
|
+
}
|
|
8330
|
+
|
|
8331
|
+
.c-wrap.c-day-wrap .c-num {
|
|
8332
|
+
width: auto
|
|
8333
|
+
}
|
|
8334
|
+
|
|
8335
|
+
.c-wrap .c-num {
|
|
8336
|
+
display: inline-block;
|
|
8337
|
+
width: 50%;
|
|
8338
|
+
overflow: hidden;
|
|
8339
|
+
font-size: 20px;
|
|
8340
|
+
color: #999
|
|
8341
|
+
}
|
|
8342
|
+
|
|
8343
|
+
.c-wrap .c-left .flex-wrap {
|
|
8344
|
+
display: -webkit-box;
|
|
8345
|
+
display: -ms-flexbox;
|
|
8346
|
+
display: flex;
|
|
8347
|
+
-webkit-box-pack: end;
|
|
8348
|
+
-ms-flex-pack: end;
|
|
8349
|
+
justify-content: flex-end
|
|
8350
|
+
}
|
|
8351
|
+
|
|
8352
|
+
.c-wrap .c-text {
|
|
8353
|
+
display: -webkit-box;
|
|
8354
|
+
display: -ms-flexbox;
|
|
8355
|
+
display: flex;
|
|
8356
|
+
width: 100%;
|
|
8357
|
+
font-size: 12px;
|
|
8358
|
+
-webkit-box-pack: center;
|
|
8359
|
+
-ms-flex-pack: center;
|
|
8360
|
+
justify-content: center;
|
|
8361
|
+
-webkit-box-align: center;
|
|
8362
|
+
-ms-flex-align: center;
|
|
8363
|
+
align-items: center;
|
|
8364
|
+
white-space: nowrap
|
|
8365
|
+
}
|
|
8366
|
+
.button {
|
|
8390
8367
|
position: absolute;
|
|
8391
8368
|
cursor: pointer;
|
|
8392
8369
|
user-select: none;
|
|
8393
8370
|
}
|
|
8394
|
-
|
|
8395
|
-
.
|
|
8371
|
+
|
|
8372
|
+
.button .ani-wrap {
|
|
8396
8373
|
display: flex;
|
|
8397
8374
|
justify-content: center;
|
|
8398
8375
|
align-items: center;
|
|
@@ -8401,12 +8378,12 @@ to {
|
|
|
8401
8378
|
overflow: hidden;
|
|
8402
8379
|
transition: opacity 0.2s;
|
|
8403
8380
|
}
|
|
8404
|
-
|
|
8405
|
-
.
|
|
8381
|
+
|
|
8382
|
+
.button .ani-wrap:hover {
|
|
8406
8383
|
opacity: 0.9;
|
|
8407
8384
|
}
|
|
8408
8385
|
|
|
8409
|
-
.
|
|
8386
|
+
.button-content {
|
|
8410
8387
|
display: flex;
|
|
8411
8388
|
align-items: center;
|
|
8412
8389
|
justify-content: center;
|
|
@@ -8414,11 +8391,61 @@ to {
|
|
|
8414
8391
|
|
|
8415
8392
|
.btn-text {
|
|
8416
8393
|
margin-left: 10px;
|
|
8394
|
+
}.ele-effect {
|
|
8395
|
+
will-change: transform;
|
|
8417
8396
|
}
|
|
8418
8397
|
|
|
8398
|
+
.ele-effect .effect-wrap {
|
|
8399
|
+
position: relative;
|
|
8400
|
+
width: 100%;
|
|
8401
|
+
height: 100%;
|
|
8402
|
+
}
|
|
8419
8403
|
|
|
8420
|
-
.
|
|
8421
|
-
|
|
8404
|
+
.particle {
|
|
8405
|
+
position: absolute;
|
|
8406
|
+
background-repeat: no-repeat;
|
|
8407
|
+
background-size: contain;
|
|
8408
|
+
animation-name: falling;
|
|
8409
|
+
animation-timing-function: linear;
|
|
8410
|
+
animation-iteration-count: infinite;
|
|
8411
|
+
will-change: transform;
|
|
8412
|
+
}
|
|
8413
|
+
|
|
8414
|
+
@keyframes falling {
|
|
8415
|
+
0% {
|
|
8416
|
+
transform: translateY(0) rotate(0deg);
|
|
8417
|
+
opacity: 1;
|
|
8418
|
+
}
|
|
8419
|
+
80% {
|
|
8420
|
+
opacity: 0.8;
|
|
8421
|
+
}
|
|
8422
|
+
100% {
|
|
8423
|
+
transform: translateY(100vh) rotate(360deg);
|
|
8424
|
+
opacity: 0;
|
|
8425
|
+
}
|
|
8426
|
+
}
|
|
8427
|
+
.ele-lottie .ele-lotwrap {
|
|
8428
|
+
overflow: hidden
|
|
8429
|
+
}
|
|
8430
|
+
|
|
8431
|
+
.ele-effect .effect-wrap {
|
|
8432
|
+
position: relative;
|
|
8433
|
+
overflow: hidden;
|
|
8434
|
+
width: 100%;
|
|
8435
|
+
height: 100%
|
|
8436
|
+
}
|
|
8437
|
+
|
|
8438
|
+
.ele-effect .e-small {
|
|
8439
|
+
position: absolute;
|
|
8440
|
+
width: 24px;
|
|
8441
|
+
height: 24px;
|
|
8442
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
8443
|
+
background-size: cover;
|
|
8444
|
+
background-repeat: no-repeat;
|
|
8445
|
+
-webkit-transform-origin: center;
|
|
8446
|
+
transform-origin: center;
|
|
8447
|
+
-webkit-animation: snow 5s linear infinite;
|
|
8448
|
+
animation: snow 5s linear infinite
|
|
8422
8449
|
}.form-submit {
|
|
8423
8450
|
cursor: pointer;
|
|
8424
8451
|
transition: all 0.2s;
|
|
@@ -8465,7 +8492,57 @@ transform: none !important;
|
|
|
8465
8492
|
.form-submit:disabled {
|
|
8466
8493
|
opacity: 0.7;
|
|
8467
8494
|
cursor: not-allowed;
|
|
8468
|
-
}
|
|
8495
|
+
}.form-input {
|
|
8496
|
+
position: absolute;
|
|
8497
|
+
}
|
|
8498
|
+
|
|
8499
|
+
.input-wrapper {
|
|
8500
|
+
display: flex;
|
|
8501
|
+
align-items: center;
|
|
8502
|
+
width: 100%;
|
|
8503
|
+
height: 100%;
|
|
8504
|
+
padding: 0 10px;
|
|
8505
|
+
box-sizing: border-box;
|
|
8506
|
+
position: relative;
|
|
8507
|
+
transition: border-color 0.3s;
|
|
8508
|
+
}
|
|
8509
|
+
|
|
8510
|
+
.required-marker {
|
|
8511
|
+
font-size: 12px;
|
|
8512
|
+
padding: 0 5px 0 0;
|
|
8513
|
+
color: red;
|
|
8514
|
+
vertical-align: middle;
|
|
8515
|
+
}
|
|
8516
|
+
|
|
8517
|
+
input {
|
|
8518
|
+
flex: 1;
|
|
8519
|
+
border: none;
|
|
8520
|
+
outline: none;
|
|
8521
|
+
background: transparent;
|
|
8522
|
+
height: 100%;
|
|
8523
|
+
padding: 0;
|
|
8524
|
+
margin: 0;
|
|
8525
|
+
}
|
|
8526
|
+
/*
|
|
8527
|
+
input::placeholder {
|
|
8528
|
+
color: #ccc;
|
|
8529
|
+
opacity: 1;
|
|
8530
|
+
} */
|
|
8531
|
+
|
|
8532
|
+
.dynamic-placeholder-input::placeholder {
|
|
8533
|
+
color: var(--placeholder-color, #999);
|
|
8534
|
+
opacity: 1;
|
|
8535
|
+
}
|
|
8536
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
8537
|
+
color: var(--placeholder-color, #999);
|
|
8538
|
+
}
|
|
8539
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
8540
|
+
color: var(--placeholder-color, #999);
|
|
8541
|
+
opacity: 1;
|
|
8542
|
+
}
|
|
8543
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
8544
|
+
color: var(--placeholder-color, #999);
|
|
8545
|
+
}/* .ele-form {
|
|
8469
8546
|
position: absolute;
|
|
8470
8547
|
user-select: none;
|
|
8471
8548
|
} */
|
|
@@ -8563,84 +8640,7 @@ cursor: not-allowed;
|
|
|
8563
8640
|
width: 100%;
|
|
8564
8641
|
height: 100%;
|
|
8565
8642
|
z-index: 1000;
|
|
8566
|
-
}
|
|
8567
|
-
position: fixed;
|
|
8568
|
-
left: 0;
|
|
8569
|
-
top: 0;
|
|
8570
|
-
width: 100%;
|
|
8571
|
-
height: 100%;
|
|
8572
|
-
display: -ms-flexbox;
|
|
8573
|
-
display: flex;
|
|
8574
|
-
-ms-flex-align: center;
|
|
8575
|
-
align-items: center;
|
|
8576
|
-
-ms-flex-pack: center;
|
|
8577
|
-
justify-content: center;
|
|
8578
|
-
z-index: 999;
|
|
8579
|
-
background-color: rgba(0,0,0,.7)
|
|
8580
|
-
}
|
|
8581
|
-
|
|
8582
|
-
#page-list .tip-cover .tip {
|
|
8583
|
-
width: 80%;
|
|
8584
|
-
max-width: 250px;
|
|
8585
|
-
padding: 10px;
|
|
8586
|
-
border-radius: 5px;
|
|
8587
|
-
background-color: #fff
|
|
8588
|
-
}
|
|
8589
|
-
|
|
8590
|
-
#page-list .tip-cover .tip-btn {
|
|
8591
|
-
display: block;
|
|
8592
|
-
margin: 25px auto;
|
|
8593
|
-
width: 120px;
|
|
8594
|
-
height: 30px;
|
|
8595
|
-
color: #fff;
|
|
8596
|
-
border-radius: 4px;
|
|
8597
|
-
text-align: center;
|
|
8598
|
-
font-size: 14px;
|
|
8599
|
-
line-height: 30px;
|
|
8600
|
-
background: #ed5566
|
|
8601
|
-
}
|
|
8602
|
-
|
|
8603
|
-
#page-list .tip-cover .tip-content {
|
|
8604
|
-
font-size: 14px;
|
|
8605
|
-
padding-top: 30px;
|
|
8606
|
-
}
|
|
8607
|
-
|
|
8608
|
-
.tip-cover {
|
|
8609
|
-
position: fixed;
|
|
8610
|
-
left: 0;
|
|
8611
|
-
top: 0;
|
|
8612
|
-
width: 100%;
|
|
8613
|
-
height: 100%;
|
|
8614
|
-
display: -ms-flexbox;
|
|
8615
|
-
display: flex;
|
|
8616
|
-
-ms-flex-align: center;
|
|
8617
|
-
align-items: center;
|
|
8618
|
-
-ms-flex-pack: center;
|
|
8619
|
-
justify-content: center;
|
|
8620
|
-
z-index: 999;
|
|
8621
|
-
background-color: rgba(0,0,0,.7)
|
|
8622
|
-
}
|
|
8623
|
-
|
|
8624
|
-
.tip-cover .tip {
|
|
8625
|
-
width: 80%;
|
|
8626
|
-
max-width: 250px;
|
|
8627
|
-
padding: 5px;
|
|
8628
|
-
border-radius: 3px;
|
|
8629
|
-
background-color: #fff
|
|
8630
|
-
}
|
|
8631
|
-
|
|
8632
|
-
.tip-cover .tip-btn {
|
|
8633
|
-
display: block;
|
|
8634
|
-
margin: 13px auto;
|
|
8635
|
-
width: 64px;
|
|
8636
|
-
height: 20px;
|
|
8637
|
-
color: #fff;
|
|
8638
|
-
border-radius: 4px;
|
|
8639
|
-
text-align: center;
|
|
8640
|
-
font-size: 14px;
|
|
8641
|
-
line-height: 20px;
|
|
8642
|
-
background: #ed5566;
|
|
8643
|
-
} /* .ele-form {
|
|
8643
|
+
}/* .ele-form {
|
|
8644
8644
|
position: absolute;
|
|
8645
8645
|
user-select: none;
|
|
8646
8646
|
}
|
|
@@ -9214,19 +9214,21 @@ cursor: not-allowed;
|
|
|
9214
9214
|
color: #F44336; /* 失败的红色 */
|
|
9215
9215
|
}
|
|
9216
9216
|
|
|
9217
|
-
.global.
|
|
9217
|
+
.global.video {
|
|
9218
9218
|
width: 35px;
|
|
9219
9219
|
height: 55px;
|
|
9220
9220
|
border-radius: 50%;
|
|
9221
9221
|
text-align: center;
|
|
9222
|
-
margin-bottom:
|
|
9222
|
+
margin-bottom: 5px;
|
|
9223
9223
|
border: 2px solid #fff;
|
|
9224
9224
|
cursor: pointer;
|
|
9225
9225
|
}
|
|
9226
|
-
.icon-
|
|
9226
|
+
.icon-shipin2:before { content: "\E611"; }
|
|
9227
9227
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9228
|
-
.global.
|
|
9229
|
-
|
|
9228
|
+
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
9229
|
+
}
|
|
9230
|
+
|
|
9231
|
+
.global.map {
|
|
9230
9232
|
width: 35px;
|
|
9231
9233
|
height: 55px;
|
|
9232
9234
|
border-radius: 50%;
|
|
@@ -9235,24 +9237,22 @@ cursor: not-allowed;
|
|
|
9235
9237
|
border: 2px solid #fff;
|
|
9236
9238
|
cursor: pointer;
|
|
9237
9239
|
}
|
|
9238
|
-
.icon-
|
|
9240
|
+
.icon-daohang1:before { content: "\E612"; }
|
|
9239
9241
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9240
|
-
.global.
|
|
9241
|
-
.global.
|
|
9242
|
+
.global.map > span { font-size: 10px; line-height: 20px; display: block;}
|
|
9243
|
+
.global.tel {
|
|
9242
9244
|
width: 35px;
|
|
9243
9245
|
height: 55px;
|
|
9244
9246
|
border-radius: 50%;
|
|
9245
9247
|
text-align: center;
|
|
9246
|
-
margin-bottom:
|
|
9248
|
+
margin-bottom: 15px;
|
|
9247
9249
|
border: 2px solid #fff;
|
|
9248
9250
|
cursor: pointer;
|
|
9249
9251
|
}
|
|
9250
|
-
.icon-
|
|
9252
|
+
.icon-dianhua:before { content: "\E60E"; }
|
|
9251
9253
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9252
|
-
.global.
|
|
9253
|
-
|
|
9254
|
-
|
|
9255
|
-
.global.map {
|
|
9254
|
+
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
9255
|
+
.global.receipt {
|
|
9256
9256
|
width: 35px;
|
|
9257
9257
|
height: 55px;
|
|
9258
9258
|
border-radius: 50%;
|
|
@@ -9261,6 +9261,6 @@ cursor: not-allowed;
|
|
|
9261
9261
|
border: 2px solid #fff;
|
|
9262
9262
|
cursor: pointer;
|
|
9263
9263
|
}
|
|
9264
|
-
.icon-
|
|
9264
|
+
.icon-liuyan:before { content: "\E636"; }
|
|
9265
9265
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9266
|
-
.global.
|
|
9266
|
+
.global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
|