unika-components 1.0.430 → 1.0.431
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.
|
@@ -1,103 +1,3 @@
|
|
|
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
|
-
.ele-text {
|
|
35
|
-
position: relative;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.ele-text .ani-wrap {
|
|
39
|
-
width: 100%;
|
|
40
|
-
height: 100%;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.text-common {
|
|
44
|
-
padding: 5px;
|
|
45
|
-
text-orientation: upright;
|
|
46
|
-
white-space: pre-wrap;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
/* 文本动画类 */
|
|
50
|
-
.text-fadeIn {
|
|
51
|
-
animation: fadeIn 1s ease-in-out;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.text-slideIn {
|
|
55
|
-
animation: slideIn 1s ease-in-out;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.text-bounceIn {
|
|
59
|
-
animation: bounceIn 1s ease-in-out;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/* 基础动画关键帧 */
|
|
63
|
-
@keyframes fadeIn {
|
|
64
|
-
from {
|
|
65
|
-
opacity: 0;
|
|
66
|
-
}
|
|
67
|
-
to {
|
|
68
|
-
opacity: 1;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
@keyframes slideIn {
|
|
73
|
-
from {
|
|
74
|
-
transform: translateY(20px);
|
|
75
|
-
opacity: 0;
|
|
76
|
-
}
|
|
77
|
-
to {
|
|
78
|
-
transform: translateY(0);
|
|
79
|
-
opacity: 1;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
@keyframes bounceIn {
|
|
84
|
-
0% {
|
|
85
|
-
transform: scale(0.3);
|
|
86
|
-
opacity: 0;
|
|
87
|
-
}
|
|
88
|
-
50% {
|
|
89
|
-
transform: scale(1.05);
|
|
90
|
-
opacity: 0.8;
|
|
91
|
-
}
|
|
92
|
-
70% {
|
|
93
|
-
transform: scale(0.9);
|
|
94
|
-
opacity: 0.9;
|
|
95
|
-
}
|
|
96
|
-
100% {
|
|
97
|
-
transform: scale(1);
|
|
98
|
-
opacity: 1;
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
1
|
|
|
102
2
|
#audio {
|
|
103
3
|
position: absolute;
|
|
@@ -170,104 +70,6 @@
|
|
|
170
70
|
height: 2px;
|
|
171
71
|
background: #fff;
|
|
172
72
|
}
|
|
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
|
-
.element-video {
|
|
226
|
-
position: absolute;
|
|
227
|
-
overflow: hidden;
|
|
228
|
-
background-color: #000;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.element-video .ani-wrap, .element-video img {
|
|
232
|
-
display: block;
|
|
233
|
-
width: 100%;
|
|
234
|
-
height: 100%;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.video-container {
|
|
238
|
-
width: 100%;
|
|
239
|
-
height: 100%;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
.video-container iframe {
|
|
243
|
-
width: 100%;
|
|
244
|
-
height: 100%;
|
|
245
|
-
border: none;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.video-cover {
|
|
249
|
-
position: relative;
|
|
250
|
-
width: 100%;
|
|
251
|
-
height: 100%;
|
|
252
|
-
background-size: cover;
|
|
253
|
-
background-position: center;
|
|
254
|
-
cursor: pointer;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.video-cover .play-btn {
|
|
258
|
-
position: absolute;
|
|
259
|
-
left: 50%;
|
|
260
|
-
top: 50%;
|
|
261
|
-
transform: translate(-50%, -50%);
|
|
262
|
-
width: 50px;
|
|
263
|
-
height: 50px;
|
|
264
|
-
opacity: 0.8;
|
|
265
|
-
transition: opacity 0.2s;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.video-cover:hover .play-btn {
|
|
269
|
-
opacity: 1;
|
|
270
|
-
}
|
|
271
73
|
|
|
272
74
|
.element-ditu .ani-wrap {
|
|
273
75
|
width: 100%;
|
|
@@ -315,117 +117,171 @@
|
|
|
315
117
|
height: 100%;
|
|
316
118
|
}
|
|
317
119
|
|
|
318
|
-
.
|
|
319
|
-
|
|
120
|
+
.element-video {
|
|
121
|
+
position: absolute;
|
|
122
|
+
overflow: hidden;
|
|
123
|
+
background-color: #000;
|
|
320
124
|
}
|
|
321
125
|
|
|
322
|
-
.
|
|
323
|
-
|
|
126
|
+
.element-video .ani-wrap, .element-video img {
|
|
127
|
+
display: block;
|
|
128
|
+
width: 100%;
|
|
129
|
+
height: 100%;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.video-container {
|
|
324
133
|
width: 100%;
|
|
325
134
|
height: 100%;
|
|
326
135
|
}
|
|
327
136
|
|
|
328
|
-
.
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
animation-name: falling;
|
|
333
|
-
animation-timing-function: linear;
|
|
334
|
-
animation-iteration-count: infinite;
|
|
335
|
-
will-change: transform;
|
|
137
|
+
.video-container iframe {
|
|
138
|
+
width: 100%;
|
|
139
|
+
height: 100%;
|
|
140
|
+
border: none;
|
|
336
141
|
}
|
|
337
142
|
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
}
|
|
346
|
-
100% {
|
|
347
|
-
transform: translateY(100vh) rotate(360deg);
|
|
348
|
-
opacity: 0;
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
.ele-lottie .ele-lotwrap {
|
|
352
|
-
overflow: hidden
|
|
143
|
+
.video-cover {
|
|
144
|
+
position: relative;
|
|
145
|
+
width: 100%;
|
|
146
|
+
height: 100%;
|
|
147
|
+
background-size: cover;
|
|
148
|
+
background-position: center;
|
|
149
|
+
cursor: pointer;
|
|
353
150
|
}
|
|
354
151
|
|
|
355
|
-
.
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
152
|
+
.video-cover .play-btn {
|
|
153
|
+
position: absolute;
|
|
154
|
+
left: 50%;
|
|
155
|
+
top: 50%;
|
|
156
|
+
transform: translate(-50%, -50%);
|
|
157
|
+
width: 50px;
|
|
158
|
+
height: 50px;
|
|
159
|
+
opacity: 0.8;
|
|
160
|
+
transition: opacity 0.2s;
|
|
360
161
|
}
|
|
361
162
|
|
|
362
|
-
.
|
|
363
|
-
|
|
364
|
-
width: 24px;
|
|
365
|
-
height: 24px;
|
|
366
|
-
background-image: url(http://cdn.h5ds.com/static/images/snow.png);
|
|
367
|
-
background-size: cover;
|
|
368
|
-
background-repeat: no-repeat;
|
|
369
|
-
-webkit-transform-origin: center;
|
|
370
|
-
transform-origin: center;
|
|
371
|
-
-webkit-animation: snow 5s linear infinite;
|
|
372
|
-
animation: snow 5s linear infinite
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
.like-button {
|
|
376
|
-
display: flex;
|
|
377
|
-
flex-direction: column;
|
|
378
|
-
align-items: center;
|
|
379
|
-
cursor: pointer;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
.icon-heart {
|
|
383
|
-
font-size: 24px;
|
|
384
|
-
color: #e74c3c;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.liked {
|
|
388
|
-
color: #f00; /* 更改颜色以示已赞 */
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
.like-count {
|
|
392
|
-
margin-top: 4px;
|
|
393
|
-
font-size: 16px;
|
|
394
|
-
color: #333;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
.ele-lottie .ele-lotwrap {
|
|
398
|
-
overflow: hidden;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
.ele-effect .effect-wrap {
|
|
402
|
-
position: relative;
|
|
403
|
-
overflow: hidden;
|
|
404
|
-
width: 100%;
|
|
405
|
-
height: 100%;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.ele-effect .e-small {
|
|
409
|
-
position: absolute;
|
|
410
|
-
width: 24px;
|
|
411
|
-
height: 24px;
|
|
412
|
-
background-image: url(http://cdn.h5ds.com/static/images/snow.png);
|
|
413
|
-
background-size: cover;
|
|
414
|
-
background-repeat: no-repeat;
|
|
415
|
-
transform-origin: center;
|
|
416
|
-
animation: snow 5s linear infinite;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
@keyframes snow {
|
|
420
|
-
0% {
|
|
421
|
-
transform: translateY(0) rotate(0deg);
|
|
422
|
-
opacity: 1;
|
|
423
|
-
}
|
|
424
|
-
100% {
|
|
425
|
-
transform: translateY(100vh) rotate(360deg);
|
|
426
|
-
opacity: 0;
|
|
427
|
-
}
|
|
163
|
+
.video-cover:hover .play-btn {
|
|
164
|
+
opacity: 1;
|
|
428
165
|
}
|
|
166
|
+
|
|
167
|
+
.ele-img {
|
|
168
|
+
position: absolute;
|
|
169
|
+
overflow: hidden;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.ele-img .ani-wrap {
|
|
173
|
+
width: 100%;
|
|
174
|
+
height: 100%;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.ele-img .ele-image {
|
|
178
|
+
position: relative;
|
|
179
|
+
display: block;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.ele-img .rotate-wrap {
|
|
183
|
+
position: absolute;
|
|
184
|
+
left: 0;
|
|
185
|
+
right: 0;
|
|
186
|
+
top: 0;
|
|
187
|
+
bottom: 0;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.ele-img .ele-img-bg,
|
|
191
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
192
|
+
width: 100%;
|
|
193
|
+
height: 100%;
|
|
194
|
+
overflow: hidden;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.ele-img .ele-bg-wrap {
|
|
198
|
+
width: 100%;
|
|
199
|
+
height: 100%;
|
|
200
|
+
background-size: cover;
|
|
201
|
+
background-position: 50% 50%;
|
|
202
|
+
background-repeat: no-repeat;
|
|
203
|
+
background-clip: border-box;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/* 动画关键帧 */
|
|
207
|
+
@keyframes zoomIn {
|
|
208
|
+
from {
|
|
209
|
+
opacity: 0;
|
|
210
|
+
transform: scale(0.5);
|
|
211
|
+
}
|
|
212
|
+
to {
|
|
213
|
+
opacity: 1;
|
|
214
|
+
transform: scale(1);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.ele-text {
|
|
219
|
+
position: relative;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.ele-text .ani-wrap {
|
|
223
|
+
width: 100%;
|
|
224
|
+
height: 100%;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.text-common {
|
|
228
|
+
padding: 5px;
|
|
229
|
+
text-orientation: upright;
|
|
230
|
+
white-space: pre-wrap;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/* 文本动画类 */
|
|
234
|
+
.text-fadeIn {
|
|
235
|
+
animation: fadeIn 1s ease-in-out;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.text-slideIn {
|
|
239
|
+
animation: slideIn 1s ease-in-out;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.text-bounceIn {
|
|
243
|
+
animation: bounceIn 1s ease-in-out;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/* 基础动画关键帧 */
|
|
247
|
+
@keyframes fadeIn {
|
|
248
|
+
from {
|
|
249
|
+
opacity: 0;
|
|
250
|
+
}
|
|
251
|
+
to {
|
|
252
|
+
opacity: 1;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
@keyframes slideIn {
|
|
257
|
+
from {
|
|
258
|
+
transform: translateY(20px);
|
|
259
|
+
opacity: 0;
|
|
260
|
+
}
|
|
261
|
+
to {
|
|
262
|
+
transform: translateY(0);
|
|
263
|
+
opacity: 1;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
@keyframes bounceIn {
|
|
268
|
+
0% {
|
|
269
|
+
transform: scale(0.3);
|
|
270
|
+
opacity: 0;
|
|
271
|
+
}
|
|
272
|
+
50% {
|
|
273
|
+
transform: scale(1.05);
|
|
274
|
+
opacity: 0.8;
|
|
275
|
+
}
|
|
276
|
+
70% {
|
|
277
|
+
transform: scale(0.9);
|
|
278
|
+
opacity: 0.9;
|
|
279
|
+
}
|
|
280
|
+
100% {
|
|
281
|
+
transform: scale(1);
|
|
282
|
+
opacity: 1;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
429
285
|
|
|
430
286
|
.ant-input-number {
|
|
431
287
|
box-sizing: border-box;
|
|
@@ -461,13 +317,223 @@
|
|
|
461
317
|
margin-bottom: 0px;
|
|
462
318
|
vertical-align: top;
|
|
463
319
|
}
|
|
320
|
+
|
|
321
|
+
.ele-shape {
|
|
322
|
+
position: absolute;
|
|
323
|
+
overflow: hidden;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.ani-wrap {
|
|
327
|
+
width: 100%;
|
|
328
|
+
height: 100%;
|
|
329
|
+
box-sizing: border-box;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.e-shape {
|
|
333
|
+
width: 100%;
|
|
334
|
+
height: 100%;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.svg-container :deep(svg) {
|
|
338
|
+
width: 100%;
|
|
339
|
+
height: 100%;
|
|
340
|
+
display: block;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.svg-loading,
|
|
344
|
+
.svg-error {
|
|
345
|
+
display: flex;
|
|
346
|
+
align-items: center;
|
|
347
|
+
justify-content: center;
|
|
348
|
+
width: 100%;
|
|
349
|
+
height: 100%;
|
|
350
|
+
background: rgba(0,0,0,0.05);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.ele-lottie .ele-lotwrap {
|
|
354
|
+
overflow: hidden;
|
|
355
|
+
}
|
|
464
356
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
357
|
+
.ele-effect .effect-wrap {
|
|
358
|
+
position: relative;
|
|
359
|
+
overflow: hidden;
|
|
360
|
+
width: 100%;
|
|
361
|
+
height: 100%;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.ele-effect .e-small {
|
|
365
|
+
position: absolute;
|
|
366
|
+
width: 24px;
|
|
367
|
+
height: 24px;
|
|
368
|
+
background-image: url(http://cdn.h5ds.com/static/images/snow.png);
|
|
369
|
+
background-size: cover;
|
|
370
|
+
background-repeat: no-repeat;
|
|
371
|
+
transform-origin: center;
|
|
372
|
+
animation: snow 5s linear infinite;
|
|
470
373
|
}
|
|
374
|
+
|
|
375
|
+
@keyframes snow {
|
|
376
|
+
0% {
|
|
377
|
+
transform: translateY(0) rotate(0deg);
|
|
378
|
+
opacity: 1;
|
|
379
|
+
}
|
|
380
|
+
100% {
|
|
381
|
+
transform: translateY(100vh) rotate(360deg);
|
|
382
|
+
opacity: 0;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.form-input {
|
|
387
|
+
position: absolute;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.input-wrapper {
|
|
391
|
+
display: flex;
|
|
392
|
+
align-items: center;
|
|
393
|
+
width: 100%;
|
|
394
|
+
height: 100%;
|
|
395
|
+
padding: 0 10px;
|
|
396
|
+
box-sizing: border-box;
|
|
397
|
+
position: relative;
|
|
398
|
+
transition: border-color 0.3s;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.required-marker {
|
|
402
|
+
font-size: 12px;
|
|
403
|
+
padding: 0 5px 0 0;
|
|
404
|
+
color: red;
|
|
405
|
+
vertical-align: middle;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
input {
|
|
409
|
+
flex: 1;
|
|
410
|
+
border: none;
|
|
411
|
+
outline: none;
|
|
412
|
+
background: transparent;
|
|
413
|
+
height: 100%;
|
|
414
|
+
padding: 0;
|
|
415
|
+
margin: 0;
|
|
416
|
+
}
|
|
417
|
+
/*
|
|
418
|
+
input::placeholder {
|
|
419
|
+
color: #ccc;
|
|
420
|
+
opacity: 1;
|
|
421
|
+
} */
|
|
422
|
+
|
|
423
|
+
.dynamic-placeholder-input::placeholder {
|
|
424
|
+
color: var(--placeholder-color, #999);
|
|
425
|
+
opacity: 1;
|
|
426
|
+
}
|
|
427
|
+
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
428
|
+
color: var(--placeholder-color, #999);
|
|
429
|
+
}
|
|
430
|
+
.dynamic-placeholder-input::-moz-placeholder {
|
|
431
|
+
color: var(--placeholder-color, #999);
|
|
432
|
+
opacity: 1;
|
|
433
|
+
}
|
|
434
|
+
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
435
|
+
color: var(--placeholder-color, #999);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.ele-form {
|
|
439
|
+
position: absolute;
|
|
440
|
+
user-select: none;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.f-single {
|
|
444
|
+
cursor: pointer;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.ani-wrap {
|
|
448
|
+
position: relative;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.fs-tit {
|
|
452
|
+
display: flex;
|
|
453
|
+
padding: 0 5px;
|
|
454
|
+
height: 40px;
|
|
455
|
+
align-items: center;
|
|
456
|
+
white-space: nowrap;
|
|
457
|
+
overflow: hidden;
|
|
458
|
+
text-overflow: ellipsis;
|
|
459
|
+
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.require {
|
|
463
|
+
padding: 0 5px 0 0;
|
|
464
|
+
color: red;
|
|
465
|
+
vertical-align: middle;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.f-single ul {
|
|
469
|
+
padding: 15px;
|
|
470
|
+
margin: 0;
|
|
471
|
+
list-style: none;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.f-single ul li {
|
|
475
|
+
display: flex;
|
|
476
|
+
align-items: center;
|
|
477
|
+
margin-top: 12px;
|
|
478
|
+
font-size: 0;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.f-single ul li:first-child {
|
|
482
|
+
margin-top: 0;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.fs-circle {
|
|
486
|
+
display: inline-block;
|
|
487
|
+
width: 16px;
|
|
488
|
+
height: 16px;
|
|
489
|
+
border-radius: 50%;
|
|
490
|
+
position: relative;
|
|
491
|
+
transition: all 0.2s;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.fs-circle.selected {
|
|
495
|
+
background-color: #2687f1;
|
|
496
|
+
border-color: #2687f1 !important;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.fs-circle.selected::after {
|
|
500
|
+
content: "";
|
|
501
|
+
position: absolute;
|
|
502
|
+
top: 3px;
|
|
503
|
+
left: 3px;
|
|
504
|
+
width: 8px;
|
|
505
|
+
height: 8px;
|
|
506
|
+
border-radius: 50%;
|
|
507
|
+
background-color: white;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.fs-txt {
|
|
511
|
+
display: inline-block;
|
|
512
|
+
width: calc(100% - 16px);
|
|
513
|
+
padding-left: 8px;
|
|
514
|
+
vertical-align: top;
|
|
515
|
+
word-break: break-all;
|
|
516
|
+
font-size: 14px;
|
|
517
|
+
line-height: 1.2;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.has-error .fs-tit {
|
|
521
|
+
border-bottom-color: #ff4d4f;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
/* 错误提示样式 */
|
|
525
|
+
.error-tip {
|
|
526
|
+
position: fixed;
|
|
527
|
+
left: 0;
|
|
528
|
+
top: 0;
|
|
529
|
+
width: 100%;
|
|
530
|
+
height: 100%;
|
|
531
|
+
z-index: 1000;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.uni-svg-component {
|
|
535
|
+
display: inline-block;
|
|
536
|
+
}
|
|
471
537
|
|
|
472
538
|
.ele-form {
|
|
473
539
|
position: absolute;
|
|
@@ -584,10 +650,6 @@
|
|
|
584
650
|
z-index: 1000;
|
|
585
651
|
}
|
|
586
652
|
|
|
587
|
-
.uni-svg-component {
|
|
588
|
-
display: inline-block;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
653
|
.form-submit {
|
|
592
654
|
cursor: pointer;
|
|
593
655
|
transition: all 0.2s;
|
|
@@ -647,181 +709,10 @@
|
|
|
647
709
|
cursor: pointer;
|
|
648
710
|
}
|
|
649
711
|
|
|
650
|
-
.tip-content {
|
|
651
|
-
font-size: 14px;
|
|
652
|
-
padding-top: 30px;
|
|
653
|
-
text-align: center;
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
.global.video {
|
|
657
|
-
width: 35px;
|
|
658
|
-
height: 55px;
|
|
659
|
-
border-radius: 50%;
|
|
660
|
-
text-align: center;
|
|
661
|
-
margin-bottom: 5px;
|
|
662
|
-
border: 2px solid #fff;
|
|
663
|
-
cursor: pointer;
|
|
664
|
-
}
|
|
665
|
-
.icon-shipin2:before { content: "\E611"; }
|
|
666
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
667
|
-
.global.video > span { font-size: 12px; line-height: 20px; display: block; position: relative; top: -4px;}
|
|
668
|
-
|
|
669
|
-
.ele-form {
|
|
670
|
-
position: absolute;
|
|
671
|
-
user-select: none;
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
.f-multiple {
|
|
675
|
-
cursor: pointer;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
.ani-wrap {
|
|
679
|
-
position: relative;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
.fs-tit {
|
|
683
|
-
display: flex;
|
|
684
|
-
padding: 0 5px;
|
|
685
|
-
height: 40px;
|
|
686
|
-
align-items: center;
|
|
687
|
-
white-space: nowrap;
|
|
688
|
-
overflow: hidden;
|
|
689
|
-
text-overflow: ellipsis;
|
|
690
|
-
border-bottom: 1px solid rgba(153, 153, 153, 1);
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
.require {
|
|
694
|
-
padding: 0 5px 0 0;
|
|
695
|
-
color: red;
|
|
696
|
-
vertical-align: middle;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
.f-multiple ul {
|
|
700
|
-
padding: 15px;
|
|
701
|
-
margin: 0;
|
|
702
|
-
list-style: none;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.f-multiple ul li {
|
|
706
|
-
margin-top: 12px;
|
|
707
|
-
font-size: 0;
|
|
708
|
-
display: flex;
|
|
709
|
-
align-items: center;
|
|
710
|
-
cursor: pointer;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.f-multiple ul li:first-child {
|
|
714
|
-
margin-top: 0;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.fs-circle {
|
|
718
|
-
display: inline-block;
|
|
719
|
-
width: 16px;
|
|
720
|
-
height: 16px;
|
|
721
|
-
border-radius: 50%;
|
|
722
|
-
position: relative;
|
|
723
|
-
transition: all 0.2s;
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
.fs-circle.selected {
|
|
727
|
-
background-color: #2687f1;
|
|
728
|
-
border-color: #2687f1 !important;
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
.fs-circle.selected::after {
|
|
732
|
-
content: "";
|
|
733
|
-
position: absolute;
|
|
734
|
-
top: 3px;
|
|
735
|
-
left: 3px;
|
|
736
|
-
width: 8px;
|
|
737
|
-
height: 8px;
|
|
738
|
-
border-radius: 50%;
|
|
739
|
-
background-color: white;
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
.fs-txt {
|
|
743
|
-
display: inline-block;
|
|
744
|
-
width: calc(100% - 16px);
|
|
745
|
-
padding-left: 8px;
|
|
746
|
-
vertical-align: top;
|
|
747
|
-
word-break: break-all;
|
|
748
|
-
font-size: 14px;
|
|
749
|
-
line-height: 1.2;
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
.has-error .fs-tit {
|
|
753
|
-
border-bottom-color: #ff4d4f;
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
.form-input {
|
|
757
|
-
position: absolute;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.input-wrapper {
|
|
761
|
-
display: flex;
|
|
762
|
-
align-items: center;
|
|
763
|
-
width: 100%;
|
|
764
|
-
height: 100%;
|
|
765
|
-
padding: 0 10px;
|
|
766
|
-
box-sizing: border-box;
|
|
767
|
-
position: relative;
|
|
768
|
-
transition: border-color 0.3s;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
.required-marker {
|
|
772
|
-
font-size: 12px;
|
|
773
|
-
padding: 0 5px 0 0;
|
|
774
|
-
color: red;
|
|
775
|
-
vertical-align: middle;
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
input {
|
|
779
|
-
flex: 1;
|
|
780
|
-
border: none;
|
|
781
|
-
outline: none;
|
|
782
|
-
background: transparent;
|
|
783
|
-
height: 100%;
|
|
784
|
-
padding: 0;
|
|
785
|
-
margin: 0;
|
|
786
|
-
}
|
|
787
|
-
/*
|
|
788
|
-
input::placeholder {
|
|
789
|
-
color: #ccc;
|
|
790
|
-
opacity: 1;
|
|
791
|
-
} */
|
|
792
|
-
|
|
793
|
-
.dynamic-placeholder-input::placeholder {
|
|
794
|
-
color: var(--placeholder-color, #999);
|
|
795
|
-
opacity: 1;
|
|
796
|
-
}
|
|
797
|
-
.dynamic-placeholder-input::-webkit-input-placeholder {
|
|
798
|
-
color: var(--placeholder-color, #999);
|
|
799
|
-
}
|
|
800
|
-
.dynamic-placeholder-input::-moz-placeholder {
|
|
801
|
-
color: var(--placeholder-color, #999);
|
|
802
|
-
opacity: 1;
|
|
803
|
-
}
|
|
804
|
-
.dynamic-placeholder-input:-ms-input-placeholder {
|
|
805
|
-
color: var(--placeholder-color, #999);
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
.global.receipt {
|
|
809
|
-
width: 35px;
|
|
810
|
-
height: 55px;
|
|
811
|
-
border-radius: 50%;
|
|
812
|
-
text-align: center;
|
|
813
|
-
margin-bottom: 5px;
|
|
814
|
-
border: 2px solid #fff;
|
|
815
|
-
cursor: pointer;
|
|
816
|
-
}
|
|
817
|
-
.icon-liuyan:before { content: "\E636"; }
|
|
818
|
-
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
819
|
-
.global.receipt > span { font-size: 12px; line-height: 20px; display: block; }
|
|
820
|
-
|
|
821
|
-
.form-container {
|
|
822
|
-
position: relative;
|
|
823
|
-
width: 100%;
|
|
824
|
-
height: 100%;
|
|
712
|
+
.tip-content {
|
|
713
|
+
font-size: 14px;
|
|
714
|
+
padding-top: 30px;
|
|
715
|
+
text-align: center;
|
|
825
716
|
}
|
|
826
717
|
|
|
827
718
|
.ele-form {
|
|
@@ -829,7 +720,7 @@ input::placeholder {
|
|
|
829
720
|
user-select: none;
|
|
830
721
|
}
|
|
831
722
|
|
|
832
|
-
.f-
|
|
723
|
+
.f-multiple {
|
|
833
724
|
cursor: pointer;
|
|
834
725
|
}
|
|
835
726
|
|
|
@@ -854,20 +745,21 @@ input::placeholder {
|
|
|
854
745
|
vertical-align: middle;
|
|
855
746
|
}
|
|
856
747
|
|
|
857
|
-
.f-
|
|
748
|
+
.f-multiple ul {
|
|
858
749
|
padding: 15px;
|
|
859
750
|
margin: 0;
|
|
860
751
|
list-style: none;
|
|
861
752
|
}
|
|
862
753
|
|
|
863
|
-
.f-
|
|
864
|
-
display: flex;
|
|
865
|
-
align-items: center;
|
|
754
|
+
.f-multiple ul li {
|
|
866
755
|
margin-top: 12px;
|
|
867
756
|
font-size: 0;
|
|
757
|
+
display: flex;
|
|
758
|
+
align-items: center;
|
|
759
|
+
cursor: pointer;
|
|
868
760
|
}
|
|
869
761
|
|
|
870
|
-
.f-
|
|
762
|
+
.f-multiple ul li:first-child {
|
|
871
763
|
margin-top: 0;
|
|
872
764
|
}
|
|
873
765
|
|
|
@@ -909,18 +801,15 @@ input::placeholder {
|
|
|
909
801
|
.has-error .fs-tit {
|
|
910
802
|
border-bottom-color: #ff4d4f;
|
|
911
803
|
}
|
|
804
|
+
|
|
805
|
+
/* 设计稿尺寸(如375px下20px的按钮) */
|
|
806
|
+
.btn {
|
|
807
|
+
width: 20px; /* 直接写设计稿px */
|
|
808
|
+
height: 10px;
|
|
809
|
+
font-size: 14px;
|
|
810
|
+
}
|
|
912
811
|
|
|
913
|
-
|
|
914
|
-
.error-tip {
|
|
915
|
-
position: fixed;
|
|
916
|
-
left: 0;
|
|
917
|
-
top: 0;
|
|
918
|
-
width: 100%;
|
|
919
|
-
height: 100%;
|
|
920
|
-
z-index: 1000;
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
.global.map {
|
|
812
|
+
.global.video {
|
|
924
813
|
width: 35px;
|
|
925
814
|
height: 55px;
|
|
926
815
|
border-radius: 50%;
|
|
@@ -929,10 +818,58 @@ input::placeholder {
|
|
|
929
818
|
border: 2px solid #fff;
|
|
930
819
|
cursor: pointer;
|
|
931
820
|
}
|
|
932
|
-
.icon-
|
|
821
|
+
.icon-shipin2:before { content: "\E611"; }
|
|
933
822
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
934
|
-
.global.
|
|
823
|
+
.global.video > span { font-size: 12px; line-height: 20px; display: block; position: relative; top: -4px;}
|
|
824
|
+
|
|
825
|
+
.like-button {
|
|
826
|
+
display: flex;
|
|
827
|
+
flex-direction: column;
|
|
828
|
+
align-items: center;
|
|
829
|
+
cursor: pointer;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.icon-heart {
|
|
833
|
+
font-size: 24px;
|
|
834
|
+
color: #e74c3c;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.liked {
|
|
838
|
+
color: #f00; /* 更改颜色以示已赞 */
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.like-count {
|
|
842
|
+
margin-top: 4px;
|
|
843
|
+
font-size: 16px;
|
|
844
|
+
color: #333;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
.global.tel {
|
|
848
|
+
width: 35px;
|
|
849
|
+
height: 55px;
|
|
850
|
+
border-radius: 50%;
|
|
851
|
+
text-align: center;
|
|
852
|
+
margin-bottom: 15px;
|
|
853
|
+
border: 2px solid #fff;
|
|
854
|
+
cursor: pointer;
|
|
855
|
+
}
|
|
856
|
+
.icon-dianhua:before { content: "\E60E"; }
|
|
857
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
858
|
+
.global.tel > span { font-size: 12px; line-height: 20px; display: block;}
|
|
935
859
|
|
|
860
|
+
.global.receipt {
|
|
861
|
+
width: 35px;
|
|
862
|
+
height: 55px;
|
|
863
|
+
border-radius: 50%;
|
|
864
|
+
text-align: center;
|
|
865
|
+
margin-bottom: 5px;
|
|
866
|
+
border: 2px solid #fff;
|
|
867
|
+
cursor: pointer;
|
|
868
|
+
}
|
|
869
|
+
.icon-liuyan:before { content: "\E636"; }
|
|
870
|
+
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
871
|
+
.global.receipt > span { font-size: 12px; line-height: 20px; display: block; }
|
|
872
|
+
|
|
936
873
|
/* 字体定义 */
|
|
937
874
|
@font-face {
|
|
938
875
|
font-family: iconfont;
|
|
@@ -1345,181 +1282,53 @@ input::placeholder {
|
|
|
1345
1282
|
}
|
|
1346
1283
|
|
|
1347
1284
|
|
|
1348
|
-
|
|
1285
|
+
.form-container {
|
|
1286
|
+
position: relative;
|
|
1287
|
+
width: 100%;
|
|
1288
|
+
height: 100%;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.global.map {
|
|
1349
1292
|
width: 35px;
|
|
1350
1293
|
height: 55px;
|
|
1351
1294
|
border-radius: 50%;
|
|
1352
1295
|
text-align: center;
|
|
1353
|
-
margin-bottom:
|
|
1296
|
+
margin-bottom: 5px;
|
|
1354
1297
|
border: 2px solid #fff;
|
|
1355
1298
|
cursor: pointer;
|
|
1356
1299
|
}
|
|
1357
|
-
.icon-
|
|
1300
|
+
.icon-daohang1:before { content: "\E612"; }
|
|
1358
1301
|
.iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
|
|
1359
|
-
.global.
|
|
1360
|
-
.
|
|
1361
|
-
cursor: default!important
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
.count-down .ani-wrap {
|
|
1365
|
-
width: 100%;
|
|
1366
|
-
height: 100%
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
.count-down .count-text,.count-down .finish-cont {
|
|
1370
|
-
display: -webkit-box;
|
|
1371
|
-
display: -ms-flexbox;
|
|
1372
|
-
display: flex;
|
|
1373
|
-
height: 100%;
|
|
1374
|
-
-webkit-box-align: center;
|
|
1375
|
-
-ms-flex-align: center;
|
|
1376
|
-
align-items: center;
|
|
1377
|
-
-webkit-box-pack: center;
|
|
1378
|
-
-ms-flex-pack: center;
|
|
1379
|
-
justify-content: center
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
.count-down .finish-cont {
|
|
1383
|
-
width: 100%
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
.count-down .count-flip {
|
|
1387
|
-
display: -webkit-box;
|
|
1388
|
-
display: -ms-flexbox;
|
|
1389
|
-
display: flex;
|
|
1390
|
-
height: 100%;
|
|
1391
|
-
-webkit-box-align: center;
|
|
1392
|
-
-ms-flex-align: center;
|
|
1393
|
-
align-items: center;
|
|
1394
|
-
-webkit-box-pack: center;
|
|
1395
|
-
-ms-flex-pack: center;
|
|
1396
|
-
justify-content: center
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
|
-
.count-down .count-flip .numscroll {
|
|
1400
|
-
-webkit-animation: numscroll .4s ease-in-out;
|
|
1401
|
-
animation: numscroll .4s ease-in-out;
|
|
1402
|
-
-webkit-animation-fill-mode: both;
|
|
1403
|
-
animation-fill-mode: both
|
|
1404
|
-
}
|
|
1405
|
-
|
|
1406
|
-
.count-down .count-flip .numscroll .curr-num {
|
|
1407
|
-
-webkit-transition: all .3s ease-in-out;
|
|
1408
|
-
transition: all .3s ease-in-out;
|
|
1409
|
-
opacity: .6;
|
|
1410
|
-
-webkit-transform: scale(.5)!important;
|
|
1411
|
-
transform: scale(.5)!important
|
|
1412
|
-
}
|
|
1413
|
-
|
|
1414
|
-
@-webkit-keyframes numscroll {
|
|
1415
|
-
0% {
|
|
1416
|
-
-webkit-transform: translateZ(0);
|
|
1417
|
-
transform: translateZ(0)
|
|
1418
|
-
}
|
|
1419
|
-
|
|
1420
|
-
to {
|
|
1421
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
1422
|
-
transform: translate3d(0,100%,0)
|
|
1423
|
-
}
|
|
1424
|
-
}
|
|
1425
|
-
|
|
1426
|
-
@keyframes numscroll {
|
|
1427
|
-
0% {
|
|
1428
|
-
-webkit-transform: translateZ(0);
|
|
1429
|
-
transform: translateZ(0)
|
|
1430
|
-
}
|
|
1431
|
-
|
|
1432
|
-
to {
|
|
1433
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
1434
|
-
transform: translate3d(0,100%,0)
|
|
1435
|
-
}
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
|
-
.count-down .count-flip .c-com {
|
|
1439
|
-
min-width: 50px;
|
|
1440
|
-
height: auto;
|
|
1441
|
-
margin: 6px;
|
|
1442
|
-
padding: 5px 0 6px;
|
|
1443
|
-
background-color: #111
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
|
-
.count-down .count-flip .c-com .flex-wrap {
|
|
1447
|
-
display: -webkit-box;
|
|
1448
|
-
display: -ms-flexbox;
|
|
1449
|
-
display: flex;
|
|
1450
|
-
position: relative;
|
|
1451
|
-
width: 100%;
|
|
1452
|
-
height: 100%;
|
|
1453
|
-
-webkit-box-align: center;
|
|
1454
|
-
-ms-flex-align: center;
|
|
1455
|
-
align-items: center
|
|
1456
|
-
}
|
|
1457
|
-
|
|
1458
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
1459
|
-
line-height: 27px
|
|
1460
|
-
}
|
|
1461
|
-
|
|
1462
|
-
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
1302
|
+
.global.map > span { font-size: 12px; line-height: 20px; display: block;}
|
|
1303
|
+
.button {
|
|
1463
1304
|
position: absolute;
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
1468
|
-
-webkit-transform: scale(1);
|
|
1469
|
-
transform: scale(1)
|
|
1470
|
-
}
|
|
1471
|
-
|
|
1472
|
-
.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 {
|
|
1473
|
-
display: none!important
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
|
-
.c-wrap {
|
|
1477
|
-
width: 100%;
|
|
1478
|
-
height: 100%;
|
|
1479
|
-
overflow: hidden;
|
|
1480
|
-
font-size: 0
|
|
1481
|
-
}
|
|
1482
|
-
|
|
1483
|
-
.c-wrap.c-day-wrap {
|
|
1484
|
-
text-align: center
|
|
1485
|
-
}
|
|
1486
|
-
|
|
1487
|
-
.c-wrap.c-day-wrap .c-num {
|
|
1488
|
-
width: auto
|
|
1305
|
+
cursor: pointer;
|
|
1306
|
+
user-select: none;
|
|
1489
1307
|
}
|
|
1490
|
-
|
|
1491
|
-
.
|
|
1492
|
-
display:
|
|
1493
|
-
|
|
1308
|
+
|
|
1309
|
+
.button .ani-wrap {
|
|
1310
|
+
display: flex;
|
|
1311
|
+
justify-content: center;
|
|
1312
|
+
align-items: center;
|
|
1313
|
+
width: 100%;
|
|
1314
|
+
height: 100%;
|
|
1494
1315
|
overflow: hidden;
|
|
1495
|
-
|
|
1496
|
-
color: #999
|
|
1316
|
+
transition: opacity 0.2s;
|
|
1497
1317
|
}
|
|
1498
|
-
|
|
1499
|
-
.
|
|
1500
|
-
|
|
1501
|
-
display: -ms-flexbox;
|
|
1502
|
-
display: flex;
|
|
1503
|
-
-webkit-box-pack: end;
|
|
1504
|
-
-ms-flex-pack: end;
|
|
1505
|
-
justify-content: flex-end
|
|
1318
|
+
|
|
1319
|
+
.button .ani-wrap:hover {
|
|
1320
|
+
opacity: 0.9;
|
|
1506
1321
|
}
|
|
1507
1322
|
|
|
1508
|
-
.
|
|
1509
|
-
display: -webkit-box;
|
|
1510
|
-
display: -ms-flexbox;
|
|
1323
|
+
.button-content {
|
|
1511
1324
|
display: flex;
|
|
1512
|
-
width: 100%;
|
|
1513
|
-
font-size: 12px;
|
|
1514
|
-
-webkit-box-pack: center;
|
|
1515
|
-
-ms-flex-pack: center;
|
|
1516
|
-
justify-content: center;
|
|
1517
|
-
-webkit-box-align: center;
|
|
1518
|
-
-ms-flex-align: center;
|
|
1519
1325
|
align-items: center;
|
|
1520
|
-
|
|
1326
|
+
justify-content: center;
|
|
1521
1327
|
}
|
|
1522
1328
|
|
|
1329
|
+
.btn-text {
|
|
1330
|
+
margin-left: 10px;
|
|
1331
|
+
}
|
|
1523
1332
|
@keyframes jumpheart {
|
|
1524
1333
|
to {
|
|
1525
1334
|
-webkit-transform: scale(1.2);
|
|
@@ -1861,7 +1670,169 @@ input::placeholder {
|
|
|
1861
1670
|
}
|
|
1862
1671
|
.icon-xingzhuangjiehe:before {
|
|
1863
1672
|
content: "\E6A6";
|
|
1864
|
-
}.
|
|
1673
|
+
}.count-down .drag-point {
|
|
1674
|
+
cursor: default!important
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.count-down .ani-wrap {
|
|
1678
|
+
width: 100%;
|
|
1679
|
+
height: 100%
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
1683
|
+
display: -webkit-box;
|
|
1684
|
+
display: -ms-flexbox;
|
|
1685
|
+
display: flex;
|
|
1686
|
+
height: 100%;
|
|
1687
|
+
-webkit-box-align: center;
|
|
1688
|
+
-ms-flex-align: center;
|
|
1689
|
+
align-items: center;
|
|
1690
|
+
-webkit-box-pack: center;
|
|
1691
|
+
-ms-flex-pack: center;
|
|
1692
|
+
justify-content: center
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
.count-down .finish-cont {
|
|
1696
|
+
width: 100%
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
.count-down .count-flip {
|
|
1700
|
+
display: -webkit-box;
|
|
1701
|
+
display: -ms-flexbox;
|
|
1702
|
+
display: flex;
|
|
1703
|
+
height: 100%;
|
|
1704
|
+
-webkit-box-align: center;
|
|
1705
|
+
-ms-flex-align: center;
|
|
1706
|
+
align-items: center;
|
|
1707
|
+
-webkit-box-pack: center;
|
|
1708
|
+
-ms-flex-pack: center;
|
|
1709
|
+
justify-content: center
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
.count-down .count-flip .numscroll {
|
|
1713
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
1714
|
+
animation: numscroll .4s ease-in-out;
|
|
1715
|
+
-webkit-animation-fill-mode: both;
|
|
1716
|
+
animation-fill-mode: both
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
1720
|
+
-webkit-transition: all .3s ease-in-out;
|
|
1721
|
+
transition: all .3s ease-in-out;
|
|
1722
|
+
opacity: .6;
|
|
1723
|
+
-webkit-transform: scale(.5)!important;
|
|
1724
|
+
transform: scale(.5)!important
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
@-webkit-keyframes numscroll {
|
|
1728
|
+
0% {
|
|
1729
|
+
-webkit-transform: translateZ(0);
|
|
1730
|
+
transform: translateZ(0)
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
to {
|
|
1734
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
1735
|
+
transform: translate3d(0,100%,0)
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
@keyframes numscroll {
|
|
1740
|
+
0% {
|
|
1741
|
+
-webkit-transform: translateZ(0);
|
|
1742
|
+
transform: translateZ(0)
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
to {
|
|
1746
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
1747
|
+
transform: translate3d(0,100%,0)
|
|
1748
|
+
}
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
.count-down .count-flip .c-com {
|
|
1752
|
+
min-width: 50px;
|
|
1753
|
+
height: auto;
|
|
1754
|
+
margin: 6px;
|
|
1755
|
+
padding: 5px 0 6px;
|
|
1756
|
+
background-color: #111
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
1760
|
+
display: -webkit-box;
|
|
1761
|
+
display: -ms-flexbox;
|
|
1762
|
+
display: flex;
|
|
1763
|
+
position: relative;
|
|
1764
|
+
width: 100%;
|
|
1765
|
+
height: 100%;
|
|
1766
|
+
-webkit-box-align: center;
|
|
1767
|
+
-ms-flex-align: center;
|
|
1768
|
+
align-items: center
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
1772
|
+
line-height: 27px
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
1776
|
+
position: absolute;
|
|
1777
|
+
top: -100%
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
1781
|
+
-webkit-transform: scale(1);
|
|
1782
|
+
transform: scale(1)
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
.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 {
|
|
1786
|
+
display: none!important
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
.c-wrap {
|
|
1790
|
+
width: 100%;
|
|
1791
|
+
height: 100%;
|
|
1792
|
+
overflow: hidden;
|
|
1793
|
+
font-size: 0
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.c-wrap.c-day-wrap {
|
|
1797
|
+
text-align: center
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
.c-wrap.c-day-wrap .c-num {
|
|
1801
|
+
width: auto
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.c-wrap .c-num {
|
|
1805
|
+
display: inline-block;
|
|
1806
|
+
width: 50%;
|
|
1807
|
+
overflow: hidden;
|
|
1808
|
+
font-size: 20px;
|
|
1809
|
+
color: #999
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
.c-wrap .c-left .flex-wrap {
|
|
1813
|
+
display: -webkit-box;
|
|
1814
|
+
display: -ms-flexbox;
|
|
1815
|
+
display: flex;
|
|
1816
|
+
-webkit-box-pack: end;
|
|
1817
|
+
-ms-flex-pack: end;
|
|
1818
|
+
justify-content: flex-end
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.c-wrap .c-text {
|
|
1822
|
+
display: -webkit-box;
|
|
1823
|
+
display: -ms-flexbox;
|
|
1824
|
+
display: flex;
|
|
1825
|
+
width: 100%;
|
|
1826
|
+
font-size: 12px;
|
|
1827
|
+
-webkit-box-pack: center;
|
|
1828
|
+
-ms-flex-pack: center;
|
|
1829
|
+
justify-content: center;
|
|
1830
|
+
-webkit-box-align: center;
|
|
1831
|
+
-ms-flex-align: center;
|
|
1832
|
+
align-items: center;
|
|
1833
|
+
white-space: nowrap
|
|
1834
|
+
}
|
|
1835
|
+
.call {
|
|
1865
1836
|
position: absolute;
|
|
1866
1837
|
cursor: pointer;
|
|
1867
1838
|
user-select: none;
|
|
@@ -1904,34 +1875,6 @@ input::placeholder {
|
|
|
1904
1875
|
|
|
1905
1876
|
.hb-tel:before {
|
|
1906
1877
|
content: "\E642";
|
|
1907
|
-
}.button {
|
|
1908
|
-
position: absolute;
|
|
1909
|
-
cursor: pointer;
|
|
1910
|
-
user-select: none;
|
|
1911
|
-
}
|
|
1912
|
-
|
|
1913
|
-
.button .ani-wrap {
|
|
1914
|
-
display: flex;
|
|
1915
|
-
justify-content: center;
|
|
1916
|
-
align-items: center;
|
|
1917
|
-
width: 100%;
|
|
1918
|
-
height: 100%;
|
|
1919
|
-
overflow: hidden;
|
|
1920
|
-
transition: opacity 0.2s;
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
.button .ani-wrap:hover {
|
|
1924
|
-
opacity: 0.9;
|
|
1925
|
-
}
|
|
1926
|
-
|
|
1927
|
-
.button-content {
|
|
1928
|
-
display: flex;
|
|
1929
|
-
align-items: center;
|
|
1930
|
-
justify-content: center;
|
|
1931
|
-
}
|
|
1932
|
-
|
|
1933
|
-
.btn-text {
|
|
1934
|
-
margin-left: 10px;
|
|
1935
1878
|
}/* Iconfont definition */
|
|
1936
1879
|
.icon-danmuliebiao1:before {
|
|
1937
1880
|
content: "\E68A";
|
|
@@ -4299,4 +4242,59 @@ input::placeholder {
|
|
|
4299
4242
|
-webkit-transform: none;
|
|
4300
4243
|
transform: none
|
|
4301
4244
|
}
|
|
4245
|
+
}.ele-effect {
|
|
4246
|
+
will-change: transform;
|
|
4247
|
+
}
|
|
4248
|
+
|
|
4249
|
+
.ele-effect .effect-wrap {
|
|
4250
|
+
position: relative;
|
|
4251
|
+
width: 100%;
|
|
4252
|
+
height: 100%;
|
|
4253
|
+
}
|
|
4254
|
+
|
|
4255
|
+
.particle {
|
|
4256
|
+
position: absolute;
|
|
4257
|
+
background-repeat: no-repeat;
|
|
4258
|
+
background-size: contain;
|
|
4259
|
+
animation-name: falling;
|
|
4260
|
+
animation-timing-function: linear;
|
|
4261
|
+
animation-iteration-count: infinite;
|
|
4262
|
+
will-change: transform;
|
|
4263
|
+
}
|
|
4264
|
+
|
|
4265
|
+
@keyframes falling {
|
|
4266
|
+
0% {
|
|
4267
|
+
transform: translateY(0) rotate(0deg);
|
|
4268
|
+
opacity: 1;
|
|
4269
|
+
}
|
|
4270
|
+
80% {
|
|
4271
|
+
opacity: 0.8;
|
|
4272
|
+
}
|
|
4273
|
+
100% {
|
|
4274
|
+
transform: translateY(100vh) rotate(360deg);
|
|
4275
|
+
opacity: 0;
|
|
4276
|
+
}
|
|
4277
|
+
}
|
|
4278
|
+
.ele-lottie .ele-lotwrap {
|
|
4279
|
+
overflow: hidden
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
.ele-effect .effect-wrap {
|
|
4283
|
+
position: relative;
|
|
4284
|
+
overflow: hidden;
|
|
4285
|
+
width: 100%;
|
|
4286
|
+
height: 100%
|
|
4287
|
+
}
|
|
4288
|
+
|
|
4289
|
+
.ele-effect .e-small {
|
|
4290
|
+
position: absolute;
|
|
4291
|
+
width: 24px;
|
|
4292
|
+
height: 24px;
|
|
4293
|
+
background-image: url(http://cdn.h5ds.com/static/images/snow.png);
|
|
4294
|
+
background-size: cover;
|
|
4295
|
+
background-repeat: no-repeat;
|
|
4296
|
+
-webkit-transform-origin: center;
|
|
4297
|
+
transform-origin: center;
|
|
4298
|
+
-webkit-animation: snow 5s linear infinite;
|
|
4299
|
+
animation: snow 5s linear infinite
|
|
4302
4300
|
}
|