unika-components 1.2.6 → 1.2.8
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/invite.css +712 -0
- package/dist/unika-components.css +869 -868
- package/dist/unika-components.esm.js +0 -1
- package/dist/unika-components.umd.js +0 -1
- package/package.json +5 -5
|
@@ -102,896 +102,832 @@
|
|
|
102
102
|
transform: scale(1);
|
|
103
103
|
opacity: 1;
|
|
104
104
|
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
105
|
+
}#audio {
|
|
106
|
+
position: absolute;
|
|
107
|
+
right: 10px;
|
|
108
|
+
top: 10px;
|
|
109
|
+
z-index: 103;
|
|
110
|
+
width: 30px;
|
|
111
|
+
height: 30px;
|
|
112
|
+
display: flex;
|
|
113
|
+
align-items: center;
|
|
109
114
|
}
|
|
110
115
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
height: 100%
|
|
116
|
+
#audio .mrotate {
|
|
117
|
+
animation: mrotate 5s linear infinite;
|
|
114
118
|
}
|
|
115
119
|
|
|
116
|
-
|
|
120
|
+
@keyframes mrotate {
|
|
121
|
+
to {
|
|
122
|
+
transform: rotate(1turn);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
#audio .audio {
|
|
117
127
|
width: 100%;
|
|
118
128
|
height: 100%;
|
|
119
|
-
display: -webkit-box;
|
|
120
|
-
display: -ms-flexbox;
|
|
121
129
|
display: flex;
|
|
122
|
-
-webkit-box-align: center;
|
|
123
|
-
-ms-flex-align: center;
|
|
124
130
|
align-items: center;
|
|
125
|
-
padding: 0;
|
|
126
|
-
-webkit-box-pack: center;
|
|
127
|
-
-ms-flex-pack: center;
|
|
128
131
|
justify-content: center;
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
border:
|
|
132
|
+
color: #fff;
|
|
133
|
+
background: #666;
|
|
134
|
+
border-radius: 50%;
|
|
135
|
+
overflow: hidden;
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
transition: all 0.3s ease;
|
|
132
138
|
}
|
|
133
139
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
height: 100%;
|
|
137
|
-
background: #fff
|
|
140
|
+
#audio .audio.a-border {
|
|
141
|
+
border: 1px solid #fff;
|
|
138
142
|
}
|
|
139
143
|
|
|
140
|
-
.
|
|
141
|
-
|
|
142
|
-
width:
|
|
143
|
-
height:
|
|
144
|
-
|
|
144
|
+
#audio .audio .music-icon {
|
|
145
|
+
display: block;
|
|
146
|
+
width: 60%;
|
|
147
|
+
height: 60%;
|
|
148
|
+
object-fit: contain;
|
|
145
149
|
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
+
|
|
151
|
+
#audio .audio .iconfont {
|
|
152
|
+
font-size: 2opx;
|
|
153
|
+
line-height: 1;
|
|
154
|
+
}
|
|
155
|
+
#audio .icon-cancel {
|
|
150
156
|
position: absolute;
|
|
151
|
-
overflow: hidden;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.ele-img .ani-wrap {
|
|
155
157
|
width: 100%;
|
|
156
158
|
height: 100%;
|
|
159
|
+
border-radius: 50%;
|
|
160
|
+
overflow: hidden;
|
|
161
|
+
padding: 15px 0;
|
|
162
|
+
}
|
|
163
|
+
#audio .icon-cancel .icon-h {
|
|
164
|
+
transform: rotate(45deg);
|
|
165
|
+
width: 100%;
|
|
166
|
+
height: 2px;
|
|
167
|
+
background: #fff;
|
|
157
168
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
position: relative;
|
|
161
|
-
display: block;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
.ele-img .rotate-wrap {
|
|
169
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
170
|
+
content: '';
|
|
165
171
|
position: absolute;
|
|
166
|
-
left: 0;
|
|
167
|
-
right: 0;
|
|
168
|
-
top: 0;
|
|
169
|
-
bottom: 0;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.ele-img .ele-img-bg,
|
|
173
|
-
.ele-img .rotate-wrap .img-wrap {
|
|
174
172
|
width: 100%;
|
|
175
|
-
height:
|
|
176
|
-
|
|
173
|
+
height: 2px;
|
|
174
|
+
background: #fff;
|
|
177
175
|
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
background-size: cover;
|
|
183
|
-
background-position: 50% 50%;
|
|
184
|
-
background-repeat: no-repeat;
|
|
185
|
-
background-clip: border-box;
|
|
176
|
+
@keyframes jumpheart {
|
|
177
|
+
to {
|
|
178
|
+
-webkit-transform: scale(1.2);
|
|
179
|
+
transform: scale(1.2)
|
|
186
180
|
}
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}
|
|
194
|
-
to {
|
|
195
|
-
opacity: 1;
|
|
196
|
-
transform: scale(1);
|
|
197
|
-
}
|
|
198
|
-
}.ele-shape {
|
|
199
|
-
position: absolute;
|
|
200
|
-
overflow: hidden;
|
|
181
|
+
}
|
|
182
|
+
.ele-calendar {
|
|
183
|
+
position: relative;
|
|
184
|
+
width: 325px !important;
|
|
185
|
+
min-height: 325px !important;
|
|
186
|
+
height: auto !important;
|
|
201
187
|
}
|
|
202
188
|
|
|
203
|
-
.
|
|
204
|
-
|
|
205
|
-
height: 100%;
|
|
206
|
-
box-sizing: border-box;
|
|
189
|
+
.ele-calendar .drag-point {
|
|
190
|
+
cursor: default !important;
|
|
207
191
|
}
|
|
208
192
|
|
|
209
|
-
.
|
|
193
|
+
.ele-calendar .ani-wrap {
|
|
194
|
+
position: relative;
|
|
210
195
|
width: 100%;
|
|
211
|
-
height:
|
|
196
|
+
min-height: 325px !important;
|
|
197
|
+
height: auto !important;
|
|
198
|
+
padding: 22px 0;
|
|
212
199
|
}
|
|
213
200
|
|
|
214
|
-
.
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
201
|
+
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
202
|
+
display: flex;
|
|
203
|
+
justify-content: space-between;
|
|
204
|
+
align-items: flex-end;
|
|
205
|
+
line-height: 1;
|
|
206
|
+
padding: 0 47px 20px;
|
|
218
207
|
}
|
|
219
208
|
|
|
220
|
-
.
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
display: block;
|
|
209
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
210
|
+
font-size: 25px;
|
|
211
|
+
padding-bottom: 4px;
|
|
224
212
|
}
|
|
225
213
|
|
|
214
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
215
|
+
font-size: 25px;
|
|
216
|
+
}
|
|
226
217
|
|
|
227
|
-
.
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
justify-content: center;
|
|
232
|
-
width: 100%;
|
|
233
|
-
height: 100%;
|
|
234
|
-
background: rgba(0,0,0,0.05);
|
|
218
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
219
|
+
position: relative;
|
|
220
|
+
top: 2px;
|
|
221
|
+
font-size: 57px;
|
|
235
222
|
}
|
|
236
223
|
|
|
237
|
-
.ele-
|
|
238
|
-
|
|
239
|
-
height: 100%;
|
|
240
|
-
overflow: visible;
|
|
241
|
-
}.button {
|
|
242
|
-
position: absolute;
|
|
243
|
-
cursor: pointer;
|
|
244
|
-
user-select: none;
|
|
224
|
+
.ele-calendar .ani-wrap .can-wrap .can-main {
|
|
225
|
+
padding: 0 23px;
|
|
245
226
|
}
|
|
246
|
-
|
|
247
|
-
.
|
|
227
|
+
|
|
228
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week {
|
|
248
229
|
display: flex;
|
|
249
|
-
justify-content:
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
transition: opacity 0.2s;
|
|
230
|
+
justify-content: flex-start;
|
|
231
|
+
height: 25px;
|
|
232
|
+
line-height: 25px;
|
|
233
|
+
padding: 0 10px;
|
|
234
|
+
border-radius: 13px;
|
|
255
235
|
}
|
|
256
|
-
|
|
257
|
-
.
|
|
258
|
-
|
|
236
|
+
|
|
237
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
|
|
238
|
+
width: 14.2%;
|
|
239
|
+
text-align: center;
|
|
240
|
+
color: #fff;
|
|
241
|
+
font-size: 12px;
|
|
259
242
|
}
|
|
260
243
|
|
|
261
|
-
.
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
244
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
|
|
245
|
+
font-size: 0;
|
|
246
|
+
padding: 5px 10px 0;
|
|
247
|
+
text-align: left;
|
|
265
248
|
}
|
|
266
249
|
|
|
267
|
-
.
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
background-color: transparent;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.element-video .ani-wrap, .element-video img {
|
|
277
|
-
display: block;
|
|
278
|
-
width: 100%;
|
|
279
|
-
height: 100%;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
.video-container {
|
|
283
|
-
width: 100%;
|
|
284
|
-
height: 100%;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.video-container iframe {
|
|
288
|
-
width: 100%;
|
|
289
|
-
height: 100%;
|
|
290
|
-
border: none;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
.video-cover {
|
|
294
|
-
position: relative;
|
|
295
|
-
width: 100%;
|
|
296
|
-
height: 100%;
|
|
297
|
-
background-size: cover;
|
|
298
|
-
background-position: center;
|
|
299
|
-
cursor: pointer;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
.video-cover .play-btn {
|
|
303
|
-
position: absolute;
|
|
304
|
-
left: 50%;
|
|
305
|
-
top: 50%;
|
|
306
|
-
transform: translate(-50%, -50%);
|
|
307
|
-
width: 50px;
|
|
308
|
-
height: 50px;
|
|
309
|
-
opacity: 0.8;
|
|
310
|
-
transition: opacity 0.2s;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
.video-cover:hover .play-btn {
|
|
314
|
-
opacity: 1;
|
|
315
|
-
}.ele-effect {
|
|
316
|
-
will-change: transform;
|
|
250
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
|
|
251
|
+
position: relative;
|
|
252
|
+
display: inline-block;
|
|
253
|
+
height: 25px;
|
|
254
|
+
text-align: center;
|
|
255
|
+
margin-top: 8px;
|
|
317
256
|
}
|
|
318
257
|
|
|
319
|
-
.ele-
|
|
320
|
-
|
|
321
|
-
width: 100%;
|
|
322
|
-
height: 100%;
|
|
258
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
|
|
259
|
+
display: block;
|
|
323
260
|
}
|
|
324
261
|
|
|
325
|
-
.
|
|
326
|
-
|
|
327
|
-
background-repeat: no-repeat;
|
|
328
|
-
background-size: contain;
|
|
329
|
-
animation-name: falling;
|
|
330
|
-
animation-timing-function: linear;
|
|
331
|
-
animation-iteration-count: infinite;
|
|
332
|
-
will-change: transform;
|
|
262
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
|
|
263
|
+
color: #fff !important;
|
|
333
264
|
}
|
|
334
265
|
|
|
335
|
-
|
|
336
|
-
0
|
|
337
|
-
transform: translateY(0) rotate(0deg);
|
|
338
|
-
opacity: 1;
|
|
339
|
-
}
|
|
340
|
-
80% {
|
|
341
|
-
opacity: 0.8;
|
|
342
|
-
}
|
|
343
|
-
100% {
|
|
344
|
-
transform: translateY(100vh) rotate(360deg);
|
|
345
|
-
opacity: 0;
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
.ele-lottie .ele-lotwrap {
|
|
349
|
-
overflow: hidden
|
|
266
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
|
|
267
|
+
animation: jumpheart 0.8s ease infinite alternate;
|
|
350
268
|
}
|
|
351
269
|
|
|
352
|
-
.ele-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
width: 100%;
|
|
356
|
-
height: 100%
|
|
270
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
|
|
271
|
+
display: none;
|
|
272
|
+
font-size: 26px;
|
|
357
273
|
}
|
|
358
274
|
|
|
359
|
-
.ele-
|
|
360
|
-
position: absolute;
|
|
361
|
-
width: 24px;
|
|
362
|
-
height: 24px;
|
|
363
|
-
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
364
|
-
background-size: cover;
|
|
365
|
-
background-repeat: no-repeat;
|
|
366
|
-
-webkit-transform-origin: center;
|
|
367
|
-
transform-origin: center;
|
|
368
|
-
-webkit-animation: snow 5s linear infinite;
|
|
369
|
-
animation: snow 5s linear infinite
|
|
370
|
-
}#audio {
|
|
275
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
|
|
371
276
|
position: absolute;
|
|
372
|
-
|
|
373
|
-
top:
|
|
374
|
-
z-index:
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
align-items: center;
|
|
277
|
+
left: 50%;
|
|
278
|
+
top: 50%;
|
|
279
|
+
z-index: 1;
|
|
280
|
+
color: #666;
|
|
281
|
+
font-size: 13px;
|
|
282
|
+
transform: translate(-50%, -52%);
|
|
379
283
|
}
|
|
380
284
|
|
|
381
|
-
|
|
382
|
-
|
|
285
|
+
.ele-calendar .bottom-center,
|
|
286
|
+
.ele-calendar .left-center,
|
|
287
|
+
.ele-calendar .right-center,
|
|
288
|
+
.ele-calendar .top-center {
|
|
289
|
+
display: none !important;
|
|
383
290
|
}
|
|
384
291
|
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
transform: rotate(1turn);
|
|
388
|
-
}
|
|
292
|
+
.ele-calendar .ani-wrap .can-wrap2 {
|
|
293
|
+
padding: 21px 23px 0
|
|
389
294
|
}
|
|
390
295
|
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
296
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top {
|
|
297
|
+
display: -webkit-box;
|
|
298
|
+
display: -ms-flexbox;
|
|
394
299
|
display: flex;
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
300
|
+
-webkit-box-pack: justify;
|
|
301
|
+
-ms-flex-pack: justify;
|
|
302
|
+
justify-content: space-between;
|
|
303
|
+
-webkit-box-align: end;
|
|
304
|
+
-ms-flex-align: end;
|
|
305
|
+
align-items: flex-end;
|
|
306
|
+
line-height: 1;
|
|
307
|
+
padding: 0 16px 22px;
|
|
308
|
+
font-size: 36px
|
|
403
309
|
}
|
|
404
310
|
|
|
405
|
-
|
|
406
|
-
|
|
311
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top span {
|
|
312
|
+
font-size: 16px
|
|
407
313
|
}
|
|
408
314
|
|
|
409
|
-
|
|
410
|
-
display:
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
315
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
|
|
316
|
+
display: -webkit-box;
|
|
317
|
+
display: -ms-flexbox;
|
|
318
|
+
display: flex;
|
|
319
|
+
-webkit-box-pack: start;
|
|
320
|
+
-ms-flex-pack: start;
|
|
321
|
+
justify-content: flex-start;
|
|
322
|
+
height: 25px;
|
|
323
|
+
line-height: 25px;
|
|
324
|
+
padding: 0 10px;
|
|
325
|
+
border-radius: 13px
|
|
414
326
|
}
|
|
415
327
|
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
width: 100%;
|
|
423
|
-
height: 100%;
|
|
424
|
-
border-radius: 50%;
|
|
425
|
-
overflow: hidden;
|
|
426
|
-
padding: 15px 0;
|
|
328
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
|
|
329
|
+
width: 14.2%;
|
|
330
|
+
text-align: center;
|
|
331
|
+
color: #fff;
|
|
332
|
+
font-size: 12px;
|
|
333
|
+
font-weight: 600
|
|
427
334
|
}
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
height: 2px;
|
|
432
|
-
background: #fff;
|
|
433
|
-
}
|
|
434
|
-
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
435
|
-
content: '';
|
|
436
|
-
position: absolute;
|
|
437
|
-
width: 100%;
|
|
438
|
-
height: 2px;
|
|
439
|
-
background: #fff;
|
|
440
|
-
}.count-down .drag-point {
|
|
441
|
-
cursor: default!important
|
|
335
|
+
|
|
336
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
|
|
337
|
+
position: relative
|
|
442
338
|
}
|
|
443
339
|
|
|
444
|
-
.
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
340
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
|
|
341
|
+
position: absolute;
|
|
342
|
+
white-space: nowrap;
|
|
343
|
+
left: 50%;
|
|
344
|
+
top: 15%;
|
|
345
|
+
-webkit-transform: translateX(-50%);
|
|
346
|
+
transform: translateX(-50%);
|
|
347
|
+
font-size: 76px;
|
|
348
|
+
opacity: .1;
|
|
349
|
+
font-weight: 600
|
|
448
350
|
}
|
|
449
351
|
|
|
450
|
-
.
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
height: 100%;
|
|
455
|
-
-webkit-box-align: center;
|
|
456
|
-
-ms-flex-align: center;
|
|
457
|
-
align-items: center;
|
|
458
|
-
-webkit-box-pack: center;
|
|
459
|
-
-ms-flex-pack: center;
|
|
460
|
-
justify-content: center
|
|
352
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
|
|
353
|
+
font-size: 0;
|
|
354
|
+
padding: 5px 10px 0;
|
|
355
|
+
text-align: left
|
|
461
356
|
}
|
|
462
357
|
|
|
463
|
-
.
|
|
464
|
-
|
|
358
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
|
|
359
|
+
position: relative;
|
|
360
|
+
display: inline-block;
|
|
361
|
+
width: 14.2%;
|
|
362
|
+
height: 25px;
|
|
363
|
+
text-align: center;
|
|
364
|
+
margin-top: 8px
|
|
465
365
|
}
|
|
466
366
|
|
|
467
|
-
.
|
|
468
|
-
display:
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
-
|
|
473
|
-
-ms-flex-align: center;
|
|
474
|
-
align-items: center;
|
|
475
|
-
-webkit-box-pack: center;
|
|
476
|
-
-ms-flex-pack: center;
|
|
477
|
-
justify-content: center
|
|
367
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
|
|
368
|
+
display: block;
|
|
369
|
+
position: absolute;
|
|
370
|
+
left: 17%;
|
|
371
|
+
top: 0;
|
|
372
|
+
font-size: 25px
|
|
478
373
|
}
|
|
479
374
|
|
|
480
|
-
.
|
|
481
|
-
|
|
482
|
-
-webkit-box-direction: normal;
|
|
483
|
-
-ms-flex-direction: column;
|
|
484
|
-
flex-direction: column;
|
|
485
|
-
height: auto;
|
|
486
|
-
min-height: 100%;
|
|
375
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
|
|
376
|
+
color: #fff!important
|
|
487
377
|
}
|
|
488
378
|
|
|
489
|
-
.
|
|
490
|
-
|
|
491
|
-
|
|
379
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
|
|
380
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
381
|
+
animation: jumpheart .8s ease infinite alternate
|
|
492
382
|
}
|
|
493
383
|
|
|
494
|
-
.
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
-webkit-animation-fill-mode: both;
|
|
498
|
-
animation-fill-mode: both
|
|
384
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
|
|
385
|
+
display: none;
|
|
386
|
+
font-size: 26px
|
|
499
387
|
}
|
|
500
388
|
|
|
501
|
-
.
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
-
|
|
506
|
-
|
|
389
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
|
|
390
|
+
position: absolute;
|
|
391
|
+
left: 50%;
|
|
392
|
+
top: 50%;
|
|
393
|
+
z-index: 1;
|
|
394
|
+
color: #666;
|
|
395
|
+
font-size: 13px;
|
|
396
|
+
-webkit-transform: translate(-50%,-52%);
|
|
397
|
+
transform: translate(-50%,-52%)
|
|
507
398
|
}
|
|
508
399
|
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
400
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top {
|
|
401
|
+
display: -webkit-box;
|
|
402
|
+
display: -ms-flexbox;
|
|
403
|
+
display: flex;
|
|
404
|
+
-webkit-box-pack: justify;
|
|
405
|
+
-ms-flex-pack: justify;
|
|
406
|
+
justify-content: space-between;
|
|
407
|
+
-webkit-box-align: end;
|
|
408
|
+
-ms-flex-align: end;
|
|
409
|
+
align-items: flex-end;
|
|
410
|
+
line-height: 1;
|
|
411
|
+
padding: 18px 33px 10px;
|
|
412
|
+
font-size: 36px;
|
|
519
413
|
}
|
|
520
414
|
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
-webkit-transform: translateZ(0);
|
|
524
|
-
transform: translateZ(0)
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
to {
|
|
528
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
529
|
-
transform: translate3d(0,100%,0)
|
|
530
|
-
}
|
|
415
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top span {
|
|
416
|
+
font-size: 16px
|
|
531
417
|
}
|
|
532
418
|
|
|
533
|
-
.
|
|
534
|
-
|
|
535
|
-
height: auto;
|
|
536
|
-
margin: 6px;
|
|
537
|
-
padding: 5px 0 6px;
|
|
538
|
-
background-color: #111
|
|
419
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
|
|
420
|
+
font-size: 20px
|
|
539
421
|
}
|
|
540
422
|
|
|
541
|
-
.
|
|
423
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
|
|
542
424
|
display: -webkit-box;
|
|
543
425
|
display: -ms-flexbox;
|
|
544
426
|
display: flex;
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
554
|
-
line-height: 27px
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
558
|
-
position: absolute;
|
|
559
|
-
top: -100%
|
|
427
|
+
-webkit-box-pack: start;
|
|
428
|
+
-ms-flex-pack: start;
|
|
429
|
+
justify-content: flex-start;
|
|
430
|
+
height: 40px;
|
|
431
|
+
line-height: 40px;
|
|
432
|
+
padding: 0 34px;
|
|
433
|
+
border-bottom: 1px solid
|
|
560
434
|
}
|
|
561
435
|
|
|
562
|
-
.
|
|
563
|
-
|
|
564
|
-
|
|
436
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
|
|
437
|
+
width: 14.2%;
|
|
438
|
+
text-align: center;
|
|
439
|
+
color: #fff;
|
|
440
|
+
font-size: 12px;
|
|
441
|
+
font-weight: 600
|
|
565
442
|
}
|
|
566
443
|
|
|
567
|
-
.
|
|
568
|
-
|
|
444
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
445
|
+
position: relative
|
|
569
446
|
}
|
|
570
447
|
|
|
571
|
-
.
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
font-size: 0
|
|
448
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
|
|
449
|
+
font-size: 0;
|
|
450
|
+
padding: 5px 33px 0;
|
|
451
|
+
text-align: left
|
|
576
452
|
}
|
|
577
453
|
|
|
578
|
-
.
|
|
579
|
-
|
|
454
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
|
|
455
|
+
position: relative;
|
|
456
|
+
display: inline-block;
|
|
457
|
+
width: 14.2%;
|
|
458
|
+
height: 25px;
|
|
459
|
+
text-align: center;
|
|
460
|
+
margin-top: 8px;
|
|
580
461
|
}
|
|
581
462
|
|
|
582
|
-
.
|
|
583
|
-
|
|
463
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
|
|
464
|
+
color: #eee
|
|
584
465
|
}
|
|
585
466
|
|
|
586
|
-
.
|
|
587
|
-
display:
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
color: #999
|
|
467
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
|
|
468
|
+
display: block;
|
|
469
|
+
position: absolute;
|
|
470
|
+
left: 12%;
|
|
471
|
+
top: 2px;
|
|
592
472
|
}
|
|
593
473
|
|
|
594
|
-
.
|
|
595
|
-
|
|
596
|
-
display: -ms-flexbox;
|
|
597
|
-
display: flex;
|
|
598
|
-
-webkit-box-pack: end;
|
|
599
|
-
-ms-flex-pack: end;
|
|
600
|
-
justify-content: flex-end
|
|
474
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
|
|
475
|
+
font-size: 12px
|
|
601
476
|
}
|
|
602
477
|
|
|
603
|
-
.
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
display: flex;
|
|
607
|
-
width: 100%;
|
|
608
|
-
font-size: 12px;
|
|
609
|
-
-webkit-box-pack: center;
|
|
610
|
-
-ms-flex-pack: center;
|
|
611
|
-
justify-content: center;
|
|
612
|
-
-webkit-box-align: center;
|
|
613
|
-
-ms-flex-align: center;
|
|
614
|
-
align-items: center;
|
|
615
|
-
white-space: nowrap
|
|
478
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
|
|
479
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
480
|
+
animation: jumpheart .8s ease infinite alternate
|
|
616
481
|
}
|
|
617
482
|
|
|
618
|
-
.ele-lottie .ele-lotwrap {
|
|
619
|
-
overflow: hidden;
|
|
620
|
-
}
|
|
621
483
|
@keyframes jumpheart {
|
|
622
484
|
to {
|
|
623
485
|
-webkit-transform: scale(1.2);
|
|
624
486
|
transform: scale(1.2)
|
|
625
487
|
}
|
|
626
488
|
}
|
|
627
|
-
.ele-calendar {
|
|
628
|
-
position: relative;
|
|
629
|
-
width: 325px !important;
|
|
630
|
-
min-height: 325px !important;
|
|
631
|
-
height: auto !important;
|
|
632
|
-
}
|
|
633
489
|
|
|
634
|
-
.ele-calendar .
|
|
635
|
-
|
|
490
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
|
|
491
|
+
display: none;
|
|
492
|
+
font-size: 26px
|
|
636
493
|
}
|
|
637
494
|
|
|
638
|
-
.ele-calendar .ani-wrap {
|
|
639
|
-
position:
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
495
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
|
|
496
|
+
position: absolute;
|
|
497
|
+
left: 50%;
|
|
498
|
+
top: 50%;
|
|
499
|
+
z-index: 1;
|
|
500
|
+
color: #666;
|
|
501
|
+
font-size: 13px;
|
|
502
|
+
-webkit-transform: translate(-50%,-52%);
|
|
503
|
+
transform: translate(-50%,-52%)
|
|
644
504
|
}
|
|
645
505
|
|
|
646
|
-
.ele-calendar .
|
|
647
|
-
display:
|
|
648
|
-
justify-content: space-between;
|
|
649
|
-
align-items: flex-end;
|
|
650
|
-
line-height: 1;
|
|
651
|
-
padding: 0 47px 20px;
|
|
506
|
+
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
507
|
+
display: none!important
|
|
652
508
|
}
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
font-size: 25px;
|
|
656
|
-
padding-bottom: 4px;
|
|
509
|
+
.icon-tuoyuanxing:before {
|
|
510
|
+
content: "\E6A7";
|
|
657
511
|
}
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
font-size: 25px;
|
|
512
|
+
.icon-zan1:before {
|
|
513
|
+
content: "\E66D";
|
|
661
514
|
}
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
515
|
+
.icon-xingzhuangjiehe:before {
|
|
516
|
+
content: "\E6A6";
|
|
517
|
+
}.element-ditu .ani-wrap {
|
|
518
|
+
width: 100%;
|
|
519
|
+
height: 100%;
|
|
520
|
+
overflow: hidden
|
|
667
521
|
}
|
|
668
522
|
|
|
669
|
-
.
|
|
670
|
-
|
|
523
|
+
.element-ditu .map {
|
|
524
|
+
width: 100%;
|
|
525
|
+
height: 100%
|
|
671
526
|
}
|
|
672
527
|
|
|
673
|
-
.
|
|
528
|
+
.element-ditu .map .el-button {
|
|
529
|
+
width: 100%;
|
|
530
|
+
height: 100%;
|
|
531
|
+
display: -webkit-box;
|
|
532
|
+
display: -ms-flexbox;
|
|
674
533
|
display: flex;
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
padding: 0
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
color: #fff;
|
|
686
|
-
font-size: 12px;
|
|
534
|
+
-webkit-box-align: center;
|
|
535
|
+
-ms-flex-align: center;
|
|
536
|
+
align-items: center;
|
|
537
|
+
padding: 0;
|
|
538
|
+
-webkit-box-pack: center;
|
|
539
|
+
-ms-flex-pack: center;
|
|
540
|
+
justify-content: center;
|
|
541
|
+
background: inherit;
|
|
542
|
+
color: inherit;
|
|
543
|
+
border: none
|
|
687
544
|
}
|
|
688
545
|
|
|
689
|
-
.
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
546
|
+
.element-ditu .center-map {
|
|
547
|
+
width: 100%;
|
|
548
|
+
height: 100%;
|
|
549
|
+
background: #fff
|
|
693
550
|
}
|
|
694
551
|
|
|
695
|
-
.
|
|
696
|
-
position:
|
|
697
|
-
|
|
698
|
-
height:
|
|
699
|
-
|
|
700
|
-
margin-top: 8px;
|
|
552
|
+
.element-ditu .mask-map {
|
|
553
|
+
position: absolute;
|
|
554
|
+
width: 100%;
|
|
555
|
+
height: 100%;
|
|
556
|
+
top: 0
|
|
701
557
|
}
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
558
|
+
.map-iframe {
|
|
559
|
+
width: 100%;
|
|
560
|
+
height: 100%;
|
|
561
|
+
}.ele-shape {
|
|
562
|
+
position: absolute;
|
|
563
|
+
overflow: hidden;
|
|
705
564
|
}
|
|
706
565
|
|
|
707
|
-
.
|
|
708
|
-
|
|
566
|
+
.ani-wrap {
|
|
567
|
+
width: 100%;
|
|
568
|
+
height: 100%;
|
|
569
|
+
box-sizing: border-box;
|
|
709
570
|
}
|
|
710
571
|
|
|
711
|
-
.
|
|
712
|
-
|
|
572
|
+
.e-shape {
|
|
573
|
+
width: 100%;
|
|
574
|
+
height: 100%;
|
|
713
575
|
}
|
|
714
576
|
|
|
715
|
-
.
|
|
716
|
-
|
|
717
|
-
|
|
577
|
+
.svg-container :deep(svg) {
|
|
578
|
+
width: 100%;
|
|
579
|
+
height: 100%;
|
|
580
|
+
display: block;
|
|
718
581
|
}
|
|
719
582
|
|
|
720
|
-
.
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
z-index: 1;
|
|
725
|
-
color: #666;
|
|
726
|
-
font-size: 13px;
|
|
727
|
-
transform: translate(-50%, -52%);
|
|
583
|
+
.svg-container {
|
|
584
|
+
width: 100%;
|
|
585
|
+
height: 100%;
|
|
586
|
+
display: block;
|
|
728
587
|
}
|
|
729
588
|
|
|
730
|
-
.ele-calendar .bottom-center,
|
|
731
|
-
.ele-calendar .left-center,
|
|
732
|
-
.ele-calendar .right-center,
|
|
733
|
-
.ele-calendar .top-center {
|
|
734
|
-
display: none !important;
|
|
735
|
-
}
|
|
736
589
|
|
|
737
|
-
.
|
|
738
|
-
|
|
590
|
+
.svg-loading,
|
|
591
|
+
.svg-error {
|
|
592
|
+
display: flex;
|
|
593
|
+
align-items: center;
|
|
594
|
+
justify-content: center;
|
|
595
|
+
width: 100%;
|
|
596
|
+
height: 100%;
|
|
597
|
+
background: rgba(0,0,0,0.05);
|
|
739
598
|
}
|
|
740
599
|
|
|
741
|
-
.ele-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
600
|
+
.ele-shape .svg-container svg {
|
|
601
|
+
width: 100%;
|
|
602
|
+
height: 100%;
|
|
603
|
+
overflow: visible;
|
|
604
|
+
}.ele-img {
|
|
605
|
+
position: absolute;
|
|
606
|
+
overflow: hidden;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.ele-img .ani-wrap {
|
|
610
|
+
width: 100%;
|
|
611
|
+
height: 100%;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.ele-img .ele-image {
|
|
615
|
+
position: relative;
|
|
616
|
+
display: block;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.ele-img .rotate-wrap {
|
|
620
|
+
position: absolute;
|
|
621
|
+
left: 0;
|
|
622
|
+
right: 0;
|
|
623
|
+
top: 0;
|
|
624
|
+
bottom: 0;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.ele-img .ele-img-bg,
|
|
628
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
629
|
+
width: 100%;
|
|
630
|
+
height: 100%;
|
|
631
|
+
overflow: hidden;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.ele-img .ele-bg-wrap {
|
|
635
|
+
width: 100%;
|
|
636
|
+
height: 100%;
|
|
637
|
+
background-size: cover;
|
|
638
|
+
background-position: 50% 50%;
|
|
639
|
+
background-repeat: no-repeat;
|
|
640
|
+
background-clip: border-box;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
/* 动画关键帧 */
|
|
644
|
+
@keyframes zoomIn {
|
|
645
|
+
from {
|
|
646
|
+
opacity: 0;
|
|
647
|
+
transform: scale(0.5);
|
|
648
|
+
}
|
|
649
|
+
to {
|
|
650
|
+
opacity: 1;
|
|
651
|
+
transform: scale(1);
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
.element-video {
|
|
655
|
+
position: absolute;
|
|
656
|
+
overflow: hidden;
|
|
657
|
+
background-color: transparent;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.element-video .ani-wrap, .element-video img {
|
|
661
|
+
display: block;
|
|
662
|
+
width: 100%;
|
|
663
|
+
height: 100%;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.video-container {
|
|
667
|
+
width: 100%;
|
|
668
|
+
height: 100%;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.video-container iframe {
|
|
672
|
+
width: 100%;
|
|
673
|
+
height: 100%;
|
|
674
|
+
border: none;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.video-cover {
|
|
678
|
+
position: relative;
|
|
679
|
+
width: 100%;
|
|
680
|
+
height: 100%;
|
|
681
|
+
background-size: cover;
|
|
682
|
+
background-position: center;
|
|
683
|
+
cursor: pointer;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.video-cover .play-btn {
|
|
687
|
+
position: absolute;
|
|
688
|
+
left: 50%;
|
|
689
|
+
top: 50%;
|
|
690
|
+
transform: translate(-50%, -50%);
|
|
691
|
+
width: 50px;
|
|
692
|
+
height: 50px;
|
|
693
|
+
opacity: 0.8;
|
|
694
|
+
transition: opacity 0.2s;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.video-cover:hover .play-btn {
|
|
698
|
+
opacity: 1;
|
|
699
|
+
}.count-down .drag-point {
|
|
700
|
+
cursor: default!important
|
|
754
701
|
}
|
|
755
702
|
|
|
756
|
-
.
|
|
757
|
-
|
|
703
|
+
.count-down .ani-wrap {
|
|
704
|
+
width: 100%;
|
|
705
|
+
height: 100%;
|
|
706
|
+
overflow: visible;
|
|
758
707
|
}
|
|
759
708
|
|
|
760
|
-
.
|
|
709
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
761
710
|
display: -webkit-box;
|
|
762
711
|
display: -ms-flexbox;
|
|
763
712
|
display: flex;
|
|
764
|
-
|
|
765
|
-
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
|
|
774
|
-
width: 14.2%;
|
|
775
|
-
text-align: center;
|
|
776
|
-
color: #fff;
|
|
777
|
-
font-size: 12px;
|
|
778
|
-
font-weight: 600
|
|
779
|
-
}
|
|
780
|
-
|
|
781
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
|
|
782
|
-
position: relative
|
|
713
|
+
height: 100%;
|
|
714
|
+
-webkit-box-align: center;
|
|
715
|
+
-ms-flex-align: center;
|
|
716
|
+
align-items: center;
|
|
717
|
+
-webkit-box-pack: center;
|
|
718
|
+
-ms-flex-pack: center;
|
|
719
|
+
justify-content: center
|
|
783
720
|
}
|
|
784
721
|
|
|
785
|
-
.
|
|
786
|
-
|
|
787
|
-
white-space: nowrap;
|
|
788
|
-
left: 50%;
|
|
789
|
-
top: 15%;
|
|
790
|
-
-webkit-transform: translateX(-50%);
|
|
791
|
-
transform: translateX(-50%);
|
|
792
|
-
font-size: 76px;
|
|
793
|
-
opacity: .1;
|
|
794
|
-
font-weight: 600
|
|
722
|
+
.count-down .finish-cont {
|
|
723
|
+
width: 100%
|
|
795
724
|
}
|
|
796
725
|
|
|
797
|
-
.
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
726
|
+
.count-down .count-flip {
|
|
727
|
+
display: -webkit-box;
|
|
728
|
+
display: -ms-flexbox;
|
|
729
|
+
display: flex;
|
|
730
|
+
height: 100%;
|
|
731
|
+
-webkit-box-align: center;
|
|
732
|
+
-ms-flex-align: center;
|
|
733
|
+
align-items: center;
|
|
734
|
+
-webkit-box-pack: center;
|
|
735
|
+
-ms-flex-pack: center;
|
|
736
|
+
justify-content: center
|
|
801
737
|
}
|
|
802
738
|
|
|
803
|
-
.
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
739
|
+
.count-down .count-flip[data-direction="vertical"] {
|
|
740
|
+
-webkit-box-orient: vertical;
|
|
741
|
+
-webkit-box-direction: normal;
|
|
742
|
+
-ms-flex-direction: column;
|
|
743
|
+
flex-direction: column;
|
|
744
|
+
height: auto;
|
|
745
|
+
min-height: 100%;
|
|
810
746
|
}
|
|
811
747
|
|
|
812
|
-
.
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
left: 17%;
|
|
816
|
-
top: 0;
|
|
817
|
-
font-size: 25px
|
|
748
|
+
.count-down .count-flip[data-direction="vertical"] .c-com {
|
|
749
|
+
margin: 6px 0;
|
|
750
|
+
width: auto;
|
|
818
751
|
}
|
|
819
752
|
|
|
820
|
-
.
|
|
821
|
-
|
|
753
|
+
.count-down .count-flip .numscroll {
|
|
754
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
755
|
+
animation: numscroll .4s ease-in-out;
|
|
756
|
+
-webkit-animation-fill-mode: both;
|
|
757
|
+
animation-fill-mode: both
|
|
822
758
|
}
|
|
823
759
|
|
|
824
|
-
.
|
|
825
|
-
-webkit-
|
|
826
|
-
|
|
760
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
761
|
+
-webkit-transition: all .3s ease-in-out;
|
|
762
|
+
transition: all .3s ease-in-out;
|
|
763
|
+
opacity: .6;
|
|
764
|
+
-webkit-transform: scale(.5)!important;
|
|
765
|
+
transform: scale(.5)!important
|
|
827
766
|
}
|
|
828
767
|
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
768
|
+
@-webkit-keyframes numscroll {
|
|
769
|
+
0% {
|
|
770
|
+
-webkit-transform: translateZ(0);
|
|
771
|
+
transform: translateZ(0)
|
|
772
|
+
}
|
|
833
773
|
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
z-index: 1;
|
|
839
|
-
color: #666;
|
|
840
|
-
font-size: 13px;
|
|
841
|
-
-webkit-transform: translate(-50%,-52%);
|
|
842
|
-
transform: translate(-50%,-52%)
|
|
774
|
+
to {
|
|
775
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
776
|
+
transform: translate3d(0,100%,0)
|
|
777
|
+
}
|
|
843
778
|
}
|
|
844
779
|
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
-ms-flex-pack: justify;
|
|
851
|
-
justify-content: space-between;
|
|
852
|
-
-webkit-box-align: end;
|
|
853
|
-
-ms-flex-align: end;
|
|
854
|
-
align-items: flex-end;
|
|
855
|
-
line-height: 1;
|
|
856
|
-
padding: 18px 33px 10px;
|
|
857
|
-
font-size: 36px;
|
|
858
|
-
}
|
|
780
|
+
@keyframes numscroll {
|
|
781
|
+
0% {
|
|
782
|
+
-webkit-transform: translateZ(0);
|
|
783
|
+
transform: translateZ(0)
|
|
784
|
+
}
|
|
859
785
|
|
|
860
|
-
|
|
861
|
-
|
|
786
|
+
to {
|
|
787
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
788
|
+
transform: translate3d(0,100%,0)
|
|
789
|
+
}
|
|
862
790
|
}
|
|
863
791
|
|
|
864
|
-
.
|
|
865
|
-
|
|
792
|
+
.count-down .count-flip .c-com {
|
|
793
|
+
min-width: 50px;
|
|
794
|
+
height: auto;
|
|
795
|
+
margin: 6px;
|
|
796
|
+
padding: 5px 0 6px;
|
|
797
|
+
background-color: #111
|
|
866
798
|
}
|
|
867
799
|
|
|
868
|
-
.
|
|
800
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
869
801
|
display: -webkit-box;
|
|
870
802
|
display: -ms-flexbox;
|
|
871
803
|
display: flex;
|
|
872
|
-
-webkit-box-pack: start;
|
|
873
|
-
-ms-flex-pack: start;
|
|
874
|
-
justify-content: flex-start;
|
|
875
|
-
height: 40px;
|
|
876
|
-
line-height: 40px;
|
|
877
|
-
padding: 0 34px;
|
|
878
|
-
border-bottom: 1px solid
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
|
|
882
|
-
width: 14.2%;
|
|
883
|
-
text-align: center;
|
|
884
|
-
color: #fff;
|
|
885
|
-
font-size: 12px;
|
|
886
|
-
font-weight: 600
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
890
|
-
position: relative
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
|
|
894
|
-
font-size: 0;
|
|
895
|
-
padding: 5px 33px 0;
|
|
896
|
-
text-align: left
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
|
|
900
804
|
position: relative;
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
805
|
+
width: 100%;
|
|
806
|
+
height: 100%;
|
|
807
|
+
-webkit-box-align: center;
|
|
808
|
+
-ms-flex-align: center;
|
|
809
|
+
align-items: center
|
|
906
810
|
}
|
|
907
811
|
|
|
908
|
-
.
|
|
909
|
-
|
|
812
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
813
|
+
line-height: 27px
|
|
910
814
|
}
|
|
911
815
|
|
|
912
|
-
.
|
|
913
|
-
display: block;
|
|
816
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
914
817
|
position: absolute;
|
|
915
|
-
|
|
916
|
-
top: 2px;
|
|
818
|
+
top: -100%
|
|
917
819
|
}
|
|
918
820
|
|
|
919
|
-
.
|
|
920
|
-
|
|
821
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
822
|
+
-webkit-transform: scale(1);
|
|
823
|
+
transform: scale(1)
|
|
921
824
|
}
|
|
922
825
|
|
|
923
|
-
.
|
|
924
|
-
|
|
925
|
-
animation: jumpheart .8s ease infinite alternate
|
|
826
|
+
.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 {
|
|
827
|
+
display: none!important
|
|
926
828
|
}
|
|
927
829
|
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
830
|
+
.c-wrap {
|
|
831
|
+
width: 100%;
|
|
832
|
+
height: 100%;
|
|
833
|
+
overflow: hidden;
|
|
834
|
+
font-size: 0
|
|
933
835
|
}
|
|
934
836
|
|
|
935
|
-
.
|
|
936
|
-
|
|
937
|
-
font-size: 26px
|
|
837
|
+
.c-wrap.c-day-wrap {
|
|
838
|
+
text-align: center
|
|
938
839
|
}
|
|
939
840
|
|
|
940
|
-
.
|
|
941
|
-
|
|
942
|
-
left: 50%;
|
|
943
|
-
top: 50%;
|
|
944
|
-
z-index: 1;
|
|
945
|
-
color: #666;
|
|
946
|
-
font-size: 13px;
|
|
947
|
-
-webkit-transform: translate(-50%,-52%);
|
|
948
|
-
transform: translate(-50%,-52%)
|
|
841
|
+
.c-wrap.c-day-wrap .c-num {
|
|
842
|
+
width: auto
|
|
949
843
|
}
|
|
950
844
|
|
|
951
|
-
.
|
|
952
|
-
display:
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
.icon-zan1:before {
|
|
958
|
-
content: "\E66D";
|
|
845
|
+
.c-wrap .c-num {
|
|
846
|
+
display: inline-block;
|
|
847
|
+
width: 50%;
|
|
848
|
+
overflow: hidden;
|
|
849
|
+
font-size: 20px;
|
|
850
|
+
color: #999
|
|
959
851
|
}
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
852
|
+
|
|
853
|
+
.c-wrap .c-left .flex-wrap {
|
|
854
|
+
display: -webkit-box;
|
|
855
|
+
display: -ms-flexbox;
|
|
856
|
+
display: flex;
|
|
857
|
+
-webkit-box-pack: end;
|
|
858
|
+
-ms-flex-pack: end;
|
|
859
|
+
justify-content: flex-end
|
|
966
860
|
}
|
|
967
861
|
|
|
968
|
-
.
|
|
862
|
+
.c-wrap .c-text {
|
|
863
|
+
display: -webkit-box;
|
|
864
|
+
display: -ms-flexbox;
|
|
969
865
|
display: flex;
|
|
866
|
+
width: 100%;
|
|
867
|
+
font-size: 12px;
|
|
868
|
+
-webkit-box-pack: center;
|
|
869
|
+
-ms-flex-pack: center;
|
|
970
870
|
justify-content: center;
|
|
871
|
+
-webkit-box-align: center;
|
|
872
|
+
-ms-flex-align: center;
|
|
971
873
|
align-items: center;
|
|
874
|
+
white-space: nowrap
|
|
875
|
+
}
|
|
876
|
+
.ele-effect {
|
|
877
|
+
will-change: transform;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.ele-effect .effect-wrap {
|
|
881
|
+
position: relative;
|
|
972
882
|
width: 100%;
|
|
973
883
|
height: 100%;
|
|
974
|
-
overflow: hidden;
|
|
975
|
-
transition: opacity 0.2s;
|
|
976
884
|
}
|
|
977
885
|
|
|
978
|
-
.
|
|
979
|
-
|
|
886
|
+
.particle {
|
|
887
|
+
position: absolute;
|
|
888
|
+
background-repeat: no-repeat;
|
|
889
|
+
background-size: contain;
|
|
890
|
+
animation-name: falling;
|
|
891
|
+
animation-timing-function: linear;
|
|
892
|
+
animation-iteration-count: infinite;
|
|
893
|
+
will-change: transform;
|
|
980
894
|
}
|
|
981
895
|
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
896
|
+
@keyframes falling {
|
|
897
|
+
0% {
|
|
898
|
+
transform: translateY(0) rotate(0deg);
|
|
899
|
+
opacity: 1;
|
|
900
|
+
}
|
|
901
|
+
80% {
|
|
902
|
+
opacity: 0.8;
|
|
903
|
+
}
|
|
904
|
+
100% {
|
|
905
|
+
transform: translateY(100vh) rotate(360deg);
|
|
906
|
+
opacity: 0;
|
|
907
|
+
}
|
|
986
908
|
}
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
margin-left: 10px;
|
|
909
|
+
.ele-lottie .ele-lotwrap {
|
|
910
|
+
overflow: hidden
|
|
990
911
|
}
|
|
991
912
|
|
|
913
|
+
.ele-effect .effect-wrap {
|
|
914
|
+
position: relative;
|
|
915
|
+
overflow: hidden;
|
|
916
|
+
width: 100%;
|
|
917
|
+
height: 100%
|
|
918
|
+
}
|
|
992
919
|
|
|
993
|
-
.
|
|
994
|
-
|
|
920
|
+
.ele-effect .e-small {
|
|
921
|
+
position: absolute;
|
|
922
|
+
width: 24px;
|
|
923
|
+
height: 24px;
|
|
924
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
925
|
+
background-size: cover;
|
|
926
|
+
background-repeat: no-repeat;
|
|
927
|
+
-webkit-transform-origin: center;
|
|
928
|
+
transform-origin: center;
|
|
929
|
+
-webkit-animation: snow 5s linear infinite;
|
|
930
|
+
animation: snow 5s linear infinite
|
|
995
931
|
}/* Iconfont definition */
|
|
996
932
|
.icon-danmuliebiao1:before {
|
|
997
933
|
content: "\E68A";
|
|
@@ -3498,52 +3434,67 @@ to {
|
|
|
3498
3434
|
}
|
|
3499
3435
|
}
|
|
3500
3436
|
|
|
3501
|
-
.
|
|
3437
|
+
.call {
|
|
3438
|
+
position: absolute;
|
|
3502
3439
|
cursor: pointer;
|
|
3503
|
-
|
|
3504
|
-
outline: none;
|
|
3505
|
-
border: none;
|
|
3440
|
+
user-select: none;
|
|
3506
3441
|
}
|
|
3507
3442
|
|
|
3508
|
-
.
|
|
3509
|
-
|
|
3510
|
-
|
|
3443
|
+
.call .ani-wrap {
|
|
3444
|
+
display: flex;
|
|
3445
|
+
justify-content: center;
|
|
3446
|
+
align-items: center;
|
|
3447
|
+
width: 100%;
|
|
3448
|
+
height: 100%;
|
|
3449
|
+
overflow: hidden;
|
|
3450
|
+
transition: opacity 0.2s;
|
|
3511
3451
|
}
|
|
3512
3452
|
|
|
3513
|
-
.
|
|
3514
|
-
opacity: 0.
|
|
3515
|
-
transform: translateY(0);
|
|
3453
|
+
.call .ani-wrap:hover {
|
|
3454
|
+
opacity: 0.9;
|
|
3516
3455
|
}
|
|
3517
3456
|
|
|
3518
|
-
.
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3457
|
+
.call-content {
|
|
3458
|
+
display: flex;
|
|
3459
|
+
align-items: center;
|
|
3460
|
+
justify-content: center;
|
|
3522
3461
|
}
|
|
3523
3462
|
|
|
3524
|
-
.
|
|
3525
|
-
|
|
3526
|
-
display: block
|
|
3463
|
+
.btn-text {
|
|
3464
|
+
margin-left: 10px;
|
|
3527
3465
|
}
|
|
3528
3466
|
|
|
3529
|
-
|
|
3467
|
+
|
|
3468
|
+
.hb-tel:before {
|
|
3469
|
+
content: "\E642";
|
|
3470
|
+
}.button {
|
|
3471
|
+
position: absolute;
|
|
3472
|
+
cursor: pointer;
|
|
3473
|
+
user-select: none;
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
.button .ani-wrap {
|
|
3477
|
+
display: flex;
|
|
3478
|
+
justify-content: center;
|
|
3479
|
+
align-items: center;
|
|
3530
3480
|
width: 100%;
|
|
3531
3481
|
height: 100%;
|
|
3532
|
-
padding: 10px;
|
|
3533
3482
|
overflow: hidden;
|
|
3534
|
-
|
|
3483
|
+
transition: opacity 0.2s;
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
.button .ani-wrap:hover {
|
|
3487
|
+
opacity: 0.9;
|
|
3535
3488
|
}
|
|
3536
3489
|
|
|
3537
|
-
.
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
transform: translate(-50%,-50%)
|
|
3490
|
+
.button-content {
|
|
3491
|
+
display: flex;
|
|
3492
|
+
align-items: center;
|
|
3493
|
+
justify-content: center;
|
|
3542
3494
|
}
|
|
3543
3495
|
|
|
3544
|
-
.
|
|
3545
|
-
|
|
3546
|
-
cursor: not-allowed;
|
|
3496
|
+
.btn-text {
|
|
3497
|
+
margin-left: 10px;
|
|
3547
3498
|
}@charset"UTF-8";.animated {
|
|
3548
3499
|
animation-duration: 1s;
|
|
3549
3500
|
animation-fill-mode: both
|
|
@@ -8430,7 +8381,144 @@ cursor: not-allowed;
|
|
|
8430
8381
|
transform: translateX(0)
|
|
8431
8382
|
}
|
|
8432
8383
|
}
|
|
8433
|
-
|
|
8384
|
+
.form-input.form-input--editing,
|
|
8385
|
+
.form-input.form-input--editing input {
|
|
8386
|
+
pointer-events: none;
|
|
8387
|
+
user-select: none;
|
|
8388
|
+
-webkit-user-select: none;
|
|
8389
|
+
}
|
|
8390
|
+
|
|
8391
|
+
.form-input {
|
|
8392
|
+
position: absolute;
|
|
8393
|
+
}
|
|
8394
|
+
|
|
8395
|
+
.input-wrapper {
|
|
8396
|
+
display: flex;
|
|
8397
|
+
align-items: center;
|
|
8398
|
+
width: 100%;
|
|
8399
|
+
height: 100%;
|
|
8400
|
+
padding: 0 10px;
|
|
8401
|
+
box-sizing: border-box;
|
|
8402
|
+
position: relative;
|
|
8403
|
+
transition: border-color 0.3s;
|
|
8404
|
+
}
|
|
8405
|
+
|
|
8406
|
+
.required-marker {
|
|
8407
|
+
font-size: 12px;
|
|
8408
|
+
padding: 0 5px 0 0;
|
|
8409
|
+
color: red;
|
|
8410
|
+
vertical-align: middle;
|
|
8411
|
+
}
|
|
8412
|
+
|
|
8413
|
+
input {
|
|
8414
|
+
flex: 1;
|
|
8415
|
+
border: none;
|
|
8416
|
+
outline: none;
|
|
8417
|
+
background: transparent;
|
|
8418
|
+
height: 100%;
|
|
8419
|
+
padding: 0;
|
|
8420
|
+
margin: 0;
|
|
8421
|
+
}
|
|
8422
|
+
/*
|
|
8423
|
+
input::placeholder {
|
|
8424
|
+
color: #ccc;
|
|
8425
|
+
opacity: 1;
|
|
8426
|
+
} */
|
|
8427
|
+
|
|
8428
|
+
.dynamic-placeholder-input::placeholder {
|
|
8429
|
+
color: var(--placeholder-color, #999);
|
|
8430
|
+
opacity: 1;
|
|
8431
|
+
}
|
|
8432
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
8433
|
+
color: var(--placeholder-color, #999);
|
|
8434
|
+
}
|
|
8435
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
8436
|
+
color: var(--placeholder-color, #999);
|
|
8437
|
+
opacity: 1;
|
|
8438
|
+
}
|
|
8439
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
8440
|
+
color: var(--placeholder-color, #999);
|
|
8441
|
+
}#page-list .tip-cover {
|
|
8442
|
+
position: fixed;
|
|
8443
|
+
left: 0;
|
|
8444
|
+
top: 0;
|
|
8445
|
+
width: 100%;
|
|
8446
|
+
height: 100%;
|
|
8447
|
+
display: -ms-flexbox;
|
|
8448
|
+
display: flex;
|
|
8449
|
+
-ms-flex-align: center;
|
|
8450
|
+
align-items: center;
|
|
8451
|
+
-ms-flex-pack: center;
|
|
8452
|
+
justify-content: center;
|
|
8453
|
+
z-index: 999;
|
|
8454
|
+
background-color: rgba(0,0,0,.7)
|
|
8455
|
+
}
|
|
8456
|
+
|
|
8457
|
+
#page-list .tip-cover .tip {
|
|
8458
|
+
width: 80%;
|
|
8459
|
+
max-width: 250px;
|
|
8460
|
+
padding: 10px;
|
|
8461
|
+
border-radius: 5px;
|
|
8462
|
+
background-color: #fff
|
|
8463
|
+
}
|
|
8464
|
+
|
|
8465
|
+
#page-list .tip-cover .tip-btn {
|
|
8466
|
+
display: block;
|
|
8467
|
+
margin: 25px auto;
|
|
8468
|
+
width: 120px;
|
|
8469
|
+
height: 30px;
|
|
8470
|
+
color: #fff;
|
|
8471
|
+
border-radius: 4px;
|
|
8472
|
+
text-align: center;
|
|
8473
|
+
font-size: 14px;
|
|
8474
|
+
line-height: 30px;
|
|
8475
|
+
background: #ed5566
|
|
8476
|
+
}
|
|
8477
|
+
|
|
8478
|
+
#page-list .tip-cover .tip-content {
|
|
8479
|
+
font-size: 14px;
|
|
8480
|
+
padding-top: 30px;
|
|
8481
|
+
}
|
|
8482
|
+
|
|
8483
|
+
.tip-cover {
|
|
8484
|
+
position: fixed;
|
|
8485
|
+
left: 0;
|
|
8486
|
+
top: 0;
|
|
8487
|
+
width: 100%;
|
|
8488
|
+
height: 100%;
|
|
8489
|
+
display: -ms-flexbox;
|
|
8490
|
+
display: flex;
|
|
8491
|
+
-ms-flex-align: center;
|
|
8492
|
+
align-items: center;
|
|
8493
|
+
-ms-flex-pack: center;
|
|
8494
|
+
justify-content: center;
|
|
8495
|
+
z-index: 999;
|
|
8496
|
+
background-color: rgba(0,0,0,.7)
|
|
8497
|
+
}
|
|
8498
|
+
|
|
8499
|
+
.tip-cover .tip {
|
|
8500
|
+
width: 80%;
|
|
8501
|
+
max-width: 250px;
|
|
8502
|
+
padding: 5px;
|
|
8503
|
+
border-radius: 3px;
|
|
8504
|
+
background-color: #fff
|
|
8505
|
+
}
|
|
8506
|
+
|
|
8507
|
+
.tip-cover .tip-btn {
|
|
8508
|
+
display: block;
|
|
8509
|
+
margin: 13px auto;
|
|
8510
|
+
width: 64px;
|
|
8511
|
+
height: 20px;
|
|
8512
|
+
color: #fff;
|
|
8513
|
+
border-radius: 4px;
|
|
8514
|
+
text-align: center;
|
|
8515
|
+
font-size: 14px;
|
|
8516
|
+
line-height: 20px;
|
|
8517
|
+
background: #ed5566;
|
|
8518
|
+
}
|
|
8519
|
+
.ele-lottie .ele-lotwrap {
|
|
8520
|
+
overflow: hidden;
|
|
8521
|
+
}/* .ele-form {
|
|
8434
8522
|
position: absolute;
|
|
8435
8523
|
user-select: none;
|
|
8436
8524
|
} */
|
|
@@ -8528,7 +8616,53 @@ cursor: not-allowed;
|
|
|
8528
8616
|
width: 100%;
|
|
8529
8617
|
height: 100%;
|
|
8530
8618
|
z-index: 1000;
|
|
8531
|
-
}
|
|
8619
|
+
}.form-submit {
|
|
8620
|
+
cursor: pointer;
|
|
8621
|
+
transition: all 0.2s;
|
|
8622
|
+
outline: none;
|
|
8623
|
+
border: none;
|
|
8624
|
+
}
|
|
8625
|
+
|
|
8626
|
+
.form-submit:hover {
|
|
8627
|
+
opacity: 0.9;
|
|
8628
|
+
transform: translateY(-1px);
|
|
8629
|
+
}
|
|
8630
|
+
|
|
8631
|
+
.form-submit:active {
|
|
8632
|
+
opacity: 0.8;
|
|
8633
|
+
transform: translateY(0);
|
|
8634
|
+
}
|
|
8635
|
+
|
|
8636
|
+
.form-submit:disabled {
|
|
8637
|
+
opacity: 0.6;
|
|
8638
|
+
cursor: not-allowed;
|
|
8639
|
+
transform: none !important;
|
|
8640
|
+
}
|
|
8641
|
+
|
|
8642
|
+
.f-submit {
|
|
8643
|
+
position: relative;
|
|
8644
|
+
display: block
|
|
8645
|
+
}
|
|
8646
|
+
|
|
8647
|
+
.f-submit .ani-wrap {
|
|
8648
|
+
width: 100%;
|
|
8649
|
+
height: 100%;
|
|
8650
|
+
padding: 10px;
|
|
8651
|
+
overflow: hidden;
|
|
8652
|
+
position: relative
|
|
8653
|
+
}
|
|
8654
|
+
|
|
8655
|
+
.f-submit .f-ovh {
|
|
8656
|
+
position: absolute;
|
|
8657
|
+
left: 50%;
|
|
8658
|
+
top: 50%;
|
|
8659
|
+
transform: translate(-50%,-50%)
|
|
8660
|
+
}
|
|
8661
|
+
|
|
8662
|
+
.form-submit:disabled {
|
|
8663
|
+
opacity: 0.7;
|
|
8664
|
+
cursor: not-allowed;
|
|
8665
|
+
}/* .ele-form {
|
|
8532
8666
|
position: absolute;
|
|
8533
8667
|
user-select: none;
|
|
8534
8668
|
} */
|
|
@@ -8613,64 +8747,19 @@ cursor: not-allowed;
|
|
|
8613
8747
|
|
|
8614
8748
|
.has-error .fs-tit {
|
|
8615
8749
|
border-bottom-color: #ff4d4f;
|
|
8616
|
-
}.form-input.form-input--editing,
|
|
8617
|
-
.form-input.form-input--editing input {
|
|
8618
|
-
pointer-events: none;
|
|
8619
|
-
user-select: none;
|
|
8620
|
-
-webkit-user-select: none;
|
|
8621
8750
|
}
|
|
8622
|
-
|
|
8623
|
-
|
|
8624
|
-
|
|
8625
|
-
|
|
8626
|
-
|
|
8627
|
-
|
|
8628
|
-
|
|
8629
|
-
|
|
8630
|
-
|
|
8631
|
-
|
|
8632
|
-
|
|
8633
|
-
|
|
8634
|
-
position: relative;
|
|
8635
|
-
transition: border-color 0.3s;
|
|
8636
|
-
}
|
|
8637
|
-
|
|
8638
|
-
.required-marker {
|
|
8639
|
-
font-size: 12px;
|
|
8640
|
-
padding: 0 5px 0 0;
|
|
8641
|
-
color: red;
|
|
8642
|
-
vertical-align: middle;
|
|
8643
|
-
}
|
|
8644
|
-
|
|
8645
|
-
input {
|
|
8646
|
-
flex: 1;
|
|
8647
|
-
border: none;
|
|
8648
|
-
outline: none;
|
|
8649
|
-
background: transparent;
|
|
8650
|
-
height: 100%;
|
|
8651
|
-
padding: 0;
|
|
8652
|
-
margin: 0;
|
|
8653
|
-
}
|
|
8654
|
-
/*
|
|
8655
|
-
input::placeholder {
|
|
8656
|
-
color: #ccc;
|
|
8657
|
-
opacity: 1;
|
|
8658
|
-
} */
|
|
8659
|
-
|
|
8660
|
-
.dynamic-placeholder-input::placeholder {
|
|
8661
|
-
color: var(--placeholder-color, #999);
|
|
8662
|
-
opacity: 1;
|
|
8663
|
-
}
|
|
8664
|
-
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
8665
|
-
color: var(--placeholder-color, #999);
|
|
8666
|
-
}
|
|
8667
|
-
.dynamic-placeholder-input::-moz-placeholder {
|
|
8668
|
-
color: var(--placeholder-color, #999);
|
|
8669
|
-
opacity: 1;
|
|
8670
|
-
}
|
|
8671
|
-
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
8672
|
-
color: var(--placeholder-color, #999);
|
|
8673
|
-
}/* .ele-form {
|
|
8751
|
+
.global.receipt {
|
|
8752
|
+
width: 35px;
|
|
8753
|
+
height: 55px;
|
|
8754
|
+
border-radius: 50%;
|
|
8755
|
+
text-align: center;
|
|
8756
|
+
margin-bottom: 5px;
|
|
8757
|
+
border: 2px solid #fff;
|
|
8758
|
+
cursor: pointer;
|
|
8759
|
+
}
|
|
8760
|
+
.icon-liuyan:before { content: "\E636"; }
|
|
8761
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
8762
|
+
.global.receipt > span { font-size: 10px; line-height: 20px; display: block; }/* .ele-form {
|
|
8674
8763
|
position: absolute;
|
|
8675
8764
|
user-select: none;
|
|
8676
8765
|
}
|
|
@@ -8765,18 +8854,6 @@ cursor: not-allowed;
|
|
|
8765
8854
|
height: 100%;
|
|
8766
8855
|
z-index: 1000;
|
|
8767
8856
|
}
|
|
8768
|
-
.global.receipt {
|
|
8769
|
-
width: 35px;
|
|
8770
|
-
height: 55px;
|
|
8771
|
-
border-radius: 50%;
|
|
8772
|
-
text-align: center;
|
|
8773
|
-
margin-bottom: 5px;
|
|
8774
|
-
border: 2px solid #fff;
|
|
8775
|
-
cursor: pointer;
|
|
8776
|
-
}
|
|
8777
|
-
.icon-liuyan:before { content: "\E636"; }
|
|
8778
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
8779
|
-
.global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
|
|
8780
8857
|
.icon-guanbi:before {
|
|
8781
8858
|
content: "\E676";
|
|
8782
8859
|
}
|
|
@@ -9170,85 +9247,8 @@ cursor: not-allowed;
|
|
|
9170
9247
|
content: "\E65E";
|
|
9171
9248
|
color: #F44336; /* 失败的红色 */
|
|
9172
9249
|
}
|
|
9173
|
-
#page-list .tip-cover {
|
|
9174
|
-
position: fixed;
|
|
9175
|
-
left: 0;
|
|
9176
|
-
top: 0;
|
|
9177
|
-
width: 100%;
|
|
9178
|
-
height: 100%;
|
|
9179
|
-
display: -ms-flexbox;
|
|
9180
|
-
display: flex;
|
|
9181
|
-
-ms-flex-align: center;
|
|
9182
|
-
align-items: center;
|
|
9183
|
-
-ms-flex-pack: center;
|
|
9184
|
-
justify-content: center;
|
|
9185
|
-
z-index: 999;
|
|
9186
|
-
background-color: rgba(0,0,0,.7)
|
|
9187
|
-
}
|
|
9188
|
-
|
|
9189
|
-
#page-list .tip-cover .tip {
|
|
9190
|
-
width: 80%;
|
|
9191
|
-
max-width: 250px;
|
|
9192
|
-
padding: 10px;
|
|
9193
|
-
border-radius: 5px;
|
|
9194
|
-
background-color: #fff
|
|
9195
|
-
}
|
|
9196
|
-
|
|
9197
|
-
#page-list .tip-cover .tip-btn {
|
|
9198
|
-
display: block;
|
|
9199
|
-
margin: 25px auto;
|
|
9200
|
-
width: 120px;
|
|
9201
|
-
height: 30px;
|
|
9202
|
-
color: #fff;
|
|
9203
|
-
border-radius: 4px;
|
|
9204
|
-
text-align: center;
|
|
9205
|
-
font-size: 14px;
|
|
9206
|
-
line-height: 30px;
|
|
9207
|
-
background: #ed5566
|
|
9208
|
-
}
|
|
9209
|
-
|
|
9210
|
-
#page-list .tip-cover .tip-content {
|
|
9211
|
-
font-size: 14px;
|
|
9212
|
-
padding-top: 30px;
|
|
9213
|
-
}
|
|
9214
|
-
|
|
9215
|
-
.tip-cover {
|
|
9216
|
-
position: fixed;
|
|
9217
|
-
left: 0;
|
|
9218
|
-
top: 0;
|
|
9219
|
-
width: 100%;
|
|
9220
|
-
height: 100%;
|
|
9221
|
-
display: -ms-flexbox;
|
|
9222
|
-
display: flex;
|
|
9223
|
-
-ms-flex-align: center;
|
|
9224
|
-
align-items: center;
|
|
9225
|
-
-ms-flex-pack: center;
|
|
9226
|
-
justify-content: center;
|
|
9227
|
-
z-index: 999;
|
|
9228
|
-
background-color: rgba(0,0,0,.7)
|
|
9229
|
-
}
|
|
9230
|
-
|
|
9231
|
-
.tip-cover .tip {
|
|
9232
|
-
width: 80%;
|
|
9233
|
-
max-width: 250px;
|
|
9234
|
-
padding: 5px;
|
|
9235
|
-
border-radius: 3px;
|
|
9236
|
-
background-color: #fff
|
|
9237
|
-
}
|
|
9238
9250
|
|
|
9239
|
-
.
|
|
9240
|
-
display: block;
|
|
9241
|
-
margin: 13px auto;
|
|
9242
|
-
width: 64px;
|
|
9243
|
-
height: 20px;
|
|
9244
|
-
color: #fff;
|
|
9245
|
-
border-radius: 4px;
|
|
9246
|
-
text-align: center;
|
|
9247
|
-
font-size: 14px;
|
|
9248
|
-
line-height: 20px;
|
|
9249
|
-
background: #ed5566;
|
|
9250
|
-
}
|
|
9251
|
-
.global.map {
|
|
9251
|
+
.global.video {
|
|
9252
9252
|
width: 35px;
|
|
9253
9253
|
height: 55px;
|
|
9254
9254
|
border-radius: 50%;
|
|
@@ -9257,9 +9257,11 @@ cursor: not-allowed;
|
|
|
9257
9257
|
border: 2px solid #fff;
|
|
9258
9258
|
cursor: pointer;
|
|
9259
9259
|
}
|
|
9260
|
-
.icon-
|
|
9260
|
+
.icon-shipin2:before { content: "\E611"; }
|
|
9261
9261
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9262
|
-
.global.
|
|
9262
|
+
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
9263
|
+
}
|
|
9264
|
+
|
|
9263
9265
|
.global.tel {
|
|
9264
9266
|
width: 35px;
|
|
9265
9267
|
height: 55px;
|
|
@@ -9271,21 +9273,7 @@ cursor: not-allowed;
|
|
|
9271
9273
|
}
|
|
9272
9274
|
.icon-dianhua:before { content: "\E60E"; }
|
|
9273
9275
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9274
|
-
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
9275
|
-
.global.video {
|
|
9276
|
-
width: 35px;
|
|
9277
|
-
height: 55px;
|
|
9278
|
-
border-radius: 50%;
|
|
9279
|
-
text-align: center;
|
|
9280
|
-
margin-bottom: 5px;
|
|
9281
|
-
border: 2px solid #fff;
|
|
9282
|
-
cursor: pointer;
|
|
9283
|
-
}
|
|
9284
|
-
.icon-shipin2:before { content: "\E611"; }
|
|
9285
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9286
|
-
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
9287
|
-
}
|
|
9288
|
-
/* ===== 送呈(启呈)运行时样式 ===== */
|
|
9276
|
+
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}/* ===== 送呈(启呈)运行时样式 ===== */
|
|
9289
9277
|
#invite {
|
|
9290
9278
|
position: absolute;
|
|
9291
9279
|
left: 0;
|
|
@@ -9997,3 +9985,16 @@ cursor: not-allowed;
|
|
|
9997
9985
|
animation-timing-function: ease-out;
|
|
9998
9986
|
}
|
|
9999
9987
|
}
|
|
9988
|
+
|
|
9989
|
+
.global.map {
|
|
9990
|
+
width: 35px;
|
|
9991
|
+
height: 55px;
|
|
9992
|
+
border-radius: 50%;
|
|
9993
|
+
text-align: center;
|
|
9994
|
+
margin-bottom: 5px;
|
|
9995
|
+
border: 2px solid #fff;
|
|
9996
|
+
cursor: pointer;
|
|
9997
|
+
}
|
|
9998
|
+
.icon-daohang1:before { content: "\E612"; }
|
|
9999
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
10000
|
+
.global.map > span { font-size: 10px; line-height: 20px; display: block;}
|