unika-components 1.1.25 → 1.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/unika-components.css +981 -981
- package/package.json +1 -1
|
@@ -1,4 +1,76 @@
|
|
|
1
1
|
|
|
2
|
+
.form-input {
|
|
3
|
+
position: absolute;
|
|
4
|
+
transform: translate3d(0, 0, 0);
|
|
5
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
6
|
+
backface-visibility: hidden;
|
|
7
|
+
-webkit-backface-visibility: hidden;
|
|
8
|
+
will-change: transform;
|
|
9
|
+
z-index: 1;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.input-wrapper {
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
width: 100%;
|
|
16
|
+
height: 100%;
|
|
17
|
+
padding: 0 10px;
|
|
18
|
+
box-sizing: border-box;
|
|
19
|
+
position: relative;
|
|
20
|
+
transition: border-color 0.3s;
|
|
21
|
+
transform: translate3d(0, 0, 0);
|
|
22
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
23
|
+
contain: layout;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.required-marker {
|
|
27
|
+
font-size: 12px;
|
|
28
|
+
padding: 0 5px 0 0;
|
|
29
|
+
color: red;
|
|
30
|
+
vertical-align: middle;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
input {
|
|
34
|
+
flex: 1;
|
|
35
|
+
border: none;
|
|
36
|
+
outline: none;
|
|
37
|
+
background: transparent;
|
|
38
|
+
height: 100%;
|
|
39
|
+
padding: 0;
|
|
40
|
+
margin: 0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.dynamic-placeholder-input::placeholder {
|
|
44
|
+
color: var(--placeholder-color, #999);
|
|
45
|
+
opacity: 1;
|
|
46
|
+
}
|
|
47
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
48
|
+
color: var(--placeholder-color, #999);
|
|
49
|
+
}
|
|
50
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
51
|
+
color: var(--placeholder-color, #999);
|
|
52
|
+
opacity: 1;
|
|
53
|
+
}
|
|
54
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
55
|
+
color: var(--placeholder-color, #999);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* 安卓特定样式 */
|
|
59
|
+
@supports (-webkit-touch-callout: none) {
|
|
60
|
+
.input-wrapper {
|
|
61
|
+
position: relative;
|
|
62
|
+
z-index: 1;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/* 移动设备键盘弹出时的调整 */
|
|
67
|
+
@media screen and (max-aspect-ratio: 13/9) {
|
|
68
|
+
.form-input {
|
|
69
|
+
position: relative;
|
|
70
|
+
margin-bottom: env(keyboard-inset-height, 0px);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
2
74
|
/* 父容器样式调整 */
|
|
3
75
|
#index {
|
|
4
76
|
position: relative;
|
|
@@ -90,78 +162,6 @@
|
|
|
90
162
|
}
|
|
91
163
|
}
|
|
92
164
|
|
|
93
|
-
.form-input {
|
|
94
|
-
position: absolute;
|
|
95
|
-
transform: translate3d(0, 0, 0);
|
|
96
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
97
|
-
backface-visibility: hidden;
|
|
98
|
-
-webkit-backface-visibility: hidden;
|
|
99
|
-
will-change: transform;
|
|
100
|
-
z-index: 1;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.input-wrapper {
|
|
104
|
-
display: flex;
|
|
105
|
-
align-items: center;
|
|
106
|
-
width: 100%;
|
|
107
|
-
height: 100%;
|
|
108
|
-
padding: 0 10px;
|
|
109
|
-
box-sizing: border-box;
|
|
110
|
-
position: relative;
|
|
111
|
-
transition: border-color 0.3s;
|
|
112
|
-
transform: translate3d(0, 0, 0);
|
|
113
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
114
|
-
contain: layout;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.required-marker {
|
|
118
|
-
font-size: 12px;
|
|
119
|
-
padding: 0 5px 0 0;
|
|
120
|
-
color: red;
|
|
121
|
-
vertical-align: middle;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
input {
|
|
125
|
-
flex: 1;
|
|
126
|
-
border: none;
|
|
127
|
-
outline: none;
|
|
128
|
-
background: transparent;
|
|
129
|
-
height: 100%;
|
|
130
|
-
padding: 0;
|
|
131
|
-
margin: 0;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.dynamic-placeholder-input::placeholder {
|
|
135
|
-
color: var(--placeholder-color, #999);
|
|
136
|
-
opacity: 1;
|
|
137
|
-
}
|
|
138
|
-
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
139
|
-
color: var(--placeholder-color, #999);
|
|
140
|
-
}
|
|
141
|
-
.dynamic-placeholder-input::-moz-placeholder {
|
|
142
|
-
color: var(--placeholder-color, #999);
|
|
143
|
-
opacity: 1;
|
|
144
|
-
}
|
|
145
|
-
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
146
|
-
color: var(--placeholder-color, #999);
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
/* 安卓特定样式 */
|
|
150
|
-
@supports (-webkit-touch-callout: none) {
|
|
151
|
-
.input-wrapper {
|
|
152
|
-
position: relative;
|
|
153
|
-
z-index: 1;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/* 移动设备键盘弹出时的调整 */
|
|
158
|
-
@media screen and (max-aspect-ratio: 13/9) {
|
|
159
|
-
.form-input {
|
|
160
|
-
position: relative;
|
|
161
|
-
margin-bottom: env(keyboard-inset-height, 0px);
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
|
|
165
165
|
.form-container {
|
|
166
166
|
position: relative;
|
|
167
167
|
width: 100%;
|
|
@@ -177,107 +177,7 @@ input {
|
|
|
177
177
|
max-height: 100%;
|
|
178
178
|
width: 100%;
|
|
179
179
|
}
|
|
180
|
-
.ele-shape {
|
|
181
|
-
position: absolute;
|
|
182
|
-
overflow: hidden;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.ani-wrap {
|
|
186
|
-
width: 100%;
|
|
187
|
-
height: 100%;
|
|
188
|
-
box-sizing: border-box;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.e-shape {
|
|
192
|
-
width: 100%;
|
|
193
|
-
height: 100%;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
.svg-container :deep(svg) {
|
|
197
|
-
width: 100%;
|
|
198
|
-
height: 100%;
|
|
199
|
-
display: block;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.svg-loading,
|
|
203
|
-
.svg-error {
|
|
204
|
-
display: flex;
|
|
205
|
-
align-items: center;
|
|
206
|
-
justify-content: center;
|
|
207
|
-
width: 100%;
|
|
208
|
-
height: 100%;
|
|
209
|
-
background: rgba(0,0,0,0.05);
|
|
210
|
-
}#audio {
|
|
211
|
-
position: absolute;
|
|
212
|
-
right: 10px;
|
|
213
|
-
top: 10px;
|
|
214
|
-
z-index: 103;
|
|
215
|
-
width: 30px;
|
|
216
|
-
height: 30px;
|
|
217
|
-
display: flex;
|
|
218
|
-
align-items: center;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
#audio .mrotate {
|
|
222
|
-
animation: mrotate 5s linear infinite;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
@keyframes mrotate {
|
|
226
|
-
to {
|
|
227
|
-
transform: rotate(1turn);
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
#audio .audio {
|
|
232
|
-
width: 100%;
|
|
233
|
-
height: 100%;
|
|
234
|
-
display: flex;
|
|
235
|
-
align-items: center;
|
|
236
|
-
justify-content: center;
|
|
237
|
-
color: #fff;
|
|
238
|
-
background: #666;
|
|
239
|
-
border-radius: 50%;
|
|
240
|
-
overflow: hidden;
|
|
241
|
-
cursor: pointer;
|
|
242
|
-
transition: all 0.3s ease;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
#audio .audio.a-border {
|
|
246
|
-
border: 1px solid #fff;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
#audio .audio .music-icon {
|
|
250
|
-
display: block;
|
|
251
|
-
width: 60%;
|
|
252
|
-
height: 60%;
|
|
253
|
-
object-fit: contain;
|
|
254
|
-
}
|
|
255
180
|
|
|
256
|
-
#audio .audio .iconfont {
|
|
257
|
-
font-size: 2opx;
|
|
258
|
-
line-height: 1;
|
|
259
|
-
}
|
|
260
|
-
#audio .icon-cancel {
|
|
261
|
-
position: absolute;
|
|
262
|
-
width: 100%;
|
|
263
|
-
height: 100%;
|
|
264
|
-
border-radius: 50%;
|
|
265
|
-
overflow: hidden;
|
|
266
|
-
padding: 15px 0;
|
|
267
|
-
}
|
|
268
|
-
#audio .icon-cancel .icon-h {
|
|
269
|
-
transform: rotate(45deg);
|
|
270
|
-
width: 100%;
|
|
271
|
-
height: 2px;
|
|
272
|
-
background: #fff;
|
|
273
|
-
}
|
|
274
|
-
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
275
|
-
content: '';
|
|
276
|
-
position: absolute;
|
|
277
|
-
width: 100%;
|
|
278
|
-
height: 2px;
|
|
279
|
-
background: #fff;
|
|
280
|
-
}
|
|
281
181
|
.ele-text {
|
|
282
182
|
position: relative;
|
|
283
183
|
}
|
|
@@ -344,259 +244,349 @@ input {
|
|
|
344
244
|
transform: scale(1);
|
|
345
245
|
opacity: 1;
|
|
346
246
|
}
|
|
347
|
-
}.element-ditu .ani-wrap {
|
|
348
|
-
width: 100%;
|
|
349
|
-
height: 100%;
|
|
350
|
-
overflow: hidden
|
|
351
247
|
}
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
248
|
+
@keyframes jumpheart {
|
|
249
|
+
to {
|
|
250
|
+
-webkit-transform: scale(1.2);
|
|
251
|
+
transform: scale(1.2)
|
|
252
|
+
}
|
|
356
253
|
}
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
width:
|
|
360
|
-
height:
|
|
361
|
-
|
|
362
|
-
display: -ms-flexbox;
|
|
363
|
-
display: flex;
|
|
364
|
-
-webkit-box-align: center;
|
|
365
|
-
-ms-flex-align: center;
|
|
366
|
-
align-items: center;
|
|
367
|
-
padding: 0;
|
|
368
|
-
-webkit-box-pack: center;
|
|
369
|
-
-ms-flex-pack: center;
|
|
370
|
-
justify-content: center;
|
|
371
|
-
background: inherit;
|
|
372
|
-
color: inherit;
|
|
373
|
-
border: none
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.element-ditu .center-map {
|
|
377
|
-
width: 100%;
|
|
378
|
-
height: 100%;
|
|
379
|
-
background: #fff
|
|
254
|
+
.ele-calendar {
|
|
255
|
+
position: relative;
|
|
256
|
+
width: 325px !important;
|
|
257
|
+
min-height: 325px !important;
|
|
258
|
+
height: auto !important;
|
|
380
259
|
}
|
|
381
260
|
|
|
382
|
-
.
|
|
383
|
-
|
|
384
|
-
width: 100%;
|
|
385
|
-
height: 100%;
|
|
386
|
-
top: 0
|
|
387
|
-
}
|
|
388
|
-
.map-iframe {
|
|
389
|
-
width: 100%;
|
|
390
|
-
height: 100%;
|
|
391
|
-
}.count-down .drag-point {
|
|
392
|
-
cursor: default!important
|
|
261
|
+
.ele-calendar .drag-point {
|
|
262
|
+
cursor: default !important;
|
|
393
263
|
}
|
|
394
264
|
|
|
395
|
-
.
|
|
265
|
+
.ele-calendar .ani-wrap {
|
|
266
|
+
position: relative;
|
|
396
267
|
width: 100%;
|
|
397
|
-
height:
|
|
268
|
+
min-height: 325px !important;
|
|
269
|
+
height: auto !important;
|
|
270
|
+
padding: 22px 0;
|
|
398
271
|
}
|
|
399
272
|
|
|
400
|
-
.
|
|
401
|
-
display: -webkit-box;
|
|
402
|
-
display: -ms-flexbox;
|
|
273
|
+
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
403
274
|
display: flex;
|
|
404
|
-
|
|
405
|
-
-
|
|
406
|
-
-
|
|
407
|
-
|
|
408
|
-
-webkit-box-pack: center;
|
|
409
|
-
-ms-flex-pack: center;
|
|
410
|
-
justify-content: center
|
|
275
|
+
justify-content: space-between;
|
|
276
|
+
align-items: flex-end;
|
|
277
|
+
line-height: 1;
|
|
278
|
+
padding: 0 47px 20px;
|
|
411
279
|
}
|
|
412
280
|
|
|
413
|
-
.
|
|
414
|
-
|
|
281
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
282
|
+
font-size: 25px;
|
|
283
|
+
padding-bottom: 4px;
|
|
415
284
|
}
|
|
416
285
|
|
|
417
|
-
.
|
|
418
|
-
|
|
419
|
-
display: -ms-flexbox;
|
|
420
|
-
display: flex;
|
|
421
|
-
height: 100%;
|
|
422
|
-
-webkit-box-align: center;
|
|
423
|
-
-ms-flex-align: center;
|
|
424
|
-
align-items: center;
|
|
425
|
-
-webkit-box-pack: center;
|
|
426
|
-
-ms-flex-pack: center;
|
|
427
|
-
justify-content: center
|
|
286
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
287
|
+
font-size: 25px;
|
|
428
288
|
}
|
|
429
289
|
|
|
430
|
-
.
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
-
|
|
434
|
-
animation-fill-mode: both
|
|
290
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
291
|
+
position: relative;
|
|
292
|
+
top: 2px;
|
|
293
|
+
font-size: 57px;
|
|
435
294
|
}
|
|
436
295
|
|
|
437
|
-
.
|
|
438
|
-
|
|
439
|
-
transition: all .3s ease-in-out;
|
|
440
|
-
opacity: .6;
|
|
441
|
-
-webkit-transform: scale(.5)!important;
|
|
442
|
-
transform: scale(.5)!important
|
|
296
|
+
.ele-calendar .ani-wrap .can-wrap .can-main {
|
|
297
|
+
padding: 0 23px;
|
|
443
298
|
}
|
|
444
299
|
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
453
|
-
transform: translate3d(0,100%,0)
|
|
454
|
-
}
|
|
300
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week {
|
|
301
|
+
display: flex;
|
|
302
|
+
justify-content: flex-start;
|
|
303
|
+
height: 25px;
|
|
304
|
+
line-height: 25px;
|
|
305
|
+
padding: 0 10px;
|
|
306
|
+
border-radius: 13px;
|
|
455
307
|
}
|
|
456
308
|
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
to {
|
|
464
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
465
|
-
transform: translate3d(0,100%,0)
|
|
466
|
-
}
|
|
309
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
|
|
310
|
+
width: 14.2%;
|
|
311
|
+
text-align: center;
|
|
312
|
+
color: #fff;
|
|
313
|
+
font-size: 12px;
|
|
467
314
|
}
|
|
468
315
|
|
|
469
|
-
.
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
padding: 5px 0 6px;
|
|
474
|
-
background-color: #111
|
|
316
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
|
|
317
|
+
font-size: 0;
|
|
318
|
+
padding: 5px 10px 0;
|
|
319
|
+
text-align: left;
|
|
475
320
|
}
|
|
476
321
|
|
|
477
|
-
.
|
|
478
|
-
display: -webkit-box;
|
|
479
|
-
display: -ms-flexbox;
|
|
480
|
-
display: flex;
|
|
322
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
|
|
481
323
|
position: relative;
|
|
482
|
-
|
|
483
|
-
height:
|
|
484
|
-
-
|
|
485
|
-
-
|
|
486
|
-
align-items: center
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
490
|
-
line-height: 27px
|
|
324
|
+
display: inline-block;
|
|
325
|
+
height: 25px;
|
|
326
|
+
text-align: center;
|
|
327
|
+
margin-top: 8px;
|
|
491
328
|
}
|
|
492
329
|
|
|
493
|
-
.
|
|
494
|
-
|
|
495
|
-
top: -100%
|
|
330
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
|
|
331
|
+
display: block;
|
|
496
332
|
}
|
|
497
333
|
|
|
498
|
-
.
|
|
499
|
-
|
|
500
|
-
transform: scale(1)
|
|
334
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
|
|
335
|
+
color: #fff !important;
|
|
501
336
|
}
|
|
502
337
|
|
|
503
|
-
.
|
|
504
|
-
|
|
338
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
|
|
339
|
+
animation: jumpheart 0.8s ease infinite alternate;
|
|
505
340
|
}
|
|
506
341
|
|
|
507
|
-
.
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
overflow: hidden;
|
|
511
|
-
font-size: 0
|
|
342
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
|
|
343
|
+
display: none;
|
|
344
|
+
font-size: 26px;
|
|
512
345
|
}
|
|
513
346
|
|
|
514
|
-
.
|
|
515
|
-
|
|
347
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
|
|
348
|
+
position: absolute;
|
|
349
|
+
left: 50%;
|
|
350
|
+
top: 50%;
|
|
351
|
+
z-index: 1;
|
|
352
|
+
color: #666;
|
|
353
|
+
font-size: 13px;
|
|
354
|
+
transform: translate(-50%, -52%);
|
|
516
355
|
}
|
|
517
356
|
|
|
518
|
-
.
|
|
519
|
-
|
|
357
|
+
.ele-calendar .bottom-center,
|
|
358
|
+
.ele-calendar .left-center,
|
|
359
|
+
.ele-calendar .right-center,
|
|
360
|
+
.ele-calendar .top-center {
|
|
361
|
+
display: none !important;
|
|
520
362
|
}
|
|
521
363
|
|
|
522
|
-
.
|
|
523
|
-
|
|
524
|
-
width: 50%;
|
|
525
|
-
overflow: hidden;
|
|
526
|
-
font-size: 20px;
|
|
527
|
-
color: #999
|
|
364
|
+
.ele-calendar .ani-wrap .can-wrap2 {
|
|
365
|
+
padding: 21px 23px 0
|
|
528
366
|
}
|
|
529
367
|
|
|
530
|
-
.
|
|
368
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top {
|
|
531
369
|
display: -webkit-box;
|
|
532
370
|
display: -ms-flexbox;
|
|
533
371
|
display: flex;
|
|
534
|
-
-webkit-box-pack:
|
|
535
|
-
-ms-flex-pack:
|
|
536
|
-
justify-content:
|
|
372
|
+
-webkit-box-pack: justify;
|
|
373
|
+
-ms-flex-pack: justify;
|
|
374
|
+
justify-content: space-between;
|
|
375
|
+
-webkit-box-align: end;
|
|
376
|
+
-ms-flex-align: end;
|
|
377
|
+
align-items: flex-end;
|
|
378
|
+
line-height: 1;
|
|
379
|
+
padding: 0 16px 22px;
|
|
380
|
+
font-size: 36px
|
|
537
381
|
}
|
|
538
382
|
|
|
539
|
-
.
|
|
383
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top span {
|
|
384
|
+
font-size: 16px
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
|
|
540
388
|
display: -webkit-box;
|
|
541
389
|
display: -ms-flexbox;
|
|
542
390
|
display: flex;
|
|
543
|
-
|
|
391
|
+
-webkit-box-pack: start;
|
|
392
|
+
-ms-flex-pack: start;
|
|
393
|
+
justify-content: flex-start;
|
|
394
|
+
height: 25px;
|
|
395
|
+
line-height: 25px;
|
|
396
|
+
padding: 0 10px;
|
|
397
|
+
border-radius: 13px
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
|
|
401
|
+
width: 14.2%;
|
|
402
|
+
text-align: center;
|
|
403
|
+
color: #fff;
|
|
544
404
|
font-size: 12px;
|
|
545
|
-
-
|
|
546
|
-
-ms-flex-pack: center;
|
|
547
|
-
justify-content: center;
|
|
548
|
-
-webkit-box-align: center;
|
|
549
|
-
-ms-flex-align: center;
|
|
550
|
-
align-items: center;
|
|
551
|
-
white-space: nowrap
|
|
405
|
+
font-weight: 600
|
|
552
406
|
}
|
|
553
407
|
|
|
554
|
-
.
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
.
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
408
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
|
|
409
|
+
position: relative
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
|
|
413
|
+
position: absolute;
|
|
414
|
+
white-space: nowrap;
|
|
415
|
+
left: 50%;
|
|
416
|
+
top: 15%;
|
|
417
|
+
-webkit-transform: translateX(-50%);
|
|
418
|
+
transform: translateX(-50%);
|
|
419
|
+
font-size: 76px;
|
|
420
|
+
opacity: .1;
|
|
421
|
+
font-weight: 600
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
|
|
425
|
+
font-size: 0;
|
|
426
|
+
padding: 5px 10px 0;
|
|
427
|
+
text-align: left
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
|
|
431
|
+
position: relative;
|
|
432
|
+
display: inline-block;
|
|
433
|
+
width: 14.2%;
|
|
434
|
+
height: 25px;
|
|
435
|
+
text-align: center;
|
|
436
|
+
margin-top: 8px
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
|
|
440
|
+
display: block;
|
|
441
|
+
position: absolute;
|
|
442
|
+
left: 17%;
|
|
443
|
+
top: 0;
|
|
444
|
+
font-size: 25px
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
|
|
448
|
+
color: #fff!important
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.ele-calendar .ani-wrap .can-wrap2 .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
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
|
|
457
|
+
display: none;
|
|
458
|
+
font-size: 26px
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
|
|
462
|
+
position: absolute;
|
|
463
|
+
left: 50%;
|
|
464
|
+
top: 50%;
|
|
465
|
+
z-index: 1;
|
|
466
|
+
color: #666;
|
|
467
|
+
font-size: 13px;
|
|
468
|
+
-webkit-transform: translate(-50%,-52%);
|
|
469
|
+
transform: translate(-50%,-52%)
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top {
|
|
473
|
+
display: -webkit-box;
|
|
474
|
+
display: -ms-flexbox;
|
|
475
|
+
display: flex;
|
|
476
|
+
-webkit-box-pack: justify;
|
|
477
|
+
-ms-flex-pack: justify;
|
|
478
|
+
justify-content: space-between;
|
|
479
|
+
-webkit-box-align: end;
|
|
480
|
+
-ms-flex-align: end;
|
|
481
|
+
align-items: flex-end;
|
|
482
|
+
line-height: 1;
|
|
483
|
+
padding: 18px 33px 10px;
|
|
484
|
+
font-size: 36px;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top span {
|
|
488
|
+
font-size: 16px
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
|
|
492
|
+
font-size: 20px
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
|
|
496
|
+
display: -webkit-box;
|
|
497
|
+
display: -ms-flexbox;
|
|
498
|
+
display: flex;
|
|
499
|
+
-webkit-box-pack: start;
|
|
500
|
+
-ms-flex-pack: start;
|
|
501
|
+
justify-content: flex-start;
|
|
502
|
+
height: 40px;
|
|
503
|
+
line-height: 40px;
|
|
504
|
+
padding: 0 34px;
|
|
505
|
+
border-bottom: 1px solid
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
|
|
509
|
+
width: 14.2%;
|
|
510
|
+
text-align: center;
|
|
511
|
+
color: #fff;
|
|
512
|
+
font-size: 12px;
|
|
513
|
+
font-weight: 600
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
517
|
+
position: relative
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
|
|
521
|
+
font-size: 0;
|
|
522
|
+
padding: 5px 33px 0;
|
|
523
|
+
text-align: left
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
|
|
527
|
+
position: relative;
|
|
528
|
+
display: inline-block;
|
|
529
|
+
width: 14.2%;
|
|
530
|
+
height: 25px;
|
|
531
|
+
text-align: center;
|
|
532
|
+
margin-top: 8px;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
|
|
536
|
+
color: #eee
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
|
|
540
|
+
display: block;
|
|
541
|
+
position: absolute;
|
|
542
|
+
left: 12%;
|
|
543
|
+
top: 2px;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
|
|
547
|
+
font-size: 12px
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
|
|
551
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
552
|
+
animation: jumpheart .8s ease infinite alternate
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
@keyframes jumpheart {
|
|
556
|
+
to {
|
|
557
|
+
-webkit-transform: scale(1.2);
|
|
558
|
+
transform: scale(1.2)
|
|
595
559
|
}
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
|
|
563
|
+
display: none;
|
|
564
|
+
font-size: 26px
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
|
|
568
|
+
position: absolute;
|
|
569
|
+
left: 50%;
|
|
570
|
+
top: 50%;
|
|
571
|
+
z-index: 1;
|
|
572
|
+
color: #666;
|
|
573
|
+
font-size: 13px;
|
|
574
|
+
-webkit-transform: translate(-50%,-52%);
|
|
575
|
+
transform: translate(-50%,-52%)
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
579
|
+
display: none!important
|
|
580
|
+
}
|
|
581
|
+
.icon-tuoyuanxing:before {
|
|
582
|
+
content: "\E6A7";
|
|
583
|
+
}
|
|
584
|
+
.icon-zan1:before {
|
|
585
|
+
content: "\E66D";
|
|
586
|
+
}
|
|
587
|
+
.icon-xingzhuangjiehe:before {
|
|
588
|
+
content: "\E6A6";
|
|
589
|
+
}.ele-img {
|
|
600
590
|
position: absolute;
|
|
601
591
|
overflow: hidden;
|
|
602
592
|
}
|
|
@@ -645,13 +635,43 @@ input {
|
|
|
645
635
|
opacity: 1;
|
|
646
636
|
transform: scale(1);
|
|
647
637
|
}
|
|
648
|
-
}.
|
|
638
|
+
}.ele-shape {
|
|
639
|
+
position: absolute;
|
|
640
|
+
overflow: hidden;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.ani-wrap {
|
|
644
|
+
width: 100%;
|
|
645
|
+
height: 100%;
|
|
646
|
+
box-sizing: border-box;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.e-shape {
|
|
650
|
+
width: 100%;
|
|
651
|
+
height: 100%;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.svg-container :deep(svg) {
|
|
655
|
+
width: 100%;
|
|
656
|
+
height: 100%;
|
|
657
|
+
display: block;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.svg-loading,
|
|
661
|
+
.svg-error {
|
|
662
|
+
display: flex;
|
|
663
|
+
align-items: center;
|
|
664
|
+
justify-content: center;
|
|
665
|
+
width: 100%;
|
|
666
|
+
height: 100%;
|
|
667
|
+
background: rgba(0,0,0,0.05);
|
|
668
|
+
}.call {
|
|
649
669
|
position: absolute;
|
|
650
670
|
cursor: pointer;
|
|
651
671
|
user-select: none;
|
|
652
672
|
}
|
|
653
|
-
|
|
654
|
-
.
|
|
673
|
+
|
|
674
|
+
.call .ani-wrap {
|
|
655
675
|
display: flex;
|
|
656
676
|
justify-content: center;
|
|
657
677
|
align-items: center;
|
|
@@ -660,12 +680,12 @@ input {
|
|
|
660
680
|
overflow: hidden;
|
|
661
681
|
transition: opacity 0.2s;
|
|
662
682
|
}
|
|
663
|
-
|
|
664
|
-
.
|
|
683
|
+
|
|
684
|
+
.call .ani-wrap:hover {
|
|
665
685
|
opacity: 0.9;
|
|
666
686
|
}
|
|
667
687
|
|
|
668
|
-
.
|
|
688
|
+
.call-content {
|
|
669
689
|
display: flex;
|
|
670
690
|
align-items: center;
|
|
671
691
|
justify-content: center;
|
|
@@ -673,7 +693,182 @@ input {
|
|
|
673
693
|
|
|
674
694
|
.btn-text {
|
|
675
695
|
margin-left: 10px;
|
|
676
|
-
}
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
/* 这里可以添加实际的电话图标样式 */
|
|
699
|
+
/* .iconfont.hb-tel {
|
|
700
|
+
display: inline-block;
|
|
701
|
+
width: 16px;
|
|
702
|
+
height: 16px;
|
|
703
|
+
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>');
|
|
704
|
+
background-repeat: no-repeat;
|
|
705
|
+
background-position: center;
|
|
706
|
+
background-size: contain;
|
|
707
|
+
} */
|
|
708
|
+
|
|
709
|
+
.hb-tel:before {
|
|
710
|
+
content: "\E642";
|
|
711
|
+
}.element-ditu .ani-wrap {
|
|
712
|
+
width: 100%;
|
|
713
|
+
height: 100%;
|
|
714
|
+
overflow: hidden
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.element-ditu .map {
|
|
718
|
+
width: 100%;
|
|
719
|
+
height: 100%
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.element-ditu .map .el-button {
|
|
723
|
+
width: 100%;
|
|
724
|
+
height: 100%;
|
|
725
|
+
display: -webkit-box;
|
|
726
|
+
display: -ms-flexbox;
|
|
727
|
+
display: flex;
|
|
728
|
+
-webkit-box-align: center;
|
|
729
|
+
-ms-flex-align: center;
|
|
730
|
+
align-items: center;
|
|
731
|
+
padding: 0;
|
|
732
|
+
-webkit-box-pack: center;
|
|
733
|
+
-ms-flex-pack: center;
|
|
734
|
+
justify-content: center;
|
|
735
|
+
background: inherit;
|
|
736
|
+
color: inherit;
|
|
737
|
+
border: none
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.element-ditu .center-map {
|
|
741
|
+
width: 100%;
|
|
742
|
+
height: 100%;
|
|
743
|
+
background: #fff
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.element-ditu .mask-map {
|
|
747
|
+
position: absolute;
|
|
748
|
+
width: 100%;
|
|
749
|
+
height: 100%;
|
|
750
|
+
top: 0
|
|
751
|
+
}
|
|
752
|
+
.map-iframe {
|
|
753
|
+
width: 100%;
|
|
754
|
+
height: 100%;
|
|
755
|
+
}#audio {
|
|
756
|
+
position: absolute;
|
|
757
|
+
right: 10px;
|
|
758
|
+
top: 10px;
|
|
759
|
+
z-index: 103;
|
|
760
|
+
width: 30px;
|
|
761
|
+
height: 30px;
|
|
762
|
+
display: flex;
|
|
763
|
+
align-items: center;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
#audio .mrotate {
|
|
767
|
+
animation: mrotate 5s linear infinite;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
@keyframes mrotate {
|
|
771
|
+
to {
|
|
772
|
+
transform: rotate(1turn);
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
#audio .audio {
|
|
777
|
+
width: 100%;
|
|
778
|
+
height: 100%;
|
|
779
|
+
display: flex;
|
|
780
|
+
align-items: center;
|
|
781
|
+
justify-content: center;
|
|
782
|
+
color: #fff;
|
|
783
|
+
background: #666;
|
|
784
|
+
border-radius: 50%;
|
|
785
|
+
overflow: hidden;
|
|
786
|
+
cursor: pointer;
|
|
787
|
+
transition: all 0.3s ease;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
#audio .audio.a-border {
|
|
791
|
+
border: 1px solid #fff;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
#audio .audio .music-icon {
|
|
795
|
+
display: block;
|
|
796
|
+
width: 60%;
|
|
797
|
+
height: 60%;
|
|
798
|
+
object-fit: contain;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
#audio .audio .iconfont {
|
|
802
|
+
font-size: 2opx;
|
|
803
|
+
line-height: 1;
|
|
804
|
+
}
|
|
805
|
+
#audio .icon-cancel {
|
|
806
|
+
position: absolute;
|
|
807
|
+
width: 100%;
|
|
808
|
+
height: 100%;
|
|
809
|
+
border-radius: 50%;
|
|
810
|
+
overflow: hidden;
|
|
811
|
+
padding: 15px 0;
|
|
812
|
+
}
|
|
813
|
+
#audio .icon-cancel .icon-h {
|
|
814
|
+
transform: rotate(45deg);
|
|
815
|
+
width: 100%;
|
|
816
|
+
height: 2px;
|
|
817
|
+
background: #fff;
|
|
818
|
+
}
|
|
819
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
820
|
+
content: '';
|
|
821
|
+
position: absolute;
|
|
822
|
+
width: 100%;
|
|
823
|
+
height: 2px;
|
|
824
|
+
background: #fff;
|
|
825
|
+
}
|
|
826
|
+
.element-video {
|
|
827
|
+
position: absolute;
|
|
828
|
+
overflow: hidden;
|
|
829
|
+
background-color: transparent;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.element-video .ani-wrap, .element-video img {
|
|
833
|
+
display: block;
|
|
834
|
+
width: 100%;
|
|
835
|
+
height: 100%;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
.video-container {
|
|
839
|
+
width: 100%;
|
|
840
|
+
height: 100%;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.video-container iframe {
|
|
844
|
+
width: 100%;
|
|
845
|
+
height: 100%;
|
|
846
|
+
border: none;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.video-cover {
|
|
850
|
+
position: relative;
|
|
851
|
+
width: 100%;
|
|
852
|
+
height: 100%;
|
|
853
|
+
background-size: cover;
|
|
854
|
+
background-position: center;
|
|
855
|
+
cursor: pointer;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.video-cover .play-btn {
|
|
859
|
+
position: absolute;
|
|
860
|
+
left: 50%;
|
|
861
|
+
top: 50%;
|
|
862
|
+
transform: translate(-50%, -50%);
|
|
863
|
+
width: 50px;
|
|
864
|
+
height: 50px;
|
|
865
|
+
opacity: 0.8;
|
|
866
|
+
transition: opacity 0.2s;
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
.video-cover:hover .play-btn {
|
|
870
|
+
opacity: 1;
|
|
871
|
+
}.ele-effect {
|
|
677
872
|
will-change: transform;
|
|
678
873
|
}
|
|
679
874
|
|
|
@@ -728,493 +923,169 @@ input {
|
|
|
728
923
|
transform-origin: center;
|
|
729
924
|
-webkit-animation: snow 5s linear infinite;
|
|
730
925
|
animation: snow 5s linear infinite
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
to {
|
|
734
|
-
-webkit-transform: scale(1.2);
|
|
735
|
-
transform: scale(1.2)
|
|
736
|
-
}
|
|
737
|
-
}
|
|
738
|
-
.ele-calendar {
|
|
739
|
-
position: relative;
|
|
740
|
-
width: 325px !important;
|
|
741
|
-
min-height: 325px !important;
|
|
742
|
-
height: auto !important;
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
.ele-calendar .drag-point {
|
|
746
|
-
cursor: default !important;
|
|
926
|
+
}.count-down .drag-point {
|
|
927
|
+
cursor: default!important
|
|
747
928
|
}
|
|
748
929
|
|
|
749
|
-
.
|
|
750
|
-
position: relative;
|
|
930
|
+
.count-down .ani-wrap {
|
|
751
931
|
width: 100%;
|
|
752
|
-
|
|
753
|
-
height: auto !important;
|
|
754
|
-
padding: 22px 0;
|
|
932
|
+
height: 100%
|
|
755
933
|
}
|
|
756
934
|
|
|
757
|
-
.
|
|
935
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
936
|
+
display: -webkit-box;
|
|
937
|
+
display: -ms-flexbox;
|
|
758
938
|
display: flex;
|
|
759
|
-
|
|
760
|
-
align
|
|
761
|
-
|
|
762
|
-
|
|
939
|
+
height: 100%;
|
|
940
|
+
-webkit-box-align: center;
|
|
941
|
+
-ms-flex-align: center;
|
|
942
|
+
align-items: center;
|
|
943
|
+
-webkit-box-pack: center;
|
|
944
|
+
-ms-flex-pack: center;
|
|
945
|
+
justify-content: center
|
|
763
946
|
}
|
|
764
947
|
|
|
765
|
-
.
|
|
766
|
-
|
|
767
|
-
padding-bottom: 4px;
|
|
948
|
+
.count-down .finish-cont {
|
|
949
|
+
width: 100%
|
|
768
950
|
}
|
|
769
951
|
|
|
770
|
-
.
|
|
771
|
-
|
|
952
|
+
.count-down .count-flip {
|
|
953
|
+
display: -webkit-box;
|
|
954
|
+
display: -ms-flexbox;
|
|
955
|
+
display: flex;
|
|
956
|
+
height: 100%;
|
|
957
|
+
-webkit-box-align: center;
|
|
958
|
+
-ms-flex-align: center;
|
|
959
|
+
align-items: center;
|
|
960
|
+
-webkit-box-pack: center;
|
|
961
|
+
-ms-flex-pack: center;
|
|
962
|
+
justify-content: center
|
|
772
963
|
}
|
|
773
964
|
|
|
774
|
-
.
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
965
|
+
.count-down .count-flip .numscroll {
|
|
966
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
967
|
+
animation: numscroll .4s ease-in-out;
|
|
968
|
+
-webkit-animation-fill-mode: both;
|
|
969
|
+
animation-fill-mode: both
|
|
778
970
|
}
|
|
779
971
|
|
|
780
|
-
.
|
|
781
|
-
|
|
972
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
973
|
+
-webkit-transition: all .3s ease-in-out;
|
|
974
|
+
transition: all .3s ease-in-out;
|
|
975
|
+
opacity: .6;
|
|
976
|
+
-webkit-transform: scale(.5)!important;
|
|
977
|
+
transform: scale(.5)!important
|
|
782
978
|
}
|
|
783
979
|
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
line-height: 25px;
|
|
789
|
-
padding: 0 10px;
|
|
790
|
-
border-radius: 13px;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
|
|
794
|
-
width: 14.2%;
|
|
795
|
-
text-align: center;
|
|
796
|
-
color: #fff;
|
|
797
|
-
font-size: 12px;
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
|
|
801
|
-
font-size: 0;
|
|
802
|
-
padding: 5px 10px 0;
|
|
803
|
-
text-align: left;
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
|
|
807
|
-
position: relative;
|
|
808
|
-
display: inline-block;
|
|
809
|
-
height: 25px;
|
|
810
|
-
text-align: center;
|
|
811
|
-
margin-top: 8px;
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
|
|
815
|
-
display: block;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
|
|
819
|
-
color: #fff !important;
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
|
|
823
|
-
animation: jumpheart 0.8s ease infinite alternate;
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
|
|
827
|
-
display: none;
|
|
828
|
-
font-size: 26px;
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
|
|
832
|
-
position: absolute;
|
|
833
|
-
left: 50%;
|
|
834
|
-
top: 50%;
|
|
835
|
-
z-index: 1;
|
|
836
|
-
color: #666;
|
|
837
|
-
font-size: 13px;
|
|
838
|
-
transform: translate(-50%, -52%);
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
.ele-calendar .bottom-center,
|
|
842
|
-
.ele-calendar .left-center,
|
|
843
|
-
.ele-calendar .right-center,
|
|
844
|
-
.ele-calendar .top-center {
|
|
845
|
-
display: none !important;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
.ele-calendar .ani-wrap .can-wrap2 {
|
|
849
|
-
padding: 21px 23px 0
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-top {
|
|
853
|
-
display: -webkit-box;
|
|
854
|
-
display: -ms-flexbox;
|
|
855
|
-
display: flex;
|
|
856
|
-
-webkit-box-pack: justify;
|
|
857
|
-
-ms-flex-pack: justify;
|
|
858
|
-
justify-content: space-between;
|
|
859
|
-
-webkit-box-align: end;
|
|
860
|
-
-ms-flex-align: end;
|
|
861
|
-
align-items: flex-end;
|
|
862
|
-
line-height: 1;
|
|
863
|
-
padding: 0 16px 22px;
|
|
864
|
-
font-size: 36px
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-top span {
|
|
868
|
-
font-size: 16px
|
|
869
|
-
}
|
|
870
|
-
|
|
871
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
|
|
872
|
-
display: -webkit-box;
|
|
873
|
-
display: -ms-flexbox;
|
|
874
|
-
display: flex;
|
|
875
|
-
-webkit-box-pack: start;
|
|
876
|
-
-ms-flex-pack: start;
|
|
877
|
-
justify-content: flex-start;
|
|
878
|
-
height: 25px;
|
|
879
|
-
line-height: 25px;
|
|
880
|
-
padding: 0 10px;
|
|
881
|
-
border-radius: 13px
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
|
|
885
|
-
width: 14.2%;
|
|
886
|
-
text-align: center;
|
|
887
|
-
color: #fff;
|
|
888
|
-
font-size: 12px;
|
|
889
|
-
font-weight: 600
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
|
|
893
|
-
position: relative
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
|
|
897
|
-
position: absolute;
|
|
898
|
-
white-space: nowrap;
|
|
899
|
-
left: 50%;
|
|
900
|
-
top: 15%;
|
|
901
|
-
-webkit-transform: translateX(-50%);
|
|
902
|
-
transform: translateX(-50%);
|
|
903
|
-
font-size: 76px;
|
|
904
|
-
opacity: .1;
|
|
905
|
-
font-weight: 600
|
|
906
|
-
}
|
|
907
|
-
|
|
908
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
|
|
909
|
-
font-size: 0;
|
|
910
|
-
padding: 5px 10px 0;
|
|
911
|
-
text-align: left
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
|
|
915
|
-
position: relative;
|
|
916
|
-
display: inline-block;
|
|
917
|
-
width: 14.2%;
|
|
918
|
-
height: 25px;
|
|
919
|
-
text-align: center;
|
|
920
|
-
margin-top: 8px
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
|
|
924
|
-
display: block;
|
|
925
|
-
position: absolute;
|
|
926
|
-
left: 17%;
|
|
927
|
-
top: 0;
|
|
928
|
-
font-size: 25px
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
|
|
932
|
-
color: #fff!important
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
|
|
936
|
-
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
937
|
-
animation: jumpheart .8s ease infinite alternate
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
|
|
941
|
-
display: none;
|
|
942
|
-
font-size: 26px
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
|
|
946
|
-
position: absolute;
|
|
947
|
-
left: 50%;
|
|
948
|
-
top: 50%;
|
|
949
|
-
z-index: 1;
|
|
950
|
-
color: #666;
|
|
951
|
-
font-size: 13px;
|
|
952
|
-
-webkit-transform: translate(-50%,-52%);
|
|
953
|
-
transform: translate(-50%,-52%)
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-top {
|
|
957
|
-
display: -webkit-box;
|
|
958
|
-
display: -ms-flexbox;
|
|
959
|
-
display: flex;
|
|
960
|
-
-webkit-box-pack: justify;
|
|
961
|
-
-ms-flex-pack: justify;
|
|
962
|
-
justify-content: space-between;
|
|
963
|
-
-webkit-box-align: end;
|
|
964
|
-
-ms-flex-align: end;
|
|
965
|
-
align-items: flex-end;
|
|
966
|
-
line-height: 1;
|
|
967
|
-
padding: 18px 33px 10px;
|
|
968
|
-
font-size: 36px;
|
|
969
|
-
}
|
|
970
|
-
|
|
971
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-top span {
|
|
972
|
-
font-size: 16px
|
|
973
|
-
}
|
|
974
|
-
|
|
975
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
|
|
976
|
-
font-size: 20px
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
|
|
980
|
-
display: -webkit-box;
|
|
981
|
-
display: -ms-flexbox;
|
|
982
|
-
display: flex;
|
|
983
|
-
-webkit-box-pack: start;
|
|
984
|
-
-ms-flex-pack: start;
|
|
985
|
-
justify-content: flex-start;
|
|
986
|
-
height: 40px;
|
|
987
|
-
line-height: 40px;
|
|
988
|
-
padding: 0 34px;
|
|
989
|
-
border-bottom: 1px solid
|
|
990
|
-
}
|
|
991
|
-
|
|
992
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
|
|
993
|
-
width: 14.2%;
|
|
994
|
-
text-align: center;
|
|
995
|
-
color: #fff;
|
|
996
|
-
font-size: 12px;
|
|
997
|
-
font-weight: 600
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
1001
|
-
position: relative
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
|
|
1005
|
-
font-size: 0;
|
|
1006
|
-
padding: 5px 33px 0;
|
|
1007
|
-
text-align: left
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
|
|
1011
|
-
position: relative;
|
|
1012
|
-
display: inline-block;
|
|
1013
|
-
width: 14.2%;
|
|
1014
|
-
height: 25px;
|
|
1015
|
-
text-align: center;
|
|
1016
|
-
margin-top: 8px;
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
|
|
1020
|
-
color: #eee
|
|
1021
|
-
}
|
|
1022
|
-
|
|
1023
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
|
|
1024
|
-
display: block;
|
|
1025
|
-
position: absolute;
|
|
1026
|
-
left: 12%;
|
|
1027
|
-
top: 2px;
|
|
1028
|
-
}
|
|
1029
|
-
|
|
1030
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
|
|
1031
|
-
font-size: 12px
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
|
|
1035
|
-
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
1036
|
-
animation: jumpheart .8s ease infinite alternate
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
@keyframes jumpheart {
|
|
1040
|
-
to {
|
|
1041
|
-
-webkit-transform: scale(1.2);
|
|
1042
|
-
transform: scale(1.2)
|
|
1043
|
-
}
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
|
|
1047
|
-
display: none;
|
|
1048
|
-
font-size: 26px
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
|
|
1052
|
-
position: absolute;
|
|
1053
|
-
left: 50%;
|
|
1054
|
-
top: 50%;
|
|
1055
|
-
z-index: 1;
|
|
1056
|
-
color: #666;
|
|
1057
|
-
font-size: 13px;
|
|
1058
|
-
-webkit-transform: translate(-50%,-52%);
|
|
1059
|
-
transform: translate(-50%,-52%)
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
1063
|
-
display: none!important
|
|
1064
|
-
}
|
|
1065
|
-
.icon-tuoyuanxing:before {
|
|
1066
|
-
content: "\E6A7";
|
|
1067
|
-
}
|
|
1068
|
-
.icon-zan1:before {
|
|
1069
|
-
content: "\E66D";
|
|
1070
|
-
}
|
|
1071
|
-
.icon-xingzhuangjiehe:before {
|
|
1072
|
-
content: "\E6A6";
|
|
1073
|
-
}.call {
|
|
1074
|
-
position: absolute;
|
|
1075
|
-
cursor: pointer;
|
|
1076
|
-
user-select: none;
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
.call .ani-wrap {
|
|
1080
|
-
display: flex;
|
|
1081
|
-
justify-content: center;
|
|
1082
|
-
align-items: center;
|
|
1083
|
-
width: 100%;
|
|
1084
|
-
height: 100%;
|
|
1085
|
-
overflow: hidden;
|
|
1086
|
-
transition: opacity 0.2s;
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
.call .ani-wrap:hover {
|
|
1090
|
-
opacity: 0.9;
|
|
1091
|
-
}
|
|
1092
|
-
|
|
1093
|
-
.call-content {
|
|
1094
|
-
display: flex;
|
|
1095
|
-
align-items: center;
|
|
1096
|
-
justify-content: center;
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
.btn-text {
|
|
1100
|
-
margin-left: 10px;
|
|
1101
|
-
}
|
|
1102
|
-
|
|
1103
|
-
/* 这里可以添加实际的电话图标样式 */
|
|
1104
|
-
/* .iconfont.hb-tel {
|
|
1105
|
-
display: inline-block;
|
|
1106
|
-
width: 16px;
|
|
1107
|
-
height: 16px;
|
|
1108
|
-
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>');
|
|
1109
|
-
background-repeat: no-repeat;
|
|
1110
|
-
background-position: center;
|
|
1111
|
-
background-size: contain;
|
|
1112
|
-
} */
|
|
1113
|
-
|
|
1114
|
-
.hb-tel:before {
|
|
1115
|
-
content: "\E642";
|
|
1116
|
-
}.ele-form {
|
|
1117
|
-
position: absolute;
|
|
1118
|
-
user-select: none;
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
.f-select {
|
|
1122
|
-
cursor: pointer;
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1125
|
-
.ani-wrap {
|
|
1126
|
-
position: relative;
|
|
1127
|
-
}
|
|
1128
|
-
|
|
1129
|
-
.f-select .ani-wrap .fs-tit {
|
|
1130
|
-
position: relative;
|
|
1131
|
-
display: flex;
|
|
1132
|
-
padding: 0 5px;
|
|
1133
|
-
height: 35px;
|
|
1134
|
-
line-height: 35px;
|
|
1135
|
-
align-items: center;
|
|
1136
|
-
}
|
|
1137
|
-
|
|
1138
|
-
.require {
|
|
1139
|
-
padding: 0 5px 0 0;
|
|
1140
|
-
color: red;
|
|
1141
|
-
vertical-align: middle;
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
.fs-cont {
|
|
1145
|
-
padding-right: 15px;
|
|
1146
|
-
white-space: nowrap;
|
|
1147
|
-
overflow: hidden;
|
|
1148
|
-
text-overflow: ellipsis;
|
|
1149
|
-
flex-grow: 1;
|
|
1150
|
-
}
|
|
1151
|
-
|
|
1152
|
-
.icon-bofang1 {
|
|
1153
|
-
font-size: 12px;
|
|
1154
|
-
transition: transform 0.2s ease;
|
|
1155
|
-
}
|
|
1156
|
-
|
|
1157
|
-
.rotate-180 {
|
|
1158
|
-
transform: rotate(180deg) !important;
|
|
1159
|
-
}
|
|
1160
|
-
|
|
1161
|
-
.f-real {
|
|
1162
|
-
position: absolute;
|
|
1163
|
-
left: 0;
|
|
1164
|
-
top: 0;
|
|
1165
|
-
width: 100%;
|
|
1166
|
-
height: 100%;
|
|
1167
|
-
z-index: 1;
|
|
1168
|
-
opacity: 0;
|
|
1169
|
-
cursor: pointer;
|
|
1170
|
-
}
|
|
1171
|
-
|
|
1172
|
-
.dropdown-menu {
|
|
1173
|
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
.dropdown-item {
|
|
1177
|
-
padding: 8px 10px;
|
|
1178
|
-
cursor: pointer;
|
|
1179
|
-
transition: background-color 0.2s;
|
|
1180
|
-
}
|
|
1181
|
-
|
|
1182
|
-
.dropdown-item:hover {
|
|
1183
|
-
background-color: #f5f5f5;
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
.dropdown-item.selected {
|
|
1187
|
-
background-color: #e6f7ff;
|
|
1188
|
-
color: #1890ff;
|
|
1189
|
-
}
|
|
1190
|
-
|
|
1191
|
-
.f-select .fs-tit .icon-bofang1 {
|
|
1192
|
-
position: absolute;
|
|
1193
|
-
right: 10px;
|
|
1194
|
-
font-size: 12px;
|
|
1195
|
-
display: inline-block;
|
|
1196
|
-
transform: rotate(90deg);
|
|
1197
|
-
}
|
|
1198
|
-
|
|
1199
|
-
.icon-bofang1:before {
|
|
1200
|
-
content: "\E6CF";
|
|
980
|
+
@-webkit-keyframes numscroll {
|
|
981
|
+
0% {
|
|
982
|
+
-webkit-transform: translateZ(0);
|
|
983
|
+
transform: translateZ(0)
|
|
1201
984
|
}
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
985
|
+
|
|
986
|
+
to {
|
|
987
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
988
|
+
transform: translate3d(0,100%,0)
|
|
1205
989
|
}
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
height: 100%;
|
|
1213
|
-
z-index: 1000;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
@keyframes numscroll {
|
|
993
|
+
0% {
|
|
994
|
+
-webkit-transform: translateZ(0);
|
|
995
|
+
transform: translateZ(0)
|
|
1214
996
|
}
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
997
|
+
|
|
998
|
+
to {
|
|
999
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
1000
|
+
transform: translate3d(0,100%,0)
|
|
1001
|
+
}
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.count-down .count-flip .c-com {
|
|
1005
|
+
min-width: 50px;
|
|
1006
|
+
height: auto;
|
|
1007
|
+
margin: 6px;
|
|
1008
|
+
padding: 5px 0 6px;
|
|
1009
|
+
background-color: #111
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
1013
|
+
display: -webkit-box;
|
|
1014
|
+
display: -ms-flexbox;
|
|
1015
|
+
display: flex;
|
|
1016
|
+
position: relative;
|
|
1017
|
+
width: 100%;
|
|
1018
|
+
height: 100%;
|
|
1019
|
+
-webkit-box-align: center;
|
|
1020
|
+
-ms-flex-align: center;
|
|
1021
|
+
align-items: center
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
1025
|
+
line-height: 27px
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
1029
|
+
position: absolute;
|
|
1030
|
+
top: -100%
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
1034
|
+
-webkit-transform: scale(1);
|
|
1035
|
+
transform: scale(1)
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.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 {
|
|
1039
|
+
display: none!important
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.c-wrap {
|
|
1043
|
+
width: 100%;
|
|
1044
|
+
height: 100%;
|
|
1045
|
+
overflow: hidden;
|
|
1046
|
+
font-size: 0
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.c-wrap.c-day-wrap {
|
|
1050
|
+
text-align: center
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.c-wrap.c-day-wrap .c-num {
|
|
1054
|
+
width: auto
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.c-wrap .c-num {
|
|
1058
|
+
display: inline-block;
|
|
1059
|
+
width: 50%;
|
|
1060
|
+
overflow: hidden;
|
|
1061
|
+
font-size: 20px;
|
|
1062
|
+
color: #999
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.c-wrap .c-left .flex-wrap {
|
|
1066
|
+
display: -webkit-box;
|
|
1067
|
+
display: -ms-flexbox;
|
|
1068
|
+
display: flex;
|
|
1069
|
+
-webkit-box-pack: end;
|
|
1070
|
+
-ms-flex-pack: end;
|
|
1071
|
+
justify-content: flex-end
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.c-wrap .c-text {
|
|
1075
|
+
display: -webkit-box;
|
|
1076
|
+
display: -ms-flexbox;
|
|
1077
|
+
display: flex;
|
|
1078
|
+
width: 100%;
|
|
1079
|
+
font-size: 12px;
|
|
1080
|
+
-webkit-box-pack: center;
|
|
1081
|
+
-ms-flex-pack: center;
|
|
1082
|
+
justify-content: center;
|
|
1083
|
+
-webkit-box-align: center;
|
|
1084
|
+
-ms-flex-align: center;
|
|
1085
|
+
align-items: center;
|
|
1086
|
+
white-space: nowrap
|
|
1087
|
+
}
|
|
1088
|
+
/* Iconfont definition */
|
|
1218
1089
|
.icon-danmuliebiao1:before {
|
|
1219
1090
|
content: "\E68A";
|
|
1220
1091
|
}
|
|
@@ -2117,7 +1988,101 @@ input {
|
|
|
2117
1988
|
100% { transform: rotate(360deg); }
|
|
2118
1989
|
}
|
|
2119
1990
|
|
|
2120
|
-
|
|
1991
|
+
|
|
1992
|
+
.ele-lottie .ele-lotwrap {
|
|
1993
|
+
overflow: hidden;
|
|
1994
|
+
}.form-submit {
|
|
1995
|
+
cursor: pointer;
|
|
1996
|
+
transition: all 0.2s;
|
|
1997
|
+
outline: none;
|
|
1998
|
+
border: none;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
.form-submit:hover {
|
|
2002
|
+
opacity: 0.9;
|
|
2003
|
+
transform: translateY(-1px);
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
.form-submit:active {
|
|
2007
|
+
opacity: 0.8;
|
|
2008
|
+
transform: translateY(0);
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
.form-submit:disabled {
|
|
2012
|
+
opacity: 0.6;
|
|
2013
|
+
cursor: not-allowed;
|
|
2014
|
+
transform: none !important;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
/* 统一错误提示样式 */
|
|
2018
|
+
.tip-cover {
|
|
2019
|
+
position: fixed;
|
|
2020
|
+
left: 0;
|
|
2021
|
+
top: 0;
|
|
2022
|
+
width: 100%;
|
|
2023
|
+
height: 100%;
|
|
2024
|
+
display: flex;
|
|
2025
|
+
align-items: center;
|
|
2026
|
+
justify-content: center;
|
|
2027
|
+
z-index: 999;
|
|
2028
|
+
background-color: rgba(0,0,0,.7);
|
|
2029
|
+
}
|
|
2030
|
+
|
|
2031
|
+
.tip {
|
|
2032
|
+
width: 80%;
|
|
2033
|
+
max-width: 250px;
|
|
2034
|
+
padding: 10px;
|
|
2035
|
+
border-radius: 5px;
|
|
2036
|
+
background-color: #fff;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
.tip-btn {
|
|
2040
|
+
display: block;
|
|
2041
|
+
margin: 25px auto;
|
|
2042
|
+
width: 120px;
|
|
2043
|
+
height: 30px;
|
|
2044
|
+
color: #fff;
|
|
2045
|
+
border-radius: 4px;
|
|
2046
|
+
text-align: center;
|
|
2047
|
+
font-size: 14px;
|
|
2048
|
+
line-height: 30px;
|
|
2049
|
+
background: #ed5566;
|
|
2050
|
+
cursor: pointer;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
.tip-content {
|
|
2054
|
+
font-size: 14px;
|
|
2055
|
+
padding-top: 30px;
|
|
2056
|
+
text-align: center;
|
|
2057
|
+
}.button {
|
|
2058
|
+
position: absolute;
|
|
2059
|
+
cursor: pointer;
|
|
2060
|
+
user-select: none;
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2063
|
+
.button .ani-wrap {
|
|
2064
|
+
display: flex;
|
|
2065
|
+
justify-content: center;
|
|
2066
|
+
align-items: center;
|
|
2067
|
+
width: 100%;
|
|
2068
|
+
height: 100%;
|
|
2069
|
+
overflow: hidden;
|
|
2070
|
+
transition: opacity 0.2s;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
.button .ani-wrap:hover {
|
|
2074
|
+
opacity: 0.9;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
.button-content {
|
|
2078
|
+
display: flex;
|
|
2079
|
+
align-items: center;
|
|
2080
|
+
justify-content: center;
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
.btn-text {
|
|
2084
|
+
margin-left: 10px;
|
|
2085
|
+
}.form-input {
|
|
2121
2086
|
position: absolute;
|
|
2122
2087
|
}
|
|
2123
2088
|
|
|
@@ -3710,103 +3675,40 @@ input {
|
|
|
3710
3675
|
|
|
3711
3676
|
to {
|
|
3712
3677
|
-webkit-transform: none;
|
|
3713
|
-
transform: none
|
|
3714
|
-
}
|
|
3715
|
-
}
|
|
3716
|
-
|
|
3717
|
-
/* 移动端输入框修复 - 全局 */
|
|
3718
|
-
@media screen and (max-aspect-ratio: 13/9) {
|
|
3719
|
-
html {
|
|
3720
|
-
height: 100%;
|
|
3721
|
-
overflow: hidden;
|
|
3722
|
-
}
|
|
3723
|
-
|
|
3724
|
-
body {
|
|
3725
|
-
height: 100%;
|
|
3726
|
-
overflow: auto;
|
|
3727
|
-
-webkit-overflow-scrolling: touch;
|
|
3728
|
-
}
|
|
3729
|
-
}
|
|
3730
|
-
|
|
3731
|
-
/* 防止iOS页面弹跳 */
|
|
3732
|
-
html, body {
|
|
3733
|
-
overscroll-behavior-y: contain;
|
|
3734
|
-
}
|
|
3735
|
-
|
|
3736
|
-
/* 键盘弹出时的视口调整 */
|
|
3737
|
-
@supports (padding-bottom: env(keyboard-inset-height)) {
|
|
3738
|
-
.keyboard-active {
|
|
3739
|
-
padding-bottom: env(keyboard-inset-height);
|
|
3740
|
-
}
|
|
3741
|
-
}.form-submit {
|
|
3742
|
-
cursor: pointer;
|
|
3743
|
-
transition: all 0.2s;
|
|
3744
|
-
outline: none;
|
|
3745
|
-
border: none;
|
|
3746
|
-
}
|
|
3747
|
-
|
|
3748
|
-
.form-submit:hover {
|
|
3749
|
-
opacity: 0.9;
|
|
3750
|
-
transform: translateY(-1px);
|
|
3751
|
-
}
|
|
3752
|
-
|
|
3753
|
-
.form-submit:active {
|
|
3754
|
-
opacity: 0.8;
|
|
3755
|
-
transform: translateY(0);
|
|
3756
|
-
}
|
|
3757
|
-
|
|
3758
|
-
.form-submit:disabled {
|
|
3759
|
-
opacity: 0.6;
|
|
3760
|
-
cursor: not-allowed;
|
|
3761
|
-
transform: none !important;
|
|
3678
|
+
transform: none
|
|
3762
3679
|
}
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
top: 0;
|
|
3769
|
-
width: 100%;
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3682
|
+
/* 移动端输入框修复 - 全局 */
|
|
3683
|
+
@media screen and (max-aspect-ratio: 13/9) {
|
|
3684
|
+
html {
|
|
3770
3685
|
height: 100%;
|
|
3771
|
-
|
|
3772
|
-
align-items: center;
|
|
3773
|
-
justify-content: center;
|
|
3774
|
-
z-index: 999;
|
|
3775
|
-
background-color: rgba(0,0,0,.7);
|
|
3686
|
+
overflow: hidden;
|
|
3776
3687
|
}
|
|
3777
3688
|
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
border-radius: 5px;
|
|
3783
|
-
background-color: #fff;
|
|
3689
|
+
body {
|
|
3690
|
+
height: 100%;
|
|
3691
|
+
overflow: auto;
|
|
3692
|
+
-webkit-overflow-scrolling: touch;
|
|
3784
3693
|
}
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
background: #ed5566;
|
|
3797
|
-
cursor: pointer;
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3696
|
+
/* 防止iOS页面弹跳 */
|
|
3697
|
+
html, body {
|
|
3698
|
+
overscroll-behavior-y: contain;
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
/* 键盘弹出时的视口调整 */
|
|
3702
|
+
@supports (padding-bottom: env(keyboard-inset-height)) {
|
|
3703
|
+
.keyboard-active {
|
|
3704
|
+
padding-bottom: env(keyboard-inset-height);
|
|
3798
3705
|
}
|
|
3799
|
-
|
|
3800
|
-
.tip-content {
|
|
3801
|
-
font-size: 14px;
|
|
3802
|
-
padding-top: 30px;
|
|
3803
|
-
text-align: center;
|
|
3804
|
-
}.ele-form {
|
|
3706
|
+
}.ele-form {
|
|
3805
3707
|
position: absolute;
|
|
3806
3708
|
user-select: none;
|
|
3807
3709
|
}
|
|
3808
3710
|
|
|
3809
|
-
.f-
|
|
3711
|
+
.f-select {
|
|
3810
3712
|
cursor: pointer;
|
|
3811
3713
|
}
|
|
3812
3714
|
|
|
@@ -3814,15 +3716,13 @@ html, body {
|
|
|
3814
3716
|
position: relative;
|
|
3815
3717
|
}
|
|
3816
3718
|
|
|
3817
|
-
.f-
|
|
3719
|
+
.f-select .ani-wrap .fs-tit {
|
|
3720
|
+
position: relative;
|
|
3818
3721
|
display: flex;
|
|
3819
3722
|
padding: 0 5px;
|
|
3820
|
-
height:
|
|
3723
|
+
height: 35px;
|
|
3724
|
+
line-height: 35px;
|
|
3821
3725
|
align-items: center;
|
|
3822
|
-
white-space: nowrap;
|
|
3823
|
-
overflow: hidden;
|
|
3824
|
-
text-overflow: ellipsis;
|
|
3825
|
-
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3826
3726
|
}
|
|
3827
3727
|
|
|
3828
3728
|
.require {
|
|
@@ -3831,63 +3731,69 @@ html, body {
|
|
|
3831
3731
|
vertical-align: middle;
|
|
3832
3732
|
}
|
|
3833
3733
|
|
|
3834
|
-
.
|
|
3835
|
-
padding: 15px;
|
|
3836
|
-
|
|
3837
|
-
|
|
3734
|
+
.fs-cont {
|
|
3735
|
+
padding-right: 15px;
|
|
3736
|
+
white-space: nowrap;
|
|
3737
|
+
overflow: hidden;
|
|
3738
|
+
text-overflow: ellipsis;
|
|
3739
|
+
flex-grow: 1;
|
|
3838
3740
|
}
|
|
3839
3741
|
|
|
3840
|
-
.
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
margin-top: 12px;
|
|
3844
|
-
font-size: 0;
|
|
3742
|
+
.icon-bofang1 {
|
|
3743
|
+
font-size: 12px;
|
|
3744
|
+
transition: transform 0.2s ease;
|
|
3845
3745
|
}
|
|
3846
3746
|
|
|
3847
|
-
.
|
|
3848
|
-
|
|
3747
|
+
.rotate-180 {
|
|
3748
|
+
transform: rotate(180deg) !important;
|
|
3849
3749
|
}
|
|
3850
3750
|
|
|
3851
|
-
.
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3751
|
+
.f-real {
|
|
3752
|
+
position: absolute;
|
|
3753
|
+
left: 0;
|
|
3754
|
+
top: 0;
|
|
3755
|
+
width: 100%;
|
|
3756
|
+
height: 100%;
|
|
3757
|
+
z-index: 1;
|
|
3758
|
+
opacity: 0;
|
|
3759
|
+
cursor: pointer;
|
|
3858
3760
|
}
|
|
3859
3761
|
|
|
3860
|
-
.
|
|
3861
|
-
|
|
3862
|
-
border-color: #2687f1 !important;
|
|
3762
|
+
.dropdown-menu {
|
|
3763
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
3863
3764
|
}
|
|
3864
3765
|
|
|
3865
|
-
.
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
left: 3px;
|
|
3870
|
-
width: 8px;
|
|
3871
|
-
height: 8px;
|
|
3872
|
-
border-radius: 50%;
|
|
3873
|
-
background-color: white;
|
|
3766
|
+
.dropdown-item {
|
|
3767
|
+
padding: 8px 10px;
|
|
3768
|
+
cursor: pointer;
|
|
3769
|
+
transition: background-color 0.2s;
|
|
3874
3770
|
}
|
|
3875
3771
|
|
|
3876
|
-
.
|
|
3877
|
-
|
|
3878
|
-
width: calc(100% - 16px);
|
|
3879
|
-
padding-left: 8px;
|
|
3880
|
-
vertical-align: top;
|
|
3881
|
-
word-break: break-all;
|
|
3882
|
-
font-size: 14px;
|
|
3883
|
-
line-height: 1.2;
|
|
3772
|
+
.dropdown-item:hover {
|
|
3773
|
+
background-color: #f5f5f5;
|
|
3884
3774
|
}
|
|
3885
3775
|
|
|
3886
|
-
.
|
|
3887
|
-
|
|
3776
|
+
.dropdown-item.selected {
|
|
3777
|
+
background-color: #e6f7ff;
|
|
3778
|
+
color: #1890ff;
|
|
3779
|
+
}
|
|
3780
|
+
|
|
3781
|
+
.f-select .fs-tit .icon-bofang1 {
|
|
3782
|
+
position: absolute;
|
|
3783
|
+
right: 10px;
|
|
3784
|
+
font-size: 12px;
|
|
3785
|
+
display: inline-block;
|
|
3786
|
+
transform: rotate(90deg);
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
.icon-bofang1:before {
|
|
3790
|
+
content: "\E6CF";
|
|
3791
|
+
}
|
|
3792
|
+
|
|
3793
|
+
.has-error {
|
|
3794
|
+
border-color: #ff4d4f !important;
|
|
3888
3795
|
}
|
|
3889
3796
|
|
|
3890
|
-
/* 错误提示样式 */
|
|
3891
3797
|
.error-tip {
|
|
3892
3798
|
position: fixed;
|
|
3893
3799
|
left: 0;
|
|
@@ -3980,7 +3886,101 @@ html, body {
|
|
|
3980
3886
|
|
|
3981
3887
|
.has-error .fs-tit {
|
|
3982
3888
|
border-bottom-color: #ff4d4f;
|
|
3983
|
-
}
|
|
3889
|
+
}.ele-form {
|
|
3890
|
+
position: absolute;
|
|
3891
|
+
user-select: none;
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3894
|
+
.f-single {
|
|
3895
|
+
cursor: pointer;
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
.ani-wrap {
|
|
3899
|
+
position: relative;
|
|
3900
|
+
}
|
|
3901
|
+
|
|
3902
|
+
.f-single .ani-wrap .fs-tit {
|
|
3903
|
+
display: flex;
|
|
3904
|
+
padding: 0 5px;
|
|
3905
|
+
height: 40px;
|
|
3906
|
+
align-items: center;
|
|
3907
|
+
white-space: nowrap;
|
|
3908
|
+
overflow: hidden;
|
|
3909
|
+
text-overflow: ellipsis;
|
|
3910
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3913
|
+
.require {
|
|
3914
|
+
padding: 0 5px 0 0;
|
|
3915
|
+
color: red;
|
|
3916
|
+
vertical-align: middle;
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3919
|
+
.f-single ul {
|
|
3920
|
+
padding: 15px;
|
|
3921
|
+
margin: 0;
|
|
3922
|
+
list-style: none;
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3925
|
+
.f-single ul li {
|
|
3926
|
+
display: flex;
|
|
3927
|
+
align-items: center;
|
|
3928
|
+
margin-top: 12px;
|
|
3929
|
+
font-size: 0;
|
|
3930
|
+
}
|
|
3931
|
+
|
|
3932
|
+
.f-single ul li:first-child {
|
|
3933
|
+
margin-top: 0;
|
|
3934
|
+
}
|
|
3935
|
+
|
|
3936
|
+
.fs-circle {
|
|
3937
|
+
display: inline-block;
|
|
3938
|
+
width: 16px;
|
|
3939
|
+
height: 16px;
|
|
3940
|
+
border-radius: 50%;
|
|
3941
|
+
position: relative;
|
|
3942
|
+
transition: all 0.2s;
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3945
|
+
.fs-circle.selected {
|
|
3946
|
+
background-color: #2687f1;
|
|
3947
|
+
border-color: #2687f1 !important;
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
.fs-circle.selected::after {
|
|
3951
|
+
content: "";
|
|
3952
|
+
position: absolute;
|
|
3953
|
+
top: 3px;
|
|
3954
|
+
left: 3px;
|
|
3955
|
+
width: 8px;
|
|
3956
|
+
height: 8px;
|
|
3957
|
+
border-radius: 50%;
|
|
3958
|
+
background-color: white;
|
|
3959
|
+
}
|
|
3960
|
+
|
|
3961
|
+
.fs-txt {
|
|
3962
|
+
display: inline-block;
|
|
3963
|
+
width: calc(100% - 16px);
|
|
3964
|
+
padding-left: 8px;
|
|
3965
|
+
vertical-align: top;
|
|
3966
|
+
word-break: break-all;
|
|
3967
|
+
font-size: 14px;
|
|
3968
|
+
line-height: 1.2;
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
.has-error .fs-tit {
|
|
3972
|
+
border-bottom-color: #ff4d4f;
|
|
3973
|
+
}
|
|
3974
|
+
|
|
3975
|
+
/* 错误提示样式 */
|
|
3976
|
+
.error-tip {
|
|
3977
|
+
position: fixed;
|
|
3978
|
+
left: 0;
|
|
3979
|
+
top: 0;
|
|
3980
|
+
width: 100%;
|
|
3981
|
+
height: 100%;
|
|
3982
|
+
z-index: 1000;
|
|
3983
|
+
}
|
|
3984
3984
|
.icon-guanbi:before {
|
|
3985
3985
|
content: "\E676";
|
|
3986
3986
|
}
|