unika-components 1.1.97 → 1.1.98
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 +1107 -1107
- package/dist/unika-components.esm.js +1 -0
- package/dist/unika-components.umd.js +1 -0
- package/package.json +1 -1
|
@@ -8,7 +8,215 @@
|
|
|
8
8
|
max-height: 100%;
|
|
9
9
|
width: 100%;
|
|
10
10
|
}
|
|
11
|
-
.
|
|
11
|
+
.count-down .drag-point {
|
|
12
|
+
cursor: default!important
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.count-down .ani-wrap {
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
21
|
+
display: -webkit-box;
|
|
22
|
+
display: -ms-flexbox;
|
|
23
|
+
display: flex;
|
|
24
|
+
height: 100%;
|
|
25
|
+
-webkit-box-align: center;
|
|
26
|
+
-ms-flex-align: center;
|
|
27
|
+
align-items: center;
|
|
28
|
+
-webkit-box-pack: center;
|
|
29
|
+
-ms-flex-pack: center;
|
|
30
|
+
justify-content: center
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.count-down .finish-cont {
|
|
34
|
+
width: 100%
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.count-down .count-flip {
|
|
38
|
+
display: -webkit-box;
|
|
39
|
+
display: -ms-flexbox;
|
|
40
|
+
display: flex;
|
|
41
|
+
height: 100%;
|
|
42
|
+
-webkit-box-align: center;
|
|
43
|
+
-ms-flex-align: center;
|
|
44
|
+
align-items: center;
|
|
45
|
+
-webkit-box-pack: center;
|
|
46
|
+
-ms-flex-pack: center;
|
|
47
|
+
justify-content: center
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.count-down .count-flip .numscroll {
|
|
51
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
52
|
+
animation: numscroll .4s ease-in-out;
|
|
53
|
+
-webkit-animation-fill-mode: both;
|
|
54
|
+
animation-fill-mode: both
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
58
|
+
-webkit-transition: all .3s ease-in-out;
|
|
59
|
+
transition: all .3s ease-in-out;
|
|
60
|
+
opacity: .6;
|
|
61
|
+
-webkit-transform: scale(.5)!important;
|
|
62
|
+
transform: scale(.5)!important
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@-webkit-keyframes numscroll {
|
|
66
|
+
0% {
|
|
67
|
+
-webkit-transform: translateZ(0);
|
|
68
|
+
transform: translateZ(0)
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
to {
|
|
72
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
73
|
+
transform: translate3d(0,100%,0)
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
@keyframes numscroll {
|
|
78
|
+
0% {
|
|
79
|
+
-webkit-transform: translateZ(0);
|
|
80
|
+
transform: translateZ(0)
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
to {
|
|
84
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
85
|
+
transform: translate3d(0,100%,0)
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.count-down .count-flip .c-com {
|
|
90
|
+
min-width: 50px;
|
|
91
|
+
height: auto;
|
|
92
|
+
margin: 6px;
|
|
93
|
+
padding: 5px 0 6px;
|
|
94
|
+
background-color: #111
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
98
|
+
display: -webkit-box;
|
|
99
|
+
display: -ms-flexbox;
|
|
100
|
+
display: flex;
|
|
101
|
+
position: relative;
|
|
102
|
+
width: 100%;
|
|
103
|
+
height: 100%;
|
|
104
|
+
-webkit-box-align: center;
|
|
105
|
+
-ms-flex-align: center;
|
|
106
|
+
align-items: center
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
110
|
+
line-height: 27px
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
114
|
+
position: absolute;
|
|
115
|
+
top: -100%
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
119
|
+
-webkit-transform: scale(1);
|
|
120
|
+
transform: scale(1)
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.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 {
|
|
124
|
+
display: none!important
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.c-wrap {
|
|
128
|
+
width: 100%;
|
|
129
|
+
height: 100%;
|
|
130
|
+
overflow: hidden;
|
|
131
|
+
font-size: 0
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.c-wrap.c-day-wrap {
|
|
135
|
+
text-align: center
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.c-wrap.c-day-wrap .c-num {
|
|
139
|
+
width: auto
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.c-wrap .c-num {
|
|
143
|
+
display: inline-block;
|
|
144
|
+
width: 50%;
|
|
145
|
+
overflow: hidden;
|
|
146
|
+
font-size: 20px;
|
|
147
|
+
color: #999
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.c-wrap .c-left .flex-wrap {
|
|
151
|
+
display: -webkit-box;
|
|
152
|
+
display: -ms-flexbox;
|
|
153
|
+
display: flex;
|
|
154
|
+
-webkit-box-pack: end;
|
|
155
|
+
-ms-flex-pack: end;
|
|
156
|
+
justify-content: flex-end
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.c-wrap .c-text {
|
|
160
|
+
display: -webkit-box;
|
|
161
|
+
display: -ms-flexbox;
|
|
162
|
+
display: flex;
|
|
163
|
+
width: 100%;
|
|
164
|
+
font-size: 12px;
|
|
165
|
+
-webkit-box-pack: center;
|
|
166
|
+
-ms-flex-pack: center;
|
|
167
|
+
justify-content: center;
|
|
168
|
+
-webkit-box-align: center;
|
|
169
|
+
-ms-flex-align: center;
|
|
170
|
+
align-items: center;
|
|
171
|
+
white-space: nowrap
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.element-video {
|
|
175
|
+
position: absolute;
|
|
176
|
+
overflow: hidden;
|
|
177
|
+
background-color: transparent;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.element-video .ani-wrap, .element-video img {
|
|
181
|
+
display: block;
|
|
182
|
+
width: 100%;
|
|
183
|
+
height: 100%;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.video-container {
|
|
187
|
+
width: 100%;
|
|
188
|
+
height: 100%;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.video-container iframe {
|
|
192
|
+
width: 100%;
|
|
193
|
+
height: 100%;
|
|
194
|
+
border: none;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.video-cover {
|
|
198
|
+
position: relative;
|
|
199
|
+
width: 100%;
|
|
200
|
+
height: 100%;
|
|
201
|
+
background-size: cover;
|
|
202
|
+
background-position: center;
|
|
203
|
+
cursor: pointer;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.video-cover .play-btn {
|
|
207
|
+
position: absolute;
|
|
208
|
+
left: 50%;
|
|
209
|
+
top: 50%;
|
|
210
|
+
transform: translate(-50%, -50%);
|
|
211
|
+
width: 50px;
|
|
212
|
+
height: 50px;
|
|
213
|
+
opacity: 0.8;
|
|
214
|
+
transition: opacity 0.2s;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.video-cover:hover .play-btn {
|
|
218
|
+
opacity: 1;
|
|
219
|
+
}.ele-img {
|
|
12
220
|
position: absolute;
|
|
13
221
|
overflow: hidden;
|
|
14
222
|
}
|
|
@@ -57,99 +265,29 @@
|
|
|
57
265
|
opacity: 1;
|
|
58
266
|
transform: scale(1);
|
|
59
267
|
}
|
|
60
|
-
}#audio {
|
|
61
|
-
position: absolute;
|
|
62
|
-
right: 10px;
|
|
63
|
-
top: 10px;
|
|
64
|
-
z-index: 103;
|
|
65
|
-
width: 30px;
|
|
66
|
-
height: 30px;
|
|
67
|
-
display: flex;
|
|
68
|
-
align-items: center;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
#audio .mrotate {
|
|
72
|
-
animation: mrotate 5s linear infinite;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
@keyframes mrotate {
|
|
76
|
-
to {
|
|
77
|
-
transform: rotate(1turn);
|
|
78
268
|
}
|
|
269
|
+
.ele-text {
|
|
270
|
+
position: relative;
|
|
79
271
|
}
|
|
80
272
|
|
|
81
|
-
|
|
273
|
+
.ele-text .ani-wrap {
|
|
82
274
|
width: 100%;
|
|
83
275
|
height: 100%;
|
|
84
|
-
display: flex;
|
|
85
|
-
align-items: center;
|
|
86
|
-
justify-content: center;
|
|
87
|
-
color: #fff;
|
|
88
|
-
background: #666;
|
|
89
|
-
border-radius: 50%;
|
|
90
|
-
overflow: hidden;
|
|
91
|
-
cursor: pointer;
|
|
92
|
-
transition: all 0.3s ease;
|
|
93
276
|
}
|
|
94
277
|
|
|
95
|
-
|
|
96
|
-
|
|
278
|
+
.text-common {
|
|
279
|
+
padding: 5px;
|
|
280
|
+
text-orientation: upright;
|
|
281
|
+
white-space: pre-wrap;
|
|
97
282
|
}
|
|
98
283
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
height: 60%;
|
|
103
|
-
object-fit: contain;
|
|
284
|
+
/* 文本动画类 */
|
|
285
|
+
.text-fadeIn {
|
|
286
|
+
animation: fadeIn 1s ease-in-out;
|
|
104
287
|
}
|
|
105
288
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
line-height: 1;
|
|
109
|
-
}
|
|
110
|
-
#audio .icon-cancel {
|
|
111
|
-
position: absolute;
|
|
112
|
-
width: 100%;
|
|
113
|
-
height: 100%;
|
|
114
|
-
border-radius: 50%;
|
|
115
|
-
overflow: hidden;
|
|
116
|
-
padding: 15px 0;
|
|
117
|
-
}
|
|
118
|
-
#audio .icon-cancel .icon-h {
|
|
119
|
-
transform: rotate(45deg);
|
|
120
|
-
width: 100%;
|
|
121
|
-
height: 2px;
|
|
122
|
-
background: #fff;
|
|
123
|
-
}
|
|
124
|
-
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
125
|
-
content: '';
|
|
126
|
-
position: absolute;
|
|
127
|
-
width: 100%;
|
|
128
|
-
height: 2px;
|
|
129
|
-
background: #fff;
|
|
130
|
-
}
|
|
131
|
-
.ele-text {
|
|
132
|
-
position: relative;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.ele-text .ani-wrap {
|
|
136
|
-
width: 100%;
|
|
137
|
-
height: 100%;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.text-common {
|
|
141
|
-
padding: 5px;
|
|
142
|
-
text-orientation: upright;
|
|
143
|
-
white-space: pre-wrap;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
/* 文本动画类 */
|
|
147
|
-
.text-fadeIn {
|
|
148
|
-
animation: fadeIn 1s ease-in-out;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.text-slideIn {
|
|
152
|
-
animation: slideIn 1s ease-in-out;
|
|
289
|
+
.text-slideIn {
|
|
290
|
+
animation: slideIn 1s ease-in-out;
|
|
153
291
|
}
|
|
154
292
|
|
|
155
293
|
.text-bounceIn {
|
|
@@ -194,52 +332,76 @@
|
|
|
194
332
|
transform: scale(1);
|
|
195
333
|
opacity: 1;
|
|
196
334
|
}
|
|
335
|
+
}#audio {
|
|
336
|
+
position: absolute;
|
|
337
|
+
right: 10px;
|
|
338
|
+
top: 10px;
|
|
339
|
+
z-index: 103;
|
|
340
|
+
width: 30px;
|
|
341
|
+
height: 30px;
|
|
342
|
+
display: flex;
|
|
343
|
+
align-items: center;
|
|
197
344
|
}
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
width: 100%;
|
|
207
|
-
height: 100%;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.video-container {
|
|
211
|
-
width: 100%;
|
|
212
|
-
height: 100%;
|
|
345
|
+
|
|
346
|
+
#audio .mrotate {
|
|
347
|
+
animation: mrotate 5s linear infinite;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
@keyframes mrotate {
|
|
351
|
+
to {
|
|
352
|
+
transform: rotate(1turn);
|
|
213
353
|
}
|
|
214
|
-
|
|
215
|
-
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
#audio .audio {
|
|
357
|
+
width: 100%;
|
|
358
|
+
height: 100%;
|
|
359
|
+
display: flex;
|
|
360
|
+
align-items: center;
|
|
361
|
+
justify-content: center;
|
|
362
|
+
color: #fff;
|
|
363
|
+
background: #666;
|
|
364
|
+
border-radius: 50%;
|
|
365
|
+
overflow: hidden;
|
|
366
|
+
cursor: pointer;
|
|
367
|
+
transition: all 0.3s ease;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
#audio .audio.a-border {
|
|
371
|
+
border: 1px solid #fff;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
#audio .audio .music-icon {
|
|
375
|
+
display: block;
|
|
376
|
+
width: 60%;
|
|
377
|
+
height: 60%;
|
|
378
|
+
object-fit: contain;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
#audio .audio .iconfont {
|
|
382
|
+
font-size: 2opx;
|
|
383
|
+
line-height: 1;
|
|
384
|
+
}
|
|
385
|
+
#audio .icon-cancel {
|
|
386
|
+
position: absolute;
|
|
216
387
|
width: 100%;
|
|
217
388
|
height: 100%;
|
|
218
|
-
border:
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
389
|
+
border-radius: 50%;
|
|
390
|
+
overflow: hidden;
|
|
391
|
+
padding: 15px 0;
|
|
392
|
+
}
|
|
393
|
+
#audio .icon-cancel .icon-h {
|
|
394
|
+
transform: rotate(45deg);
|
|
223
395
|
width: 100%;
|
|
224
|
-
height:
|
|
225
|
-
background
|
|
226
|
-
background-position: center;
|
|
227
|
-
cursor: pointer;
|
|
396
|
+
height: 2px;
|
|
397
|
+
background: #fff;
|
|
228
398
|
}
|
|
229
|
-
|
|
230
|
-
|
|
399
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
400
|
+
content: '';
|
|
231
401
|
position: absolute;
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
width: 50px;
|
|
236
|
-
height: 50px;
|
|
237
|
-
opacity: 0.8;
|
|
238
|
-
transition: opacity 0.2s;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.video-cover:hover .play-btn {
|
|
242
|
-
opacity: 1;
|
|
402
|
+
width: 100%;
|
|
403
|
+
height: 2px;
|
|
404
|
+
background: #fff;
|
|
243
405
|
}.call {
|
|
244
406
|
position: absolute;
|
|
245
407
|
cursor: pointer;
|
|
@@ -273,516 +435,17 @@
|
|
|
273
435
|
|
|
274
436
|
.hb-tel:before {
|
|
275
437
|
content: "\E642";
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.ani-wrap {
|
|
282
|
-
width: 100%;
|
|
283
|
-
height: 100%;
|
|
284
|
-
box-sizing: border-box;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.e-shape {
|
|
288
|
-
width: 100%;
|
|
289
|
-
height: 100%;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.svg-container :deep(svg) {
|
|
293
|
-
width: 100%;
|
|
294
|
-
height: 100%;
|
|
295
|
-
display: block;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.svg-loading,
|
|
299
|
-
.svg-error {
|
|
300
|
-
display: flex;
|
|
301
|
-
align-items: center;
|
|
302
|
-
justify-content: center;
|
|
303
|
-
width: 100%;
|
|
304
|
-
height: 100%;
|
|
305
|
-
background: rgba(0,0,0,0.05);
|
|
306
|
-
}.element-ditu .ani-wrap {
|
|
307
|
-
width: 100%;
|
|
308
|
-
height: 100%;
|
|
309
|
-
overflow: hidden
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.element-ditu .map {
|
|
313
|
-
width: 100%;
|
|
314
|
-
height: 100%
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
.element-ditu .map .el-button {
|
|
318
|
-
width: 100%;
|
|
319
|
-
height: 100%;
|
|
320
|
-
display: -webkit-box;
|
|
321
|
-
display: -ms-flexbox;
|
|
322
|
-
display: flex;
|
|
323
|
-
-webkit-box-align: center;
|
|
324
|
-
-ms-flex-align: center;
|
|
325
|
-
align-items: center;
|
|
326
|
-
padding: 0;
|
|
327
|
-
-webkit-box-pack: center;
|
|
328
|
-
-ms-flex-pack: center;
|
|
329
|
-
justify-content: center;
|
|
330
|
-
background: inherit;
|
|
331
|
-
color: inherit;
|
|
332
|
-
border: none
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
.element-ditu .center-map {
|
|
336
|
-
width: 100%;
|
|
337
|
-
height: 100%;
|
|
338
|
-
background: #fff
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.element-ditu .mask-map {
|
|
342
|
-
position: absolute;
|
|
343
|
-
width: 100%;
|
|
344
|
-
height: 100%;
|
|
345
|
-
top: 0
|
|
346
|
-
}
|
|
347
|
-
.map-iframe {
|
|
348
|
-
width: 100%;
|
|
349
|
-
height: 100%;
|
|
350
|
-
}.ele-effect {
|
|
351
|
-
will-change: transform;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
.ele-effect .effect-wrap {
|
|
355
|
-
position: relative;
|
|
356
|
-
width: 100%;
|
|
357
|
-
height: 100%;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
.particle {
|
|
361
|
-
position: absolute;
|
|
362
|
-
background-repeat: no-repeat;
|
|
363
|
-
background-size: contain;
|
|
364
|
-
animation-name: falling;
|
|
365
|
-
animation-timing-function: linear;
|
|
366
|
-
animation-iteration-count: infinite;
|
|
367
|
-
will-change: transform;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
@keyframes falling {
|
|
371
|
-
0% {
|
|
372
|
-
transform: translateY(0) rotate(0deg);
|
|
373
|
-
opacity: 1;
|
|
438
|
+
}/* Iconfont definition */
|
|
439
|
+
.icon-danmuliebiao1:before {
|
|
440
|
+
content: "\E68A";
|
|
374
441
|
}
|
|
375
|
-
|
|
376
|
-
|
|
442
|
+
|
|
443
|
+
.icon-cuowu2:before {
|
|
444
|
+
content: "\E65E";
|
|
377
445
|
}
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
}
|
|
382
|
-
}
|
|
383
|
-
.ele-lottie .ele-lotwrap {
|
|
384
|
-
overflow: hidden
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.ele-effect .effect-wrap {
|
|
388
|
-
position: relative;
|
|
389
|
-
overflow: hidden;
|
|
390
|
-
width: 100%;
|
|
391
|
-
height: 100%
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
.ele-effect .e-small {
|
|
395
|
-
position: absolute;
|
|
396
|
-
width: 24px;
|
|
397
|
-
height: 24px;
|
|
398
|
-
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
399
|
-
background-size: cover;
|
|
400
|
-
background-repeat: no-repeat;
|
|
401
|
-
-webkit-transform-origin: center;
|
|
402
|
-
transform-origin: center;
|
|
403
|
-
-webkit-animation: snow 5s linear infinite;
|
|
404
|
-
animation: snow 5s linear infinite
|
|
405
|
-
}
|
|
406
|
-
@keyframes jumpheart {
|
|
407
|
-
to {
|
|
408
|
-
-webkit-transform: scale(1.2);
|
|
409
|
-
transform: scale(1.2)
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
.ele-calendar {
|
|
413
|
-
position: relative;
|
|
414
|
-
width: 325px !important;
|
|
415
|
-
min-height: 325px !important;
|
|
416
|
-
height: auto !important;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
.ele-calendar .drag-point {
|
|
420
|
-
cursor: default !important;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
.ele-calendar .ani-wrap {
|
|
424
|
-
position: relative;
|
|
425
|
-
width: 100%;
|
|
426
|
-
min-height: 325px !important;
|
|
427
|
-
height: auto !important;
|
|
428
|
-
padding: 22px 0;
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
432
|
-
display: flex;
|
|
433
|
-
justify-content: space-between;
|
|
434
|
-
align-items: flex-end;
|
|
435
|
-
line-height: 1;
|
|
436
|
-
padding: 0 47px 20px;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
440
|
-
font-size: 25px;
|
|
441
|
-
padding-bottom: 4px;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
445
|
-
font-size: 25px;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
449
|
-
position: relative;
|
|
450
|
-
top: 2px;
|
|
451
|
-
font-size: 57px;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
.ele-calendar .ani-wrap .can-wrap .can-main {
|
|
455
|
-
padding: 0 23px;
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-week {
|
|
459
|
-
display: flex;
|
|
460
|
-
justify-content: flex-start;
|
|
461
|
-
height: 25px;
|
|
462
|
-
line-height: 25px;
|
|
463
|
-
padding: 0 10px;
|
|
464
|
-
border-radius: 13px;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
|
|
468
|
-
width: 14.2%;
|
|
469
|
-
text-align: center;
|
|
470
|
-
color: #fff;
|
|
471
|
-
font-size: 12px;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
|
|
475
|
-
font-size: 0;
|
|
476
|
-
padding: 5px 10px 0;
|
|
477
|
-
text-align: left;
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
|
|
481
|
-
position: relative;
|
|
482
|
-
display: inline-block;
|
|
483
|
-
height: 25px;
|
|
484
|
-
text-align: center;
|
|
485
|
-
margin-top: 8px;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
|
|
489
|
-
display: block;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
|
|
493
|
-
color: #fff !important;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
|
|
497
|
-
animation: jumpheart 0.8s ease infinite alternate;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
|
|
501
|
-
display: none;
|
|
502
|
-
font-size: 26px;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
|
|
506
|
-
position: absolute;
|
|
507
|
-
left: 50%;
|
|
508
|
-
top: 50%;
|
|
509
|
-
z-index: 1;
|
|
510
|
-
color: #666;
|
|
511
|
-
font-size: 13px;
|
|
512
|
-
transform: translate(-50%, -52%);
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
.ele-calendar .bottom-center,
|
|
516
|
-
.ele-calendar .left-center,
|
|
517
|
-
.ele-calendar .right-center,
|
|
518
|
-
.ele-calendar .top-center {
|
|
519
|
-
display: none !important;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
.ele-calendar .ani-wrap .can-wrap2 {
|
|
523
|
-
padding: 21px 23px 0
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-top {
|
|
527
|
-
display: -webkit-box;
|
|
528
|
-
display: -ms-flexbox;
|
|
529
|
-
display: flex;
|
|
530
|
-
-webkit-box-pack: justify;
|
|
531
|
-
-ms-flex-pack: justify;
|
|
532
|
-
justify-content: space-between;
|
|
533
|
-
-webkit-box-align: end;
|
|
534
|
-
-ms-flex-align: end;
|
|
535
|
-
align-items: flex-end;
|
|
536
|
-
line-height: 1;
|
|
537
|
-
padding: 0 16px 22px;
|
|
538
|
-
font-size: 36px
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-top span {
|
|
542
|
-
font-size: 16px
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
|
|
546
|
-
display: -webkit-box;
|
|
547
|
-
display: -ms-flexbox;
|
|
548
|
-
display: flex;
|
|
549
|
-
-webkit-box-pack: start;
|
|
550
|
-
-ms-flex-pack: start;
|
|
551
|
-
justify-content: flex-start;
|
|
552
|
-
height: 25px;
|
|
553
|
-
line-height: 25px;
|
|
554
|
-
padding: 0 10px;
|
|
555
|
-
border-radius: 13px
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
|
|
559
|
-
width: 14.2%;
|
|
560
|
-
text-align: center;
|
|
561
|
-
color: #fff;
|
|
562
|
-
font-size: 12px;
|
|
563
|
-
font-weight: 600
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
|
|
567
|
-
position: relative
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
|
|
571
|
-
position: absolute;
|
|
572
|
-
white-space: nowrap;
|
|
573
|
-
left: 50%;
|
|
574
|
-
top: 15%;
|
|
575
|
-
-webkit-transform: translateX(-50%);
|
|
576
|
-
transform: translateX(-50%);
|
|
577
|
-
font-size: 76px;
|
|
578
|
-
opacity: .1;
|
|
579
|
-
font-weight: 600
|
|
580
|
-
}
|
|
581
|
-
|
|
582
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
|
|
583
|
-
font-size: 0;
|
|
584
|
-
padding: 5px 10px 0;
|
|
585
|
-
text-align: left
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
|
|
589
|
-
position: relative;
|
|
590
|
-
display: inline-block;
|
|
591
|
-
width: 14.2%;
|
|
592
|
-
height: 25px;
|
|
593
|
-
text-align: center;
|
|
594
|
-
margin-top: 8px
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
|
|
598
|
-
display: block;
|
|
599
|
-
position: absolute;
|
|
600
|
-
left: 17%;
|
|
601
|
-
top: 0;
|
|
602
|
-
font-size: 25px
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
|
|
606
|
-
color: #fff!important
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
|
|
610
|
-
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
611
|
-
animation: jumpheart .8s ease infinite alternate
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
|
|
615
|
-
display: none;
|
|
616
|
-
font-size: 26px
|
|
617
|
-
}
|
|
618
|
-
|
|
619
|
-
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
|
|
620
|
-
position: absolute;
|
|
621
|
-
left: 50%;
|
|
622
|
-
top: 50%;
|
|
623
|
-
z-index: 1;
|
|
624
|
-
color: #666;
|
|
625
|
-
font-size: 13px;
|
|
626
|
-
-webkit-transform: translate(-50%,-52%);
|
|
627
|
-
transform: translate(-50%,-52%)
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-top {
|
|
631
|
-
display: -webkit-box;
|
|
632
|
-
display: -ms-flexbox;
|
|
633
|
-
display: flex;
|
|
634
|
-
-webkit-box-pack: justify;
|
|
635
|
-
-ms-flex-pack: justify;
|
|
636
|
-
justify-content: space-between;
|
|
637
|
-
-webkit-box-align: end;
|
|
638
|
-
-ms-flex-align: end;
|
|
639
|
-
align-items: flex-end;
|
|
640
|
-
line-height: 1;
|
|
641
|
-
padding: 18px 33px 10px;
|
|
642
|
-
font-size: 36px;
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-top span {
|
|
646
|
-
font-size: 16px
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
|
|
650
|
-
font-size: 20px
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
|
|
654
|
-
display: -webkit-box;
|
|
655
|
-
display: -ms-flexbox;
|
|
656
|
-
display: flex;
|
|
657
|
-
-webkit-box-pack: start;
|
|
658
|
-
-ms-flex-pack: start;
|
|
659
|
-
justify-content: flex-start;
|
|
660
|
-
height: 40px;
|
|
661
|
-
line-height: 40px;
|
|
662
|
-
padding: 0 34px;
|
|
663
|
-
border-bottom: 1px solid
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
|
|
667
|
-
width: 14.2%;
|
|
668
|
-
text-align: center;
|
|
669
|
-
color: #fff;
|
|
670
|
-
font-size: 12px;
|
|
671
|
-
font-weight: 600
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
675
|
-
position: relative
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
|
|
679
|
-
font-size: 0;
|
|
680
|
-
padding: 5px 33px 0;
|
|
681
|
-
text-align: left
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
|
|
685
|
-
position: relative;
|
|
686
|
-
display: inline-block;
|
|
687
|
-
width: 14.2%;
|
|
688
|
-
height: 25px;
|
|
689
|
-
text-align: center;
|
|
690
|
-
margin-top: 8px;
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
|
|
694
|
-
color: #eee
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
|
|
698
|
-
display: block;
|
|
699
|
-
position: absolute;
|
|
700
|
-
left: 12%;
|
|
701
|
-
top: 2px;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
|
|
705
|
-
font-size: 12px
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
|
|
709
|
-
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
710
|
-
animation: jumpheart .8s ease infinite alternate
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
@keyframes jumpheart {
|
|
714
|
-
to {
|
|
715
|
-
-webkit-transform: scale(1.2);
|
|
716
|
-
transform: scale(1.2)
|
|
717
|
-
}
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
|
|
721
|
-
display: none;
|
|
722
|
-
font-size: 26px
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
|
|
726
|
-
position: absolute;
|
|
727
|
-
left: 50%;
|
|
728
|
-
top: 50%;
|
|
729
|
-
z-index: 1;
|
|
730
|
-
color: #666;
|
|
731
|
-
font-size: 13px;
|
|
732
|
-
-webkit-transform: translate(-50%,-52%);
|
|
733
|
-
transform: translate(-50%,-52%)
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
737
|
-
display: none!important
|
|
738
|
-
}
|
|
739
|
-
.icon-tuoyuanxing:before {
|
|
740
|
-
content: "\E6A7";
|
|
741
|
-
}
|
|
742
|
-
.icon-zan1:before {
|
|
743
|
-
content: "\E66D";
|
|
744
|
-
}
|
|
745
|
-
.icon-xingzhuangjiehe:before {
|
|
746
|
-
content: "\E6A6";
|
|
747
|
-
}.button {
|
|
748
|
-
position: absolute;
|
|
749
|
-
cursor: pointer;
|
|
750
|
-
user-select: none;
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
.button .ani-wrap {
|
|
754
|
-
display: flex;
|
|
755
|
-
justify-content: center;
|
|
756
|
-
align-items: center;
|
|
757
|
-
width: 100%;
|
|
758
|
-
height: 100%;
|
|
759
|
-
overflow: hidden;
|
|
760
|
-
transition: opacity 0.2s;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
.button .ani-wrap:hover {
|
|
764
|
-
opacity: 0.9;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
.button-content {
|
|
768
|
-
display: flex;
|
|
769
|
-
align-items: center;
|
|
770
|
-
justify-content: center;
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
.btn-text {
|
|
774
|
-
margin-left: 10px;
|
|
775
|
-
}/* Iconfont definition */
|
|
776
|
-
.icon-danmuliebiao1:before {
|
|
777
|
-
content: "\E68A";
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
.icon-cuowu2:before {
|
|
781
|
-
content: "\E65E";
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
i {
|
|
785
|
-
font-style: normal;
|
|
446
|
+
|
|
447
|
+
i {
|
|
448
|
+
font-style: normal;
|
|
786
449
|
}
|
|
787
450
|
|
|
788
451
|
.v-modal {
|
|
@@ -1674,8 +1337,427 @@
|
|
|
1674
1337
|
0% { transform: rotate(0deg); }
|
|
1675
1338
|
100% { transform: rotate(360deg); }
|
|
1676
1339
|
}
|
|
1677
|
-
|
|
1678
|
-
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
.ele-lottie .ele-lotwrap {
|
|
1343
|
+
overflow: hidden;
|
|
1344
|
+
}.element-ditu .ani-wrap {
|
|
1345
|
+
width: 100%;
|
|
1346
|
+
height: 100%;
|
|
1347
|
+
overflow: hidden
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
.element-ditu .map {
|
|
1351
|
+
width: 100%;
|
|
1352
|
+
height: 100%
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
.element-ditu .map .el-button {
|
|
1356
|
+
width: 100%;
|
|
1357
|
+
height: 100%;
|
|
1358
|
+
display: -webkit-box;
|
|
1359
|
+
display: -ms-flexbox;
|
|
1360
|
+
display: flex;
|
|
1361
|
+
-webkit-box-align: center;
|
|
1362
|
+
-ms-flex-align: center;
|
|
1363
|
+
align-items: center;
|
|
1364
|
+
padding: 0;
|
|
1365
|
+
-webkit-box-pack: center;
|
|
1366
|
+
-ms-flex-pack: center;
|
|
1367
|
+
justify-content: center;
|
|
1368
|
+
background: inherit;
|
|
1369
|
+
color: inherit;
|
|
1370
|
+
border: none
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.element-ditu .center-map {
|
|
1374
|
+
width: 100%;
|
|
1375
|
+
height: 100%;
|
|
1376
|
+
background: #fff
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
.element-ditu .mask-map {
|
|
1380
|
+
position: absolute;
|
|
1381
|
+
width: 100%;
|
|
1382
|
+
height: 100%;
|
|
1383
|
+
top: 0
|
|
1384
|
+
}
|
|
1385
|
+
.map-iframe {
|
|
1386
|
+
width: 100%;
|
|
1387
|
+
height: 100%;
|
|
1388
|
+
}
|
|
1389
|
+
@keyframes jumpheart {
|
|
1390
|
+
to {
|
|
1391
|
+
-webkit-transform: scale(1.2);
|
|
1392
|
+
transform: scale(1.2)
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1395
|
+
.ele-calendar {
|
|
1396
|
+
position: relative;
|
|
1397
|
+
width: 325px !important;
|
|
1398
|
+
min-height: 325px !important;
|
|
1399
|
+
height: auto !important;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
.ele-calendar .drag-point {
|
|
1403
|
+
cursor: default !important;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.ele-calendar .ani-wrap {
|
|
1407
|
+
position: relative;
|
|
1408
|
+
width: 100%;
|
|
1409
|
+
min-height: 325px !important;
|
|
1410
|
+
height: auto !important;
|
|
1411
|
+
padding: 22px 0;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
1415
|
+
display: flex;
|
|
1416
|
+
justify-content: space-between;
|
|
1417
|
+
align-items: flex-end;
|
|
1418
|
+
line-height: 1;
|
|
1419
|
+
padding: 0 47px 20px;
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
1423
|
+
font-size: 25px;
|
|
1424
|
+
padding-bottom: 4px;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
1428
|
+
font-size: 25px;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
1432
|
+
position: relative;
|
|
1433
|
+
top: 2px;
|
|
1434
|
+
font-size: 57px;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.ele-calendar .ani-wrap .can-wrap .can-main {
|
|
1438
|
+
padding: 0 23px;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week {
|
|
1442
|
+
display: flex;
|
|
1443
|
+
justify-content: flex-start;
|
|
1444
|
+
height: 25px;
|
|
1445
|
+
line-height: 25px;
|
|
1446
|
+
padding: 0 10px;
|
|
1447
|
+
border-radius: 13px;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
|
|
1451
|
+
width: 14.2%;
|
|
1452
|
+
text-align: center;
|
|
1453
|
+
color: #fff;
|
|
1454
|
+
font-size: 12px;
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
|
|
1458
|
+
font-size: 0;
|
|
1459
|
+
padding: 5px 10px 0;
|
|
1460
|
+
text-align: left;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
|
|
1464
|
+
position: relative;
|
|
1465
|
+
display: inline-block;
|
|
1466
|
+
height: 25px;
|
|
1467
|
+
text-align: center;
|
|
1468
|
+
margin-top: 8px;
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
|
|
1472
|
+
display: block;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
|
|
1476
|
+
color: #fff !important;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
|
|
1480
|
+
animation: jumpheart 0.8s ease infinite alternate;
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
|
|
1484
|
+
display: none;
|
|
1485
|
+
font-size: 26px;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
|
|
1489
|
+
position: absolute;
|
|
1490
|
+
left: 50%;
|
|
1491
|
+
top: 50%;
|
|
1492
|
+
z-index: 1;
|
|
1493
|
+
color: #666;
|
|
1494
|
+
font-size: 13px;
|
|
1495
|
+
transform: translate(-50%, -52%);
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
.ele-calendar .bottom-center,
|
|
1499
|
+
.ele-calendar .left-center,
|
|
1500
|
+
.ele-calendar .right-center,
|
|
1501
|
+
.ele-calendar .top-center {
|
|
1502
|
+
display: none !important;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.ele-calendar .ani-wrap .can-wrap2 {
|
|
1506
|
+
padding: 21px 23px 0
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top {
|
|
1510
|
+
display: -webkit-box;
|
|
1511
|
+
display: -ms-flexbox;
|
|
1512
|
+
display: flex;
|
|
1513
|
+
-webkit-box-pack: justify;
|
|
1514
|
+
-ms-flex-pack: justify;
|
|
1515
|
+
justify-content: space-between;
|
|
1516
|
+
-webkit-box-align: end;
|
|
1517
|
+
-ms-flex-align: end;
|
|
1518
|
+
align-items: flex-end;
|
|
1519
|
+
line-height: 1;
|
|
1520
|
+
padding: 0 16px 22px;
|
|
1521
|
+
font-size: 36px
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top span {
|
|
1525
|
+
font-size: 16px
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
|
|
1529
|
+
display: -webkit-box;
|
|
1530
|
+
display: -ms-flexbox;
|
|
1531
|
+
display: flex;
|
|
1532
|
+
-webkit-box-pack: start;
|
|
1533
|
+
-ms-flex-pack: start;
|
|
1534
|
+
justify-content: flex-start;
|
|
1535
|
+
height: 25px;
|
|
1536
|
+
line-height: 25px;
|
|
1537
|
+
padding: 0 10px;
|
|
1538
|
+
border-radius: 13px
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
|
|
1542
|
+
width: 14.2%;
|
|
1543
|
+
text-align: center;
|
|
1544
|
+
color: #fff;
|
|
1545
|
+
font-size: 12px;
|
|
1546
|
+
font-weight: 600
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
|
|
1550
|
+
position: relative
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
|
|
1554
|
+
position: absolute;
|
|
1555
|
+
white-space: nowrap;
|
|
1556
|
+
left: 50%;
|
|
1557
|
+
top: 15%;
|
|
1558
|
+
-webkit-transform: translateX(-50%);
|
|
1559
|
+
transform: translateX(-50%);
|
|
1560
|
+
font-size: 76px;
|
|
1561
|
+
opacity: .1;
|
|
1562
|
+
font-weight: 600
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
|
|
1566
|
+
font-size: 0;
|
|
1567
|
+
padding: 5px 10px 0;
|
|
1568
|
+
text-align: left
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
|
|
1572
|
+
position: relative;
|
|
1573
|
+
display: inline-block;
|
|
1574
|
+
width: 14.2%;
|
|
1575
|
+
height: 25px;
|
|
1576
|
+
text-align: center;
|
|
1577
|
+
margin-top: 8px
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
|
|
1581
|
+
display: block;
|
|
1582
|
+
position: absolute;
|
|
1583
|
+
left: 17%;
|
|
1584
|
+
top: 0;
|
|
1585
|
+
font-size: 25px
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
|
|
1589
|
+
color: #fff!important
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
|
|
1593
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
1594
|
+
animation: jumpheart .8s ease infinite alternate
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
|
|
1598
|
+
display: none;
|
|
1599
|
+
font-size: 26px
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
|
|
1603
|
+
position: absolute;
|
|
1604
|
+
left: 50%;
|
|
1605
|
+
top: 50%;
|
|
1606
|
+
z-index: 1;
|
|
1607
|
+
color: #666;
|
|
1608
|
+
font-size: 13px;
|
|
1609
|
+
-webkit-transform: translate(-50%,-52%);
|
|
1610
|
+
transform: translate(-50%,-52%)
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top {
|
|
1614
|
+
display: -webkit-box;
|
|
1615
|
+
display: -ms-flexbox;
|
|
1616
|
+
display: flex;
|
|
1617
|
+
-webkit-box-pack: justify;
|
|
1618
|
+
-ms-flex-pack: justify;
|
|
1619
|
+
justify-content: space-between;
|
|
1620
|
+
-webkit-box-align: end;
|
|
1621
|
+
-ms-flex-align: end;
|
|
1622
|
+
align-items: flex-end;
|
|
1623
|
+
line-height: 1;
|
|
1624
|
+
padding: 18px 33px 10px;
|
|
1625
|
+
font-size: 36px;
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top span {
|
|
1629
|
+
font-size: 16px
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
|
|
1633
|
+
font-size: 20px
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
|
|
1637
|
+
display: -webkit-box;
|
|
1638
|
+
display: -ms-flexbox;
|
|
1639
|
+
display: flex;
|
|
1640
|
+
-webkit-box-pack: start;
|
|
1641
|
+
-ms-flex-pack: start;
|
|
1642
|
+
justify-content: flex-start;
|
|
1643
|
+
height: 40px;
|
|
1644
|
+
line-height: 40px;
|
|
1645
|
+
padding: 0 34px;
|
|
1646
|
+
border-bottom: 1px solid
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
|
|
1650
|
+
width: 14.2%;
|
|
1651
|
+
text-align: center;
|
|
1652
|
+
color: #fff;
|
|
1653
|
+
font-size: 12px;
|
|
1654
|
+
font-weight: 600
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
1658
|
+
position: relative
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
|
|
1662
|
+
font-size: 0;
|
|
1663
|
+
padding: 5px 33px 0;
|
|
1664
|
+
text-align: left
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
|
|
1668
|
+
position: relative;
|
|
1669
|
+
display: inline-block;
|
|
1670
|
+
width: 14.2%;
|
|
1671
|
+
height: 25px;
|
|
1672
|
+
text-align: center;
|
|
1673
|
+
margin-top: 8px;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
|
|
1677
|
+
color: #eee
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
|
|
1681
|
+
display: block;
|
|
1682
|
+
position: absolute;
|
|
1683
|
+
left: 12%;
|
|
1684
|
+
top: 2px;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
|
|
1688
|
+
font-size: 12px
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
|
|
1692
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
1693
|
+
animation: jumpheart .8s ease infinite alternate
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
@keyframes jumpheart {
|
|
1697
|
+
to {
|
|
1698
|
+
-webkit-transform: scale(1.2);
|
|
1699
|
+
transform: scale(1.2)
|
|
1700
|
+
}
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
|
|
1704
|
+
display: none;
|
|
1705
|
+
font-size: 26px
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
|
|
1709
|
+
position: absolute;
|
|
1710
|
+
left: 50%;
|
|
1711
|
+
top: 50%;
|
|
1712
|
+
z-index: 1;
|
|
1713
|
+
color: #666;
|
|
1714
|
+
font-size: 13px;
|
|
1715
|
+
-webkit-transform: translate(-50%,-52%);
|
|
1716
|
+
transform: translate(-50%,-52%)
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
1720
|
+
display: none!important
|
|
1721
|
+
}
|
|
1722
|
+
.icon-tuoyuanxing:before {
|
|
1723
|
+
content: "\E6A7";
|
|
1724
|
+
}
|
|
1725
|
+
.icon-zan1:before {
|
|
1726
|
+
content: "\E66D";
|
|
1727
|
+
}
|
|
1728
|
+
.icon-xingzhuangjiehe:before {
|
|
1729
|
+
content: "\E6A6";
|
|
1730
|
+
}.ele-shape {
|
|
1731
|
+
position: absolute;
|
|
1732
|
+
overflow: hidden;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
.ani-wrap {
|
|
1736
|
+
width: 100%;
|
|
1737
|
+
height: 100%;
|
|
1738
|
+
box-sizing: border-box;
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
.e-shape {
|
|
1742
|
+
width: 100%;
|
|
1743
|
+
height: 100%;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
.svg-container :deep(svg) {
|
|
1747
|
+
width: 100%;
|
|
1748
|
+
height: 100%;
|
|
1749
|
+
display: block;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
.svg-loading,
|
|
1753
|
+
.svg-error {
|
|
1754
|
+
display: flex;
|
|
1755
|
+
align-items: center;
|
|
1756
|
+
justify-content: center;
|
|
1757
|
+
width: 100%;
|
|
1758
|
+
height: 100%;
|
|
1759
|
+
background: rgba(0,0,0,0.05);
|
|
1760
|
+
}body, html {
|
|
1679
1761
|
width: 100%;
|
|
1680
1762
|
height: 100%;
|
|
1681
1763
|
}
|
|
@@ -3146,170 +3228,319 @@ to {
|
|
|
3146
3228
|
-webkit-transform: none;
|
|
3147
3229
|
transform: none
|
|
3148
3230
|
}
|
|
3231
|
+
}.button {
|
|
3232
|
+
position: absolute;
|
|
3233
|
+
cursor: pointer;
|
|
3234
|
+
user-select: none;
|
|
3149
3235
|
}
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
}.count-down .drag-point {
|
|
3153
|
-
cursor: default!important
|
|
3154
|
-
}
|
|
3155
|
-
|
|
3156
|
-
.count-down .ani-wrap {
|
|
3157
|
-
width: 100%;
|
|
3158
|
-
height: 100%
|
|
3159
|
-
}
|
|
3160
|
-
|
|
3161
|
-
.count-down .count-text,.count-down .finish-cont {
|
|
3162
|
-
display: -webkit-box;
|
|
3163
|
-
display: -ms-flexbox;
|
|
3236
|
+
|
|
3237
|
+
.button .ani-wrap {
|
|
3164
3238
|
display: flex;
|
|
3165
|
-
|
|
3166
|
-
-webkit-box-align: center;
|
|
3167
|
-
-ms-flex-align: center;
|
|
3239
|
+
justify-content: center;
|
|
3168
3240
|
align-items: center;
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3241
|
+
width: 100%;
|
|
3242
|
+
height: 100%;
|
|
3243
|
+
overflow: hidden;
|
|
3244
|
+
transition: opacity 0.2s;
|
|
3172
3245
|
}
|
|
3173
|
-
|
|
3174
|
-
.
|
|
3175
|
-
|
|
3246
|
+
|
|
3247
|
+
.button .ani-wrap:hover {
|
|
3248
|
+
opacity: 0.9;
|
|
3176
3249
|
}
|
|
3177
3250
|
|
|
3178
|
-
.
|
|
3179
|
-
display: -webkit-box;
|
|
3180
|
-
display: -ms-flexbox;
|
|
3251
|
+
.button-content {
|
|
3181
3252
|
display: flex;
|
|
3182
|
-
height: 100%;
|
|
3183
|
-
-webkit-box-align: center;
|
|
3184
|
-
-ms-flex-align: center;
|
|
3185
3253
|
align-items: center;
|
|
3186
|
-
-
|
|
3187
|
-
-ms-flex-pack: center;
|
|
3188
|
-
justify-content: center
|
|
3254
|
+
justify-content: center;
|
|
3189
3255
|
}
|
|
3190
3256
|
|
|
3191
|
-
.
|
|
3192
|
-
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3257
|
+
.btn-text {
|
|
3258
|
+
margin-left: 10px;
|
|
3259
|
+
}.form-submit {
|
|
3260
|
+
cursor: pointer;
|
|
3261
|
+
transition: all 0.2s;
|
|
3262
|
+
outline: none;
|
|
3263
|
+
border: none;
|
|
3196
3264
|
}
|
|
3197
3265
|
|
|
3198
|
-
.
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
opacity: .6;
|
|
3202
|
-
-webkit-transform: scale(.5)!important;
|
|
3203
|
-
transform: scale(.5)!important
|
|
3266
|
+
.form-submit:hover {
|
|
3267
|
+
opacity: 0.9;
|
|
3268
|
+
transform: translateY(-1px);
|
|
3204
3269
|
}
|
|
3205
3270
|
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
}
|
|
3271
|
+
.form-submit:active {
|
|
3272
|
+
opacity: 0.8;
|
|
3273
|
+
transform: translateY(0);
|
|
3274
|
+
}
|
|
3211
3275
|
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3276
|
+
.form-submit:disabled {
|
|
3277
|
+
opacity: 0.6;
|
|
3278
|
+
cursor: not-allowed;
|
|
3279
|
+
transform: none !important;
|
|
3216
3280
|
}
|
|
3217
3281
|
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
}
|
|
3282
|
+
.f-submit {
|
|
3283
|
+
position: relative;
|
|
3284
|
+
display: block
|
|
3285
|
+
}
|
|
3223
3286
|
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3287
|
+
.f-submit .ani-wrap {
|
|
3288
|
+
width: 100%;
|
|
3289
|
+
height: 100%;
|
|
3290
|
+
padding: 10px;
|
|
3291
|
+
overflow: hidden;
|
|
3292
|
+
position: relative
|
|
3228
3293
|
}
|
|
3229
3294
|
|
|
3230
|
-
.
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
background-color: #111
|
|
3295
|
+
.f-submit .f-ovh {
|
|
3296
|
+
position: absolute;
|
|
3297
|
+
left: 50%;
|
|
3298
|
+
top: 50%;
|
|
3299
|
+
transform: translate(-50%,-50%)
|
|
3236
3300
|
}
|
|
3237
3301
|
|
|
3238
|
-
.
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
position:
|
|
3302
|
+
.form-submit:disabled {
|
|
3303
|
+
opacity: 0.7;
|
|
3304
|
+
cursor: not-allowed;
|
|
3305
|
+
}#page-list .tip-cover {
|
|
3306
|
+
position: fixed;
|
|
3307
|
+
left: 0;
|
|
3308
|
+
top: 0;
|
|
3243
3309
|
width: 100%;
|
|
3244
3310
|
height: 100%;
|
|
3245
|
-
-
|
|
3311
|
+
display: -ms-flexbox;
|
|
3312
|
+
display: flex;
|
|
3246
3313
|
-ms-flex-align: center;
|
|
3247
|
-
align-items: center
|
|
3314
|
+
align-items: center;
|
|
3315
|
+
-ms-flex-pack: center;
|
|
3316
|
+
justify-content: center;
|
|
3317
|
+
z-index: 999;
|
|
3318
|
+
background-color: rgba(0,0,0,.7)
|
|
3248
3319
|
}
|
|
3249
3320
|
|
|
3250
|
-
|
|
3251
|
-
|
|
3321
|
+
#page-list .tip-cover .tip {
|
|
3322
|
+
width: 80%;
|
|
3323
|
+
max-width: 250px;
|
|
3324
|
+
padding: 10px;
|
|
3325
|
+
border-radius: 5px;
|
|
3326
|
+
background-color: #fff
|
|
3252
3327
|
}
|
|
3253
3328
|
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3329
|
+
#page-list .tip-cover .tip-btn {
|
|
3330
|
+
display: block;
|
|
3331
|
+
margin: 25px auto;
|
|
3332
|
+
width: 120px;
|
|
3333
|
+
height: 30px;
|
|
3334
|
+
color: #fff;
|
|
3335
|
+
border-radius: 4px;
|
|
3336
|
+
text-align: center;
|
|
3337
|
+
font-size: 14px;
|
|
3338
|
+
line-height: 30px;
|
|
3339
|
+
background: #ed5566
|
|
3257
3340
|
}
|
|
3258
3341
|
|
|
3259
|
-
|
|
3260
|
-
-
|
|
3261
|
-
|
|
3342
|
+
#page-list .tip-cover .tip-content {
|
|
3343
|
+
font-size: 14px;
|
|
3344
|
+
padding-top: 30px;
|
|
3262
3345
|
}
|
|
3263
3346
|
|
|
3264
|
-
.
|
|
3265
|
-
|
|
3347
|
+
.tip-cover {
|
|
3348
|
+
position: fixed;
|
|
3349
|
+
left: 0;
|
|
3350
|
+
top: 0;
|
|
3351
|
+
width: 100%;
|
|
3352
|
+
height: 100%;
|
|
3353
|
+
display: -ms-flexbox;
|
|
3354
|
+
display: flex;
|
|
3355
|
+
-ms-flex-align: center;
|
|
3356
|
+
align-items: center;
|
|
3357
|
+
-ms-flex-pack: center;
|
|
3358
|
+
justify-content: center;
|
|
3359
|
+
z-index: 999;
|
|
3360
|
+
background-color: rgba(0,0,0,.7)
|
|
3266
3361
|
}
|
|
3267
3362
|
|
|
3268
|
-
.
|
|
3363
|
+
.tip-cover .tip {
|
|
3364
|
+
width: 80%;
|
|
3365
|
+
max-width: 250px;
|
|
3366
|
+
padding: 5px;
|
|
3367
|
+
border-radius: 3px;
|
|
3368
|
+
background-color: #fff
|
|
3369
|
+
}
|
|
3370
|
+
|
|
3371
|
+
.tip-cover .tip-btn {
|
|
3372
|
+
display: block;
|
|
3373
|
+
margin: 13px auto;
|
|
3374
|
+
width: 64px;
|
|
3375
|
+
height: 20px;
|
|
3376
|
+
color: #fff;
|
|
3377
|
+
border-radius: 4px;
|
|
3378
|
+
text-align: center;
|
|
3379
|
+
font-size: 14px;
|
|
3380
|
+
line-height: 20px;
|
|
3381
|
+
background: #ed5566;
|
|
3382
|
+
} .ele-effect {
|
|
3383
|
+
will-change: transform;
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3386
|
+
.ele-effect .effect-wrap {
|
|
3387
|
+
position: relative;
|
|
3269
3388
|
width: 100%;
|
|
3270
3389
|
height: 100%;
|
|
3271
|
-
overflow: hidden;
|
|
3272
|
-
font-size: 0
|
|
3273
3390
|
}
|
|
3274
3391
|
|
|
3275
|
-
.
|
|
3276
|
-
|
|
3392
|
+
.particle {
|
|
3393
|
+
position: absolute;
|
|
3394
|
+
background-repeat: no-repeat;
|
|
3395
|
+
background-size: contain;
|
|
3396
|
+
animation-name: falling;
|
|
3397
|
+
animation-timing-function: linear;
|
|
3398
|
+
animation-iteration-count: infinite;
|
|
3399
|
+
will-change: transform;
|
|
3277
3400
|
}
|
|
3278
3401
|
|
|
3279
|
-
|
|
3280
|
-
|
|
3402
|
+
@keyframes falling {
|
|
3403
|
+
0% {
|
|
3404
|
+
transform: translateY(0) rotate(0deg);
|
|
3405
|
+
opacity: 1;
|
|
3406
|
+
}
|
|
3407
|
+
80% {
|
|
3408
|
+
opacity: 0.8;
|
|
3409
|
+
}
|
|
3410
|
+
100% {
|
|
3411
|
+
transform: translateY(100vh) rotate(360deg);
|
|
3412
|
+
opacity: 0;
|
|
3413
|
+
}
|
|
3414
|
+
}
|
|
3415
|
+
.ele-lottie .ele-lotwrap {
|
|
3416
|
+
overflow: hidden
|
|
3281
3417
|
}
|
|
3282
3418
|
|
|
3283
|
-
.
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
color: #999
|
|
3419
|
+
.ele-effect .effect-wrap {
|
|
3420
|
+
position: relative;
|
|
3421
|
+
overflow: hidden;
|
|
3422
|
+
width: 100%;
|
|
3423
|
+
height: 100%
|
|
3289
3424
|
}
|
|
3290
3425
|
|
|
3291
|
-
.
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3426
|
+
.ele-effect .e-small {
|
|
3427
|
+
position: absolute;
|
|
3428
|
+
width: 24px;
|
|
3429
|
+
height: 24px;
|
|
3430
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
3431
|
+
background-size: cover;
|
|
3432
|
+
background-repeat: no-repeat;
|
|
3433
|
+
-webkit-transform-origin: center;
|
|
3434
|
+
transform-origin: center;
|
|
3435
|
+
-webkit-animation: snow 5s linear infinite;
|
|
3436
|
+
animation: snow 5s linear infinite
|
|
3437
|
+
}/* .ele-form {
|
|
3438
|
+
position: absolute;
|
|
3439
|
+
user-select: none;
|
|
3440
|
+
}
|
|
3441
|
+
*/
|
|
3442
|
+
.f-single {
|
|
3443
|
+
cursor: pointer;
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
.ani-wrap {
|
|
3447
|
+
position: relative;
|
|
3448
|
+
}
|
|
3449
|
+
|
|
3450
|
+
.f-single .ani-wrap .fs-tit {
|
|
3451
|
+
display: flex;
|
|
3452
|
+
padding: 0 5px;
|
|
3453
|
+
height: 40px;
|
|
3454
|
+
align-items: center;
|
|
3455
|
+
white-space: nowrap;
|
|
3456
|
+
overflow: hidden;
|
|
3457
|
+
text-overflow: ellipsis;
|
|
3458
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3461
|
+
.require {
|
|
3462
|
+
padding: 0 5px 0 0;
|
|
3463
|
+
color: red;
|
|
3464
|
+
vertical-align: middle;
|
|
3465
|
+
}
|
|
3466
|
+
|
|
3467
|
+
.f-single ul {
|
|
3468
|
+
padding: 15px;
|
|
3469
|
+
margin: 0;
|
|
3470
|
+
list-style: none;
|
|
3471
|
+
}
|
|
3472
|
+
|
|
3473
|
+
.f-single ul li {
|
|
3474
|
+
display: flex;
|
|
3475
|
+
align-items: center;
|
|
3476
|
+
margin-top: 12px;
|
|
3477
|
+
font-size: 0;
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
.f-single ul li:first-child {
|
|
3481
|
+
margin-top: 0;
|
|
3482
|
+
}
|
|
3483
|
+
|
|
3484
|
+
.fs-circle {
|
|
3485
|
+
display: inline-block;
|
|
3486
|
+
width: 16px;
|
|
3487
|
+
height: 16px;
|
|
3488
|
+
border-radius: 50%;
|
|
3489
|
+
position: relative;
|
|
3490
|
+
transition: all 0.2s;
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
.fs-circle.selected {
|
|
3494
|
+
background-color: #2687f1;
|
|
3495
|
+
border-color: #2687f1 !important;
|
|
3496
|
+
}
|
|
3497
|
+
|
|
3498
|
+
.fs-circle.selected::after {
|
|
3499
|
+
content: "";
|
|
3500
|
+
position: absolute;
|
|
3501
|
+
top: 3px;
|
|
3502
|
+
left: 3px;
|
|
3503
|
+
width: 8px;
|
|
3504
|
+
height: 8px;
|
|
3505
|
+
border-radius: 50%;
|
|
3506
|
+
background-color: white;
|
|
3507
|
+
}
|
|
3508
|
+
|
|
3509
|
+
.fs-txt {
|
|
3510
|
+
display: inline-block;
|
|
3511
|
+
width: calc(100% - 16px);
|
|
3512
|
+
padding-left: 8px;
|
|
3513
|
+
vertical-align: top;
|
|
3514
|
+
word-break: break-all;
|
|
3515
|
+
font-size: 14px;
|
|
3516
|
+
line-height: 1.2;
|
|
3517
|
+
}
|
|
3518
|
+
|
|
3519
|
+
.has-error .fs-tit {
|
|
3520
|
+
border-bottom-color: #ff4d4f;
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
|
+
/* 错误提示样式 */
|
|
3524
|
+
.error-tip {
|
|
3525
|
+
position: fixed;
|
|
3526
|
+
left: 0;
|
|
3527
|
+
top: 0;
|
|
3528
|
+
width: 100%;
|
|
3529
|
+
height: 100%;
|
|
3530
|
+
z-index: 1000;
|
|
3531
|
+
}
|
|
3532
|
+
.global.video {
|
|
3533
|
+
width: 35px;
|
|
3534
|
+
height: 55px;
|
|
3535
|
+
border-radius: 50%;
|
|
3536
|
+
text-align: center;
|
|
3537
|
+
margin-bottom: 5px;
|
|
3538
|
+
border: 2px solid #fff;
|
|
3539
|
+
cursor: pointer;
|
|
3298
3540
|
}
|
|
3299
|
-
|
|
3300
|
-
.
|
|
3301
|
-
|
|
3302
|
-
display: -ms-flexbox;
|
|
3303
|
-
display: flex;
|
|
3304
|
-
width: 100%;
|
|
3305
|
-
font-size: 12px;
|
|
3306
|
-
-webkit-box-pack: center;
|
|
3307
|
-
-ms-flex-pack: center;
|
|
3308
|
-
justify-content: center;
|
|
3309
|
-
-webkit-box-align: center;
|
|
3310
|
-
-ms-flex-align: center;
|
|
3311
|
-
align-items: center;
|
|
3312
|
-
white-space: nowrap
|
|
3541
|
+
.icon-shipin2:before { content: "\E611"; }
|
|
3542
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
3543
|
+
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
3313
3544
|
}
|
|
3314
3545
|
.form-input {
|
|
3315
3546
|
position: absolute;
|
|
@@ -3361,130 +3592,7 @@ to {
|
|
|
3361
3592
|
}
|
|
3362
3593
|
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
3363
3594
|
color: var(--placeholder-color, #999);
|
|
3364
|
-
}
|
|
3365
|
-
position: fixed;
|
|
3366
|
-
left: 0;
|
|
3367
|
-
top: 0;
|
|
3368
|
-
width: 100%;
|
|
3369
|
-
height: 100%;
|
|
3370
|
-
display: -ms-flexbox;
|
|
3371
|
-
display: flex;
|
|
3372
|
-
-ms-flex-align: center;
|
|
3373
|
-
align-items: center;
|
|
3374
|
-
-ms-flex-pack: center;
|
|
3375
|
-
justify-content: center;
|
|
3376
|
-
z-index: 999;
|
|
3377
|
-
background-color: rgba(0,0,0,.7)
|
|
3378
|
-
}
|
|
3379
|
-
|
|
3380
|
-
#page-list .tip-cover .tip {
|
|
3381
|
-
width: 80%;
|
|
3382
|
-
max-width: 250px;
|
|
3383
|
-
padding: 10px;
|
|
3384
|
-
border-radius: 5px;
|
|
3385
|
-
background-color: #fff
|
|
3386
|
-
}
|
|
3387
|
-
|
|
3388
|
-
#page-list .tip-cover .tip-btn {
|
|
3389
|
-
display: block;
|
|
3390
|
-
margin: 25px auto;
|
|
3391
|
-
width: 120px;
|
|
3392
|
-
height: 30px;
|
|
3393
|
-
color: #fff;
|
|
3394
|
-
border-radius: 4px;
|
|
3395
|
-
text-align: center;
|
|
3396
|
-
font-size: 14px;
|
|
3397
|
-
line-height: 30px;
|
|
3398
|
-
background: #ed5566
|
|
3399
|
-
}
|
|
3400
|
-
|
|
3401
|
-
#page-list .tip-cover .tip-content {
|
|
3402
|
-
font-size: 14px;
|
|
3403
|
-
padding-top: 30px;
|
|
3404
|
-
}
|
|
3405
|
-
|
|
3406
|
-
.tip-cover {
|
|
3407
|
-
position: fixed;
|
|
3408
|
-
left: 0;
|
|
3409
|
-
top: 0;
|
|
3410
|
-
width: 100%;
|
|
3411
|
-
height: 100%;
|
|
3412
|
-
display: -ms-flexbox;
|
|
3413
|
-
display: flex;
|
|
3414
|
-
-ms-flex-align: center;
|
|
3415
|
-
align-items: center;
|
|
3416
|
-
-ms-flex-pack: center;
|
|
3417
|
-
justify-content: center;
|
|
3418
|
-
z-index: 999;
|
|
3419
|
-
background-color: rgba(0,0,0,.7)
|
|
3420
|
-
}
|
|
3421
|
-
|
|
3422
|
-
.tip-cover .tip {
|
|
3423
|
-
width: 80%;
|
|
3424
|
-
max-width: 250px;
|
|
3425
|
-
padding: 5px;
|
|
3426
|
-
border-radius: 3px;
|
|
3427
|
-
background-color: #fff
|
|
3428
|
-
}
|
|
3429
|
-
|
|
3430
|
-
.tip-cover .tip-btn {
|
|
3431
|
-
display: block;
|
|
3432
|
-
margin: 13px auto;
|
|
3433
|
-
width: 64px;
|
|
3434
|
-
height: 20px;
|
|
3435
|
-
color: #fff;
|
|
3436
|
-
border-radius: 4px;
|
|
3437
|
-
text-align: center;
|
|
3438
|
-
font-size: 14px;
|
|
3439
|
-
line-height: 20px;
|
|
3440
|
-
background: #ed5566;
|
|
3441
|
-
} .form-submit {
|
|
3442
|
-
cursor: pointer;
|
|
3443
|
-
transition: all 0.2s;
|
|
3444
|
-
outline: none;
|
|
3445
|
-
border: none;
|
|
3446
|
-
}
|
|
3447
|
-
|
|
3448
|
-
.form-submit:hover {
|
|
3449
|
-
opacity: 0.9;
|
|
3450
|
-
transform: translateY(-1px);
|
|
3451
|
-
}
|
|
3452
|
-
|
|
3453
|
-
.form-submit:active {
|
|
3454
|
-
opacity: 0.8;
|
|
3455
|
-
transform: translateY(0);
|
|
3456
|
-
}
|
|
3457
|
-
|
|
3458
|
-
.form-submit:disabled {
|
|
3459
|
-
opacity: 0.6;
|
|
3460
|
-
cursor: not-allowed;
|
|
3461
|
-
transform: none !important;
|
|
3462
|
-
}
|
|
3463
|
-
|
|
3464
|
-
.f-submit {
|
|
3465
|
-
position: relative;
|
|
3466
|
-
display: block
|
|
3467
|
-
}
|
|
3468
|
-
|
|
3469
|
-
.f-submit .ani-wrap {
|
|
3470
|
-
width: 100%;
|
|
3471
|
-
height: 100%;
|
|
3472
|
-
padding: 10px;
|
|
3473
|
-
overflow: hidden;
|
|
3474
|
-
position: relative
|
|
3475
|
-
}
|
|
3476
|
-
|
|
3477
|
-
.f-submit .f-ovh {
|
|
3478
|
-
position: absolute;
|
|
3479
|
-
left: 50%;
|
|
3480
|
-
top: 50%;
|
|
3481
|
-
transform: translate(-50%,-50%)
|
|
3482
|
-
}
|
|
3483
|
-
|
|
3484
|
-
.form-submit:disabled {
|
|
3485
|
-
opacity: 0.7;
|
|
3486
|
-
cursor: not-allowed;
|
|
3487
|
-
}/* .ele-form {
|
|
3595
|
+
}/* .ele-form {
|
|
3488
3596
|
position: absolute;
|
|
3489
3597
|
user-select: none;
|
|
3490
3598
|
} */
|
|
@@ -3553,122 +3661,28 @@ cursor: not-allowed;
|
|
|
3553
3661
|
.dropdown-item:hover {
|
|
3554
3662
|
background-color: #f5f5f5;
|
|
3555
3663
|
}
|
|
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;
|
|
3588
|
-
}
|
|
3589
|
-
*/
|
|
3590
|
-
.f-single {
|
|
3591
|
-
cursor: pointer;
|
|
3592
|
-
}
|
|
3593
|
-
|
|
3594
|
-
.ani-wrap {
|
|
3595
|
-
position: relative;
|
|
3596
|
-
}
|
|
3597
|
-
|
|
3598
|
-
.f-single .ani-wrap .fs-tit {
|
|
3599
|
-
display: flex;
|
|
3600
|
-
padding: 0 5px;
|
|
3601
|
-
height: 40px;
|
|
3602
|
-
align-items: center;
|
|
3603
|
-
white-space: nowrap;
|
|
3604
|
-
overflow: hidden;
|
|
3605
|
-
text-overflow: ellipsis;
|
|
3606
|
-
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3607
|
-
}
|
|
3608
|
-
|
|
3609
|
-
.require {
|
|
3610
|
-
padding: 0 5px 0 0;
|
|
3611
|
-
color: red;
|
|
3612
|
-
vertical-align: middle;
|
|
3613
|
-
}
|
|
3614
|
-
|
|
3615
|
-
.f-single ul {
|
|
3616
|
-
padding: 15px;
|
|
3617
|
-
margin: 0;
|
|
3618
|
-
list-style: none;
|
|
3619
|
-
}
|
|
3620
|
-
|
|
3621
|
-
.f-single ul li {
|
|
3622
|
-
display: flex;
|
|
3623
|
-
align-items: center;
|
|
3624
|
-
margin-top: 12px;
|
|
3625
|
-
font-size: 0;
|
|
3626
|
-
}
|
|
3627
|
-
|
|
3628
|
-
.f-single ul li:first-child {
|
|
3629
|
-
margin-top: 0;
|
|
3630
|
-
}
|
|
3631
|
-
|
|
3632
|
-
.fs-circle {
|
|
3633
|
-
display: inline-block;
|
|
3634
|
-
width: 16px;
|
|
3635
|
-
height: 16px;
|
|
3636
|
-
border-radius: 50%;
|
|
3637
|
-
position: relative;
|
|
3638
|
-
transition: all 0.2s;
|
|
3639
|
-
}
|
|
3640
|
-
|
|
3641
|
-
.fs-circle.selected {
|
|
3642
|
-
background-color: #2687f1;
|
|
3643
|
-
border-color: #2687f1 !important;
|
|
3644
|
-
}
|
|
3645
|
-
|
|
3646
|
-
.fs-circle.selected::after {
|
|
3647
|
-
content: "";
|
|
3648
|
-
position: absolute;
|
|
3649
|
-
top: 3px;
|
|
3650
|
-
left: 3px;
|
|
3651
|
-
width: 8px;
|
|
3652
|
-
height: 8px;
|
|
3653
|
-
border-radius: 50%;
|
|
3654
|
-
background-color: white;
|
|
3664
|
+
|
|
3665
|
+
.dropdown-item.selected {
|
|
3666
|
+
background-color: #e6f7ff;
|
|
3667
|
+
color: #1890ff;
|
|
3655
3668
|
}
|
|
3656
3669
|
|
|
3657
|
-
.fs-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
font-size: 14px;
|
|
3664
|
-
line-height: 1.2;
|
|
3670
|
+
.f-select .fs-tit .icon-bofang1 {
|
|
3671
|
+
position: absolute;
|
|
3672
|
+
right: 10px;
|
|
3673
|
+
font-size: 12px;
|
|
3674
|
+
display: inline-block;
|
|
3675
|
+
transform: rotate(90deg);
|
|
3665
3676
|
}
|
|
3666
3677
|
|
|
3667
|
-
.
|
|
3668
|
-
|
|
3678
|
+
.icon-bofang1:before {
|
|
3679
|
+
content: "\E6CF";
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3682
|
+
.has-error {
|
|
3683
|
+
border-color: #ff4d4f !important;
|
|
3669
3684
|
}
|
|
3670
3685
|
|
|
3671
|
-
/* 错误提示样式 */
|
|
3672
3686
|
.error-tip {
|
|
3673
3687
|
position: fixed;
|
|
3674
3688
|
left: 0;
|
|
@@ -3677,6 +3691,115 @@ cursor: not-allowed;
|
|
|
3677
3691
|
height: 100%;
|
|
3678
3692
|
z-index: 1000;
|
|
3679
3693
|
}
|
|
3694
|
+
.global.map {
|
|
3695
|
+
width: 35px;
|
|
3696
|
+
height: 55px;
|
|
3697
|
+
border-radius: 50%;
|
|
3698
|
+
text-align: center;
|
|
3699
|
+
margin-bottom: 5px;
|
|
3700
|
+
border: 2px solid #fff;
|
|
3701
|
+
cursor: pointer;
|
|
3702
|
+
}
|
|
3703
|
+
.icon-daohang1:before { content: "\E612"; }
|
|
3704
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
3705
|
+
.global.map > span { font-size: 10px; line-height: 20px; display: block;}/* .ele-form {
|
|
3706
|
+
position: absolute;
|
|
3707
|
+
user-select: none;
|
|
3708
|
+
} */
|
|
3709
|
+
|
|
3710
|
+
.f-multiple {
|
|
3711
|
+
cursor: pointer;
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3714
|
+
.ani-wrap {
|
|
3715
|
+
position: relative;
|
|
3716
|
+
}
|
|
3717
|
+
|
|
3718
|
+
.f-multiple .ani-wrap .fs-tit {
|
|
3719
|
+
display: flex;
|
|
3720
|
+
padding: 0 5px;
|
|
3721
|
+
height: 40px;
|
|
3722
|
+
align-items: center;
|
|
3723
|
+
white-space: nowrap;
|
|
3724
|
+
overflow: hidden;
|
|
3725
|
+
text-overflow: ellipsis;
|
|
3726
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
.require {
|
|
3730
|
+
padding: 0 5px 0 0;
|
|
3731
|
+
color: red;
|
|
3732
|
+
vertical-align: middle;
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
.f-multiple ul {
|
|
3736
|
+
padding: 15px;
|
|
3737
|
+
margin: 0;
|
|
3738
|
+
list-style: none;
|
|
3739
|
+
}
|
|
3740
|
+
|
|
3741
|
+
.f-multiple ul li {
|
|
3742
|
+
margin-top: 12px;
|
|
3743
|
+
font-size: 0;
|
|
3744
|
+
display: flex;
|
|
3745
|
+
align-items: center;
|
|
3746
|
+
cursor: pointer;
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
.f-multiple ul li:first-child {
|
|
3750
|
+
margin-top: 0;
|
|
3751
|
+
}
|
|
3752
|
+
|
|
3753
|
+
.fs-circle {
|
|
3754
|
+
display: inline-block;
|
|
3755
|
+
width: 16px;
|
|
3756
|
+
height: 16px;
|
|
3757
|
+
border-radius: 50%;
|
|
3758
|
+
position: relative;
|
|
3759
|
+
transition: all 0.2s;
|
|
3760
|
+
}
|
|
3761
|
+
|
|
3762
|
+
.fs-circle.selected {
|
|
3763
|
+
background-color: #2687f1;
|
|
3764
|
+
border-color: #2687f1 !important;
|
|
3765
|
+
}
|
|
3766
|
+
|
|
3767
|
+
.fs-circle.selected::after {
|
|
3768
|
+
content: "";
|
|
3769
|
+
position: absolute;
|
|
3770
|
+
top: 3px;
|
|
3771
|
+
left: 3px;
|
|
3772
|
+
width: 8px;
|
|
3773
|
+
height: 8px;
|
|
3774
|
+
border-radius: 50%;
|
|
3775
|
+
background-color: white;
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3778
|
+
.fs-txt {
|
|
3779
|
+
display: inline-block;
|
|
3780
|
+
width: calc(100% - 16px);
|
|
3781
|
+
padding-left: 8px;
|
|
3782
|
+
vertical-align: top;
|
|
3783
|
+
word-break: break-all;
|
|
3784
|
+
font-size: 14px;
|
|
3785
|
+
line-height: 1.2;
|
|
3786
|
+
}
|
|
3787
|
+
|
|
3788
|
+
.has-error .fs-tit {
|
|
3789
|
+
border-bottom-color: #ff4d4f;
|
|
3790
|
+
}
|
|
3791
|
+
.global.tel {
|
|
3792
|
+
width: 35px;
|
|
3793
|
+
height: 55px;
|
|
3794
|
+
border-radius: 50%;
|
|
3795
|
+
text-align: center;
|
|
3796
|
+
margin-bottom: 15px;
|
|
3797
|
+
border: 2px solid #fff;
|
|
3798
|
+
cursor: pointer;
|
|
3799
|
+
}
|
|
3800
|
+
.icon-dianhua:before { content: "\E60E"; }
|
|
3801
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
3802
|
+
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
3680
3803
|
.icon-guanbi:before {
|
|
3681
3804
|
content: "\E676";
|
|
3682
3805
|
}
|
|
@@ -4070,130 +4193,7 @@ cursor: not-allowed;
|
|
|
4070
4193
|
content: "\E65E";
|
|
4071
4194
|
color: #F44336; /* 失败的红色 */
|
|
4072
4195
|
}
|
|
4073
|
-
/* .ele-form {
|
|
4074
|
-
position: absolute;
|
|
4075
|
-
user-select: none;
|
|
4076
|
-
} */
|
|
4077
|
-
|
|
4078
|
-
.f-multiple {
|
|
4079
|
-
cursor: pointer;
|
|
4080
|
-
}
|
|
4081
|
-
|
|
4082
|
-
.ani-wrap {
|
|
4083
|
-
position: relative;
|
|
4084
|
-
}
|
|
4085
|
-
|
|
4086
|
-
.f-multiple .ani-wrap .fs-tit {
|
|
4087
|
-
display: flex;
|
|
4088
|
-
padding: 0 5px;
|
|
4089
|
-
height: 40px;
|
|
4090
|
-
align-items: center;
|
|
4091
|
-
white-space: nowrap;
|
|
4092
|
-
overflow: hidden;
|
|
4093
|
-
text-overflow: ellipsis;
|
|
4094
|
-
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
4095
|
-
}
|
|
4096
|
-
|
|
4097
|
-
.require {
|
|
4098
|
-
padding: 0 5px 0 0;
|
|
4099
|
-
color: red;
|
|
4100
|
-
vertical-align: middle;
|
|
4101
|
-
}
|
|
4102
|
-
|
|
4103
|
-
.f-multiple ul {
|
|
4104
|
-
padding: 15px;
|
|
4105
|
-
margin: 0;
|
|
4106
|
-
list-style: none;
|
|
4107
|
-
}
|
|
4108
|
-
|
|
4109
|
-
.f-multiple ul li {
|
|
4110
|
-
margin-top: 12px;
|
|
4111
|
-
font-size: 0;
|
|
4112
|
-
display: flex;
|
|
4113
|
-
align-items: center;
|
|
4114
|
-
cursor: pointer;
|
|
4115
|
-
}
|
|
4116
|
-
|
|
4117
|
-
.f-multiple ul li:first-child {
|
|
4118
|
-
margin-top: 0;
|
|
4119
|
-
}
|
|
4120
|
-
|
|
4121
|
-
.fs-circle {
|
|
4122
|
-
display: inline-block;
|
|
4123
|
-
width: 16px;
|
|
4124
|
-
height: 16px;
|
|
4125
|
-
border-radius: 50%;
|
|
4126
|
-
position: relative;
|
|
4127
|
-
transition: all 0.2s;
|
|
4128
|
-
}
|
|
4129
|
-
|
|
4130
|
-
.fs-circle.selected {
|
|
4131
|
-
background-color: #2687f1;
|
|
4132
|
-
border-color: #2687f1 !important;
|
|
4133
|
-
}
|
|
4134
|
-
|
|
4135
|
-
.fs-circle.selected::after {
|
|
4136
|
-
content: "";
|
|
4137
|
-
position: absolute;
|
|
4138
|
-
top: 3px;
|
|
4139
|
-
left: 3px;
|
|
4140
|
-
width: 8px;
|
|
4141
|
-
height: 8px;
|
|
4142
|
-
border-radius: 50%;
|
|
4143
|
-
background-color: white;
|
|
4144
|
-
}
|
|
4145
|
-
|
|
4146
|
-
.fs-txt {
|
|
4147
|
-
display: inline-block;
|
|
4148
|
-
width: calc(100% - 16px);
|
|
4149
|
-
padding-left: 8px;
|
|
4150
|
-
vertical-align: top;
|
|
4151
|
-
word-break: break-all;
|
|
4152
|
-
font-size: 14px;
|
|
4153
|
-
line-height: 1.2;
|
|
4154
|
-
}
|
|
4155
|
-
|
|
4156
|
-
.has-error .fs-tit {
|
|
4157
|
-
border-bottom-color: #ff4d4f;
|
|
4158
|
-
}
|
|
4159
|
-
.global.video {
|
|
4160
|
-
width: 35px;
|
|
4161
|
-
height: 55px;
|
|
4162
|
-
border-radius: 50%;
|
|
4163
|
-
text-align: center;
|
|
4164
|
-
margin-bottom: 5px;
|
|
4165
|
-
border: 2px solid #fff;
|
|
4166
|
-
cursor: pointer;
|
|
4167
|
-
}
|
|
4168
|
-
.icon-shipin2:before { content: "\E611"; }
|
|
4169
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4170
|
-
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
4171
|
-
}
|
|
4172
4196
|
|
|
4173
|
-
.global.tel {
|
|
4174
|
-
width: 35px;
|
|
4175
|
-
height: 55px;
|
|
4176
|
-
border-radius: 50%;
|
|
4177
|
-
text-align: center;
|
|
4178
|
-
margin-bottom: 15px;
|
|
4179
|
-
border: 2px solid #fff;
|
|
4180
|
-
cursor: pointer;
|
|
4181
|
-
}
|
|
4182
|
-
.icon-dianhua:before { content: "\E60E"; }
|
|
4183
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4184
|
-
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4185
|
-
.global.map {
|
|
4186
|
-
width: 35px;
|
|
4187
|
-
height: 55px;
|
|
4188
|
-
border-radius: 50%;
|
|
4189
|
-
text-align: center;
|
|
4190
|
-
margin-bottom: 5px;
|
|
4191
|
-
border: 2px solid #fff;
|
|
4192
|
-
cursor: pointer;
|
|
4193
|
-
}
|
|
4194
|
-
.icon-daohang1:before { content: "\E612"; }
|
|
4195
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
4196
|
-
.global.map > span { font-size: 10px; line-height: 20px; display: block;}
|
|
4197
4197
|
.global.receipt {
|
|
4198
4198
|
width: 35px;
|
|
4199
4199
|
height: 55px;
|