unika-components 1.1.83 → 1.1.85
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 +830 -830
- package/dist/unika-components.esm.js +27 -24
- package/dist/unika-components.umd.js +27 -24
- package/package.json +1 -1
|
@@ -75,6 +75,115 @@
|
|
|
75
75
|
transform: scale(1);
|
|
76
76
|
opacity: 1;
|
|
77
77
|
}
|
|
78
|
+
}.ele-shape {
|
|
79
|
+
position: absolute;
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.ani-wrap {
|
|
84
|
+
width: 100%;
|
|
85
|
+
height: 100%;
|
|
86
|
+
box-sizing: border-box;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-shape {
|
|
90
|
+
width: 100%;
|
|
91
|
+
height: 100%;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.svg-container :deep(svg) {
|
|
95
|
+
width: 100%;
|
|
96
|
+
height: 100%;
|
|
97
|
+
display: block;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.svg-loading,
|
|
101
|
+
.svg-error {
|
|
102
|
+
display: flex;
|
|
103
|
+
align-items: center;
|
|
104
|
+
justify-content: center;
|
|
105
|
+
width: 100%;
|
|
106
|
+
height: 100%;
|
|
107
|
+
background: rgba(0,0,0,0.05);
|
|
108
|
+
}
|
|
109
|
+
.element-video {
|
|
110
|
+
position: absolute;
|
|
111
|
+
overflow: hidden;
|
|
112
|
+
background-color: transparent;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.element-video .ani-wrap, .element-video img {
|
|
116
|
+
display: block;
|
|
117
|
+
width: 100%;
|
|
118
|
+
height: 100%;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.video-container {
|
|
122
|
+
width: 100%;
|
|
123
|
+
height: 100%;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.video-container iframe {
|
|
127
|
+
width: 100%;
|
|
128
|
+
height: 100%;
|
|
129
|
+
border: none;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.video-cover {
|
|
133
|
+
position: relative;
|
|
134
|
+
width: 100%;
|
|
135
|
+
height: 100%;
|
|
136
|
+
background-size: cover;
|
|
137
|
+
background-position: center;
|
|
138
|
+
cursor: pointer;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.video-cover .play-btn {
|
|
142
|
+
position: absolute;
|
|
143
|
+
left: 50%;
|
|
144
|
+
top: 50%;
|
|
145
|
+
transform: translate(-50%, -50%);
|
|
146
|
+
width: 50px;
|
|
147
|
+
height: 50px;
|
|
148
|
+
opacity: 0.8;
|
|
149
|
+
transition: opacity 0.2s;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.video-cover:hover .play-btn {
|
|
153
|
+
opacity: 1;
|
|
154
|
+
}.call {
|
|
155
|
+
position: absolute;
|
|
156
|
+
cursor: pointer;
|
|
157
|
+
user-select: none;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.call .ani-wrap {
|
|
161
|
+
display: flex;
|
|
162
|
+
justify-content: center;
|
|
163
|
+
align-items: center;
|
|
164
|
+
width: 100%;
|
|
165
|
+
height: 100%;
|
|
166
|
+
overflow: hidden;
|
|
167
|
+
transition: opacity 0.2s;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.call .ani-wrap:hover {
|
|
171
|
+
opacity: 0.9;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.call-content {
|
|
175
|
+
display: flex;
|
|
176
|
+
align-items: center;
|
|
177
|
+
justify-content: center;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.btn-text {
|
|
181
|
+
margin-left: 10px;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
.hb-tel:before {
|
|
186
|
+
content: "\E642";
|
|
78
187
|
}#audio {
|
|
79
188
|
position: absolute;
|
|
80
189
|
right: 10px;
|
|
@@ -145,348 +254,212 @@
|
|
|
145
254
|
width: 100%;
|
|
146
255
|
height: 2px;
|
|
147
256
|
background: #fff;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
to {
|
|
151
|
-
-webkit-transform: scale(1.2);
|
|
152
|
-
transform: scale(1.2)
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
.ele-calendar {
|
|
156
|
-
position: relative;
|
|
157
|
-
width: 325px !important;
|
|
158
|
-
min-height: 325px !important;
|
|
159
|
-
height: auto !important;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.ele-calendar .drag-point {
|
|
163
|
-
cursor: default !important;
|
|
257
|
+
}.count-down .drag-point {
|
|
258
|
+
cursor: default!important
|
|
164
259
|
}
|
|
165
260
|
|
|
166
|
-
.
|
|
167
|
-
position: relative;
|
|
261
|
+
.count-down .ani-wrap {
|
|
168
262
|
width: 100%;
|
|
169
|
-
|
|
170
|
-
height: auto !important;
|
|
171
|
-
padding: 22px 0;
|
|
263
|
+
height: 100%
|
|
172
264
|
}
|
|
173
265
|
|
|
174
|
-
.
|
|
266
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
267
|
+
display: -webkit-box;
|
|
268
|
+
display: -ms-flexbox;
|
|
175
269
|
display: flex;
|
|
176
|
-
|
|
177
|
-
align
|
|
178
|
-
|
|
179
|
-
|
|
270
|
+
height: 100%;
|
|
271
|
+
-webkit-box-align: center;
|
|
272
|
+
-ms-flex-align: center;
|
|
273
|
+
align-items: center;
|
|
274
|
+
-webkit-box-pack: center;
|
|
275
|
+
-ms-flex-pack: center;
|
|
276
|
+
justify-content: center
|
|
180
277
|
}
|
|
181
278
|
|
|
182
|
-
.
|
|
183
|
-
|
|
184
|
-
padding-bottom: 4px;
|
|
279
|
+
.count-down .finish-cont {
|
|
280
|
+
width: 100%
|
|
185
281
|
}
|
|
186
282
|
|
|
187
|
-
.
|
|
188
|
-
|
|
283
|
+
.count-down .count-flip {
|
|
284
|
+
display: -webkit-box;
|
|
285
|
+
display: -ms-flexbox;
|
|
286
|
+
display: flex;
|
|
287
|
+
height: 100%;
|
|
288
|
+
-webkit-box-align: center;
|
|
289
|
+
-ms-flex-align: center;
|
|
290
|
+
align-items: center;
|
|
291
|
+
-webkit-box-pack: center;
|
|
292
|
+
-ms-flex-pack: center;
|
|
293
|
+
justify-content: center
|
|
189
294
|
}
|
|
190
295
|
|
|
191
|
-
.
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
296
|
+
.count-down .count-flip .numscroll {
|
|
297
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
298
|
+
animation: numscroll .4s ease-in-out;
|
|
299
|
+
-webkit-animation-fill-mode: both;
|
|
300
|
+
animation-fill-mode: both
|
|
195
301
|
}
|
|
196
302
|
|
|
197
|
-
.
|
|
198
|
-
|
|
303
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
304
|
+
-webkit-transition: all .3s ease-in-out;
|
|
305
|
+
transition: all .3s ease-in-out;
|
|
306
|
+
opacity: .6;
|
|
307
|
+
-webkit-transform: scale(.5)!important;
|
|
308
|
+
transform: scale(.5)!important
|
|
199
309
|
}
|
|
200
310
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
311
|
+
@-webkit-keyframes numscroll {
|
|
312
|
+
0% {
|
|
313
|
+
-webkit-transform: translateZ(0);
|
|
314
|
+
transform: translateZ(0)
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
to {
|
|
318
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
319
|
+
transform: translate3d(0,100%,0)
|
|
320
|
+
}
|
|
208
321
|
}
|
|
209
322
|
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
323
|
+
@keyframes numscroll {
|
|
324
|
+
0% {
|
|
325
|
+
-webkit-transform: translateZ(0);
|
|
326
|
+
transform: translateZ(0)
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
to {
|
|
330
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
331
|
+
transform: translate3d(0,100%,0)
|
|
332
|
+
}
|
|
215
333
|
}
|
|
216
334
|
|
|
217
|
-
.
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
335
|
+
.count-down .count-flip .c-com {
|
|
336
|
+
min-width: 50px;
|
|
337
|
+
height: auto;
|
|
338
|
+
margin: 6px;
|
|
339
|
+
padding: 5px 0 6px;
|
|
340
|
+
background-color: #111
|
|
221
341
|
}
|
|
222
342
|
|
|
223
|
-
.
|
|
343
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
344
|
+
display: -webkit-box;
|
|
345
|
+
display: -ms-flexbox;
|
|
346
|
+
display: flex;
|
|
224
347
|
position: relative;
|
|
225
|
-
|
|
226
|
-
height:
|
|
227
|
-
|
|
228
|
-
|
|
348
|
+
width: 100%;
|
|
349
|
+
height: 100%;
|
|
350
|
+
-webkit-box-align: center;
|
|
351
|
+
-ms-flex-align: center;
|
|
352
|
+
align-items: center
|
|
229
353
|
}
|
|
230
354
|
|
|
231
|
-
.
|
|
232
|
-
|
|
355
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
356
|
+
line-height: 27px
|
|
233
357
|
}
|
|
234
358
|
|
|
235
|
-
.
|
|
236
|
-
|
|
359
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
360
|
+
position: absolute;
|
|
361
|
+
top: -100%
|
|
237
362
|
}
|
|
238
363
|
|
|
239
|
-
.
|
|
240
|
-
|
|
364
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
365
|
+
-webkit-transform: scale(1);
|
|
366
|
+
transform: scale(1)
|
|
241
367
|
}
|
|
242
368
|
|
|
243
|
-
.
|
|
244
|
-
display: none
|
|
245
|
-
font-size: 26px;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
|
|
249
|
-
position: absolute;
|
|
250
|
-
left: 50%;
|
|
251
|
-
top: 50%;
|
|
252
|
-
z-index: 1;
|
|
253
|
-
color: #666;
|
|
254
|
-
font-size: 13px;
|
|
255
|
-
transform: translate(-50%, -52%);
|
|
369
|
+
.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 {
|
|
370
|
+
display: none!important
|
|
256
371
|
}
|
|
257
372
|
|
|
258
|
-
.
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
373
|
+
.c-wrap {
|
|
374
|
+
width: 100%;
|
|
375
|
+
height: 100%;
|
|
376
|
+
overflow: hidden;
|
|
377
|
+
font-size: 0
|
|
263
378
|
}
|
|
264
379
|
|
|
265
|
-
.
|
|
266
|
-
|
|
380
|
+
.c-wrap.c-day-wrap {
|
|
381
|
+
text-align: center
|
|
267
382
|
}
|
|
268
383
|
|
|
269
|
-
.
|
|
270
|
-
|
|
271
|
-
display: -ms-flexbox;
|
|
272
|
-
display: flex;
|
|
273
|
-
-webkit-box-pack: justify;
|
|
274
|
-
-ms-flex-pack: justify;
|
|
275
|
-
justify-content: space-between;
|
|
276
|
-
-webkit-box-align: end;
|
|
277
|
-
-ms-flex-align: end;
|
|
278
|
-
align-items: flex-end;
|
|
279
|
-
line-height: 1;
|
|
280
|
-
padding: 0 16px 22px;
|
|
281
|
-
font-size: 36px
|
|
384
|
+
.c-wrap.c-day-wrap .c-num {
|
|
385
|
+
width: auto
|
|
282
386
|
}
|
|
283
387
|
|
|
284
|
-
.
|
|
285
|
-
|
|
388
|
+
.c-wrap .c-num {
|
|
389
|
+
display: inline-block;
|
|
390
|
+
width: 50%;
|
|
391
|
+
overflow: hidden;
|
|
392
|
+
font-size: 20px;
|
|
393
|
+
color: #999
|
|
286
394
|
}
|
|
287
395
|
|
|
288
|
-
.
|
|
396
|
+
.c-wrap .c-left .flex-wrap {
|
|
289
397
|
display: -webkit-box;
|
|
290
398
|
display: -ms-flexbox;
|
|
291
399
|
display: flex;
|
|
292
|
-
-webkit-box-pack:
|
|
293
|
-
-ms-flex-pack:
|
|
294
|
-
justify-content: flex-
|
|
295
|
-
height: 25px;
|
|
296
|
-
line-height: 25px;
|
|
297
|
-
padding: 0 10px;
|
|
298
|
-
border-radius: 13px
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
|
|
302
|
-
width: 14.2%;
|
|
303
|
-
text-align: center;
|
|
304
|
-
color: #fff;
|
|
305
|
-
font-size: 12px;
|
|
306
|
-
font-weight: 600
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
|
|
310
|
-
position: relative
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
|
|
314
|
-
position: absolute;
|
|
315
|
-
white-space: nowrap;
|
|
316
|
-
left: 50%;
|
|
317
|
-
top: 15%;
|
|
318
|
-
-webkit-transform: translateX(-50%);
|
|
319
|
-
transform: translateX(-50%);
|
|
320
|
-
font-size: 76px;
|
|
321
|
-
opacity: .1;
|
|
322
|
-
font-weight: 600
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
|
|
326
|
-
font-size: 0;
|
|
327
|
-
padding: 5px 10px 0;
|
|
328
|
-
text-align: left
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
|
|
332
|
-
position: relative;
|
|
333
|
-
display: inline-block;
|
|
334
|
-
width: 14.2%;
|
|
335
|
-
height: 25px;
|
|
336
|
-
text-align: center;
|
|
337
|
-
margin-top: 8px
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
|
|
341
|
-
display: block;
|
|
342
|
-
position: absolute;
|
|
343
|
-
left: 17%;
|
|
344
|
-
top: 0;
|
|
345
|
-
font-size: 25px
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
|
|
349
|
-
color: #fff!important
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
|
|
353
|
-
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
354
|
-
animation: jumpheart .8s ease infinite alternate
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
|
|
358
|
-
display: none;
|
|
359
|
-
font-size: 26px
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
|
|
363
|
-
position: absolute;
|
|
364
|
-
left: 50%;
|
|
365
|
-
top: 50%;
|
|
366
|
-
z-index: 1;
|
|
367
|
-
color: #666;
|
|
368
|
-
font-size: 13px;
|
|
369
|
-
-webkit-transform: translate(-50%,-52%);
|
|
370
|
-
transform: translate(-50%,-52%)
|
|
400
|
+
-webkit-box-pack: end;
|
|
401
|
+
-ms-flex-pack: end;
|
|
402
|
+
justify-content: flex-end
|
|
371
403
|
}
|
|
372
404
|
|
|
373
|
-
.
|
|
405
|
+
.c-wrap .c-text {
|
|
374
406
|
display: -webkit-box;
|
|
375
407
|
display: -ms-flexbox;
|
|
376
408
|
display: flex;
|
|
377
|
-
|
|
378
|
-
-
|
|
379
|
-
|
|
380
|
-
-
|
|
381
|
-
-
|
|
382
|
-
align
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
409
|
+
width: 100%;
|
|
410
|
+
font-size: 12px;
|
|
411
|
+
-webkit-box-pack: center;
|
|
412
|
+
-ms-flex-pack: center;
|
|
413
|
+
justify-content: center;
|
|
414
|
+
-webkit-box-align: center;
|
|
415
|
+
-ms-flex-align: center;
|
|
416
|
+
align-items: center;
|
|
417
|
+
white-space: nowrap
|
|
386
418
|
}
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
419
|
+
.element-ditu .ani-wrap {
|
|
420
|
+
width: 100%;
|
|
421
|
+
height: 100%;
|
|
422
|
+
overflow: hidden
|
|
390
423
|
}
|
|
391
424
|
|
|
392
|
-
.
|
|
393
|
-
|
|
425
|
+
.element-ditu .map {
|
|
426
|
+
width: 100%;
|
|
427
|
+
height: 100%
|
|
394
428
|
}
|
|
395
429
|
|
|
396
|
-
.
|
|
430
|
+
.element-ditu .map .el-button {
|
|
431
|
+
width: 100%;
|
|
432
|
+
height: 100%;
|
|
397
433
|
display: -webkit-box;
|
|
398
434
|
display: -ms-flexbox;
|
|
399
435
|
display: flex;
|
|
400
|
-
-webkit-box-
|
|
401
|
-
-ms-flex-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
width: 14.2%;
|
|
411
|
-
text-align: center;
|
|
412
|
-
color: #fff;
|
|
413
|
-
font-size: 12px;
|
|
414
|
-
font-weight: 600
|
|
415
|
-
}
|
|
416
|
-
|
|
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
|
-
}
|
|
436
|
+
-webkit-box-align: center;
|
|
437
|
+
-ms-flex-align: center;
|
|
438
|
+
align-items: center;
|
|
439
|
+
padding: 0;
|
|
440
|
+
-webkit-box-pack: center;
|
|
441
|
+
-ms-flex-pack: center;
|
|
442
|
+
justify-content: center;
|
|
443
|
+
background: inherit;
|
|
444
|
+
color: inherit;
|
|
445
|
+
border: none
|
|
461
446
|
}
|
|
462
447
|
|
|
463
|
-
.
|
|
464
|
-
|
|
465
|
-
|
|
448
|
+
.element-ditu .center-map {
|
|
449
|
+
width: 100%;
|
|
450
|
+
height: 100%;
|
|
451
|
+
background: #fff
|
|
466
452
|
}
|
|
467
453
|
|
|
468
|
-
.
|
|
454
|
+
.element-ditu .mask-map {
|
|
469
455
|
position: absolute;
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
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";
|
|
456
|
+
width: 100%;
|
|
457
|
+
height: 100%;
|
|
458
|
+
top: 0
|
|
487
459
|
}
|
|
488
|
-
.
|
|
489
|
-
|
|
460
|
+
.map-iframe {
|
|
461
|
+
width: 100%;
|
|
462
|
+
height: 100%;
|
|
490
463
|
}.ele-img {
|
|
491
464
|
position: absolute;
|
|
492
465
|
overflow: hidden;
|
|
@@ -541,254 +514,426 @@
|
|
|
541
514
|
cursor: pointer;
|
|
542
515
|
user-select: none;
|
|
543
516
|
}
|
|
544
|
-
|
|
545
|
-
.button .ani-wrap {
|
|
546
|
-
display: flex;
|
|
547
|
-
justify-content: center;
|
|
548
|
-
align-items: center;
|
|
517
|
+
|
|
518
|
+
.button .ani-wrap {
|
|
519
|
+
display: flex;
|
|
520
|
+
justify-content: center;
|
|
521
|
+
align-items: center;
|
|
522
|
+
width: 100%;
|
|
523
|
+
height: 100%;
|
|
524
|
+
overflow: hidden;
|
|
525
|
+
transition: opacity 0.2s;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.button .ani-wrap:hover {
|
|
529
|
+
opacity: 0.9;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.button-content {
|
|
533
|
+
display: flex;
|
|
534
|
+
align-items: center;
|
|
535
|
+
justify-content: center;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.btn-text {
|
|
539
|
+
margin-left: 10px;
|
|
540
|
+
}.ele-effect {
|
|
541
|
+
will-change: transform;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.ele-effect .effect-wrap {
|
|
545
|
+
position: relative;
|
|
546
|
+
width: 100%;
|
|
547
|
+
height: 100%;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.particle {
|
|
551
|
+
position: absolute;
|
|
552
|
+
background-repeat: no-repeat;
|
|
553
|
+
background-size: contain;
|
|
554
|
+
animation-name: falling;
|
|
555
|
+
animation-timing-function: linear;
|
|
556
|
+
animation-iteration-count: infinite;
|
|
557
|
+
will-change: transform;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
@keyframes falling {
|
|
561
|
+
0% {
|
|
562
|
+
transform: translateY(0) rotate(0deg);
|
|
563
|
+
opacity: 1;
|
|
564
|
+
}
|
|
565
|
+
80% {
|
|
566
|
+
opacity: 0.8;
|
|
567
|
+
}
|
|
568
|
+
100% {
|
|
569
|
+
transform: translateY(100vh) rotate(360deg);
|
|
570
|
+
opacity: 0;
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
.ele-lottie .ele-lotwrap {
|
|
574
|
+
overflow: hidden
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.ele-effect .effect-wrap {
|
|
578
|
+
position: relative;
|
|
579
|
+
overflow: hidden;
|
|
580
|
+
width: 100%;
|
|
581
|
+
height: 100%
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.ele-effect .e-small {
|
|
585
|
+
position: absolute;
|
|
586
|
+
width: 24px;
|
|
587
|
+
height: 24px;
|
|
588
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
589
|
+
background-size: cover;
|
|
590
|
+
background-repeat: no-repeat;
|
|
591
|
+
-webkit-transform-origin: center;
|
|
592
|
+
transform-origin: center;
|
|
593
|
+
-webkit-animation: snow 5s linear infinite;
|
|
594
|
+
animation: snow 5s linear infinite
|
|
595
|
+
}
|
|
596
|
+
@keyframes jumpheart {
|
|
597
|
+
to {
|
|
598
|
+
-webkit-transform: scale(1.2);
|
|
599
|
+
transform: scale(1.2)
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
.ele-calendar {
|
|
603
|
+
position: relative;
|
|
604
|
+
width: 325px !important;
|
|
605
|
+
min-height: 325px !important;
|
|
606
|
+
height: auto !important;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.ele-calendar .drag-point {
|
|
610
|
+
cursor: default !important;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.ele-calendar .ani-wrap {
|
|
614
|
+
position: relative;
|
|
549
615
|
width: 100%;
|
|
550
|
-
height:
|
|
551
|
-
|
|
552
|
-
|
|
616
|
+
min-height: 325px !important;
|
|
617
|
+
height: auto !important;
|
|
618
|
+
padding: 22px 0;
|
|
553
619
|
}
|
|
554
|
-
|
|
555
|
-
.
|
|
556
|
-
|
|
620
|
+
|
|
621
|
+
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
622
|
+
display: flex;
|
|
623
|
+
justify-content: space-between;
|
|
624
|
+
align-items: flex-end;
|
|
625
|
+
line-height: 1;
|
|
626
|
+
padding: 0 47px 20px;
|
|
557
627
|
}
|
|
558
628
|
|
|
559
|
-
.
|
|
629
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
630
|
+
font-size: 25px;
|
|
631
|
+
padding-bottom: 4px;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
635
|
+
font-size: 25px;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
639
|
+
position: relative;
|
|
640
|
+
top: 2px;
|
|
641
|
+
font-size: 57px;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.ele-calendar .ani-wrap .can-wrap .can-main {
|
|
645
|
+
padding: 0 23px;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week {
|
|
560
649
|
display: flex;
|
|
561
|
-
|
|
562
|
-
|
|
650
|
+
justify-content: flex-start;
|
|
651
|
+
height: 25px;
|
|
652
|
+
line-height: 25px;
|
|
653
|
+
padding: 0 10px;
|
|
654
|
+
border-radius: 13px;
|
|
563
655
|
}
|
|
564
656
|
|
|
565
|
-
.
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
657
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
|
|
658
|
+
width: 14.2%;
|
|
659
|
+
text-align: center;
|
|
660
|
+
color: #fff;
|
|
661
|
+
font-size: 12px;
|
|
570
662
|
}
|
|
571
663
|
|
|
572
|
-
.ani-wrap {
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
664
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
|
|
665
|
+
font-size: 0;
|
|
666
|
+
padding: 5px 10px 0;
|
|
667
|
+
text-align: left;
|
|
576
668
|
}
|
|
577
669
|
|
|
578
|
-
.
|
|
579
|
-
|
|
580
|
-
|
|
670
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
|
|
671
|
+
position: relative;
|
|
672
|
+
display: inline-block;
|
|
673
|
+
height: 25px;
|
|
674
|
+
text-align: center;
|
|
675
|
+
margin-top: 8px;
|
|
581
676
|
}
|
|
582
677
|
|
|
583
|
-
.
|
|
584
|
-
width: 100%;
|
|
585
|
-
height: 100%;
|
|
678
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
|
|
586
679
|
display: block;
|
|
587
680
|
}
|
|
588
681
|
|
|
589
|
-
.
|
|
590
|
-
|
|
591
|
-
display: flex;
|
|
592
|
-
align-items: center;
|
|
593
|
-
justify-content: center;
|
|
594
|
-
width: 100%;
|
|
595
|
-
height: 100%;
|
|
596
|
-
background: rgba(0,0,0,0.05);
|
|
597
|
-
}.count-down .drag-point {
|
|
598
|
-
cursor: default!important
|
|
682
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
|
|
683
|
+
color: #fff !important;
|
|
599
684
|
}
|
|
600
685
|
|
|
601
|
-
.
|
|
602
|
-
|
|
603
|
-
height: 100%
|
|
686
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
|
|
687
|
+
animation: jumpheart 0.8s ease infinite alternate;
|
|
604
688
|
}
|
|
605
689
|
|
|
606
|
-
.
|
|
690
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
|
|
691
|
+
display: none;
|
|
692
|
+
font-size: 26px;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
|
|
696
|
+
position: absolute;
|
|
697
|
+
left: 50%;
|
|
698
|
+
top: 50%;
|
|
699
|
+
z-index: 1;
|
|
700
|
+
color: #666;
|
|
701
|
+
font-size: 13px;
|
|
702
|
+
transform: translate(-50%, -52%);
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.ele-calendar .bottom-center,
|
|
706
|
+
.ele-calendar .left-center,
|
|
707
|
+
.ele-calendar .right-center,
|
|
708
|
+
.ele-calendar .top-center {
|
|
709
|
+
display: none !important;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.ele-calendar .ani-wrap .can-wrap2 {
|
|
713
|
+
padding: 21px 23px 0
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top {
|
|
607
717
|
display: -webkit-box;
|
|
608
718
|
display: -ms-flexbox;
|
|
609
719
|
display: flex;
|
|
610
|
-
|
|
611
|
-
-
|
|
612
|
-
-
|
|
613
|
-
align
|
|
614
|
-
-
|
|
615
|
-
-
|
|
616
|
-
|
|
720
|
+
-webkit-box-pack: justify;
|
|
721
|
+
-ms-flex-pack: justify;
|
|
722
|
+
justify-content: space-between;
|
|
723
|
+
-webkit-box-align: end;
|
|
724
|
+
-ms-flex-align: end;
|
|
725
|
+
align-items: flex-end;
|
|
726
|
+
line-height: 1;
|
|
727
|
+
padding: 0 16px 22px;
|
|
728
|
+
font-size: 36px
|
|
617
729
|
}
|
|
618
730
|
|
|
619
|
-
.
|
|
620
|
-
|
|
731
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top span {
|
|
732
|
+
font-size: 16px
|
|
621
733
|
}
|
|
622
734
|
|
|
623
|
-
.
|
|
735
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
|
|
624
736
|
display: -webkit-box;
|
|
625
737
|
display: -ms-flexbox;
|
|
626
738
|
display: flex;
|
|
627
|
-
|
|
628
|
-
-
|
|
629
|
-
-
|
|
630
|
-
|
|
631
|
-
-
|
|
632
|
-
|
|
633
|
-
|
|
739
|
+
-webkit-box-pack: start;
|
|
740
|
+
-ms-flex-pack: start;
|
|
741
|
+
justify-content: flex-start;
|
|
742
|
+
height: 25px;
|
|
743
|
+
line-height: 25px;
|
|
744
|
+
padding: 0 10px;
|
|
745
|
+
border-radius: 13px
|
|
634
746
|
}
|
|
635
747
|
|
|
636
|
-
.
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
748
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
|
|
749
|
+
width: 14.2%;
|
|
750
|
+
text-align: center;
|
|
751
|
+
color: #fff;
|
|
752
|
+
font-size: 12px;
|
|
753
|
+
font-weight: 600
|
|
641
754
|
}
|
|
642
755
|
|
|
643
|
-
.
|
|
644
|
-
|
|
645
|
-
transition: all .3s ease-in-out;
|
|
646
|
-
opacity: .6;
|
|
647
|
-
-webkit-transform: scale(.5)!important;
|
|
648
|
-
transform: scale(.5)!important
|
|
756
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
|
|
757
|
+
position: relative
|
|
649
758
|
}
|
|
650
759
|
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
760
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
|
|
761
|
+
position: absolute;
|
|
762
|
+
white-space: nowrap;
|
|
763
|
+
left: 50%;
|
|
764
|
+
top: 15%;
|
|
765
|
+
-webkit-transform: translateX(-50%);
|
|
766
|
+
transform: translateX(-50%);
|
|
767
|
+
font-size: 76px;
|
|
768
|
+
opacity: .1;
|
|
769
|
+
font-weight: 600
|
|
770
|
+
}
|
|
656
771
|
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
772
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
|
|
773
|
+
font-size: 0;
|
|
774
|
+
padding: 5px 10px 0;
|
|
775
|
+
text-align: left
|
|
661
776
|
}
|
|
662
777
|
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
778
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
|
|
779
|
+
position: relative;
|
|
780
|
+
display: inline-block;
|
|
781
|
+
width: 14.2%;
|
|
782
|
+
height: 25px;
|
|
783
|
+
text-align: center;
|
|
784
|
+
margin-top: 8px
|
|
785
|
+
}
|
|
668
786
|
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
787
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
|
|
788
|
+
display: block;
|
|
789
|
+
position: absolute;
|
|
790
|
+
left: 17%;
|
|
791
|
+
top: 0;
|
|
792
|
+
font-size: 25px
|
|
673
793
|
}
|
|
674
794
|
|
|
675
|
-
.
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
795
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
|
|
796
|
+
color: #fff!important
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
|
|
800
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
801
|
+
animation: jumpheart .8s ease infinite alternate
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
|
|
805
|
+
display: none;
|
|
806
|
+
font-size: 26px
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
|
|
810
|
+
position: absolute;
|
|
811
|
+
left: 50%;
|
|
812
|
+
top: 50%;
|
|
813
|
+
z-index: 1;
|
|
814
|
+
color: #666;
|
|
815
|
+
font-size: 13px;
|
|
816
|
+
-webkit-transform: translate(-50%,-52%);
|
|
817
|
+
transform: translate(-50%,-52%)
|
|
681
818
|
}
|
|
682
819
|
|
|
683
|
-
.
|
|
820
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top {
|
|
684
821
|
display: -webkit-box;
|
|
685
822
|
display: -ms-flexbox;
|
|
686
823
|
display: flex;
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
-webkit-box-align:
|
|
691
|
-
-ms-flex-align:
|
|
692
|
-
align-items:
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
line-height: 27px
|
|
824
|
+
-webkit-box-pack: justify;
|
|
825
|
+
-ms-flex-pack: justify;
|
|
826
|
+
justify-content: space-between;
|
|
827
|
+
-webkit-box-align: end;
|
|
828
|
+
-ms-flex-align: end;
|
|
829
|
+
align-items: flex-end;
|
|
830
|
+
line-height: 1;
|
|
831
|
+
padding: 18px 33px 10px;
|
|
832
|
+
font-size: 36px;
|
|
697
833
|
}
|
|
698
834
|
|
|
699
|
-
.
|
|
700
|
-
|
|
701
|
-
top: -100%
|
|
835
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top span {
|
|
836
|
+
font-size: 16px
|
|
702
837
|
}
|
|
703
838
|
|
|
704
|
-
.
|
|
705
|
-
-
|
|
706
|
-
transform: scale(1)
|
|
839
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
|
|
840
|
+
font-size: 20px
|
|
707
841
|
}
|
|
708
842
|
|
|
709
|
-
.
|
|
710
|
-
display:
|
|
843
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
|
|
844
|
+
display: -webkit-box;
|
|
845
|
+
display: -ms-flexbox;
|
|
846
|
+
display: flex;
|
|
847
|
+
-webkit-box-pack: start;
|
|
848
|
+
-ms-flex-pack: start;
|
|
849
|
+
justify-content: flex-start;
|
|
850
|
+
height: 40px;
|
|
851
|
+
line-height: 40px;
|
|
852
|
+
padding: 0 34px;
|
|
853
|
+
border-bottom: 1px solid
|
|
711
854
|
}
|
|
712
855
|
|
|
713
|
-
.
|
|
714
|
-
width:
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
font-size:
|
|
856
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
|
|
857
|
+
width: 14.2%;
|
|
858
|
+
text-align: center;
|
|
859
|
+
color: #fff;
|
|
860
|
+
font-size: 12px;
|
|
861
|
+
font-weight: 600
|
|
718
862
|
}
|
|
719
863
|
|
|
720
|
-
.
|
|
721
|
-
|
|
864
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
865
|
+
position: relative
|
|
722
866
|
}
|
|
723
867
|
|
|
724
|
-
.
|
|
725
|
-
|
|
868
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
|
|
869
|
+
font-size: 0;
|
|
870
|
+
padding: 5px 33px 0;
|
|
871
|
+
text-align: left
|
|
726
872
|
}
|
|
727
873
|
|
|
728
|
-
.
|
|
874
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
|
|
875
|
+
position: relative;
|
|
729
876
|
display: inline-block;
|
|
730
|
-
width:
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
877
|
+
width: 14.2%;
|
|
878
|
+
height: 25px;
|
|
879
|
+
text-align: center;
|
|
880
|
+
margin-top: 8px;
|
|
734
881
|
}
|
|
735
882
|
|
|
736
|
-
.
|
|
737
|
-
|
|
738
|
-
display: -ms-flexbox;
|
|
739
|
-
display: flex;
|
|
740
|
-
-webkit-box-pack: end;
|
|
741
|
-
-ms-flex-pack: end;
|
|
742
|
-
justify-content: flex-end
|
|
883
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
|
|
884
|
+
color: #eee
|
|
743
885
|
}
|
|
744
886
|
|
|
745
|
-
.
|
|
746
|
-
display:
|
|
747
|
-
display: -ms-flexbox;
|
|
748
|
-
display: flex;
|
|
749
|
-
width: 100%;
|
|
750
|
-
font-size: 12px;
|
|
751
|
-
-webkit-box-pack: center;
|
|
752
|
-
-ms-flex-pack: center;
|
|
753
|
-
justify-content: center;
|
|
754
|
-
-webkit-box-align: center;
|
|
755
|
-
-ms-flex-align: center;
|
|
756
|
-
align-items: center;
|
|
757
|
-
white-space: nowrap
|
|
758
|
-
}
|
|
759
|
-
.call {
|
|
887
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
|
|
888
|
+
display: block;
|
|
760
889
|
position: absolute;
|
|
761
|
-
|
|
762
|
-
|
|
890
|
+
left: 12%;
|
|
891
|
+
top: 2px;
|
|
763
892
|
}
|
|
764
893
|
|
|
765
|
-
.
|
|
766
|
-
|
|
767
|
-
justify-content: center;
|
|
768
|
-
align-items: center;
|
|
769
|
-
width: 100%;
|
|
770
|
-
height: 100%;
|
|
771
|
-
overflow: hidden;
|
|
772
|
-
transition: opacity 0.2s;
|
|
894
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
|
|
895
|
+
font-size: 12px
|
|
773
896
|
}
|
|
774
897
|
|
|
775
|
-
.
|
|
776
|
-
|
|
898
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
|
|
899
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
900
|
+
animation: jumpheart .8s ease infinite alternate
|
|
777
901
|
}
|
|
778
902
|
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
903
|
+
@keyframes jumpheart {
|
|
904
|
+
to {
|
|
905
|
+
-webkit-transform: scale(1.2);
|
|
906
|
+
transform: scale(1.2)
|
|
907
|
+
}
|
|
783
908
|
}
|
|
784
909
|
|
|
785
|
-
.
|
|
786
|
-
|
|
910
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
|
|
911
|
+
display: none;
|
|
912
|
+
font-size: 26px
|
|
787
913
|
}
|
|
788
914
|
|
|
915
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
|
|
916
|
+
position: absolute;
|
|
917
|
+
left: 50%;
|
|
918
|
+
top: 50%;
|
|
919
|
+
z-index: 1;
|
|
920
|
+
color: #666;
|
|
921
|
+
font-size: 13px;
|
|
922
|
+
-webkit-transform: translate(-50%,-52%);
|
|
923
|
+
transform: translate(-50%,-52%)
|
|
924
|
+
}
|
|
789
925
|
|
|
790
|
-
.
|
|
791
|
-
|
|
926
|
+
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
927
|
+
display: none!important
|
|
928
|
+
}
|
|
929
|
+
.icon-tuoyuanxing:before {
|
|
930
|
+
content: "\E6A7";
|
|
931
|
+
}
|
|
932
|
+
.icon-zan1:before {
|
|
933
|
+
content: "\E66D";
|
|
934
|
+
}
|
|
935
|
+
.icon-xingzhuangjiehe:before {
|
|
936
|
+
content: "\E6A6";
|
|
792
937
|
}/* Iconfont definition */
|
|
793
938
|
.icon-danmuliebiao1:before {
|
|
794
939
|
content: "\E68A";
|
|
@@ -1692,7 +1837,134 @@
|
|
|
1692
1837
|
100% { transform: rotate(360deg); }
|
|
1693
1838
|
}
|
|
1694
1839
|
|
|
1695
|
-
|
|
1840
|
+
.form-input {
|
|
1841
|
+
position: absolute;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
.input-wrapper {
|
|
1845
|
+
display: flex;
|
|
1846
|
+
align-items: center;
|
|
1847
|
+
width: 100%;
|
|
1848
|
+
height: 100%;
|
|
1849
|
+
padding: 0 10px;
|
|
1850
|
+
box-sizing: border-box;
|
|
1851
|
+
position: relative;
|
|
1852
|
+
transition: border-color 0.3s;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.required-marker {
|
|
1856
|
+
font-size: 12px;
|
|
1857
|
+
padding: 0 5px 0 0;
|
|
1858
|
+
color: red;
|
|
1859
|
+
vertical-align: middle;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
input {
|
|
1863
|
+
flex: 1;
|
|
1864
|
+
border: none;
|
|
1865
|
+
outline: none;
|
|
1866
|
+
background: transparent;
|
|
1867
|
+
height: 100%;
|
|
1868
|
+
padding: 0;
|
|
1869
|
+
margin: 0;
|
|
1870
|
+
}
|
|
1871
|
+
/*
|
|
1872
|
+
input::placeholder {
|
|
1873
|
+
color: #ccc;
|
|
1874
|
+
opacity: 1;
|
|
1875
|
+
} */
|
|
1876
|
+
|
|
1877
|
+
.dynamic-placeholder-input::placeholder {
|
|
1878
|
+
color: var(--placeholder-color, #999);
|
|
1879
|
+
opacity: 1;
|
|
1880
|
+
}
|
|
1881
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
1882
|
+
color: var(--placeholder-color, #999);
|
|
1883
|
+
}
|
|
1884
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
1885
|
+
color: var(--placeholder-color, #999);
|
|
1886
|
+
opacity: 1;
|
|
1887
|
+
}
|
|
1888
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
1889
|
+
color: var(--placeholder-color, #999);
|
|
1890
|
+
}#page-list .tip-cover {
|
|
1891
|
+
position: fixed;
|
|
1892
|
+
left: 0;
|
|
1893
|
+
top: 0;
|
|
1894
|
+
width: 100%;
|
|
1895
|
+
height: 100%;
|
|
1896
|
+
display: -ms-flexbox;
|
|
1897
|
+
display: flex;
|
|
1898
|
+
-ms-flex-align: center;
|
|
1899
|
+
align-items: center;
|
|
1900
|
+
-ms-flex-pack: center;
|
|
1901
|
+
justify-content: center;
|
|
1902
|
+
z-index: 999;
|
|
1903
|
+
background-color: rgba(0,0,0,.7)
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
#page-list .tip-cover .tip {
|
|
1907
|
+
width: 80%;
|
|
1908
|
+
max-width: 250px;
|
|
1909
|
+
padding: 10px;
|
|
1910
|
+
border-radius: 5px;
|
|
1911
|
+
background-color: #fff
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1914
|
+
#page-list .tip-cover .tip-btn {
|
|
1915
|
+
display: block;
|
|
1916
|
+
margin: 25px auto;
|
|
1917
|
+
width: 120px;
|
|
1918
|
+
height: 30px;
|
|
1919
|
+
color: #fff;
|
|
1920
|
+
border-radius: 4px;
|
|
1921
|
+
text-align: center;
|
|
1922
|
+
font-size: 14px;
|
|
1923
|
+
line-height: 30px;
|
|
1924
|
+
background: #ed5566
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
#page-list .tip-cover .tip-content {
|
|
1928
|
+
font-size: 14px;
|
|
1929
|
+
padding-top: 30px;
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
.tip-cover {
|
|
1933
|
+
position: fixed;
|
|
1934
|
+
left: 0;
|
|
1935
|
+
top: 0;
|
|
1936
|
+
width: 100%;
|
|
1937
|
+
height: 100%;
|
|
1938
|
+
display: -ms-flexbox;
|
|
1939
|
+
display: flex;
|
|
1940
|
+
-ms-flex-align: center;
|
|
1941
|
+
align-items: center;
|
|
1942
|
+
-ms-flex-pack: center;
|
|
1943
|
+
justify-content: center;
|
|
1944
|
+
z-index: 999;
|
|
1945
|
+
background-color: rgba(0,0,0,.7)
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
.tip-cover .tip {
|
|
1949
|
+
width: 80%;
|
|
1950
|
+
max-width: 250px;
|
|
1951
|
+
padding: 5px;
|
|
1952
|
+
border-radius: 3px;
|
|
1953
|
+
background-color: #fff
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.tip-cover .tip-btn {
|
|
1957
|
+
display: block;
|
|
1958
|
+
margin: 13px auto;
|
|
1959
|
+
width: 64px;
|
|
1960
|
+
height: 20px;
|
|
1961
|
+
color: #fff;
|
|
1962
|
+
border-radius: 4px;
|
|
1963
|
+
text-align: center;
|
|
1964
|
+
font-size: 14px;
|
|
1965
|
+
line-height: 20px;
|
|
1966
|
+
background: #ed5566;
|
|
1967
|
+
} body, html {
|
|
1696
1968
|
width: 100%;
|
|
1697
1969
|
height: 100%;
|
|
1698
1970
|
}
|
|
@@ -3163,110 +3435,9 @@ to {
|
|
|
3163
3435
|
-webkit-transform: none;
|
|
3164
3436
|
transform: none
|
|
3165
3437
|
}
|
|
3166
|
-
}.ele-effect {
|
|
3167
|
-
will-change: transform;
|
|
3168
|
-
}
|
|
3169
|
-
|
|
3170
|
-
.ele-effect .effect-wrap {
|
|
3171
|
-
position: relative;
|
|
3172
|
-
width: 100%;
|
|
3173
|
-
height: 100%;
|
|
3174
|
-
}
|
|
3175
|
-
|
|
3176
|
-
.particle {
|
|
3177
|
-
position: absolute;
|
|
3178
|
-
background-repeat: no-repeat;
|
|
3179
|
-
background-size: contain;
|
|
3180
|
-
animation-name: falling;
|
|
3181
|
-
animation-timing-function: linear;
|
|
3182
|
-
animation-iteration-count: infinite;
|
|
3183
|
-
will-change: transform;
|
|
3184
|
-
}
|
|
3185
|
-
|
|
3186
|
-
@keyframes falling {
|
|
3187
|
-
0% {
|
|
3188
|
-
transform: translateY(0) rotate(0deg);
|
|
3189
|
-
opacity: 1;
|
|
3190
|
-
}
|
|
3191
|
-
80% {
|
|
3192
|
-
opacity: 0.8;
|
|
3193
|
-
}
|
|
3194
|
-
100% {
|
|
3195
|
-
transform: translateY(100vh) rotate(360deg);
|
|
3196
|
-
opacity: 0;
|
|
3197
|
-
}
|
|
3198
|
-
}
|
|
3199
|
-
.ele-lottie .ele-lotwrap {
|
|
3200
|
-
overflow: hidden
|
|
3201
|
-
}
|
|
3202
|
-
|
|
3203
|
-
.ele-effect .effect-wrap {
|
|
3204
|
-
position: relative;
|
|
3205
|
-
overflow: hidden;
|
|
3206
|
-
width: 100%;
|
|
3207
|
-
height: 100%
|
|
3208
|
-
}
|
|
3209
|
-
|
|
3210
|
-
.ele-effect .e-small {
|
|
3211
|
-
position: absolute;
|
|
3212
|
-
width: 24px;
|
|
3213
|
-
height: 24px;
|
|
3214
|
-
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
3215
|
-
background-size: cover;
|
|
3216
|
-
background-repeat: no-repeat;
|
|
3217
|
-
-webkit-transform-origin: center;
|
|
3218
|
-
transform-origin: center;
|
|
3219
|
-
-webkit-animation: snow 5s linear infinite;
|
|
3220
|
-
animation: snow 5s linear infinite
|
|
3221
3438
|
}
|
|
3222
3439
|
.ele-lottie .ele-lotwrap {
|
|
3223
3440
|
overflow: hidden;
|
|
3224
|
-
}
|
|
3225
|
-
.element-video {
|
|
3226
|
-
position: absolute;
|
|
3227
|
-
overflow: hidden;
|
|
3228
|
-
background-color: transparent;
|
|
3229
|
-
}
|
|
3230
|
-
|
|
3231
|
-
.element-video .ani-wrap, .element-video img {
|
|
3232
|
-
display: block;
|
|
3233
|
-
width: 100%;
|
|
3234
|
-
height: 100%;
|
|
3235
|
-
}
|
|
3236
|
-
|
|
3237
|
-
.video-container {
|
|
3238
|
-
width: 100%;
|
|
3239
|
-
height: 100%;
|
|
3240
|
-
}
|
|
3241
|
-
|
|
3242
|
-
.video-container iframe {
|
|
3243
|
-
width: 100%;
|
|
3244
|
-
height: 100%;
|
|
3245
|
-
border: none;
|
|
3246
|
-
}
|
|
3247
|
-
|
|
3248
|
-
.video-cover {
|
|
3249
|
-
position: relative;
|
|
3250
|
-
width: 100%;
|
|
3251
|
-
height: 100%;
|
|
3252
|
-
background-size: cover;
|
|
3253
|
-
background-position: center;
|
|
3254
|
-
cursor: pointer;
|
|
3255
|
-
}
|
|
3256
|
-
|
|
3257
|
-
.video-cover .play-btn {
|
|
3258
|
-
position: absolute;
|
|
3259
|
-
left: 50%;
|
|
3260
|
-
top: 50%;
|
|
3261
|
-
transform: translate(-50%, -50%);
|
|
3262
|
-
width: 50px;
|
|
3263
|
-
height: 50px;
|
|
3264
|
-
opacity: 0.8;
|
|
3265
|
-
transition: opacity 0.2s;
|
|
3266
|
-
}
|
|
3267
|
-
|
|
3268
|
-
.video-cover:hover .play-btn {
|
|
3269
|
-
opacity: 1;
|
|
3270
3441
|
}.form-submit {
|
|
3271
3442
|
cursor: pointer;
|
|
3272
3443
|
transition: all 0.2s;
|
|
@@ -3313,53 +3484,107 @@ transform: none !important;
|
|
|
3313
3484
|
.form-submit:disabled {
|
|
3314
3485
|
opacity: 0.7;
|
|
3315
3486
|
cursor: not-allowed;
|
|
3316
|
-
}.element-ditu .ani-wrap {
|
|
3317
|
-
width: 100%;
|
|
3318
|
-
height: 100%;
|
|
3319
|
-
overflow: hidden
|
|
3320
|
-
}
|
|
3321
|
-
|
|
3322
|
-
.element-ditu .map {
|
|
3323
|
-
width: 100%;
|
|
3324
|
-
height: 100%
|
|
3325
|
-
}
|
|
3326
|
-
|
|
3327
|
-
.element-ditu .map .el-button {
|
|
3328
|
-
width: 100%;
|
|
3329
|
-
height: 100%;
|
|
3330
|
-
display: -webkit-box;
|
|
3331
|
-
display: -ms-flexbox;
|
|
3332
|
-
display: flex;
|
|
3333
|
-
-webkit-box-align: center;
|
|
3334
|
-
-ms-flex-align: center;
|
|
3335
|
-
align-items: center;
|
|
3336
|
-
padding: 0;
|
|
3337
|
-
-webkit-box-pack: center;
|
|
3338
|
-
-ms-flex-pack: center;
|
|
3339
|
-
justify-content: center;
|
|
3340
|
-
background: inherit;
|
|
3341
|
-
color: inherit;
|
|
3342
|
-
border: none
|
|
3343
|
-
}
|
|
3344
|
-
|
|
3345
|
-
.element-ditu .center-map {
|
|
3346
|
-
width: 100%;
|
|
3347
|
-
height: 100%;
|
|
3348
|
-
background: #fff
|
|
3349
|
-
}
|
|
3350
|
-
|
|
3351
|
-
.element-ditu .mask-map {
|
|
3352
|
-
position: absolute;
|
|
3353
|
-
width: 100%;
|
|
3354
|
-
height: 100%;
|
|
3355
|
-
top: 0
|
|
3356
|
-
}
|
|
3357
|
-
.map-iframe {
|
|
3358
|
-
width: 100%;
|
|
3359
|
-
height: 100%;
|
|
3360
3487
|
}/* .ele-form {
|
|
3361
3488
|
position: absolute;
|
|
3362
3489
|
user-select: none;
|
|
3490
|
+
} */
|
|
3491
|
+
|
|
3492
|
+
.f-select {
|
|
3493
|
+
cursor: pointer;
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
.ani-wrap {
|
|
3497
|
+
position: relative;
|
|
3498
|
+
}
|
|
3499
|
+
|
|
3500
|
+
.f-select .ani-wrap .fs-tit {
|
|
3501
|
+
position: relative;
|
|
3502
|
+
display: flex;
|
|
3503
|
+
padding: 0 5px;
|
|
3504
|
+
height: 35px;
|
|
3505
|
+
line-height: 35px;
|
|
3506
|
+
align-items: center;
|
|
3507
|
+
}
|
|
3508
|
+
|
|
3509
|
+
.require {
|
|
3510
|
+
padding: 0 5px 0 0;
|
|
3511
|
+
color: red;
|
|
3512
|
+
vertical-align: middle;
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
.fs-cont {
|
|
3516
|
+
padding-right: 15px;
|
|
3517
|
+
white-space: nowrap;
|
|
3518
|
+
overflow: hidden;
|
|
3519
|
+
text-overflow: ellipsis;
|
|
3520
|
+
flex-grow: 1;
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
|
+
.icon-bofang1 {
|
|
3524
|
+
font-size: 12px;
|
|
3525
|
+
transition: transform 0.2s ease;
|
|
3526
|
+
}
|
|
3527
|
+
|
|
3528
|
+
.rotate-180 {
|
|
3529
|
+
transform: rotate(180deg) !important;
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
.f-real {
|
|
3533
|
+
position: absolute;
|
|
3534
|
+
left: 0;
|
|
3535
|
+
top: 0;
|
|
3536
|
+
width: 100%;
|
|
3537
|
+
height: 100%;
|
|
3538
|
+
z-index: 1;
|
|
3539
|
+
opacity: 0;
|
|
3540
|
+
cursor: pointer;
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
.dropdown-menu {
|
|
3544
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
.dropdown-item {
|
|
3548
|
+
padding: 8px 10px;
|
|
3549
|
+
cursor: pointer;
|
|
3550
|
+
transition: background-color 0.2s;
|
|
3551
|
+
}
|
|
3552
|
+
|
|
3553
|
+
.dropdown-item:hover {
|
|
3554
|
+
background-color: #f5f5f5;
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3557
|
+
.dropdown-item.selected {
|
|
3558
|
+
background-color: #e6f7ff;
|
|
3559
|
+
color: #1890ff;
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3562
|
+
.f-select .fs-tit .icon-bofang1 {
|
|
3563
|
+
position: absolute;
|
|
3564
|
+
right: 10px;
|
|
3565
|
+
font-size: 12px;
|
|
3566
|
+
display: inline-block;
|
|
3567
|
+
transform: rotate(90deg);
|
|
3568
|
+
}
|
|
3569
|
+
|
|
3570
|
+
.icon-bofang1:before {
|
|
3571
|
+
content: "\E6CF";
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
.has-error {
|
|
3575
|
+
border-color: #ff4d4f !important;
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
.error-tip {
|
|
3579
|
+
position: fixed;
|
|
3580
|
+
left: 0;
|
|
3581
|
+
top: 0;
|
|
3582
|
+
width: 100%;
|
|
3583
|
+
height: 100%;
|
|
3584
|
+
z-index: 1000;
|
|
3585
|
+
}/* .ele-form {
|
|
3586
|
+
position: absolute;
|
|
3587
|
+
user-select: none;
|
|
3363
3588
|
}
|
|
3364
3589
|
*/
|
|
3365
3590
|
.f-single {
|
|
@@ -3451,134 +3676,7 @@ cursor: not-allowed;
|
|
|
3451
3676
|
width: 100%;
|
|
3452
3677
|
height: 100%;
|
|
3453
3678
|
z-index: 1000;
|
|
3454
|
-
}.form
|
|
3455
|
-
position: absolute;
|
|
3456
|
-
}
|
|
3457
|
-
|
|
3458
|
-
.input-wrapper {
|
|
3459
|
-
display: flex;
|
|
3460
|
-
align-items: center;
|
|
3461
|
-
width: 100%;
|
|
3462
|
-
height: 100%;
|
|
3463
|
-
padding: 0 10px;
|
|
3464
|
-
box-sizing: border-box;
|
|
3465
|
-
position: relative;
|
|
3466
|
-
transition: border-color 0.3s;
|
|
3467
|
-
}
|
|
3468
|
-
|
|
3469
|
-
.required-marker {
|
|
3470
|
-
font-size: 12px;
|
|
3471
|
-
padding: 0 5px 0 0;
|
|
3472
|
-
color: red;
|
|
3473
|
-
vertical-align: middle;
|
|
3474
|
-
}
|
|
3475
|
-
|
|
3476
|
-
input {
|
|
3477
|
-
flex: 1;
|
|
3478
|
-
border: none;
|
|
3479
|
-
outline: none;
|
|
3480
|
-
background: transparent;
|
|
3481
|
-
height: 100%;
|
|
3482
|
-
padding: 0;
|
|
3483
|
-
margin: 0;
|
|
3484
|
-
}
|
|
3485
|
-
/*
|
|
3486
|
-
input::placeholder {
|
|
3487
|
-
color: #ccc;
|
|
3488
|
-
opacity: 1;
|
|
3489
|
-
} */
|
|
3490
|
-
|
|
3491
|
-
.dynamic-placeholder-input::placeholder {
|
|
3492
|
-
color: var(--placeholder-color, #999);
|
|
3493
|
-
opacity: 1;
|
|
3494
|
-
}
|
|
3495
|
-
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
3496
|
-
color: var(--placeholder-color, #999);
|
|
3497
|
-
}
|
|
3498
|
-
.dynamic-placeholder-input::-moz-placeholder {
|
|
3499
|
-
color: var(--placeholder-color, #999);
|
|
3500
|
-
opacity: 1;
|
|
3501
|
-
}
|
|
3502
|
-
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
3503
|
-
color: var(--placeholder-color, #999);
|
|
3504
|
-
}#page-list .tip-cover {
|
|
3505
|
-
position: fixed;
|
|
3506
|
-
left: 0;
|
|
3507
|
-
top: 0;
|
|
3508
|
-
width: 100%;
|
|
3509
|
-
height: 100%;
|
|
3510
|
-
display: -ms-flexbox;
|
|
3511
|
-
display: flex;
|
|
3512
|
-
-ms-flex-align: center;
|
|
3513
|
-
align-items: center;
|
|
3514
|
-
-ms-flex-pack: center;
|
|
3515
|
-
justify-content: center;
|
|
3516
|
-
z-index: 999;
|
|
3517
|
-
background-color: rgba(0,0,0,.7)
|
|
3518
|
-
}
|
|
3519
|
-
|
|
3520
|
-
#page-list .tip-cover .tip {
|
|
3521
|
-
width: 80%;
|
|
3522
|
-
max-width: 250px;
|
|
3523
|
-
padding: 10px;
|
|
3524
|
-
border-radius: 5px;
|
|
3525
|
-
background-color: #fff
|
|
3526
|
-
}
|
|
3527
|
-
|
|
3528
|
-
#page-list .tip-cover .tip-btn {
|
|
3529
|
-
display: block;
|
|
3530
|
-
margin: 25px auto;
|
|
3531
|
-
width: 120px;
|
|
3532
|
-
height: 30px;
|
|
3533
|
-
color: #fff;
|
|
3534
|
-
border-radius: 4px;
|
|
3535
|
-
text-align: center;
|
|
3536
|
-
font-size: 14px;
|
|
3537
|
-
line-height: 30px;
|
|
3538
|
-
background: #ed5566
|
|
3539
|
-
}
|
|
3540
|
-
|
|
3541
|
-
#page-list .tip-cover .tip-content {
|
|
3542
|
-
font-size: 14px;
|
|
3543
|
-
padding-top: 30px;
|
|
3544
|
-
}
|
|
3545
|
-
|
|
3546
|
-
.tip-cover {
|
|
3547
|
-
position: fixed;
|
|
3548
|
-
left: 0;
|
|
3549
|
-
top: 0;
|
|
3550
|
-
width: 100%;
|
|
3551
|
-
height: 100%;
|
|
3552
|
-
display: -ms-flexbox;
|
|
3553
|
-
display: flex;
|
|
3554
|
-
-ms-flex-align: center;
|
|
3555
|
-
align-items: center;
|
|
3556
|
-
-ms-flex-pack: center;
|
|
3557
|
-
justify-content: center;
|
|
3558
|
-
z-index: 999;
|
|
3559
|
-
background-color: rgba(0,0,0,.7)
|
|
3560
|
-
}
|
|
3561
|
-
|
|
3562
|
-
.tip-cover .tip {
|
|
3563
|
-
width: 80%;
|
|
3564
|
-
max-width: 250px;
|
|
3565
|
-
padding: 5px;
|
|
3566
|
-
border-radius: 3px;
|
|
3567
|
-
background-color: #fff
|
|
3568
|
-
}
|
|
3569
|
-
|
|
3570
|
-
.tip-cover .tip-btn {
|
|
3571
|
-
display: block;
|
|
3572
|
-
margin: 13px auto;
|
|
3573
|
-
width: 64px;
|
|
3574
|
-
height: 20px;
|
|
3575
|
-
color: #fff;
|
|
3576
|
-
border-radius: 4px;
|
|
3577
|
-
text-align: center;
|
|
3578
|
-
font-size: 14px;
|
|
3579
|
-
line-height: 20px;
|
|
3580
|
-
background: #ed5566;
|
|
3581
|
-
} /* .ele-form {
|
|
3679
|
+
}/* .ele-form {
|
|
3582
3680
|
position: absolute;
|
|
3583
3681
|
user-select: none;
|
|
3584
3682
|
} */
|
|
@@ -3663,105 +3761,7 @@ cursor: not-allowed;
|
|
|
3663
3761
|
|
|
3664
3762
|
.has-error .fs-tit {
|
|
3665
3763
|
border-bottom-color: #ff4d4f;
|
|
3666
|
-
}
|
|
3667
|
-
position: absolute;
|
|
3668
|
-
user-select: none;
|
|
3669
|
-
} */
|
|
3670
|
-
|
|
3671
|
-
.f-select {
|
|
3672
|
-
cursor: pointer;
|
|
3673
|
-
}
|
|
3674
|
-
|
|
3675
|
-
.ani-wrap {
|
|
3676
|
-
position: relative;
|
|
3677
|
-
}
|
|
3678
|
-
|
|
3679
|
-
.f-select .ani-wrap .fs-tit {
|
|
3680
|
-
position: relative;
|
|
3681
|
-
display: flex;
|
|
3682
|
-
padding: 0 5px;
|
|
3683
|
-
height: 35px;
|
|
3684
|
-
line-height: 35px;
|
|
3685
|
-
align-items: center;
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
.require {
|
|
3689
|
-
padding: 0 5px 0 0;
|
|
3690
|
-
color: red;
|
|
3691
|
-
vertical-align: middle;
|
|
3692
|
-
}
|
|
3693
|
-
|
|
3694
|
-
.fs-cont {
|
|
3695
|
-
padding-right: 15px;
|
|
3696
|
-
white-space: nowrap;
|
|
3697
|
-
overflow: hidden;
|
|
3698
|
-
text-overflow: ellipsis;
|
|
3699
|
-
flex-grow: 1;
|
|
3700
|
-
}
|
|
3701
|
-
|
|
3702
|
-
.icon-bofang1 {
|
|
3703
|
-
font-size: 12px;
|
|
3704
|
-
transition: transform 0.2s ease;
|
|
3705
|
-
}
|
|
3706
|
-
|
|
3707
|
-
.rotate-180 {
|
|
3708
|
-
transform: rotate(180deg) !important;
|
|
3709
|
-
}
|
|
3710
|
-
|
|
3711
|
-
.f-real {
|
|
3712
|
-
position: absolute;
|
|
3713
|
-
left: 0;
|
|
3714
|
-
top: 0;
|
|
3715
|
-
width: 100%;
|
|
3716
|
-
height: 100%;
|
|
3717
|
-
z-index: 1;
|
|
3718
|
-
opacity: 0;
|
|
3719
|
-
cursor: pointer;
|
|
3720
|
-
}
|
|
3721
|
-
|
|
3722
|
-
.dropdown-menu {
|
|
3723
|
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
3724
|
-
}
|
|
3725
|
-
|
|
3726
|
-
.dropdown-item {
|
|
3727
|
-
padding: 8px 10px;
|
|
3728
|
-
cursor: pointer;
|
|
3729
|
-
transition: background-color 0.2s;
|
|
3730
|
-
}
|
|
3731
|
-
|
|
3732
|
-
.dropdown-item:hover {
|
|
3733
|
-
background-color: #f5f5f5;
|
|
3734
|
-
}
|
|
3735
|
-
|
|
3736
|
-
.dropdown-item.selected {
|
|
3737
|
-
background-color: #e6f7ff;
|
|
3738
|
-
color: #1890ff;
|
|
3739
|
-
}
|
|
3740
|
-
|
|
3741
|
-
.f-select .fs-tit .icon-bofang1 {
|
|
3742
|
-
position: absolute;
|
|
3743
|
-
right: 10px;
|
|
3744
|
-
font-size: 12px;
|
|
3745
|
-
display: inline-block;
|
|
3746
|
-
transform: rotate(90deg);
|
|
3747
|
-
}
|
|
3748
|
-
|
|
3749
|
-
.icon-bofang1:before {
|
|
3750
|
-
content: "\E6CF";
|
|
3751
|
-
}
|
|
3752
|
-
|
|
3753
|
-
.has-error {
|
|
3754
|
-
border-color: #ff4d4f !important;
|
|
3755
|
-
}
|
|
3756
|
-
|
|
3757
|
-
.error-tip {
|
|
3758
|
-
position: fixed;
|
|
3759
|
-
left: 0;
|
|
3760
|
-
top: 0;
|
|
3761
|
-
width: 100%;
|
|
3762
|
-
height: 100%;
|
|
3763
|
-
z-index: 1000;
|
|
3764
|
-
}
|
|
3764
|
+
}
|
|
3765
3765
|
.icon-guanbi:before {
|
|
3766
3766
|
content: "\E676";
|
|
3767
3767
|
}
|
|
@@ -4156,18 +4156,18 @@ cursor: not-allowed;
|
|
|
4156
4156
|
color: #F44336; /* 失败的红色 */
|
|
4157
4157
|
}
|
|
4158
4158
|
|
|
4159
|
-
.global.
|
|
4159
|
+
.global.receipt {
|
|
4160
4160
|
width: 35px;
|
|
4161
4161
|
height: 55px;
|
|
4162
4162
|
border-radius: 50%;
|
|
4163
4163
|
text-align: center;
|
|
4164
|
-
margin-bottom:
|
|
4164
|
+
margin-bottom: 5px;
|
|
4165
4165
|
border: 2px solid #fff;
|
|
4166
4166
|
cursor: pointer;
|
|
4167
4167
|
}
|
|
4168
|
-
.icon-
|
|
4168
|
+
.icon-liuyan:before { content: "\E636"; }
|
|
4169
4169
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4170
|
-
.global.
|
|
4170
|
+
.global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
|
|
4171
4171
|
.global.video {
|
|
4172
4172
|
width: 35px;
|
|
4173
4173
|
height: 55px;
|
|
@@ -4182,18 +4182,18 @@ cursor: not-allowed;
|
|
|
4182
4182
|
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
4183
4183
|
}
|
|
4184
4184
|
|
|
4185
|
-
.global.
|
|
4185
|
+
.global.tel {
|
|
4186
4186
|
width: 35px;
|
|
4187
4187
|
height: 55px;
|
|
4188
4188
|
border-radius: 50%;
|
|
4189
4189
|
text-align: center;
|
|
4190
|
-
margin-bottom:
|
|
4190
|
+
margin-bottom: 15px;
|
|
4191
4191
|
border: 2px solid #fff;
|
|
4192
4192
|
cursor: pointer;
|
|
4193
4193
|
}
|
|
4194
|
-
.icon-
|
|
4194
|
+
.icon-dianhua:before { content: "\E60E"; }
|
|
4195
4195
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4196
|
-
.global.
|
|
4196
|
+
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4197
4197
|
.global.map {
|
|
4198
4198
|
width: 35px;
|
|
4199
4199
|
height: 55px;
|