unika-components 1.0.385 → 1.0.387
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 +1020 -1020
- package/dist/unika-components.esm.js +26 -22
- package/dist/unika-components.umd.js +26 -22
- package/package.json +1 -1
|
@@ -1,36 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
.ele-shape {
|
|
3
|
-
position: absolute;
|
|
4
|
-
overflow: hidden;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.ani-wrap {
|
|
8
|
-
width: 100%;
|
|
9
|
-
height: 100%;
|
|
10
|
-
box-sizing: border-box;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.e-shape {
|
|
14
|
-
width: 100%;
|
|
15
|
-
height: 100%;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.svg-container :deep(svg) {
|
|
19
|
-
width: 100%;
|
|
20
|
-
height: 100%;
|
|
21
|
-
display: block;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.svg-loading,
|
|
25
|
-
.svg-error {
|
|
26
|
-
display: flex;
|
|
27
|
-
align-items: center;
|
|
28
|
-
justify-content: center;
|
|
29
|
-
width: 100%;
|
|
30
|
-
height: 100%;
|
|
31
|
-
background: rgba(0,0,0,0.05);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
2
|
.ele-text {
|
|
35
3
|
position: relative;
|
|
36
4
|
}
|
|
@@ -98,6 +66,136 @@
|
|
|
98
66
|
opacity: 1;
|
|
99
67
|
}
|
|
100
68
|
}
|
|
69
|
+
|
|
70
|
+
.ele-shape {
|
|
71
|
+
position: absolute;
|
|
72
|
+
overflow: hidden;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.ani-wrap {
|
|
76
|
+
width: 100%;
|
|
77
|
+
height: 100%;
|
|
78
|
+
box-sizing: border-box;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-shape {
|
|
82
|
+
width: 100%;
|
|
83
|
+
height: 100%;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.svg-container :deep(svg) {
|
|
87
|
+
width: 100%;
|
|
88
|
+
height: 100%;
|
|
89
|
+
display: block;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.svg-loading,
|
|
93
|
+
.svg-error {
|
|
94
|
+
display: flex;
|
|
95
|
+
align-items: center;
|
|
96
|
+
justify-content: center;
|
|
97
|
+
width: 100%;
|
|
98
|
+
height: 100%;
|
|
99
|
+
background: rgba(0,0,0,0.05);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.ele-img {
|
|
103
|
+
position: absolute;
|
|
104
|
+
overflow: hidden;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.ele-img .ani-wrap {
|
|
108
|
+
width: 100%;
|
|
109
|
+
height: 100%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.ele-img .ele-image {
|
|
113
|
+
position: relative;
|
|
114
|
+
display: block;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.ele-img .rotate-wrap {
|
|
118
|
+
position: absolute;
|
|
119
|
+
left: 0;
|
|
120
|
+
right: 0;
|
|
121
|
+
top: 0;
|
|
122
|
+
bottom: 0;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.ele-img .ele-img-bg,
|
|
126
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
127
|
+
width: 100%;
|
|
128
|
+
height: 100%;
|
|
129
|
+
overflow: hidden;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.ele-img .ele-bg-wrap {
|
|
133
|
+
width: 100%;
|
|
134
|
+
height: 100%;
|
|
135
|
+
background-size: cover;
|
|
136
|
+
background-position: 50% 50%;
|
|
137
|
+
background-repeat: no-repeat;
|
|
138
|
+
background-clip: border-box;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/* 动画关键帧 */
|
|
142
|
+
@keyframes zoomIn {
|
|
143
|
+
from {
|
|
144
|
+
opacity: 0;
|
|
145
|
+
transform: scale(0.5);
|
|
146
|
+
}
|
|
147
|
+
to {
|
|
148
|
+
opacity: 1;
|
|
149
|
+
transform: scale(1);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.element-video {
|
|
154
|
+
position: absolute;
|
|
155
|
+
overflow: hidden;
|
|
156
|
+
background-color: #000;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.element-video .ani-wrap, .element-video img {
|
|
160
|
+
display: block;
|
|
161
|
+
width: 100%;
|
|
162
|
+
height: 100%;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.video-container {
|
|
166
|
+
width: 100%;
|
|
167
|
+
height: 100%;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.video-container iframe {
|
|
171
|
+
width: 100%;
|
|
172
|
+
height: 100%;
|
|
173
|
+
border: none;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.video-cover {
|
|
177
|
+
position: relative;
|
|
178
|
+
width: 100%;
|
|
179
|
+
height: 100%;
|
|
180
|
+
background-size: cover;
|
|
181
|
+
background-position: center;
|
|
182
|
+
cursor: pointer;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.video-cover .play-btn {
|
|
186
|
+
position: absolute;
|
|
187
|
+
left: 50%;
|
|
188
|
+
top: 50%;
|
|
189
|
+
transform: translate(-50%, -50%);
|
|
190
|
+
width: 50px;
|
|
191
|
+
height: 50px;
|
|
192
|
+
opacity: 0.8;
|
|
193
|
+
transition: opacity 0.2s;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.video-cover:hover .play-btn {
|
|
197
|
+
opacity: 1;
|
|
198
|
+
}
|
|
101
199
|
|
|
102
200
|
#audio {
|
|
103
201
|
position: absolute;
|
|
@@ -170,98 +268,6 @@
|
|
|
170
268
|
height: 2px;
|
|
171
269
|
background: #fff;
|
|
172
270
|
}
|
|
173
|
-
|
|
174
|
-
.ele-img {
|
|
175
|
-
position: absolute;
|
|
176
|
-
overflow: hidden;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.ele-img .ani-wrap {
|
|
180
|
-
width: 100%;
|
|
181
|
-
height: 100%;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
.ele-img .ele-image {
|
|
185
|
-
position: relative;
|
|
186
|
-
display: block;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.ele-img .rotate-wrap {
|
|
190
|
-
position: absolute;
|
|
191
|
-
left: 0;
|
|
192
|
-
right: 0;
|
|
193
|
-
top: 0;
|
|
194
|
-
bottom: 0;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.ele-img .ele-img-bg,
|
|
198
|
-
.ele-img .rotate-wrap .img-wrap {
|
|
199
|
-
width: 100%;
|
|
200
|
-
height: 100%;
|
|
201
|
-
overflow: hidden;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.ele-img .ele-bg-wrap {
|
|
205
|
-
width: 100%;
|
|
206
|
-
height: 100%;
|
|
207
|
-
background-size: cover;
|
|
208
|
-
background-position: 50% 50%;
|
|
209
|
-
background-repeat: no-repeat;
|
|
210
|
-
background-clip: border-box;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
/* 动画关键帧 */
|
|
214
|
-
@keyframes zoomIn {
|
|
215
|
-
from {
|
|
216
|
-
opacity: 0;
|
|
217
|
-
transform: scale(0.5);
|
|
218
|
-
}
|
|
219
|
-
to {
|
|
220
|
-
opacity: 1;
|
|
221
|
-
transform: scale(1);
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
.call {
|
|
226
|
-
position: absolute;
|
|
227
|
-
cursor: pointer;
|
|
228
|
-
user-select: none;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.bohao-container {
|
|
232
|
-
display: flex;
|
|
233
|
-
justify-content: center;
|
|
234
|
-
align-items: center;
|
|
235
|
-
width: 100%;
|
|
236
|
-
height: 100%;
|
|
237
|
-
overflow: hidden;
|
|
238
|
-
transition: opacity 0.2s;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.bohao-container:hover {
|
|
242
|
-
opacity: 0.9;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.bohao-content {
|
|
246
|
-
display: flex;
|
|
247
|
-
align-items: center;
|
|
248
|
-
justify-content: center;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.btn-text {
|
|
252
|
-
margin-left: 10px;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
/* 这里可以添加实际的电话图标样式 */
|
|
256
|
-
.iconfont.hb-tel {
|
|
257
|
-
display: inline-block;
|
|
258
|
-
width: 16px;
|
|
259
|
-
height: 16px;
|
|
260
|
-
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/></svg>');
|
|
261
|
-
background-repeat: no-repeat;
|
|
262
|
-
background-position: center;
|
|
263
|
-
background-size: contain;
|
|
264
|
-
}
|
|
265
271
|
|
|
266
272
|
.element-ditu .ani-wrap {
|
|
267
273
|
width: 100%;
|
|
@@ -309,8 +315,213 @@
|
|
|
309
315
|
height: 100%;
|
|
310
316
|
}
|
|
311
317
|
|
|
312
|
-
|
|
313
|
-
|
|
318
|
+
.count-down .drag-point {
|
|
319
|
+
cursor: default!important
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.count-down .ani-wrap {
|
|
323
|
+
width: 100%;
|
|
324
|
+
height: 100%
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
328
|
+
display: -webkit-box;
|
|
329
|
+
display: -ms-flexbox;
|
|
330
|
+
display: flex;
|
|
331
|
+
height: 100%;
|
|
332
|
+
-webkit-box-align: center;
|
|
333
|
+
-ms-flex-align: center;
|
|
334
|
+
align-items: center;
|
|
335
|
+
-webkit-box-pack: center;
|
|
336
|
+
-ms-flex-pack: center;
|
|
337
|
+
justify-content: center
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.count-down .finish-cont {
|
|
341
|
+
width: 100%
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.count-down .count-flip {
|
|
345
|
+
display: -webkit-box;
|
|
346
|
+
display: -ms-flexbox;
|
|
347
|
+
display: flex;
|
|
348
|
+
height: 100%;
|
|
349
|
+
-webkit-box-align: center;
|
|
350
|
+
-ms-flex-align: center;
|
|
351
|
+
align-items: center;
|
|
352
|
+
-webkit-box-pack: center;
|
|
353
|
+
-ms-flex-pack: center;
|
|
354
|
+
justify-content: center
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.count-down .count-flip .numscroll {
|
|
358
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
359
|
+
animation: numscroll .4s ease-in-out;
|
|
360
|
+
-webkit-animation-fill-mode: both;
|
|
361
|
+
animation-fill-mode: both
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
365
|
+
-webkit-transition: all .3s ease-in-out;
|
|
366
|
+
transition: all .3s ease-in-out;
|
|
367
|
+
opacity: .6;
|
|
368
|
+
-webkit-transform: scale(.5)!important;
|
|
369
|
+
transform: scale(.5)!important
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
@-webkit-keyframes numscroll {
|
|
373
|
+
0% {
|
|
374
|
+
-webkit-transform: translateZ(0);
|
|
375
|
+
transform: translateZ(0)
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
to {
|
|
379
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
380
|
+
transform: translate3d(0,100%,0)
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
@keyframes numscroll {
|
|
385
|
+
0% {
|
|
386
|
+
-webkit-transform: translateZ(0);
|
|
387
|
+
transform: translateZ(0)
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
to {
|
|
391
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
392
|
+
transform: translate3d(0,100%,0)
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.count-down .count-flip .c-com {
|
|
397
|
+
min-width: 50px;
|
|
398
|
+
height: auto;
|
|
399
|
+
margin: 6px;
|
|
400
|
+
padding: 5px 0 6px;
|
|
401
|
+
background-color: #111
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
405
|
+
display: -webkit-box;
|
|
406
|
+
display: -ms-flexbox;
|
|
407
|
+
display: flex;
|
|
408
|
+
position: relative;
|
|
409
|
+
width: 100%;
|
|
410
|
+
height: 100%;
|
|
411
|
+
-webkit-box-align: center;
|
|
412
|
+
-ms-flex-align: center;
|
|
413
|
+
align-items: center
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
417
|
+
line-height: 27px
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
421
|
+
position: absolute;
|
|
422
|
+
top: -100%
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
426
|
+
-webkit-transform: scale(1);
|
|
427
|
+
transform: scale(1)
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.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 {
|
|
431
|
+
display: none!important
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.c-wrap {
|
|
435
|
+
width: 100%;
|
|
436
|
+
height: 100%;
|
|
437
|
+
overflow: hidden;
|
|
438
|
+
font-size: 0
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.c-wrap.c-day-wrap {
|
|
442
|
+
text-align: center
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.c-wrap.c-day-wrap .c-num {
|
|
446
|
+
width: auto
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.c-wrap .c-num {
|
|
450
|
+
display: inline-block;
|
|
451
|
+
width: 50%;
|
|
452
|
+
overflow: hidden;
|
|
453
|
+
font-size: 20px;
|
|
454
|
+
color: #999
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.c-wrap .c-left .flex-wrap {
|
|
458
|
+
display: -webkit-box;
|
|
459
|
+
display: -ms-flexbox;
|
|
460
|
+
display: flex;
|
|
461
|
+
-webkit-box-pack: end;
|
|
462
|
+
-ms-flex-pack: end;
|
|
463
|
+
justify-content: flex-end
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.c-wrap .c-text {
|
|
467
|
+
display: -webkit-box;
|
|
468
|
+
display: -ms-flexbox;
|
|
469
|
+
display: flex;
|
|
470
|
+
width: 100%;
|
|
471
|
+
font-size: 12px;
|
|
472
|
+
-webkit-box-pack: center;
|
|
473
|
+
-ms-flex-pack: center;
|
|
474
|
+
justify-content: center;
|
|
475
|
+
-webkit-box-align: center;
|
|
476
|
+
-ms-flex-align: center;
|
|
477
|
+
align-items: center;
|
|
478
|
+
white-space: nowrap
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
.call {
|
|
483
|
+
position: absolute;
|
|
484
|
+
cursor: pointer;
|
|
485
|
+
user-select: none;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.bohao-container {
|
|
489
|
+
display: flex;
|
|
490
|
+
justify-content: center;
|
|
491
|
+
align-items: center;
|
|
492
|
+
width: 100%;
|
|
493
|
+
height: 100%;
|
|
494
|
+
overflow: hidden;
|
|
495
|
+
transition: opacity 0.2s;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.bohao-container:hover {
|
|
499
|
+
opacity: 0.9;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.bohao-content {
|
|
503
|
+
display: flex;
|
|
504
|
+
align-items: center;
|
|
505
|
+
justify-content: center;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.btn-text {
|
|
509
|
+
margin-left: 10px;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
/* 这里可以添加实际的电话图标样式 */
|
|
513
|
+
.iconfont.hb-tel {
|
|
514
|
+
display: inline-block;
|
|
515
|
+
width: 16px;
|
|
516
|
+
height: 16px;
|
|
517
|
+
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/></svg>');
|
|
518
|
+
background-repeat: no-repeat;
|
|
519
|
+
background-position: center;
|
|
520
|
+
background-size: contain;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
@font-face {
|
|
524
|
+
font-family: "iconfont"; /* Project id 3350423 */
|
|
314
525
|
src: url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.woff2?t=1737679854669') format('woff2'),
|
|
315
526
|
url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.woff?t=1737679854669') format('woff'),
|
|
316
527
|
url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.ttf?t=1737679854669') format('truetype'),
|
|
@@ -667,51 +878,61 @@
|
|
|
667
878
|
content: "\E6A6";
|
|
668
879
|
}
|
|
669
880
|
|
|
670
|
-
.
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
881
|
+
.like-button {
|
|
882
|
+
display: flex;
|
|
883
|
+
flex-direction: column;
|
|
884
|
+
align-items: center;
|
|
885
|
+
cursor: pointer;
|
|
674
886
|
}
|
|
675
887
|
|
|
676
|
-
.
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
height: 100%;
|
|
888
|
+
.icon-heart {
|
|
889
|
+
font-size: 24px;
|
|
890
|
+
color: #e74c3c;
|
|
680
891
|
}
|
|
681
892
|
|
|
682
|
-
.
|
|
683
|
-
|
|
684
|
-
height: 100%;
|
|
893
|
+
.liked {
|
|
894
|
+
color: #f00; /* 更改颜色以示已赞 */
|
|
685
895
|
}
|
|
686
896
|
|
|
687
|
-
.
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
897
|
+
.like-count {
|
|
898
|
+
margin-top: 4px;
|
|
899
|
+
font-size: 16px;
|
|
900
|
+
color: #333;
|
|
691
901
|
}
|
|
692
902
|
|
|
693
|
-
.
|
|
903
|
+
.ant-input-number {
|
|
904
|
+
box-sizing: border-box;
|
|
905
|
+
margin: 0;
|
|
906
|
+
padding: 0;
|
|
907
|
+
color: rgba(0, 0, 0, 0.88);
|
|
908
|
+
font-size: 14px;
|
|
909
|
+
line-height: 1.5714285714285714;
|
|
910
|
+
list-style: none;
|
|
911
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
694
912
|
position: relative;
|
|
913
|
+
display: inline-block;
|
|
695
914
|
width: 100%;
|
|
696
|
-
|
|
697
|
-
background-
|
|
698
|
-
background-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
top: 50%;
|
|
706
|
-
transform: translate(-50%, -50%);
|
|
707
|
-
width: 50px;
|
|
708
|
-
height: 50px;
|
|
709
|
-
opacity: 0.8;
|
|
710
|
-
transition: opacity 0.2s;
|
|
915
|
+
min-width: 0;
|
|
916
|
+
background-color: #ffffff;
|
|
917
|
+
background-image: none;
|
|
918
|
+
border-width: 1px;
|
|
919
|
+
border-style: solid;
|
|
920
|
+
border-color: #d9d9d9;
|
|
921
|
+
border-radius: 6px;
|
|
922
|
+
transition: all 0.2s;
|
|
923
|
+
border: 1px solid #d9d9d9;
|
|
711
924
|
}
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
925
|
+
.ant-form-item {
|
|
926
|
+
box-sizing: border-box;
|
|
927
|
+
margin: 0;
|
|
928
|
+
padding: 0;
|
|
929
|
+
color: rgba(0, 0, 0, 0.88);
|
|
930
|
+
font-size: 14px;
|
|
931
|
+
line-height: 1.5714285714285714;
|
|
932
|
+
list-style: none;
|
|
933
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
934
|
+
margin-bottom: 0px;
|
|
935
|
+
vertical-align: top;
|
|
715
936
|
}
|
|
716
937
|
|
|
717
938
|
.effect-container {
|
|
@@ -771,235 +992,430 @@
|
|
|
771
992
|
animation: snow 5s linear infinite
|
|
772
993
|
}
|
|
773
994
|
|
|
774
|
-
.count-down .drag-point {
|
|
775
|
-
cursor: default!important
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
.count-down .ani-wrap {
|
|
779
|
-
width: 100%;
|
|
780
|
-
height: 100%
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
.count-down .count-text,.count-down .finish-cont {
|
|
784
|
-
display: -webkit-box;
|
|
785
|
-
display: -ms-flexbox;
|
|
786
|
-
display: flex;
|
|
787
|
-
height: 100%;
|
|
788
|
-
-webkit-box-align: center;
|
|
789
|
-
-ms-flex-align: center;
|
|
790
|
-
align-items: center;
|
|
791
|
-
-webkit-box-pack: center;
|
|
792
|
-
-ms-flex-pack: center;
|
|
793
|
-
justify-content: center
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
.count-down .finish-cont {
|
|
797
|
-
width: 100%
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
.count-down .count-flip {
|
|
801
|
-
display: -webkit-box;
|
|
802
|
-
display: -ms-flexbox;
|
|
803
|
-
display: flex;
|
|
804
|
-
height: 100%;
|
|
805
|
-
-webkit-box-align: center;
|
|
806
|
-
-ms-flex-align: center;
|
|
807
|
-
align-items: center;
|
|
808
|
-
-webkit-box-pack: center;
|
|
809
|
-
-ms-flex-pack: center;
|
|
810
|
-
justify-content: center
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
.count-down .count-flip .numscroll {
|
|
814
|
-
-webkit-animation: numscroll .4s ease-in-out;
|
|
815
|
-
animation: numscroll .4s ease-in-out;
|
|
816
|
-
-webkit-animation-fill-mode: both;
|
|
817
|
-
animation-fill-mode: both
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.count-down .count-flip .numscroll .curr-num {
|
|
821
|
-
-webkit-transition: all .3s ease-in-out;
|
|
822
|
-
transition: all .3s ease-in-out;
|
|
823
|
-
opacity: .6;
|
|
824
|
-
-webkit-transform: scale(.5)!important;
|
|
825
|
-
transform: scale(.5)!important
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
@-webkit-keyframes numscroll {
|
|
829
|
-
0% {
|
|
830
|
-
-webkit-transform: translateZ(0);
|
|
831
|
-
transform: translateZ(0)
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
to {
|
|
835
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
836
|
-
transform: translate3d(0,100%,0)
|
|
837
|
-
}
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
@keyframes numscroll {
|
|
841
|
-
0% {
|
|
842
|
-
-webkit-transform: translateZ(0);
|
|
843
|
-
transform: translateZ(0)
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
to {
|
|
847
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
848
|
-
transform: translate3d(0,100%,0)
|
|
849
|
-
}
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.count-down .count-flip .c-com {
|
|
853
|
-
min-width: 50px;
|
|
854
|
-
height: auto;
|
|
855
|
-
margin: 6px;
|
|
856
|
-
padding: 5px 0 6px;
|
|
857
|
-
background-color: #111
|
|
858
|
-
}
|
|
859
|
-
|
|
860
|
-
.count-down .count-flip .c-com .flex-wrap {
|
|
861
|
-
display: -webkit-box;
|
|
862
|
-
display: -ms-flexbox;
|
|
863
|
-
display: flex;
|
|
864
|
-
position: relative;
|
|
865
|
-
width: 100%;
|
|
866
|
-
height: 100%;
|
|
867
|
-
-webkit-box-align: center;
|
|
868
|
-
-ms-flex-align: center;
|
|
869
|
-
align-items: center
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
873
|
-
line-height: 27px
|
|
874
|
-
}
|
|
875
|
-
|
|
876
|
-
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
877
|
-
position: absolute;
|
|
878
|
-
top: -100%
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
882
|
-
-webkit-transform: scale(1);
|
|
883
|
-
transform: scale(1)
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
.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 {
|
|
887
|
-
display: none!important
|
|
888
|
-
}
|
|
889
|
-
|
|
890
|
-
.c-wrap {
|
|
891
|
-
width: 100%;
|
|
892
|
-
height: 100%;
|
|
893
|
-
overflow: hidden;
|
|
894
|
-
font-size: 0
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
.c-wrap.c-day-wrap {
|
|
898
|
-
text-align: center
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.c-wrap.c-day-wrap .c-num {
|
|
902
|
-
width: auto
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
.c-wrap .c-num {
|
|
906
|
-
display: inline-block;
|
|
907
|
-
width: 50%;
|
|
908
|
-
overflow: hidden;
|
|
909
|
-
font-size: 20px;
|
|
910
|
-
color: #999
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
.c-wrap .c-left .flex-wrap {
|
|
914
|
-
display: -webkit-box;
|
|
915
|
-
display: -ms-flexbox;
|
|
916
|
-
display: flex;
|
|
917
|
-
-webkit-box-pack: end;
|
|
918
|
-
-ms-flex-pack: end;
|
|
919
|
-
justify-content: flex-end
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
.c-wrap .c-text {
|
|
923
|
-
display: -webkit-box;
|
|
924
|
-
display: -ms-flexbox;
|
|
925
|
-
display: flex;
|
|
926
|
-
width: 100%;
|
|
927
|
-
font-size: 12px;
|
|
928
|
-
-webkit-box-pack: center;
|
|
929
|
-
-ms-flex-pack: center;
|
|
930
|
-
justify-content: center;
|
|
931
|
-
-webkit-box-align: center;
|
|
932
|
-
-ms-flex-align: center;
|
|
933
|
-
align-items: center;
|
|
934
|
-
white-space: nowrap
|
|
935
|
-
}
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
/* 设计稿尺寸(如375px下20px的按钮) */
|
|
939
|
-
.btn {
|
|
940
|
-
width: 20px; /* 直接写设计稿px */
|
|
941
|
-
height: 10px;
|
|
942
|
-
font-size: 14px;
|
|
943
|
-
}
|
|
944
|
-
|
|
945
995
|
.uni-build-up-component {
|
|
946
996
|
}
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
997
|
+
|
|
998
|
+
body, html {
|
|
999
|
+
width: 100%;
|
|
1000
|
+
height: 100%;
|
|
1001
|
+
}
|
|
1002
|
+
* {
|
|
1003
|
+
padding: 0;
|
|
1004
|
+
margin: 0;
|
|
1005
|
+
box-sizing: border-box;
|
|
1006
|
+
white-space: normal;
|
|
1007
|
+
word-break: break-all;
|
|
1008
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
#index {
|
|
1012
|
+
position: relative;
|
|
1013
|
+
width: 100%;
|
|
1014
|
+
height: 100%;
|
|
1015
|
+
overflow: hidden;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
#page-list {
|
|
1019
|
+
position: relative;
|
|
1020
|
+
width: 100%;
|
|
1021
|
+
height: 100%;
|
|
1022
|
+
max-width: 800px;
|
|
1023
|
+
margin: 0 auto;
|
|
1024
|
+
z-index: 1
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
#page-list.hardware .eles {
|
|
1028
|
+
will-change: transform
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
#page-list .bg-wrap {
|
|
1032
|
+
position: absolute;
|
|
1033
|
+
left: 0;
|
|
1034
|
+
top: 0;
|
|
1035
|
+
right: 0;
|
|
1036
|
+
bottom: 0;
|
|
1037
|
+
z-index: -1
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
#page-list .ani-pause .ani-wrap {
|
|
1041
|
+
animation-play-state: paused!important;
|
|
1042
|
+
-webkit-animation-play-state: paused!important
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
#page-list .audio-wrap {
|
|
1046
|
+
z-index: 10
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
#page-list .audio-wrap,#page-list .page-item {
|
|
1050
|
+
position: absolute;
|
|
1051
|
+
left: 0;
|
|
1052
|
+
top: 0;
|
|
1053
|
+
right: 0;
|
|
1054
|
+
bottom: 0
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
#page-list .page-item {
|
|
1058
|
+
z-index: 0;
|
|
1059
|
+
overflow: hidden;
|
|
1060
|
+
display: none;
|
|
1061
|
+
visibility: hidden;
|
|
1062
|
+
transform-style: preserve-3d;
|
|
1063
|
+
-webkit-backface-visibility: hidden;
|
|
1064
|
+
backface-visibility: hidden;
|
|
1065
|
+
transition-timing-function: cubic-bezier(.1,.57,.1,1)
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
#page-list .page-item .count-down {
|
|
1069
|
+
display: none
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
#page-list .page-item .has-ani {
|
|
1073
|
+
display: none!important
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
#page-list .page-item .ele-effect,#page-list .page-item .page-bg {
|
|
1077
|
+
display: none
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
#page-list .page-item .limit-ani .ani-wrap {
|
|
1081
|
+
animation: none!important
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
#page-list .page-item .ani-pause .ani-wrap {
|
|
1085
|
+
animation-play-state: paused!important;
|
|
1086
|
+
-webkit-animation-play-state: paused!important
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
#page-list .page-item .showAniEle .has-ani {
|
|
1090
|
+
display: block!important
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
#page-list .page-item .showAniEle .page-bg {
|
|
1094
|
+
display: block
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
#page-list .page-item .scroll-wrap {
|
|
1098
|
+
position: relative;
|
|
1099
|
+
width: 100%;
|
|
1100
|
+
overflow: hidden
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
#page-list .page-item .amap-maps {
|
|
1104
|
+
display: none
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
#page-list .page-item.current {
|
|
1108
|
+
z-index: 1;
|
|
1109
|
+
display: block;
|
|
1110
|
+
visibility: visible
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
#page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
|
|
1114
|
+
display: block
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
#page-list .page-item.current .page-wrap .eles {
|
|
1118
|
+
text-align: left
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
#page-list .page-item.current .page-wrap .page-bg {
|
|
1122
|
+
display: block
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
#page-list .page-item.current .page-wrap .has-ani {
|
|
1126
|
+
display: block!important
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
#page-list .page-item.visibility {
|
|
1130
|
+
display: block;
|
|
1131
|
+
visibility: hidden
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
#page-list .page-item.active {
|
|
1135
|
+
z-index: 2;
|
|
1136
|
+
visibility: visible
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
#page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
|
|
1140
|
+
display: block
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
#page-list .page-item .page-wrap {
|
|
1144
|
+
position: relative;
|
|
1145
|
+
width: 100%;
|
|
1146
|
+
height: 100%;
|
|
1147
|
+
overflow: hidden;
|
|
1148
|
+
z-index: 1
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
#page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
|
|
1152
|
+
position: absolute;
|
|
1153
|
+
right: 0;
|
|
1154
|
+
left: 0;
|
|
1155
|
+
top: 0;
|
|
1156
|
+
bottom: 0;
|
|
1157
|
+
width: 100%;
|
|
1158
|
+
height: 100%;
|
|
1159
|
+
overflow: hidden
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
#page-list .page-item .page-wrap .page-bg {
|
|
1163
|
+
background-size: cover;
|
|
1164
|
+
background-repeat: no-repeat;
|
|
1165
|
+
background-position: 50% 50%;
|
|
1166
|
+
z-index: 0
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
#page-list .page-item .page-wrap .ele-wrap {
|
|
1170
|
+
z-index: 1
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
#page-list .page-item .page-wrap .eles {
|
|
1174
|
+
position: absolute
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
.no-ani .ani-wrap,.no-ani .ele-text-long {
|
|
1178
|
+
animation: none!important
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
.scroll-mode .page-container {
|
|
1182
|
+
position: relative;
|
|
1183
|
+
min-height: 100vh;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
/* 页面切换动画 */
|
|
1187
|
+
.fade-enter-active,
|
|
1188
|
+
.fade-leave-active {
|
|
1189
|
+
transition: opacity 1.5s ease;
|
|
1190
|
+
position: absolute;
|
|
1191
|
+
width: 100%;
|
|
1192
|
+
height: 100%;
|
|
1193
|
+
}
|
|
1194
|
+
.fade-enter-from {
|
|
1195
|
+
opacity: 0;
|
|
1196
|
+
}
|
|
1197
|
+
.fade-leave-to {
|
|
1198
|
+
opacity: 0;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.fadeInDown-enter-active,
|
|
1202
|
+
.fadeInDown-leave-active {
|
|
1203
|
+
transition: all 1.5s ease;
|
|
1204
|
+
position: absolute;
|
|
1205
|
+
width: 100%;
|
|
1206
|
+
height: 100%;
|
|
1207
|
+
}
|
|
1208
|
+
.fadeInDown-enter-from {
|
|
1209
|
+
opacity: 0;
|
|
1210
|
+
transform: translateY(-100%);
|
|
1211
|
+
}
|
|
1212
|
+
.fadeInDown-leave-to {
|
|
1213
|
+
opacity: 0;
|
|
1214
|
+
transform: translateY(100%);
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
/* 垂直滑动动画 */
|
|
1218
|
+
.slide-up-enter-active,
|
|
1219
|
+
.slide-up-leave-active,
|
|
1220
|
+
.slide-down-enter-active,
|
|
1221
|
+
.slide-down-leave-active {
|
|
1222
|
+
transition: transform 1.5s ease;
|
|
1223
|
+
position: absolute;
|
|
1224
|
+
width: 100%;
|
|
1225
|
+
height: 100%;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.slide-up-enter-from {
|
|
1229
|
+
transform: translateY(100%);
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
.slide-up-leave-to {
|
|
1233
|
+
transform: translateY(-100%);
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.slide-down-enter-from {
|
|
1237
|
+
transform: translateY(-100%);
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.slide-down-leave-to {
|
|
1241
|
+
transform: translateY(100%);
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
/* 页面背景动画 */
|
|
1245
|
+
.animate-fadeInDown {
|
|
1246
|
+
animation: fadeInDown 1.5s ease 0s 1 normal backwards running;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.animate-fadeInUp {
|
|
1250
|
+
animation: fadeInUp 1.5s ease 0s 1 normal backwards running;
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
.animate-fadeInLeft {
|
|
1254
|
+
animation: fadeInLeft 1.5s ease 0s 1 normal backwards running;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.animate-fadeInRight {
|
|
1258
|
+
animation: fadeInRight 1.5s ease 0s 1 normal backwards running;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.animate-zoomIn {
|
|
1262
|
+
animation: zoomIn 1.5s ease 0s 1 normal backwards running;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
.animate-zoomOut {
|
|
1266
|
+
animation: zoomOut 1.5s ease 0s 1 normal backwards running;
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
@keyframes fadeInDown {
|
|
1270
|
+
from {
|
|
1271
|
+
opacity: 0;
|
|
1272
|
+
transform: translateY(-100%);
|
|
1273
|
+
}
|
|
1274
|
+
to {
|
|
1275
|
+
opacity: 1;
|
|
1276
|
+
transform: translateY(0);
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
@keyframes fadeInUp {
|
|
1281
|
+
from {
|
|
1282
|
+
opacity: 0;
|
|
1283
|
+
transform: translateY(100%);
|
|
1284
|
+
}
|
|
1285
|
+
to {
|
|
1286
|
+
opacity: 1;
|
|
1287
|
+
transform: translateY(0);
|
|
1288
|
+
}
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
@keyframes fadeInLeft {
|
|
1292
|
+
from {
|
|
1293
|
+
opacity: 0;
|
|
1294
|
+
transform: translateX(-100%);
|
|
1295
|
+
}
|
|
1296
|
+
to {
|
|
1297
|
+
opacity: 1;
|
|
1298
|
+
transform: translateX(0);
|
|
1299
|
+
}
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
@keyframes fadeInRight {
|
|
1303
|
+
from {
|
|
1304
|
+
opacity: 0;
|
|
1305
|
+
transform: translateX(100%);
|
|
1306
|
+
}
|
|
1307
|
+
to {
|
|
1308
|
+
opacity: 1;
|
|
1309
|
+
transform: translateX(0);
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
@keyframes zoomIn {
|
|
1314
|
+
from {
|
|
1315
|
+
opacity: 0;
|
|
1316
|
+
transform: scale(0.5);
|
|
1317
|
+
}
|
|
1318
|
+
to {
|
|
1319
|
+
opacity: 1;
|
|
1320
|
+
transform: scale(1);
|
|
1321
|
+
}
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
@keyframes zoomOut {
|
|
1325
|
+
from {
|
|
1326
|
+
opacity: 0;
|
|
1327
|
+
transform: scale(1.5);
|
|
1328
|
+
}
|
|
1329
|
+
to {
|
|
1330
|
+
opacity: 1;
|
|
1331
|
+
transform: scale(1);
|
|
1332
|
+
}
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
/* 确保循环时的过渡效果平滑 */
|
|
1336
|
+
.pages-wrapper {
|
|
1337
|
+
position: relative;
|
|
1338
|
+
width: 100%;
|
|
1339
|
+
height: 100%;
|
|
1340
|
+
overflow: hidden;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
.page-container {
|
|
1344
|
+
position: absolute;
|
|
1345
|
+
width: 100%;
|
|
1346
|
+
height: 100%;
|
|
1347
|
+
background-size: cover;
|
|
1348
|
+
background-position: center;
|
|
1349
|
+
will-change: transform;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
/* 设计稿尺寸(如375px下20px的按钮) */
|
|
1353
|
+
.btn {
|
|
1354
|
+
width: 20px; /* 直接写设计稿px */
|
|
1355
|
+
height: 10px;
|
|
1356
|
+
font-size: 14px;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
.uni-lotties-component {
|
|
1360
|
+
width: 100%;
|
|
1361
|
+
height: 100%;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
/* Iconfont definition */
|
|
1365
|
+
@font-face {
|
|
1366
|
+
font-family: iconfont;
|
|
1367
|
+
src: url(https://h5static.hunbei.com/preview/static/fonts/iconfont.f1262e4.woff2) format("woff2"),
|
|
1368
|
+
url(https://h5static.hunbei.com/preview/static/fonts/iconfont.788d827.woff) format("woff"),
|
|
1369
|
+
url(https://h5static.hunbei.com/preview/static/fonts/iconfont.9541e59.ttf) format("truetype");
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
.iconfont {
|
|
1373
|
+
font-family: iconfont !important;
|
|
1374
|
+
font-size: 16px;
|
|
1375
|
+
font-style: normal;
|
|
1376
|
+
-webkit-font-smoothing: antialiased;
|
|
1377
|
+
-moz-osx-font-smoothing: grayscale;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
.icon-danmuliebiao1:before {
|
|
1381
|
+
content: "\E68A";
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
.icon-cuowu2:before {
|
|
1385
|
+
content: "\E65E";
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
i {
|
|
1389
|
+
font-style: normal;
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
.v-modal {
|
|
1393
|
+
position: fixed;
|
|
1394
|
+
left: 0;
|
|
1395
|
+
top: 0;
|
|
1396
|
+
width: 100%;
|
|
1397
|
+
height: 100%;
|
|
1398
|
+
opacity: .5;
|
|
1399
|
+
background: #000;
|
|
1400
|
+
}
|
|
1401
|
+
/* 底部工具栏样式 */
|
|
1402
|
+
#toolbarNew {
|
|
1403
|
+
position: fixed;
|
|
1404
|
+
left: 0;
|
|
1405
|
+
bottom: 0;
|
|
1406
|
+
width: 100%;
|
|
1407
|
+
padding: 12px 0;
|
|
1408
|
+
background: url('https://unika-static-dev.oss-ap-southeast-7.aliyuncs.com/inputBg.png') 0 0 repeat-x;
|
|
1409
|
+
z-index: 100;
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
.toolbar {
|
|
1413
|
+
display: flex;
|
|
1414
|
+
align-items: center;
|
|
1415
|
+
padding: 0 10px;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
.bar-left {
|
|
1003
1419
|
position: relative;
|
|
1004
1420
|
flex: 1;
|
|
1005
1421
|
}
|
|
@@ -1752,513 +2168,180 @@ i {
|
|
|
1752
2168
|
.give-gift img {
|
|
1753
2169
|
max-width: 300px;
|
|
1754
2170
|
max-height: 300px;
|
|
1755
|
-
margin-top: 20px;
|
|
1756
|
-
}
|
|
1757
|
-
|
|
1758
|
-
/* 留言成功弹窗样式 */
|
|
1759
|
-
.mess-success-popup {
|
|
1760
|
-
position: fixed;
|
|
1761
|
-
top: 0;
|
|
1762
|
-
left: 0;
|
|
1763
|
-
right: 0;
|
|
1764
|
-
bottom: 0;
|
|
1765
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
1766
|
-
z-index: 2003;
|
|
1767
|
-
display: flex;
|
|
1768
|
-
justify-content: center;
|
|
1769
|
-
align-items: center;
|
|
1770
|
-
}
|
|
1771
|
-
|
|
1772
|
-
.mess-success-popup .gift-popup {
|
|
1773
|
-
width: 300px;
|
|
1774
|
-
height: 200px;
|
|
1775
|
-
background: url(https://h5static.hunbei.com/preview/static/img/bg-color.7ddf71c.png) no-repeat;
|
|
1776
|
-
border-radius: 10px;
|
|
1777
|
-
padding: 20px;
|
|
1778
|
-
text-align: center;
|
|
1779
|
-
position: relative;
|
|
1780
|
-
}
|
|
1781
|
-
|
|
1782
|
-
.mess-success-popup .gift-popup .icon-cuowu2 {
|
|
1783
|
-
position: absolute;
|
|
1784
|
-
top: 10px;
|
|
1785
|
-
right: 10px;
|
|
1786
|
-
cursor: pointer;
|
|
1787
|
-
}
|
|
1788
|
-
|
|
1789
|
-
.mess-success-popup .gift-popup .toast {
|
|
1790
|
-
display: flex;
|
|
1791
|
-
align-items: center;
|
|
1792
|
-
justify-content: center;
|
|
1793
|
-
margin: 10px 0;
|
|
1794
|
-
}
|
|
1795
|
-
|
|
1796
|
-
.mess-success-popup .gift-popup .toast img {
|
|
1797
|
-
width: 20px;
|
|
1798
|
-
height: 15px;
|
|
1799
|
-
margin: 0 5px;
|
|
1800
|
-
}
|
|
1801
|
-
|
|
1802
|
-
.mess-success-popup .gift-popup .title {
|
|
1803
|
-
margin: 15px 0;
|
|
1804
|
-
font-size: 16px;
|
|
1805
|
-
color: #333;
|
|
1806
|
-
}
|
|
1807
|
-
|
|
1808
|
-
.mess-success-popup .gift-popup .btn {
|
|
1809
|
-
background: linear-gradient(270deg, #ff4874, #ff9061);
|
|
1810
|
-
color: white;
|
|
1811
|
-
border: none;
|
|
1812
|
-
padding: 10px 20px;
|
|
1813
|
-
border-radius: 20px;
|
|
1814
|
-
margin-top: 15px;
|
|
1815
|
-
cursor: pointer;
|
|
1816
|
-
}
|
|
1817
|
-
|
|
1818
|
-
/* 新增图片加载动画样式 */
|
|
1819
|
-
.gift-image-container {
|
|
1820
|
-
position: relative;
|
|
1821
|
-
width: 300px;
|
|
1822
|
-
height: 300px;
|
|
1823
|
-
margin: 20px 0;
|
|
1824
|
-
overflow: hidden;
|
|
1825
|
-
}
|
|
1826
|
-
|
|
1827
|
-
.gift-image-container img {
|
|
1828
|
-
width: 100%;
|
|
1829
|
-
height: 100%;
|
|
1830
|
-
object-fit: contain;
|
|
1831
|
-
opacity: 0;
|
|
1832
|
-
transition: opacity 0.5s ease-in-out;
|
|
1833
|
-
}
|
|
1834
|
-
|
|
1835
|
-
.gift-image-container img.loaded {
|
|
1836
|
-
opacity: 1;
|
|
2171
|
+
margin-top: 20px;
|
|
1837
2172
|
}
|
|
1838
2173
|
|
|
1839
|
-
|
|
1840
|
-
|
|
2174
|
+
/* 留言成功弹窗样式 */
|
|
2175
|
+
.mess-success-popup {
|
|
2176
|
+
position: fixed;
|
|
1841
2177
|
top: 0;
|
|
1842
2178
|
left: 0;
|
|
1843
|
-
|
|
1844
|
-
|
|
2179
|
+
right: 0;
|
|
2180
|
+
bottom: 0;
|
|
2181
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
2182
|
+
z-index: 2003;
|
|
1845
2183
|
display: flex;
|
|
1846
2184
|
justify-content: center;
|
|
1847
2185
|
align-items: center;
|
|
1848
|
-
background: rgba(255, 255, 255, 0.8);
|
|
1849
|
-
}
|
|
1850
|
-
|
|
1851
|
-
.loading-spinner {
|
|
1852
|
-
width: 40px;
|
|
1853
|
-
height: 40px;
|
|
1854
|
-
border: 4px solid #f3f3f3;
|
|
1855
|
-
border-top: 4px solid #ed5566;
|
|
1856
|
-
border-radius: 50%;
|
|
1857
|
-
animation: spin 1s linear infinite;
|
|
1858
|
-
}
|
|
1859
|
-
|
|
1860
|
-
@keyframes spin {
|
|
1861
|
-
0% { transform: rotate(0deg); }
|
|
1862
|
-
100% { transform: rotate(360deg); }
|
|
1863
|
-
}
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
.uni-lotties-component {
|
|
1867
|
-
width: 100%;
|
|
1868
|
-
height: 100%;
|
|
1869
2186
|
}
|
|
1870
|
-
|
|
1871
|
-
.uni-svg-component {
|
|
1872
|
-
display: inline-block;
|
|
1873
|
-
}
|
|
1874
2187
|
|
|
1875
|
-
.
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
list-style: none;
|
|
1883
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
2188
|
+
.mess-success-popup .gift-popup {
|
|
2189
|
+
width: 300px;
|
|
2190
|
+
height: 200px;
|
|
2191
|
+
background: url(https://h5static.hunbei.com/preview/static/img/bg-color.7ddf71c.png) no-repeat;
|
|
2192
|
+
border-radius: 10px;
|
|
2193
|
+
padding: 20px;
|
|
2194
|
+
text-align: center;
|
|
1884
2195
|
position: relative;
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
}
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
z-index: 0;
|
|
1971
|
-
overflow: hidden;
|
|
1972
|
-
display: none;
|
|
1973
|
-
visibility: hidden;
|
|
1974
|
-
transform-style: preserve-3d;
|
|
1975
|
-
-webkit-backface-visibility: hidden;
|
|
1976
|
-
backface-visibility: hidden;
|
|
1977
|
-
transition-timing-function: cubic-bezier(.1,.57,.1,1)
|
|
1978
|
-
}
|
|
1979
|
-
|
|
1980
|
-
#page-list .page-item .count-down {
|
|
1981
|
-
display: none
|
|
1982
|
-
}
|
|
1983
|
-
|
|
1984
|
-
#page-list .page-item .has-ani {
|
|
1985
|
-
display: none!important
|
|
1986
|
-
}
|
|
1987
|
-
|
|
1988
|
-
#page-list .page-item .ele-effect,#page-list .page-item .page-bg {
|
|
1989
|
-
display: none
|
|
1990
|
-
}
|
|
1991
|
-
|
|
1992
|
-
#page-list .page-item .limit-ani .ani-wrap {
|
|
1993
|
-
animation: none!important
|
|
1994
|
-
}
|
|
1995
|
-
|
|
1996
|
-
#page-list .page-item .ani-pause .ani-wrap {
|
|
1997
|
-
animation-play-state: paused!important;
|
|
1998
|
-
-webkit-animation-play-state: paused!important
|
|
1999
|
-
}
|
|
2000
|
-
|
|
2001
|
-
#page-list .page-item .showAniEle .has-ani {
|
|
2002
|
-
display: block!important
|
|
2003
|
-
}
|
|
2004
|
-
|
|
2005
|
-
#page-list .page-item .showAniEle .page-bg {
|
|
2006
|
-
display: block
|
|
2007
|
-
}
|
|
2008
|
-
|
|
2009
|
-
#page-list .page-item .scroll-wrap {
|
|
2010
|
-
position: relative;
|
|
2011
|
-
width: 100%;
|
|
2012
|
-
overflow: hidden
|
|
2013
|
-
}
|
|
2014
|
-
|
|
2015
|
-
#page-list .page-item .amap-maps {
|
|
2016
|
-
display: none
|
|
2017
|
-
}
|
|
2018
|
-
|
|
2019
|
-
#page-list .page-item.current {
|
|
2020
|
-
z-index: 1;
|
|
2021
|
-
display: block;
|
|
2022
|
-
visibility: visible
|
|
2023
|
-
}
|
|
2024
|
-
|
|
2025
|
-
#page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
|
|
2026
|
-
display: block
|
|
2027
|
-
}
|
|
2028
|
-
|
|
2029
|
-
#page-list .page-item.current .page-wrap .eles {
|
|
2030
|
-
text-align: left
|
|
2031
|
-
}
|
|
2032
|
-
|
|
2033
|
-
#page-list .page-item.current .page-wrap .page-bg {
|
|
2034
|
-
display: block
|
|
2035
|
-
}
|
|
2036
|
-
|
|
2037
|
-
#page-list .page-item.current .page-wrap .has-ani {
|
|
2038
|
-
display: block!important
|
|
2039
|
-
}
|
|
2040
|
-
|
|
2041
|
-
#page-list .page-item.visibility {
|
|
2042
|
-
display: block;
|
|
2043
|
-
visibility: hidden
|
|
2044
|
-
}
|
|
2045
|
-
|
|
2046
|
-
#page-list .page-item.active {
|
|
2047
|
-
z-index: 2;
|
|
2048
|
-
visibility: visible
|
|
2049
|
-
}
|
|
2050
|
-
|
|
2051
|
-
#page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
|
|
2052
|
-
display: block
|
|
2053
|
-
}
|
|
2054
|
-
|
|
2055
|
-
#page-list .page-item .page-wrap {
|
|
2056
|
-
position: relative;
|
|
2057
|
-
width: 100%;
|
|
2058
|
-
height: 100%;
|
|
2059
|
-
overflow: hidden;
|
|
2060
|
-
z-index: 1
|
|
2061
|
-
}
|
|
2062
|
-
|
|
2063
|
-
#page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
|
|
2064
|
-
position: absolute;
|
|
2065
|
-
right: 0;
|
|
2066
|
-
left: 0;
|
|
2067
|
-
top: 0;
|
|
2068
|
-
bottom: 0;
|
|
2069
|
-
width: 100%;
|
|
2070
|
-
height: 100%;
|
|
2071
|
-
overflow: hidden
|
|
2072
|
-
}
|
|
2073
|
-
|
|
2074
|
-
#page-list .page-item .page-wrap .page-bg {
|
|
2075
|
-
background-size: cover;
|
|
2076
|
-
background-repeat: no-repeat;
|
|
2077
|
-
background-position: 50% 50%;
|
|
2078
|
-
z-index: 0
|
|
2079
|
-
}
|
|
2080
|
-
|
|
2081
|
-
#page-list .page-item .page-wrap .ele-wrap {
|
|
2082
|
-
z-index: 1
|
|
2083
|
-
}
|
|
2084
|
-
|
|
2085
|
-
#page-list .page-item .page-wrap .eles {
|
|
2086
|
-
position: absolute
|
|
2087
|
-
}
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
.mess-success-popup .gift-popup .icon-cuowu2 {
|
|
2199
|
+
position: absolute;
|
|
2200
|
+
top: 10px;
|
|
2201
|
+
right: 10px;
|
|
2202
|
+
cursor: pointer;
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
.mess-success-popup .gift-popup .toast {
|
|
2206
|
+
display: flex;
|
|
2207
|
+
align-items: center;
|
|
2208
|
+
justify-content: center;
|
|
2209
|
+
margin: 10px 0;
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
.mess-success-popup .gift-popup .toast img {
|
|
2213
|
+
width: 20px;
|
|
2214
|
+
height: 15px;
|
|
2215
|
+
margin: 0 5px;
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
.mess-success-popup .gift-popup .title {
|
|
2219
|
+
margin: 15px 0;
|
|
2220
|
+
font-size: 16px;
|
|
2221
|
+
color: #333;
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
.mess-success-popup .gift-popup .btn {
|
|
2225
|
+
background: linear-gradient(270deg, #ff4874, #ff9061);
|
|
2226
|
+
color: white;
|
|
2227
|
+
border: none;
|
|
2228
|
+
padding: 10px 20px;
|
|
2229
|
+
border-radius: 20px;
|
|
2230
|
+
margin-top: 15px;
|
|
2231
|
+
cursor: pointer;
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
/* 新增图片加载动画样式 */
|
|
2235
|
+
.gift-image-container {
|
|
2236
|
+
position: relative;
|
|
2237
|
+
width: 300px;
|
|
2238
|
+
height: 300px;
|
|
2239
|
+
margin: 20px 0;
|
|
2240
|
+
overflow: hidden;
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
.gift-image-container img {
|
|
2244
|
+
width: 100%;
|
|
2245
|
+
height: 100%;
|
|
2246
|
+
object-fit: contain;
|
|
2247
|
+
opacity: 0;
|
|
2248
|
+
transition: opacity 0.5s ease-in-out;
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
.gift-image-container img.loaded {
|
|
2252
|
+
opacity: 1;
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2255
|
+
.image-loading {
|
|
2256
|
+
position: absolute;
|
|
2257
|
+
top: 0;
|
|
2258
|
+
left: 0;
|
|
2259
|
+
width: 100%;
|
|
2260
|
+
height: 100%;
|
|
2261
|
+
display: flex;
|
|
2262
|
+
justify-content: center;
|
|
2263
|
+
align-items: center;
|
|
2264
|
+
background: rgba(255, 255, 255, 0.8);
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
.loading-spinner {
|
|
2268
|
+
width: 40px;
|
|
2269
|
+
height: 40px;
|
|
2270
|
+
border: 4px solid #f3f3f3;
|
|
2271
|
+
border-top: 4px solid #ed5566;
|
|
2272
|
+
border-radius: 50%;
|
|
2273
|
+
animation: spin 1s linear infinite;
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2276
|
+
@keyframes spin {
|
|
2277
|
+
0% { transform: rotate(0deg); }
|
|
2278
|
+
100% { transform: rotate(360deg); }
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2088
2281
|
|
|
2089
|
-
.
|
|
2090
|
-
|
|
2282
|
+
.form-submit {
|
|
2283
|
+
cursor: pointer;
|
|
2284
|
+
transition: all 0.2s;
|
|
2285
|
+
outline: none;
|
|
2286
|
+
border: none;
|
|
2091
2287
|
}
|
|
2092
2288
|
|
|
2093
|
-
.
|
|
2094
|
-
|
|
2095
|
-
|
|
2289
|
+
.form-submit:hover {
|
|
2290
|
+
opacity: 0.9;
|
|
2291
|
+
transform: translateY(-1px);
|
|
2096
2292
|
}
|
|
2097
2293
|
|
|
2098
|
-
|
|
2099
|
-
.
|
|
2100
|
-
|
|
2101
|
-
transition: opacity 1.5s ease;
|
|
2102
|
-
position: absolute;
|
|
2103
|
-
width: 100%;
|
|
2104
|
-
height: 100%;
|
|
2105
|
-
}
|
|
2106
|
-
.fade-enter-from {
|
|
2107
|
-
opacity: 0;
|
|
2108
|
-
}
|
|
2109
|
-
.fade-leave-to {
|
|
2110
|
-
opacity: 0;
|
|
2294
|
+
.form-submit:active {
|
|
2295
|
+
opacity: 0.8;
|
|
2296
|
+
transform: translateY(0);
|
|
2111
2297
|
}
|
|
2112
2298
|
|
|
2113
|
-
.
|
|
2114
|
-
.
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
width: 100%;
|
|
2118
|
-
height: 100%;
|
|
2119
|
-
}
|
|
2120
|
-
.fadeInDown-enter-from {
|
|
2121
|
-
opacity: 0;
|
|
2122
|
-
transform: translateY(-100%);
|
|
2123
|
-
}
|
|
2124
|
-
.fadeInDown-leave-to {
|
|
2125
|
-
opacity: 0;
|
|
2126
|
-
transform: translateY(100%);
|
|
2299
|
+
.form-submit:disabled {
|
|
2300
|
+
opacity: 0.6;
|
|
2301
|
+
cursor: not-allowed;
|
|
2302
|
+
transform: none !important;
|
|
2127
2303
|
}
|
|
2128
2304
|
|
|
2129
|
-
/*
|
|
2130
|
-
.
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
transition: transform 1.5s ease;
|
|
2135
|
-
position: absolute;
|
|
2305
|
+
/* 统一错误提示样式 */
|
|
2306
|
+
.tip-cover {
|
|
2307
|
+
position: fixed;
|
|
2308
|
+
left: 0;
|
|
2309
|
+
top: 0;
|
|
2136
2310
|
width: 100%;
|
|
2137
2311
|
height: 100%;
|
|
2312
|
+
display: flex;
|
|
2313
|
+
align-items: center;
|
|
2314
|
+
justify-content: center;
|
|
2315
|
+
z-index: 999;
|
|
2316
|
+
background-color: rgba(0,0,0,.7);
|
|
2138
2317
|
}
|
|
2139
2318
|
|
|
2140
|
-
.
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
}
|
|
2147
|
-
|
|
2148
|
-
.slide-down-enter-from {
|
|
2149
|
-
transform: translateY(-100%);
|
|
2150
|
-
}
|
|
2151
|
-
|
|
2152
|
-
.slide-down-leave-to {
|
|
2153
|
-
transform: translateY(100%);
|
|
2154
|
-
}
|
|
2155
|
-
|
|
2156
|
-
/* 页面背景动画 */
|
|
2157
|
-
.animate-fadeInDown {
|
|
2158
|
-
animation: fadeInDown 1.5s ease 0s 1 normal backwards running;
|
|
2159
|
-
}
|
|
2160
|
-
|
|
2161
|
-
.animate-fadeInUp {
|
|
2162
|
-
animation: fadeInUp 1.5s ease 0s 1 normal backwards running;
|
|
2163
|
-
}
|
|
2164
|
-
|
|
2165
|
-
.animate-fadeInLeft {
|
|
2166
|
-
animation: fadeInLeft 1.5s ease 0s 1 normal backwards running;
|
|
2167
|
-
}
|
|
2168
|
-
|
|
2169
|
-
.animate-fadeInRight {
|
|
2170
|
-
animation: fadeInRight 1.5s ease 0s 1 normal backwards running;
|
|
2171
|
-
}
|
|
2172
|
-
|
|
2173
|
-
.animate-zoomIn {
|
|
2174
|
-
animation: zoomIn 1.5s ease 0s 1 normal backwards running;
|
|
2175
|
-
}
|
|
2176
|
-
|
|
2177
|
-
.animate-zoomOut {
|
|
2178
|
-
animation: zoomOut 1.5s ease 0s 1 normal backwards running;
|
|
2179
|
-
}
|
|
2180
|
-
|
|
2181
|
-
@keyframes fadeInDown {
|
|
2182
|
-
from {
|
|
2183
|
-
opacity: 0;
|
|
2184
|
-
transform: translateY(-100%);
|
|
2185
|
-
}
|
|
2186
|
-
to {
|
|
2187
|
-
opacity: 1;
|
|
2188
|
-
transform: translateY(0);
|
|
2189
|
-
}
|
|
2190
|
-
}
|
|
2191
|
-
|
|
2192
|
-
@keyframes fadeInUp {
|
|
2193
|
-
from {
|
|
2194
|
-
opacity: 0;
|
|
2195
|
-
transform: translateY(100%);
|
|
2196
|
-
}
|
|
2197
|
-
to {
|
|
2198
|
-
opacity: 1;
|
|
2199
|
-
transform: translateY(0);
|
|
2200
|
-
}
|
|
2201
|
-
}
|
|
2202
|
-
|
|
2203
|
-
@keyframes fadeInLeft {
|
|
2204
|
-
from {
|
|
2205
|
-
opacity: 0;
|
|
2206
|
-
transform: translateX(-100%);
|
|
2207
|
-
}
|
|
2208
|
-
to {
|
|
2209
|
-
opacity: 1;
|
|
2210
|
-
transform: translateX(0);
|
|
2211
|
-
}
|
|
2212
|
-
}
|
|
2213
|
-
|
|
2214
|
-
@keyframes fadeInRight {
|
|
2215
|
-
from {
|
|
2216
|
-
opacity: 0;
|
|
2217
|
-
transform: translateX(100%);
|
|
2218
|
-
}
|
|
2219
|
-
to {
|
|
2220
|
-
opacity: 1;
|
|
2221
|
-
transform: translateX(0);
|
|
2222
|
-
}
|
|
2223
|
-
}
|
|
2224
|
-
|
|
2225
|
-
@keyframes zoomIn {
|
|
2226
|
-
from {
|
|
2227
|
-
opacity: 0;
|
|
2228
|
-
transform: scale(0.5);
|
|
2229
|
-
}
|
|
2230
|
-
to {
|
|
2231
|
-
opacity: 1;
|
|
2232
|
-
transform: scale(1);
|
|
2233
|
-
}
|
|
2234
|
-
}
|
|
2235
|
-
|
|
2236
|
-
@keyframes zoomOut {
|
|
2237
|
-
from {
|
|
2238
|
-
opacity: 0;
|
|
2239
|
-
transform: scale(1.5);
|
|
2240
|
-
}
|
|
2241
|
-
to {
|
|
2242
|
-
opacity: 1;
|
|
2243
|
-
transform: scale(1);
|
|
2244
|
-
}
|
|
2245
|
-
}
|
|
2246
|
-
|
|
2247
|
-
/* 确保循环时的过渡效果平滑 */
|
|
2248
|
-
.pages-wrapper {
|
|
2249
|
-
position: relative;
|
|
2250
|
-
width: 100%;
|
|
2251
|
-
height: 100%;
|
|
2252
|
-
overflow: hidden;
|
|
2319
|
+
.tip {
|
|
2320
|
+
width: 80%;
|
|
2321
|
+
max-width: 250px;
|
|
2322
|
+
padding: 10px;
|
|
2323
|
+
border-radius: 5px;
|
|
2324
|
+
background-color: #fff;
|
|
2253
2325
|
}
|
|
2254
2326
|
|
|
2255
|
-
.
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2327
|
+
.tip-btn {
|
|
2328
|
+
display: block;
|
|
2329
|
+
margin: 25px auto;
|
|
2330
|
+
width: 120px;
|
|
2331
|
+
height: 30px;
|
|
2332
|
+
color: #fff;
|
|
2333
|
+
border-radius: 4px;
|
|
2334
|
+
text-align: center;
|
|
2335
|
+
font-size: 14px;
|
|
2336
|
+
line-height: 30px;
|
|
2337
|
+
background: #ed5566;
|
|
2338
|
+
cursor: pointer;
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2341
|
+
.tip-content {
|
|
2342
|
+
font-size: 14px;
|
|
2343
|
+
padding-top: 30px;
|
|
2344
|
+
text-align: center;
|
|
2262
2345
|
}
|
|
2263
2346
|
|
|
2264
2347
|
.form-input {
|
|
@@ -2313,91 +2396,8 @@ input::placeholder {
|
|
|
2313
2396
|
color: var(--placeholder-color, #999);
|
|
2314
2397
|
}
|
|
2315
2398
|
|
|
2316
|
-
.
|
|
2317
|
-
position: absolute;
|
|
2318
|
-
user-select: none;
|
|
2319
|
-
}
|
|
2320
|
-
|
|
2321
|
-
.f-multiple {
|
|
2322
|
-
cursor: pointer;
|
|
2323
|
-
}
|
|
2324
|
-
|
|
2325
|
-
.ani-wrap {
|
|
2326
|
-
position: relative;
|
|
2327
|
-
}
|
|
2328
|
-
|
|
2329
|
-
.fs-tit {
|
|
2330
|
-
display: flex;
|
|
2331
|
-
padding: 0 5px;
|
|
2332
|
-
height: 40px;
|
|
2333
|
-
align-items: center;
|
|
2334
|
-
white-space: nowrap;
|
|
2335
|
-
overflow: hidden;
|
|
2336
|
-
text-overflow: ellipsis;
|
|
2337
|
-
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
2338
|
-
}
|
|
2339
|
-
|
|
2340
|
-
.require {
|
|
2341
|
-
padding: 0 5px 0 0;
|
|
2342
|
-
color: red;
|
|
2343
|
-
vertical-align: middle;
|
|
2344
|
-
}
|
|
2345
|
-
|
|
2346
|
-
.f-multiple ul {
|
|
2347
|
-
padding: 15px;
|
|
2348
|
-
margin: 0;
|
|
2349
|
-
list-style: none;
|
|
2350
|
-
}
|
|
2351
|
-
|
|
2352
|
-
.f-multiple ul li {
|
|
2353
|
-
margin-top: 12px;
|
|
2354
|
-
font-size: 0;
|
|
2355
|
-
display: flex;
|
|
2356
|
-
align-items: center;
|
|
2357
|
-
cursor: pointer;
|
|
2358
|
-
}
|
|
2359
|
-
|
|
2360
|
-
.f-multiple ul li:first-child {
|
|
2361
|
-
margin-top: 0;
|
|
2362
|
-
}
|
|
2363
|
-
|
|
2364
|
-
.fs-circle {
|
|
2365
|
-
display: inline-block;
|
|
2366
|
-
width: 16px;
|
|
2367
|
-
height: 16px;
|
|
2368
|
-
border-radius: 50%;
|
|
2369
|
-
position: relative;
|
|
2370
|
-
transition: all 0.2s;
|
|
2371
|
-
}
|
|
2372
|
-
|
|
2373
|
-
.fs-circle.selected {
|
|
2374
|
-
background-color: #2687f1;
|
|
2375
|
-
border-color: #2687f1 !important;
|
|
2376
|
-
}
|
|
2377
|
-
|
|
2378
|
-
.fs-circle.selected::after {
|
|
2379
|
-
content: "";
|
|
2380
|
-
position: absolute;
|
|
2381
|
-
top: 3px;
|
|
2382
|
-
left: 3px;
|
|
2383
|
-
width: 8px;
|
|
2384
|
-
height: 8px;
|
|
2385
|
-
border-radius: 50%;
|
|
2386
|
-
background-color: white;
|
|
2387
|
-
}
|
|
2388
|
-
|
|
2389
|
-
.fs-txt {
|
|
2399
|
+
.uni-svg-component {
|
|
2390
2400
|
display: inline-block;
|
|
2391
|
-
width: calc(100% - 16px);
|
|
2392
|
-
padding-left: 8px;
|
|
2393
|
-
vertical-align: top;
|
|
2394
|
-
word-break: break-all;
|
|
2395
|
-
font-size: 14px;
|
|
2396
|
-
line-height: 1.2;
|
|
2397
|
-
}
|
|
2398
|
-
|
|
2399
|
-
.has-error .fs-tit {
|
|
2400
|
-
border-bottom-color: #ff4d4f;
|
|
2401
2401
|
}
|
|
2402
2402
|
|
|
2403
2403
|
.ele-form {
|
|
@@ -2610,92 +2610,92 @@ input::placeholder {
|
|
|
2610
2610
|
height: 100%;
|
|
2611
2611
|
z-index: 1000;
|
|
2612
2612
|
}
|
|
2613
|
-
|
|
2614
|
-
.like-button {
|
|
2615
|
-
display: flex;
|
|
2616
|
-
flex-direction: column;
|
|
2617
|
-
align-items: center;
|
|
2618
|
-
cursor: pointer;
|
|
2619
|
-
}
|
|
2620
|
-
|
|
2621
|
-
.icon-heart {
|
|
2622
|
-
font-size: 24px;
|
|
2623
|
-
color: #e74c3c;
|
|
2624
|
-
}
|
|
2625
|
-
|
|
2626
|
-
.liked {
|
|
2627
|
-
color: #f00; /* 更改颜色以示已赞 */
|
|
2628
|
-
}
|
|
2629
|
-
|
|
2630
|
-
.like-count {
|
|
2631
|
-
margin-top: 4px;
|
|
2632
|
-
font-size: 16px;
|
|
2633
|
-
color: #333;
|
|
2634
|
-
}
|
|
2635
2613
|
|
|
2636
|
-
.form
|
|
2614
|
+
.ele-form {
|
|
2615
|
+
position: absolute;
|
|
2616
|
+
user-select: none;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
.f-multiple {
|
|
2637
2620
|
cursor: pointer;
|
|
2638
|
-
transition: all 0.2s;
|
|
2639
|
-
outline: none;
|
|
2640
|
-
border: none;
|
|
2641
2621
|
}
|
|
2642
2622
|
|
|
2643
|
-
.
|
|
2644
|
-
|
|
2645
|
-
transform: translateY(-1px);
|
|
2623
|
+
.ani-wrap {
|
|
2624
|
+
position: relative;
|
|
2646
2625
|
}
|
|
2647
2626
|
|
|
2648
|
-
.
|
|
2649
|
-
|
|
2650
|
-
|
|
2627
|
+
.fs-tit {
|
|
2628
|
+
display: flex;
|
|
2629
|
+
padding: 0 5px;
|
|
2630
|
+
height: 40px;
|
|
2631
|
+
align-items: center;
|
|
2632
|
+
white-space: nowrap;
|
|
2633
|
+
overflow: hidden;
|
|
2634
|
+
text-overflow: ellipsis;
|
|
2635
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
2651
2636
|
}
|
|
2652
2637
|
|
|
2653
|
-
.
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2638
|
+
.require {
|
|
2639
|
+
padding: 0 5px 0 0;
|
|
2640
|
+
color: red;
|
|
2641
|
+
vertical-align: middle;
|
|
2657
2642
|
}
|
|
2658
2643
|
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2644
|
+
.f-multiple ul {
|
|
2645
|
+
padding: 15px;
|
|
2646
|
+
margin: 0;
|
|
2647
|
+
list-style: none;
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2650
|
+
.f-multiple ul li {
|
|
2651
|
+
margin-top: 12px;
|
|
2652
|
+
font-size: 0;
|
|
2666
2653
|
display: flex;
|
|
2667
2654
|
align-items: center;
|
|
2668
|
-
|
|
2669
|
-
z-index: 999;
|
|
2670
|
-
background-color: rgba(0,0,0,.7);
|
|
2655
|
+
cursor: pointer;
|
|
2671
2656
|
}
|
|
2672
2657
|
|
|
2673
|
-
.
|
|
2674
|
-
|
|
2675
|
-
max-width: 250px;
|
|
2676
|
-
padding: 10px;
|
|
2677
|
-
border-radius: 5px;
|
|
2678
|
-
background-color: #fff;
|
|
2658
|
+
.f-multiple ul li:first-child {
|
|
2659
|
+
margin-top: 0;
|
|
2679
2660
|
}
|
|
2680
2661
|
|
|
2681
|
-
.
|
|
2682
|
-
display: block;
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
text-align: center;
|
|
2689
|
-
font-size: 14px;
|
|
2690
|
-
line-height: 30px;
|
|
2691
|
-
background: #ed5566;
|
|
2692
|
-
cursor: pointer;
|
|
2662
|
+
.fs-circle {
|
|
2663
|
+
display: inline-block;
|
|
2664
|
+
width: 16px;
|
|
2665
|
+
height: 16px;
|
|
2666
|
+
border-radius: 50%;
|
|
2667
|
+
position: relative;
|
|
2668
|
+
transition: all 0.2s;
|
|
2693
2669
|
}
|
|
2694
2670
|
|
|
2695
|
-
.
|
|
2671
|
+
.fs-circle.selected {
|
|
2672
|
+
background-color: #2687f1;
|
|
2673
|
+
border-color: #2687f1 !important;
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
.fs-circle.selected::after {
|
|
2677
|
+
content: "";
|
|
2678
|
+
position: absolute;
|
|
2679
|
+
top: 3px;
|
|
2680
|
+
left: 3px;
|
|
2681
|
+
width: 8px;
|
|
2682
|
+
height: 8px;
|
|
2683
|
+
border-radius: 50%;
|
|
2684
|
+
background-color: white;
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
.fs-txt {
|
|
2688
|
+
display: inline-block;
|
|
2689
|
+
width: calc(100% - 16px);
|
|
2690
|
+
padding-left: 8px;
|
|
2691
|
+
vertical-align: top;
|
|
2692
|
+
word-break: break-all;
|
|
2696
2693
|
font-size: 14px;
|
|
2697
|
-
|
|
2698
|
-
|
|
2694
|
+
line-height: 1.2;
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2697
|
+
.has-error .fs-tit {
|
|
2698
|
+
border-bottom-color: #ff4d4f;
|
|
2699
2699
|
}
|
|
2700
2700
|
|
|
2701
2701
|
.form-container {
|