unika-components 1.2.5 → 1.2.7
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/assets/css/invite.css +712 -0
- package/dist/src/components/UniCountdown/UniCountdown.vue.d.ts +12 -1
- package/dist/src/components/UniFormInput/UniFormInput.vue.d.ts +13 -1
- package/dist/src/components/UniImage/UniImage.vue.d.ts +0 -3
- package/dist/src/index.d.ts +12 -0
- package/dist/src/utils/resolveInviteRender.d.ts +1 -0
- package/dist/unika-components.css +851 -829
- package/dist/unika-components.esm.js +752 -39
- package/dist/unika-components.umd.js +763 -38
- package/package.json +1 -1
|
@@ -7,6 +7,16 @@
|
|
|
7
7
|
width: 30px; /* 根据需要调整 */
|
|
8
8
|
margin-right: 5px;
|
|
9
9
|
}
|
|
10
|
+
|
|
11
|
+
.global-v ::v-deep .global-v-show iframe {
|
|
12
|
+
position: absolute;
|
|
13
|
+
left: 0;
|
|
14
|
+
top: 50%;
|
|
15
|
+
transform: translateY(-60%);
|
|
16
|
+
min-height: 45%;
|
|
17
|
+
max-height: 100%;
|
|
18
|
+
width: 100%;
|
|
19
|
+
}
|
|
10
20
|
|
|
11
21
|
.unika-watermark {
|
|
12
22
|
position: fixed;
|
|
@@ -25,111 +35,76 @@
|
|
|
25
35
|
background-size: 220px 140px;
|
|
26
36
|
opacity: 0.5;
|
|
27
37
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
+
#audio {
|
|
39
|
+
position: absolute;
|
|
40
|
+
right: 10px;
|
|
41
|
+
top: 10px;
|
|
42
|
+
z-index: 103;
|
|
43
|
+
width: 30px;
|
|
44
|
+
height: 30px;
|
|
45
|
+
display: flex;
|
|
46
|
+
align-items: center;
|
|
47
|
+
}
|
|
38
48
|
|
|
39
|
-
.
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
display: block;
|
|
47
|
-
width: 100%;
|
|
48
|
-
height: 100%;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.video-container {
|
|
52
|
-
width: 100%;
|
|
53
|
-
height: 100%;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.video-container iframe {
|
|
57
|
-
width: 100%;
|
|
58
|
-
height: 100%;
|
|
59
|
-
border: none;
|
|
49
|
+
#audio .mrotate {
|
|
50
|
+
animation: mrotate 5s linear infinite;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@keyframes mrotate {
|
|
54
|
+
to {
|
|
55
|
+
transform: rotate(1turn);
|
|
60
56
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
#audio .audio {
|
|
60
|
+
width: 100%;
|
|
61
|
+
height: 100%;
|
|
62
|
+
display: flex;
|
|
63
|
+
align-items: center;
|
|
64
|
+
justify-content: center;
|
|
65
|
+
color: #fff;
|
|
66
|
+
background: #666;
|
|
67
|
+
border-radius: 50%;
|
|
68
|
+
overflow: hidden;
|
|
69
|
+
cursor: pointer;
|
|
70
|
+
transition: all 0.3s ease;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
#audio .audio.a-border {
|
|
74
|
+
border: 1px solid #fff;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
#audio .audio .music-icon {
|
|
78
|
+
display: block;
|
|
79
|
+
width: 60%;
|
|
80
|
+
height: 60%;
|
|
81
|
+
object-fit: contain;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
#audio .audio .iconfont {
|
|
85
|
+
font-size: 2opx;
|
|
86
|
+
line-height: 1;
|
|
87
|
+
}
|
|
88
|
+
#audio .icon-cancel {
|
|
89
|
+
position: absolute;
|
|
64
90
|
width: 100%;
|
|
65
91
|
height: 100%;
|
|
66
|
-
|
|
67
|
-
background-position: center;
|
|
68
|
-
cursor: pointer;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.video-cover .play-btn {
|
|
72
|
-
position: absolute;
|
|
73
|
-
left: 50%;
|
|
74
|
-
top: 50%;
|
|
75
|
-
transform: translate(-50%, -50%);
|
|
76
|
-
width: 50px;
|
|
77
|
-
height: 50px;
|
|
78
|
-
opacity: 0.8;
|
|
79
|
-
transition: opacity 0.2s;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.video-cover:hover .play-btn {
|
|
83
|
-
opacity: 1;
|
|
84
|
-
}.ele-img {
|
|
85
|
-
position: absolute;
|
|
92
|
+
border-radius: 50%;
|
|
86
93
|
overflow: hidden;
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
.
|
|
94
|
+
padding: 15px 0;
|
|
95
|
+
}
|
|
96
|
+
#audio .icon-cancel .icon-h {
|
|
97
|
+
transform: rotate(45deg);
|
|
90
98
|
width: 100%;
|
|
91
|
-
height:
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
.ele-img .ele-image {
|
|
95
|
-
position: relative;
|
|
96
|
-
display: block;
|
|
99
|
+
height: 2px;
|
|
100
|
+
background: #fff;
|
|
97
101
|
}
|
|
98
|
-
|
|
99
|
-
|
|
102
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
103
|
+
content: '';
|
|
100
104
|
position: absolute;
|
|
101
|
-
left: 0;
|
|
102
|
-
right: 0;
|
|
103
|
-
top: 0;
|
|
104
|
-
bottom: 0;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.ele-img .ele-img-bg,
|
|
108
|
-
.ele-img .rotate-wrap .img-wrap {
|
|
109
|
-
width: 100%;
|
|
110
|
-
height: 100%;
|
|
111
|
-
overflow: hidden;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.ele-img .ele-bg-wrap {
|
|
115
105
|
width: 100%;
|
|
116
|
-
height:
|
|
117
|
-
background
|
|
118
|
-
background-position: 50% 50%;
|
|
119
|
-
background-repeat: no-repeat;
|
|
120
|
-
background-clip: border-box;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
/* 动画关键帧 */
|
|
124
|
-
@keyframes zoomIn {
|
|
125
|
-
from {
|
|
126
|
-
opacity: 0;
|
|
127
|
-
transform: scale(0.5);
|
|
128
|
-
}
|
|
129
|
-
to {
|
|
130
|
-
opacity: 1;
|
|
131
|
-
transform: scale(1);
|
|
132
|
-
}
|
|
106
|
+
height: 2px;
|
|
107
|
+
background: #fff;
|
|
133
108
|
}
|
|
134
109
|
.ele-text {
|
|
135
110
|
position: relative;
|
|
@@ -197,169 +172,145 @@
|
|
|
197
172
|
transform: scale(1);
|
|
198
173
|
opacity: 1;
|
|
199
174
|
}
|
|
200
|
-
}.
|
|
201
|
-
|
|
175
|
+
}.ele-img {
|
|
176
|
+
position: absolute;
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.ele-img .ani-wrap {
|
|
181
|
+
width: 100%;
|
|
182
|
+
height: 100%;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.ele-img .ele-image {
|
|
186
|
+
position: relative;
|
|
187
|
+
display: block;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.ele-img .rotate-wrap {
|
|
191
|
+
position: absolute;
|
|
192
|
+
left: 0;
|
|
193
|
+
right: 0;
|
|
194
|
+
top: 0;
|
|
195
|
+
bottom: 0;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.ele-img .ele-img-bg,
|
|
199
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
200
|
+
width: 100%;
|
|
201
|
+
height: 100%;
|
|
202
|
+
overflow: hidden;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.ele-img .ele-bg-wrap {
|
|
206
|
+
width: 100%;
|
|
207
|
+
height: 100%;
|
|
208
|
+
background-size: cover;
|
|
209
|
+
background-position: 50% 50%;
|
|
210
|
+
background-repeat: no-repeat;
|
|
211
|
+
background-clip: border-box;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/* 动画关键帧 */
|
|
215
|
+
@keyframes zoomIn {
|
|
216
|
+
from {
|
|
217
|
+
opacity: 0;
|
|
218
|
+
transform: scale(0.5);
|
|
219
|
+
}
|
|
220
|
+
to {
|
|
221
|
+
opacity: 1;
|
|
222
|
+
transform: scale(1);
|
|
223
|
+
}
|
|
224
|
+
}.ele-shape {
|
|
225
|
+
position: absolute;
|
|
226
|
+
overflow: hidden;
|
|
202
227
|
}
|
|
203
228
|
|
|
204
|
-
.
|
|
229
|
+
.ani-wrap {
|
|
205
230
|
width: 100%;
|
|
206
|
-
height: 100
|
|
231
|
+
height: 100%;
|
|
232
|
+
box-sizing: border-box;
|
|
207
233
|
}
|
|
208
234
|
|
|
209
|
-
.
|
|
210
|
-
|
|
211
|
-
display: -ms-flexbox;
|
|
212
|
-
display: flex;
|
|
235
|
+
.e-shape {
|
|
236
|
+
width: 100%;
|
|
213
237
|
height: 100%;
|
|
214
|
-
-webkit-box-align: center;
|
|
215
|
-
-ms-flex-align: center;
|
|
216
|
-
align-items: center;
|
|
217
|
-
-webkit-box-pack: center;
|
|
218
|
-
-ms-flex-pack: center;
|
|
219
|
-
justify-content: center
|
|
220
238
|
}
|
|
221
239
|
|
|
222
|
-
.
|
|
223
|
-
width: 100
|
|
240
|
+
.svg-container :deep(svg) {
|
|
241
|
+
width: 100%;
|
|
242
|
+
height: 100%;
|
|
243
|
+
display: block;
|
|
224
244
|
}
|
|
225
245
|
|
|
226
|
-
.
|
|
227
|
-
|
|
228
|
-
display: -ms-flexbox;
|
|
229
|
-
display: flex;
|
|
246
|
+
.svg-container {
|
|
247
|
+
width: 100%;
|
|
230
248
|
height: 100%;
|
|
231
|
-
|
|
232
|
-
-ms-flex-align: center;
|
|
233
|
-
align-items: center;
|
|
234
|
-
-webkit-box-pack: center;
|
|
235
|
-
-ms-flex-pack: center;
|
|
236
|
-
justify-content: center
|
|
249
|
+
display: block;
|
|
237
250
|
}
|
|
238
251
|
|
|
239
|
-
.count-down .count-flip .numscroll {
|
|
240
|
-
-webkit-animation: numscroll .4s ease-in-out;
|
|
241
|
-
animation: numscroll .4s ease-in-out;
|
|
242
|
-
-webkit-animation-fill-mode: both;
|
|
243
|
-
animation-fill-mode: both
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.count-down .count-flip .numscroll .curr-num {
|
|
247
|
-
-webkit-transition: all .3s ease-in-out;
|
|
248
|
-
transition: all .3s ease-in-out;
|
|
249
|
-
opacity: .6;
|
|
250
|
-
-webkit-transform: scale(.5)!important;
|
|
251
|
-
transform: scale(.5)!important
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
@-webkit-keyframes numscroll {
|
|
255
|
-
0% {
|
|
256
|
-
-webkit-transform: translateZ(0);
|
|
257
|
-
transform: translateZ(0)
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
to {
|
|
261
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
262
|
-
transform: translate3d(0,100%,0)
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
@keyframes numscroll {
|
|
267
|
-
0% {
|
|
268
|
-
-webkit-transform: translateZ(0);
|
|
269
|
-
transform: translateZ(0)
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
to {
|
|
273
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
274
|
-
transform: translate3d(0,100%,0)
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.count-down .count-flip .c-com {
|
|
279
|
-
min-width: 50px;
|
|
280
|
-
height: auto;
|
|
281
|
-
margin: 6px;
|
|
282
|
-
padding: 5px 0 6px;
|
|
283
|
-
background-color: #111
|
|
284
|
-
}
|
|
285
252
|
|
|
286
|
-
.
|
|
287
|
-
|
|
288
|
-
display: -ms-flexbox;
|
|
253
|
+
.svg-loading,
|
|
254
|
+
.svg-error {
|
|
289
255
|
display: flex;
|
|
290
|
-
|
|
256
|
+
align-items: center;
|
|
257
|
+
justify-content: center;
|
|
291
258
|
width: 100%;
|
|
292
259
|
height: 100%;
|
|
293
|
-
|
|
294
|
-
-ms-flex-align: center;
|
|
295
|
-
align-items: center
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
299
|
-
line-height: 27px
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
303
|
-
position: absolute;
|
|
304
|
-
top: -100%
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
308
|
-
-webkit-transform: scale(1);
|
|
309
|
-
transform: scale(1)
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.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 {
|
|
313
|
-
display: none!important
|
|
260
|
+
background: rgba(0,0,0,0.05);
|
|
314
261
|
}
|
|
315
262
|
|
|
316
|
-
.
|
|
263
|
+
.ele-shape .svg-container svg {
|
|
317
264
|
width: 100%;
|
|
318
265
|
height: 100%;
|
|
319
|
-
overflow:
|
|
320
|
-
font-size: 0
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
.c-wrap.c-day-wrap {
|
|
324
|
-
text-align: center
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
.c-wrap.c-day-wrap .c-num {
|
|
328
|
-
width: auto
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
.c-wrap .c-num {
|
|
332
|
-
display: inline-block;
|
|
333
|
-
width: 50%;
|
|
334
|
-
overflow: hidden;
|
|
335
|
-
font-size: 20px;
|
|
336
|
-
color: #999
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
.c-wrap .c-left .flex-wrap {
|
|
340
|
-
display: -webkit-box;
|
|
341
|
-
display: -ms-flexbox;
|
|
342
|
-
display: flex;
|
|
343
|
-
-webkit-box-pack: end;
|
|
344
|
-
-ms-flex-pack: end;
|
|
345
|
-
justify-content: flex-end
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.c-wrap .c-text {
|
|
349
|
-
display: -webkit-box;
|
|
350
|
-
display: -ms-flexbox;
|
|
351
|
-
display: flex;
|
|
352
|
-
width: 100%;
|
|
353
|
-
font-size: 12px;
|
|
354
|
-
-webkit-box-pack: center;
|
|
355
|
-
-ms-flex-pack: center;
|
|
356
|
-
justify-content: center;
|
|
357
|
-
-webkit-box-align: center;
|
|
358
|
-
-ms-flex-align: center;
|
|
359
|
-
align-items: center;
|
|
360
|
-
white-space: nowrap
|
|
266
|
+
overflow: visible;
|
|
361
267
|
}
|
|
362
|
-
.element-
|
|
268
|
+
.element-video {
|
|
269
|
+
position: absolute;
|
|
270
|
+
overflow: hidden;
|
|
271
|
+
background-color: transparent;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.element-video .ani-wrap, .element-video img {
|
|
275
|
+
display: block;
|
|
276
|
+
width: 100%;
|
|
277
|
+
height: 100%;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.video-container {
|
|
281
|
+
width: 100%;
|
|
282
|
+
height: 100%;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.video-container iframe {
|
|
286
|
+
width: 100%;
|
|
287
|
+
height: 100%;
|
|
288
|
+
border: none;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.video-cover {
|
|
292
|
+
position: relative;
|
|
293
|
+
width: 100%;
|
|
294
|
+
height: 100%;
|
|
295
|
+
background-size: cover;
|
|
296
|
+
background-position: center;
|
|
297
|
+
cursor: pointer;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.video-cover .play-btn {
|
|
301
|
+
position: absolute;
|
|
302
|
+
left: 50%;
|
|
303
|
+
top: 50%;
|
|
304
|
+
transform: translate(-50%, -50%);
|
|
305
|
+
width: 50px;
|
|
306
|
+
height: 50px;
|
|
307
|
+
opacity: 0.8;
|
|
308
|
+
transition: opacity 0.2s;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.video-cover:hover .play-btn {
|
|
312
|
+
opacity: 1;
|
|
313
|
+
}.element-ditu .ani-wrap {
|
|
363
314
|
width: 100%;
|
|
364
315
|
height: 100%;
|
|
365
316
|
overflow: hidden
|
|
@@ -403,170 +354,66 @@
|
|
|
403
354
|
.map-iframe {
|
|
404
355
|
width: 100%;
|
|
405
356
|
height: 100%;
|
|
406
|
-
}.button {
|
|
407
|
-
position: absolute;
|
|
408
|
-
cursor: pointer;
|
|
409
|
-
user-select: none;
|
|
410
357
|
}
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
width: 100%;
|
|
417
|
-
height: 100%;
|
|
418
|
-
overflow: hidden;
|
|
419
|
-
transition: opacity 0.2s;
|
|
358
|
+
@keyframes jumpheart {
|
|
359
|
+
to {
|
|
360
|
+
-webkit-transform: scale(1.2);
|
|
361
|
+
transform: scale(1.2)
|
|
362
|
+
}
|
|
420
363
|
}
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
364
|
+
.ele-calendar {
|
|
365
|
+
position: relative;
|
|
366
|
+
width: 325px !important;
|
|
367
|
+
min-height: 325px !important;
|
|
368
|
+
height: auto !important;
|
|
424
369
|
}
|
|
425
370
|
|
|
426
|
-
.
|
|
427
|
-
|
|
428
|
-
align-items: center;
|
|
429
|
-
justify-content: center;
|
|
371
|
+
.ele-calendar .drag-point {
|
|
372
|
+
cursor: default !important;
|
|
430
373
|
}
|
|
431
374
|
|
|
432
|
-
.
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
375
|
+
.ele-calendar .ani-wrap {
|
|
376
|
+
position: relative;
|
|
377
|
+
width: 100%;
|
|
378
|
+
min-height: 325px !important;
|
|
379
|
+
height: auto !important;
|
|
380
|
+
padding: 22px 0;
|
|
438
381
|
}
|
|
439
382
|
|
|
440
|
-
.
|
|
383
|
+
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
441
384
|
display: flex;
|
|
442
|
-
justify-content:
|
|
443
|
-
align-items:
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
overflow: hidden;
|
|
447
|
-
transition: opacity 0.2s;
|
|
385
|
+
justify-content: space-between;
|
|
386
|
+
align-items: flex-end;
|
|
387
|
+
line-height: 1;
|
|
388
|
+
padding: 0 47px 20px;
|
|
448
389
|
}
|
|
449
390
|
|
|
450
|
-
.
|
|
451
|
-
|
|
391
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
392
|
+
font-size: 25px;
|
|
393
|
+
padding-bottom: 4px;
|
|
452
394
|
}
|
|
453
395
|
|
|
454
|
-
.
|
|
455
|
-
|
|
456
|
-
align-items: center;
|
|
457
|
-
justify-content: center;
|
|
396
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
397
|
+
font-size: 25px;
|
|
458
398
|
}
|
|
459
399
|
|
|
460
|
-
.
|
|
461
|
-
|
|
400
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
401
|
+
position: relative;
|
|
402
|
+
top: 2px;
|
|
403
|
+
font-size: 57px;
|
|
462
404
|
}
|
|
463
405
|
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
content: "\E642";
|
|
467
|
-
}.ele-shape {
|
|
468
|
-
position: absolute;
|
|
469
|
-
overflow: hidden;
|
|
406
|
+
.ele-calendar .ani-wrap .can-wrap .can-main {
|
|
407
|
+
padding: 0 23px;
|
|
470
408
|
}
|
|
471
409
|
|
|
472
|
-
.ani-wrap {
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
width: 100%;
|
|
480
|
-
height: 100%;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
.svg-container :deep(svg) {
|
|
484
|
-
width: 100%;
|
|
485
|
-
height: 100%;
|
|
486
|
-
display: block;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.svg-container {
|
|
490
|
-
width: 100%;
|
|
491
|
-
height: 100%;
|
|
492
|
-
display: block;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
.svg-loading,
|
|
497
|
-
.svg-error {
|
|
498
|
-
display: flex;
|
|
499
|
-
align-items: center;
|
|
500
|
-
justify-content: center;
|
|
501
|
-
width: 100%;
|
|
502
|
-
height: 100%;
|
|
503
|
-
background: rgba(0,0,0,0.05);
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
.ele-shape .svg-container svg {
|
|
507
|
-
width: 100%;
|
|
508
|
-
height: 100%;
|
|
509
|
-
overflow: visible;
|
|
510
|
-
}
|
|
511
|
-
@keyframes jumpheart {
|
|
512
|
-
to {
|
|
513
|
-
-webkit-transform: scale(1.2);
|
|
514
|
-
transform: scale(1.2)
|
|
515
|
-
}
|
|
516
|
-
}
|
|
517
|
-
.ele-calendar {
|
|
518
|
-
position: relative;
|
|
519
|
-
width: 325px !important;
|
|
520
|
-
min-height: 325px !important;
|
|
521
|
-
height: auto !important;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.ele-calendar .drag-point {
|
|
525
|
-
cursor: default !important;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.ele-calendar .ani-wrap {
|
|
529
|
-
position: relative;
|
|
530
|
-
width: 100%;
|
|
531
|
-
min-height: 325px !important;
|
|
532
|
-
height: auto !important;
|
|
533
|
-
padding: 22px 0;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
537
|
-
display: flex;
|
|
538
|
-
justify-content: space-between;
|
|
539
|
-
align-items: flex-end;
|
|
540
|
-
line-height: 1;
|
|
541
|
-
padding: 0 47px 20px;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
545
|
-
font-size: 25px;
|
|
546
|
-
padding-bottom: 4px;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
550
|
-
font-size: 25px;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
554
|
-
position: relative;
|
|
555
|
-
top: 2px;
|
|
556
|
-
font-size: 57px;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
.ele-calendar .ani-wrap .can-wrap .can-main {
|
|
560
|
-
padding: 0 23px;
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
.ele-calendar .ani-wrap .can-wrap .can-main .can-week {
|
|
564
|
-
display: flex;
|
|
565
|
-
justify-content: flex-start;
|
|
566
|
-
height: 25px;
|
|
567
|
-
line-height: 25px;
|
|
568
|
-
padding: 0 10px;
|
|
569
|
-
border-radius: 13px;
|
|
410
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week {
|
|
411
|
+
display: flex;
|
|
412
|
+
justify-content: flex-start;
|
|
413
|
+
height: 25px;
|
|
414
|
+
line-height: 25px;
|
|
415
|
+
padding: 0 10px;
|
|
416
|
+
border-radius: 13px;
|
|
570
417
|
}
|
|
571
418
|
|
|
572
419
|
.ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
|
|
@@ -849,180 +696,271 @@
|
|
|
849
696
|
}
|
|
850
697
|
.icon-xingzhuangjiehe:before {
|
|
851
698
|
content: "\E6A6";
|
|
852
|
-
}
|
|
699
|
+
}.call {
|
|
853
700
|
position: absolute;
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
701
|
+
cursor: pointer;
|
|
702
|
+
user-select: none;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.call .ani-wrap {
|
|
859
706
|
display: flex;
|
|
707
|
+
justify-content: center;
|
|
860
708
|
align-items: center;
|
|
709
|
+
width: 100%;
|
|
710
|
+
height: 100%;
|
|
711
|
+
overflow: hidden;
|
|
712
|
+
transition: opacity 0.2s;
|
|
861
713
|
}
|
|
862
714
|
|
|
863
|
-
|
|
864
|
-
|
|
715
|
+
.call .ani-wrap:hover {
|
|
716
|
+
opacity: 0.9;
|
|
865
717
|
}
|
|
866
718
|
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
719
|
+
.call-content {
|
|
720
|
+
display: flex;
|
|
721
|
+
align-items: center;
|
|
722
|
+
justify-content: center;
|
|
871
723
|
}
|
|
872
724
|
|
|
873
|
-
|
|
725
|
+
.btn-text {
|
|
726
|
+
margin-left: 10px;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
.hb-tel:before {
|
|
731
|
+
content: "\E642";
|
|
732
|
+
}.count-down .drag-point {
|
|
733
|
+
cursor: default!important
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.count-down .ani-wrap {
|
|
874
737
|
width: 100%;
|
|
875
738
|
height: 100%;
|
|
739
|
+
overflow: visible;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
743
|
+
display: -webkit-box;
|
|
744
|
+
display: -ms-flexbox;
|
|
876
745
|
display: flex;
|
|
746
|
+
height: 100%;
|
|
747
|
+
-webkit-box-align: center;
|
|
748
|
+
-ms-flex-align: center;
|
|
877
749
|
align-items: center;
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
border-radius: 50%;
|
|
882
|
-
overflow: hidden;
|
|
883
|
-
cursor: pointer;
|
|
884
|
-
transition: all 0.3s ease;
|
|
750
|
+
-webkit-box-pack: center;
|
|
751
|
+
-ms-flex-pack: center;
|
|
752
|
+
justify-content: center
|
|
885
753
|
}
|
|
886
754
|
|
|
887
|
-
|
|
888
|
-
|
|
755
|
+
.count-down .finish-cont {
|
|
756
|
+
width: 100%
|
|
889
757
|
}
|
|
890
758
|
|
|
891
|
-
|
|
892
|
-
display:
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
759
|
+
.count-down .count-flip {
|
|
760
|
+
display: -webkit-box;
|
|
761
|
+
display: -ms-flexbox;
|
|
762
|
+
display: flex;
|
|
763
|
+
height: 100%;
|
|
764
|
+
-webkit-box-align: center;
|
|
765
|
+
-ms-flex-align: center;
|
|
766
|
+
align-items: center;
|
|
767
|
+
-webkit-box-pack: center;
|
|
768
|
+
-ms-flex-pack: center;
|
|
769
|
+
justify-content: center
|
|
896
770
|
}
|
|
897
771
|
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
772
|
+
.count-down .count-flip[data-direction="vertical"] {
|
|
773
|
+
-webkit-box-orient: vertical;
|
|
774
|
+
-webkit-box-direction: normal;
|
|
775
|
+
-ms-flex-direction: column;
|
|
776
|
+
flex-direction: column;
|
|
777
|
+
height: auto;
|
|
778
|
+
min-height: 100%;
|
|
901
779
|
}
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
border-radius: 50%;
|
|
907
|
-
overflow: hidden;
|
|
908
|
-
padding: 15px 0;
|
|
780
|
+
|
|
781
|
+
.count-down .count-flip[data-direction="vertical"] .c-com {
|
|
782
|
+
margin: 6px 0;
|
|
783
|
+
width: auto;
|
|
909
784
|
}
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
785
|
+
|
|
786
|
+
.count-down .count-flip .numscroll {
|
|
787
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
788
|
+
animation: numscroll .4s ease-in-out;
|
|
789
|
+
-webkit-animation-fill-mode: both;
|
|
790
|
+
animation-fill-mode: both
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
794
|
+
-webkit-transition: all .3s ease-in-out;
|
|
795
|
+
transition: all .3s ease-in-out;
|
|
796
|
+
opacity: .6;
|
|
797
|
+
-webkit-transform: scale(.5)!important;
|
|
798
|
+
transform: scale(.5)!important
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
@-webkit-keyframes numscroll {
|
|
802
|
+
0% {
|
|
803
|
+
-webkit-transform: translateZ(0);
|
|
804
|
+
transform: translateZ(0)
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
to {
|
|
808
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
809
|
+
transform: translate3d(0,100%,0)
|
|
915
810
|
}
|
|
916
|
-
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
917
|
-
content: '';
|
|
918
|
-
position: absolute;
|
|
919
|
-
width: 100%;
|
|
920
|
-
height: 2px;
|
|
921
|
-
background: #fff;
|
|
922
|
-
}.ele-effect {
|
|
923
|
-
will-change: transform;
|
|
924
811
|
}
|
|
925
812
|
|
|
926
|
-
|
|
813
|
+
@keyframes numscroll {
|
|
814
|
+
0% {
|
|
815
|
+
-webkit-transform: translateZ(0);
|
|
816
|
+
transform: translateZ(0)
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
to {
|
|
820
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
821
|
+
transform: translate3d(0,100%,0)
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.count-down .count-flip .c-com {
|
|
826
|
+
min-width: 50px;
|
|
827
|
+
height: auto;
|
|
828
|
+
margin: 6px;
|
|
829
|
+
padding: 5px 0 6px;
|
|
830
|
+
background-color: #111
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
834
|
+
display: -webkit-box;
|
|
835
|
+
display: -ms-flexbox;
|
|
836
|
+
display: flex;
|
|
927
837
|
position: relative;
|
|
928
838
|
width: 100%;
|
|
929
839
|
height: 100%;
|
|
840
|
+
-webkit-box-align: center;
|
|
841
|
+
-ms-flex-align: center;
|
|
842
|
+
align-items: center
|
|
930
843
|
}
|
|
931
844
|
|
|
932
|
-
.
|
|
845
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
846
|
+
line-height: 27px
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
933
850
|
position: absolute;
|
|
934
|
-
|
|
935
|
-
background-size: contain;
|
|
936
|
-
animation-name: falling;
|
|
937
|
-
animation-timing-function: linear;
|
|
938
|
-
animation-iteration-count: infinite;
|
|
939
|
-
will-change: transform;
|
|
851
|
+
top: -100%
|
|
940
852
|
}
|
|
941
853
|
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
opacity: 1;
|
|
946
|
-
}
|
|
947
|
-
80% {
|
|
948
|
-
opacity: 0.8;
|
|
949
|
-
}
|
|
950
|
-
100% {
|
|
951
|
-
transform: translateY(100vh) rotate(360deg);
|
|
952
|
-
opacity: 0;
|
|
953
|
-
}
|
|
854
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
855
|
+
-webkit-transform: scale(1);
|
|
856
|
+
transform: scale(1)
|
|
954
857
|
}
|
|
955
|
-
|
|
956
|
-
|
|
858
|
+
|
|
859
|
+
.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 {
|
|
860
|
+
display: none!important
|
|
957
861
|
}
|
|
958
862
|
|
|
959
|
-
.
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
863
|
+
.c-wrap {
|
|
864
|
+
width: 100%;
|
|
865
|
+
height: 100%;
|
|
866
|
+
overflow: hidden;
|
|
867
|
+
font-size: 0
|
|
964
868
|
}
|
|
965
869
|
|
|
966
|
-
.
|
|
967
|
-
|
|
968
|
-
width: 24px;
|
|
969
|
-
height: 24px;
|
|
970
|
-
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
971
|
-
background-size: cover;
|
|
972
|
-
background-repeat: no-repeat;
|
|
973
|
-
-webkit-transform-origin: center;
|
|
974
|
-
transform-origin: center;
|
|
975
|
-
-webkit-animation: snow 5s linear infinite;
|
|
976
|
-
animation: snow 5s linear infinite
|
|
870
|
+
.c-wrap.c-day-wrap {
|
|
871
|
+
text-align: center
|
|
977
872
|
}
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
cursor: pointer;
|
|
982
|
-
transition: all 0.2s;
|
|
983
|
-
outline: none;
|
|
984
|
-
border: none;
|
|
873
|
+
|
|
874
|
+
.c-wrap.c-day-wrap .c-num {
|
|
875
|
+
width: auto
|
|
985
876
|
}
|
|
986
877
|
|
|
987
|
-
.
|
|
988
|
-
|
|
989
|
-
|
|
878
|
+
.c-wrap .c-num {
|
|
879
|
+
display: inline-block;
|
|
880
|
+
width: 50%;
|
|
881
|
+
overflow: hidden;
|
|
882
|
+
font-size: 20px;
|
|
883
|
+
color: #999
|
|
990
884
|
}
|
|
991
885
|
|
|
992
|
-
.
|
|
993
|
-
|
|
994
|
-
|
|
886
|
+
.c-wrap .c-left .flex-wrap {
|
|
887
|
+
display: -webkit-box;
|
|
888
|
+
display: -ms-flexbox;
|
|
889
|
+
display: flex;
|
|
890
|
+
-webkit-box-pack: end;
|
|
891
|
+
-ms-flex-pack: end;
|
|
892
|
+
justify-content: flex-end
|
|
995
893
|
}
|
|
996
894
|
|
|
997
|
-
.
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
895
|
+
.c-wrap .c-text {
|
|
896
|
+
display: -webkit-box;
|
|
897
|
+
display: -ms-flexbox;
|
|
898
|
+
display: flex;
|
|
899
|
+
width: 100%;
|
|
900
|
+
font-size: 12px;
|
|
901
|
+
-webkit-box-pack: center;
|
|
902
|
+
-ms-flex-pack: center;
|
|
903
|
+
justify-content: center;
|
|
904
|
+
-webkit-box-align: center;
|
|
905
|
+
-ms-flex-align: center;
|
|
906
|
+
align-items: center;
|
|
907
|
+
white-space: nowrap
|
|
908
|
+
}
|
|
909
|
+
.ele-effect {
|
|
910
|
+
will-change: transform;
|
|
1001
911
|
}
|
|
1002
912
|
|
|
1003
|
-
.
|
|
913
|
+
.ele-effect .effect-wrap {
|
|
1004
914
|
position: relative;
|
|
1005
|
-
|
|
915
|
+
width: 100%;
|
|
916
|
+
height: 100%;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.particle {
|
|
920
|
+
position: absolute;
|
|
921
|
+
background-repeat: no-repeat;
|
|
922
|
+
background-size: contain;
|
|
923
|
+
animation-name: falling;
|
|
924
|
+
animation-timing-function: linear;
|
|
925
|
+
animation-iteration-count: infinite;
|
|
926
|
+
will-change: transform;
|
|
1006
927
|
}
|
|
1007
928
|
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
929
|
+
@keyframes falling {
|
|
930
|
+
0% {
|
|
931
|
+
transform: translateY(0) rotate(0deg);
|
|
932
|
+
opacity: 1;
|
|
933
|
+
}
|
|
934
|
+
80% {
|
|
935
|
+
opacity: 0.8;
|
|
936
|
+
}
|
|
937
|
+
100% {
|
|
938
|
+
transform: translateY(100vh) rotate(360deg);
|
|
939
|
+
opacity: 0;
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
.ele-lottie .ele-lotwrap {
|
|
943
|
+
overflow: hidden
|
|
1014
944
|
}
|
|
1015
945
|
|
|
1016
|
-
.
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
946
|
+
.ele-effect .effect-wrap {
|
|
947
|
+
position: relative;
|
|
948
|
+
overflow: hidden;
|
|
949
|
+
width: 100%;
|
|
950
|
+
height: 100%
|
|
1021
951
|
}
|
|
1022
952
|
|
|
1023
|
-
.
|
|
1024
|
-
|
|
1025
|
-
|
|
953
|
+
.ele-effect .e-small {
|
|
954
|
+
position: absolute;
|
|
955
|
+
width: 24px;
|
|
956
|
+
height: 24px;
|
|
957
|
+
background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
|
|
958
|
+
background-size: cover;
|
|
959
|
+
background-repeat: no-repeat;
|
|
960
|
+
-webkit-transform-origin: center;
|
|
961
|
+
transform-origin: center;
|
|
962
|
+
-webkit-animation: snow 5s linear infinite;
|
|
963
|
+
animation: snow 5s linear infinite
|
|
1026
964
|
}/* Iconfont definition */
|
|
1027
965
|
.icon-danmuliebiao1:before {
|
|
1028
966
|
content: "\E68A";
|
|
@@ -1926,7 +1864,87 @@ cursor: not-allowed;
|
|
|
1926
1864
|
100% { transform: rotate(360deg); }
|
|
1927
1865
|
}
|
|
1928
1866
|
|
|
1929
|
-
|
|
1867
|
+
|
|
1868
|
+
.ele-lottie .ele-lotwrap {
|
|
1869
|
+
overflow: hidden;
|
|
1870
|
+
}#page-list .tip-cover {
|
|
1871
|
+
position: fixed;
|
|
1872
|
+
left: 0;
|
|
1873
|
+
top: 0;
|
|
1874
|
+
width: 100%;
|
|
1875
|
+
height: 100%;
|
|
1876
|
+
display: -ms-flexbox;
|
|
1877
|
+
display: flex;
|
|
1878
|
+
-ms-flex-align: center;
|
|
1879
|
+
align-items: center;
|
|
1880
|
+
-ms-flex-pack: center;
|
|
1881
|
+
justify-content: center;
|
|
1882
|
+
z-index: 999;
|
|
1883
|
+
background-color: rgba(0,0,0,.7)
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
#page-list .tip-cover .tip {
|
|
1887
|
+
width: 80%;
|
|
1888
|
+
max-width: 250px;
|
|
1889
|
+
padding: 10px;
|
|
1890
|
+
border-radius: 5px;
|
|
1891
|
+
background-color: #fff
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
#page-list .tip-cover .tip-btn {
|
|
1895
|
+
display: block;
|
|
1896
|
+
margin: 25px auto;
|
|
1897
|
+
width: 120px;
|
|
1898
|
+
height: 30px;
|
|
1899
|
+
color: #fff;
|
|
1900
|
+
border-radius: 4px;
|
|
1901
|
+
text-align: center;
|
|
1902
|
+
font-size: 14px;
|
|
1903
|
+
line-height: 30px;
|
|
1904
|
+
background: #ed5566
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
#page-list .tip-cover .tip-content {
|
|
1908
|
+
font-size: 14px;
|
|
1909
|
+
padding-top: 30px;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
.tip-cover {
|
|
1913
|
+
position: fixed;
|
|
1914
|
+
left: 0;
|
|
1915
|
+
top: 0;
|
|
1916
|
+
width: 100%;
|
|
1917
|
+
height: 100%;
|
|
1918
|
+
display: -ms-flexbox;
|
|
1919
|
+
display: flex;
|
|
1920
|
+
-ms-flex-align: center;
|
|
1921
|
+
align-items: center;
|
|
1922
|
+
-ms-flex-pack: center;
|
|
1923
|
+
justify-content: center;
|
|
1924
|
+
z-index: 999;
|
|
1925
|
+
background-color: rgba(0,0,0,.7)
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.tip-cover .tip {
|
|
1929
|
+
width: 80%;
|
|
1930
|
+
max-width: 250px;
|
|
1931
|
+
padding: 5px;
|
|
1932
|
+
border-radius: 3px;
|
|
1933
|
+
background-color: #fff
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
.tip-cover .tip-btn {
|
|
1937
|
+
display: block;
|
|
1938
|
+
margin: 13px auto;
|
|
1939
|
+
width: 64px;
|
|
1940
|
+
height: 20px;
|
|
1941
|
+
color: #fff;
|
|
1942
|
+
border-radius: 4px;
|
|
1943
|
+
text-align: center;
|
|
1944
|
+
font-size: 14px;
|
|
1945
|
+
line-height: 20px;
|
|
1946
|
+
background: #ed5566;
|
|
1947
|
+
} body, html {
|
|
1930
1948
|
width: 100%;
|
|
1931
1949
|
height: 100%;
|
|
1932
1950
|
}
|
|
@@ -3529,134 +3547,35 @@ to {
|
|
|
3529
3547
|
}
|
|
3530
3548
|
}
|
|
3531
3549
|
|
|
3532
|
-
.
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
display: flex;
|
|
3538
|
-
align-items: center;
|
|
3539
|
-
width: 100%;
|
|
3540
|
-
height: 100%;
|
|
3541
|
-
padding: 0 10px;
|
|
3542
|
-
box-sizing: border-box;
|
|
3543
|
-
position: relative;
|
|
3544
|
-
transition: border-color 0.3s;
|
|
3545
|
-
}
|
|
3546
|
-
|
|
3547
|
-
.required-marker {
|
|
3548
|
-
font-size: 12px;
|
|
3549
|
-
padding: 0 5px 0 0;
|
|
3550
|
-
color: red;
|
|
3551
|
-
vertical-align: middle;
|
|
3552
|
-
}
|
|
3553
|
-
|
|
3554
|
-
input {
|
|
3555
|
-
flex: 1;
|
|
3556
|
-
border: none;
|
|
3557
|
-
outline: none;
|
|
3558
|
-
background: transparent;
|
|
3559
|
-
height: 100%;
|
|
3560
|
-
padding: 0;
|
|
3561
|
-
margin: 0;
|
|
3562
|
-
}
|
|
3563
|
-
/*
|
|
3564
|
-
input::placeholder {
|
|
3565
|
-
color: #ccc;
|
|
3566
|
-
opacity: 1;
|
|
3567
|
-
} */
|
|
3550
|
+
.button {
|
|
3551
|
+
position: absolute;
|
|
3552
|
+
cursor: pointer;
|
|
3553
|
+
user-select: none;
|
|
3554
|
+
}
|
|
3568
3555
|
|
|
3569
|
-
|
|
3570
|
-
color: var(--placeholder-color, #999);
|
|
3571
|
-
opacity: 1;
|
|
3572
|
-
}
|
|
3573
|
-
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
3574
|
-
color: var(--placeholder-color, #999);
|
|
3575
|
-
}
|
|
3576
|
-
.dynamic-placeholder-input::-moz-placeholder {
|
|
3577
|
-
color: var(--placeholder-color, #999);
|
|
3578
|
-
opacity: 1;
|
|
3579
|
-
}
|
|
3580
|
-
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
3581
|
-
color: var(--placeholder-color, #999);
|
|
3582
|
-
}#page-list .tip-cover {
|
|
3583
|
-
position: fixed;
|
|
3584
|
-
left: 0;
|
|
3585
|
-
top: 0;
|
|
3586
|
-
width: 100%;
|
|
3587
|
-
height: 100%;
|
|
3588
|
-
display: -ms-flexbox;
|
|
3556
|
+
.button .ani-wrap {
|
|
3589
3557
|
display: flex;
|
|
3590
|
-
-ms-flex-align: center;
|
|
3591
|
-
align-items: center;
|
|
3592
|
-
-ms-flex-pack: center;
|
|
3593
3558
|
justify-content: center;
|
|
3594
|
-
|
|
3595
|
-
background-color: rgba(0,0,0,.7)
|
|
3596
|
-
}
|
|
3597
|
-
|
|
3598
|
-
#page-list .tip-cover .tip {
|
|
3599
|
-
width: 80%;
|
|
3600
|
-
max-width: 250px;
|
|
3601
|
-
padding: 10px;
|
|
3602
|
-
border-radius: 5px;
|
|
3603
|
-
background-color: #fff
|
|
3604
|
-
}
|
|
3605
|
-
|
|
3606
|
-
#page-list .tip-cover .tip-btn {
|
|
3607
|
-
display: block;
|
|
3608
|
-
margin: 25px auto;
|
|
3609
|
-
width: 120px;
|
|
3610
|
-
height: 30px;
|
|
3611
|
-
color: #fff;
|
|
3612
|
-
border-radius: 4px;
|
|
3613
|
-
text-align: center;
|
|
3614
|
-
font-size: 14px;
|
|
3615
|
-
line-height: 30px;
|
|
3616
|
-
background: #ed5566
|
|
3617
|
-
}
|
|
3618
|
-
|
|
3619
|
-
#page-list .tip-cover .tip-content {
|
|
3620
|
-
font-size: 14px;
|
|
3621
|
-
padding-top: 30px;
|
|
3622
|
-
}
|
|
3623
|
-
|
|
3624
|
-
.tip-cover {
|
|
3625
|
-
position: fixed;
|
|
3626
|
-
left: 0;
|
|
3627
|
-
top: 0;
|
|
3559
|
+
align-items: center;
|
|
3628
3560
|
width: 100%;
|
|
3629
3561
|
height: 100%;
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
-ms-flex-align: center;
|
|
3633
|
-
align-items: center;
|
|
3634
|
-
-ms-flex-pack: center;
|
|
3635
|
-
justify-content: center;
|
|
3636
|
-
z-index: 999;
|
|
3637
|
-
background-color: rgba(0,0,0,.7)
|
|
3562
|
+
overflow: hidden;
|
|
3563
|
+
transition: opacity 0.2s;
|
|
3638
3564
|
}
|
|
3639
|
-
|
|
3640
|
-
.
|
|
3641
|
-
|
|
3642
|
-
max-width: 250px;
|
|
3643
|
-
padding: 5px;
|
|
3644
|
-
border-radius: 3px;
|
|
3645
|
-
background-color: #fff
|
|
3565
|
+
|
|
3566
|
+
.button .ani-wrap:hover {
|
|
3567
|
+
opacity: 0.9;
|
|
3646
3568
|
}
|
|
3647
3569
|
|
|
3648
|
-
.
|
|
3649
|
-
display:
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
line-height: 20px;
|
|
3658
|
-
background: #ed5566;
|
|
3659
|
-
} @charset"UTF-8";.animated {
|
|
3570
|
+
.button-content {
|
|
3571
|
+
display: flex;
|
|
3572
|
+
align-items: center;
|
|
3573
|
+
justify-content: center;
|
|
3574
|
+
}
|
|
3575
|
+
|
|
3576
|
+
.btn-text {
|
|
3577
|
+
margin-left: 10px;
|
|
3578
|
+
}@charset"UTF-8";.animated {
|
|
3660
3579
|
animation-duration: 1s;
|
|
3661
3580
|
animation-fill-mode: both
|
|
3662
3581
|
}
|
|
@@ -8542,198 +8461,110 @@ to {
|
|
|
8542
8461
|
transform: translateX(0)
|
|
8543
8462
|
}
|
|
8544
8463
|
}
|
|
8545
|
-
|
|
8546
|
-
position: absolute;
|
|
8547
|
-
user-select: none;
|
|
8548
|
-
}
|
|
8549
|
-
*/
|
|
8550
|
-
.f-single {
|
|
8551
|
-
cursor: pointer;
|
|
8552
|
-
}
|
|
8553
|
-
|
|
8554
|
-
.ani-wrap {
|
|
8555
|
-
position: relative;
|
|
8556
|
-
}
|
|
8557
|
-
|
|
8558
|
-
.f-single .ani-wrap .fs-tit {
|
|
8559
|
-
display: flex;
|
|
8560
|
-
padding: 0 5px;
|
|
8561
|
-
height: 40px;
|
|
8562
|
-
align-items: center;
|
|
8563
|
-
white-space: nowrap;
|
|
8564
|
-
overflow: hidden;
|
|
8565
|
-
text-overflow: ellipsis;
|
|
8566
|
-
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
8567
|
-
}
|
|
8568
|
-
|
|
8569
|
-
.require {
|
|
8570
|
-
padding: 0 5px 0 0;
|
|
8571
|
-
color: red;
|
|
8572
|
-
vertical-align: middle;
|
|
8573
|
-
}
|
|
8574
|
-
|
|
8575
|
-
.f-single ul {
|
|
8576
|
-
padding: 15px;
|
|
8577
|
-
margin: 0;
|
|
8578
|
-
list-style: none;
|
|
8579
|
-
}
|
|
8580
|
-
|
|
8581
|
-
.f-single ul li {
|
|
8582
|
-
display: flex;
|
|
8583
|
-
align-items: center;
|
|
8584
|
-
margin-top: 12px;
|
|
8585
|
-
font-size: 0;
|
|
8586
|
-
}
|
|
8587
|
-
|
|
8588
|
-
.f-single ul li:first-child {
|
|
8589
|
-
margin-top: 0;
|
|
8590
|
-
}
|
|
8591
|
-
|
|
8592
|
-
.fs-circle {
|
|
8593
|
-
display: inline-block;
|
|
8594
|
-
width: 16px;
|
|
8595
|
-
height: 16px;
|
|
8596
|
-
border-radius: 50%;
|
|
8597
|
-
position: relative;
|
|
8598
|
-
transition: all 0.2s;
|
|
8599
|
-
}
|
|
8600
|
-
|
|
8601
|
-
.fs-circle.selected {
|
|
8602
|
-
background-color: #2687f1;
|
|
8603
|
-
border-color: #2687f1 !important;
|
|
8604
|
-
}
|
|
8605
|
-
|
|
8606
|
-
.fs-circle.selected::after {
|
|
8607
|
-
content: "";
|
|
8608
|
-
position: absolute;
|
|
8609
|
-
top: 3px;
|
|
8610
|
-
left: 3px;
|
|
8611
|
-
width: 8px;
|
|
8612
|
-
height: 8px;
|
|
8613
|
-
border-radius: 50%;
|
|
8614
|
-
background-color: white;
|
|
8615
|
-
}
|
|
8616
|
-
|
|
8617
|
-
.fs-txt {
|
|
8618
|
-
display: inline-block;
|
|
8619
|
-
width: calc(100% - 16px);
|
|
8620
|
-
padding-left: 8px;
|
|
8621
|
-
vertical-align: top;
|
|
8622
|
-
word-break: break-all;
|
|
8623
|
-
font-size: 14px;
|
|
8624
|
-
line-height: 1.2;
|
|
8625
|
-
}
|
|
8626
|
-
|
|
8627
|
-
.has-error .fs-tit {
|
|
8628
|
-
border-bottom-color: #ff4d4f;
|
|
8629
|
-
}
|
|
8630
|
-
|
|
8631
|
-
/* 错误提示样式 */
|
|
8632
|
-
.error-tip {
|
|
8633
|
-
position: fixed;
|
|
8634
|
-
left: 0;
|
|
8635
|
-
top: 0;
|
|
8636
|
-
width: 100%;
|
|
8637
|
-
height: 100%;
|
|
8638
|
-
z-index: 1000;
|
|
8639
|
-
}/* .ele-form {
|
|
8640
|
-
position: absolute;
|
|
8641
|
-
user-select: none;
|
|
8642
|
-
} */
|
|
8643
|
-
|
|
8644
|
-
.f-multiple {
|
|
8464
|
+
.form-submit {
|
|
8645
8465
|
cursor: pointer;
|
|
8466
|
+
transition: all 0.2s;
|
|
8467
|
+
outline: none;
|
|
8468
|
+
border: none;
|
|
8646
8469
|
}
|
|
8647
8470
|
|
|
8648
|
-
.
|
|
8649
|
-
|
|
8650
|
-
|
|
8651
|
-
|
|
8652
|
-
.f-multiple .ani-wrap .fs-tit {
|
|
8653
|
-
display: flex;
|
|
8654
|
-
padding: 0 5px;
|
|
8655
|
-
height: 40px;
|
|
8656
|
-
align-items: center;
|
|
8657
|
-
white-space: nowrap;
|
|
8658
|
-
overflow: hidden;
|
|
8659
|
-
text-overflow: ellipsis;
|
|
8660
|
-
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
8661
|
-
}
|
|
8662
|
-
|
|
8663
|
-
.require {
|
|
8664
|
-
padding: 0 5px 0 0;
|
|
8665
|
-
color: red;
|
|
8666
|
-
vertical-align: middle;
|
|
8667
|
-
}
|
|
8668
|
-
|
|
8669
|
-
.f-multiple ul {
|
|
8670
|
-
padding: 15px;
|
|
8671
|
-
margin: 0;
|
|
8672
|
-
list-style: none;
|
|
8471
|
+
.form-submit:hover {
|
|
8472
|
+
opacity: 0.9;
|
|
8473
|
+
transform: translateY(-1px);
|
|
8673
8474
|
}
|
|
8674
8475
|
|
|
8675
|
-
.
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
display: flex;
|
|
8679
|
-
align-items: center;
|
|
8680
|
-
cursor: pointer;
|
|
8476
|
+
.form-submit:active {
|
|
8477
|
+
opacity: 0.8;
|
|
8478
|
+
transform: translateY(0);
|
|
8681
8479
|
}
|
|
8682
8480
|
|
|
8683
|
-
.
|
|
8684
|
-
|
|
8481
|
+
.form-submit:disabled {
|
|
8482
|
+
opacity: 0.6;
|
|
8483
|
+
cursor: not-allowed;
|
|
8484
|
+
transform: none !important;
|
|
8685
8485
|
}
|
|
8686
8486
|
|
|
8687
|
-
.
|
|
8688
|
-
display: inline-block;
|
|
8689
|
-
width: 16px;
|
|
8690
|
-
height: 16px;
|
|
8691
|
-
border-radius: 50%;
|
|
8487
|
+
.f-submit {
|
|
8692
8488
|
position: relative;
|
|
8693
|
-
|
|
8489
|
+
display: block
|
|
8694
8490
|
}
|
|
8695
8491
|
|
|
8696
|
-
.
|
|
8697
|
-
|
|
8698
|
-
|
|
8492
|
+
.f-submit .ani-wrap {
|
|
8493
|
+
width: 100%;
|
|
8494
|
+
height: 100%;
|
|
8495
|
+
padding: 10px;
|
|
8496
|
+
overflow: hidden;
|
|
8497
|
+
position: relative
|
|
8699
8498
|
}
|
|
8700
8499
|
|
|
8701
|
-
.
|
|
8702
|
-
content: "";
|
|
8500
|
+
.f-submit .f-ovh {
|
|
8703
8501
|
position: absolute;
|
|
8704
|
-
|
|
8705
|
-
|
|
8706
|
-
|
|
8707
|
-
height: 8px;
|
|
8708
|
-
border-radius: 50%;
|
|
8709
|
-
background-color: white;
|
|
8502
|
+
left: 50%;
|
|
8503
|
+
top: 50%;
|
|
8504
|
+
transform: translate(-50%,-50%)
|
|
8710
8505
|
}
|
|
8711
8506
|
|
|
8712
|
-
.
|
|
8713
|
-
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
|
|
8717
|
-
|
|
8718
|
-
|
|
8719
|
-
|
|
8507
|
+
.form-submit:disabled {
|
|
8508
|
+
opacity: 0.7;
|
|
8509
|
+
cursor: not-allowed;
|
|
8510
|
+
}.form-input.form-input--editing,
|
|
8511
|
+
.form-input.form-input--editing input {
|
|
8512
|
+
pointer-events: none;
|
|
8513
|
+
user-select: none;
|
|
8514
|
+
-webkit-user-select: none;
|
|
8720
8515
|
}
|
|
8721
8516
|
|
|
8722
|
-
.
|
|
8723
|
-
|
|
8724
|
-
}
|
|
8725
|
-
|
|
8726
|
-
|
|
8727
|
-
|
|
8728
|
-
|
|
8729
|
-
|
|
8730
|
-
|
|
8731
|
-
|
|
8732
|
-
|
|
8733
|
-
|
|
8734
|
-
|
|
8735
|
-
|
|
8736
|
-
|
|
8517
|
+
.form-input {
|
|
8518
|
+
position: absolute;
|
|
8519
|
+
}
|
|
8520
|
+
|
|
8521
|
+
.input-wrapper {
|
|
8522
|
+
display: flex;
|
|
8523
|
+
align-items: center;
|
|
8524
|
+
width: 100%;
|
|
8525
|
+
height: 100%;
|
|
8526
|
+
padding: 0 10px;
|
|
8527
|
+
box-sizing: border-box;
|
|
8528
|
+
position: relative;
|
|
8529
|
+
transition: border-color 0.3s;
|
|
8530
|
+
}
|
|
8531
|
+
|
|
8532
|
+
.required-marker {
|
|
8533
|
+
font-size: 12px;
|
|
8534
|
+
padding: 0 5px 0 0;
|
|
8535
|
+
color: red;
|
|
8536
|
+
vertical-align: middle;
|
|
8537
|
+
}
|
|
8538
|
+
|
|
8539
|
+
input {
|
|
8540
|
+
flex: 1;
|
|
8541
|
+
border: none;
|
|
8542
|
+
outline: none;
|
|
8543
|
+
background: transparent;
|
|
8544
|
+
height: 100%;
|
|
8545
|
+
padding: 0;
|
|
8546
|
+
margin: 0;
|
|
8547
|
+
}
|
|
8548
|
+
/*
|
|
8549
|
+
input::placeholder {
|
|
8550
|
+
color: #ccc;
|
|
8551
|
+
opacity: 1;
|
|
8552
|
+
} */
|
|
8553
|
+
|
|
8554
|
+
.dynamic-placeholder-input::placeholder {
|
|
8555
|
+
color: var(--placeholder-color, #999);
|
|
8556
|
+
opacity: 1;
|
|
8557
|
+
}
|
|
8558
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
8559
|
+
color: var(--placeholder-color, #999);
|
|
8560
|
+
}
|
|
8561
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
8562
|
+
color: var(--placeholder-color, #999);
|
|
8563
|
+
opacity: 1;
|
|
8564
|
+
}
|
|
8565
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
8566
|
+
color: var(--placeholder-color, #999);
|
|
8567
|
+
}/* .ele-form {
|
|
8737
8568
|
position: absolute;
|
|
8738
8569
|
user-select: none;
|
|
8739
8570
|
} */
|
|
@@ -8831,45 +8662,92 @@ to {
|
|
|
8831
8662
|
width: 100%;
|
|
8832
8663
|
height: 100%;
|
|
8833
8664
|
z-index: 1000;
|
|
8834
|
-
}
|
|
8835
|
-
|
|
8836
|
-
|
|
8837
|
-
|
|
8838
|
-
|
|
8839
|
-
|
|
8840
|
-
margin-bottom: 5px;
|
|
8841
|
-
border: 2px solid #fff;
|
|
8665
|
+
}/* .ele-form {
|
|
8666
|
+
position: absolute;
|
|
8667
|
+
user-select: none;
|
|
8668
|
+
} */
|
|
8669
|
+
|
|
8670
|
+
.f-multiple {
|
|
8842
8671
|
cursor: pointer;
|
|
8843
8672
|
}
|
|
8844
|
-
|
|
8845
|
-
.
|
|
8846
|
-
|
|
8673
|
+
|
|
8674
|
+
.ani-wrap {
|
|
8675
|
+
position: relative;
|
|
8847
8676
|
}
|
|
8848
8677
|
|
|
8849
|
-
.
|
|
8850
|
-
|
|
8851
|
-
|
|
8852
|
-
|
|
8853
|
-
|
|
8854
|
-
|
|
8855
|
-
|
|
8678
|
+
.f-multiple .ani-wrap .fs-tit {
|
|
8679
|
+
display: flex;
|
|
8680
|
+
padding: 0 5px;
|
|
8681
|
+
height: 40px;
|
|
8682
|
+
align-items: center;
|
|
8683
|
+
white-space: nowrap;
|
|
8684
|
+
overflow: hidden;
|
|
8685
|
+
text-overflow: ellipsis;
|
|
8686
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
8687
|
+
}
|
|
8688
|
+
|
|
8689
|
+
.require {
|
|
8690
|
+
padding: 0 5px 0 0;
|
|
8691
|
+
color: red;
|
|
8692
|
+
vertical-align: middle;
|
|
8693
|
+
}
|
|
8694
|
+
|
|
8695
|
+
.f-multiple ul {
|
|
8696
|
+
padding: 15px;
|
|
8697
|
+
margin: 0;
|
|
8698
|
+
list-style: none;
|
|
8699
|
+
}
|
|
8700
|
+
|
|
8701
|
+
.f-multiple ul li {
|
|
8702
|
+
margin-top: 12px;
|
|
8703
|
+
font-size: 0;
|
|
8704
|
+
display: flex;
|
|
8705
|
+
align-items: center;
|
|
8856
8706
|
cursor: pointer;
|
|
8857
8707
|
}
|
|
8858
|
-
|
|
8859
|
-
.
|
|
8860
|
-
|
|
8861
|
-
|
|
8862
|
-
|
|
8863
|
-
|
|
8708
|
+
|
|
8709
|
+
.f-multiple ul li:first-child {
|
|
8710
|
+
margin-top: 0;
|
|
8711
|
+
}
|
|
8712
|
+
|
|
8713
|
+
.fs-circle {
|
|
8714
|
+
display: inline-block;
|
|
8715
|
+
width: 16px;
|
|
8716
|
+
height: 16px;
|
|
8864
8717
|
border-radius: 50%;
|
|
8865
|
-
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
8718
|
+
position: relative;
|
|
8719
|
+
transition: all 0.2s;
|
|
8720
|
+
}
|
|
8721
|
+
|
|
8722
|
+
.fs-circle.selected {
|
|
8723
|
+
background-color: #2687f1;
|
|
8724
|
+
border-color: #2687f1 !important;
|
|
8725
|
+
}
|
|
8726
|
+
|
|
8727
|
+
.fs-circle.selected::after {
|
|
8728
|
+
content: "";
|
|
8729
|
+
position: absolute;
|
|
8730
|
+
top: 3px;
|
|
8731
|
+
left: 3px;
|
|
8732
|
+
width: 8px;
|
|
8733
|
+
height: 8px;
|
|
8734
|
+
border-radius: 50%;
|
|
8735
|
+
background-color: white;
|
|
8736
|
+
}
|
|
8737
|
+
|
|
8738
|
+
.fs-txt {
|
|
8739
|
+
display: inline-block;
|
|
8740
|
+
width: calc(100% - 16px);
|
|
8741
|
+
padding-left: 8px;
|
|
8742
|
+
vertical-align: top;
|
|
8743
|
+
word-break: break-all;
|
|
8744
|
+
font-size: 14px;
|
|
8745
|
+
line-height: 1.2;
|
|
8746
|
+
}
|
|
8747
|
+
|
|
8748
|
+
.has-error .fs-tit {
|
|
8749
|
+
border-bottom-color: #ff4d4f;
|
|
8869
8750
|
}
|
|
8870
|
-
.icon-daohang1:before { content: "\E612"; }
|
|
8871
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
8872
|
-
.global.map > span { font-size: 10px; line-height: 20px; display: block;}
|
|
8873
8751
|
.icon-guanbi:before {
|
|
8874
8752
|
content: "\E676";
|
|
8875
8753
|
}
|
|
@@ -9263,7 +9141,151 @@ to {
|
|
|
9263
9141
|
content: "\E65E";
|
|
9264
9142
|
color: #F44336; /* 失败的红色 */
|
|
9265
9143
|
}
|
|
9266
|
-
/*
|
|
9144
|
+
/* .ele-form {
|
|
9145
|
+
position: absolute;
|
|
9146
|
+
user-select: none;
|
|
9147
|
+
}
|
|
9148
|
+
*/
|
|
9149
|
+
.f-single {
|
|
9150
|
+
cursor: pointer;
|
|
9151
|
+
}
|
|
9152
|
+
|
|
9153
|
+
.ani-wrap {
|
|
9154
|
+
position: relative;
|
|
9155
|
+
}
|
|
9156
|
+
|
|
9157
|
+
.f-single .ani-wrap .fs-tit {
|
|
9158
|
+
display: flex;
|
|
9159
|
+
padding: 0 5px;
|
|
9160
|
+
height: 40px;
|
|
9161
|
+
align-items: center;
|
|
9162
|
+
white-space: nowrap;
|
|
9163
|
+
overflow: hidden;
|
|
9164
|
+
text-overflow: ellipsis;
|
|
9165
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
9166
|
+
}
|
|
9167
|
+
|
|
9168
|
+
.require {
|
|
9169
|
+
padding: 0 5px 0 0;
|
|
9170
|
+
color: red;
|
|
9171
|
+
vertical-align: middle;
|
|
9172
|
+
}
|
|
9173
|
+
|
|
9174
|
+
.f-single ul {
|
|
9175
|
+
padding: 15px;
|
|
9176
|
+
margin: 0;
|
|
9177
|
+
list-style: none;
|
|
9178
|
+
}
|
|
9179
|
+
|
|
9180
|
+
.f-single ul li {
|
|
9181
|
+
display: flex;
|
|
9182
|
+
align-items: center;
|
|
9183
|
+
margin-top: 12px;
|
|
9184
|
+
font-size: 0;
|
|
9185
|
+
}
|
|
9186
|
+
|
|
9187
|
+
.f-single ul li:first-child {
|
|
9188
|
+
margin-top: 0;
|
|
9189
|
+
}
|
|
9190
|
+
|
|
9191
|
+
.fs-circle {
|
|
9192
|
+
display: inline-block;
|
|
9193
|
+
width: 16px;
|
|
9194
|
+
height: 16px;
|
|
9195
|
+
border-radius: 50%;
|
|
9196
|
+
position: relative;
|
|
9197
|
+
transition: all 0.2s;
|
|
9198
|
+
}
|
|
9199
|
+
|
|
9200
|
+
.fs-circle.selected {
|
|
9201
|
+
background-color: #2687f1;
|
|
9202
|
+
border-color: #2687f1 !important;
|
|
9203
|
+
}
|
|
9204
|
+
|
|
9205
|
+
.fs-circle.selected::after {
|
|
9206
|
+
content: "";
|
|
9207
|
+
position: absolute;
|
|
9208
|
+
top: 3px;
|
|
9209
|
+
left: 3px;
|
|
9210
|
+
width: 8px;
|
|
9211
|
+
height: 8px;
|
|
9212
|
+
border-radius: 50%;
|
|
9213
|
+
background-color: white;
|
|
9214
|
+
}
|
|
9215
|
+
|
|
9216
|
+
.fs-txt {
|
|
9217
|
+
display: inline-block;
|
|
9218
|
+
width: calc(100% - 16px);
|
|
9219
|
+
padding-left: 8px;
|
|
9220
|
+
vertical-align: top;
|
|
9221
|
+
word-break: break-all;
|
|
9222
|
+
font-size: 14px;
|
|
9223
|
+
line-height: 1.2;
|
|
9224
|
+
}
|
|
9225
|
+
|
|
9226
|
+
.has-error .fs-tit {
|
|
9227
|
+
border-bottom-color: #ff4d4f;
|
|
9228
|
+
}
|
|
9229
|
+
|
|
9230
|
+
/* 错误提示样式 */
|
|
9231
|
+
.error-tip {
|
|
9232
|
+
position: fixed;
|
|
9233
|
+
left: 0;
|
|
9234
|
+
top: 0;
|
|
9235
|
+
width: 100%;
|
|
9236
|
+
height: 100%;
|
|
9237
|
+
z-index: 1000;
|
|
9238
|
+
}
|
|
9239
|
+
.global.video {
|
|
9240
|
+
width: 35px;
|
|
9241
|
+
height: 55px;
|
|
9242
|
+
border-radius: 50%;
|
|
9243
|
+
text-align: center;
|
|
9244
|
+
margin-bottom: 5px;
|
|
9245
|
+
border: 2px solid #fff;
|
|
9246
|
+
cursor: pointer;
|
|
9247
|
+
}
|
|
9248
|
+
.icon-shipin2:before { content: "\E611"; }
|
|
9249
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9250
|
+
.global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
|
|
9251
|
+
}
|
|
9252
|
+
|
|
9253
|
+
.global.tel {
|
|
9254
|
+
width: 35px;
|
|
9255
|
+
height: 55px;
|
|
9256
|
+
border-radius: 50%;
|
|
9257
|
+
text-align: center;
|
|
9258
|
+
margin-bottom: 15px;
|
|
9259
|
+
border: 2px solid #fff;
|
|
9260
|
+
cursor: pointer;
|
|
9261
|
+
}
|
|
9262
|
+
.icon-dianhua:before { content: "\E60E"; }
|
|
9263
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9264
|
+
.global.tel > span { font-size: 10px; line-height: 20px; display: block;}
|
|
9265
|
+
.global.receipt {
|
|
9266
|
+
width: 35px;
|
|
9267
|
+
height: 55px;
|
|
9268
|
+
border-radius: 50%;
|
|
9269
|
+
text-align: center;
|
|
9270
|
+
margin-bottom: 5px;
|
|
9271
|
+
border: 2px solid #fff;
|
|
9272
|
+
cursor: pointer;
|
|
9273
|
+
}
|
|
9274
|
+
.icon-liuyan:before { content: "\E636"; }
|
|
9275
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9276
|
+
.global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
|
|
9277
|
+
.global.map {
|
|
9278
|
+
width: 35px;
|
|
9279
|
+
height: 55px;
|
|
9280
|
+
border-radius: 50%;
|
|
9281
|
+
text-align: center;
|
|
9282
|
+
margin-bottom: 5px;
|
|
9283
|
+
border: 2px solid #fff;
|
|
9284
|
+
cursor: pointer;
|
|
9285
|
+
}
|
|
9286
|
+
.icon-daohang1:before { content: "\E612"; }
|
|
9287
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
9288
|
+
.global.map > span { font-size: 10px; line-height: 20px; display: block;}/* ===== 送呈(启呈)运行时样式 ===== */
|
|
9267
9289
|
#invite {
|
|
9268
9290
|
position: absolute;
|
|
9269
9291
|
left: 0;
|