unika-components 1.0.369 → 1.0.371
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,44 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
.video-player {
|
|
3
|
-
position: absolute;
|
|
4
|
-
overflow: hidden;
|
|
5
|
-
background-color: #000;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.video-container {
|
|
9
|
-
width: 100%;
|
|
10
|
-
height: 100%;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.video-container iframe {
|
|
14
|
-
width: 100%;
|
|
15
|
-
height: 100%;
|
|
16
|
-
border: none;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.video-cover {
|
|
20
|
-
position: relative;
|
|
21
|
-
width: 100%;
|
|
22
|
-
height: 100%;
|
|
23
|
-
background-size: cover;
|
|
24
|
-
background-position: center;
|
|
25
|
-
cursor: pointer;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.video-cover .play-btn {
|
|
29
|
-
position: absolute;
|
|
30
|
-
left: 50%;
|
|
31
|
-
top: 50%;
|
|
32
|
-
transform: translate(-50%, -50%);
|
|
33
|
-
width: 50px;
|
|
34
|
-
height: 50px;
|
|
35
|
-
opacity: 0.8;
|
|
36
|
-
transition: opacity 0.2s;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.video-cover:hover .play-btn {
|
|
40
|
-
opacity: 1;
|
|
41
|
-
}
|
|
42
1
|
|
|
43
2
|
.ele-text {
|
|
44
3
|
position: relative;
|
|
@@ -107,404 +66,330 @@
|
|
|
107
66
|
opacity: 1;
|
|
108
67
|
}
|
|
109
68
|
}
|
|
110
|
-
|
|
111
|
-
.ele-img {
|
|
112
|
-
position: absolute;
|
|
113
|
-
overflow: hidden;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.ele-img .ani-wrap {
|
|
117
|
-
width: 100%;
|
|
118
|
-
height: 100%;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.ele-img .ele-image {
|
|
122
|
-
position: relative;
|
|
123
|
-
display: block;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.ele-img .rotate-wrap {
|
|
127
|
-
position: absolute;
|
|
128
|
-
left: 0;
|
|
129
|
-
right: 0;
|
|
130
|
-
top: 0;
|
|
131
|
-
bottom: 0;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.ele-img .ele-img-bg,
|
|
135
|
-
.ele-img .rotate-wrap .img-wrap {
|
|
136
|
-
width: 100%;
|
|
137
|
-
height: 100%;
|
|
138
|
-
overflow: hidden;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.ele-img .ele-bg-wrap {
|
|
142
|
-
width: 100%;
|
|
143
|
-
height: 100%;
|
|
144
|
-
background-size: cover;
|
|
145
|
-
background-position: 50% 50%;
|
|
146
|
-
background-repeat: no-repeat;
|
|
147
|
-
background-clip: border-box;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
/* 动画关键帧 */
|
|
151
|
-
@keyframes zoomIn {
|
|
152
|
-
from {
|
|
153
|
-
opacity: 0;
|
|
154
|
-
transform: scale(0.5);
|
|
155
|
-
}
|
|
156
|
-
to {
|
|
157
|
-
opacity: 1;
|
|
158
|
-
transform: scale(1);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
69
|
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
height: 30px;
|
|
169
|
-
display: flex;
|
|
170
|
-
align-items: center;
|
|
70
|
+
@font-face {
|
|
71
|
+
font-family: "iconfont"; /* Project id 3350423 */
|
|
72
|
+
src: url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.woff2?t=1737679854669') format('woff2'),
|
|
73
|
+
url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.woff?t=1737679854669') format('woff'),
|
|
74
|
+
url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.ttf?t=1737679854669') format('truetype'),
|
|
75
|
+
url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.svg?t=1737679854669#iconfont') format('svg');
|
|
171
76
|
}
|
|
172
77
|
|
|
173
|
-
|
|
174
|
-
|
|
78
|
+
.iconfont {
|
|
79
|
+
font-family: "iconfont" !important;
|
|
80
|
+
font-size: 16px;
|
|
81
|
+
font-style: normal;
|
|
82
|
+
-webkit-font-smoothing: antialiased;
|
|
83
|
+
-moz-osx-font-smoothing: grayscale;
|
|
175
84
|
}
|
|
176
85
|
|
|
177
|
-
@keyframes
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
86
|
+
@keyframes jumpheart {
|
|
87
|
+
to {
|
|
88
|
+
-webkit-transform: scale(1.2);
|
|
89
|
+
transform: scale(1.2)
|
|
90
|
+
}
|
|
181
91
|
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
width:
|
|
185
|
-
height:
|
|
186
|
-
|
|
187
|
-
align-items: center;
|
|
188
|
-
justify-content: center;
|
|
189
|
-
color: #fff;
|
|
190
|
-
background: #666;
|
|
191
|
-
border-radius: 50%;
|
|
192
|
-
overflow: hidden;
|
|
193
|
-
cursor: pointer;
|
|
194
|
-
transition: all 0.3s ease;
|
|
92
|
+
.ele-calendar {
|
|
93
|
+
position: relative;
|
|
94
|
+
width: 325px !important;
|
|
95
|
+
min-height: 325px !important;
|
|
96
|
+
height: auto !important;
|
|
195
97
|
}
|
|
196
98
|
|
|
197
|
-
|
|
198
|
-
|
|
99
|
+
.ele-calendar .drag-point {
|
|
100
|
+
cursor: default !important;
|
|
199
101
|
}
|
|
200
102
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
width:
|
|
204
|
-
height:
|
|
205
|
-
|
|
103
|
+
.ele-calendar .ani-wrap {
|
|
104
|
+
position: relative;
|
|
105
|
+
width: 100%;
|
|
106
|
+
min-height: 325px !important;
|
|
107
|
+
height: auto !important;
|
|
108
|
+
padding: 22px 0;
|
|
206
109
|
}
|
|
207
110
|
|
|
208
|
-
|
|
209
|
-
|
|
111
|
+
.ele-calendar .ani-wrap .can-wrap .can-top {
|
|
112
|
+
display: flex;
|
|
113
|
+
justify-content: space-between;
|
|
114
|
+
align-items: flex-end;
|
|
210
115
|
line-height: 1;
|
|
116
|
+
padding: 0 47px 20px;
|
|
211
117
|
}
|
|
212
|
-
#audio .icon-cancel {
|
|
213
|
-
position: absolute;
|
|
214
|
-
width: 100%;
|
|
215
|
-
height: 100%;
|
|
216
|
-
border-radius: 50%;
|
|
217
|
-
overflow: hidden;
|
|
218
|
-
padding: 15px 0;
|
|
219
|
-
}
|
|
220
|
-
#audio .icon-cancel .icon-h {
|
|
221
|
-
transform: rotate(45deg);
|
|
222
|
-
width: 100%;
|
|
223
|
-
height: 2px;
|
|
224
|
-
background: #fff;
|
|
225
|
-
}
|
|
226
|
-
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
227
|
-
content: '';
|
|
228
|
-
position: absolute;
|
|
229
|
-
width: 100%;
|
|
230
|
-
height: 2px;
|
|
231
|
-
background: #fff;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
.ele-shape {
|
|
235
|
-
position: absolute;
|
|
236
|
-
overflow: hidden;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.ani-wrap {
|
|
240
|
-
width: 100%;
|
|
241
|
-
height: 100%;
|
|
242
|
-
box-sizing: border-box;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.e-shape {
|
|
246
|
-
width: 100%;
|
|
247
|
-
height: 100%;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
.svg-container :deep(svg) {
|
|
251
|
-
width: 100%;
|
|
252
|
-
height: 100%;
|
|
253
|
-
display: block;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
.svg-loading,
|
|
257
|
-
.svg-error {
|
|
258
|
-
display: flex;
|
|
259
|
-
align-items: center;
|
|
260
|
-
justify-content: center;
|
|
261
|
-
width: 100%;
|
|
262
|
-
height: 100%;
|
|
263
|
-
background: rgba(0,0,0,0.05);
|
|
264
|
-
}
|
|
265
118
|
|
|
266
|
-
.
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
align-items: center;
|
|
270
|
-
cursor: pointer;
|
|
119
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-left {
|
|
120
|
+
font-size: 25px;
|
|
121
|
+
padding-bottom: 4px;
|
|
271
122
|
}
|
|
272
123
|
|
|
273
|
-
.
|
|
274
|
-
font-size:
|
|
275
|
-
color: #e74c3c;
|
|
124
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right {
|
|
125
|
+
font-size: 25px;
|
|
276
126
|
}
|
|
277
127
|
|
|
278
|
-
.
|
|
279
|
-
|
|
128
|
+
.ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
|
|
129
|
+
position: relative;
|
|
130
|
+
top: 2px;
|
|
131
|
+
font-size: 57px;
|
|
280
132
|
}
|
|
281
133
|
|
|
282
|
-
.
|
|
283
|
-
|
|
284
|
-
font-size: 16px;
|
|
285
|
-
color: #333;
|
|
134
|
+
.ele-calendar .ani-wrap .can-wrap .can-main {
|
|
135
|
+
padding: 0 23px;
|
|
286
136
|
}
|
|
287
137
|
|
|
288
|
-
.
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
138
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week {
|
|
139
|
+
display: flex;
|
|
140
|
+
justify-content: flex-start;
|
|
141
|
+
height: 25px;
|
|
142
|
+
line-height: 25px;
|
|
143
|
+
padding: 0 10px;
|
|
144
|
+
border-radius: 13px;
|
|
292
145
|
}
|
|
293
146
|
|
|
294
|
-
.
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
height: 100%;
|
|
300
|
-
overflow: hidden;
|
|
301
|
-
transition: opacity 0.2s;
|
|
147
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
|
|
148
|
+
width: 14.2%;
|
|
149
|
+
text-align: center;
|
|
150
|
+
color: #fff;
|
|
151
|
+
font-size: 12px;
|
|
302
152
|
}
|
|
303
153
|
|
|
304
|
-
.
|
|
305
|
-
|
|
154
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
|
|
155
|
+
font-size: 0;
|
|
156
|
+
padding: 5px 10px 0;
|
|
157
|
+
text-align: left;
|
|
306
158
|
}
|
|
307
159
|
|
|
308
|
-
.
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
160
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
|
|
161
|
+
position: relative;
|
|
162
|
+
display: inline-block;
|
|
163
|
+
height: 25px;
|
|
164
|
+
text-align: center;
|
|
165
|
+
margin-top: 8px;
|
|
312
166
|
}
|
|
313
167
|
|
|
314
|
-
.
|
|
315
|
-
|
|
168
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
|
|
169
|
+
display: block;
|
|
316
170
|
}
|
|
317
171
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
display: inline-block;
|
|
321
|
-
width: 16px;
|
|
322
|
-
height: 16px;
|
|
323
|
-
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>');
|
|
324
|
-
background-repeat: no-repeat;
|
|
325
|
-
background-position: center;
|
|
326
|
-
background-size: contain;
|
|
172
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
|
|
173
|
+
color: #fff !important;
|
|
327
174
|
}
|
|
328
175
|
|
|
329
|
-
.
|
|
330
|
-
|
|
176
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
|
|
177
|
+
animation: jumpheart 0.8s ease infinite alternate;
|
|
331
178
|
}
|
|
332
179
|
|
|
333
|
-
.
|
|
334
|
-
|
|
335
|
-
|
|
180
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
|
|
181
|
+
display: none;
|
|
182
|
+
font-size: 26px;
|
|
336
183
|
}
|
|
337
184
|
|
|
338
|
-
.
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
-webkit-box-pack: center;
|
|
347
|
-
-ms-flex-pack: center;
|
|
348
|
-
justify-content: center
|
|
185
|
+
.ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
|
|
186
|
+
position: absolute;
|
|
187
|
+
left: 50%;
|
|
188
|
+
top: 50%;
|
|
189
|
+
z-index: 1;
|
|
190
|
+
color: #666;
|
|
191
|
+
font-size: 13px;
|
|
192
|
+
transform: translate(-50%, -52%);
|
|
349
193
|
}
|
|
350
194
|
|
|
351
|
-
.
|
|
352
|
-
|
|
195
|
+
.ele-calendar .bottom-center,
|
|
196
|
+
.ele-calendar .left-center,
|
|
197
|
+
.ele-calendar .right-center,
|
|
198
|
+
.ele-calendar .top-center {
|
|
199
|
+
display: none !important;
|
|
200
|
+
}
|
|
201
|
+
.icon-zan1:before {
|
|
202
|
+
content: "\E66D";
|
|
203
|
+
}
|
|
204
|
+
.ele-calendar .ani-wrap .can-wrap2 {
|
|
205
|
+
padding: 21px 23px 0
|
|
353
206
|
}
|
|
354
207
|
|
|
355
|
-
.
|
|
208
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top {
|
|
356
209
|
display: -webkit-box;
|
|
357
210
|
display: -ms-flexbox;
|
|
358
211
|
display: flex;
|
|
359
|
-
|
|
360
|
-
-
|
|
361
|
-
-
|
|
362
|
-
align
|
|
363
|
-
-
|
|
364
|
-
-
|
|
365
|
-
|
|
212
|
+
-webkit-box-pack: justify;
|
|
213
|
+
-ms-flex-pack: justify;
|
|
214
|
+
justify-content: space-between;
|
|
215
|
+
-webkit-box-align: end;
|
|
216
|
+
-ms-flex-align: end;
|
|
217
|
+
align-items: flex-end;
|
|
218
|
+
line-height: 1;
|
|
219
|
+
padding: 0 16px 22px;
|
|
220
|
+
font-size: 36px
|
|
366
221
|
}
|
|
367
222
|
|
|
368
|
-
.
|
|
369
|
-
-
|
|
370
|
-
animation: numscroll .4s ease-in-out;
|
|
371
|
-
-webkit-animation-fill-mode: both;
|
|
372
|
-
animation-fill-mode: both
|
|
223
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-top span {
|
|
224
|
+
font-size: 16px
|
|
373
225
|
}
|
|
374
226
|
|
|
375
|
-
.
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
-webkit-
|
|
380
|
-
|
|
227
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
|
|
228
|
+
display: -webkit-box;
|
|
229
|
+
display: -ms-flexbox;
|
|
230
|
+
display: flex;
|
|
231
|
+
-webkit-box-pack: start;
|
|
232
|
+
-ms-flex-pack: start;
|
|
233
|
+
justify-content: flex-start;
|
|
234
|
+
height: 25px;
|
|
235
|
+
line-height: 25px;
|
|
236
|
+
padding: 0 10px;
|
|
237
|
+
border-radius: 13px
|
|
381
238
|
}
|
|
382
239
|
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
to {
|
|
390
|
-
-webkit-transform: translate3d(0,100%,0);
|
|
391
|
-
transform: translate3d(0,100%,0)
|
|
392
|
-
}
|
|
240
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
|
|
241
|
+
width: 14.2%;
|
|
242
|
+
text-align: center;
|
|
243
|
+
color: #fff;
|
|
244
|
+
font-size: 12px;
|
|
245
|
+
font-weight: 600
|
|
393
246
|
}
|
|
394
247
|
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
transform: translateZ(0)
|
|
399
|
-
}
|
|
248
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
|
|
249
|
+
position: relative
|
|
250
|
+
}
|
|
400
251
|
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
252
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
|
|
253
|
+
position: absolute;
|
|
254
|
+
white-space: nowrap;
|
|
255
|
+
left: 50%;
|
|
256
|
+
top: 15%;
|
|
257
|
+
-webkit-transform: translateX(-50%);
|
|
258
|
+
transform: translateX(-50%);
|
|
259
|
+
font-size: 76px;
|
|
260
|
+
opacity: .1;
|
|
261
|
+
font-weight: 600
|
|
405
262
|
}
|
|
406
263
|
|
|
407
|
-
.
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
padding: 5px 0 6px;
|
|
412
|
-
background-color: #111
|
|
264
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
|
|
265
|
+
font-size: 0;
|
|
266
|
+
padding: 5px 10px 0;
|
|
267
|
+
text-align: left
|
|
413
268
|
}
|
|
414
269
|
|
|
415
|
-
.
|
|
416
|
-
display: -webkit-box;
|
|
417
|
-
display: -ms-flexbox;
|
|
418
|
-
display: flex;
|
|
270
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
|
|
419
271
|
position: relative;
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
-
|
|
424
|
-
|
|
272
|
+
display: inline-block;
|
|
273
|
+
width: 14.2%;
|
|
274
|
+
height: 25px;
|
|
275
|
+
text-align: center;
|
|
276
|
+
margin-top: 8px
|
|
425
277
|
}
|
|
426
278
|
|
|
427
|
-
.
|
|
428
|
-
|
|
279
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
|
|
280
|
+
display: block;
|
|
281
|
+
position: absolute;
|
|
282
|
+
left: 17%;
|
|
283
|
+
top: 0;
|
|
284
|
+
font-size: 25px
|
|
429
285
|
}
|
|
430
286
|
|
|
431
|
-
.
|
|
432
|
-
|
|
433
|
-
top: -100%
|
|
287
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
|
|
288
|
+
color: #fff!important
|
|
434
289
|
}
|
|
435
290
|
|
|
436
|
-
.
|
|
437
|
-
-webkit-
|
|
438
|
-
|
|
291
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
|
|
292
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
293
|
+
animation: jumpheart .8s ease infinite alternate
|
|
439
294
|
}
|
|
440
295
|
|
|
441
|
-
.
|
|
442
|
-
display: none
|
|
296
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
|
|
297
|
+
display: none;
|
|
298
|
+
font-size: 26px
|
|
443
299
|
}
|
|
444
300
|
|
|
445
|
-
.
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
301
|
+
.ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
|
|
302
|
+
position: absolute;
|
|
303
|
+
left: 50%;
|
|
304
|
+
top: 50%;
|
|
305
|
+
z-index: 1;
|
|
306
|
+
color: #666;
|
|
307
|
+
font-size: 13px;
|
|
308
|
+
-webkit-transform: translate(-50%,-52%);
|
|
309
|
+
transform: translate(-50%,-52%)
|
|
450
310
|
}
|
|
451
311
|
|
|
452
|
-
.
|
|
453
|
-
|
|
312
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top {
|
|
313
|
+
display: -webkit-box;
|
|
314
|
+
display: -ms-flexbox;
|
|
315
|
+
display: flex;
|
|
316
|
+
-webkit-box-pack: justify;
|
|
317
|
+
-ms-flex-pack: justify;
|
|
318
|
+
justify-content: space-between;
|
|
319
|
+
-webkit-box-align: end;
|
|
320
|
+
-ms-flex-align: end;
|
|
321
|
+
align-items: flex-end;
|
|
322
|
+
line-height: 1;
|
|
323
|
+
padding: 18px 33px 10px;
|
|
324
|
+
font-size: 36px
|
|
454
325
|
}
|
|
455
326
|
|
|
456
|
-
.
|
|
457
|
-
|
|
327
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top span {
|
|
328
|
+
font-size: 16px
|
|
458
329
|
}
|
|
459
330
|
|
|
460
|
-
.
|
|
461
|
-
|
|
462
|
-
width: 50%;
|
|
463
|
-
overflow: hidden;
|
|
464
|
-
font-size: 20px;
|
|
465
|
-
color: #999
|
|
331
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
|
|
332
|
+
font-size: 20px
|
|
466
333
|
}
|
|
467
334
|
|
|
468
|
-
.
|
|
335
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
|
|
469
336
|
display: -webkit-box;
|
|
470
337
|
display: -ms-flexbox;
|
|
471
338
|
display: flex;
|
|
472
|
-
-webkit-box-pack:
|
|
473
|
-
-ms-flex-pack:
|
|
474
|
-
justify-content: flex-
|
|
339
|
+
-webkit-box-pack: start;
|
|
340
|
+
-ms-flex-pack: start;
|
|
341
|
+
justify-content: flex-start;
|
|
342
|
+
height: 40px;
|
|
343
|
+
line-height: 40px;
|
|
344
|
+
padding: 0 34px;
|
|
345
|
+
border-bottom: 1px solid
|
|
475
346
|
}
|
|
476
347
|
|
|
477
|
-
.
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
width: 100%;
|
|
348
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
|
|
349
|
+
width: 14.2%;
|
|
350
|
+
text-align: center;
|
|
351
|
+
color: #fff;
|
|
482
352
|
font-size: 12px;
|
|
483
|
-
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
353
|
+
font-weight: 600
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
|
|
357
|
+
position: relative
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
|
|
361
|
+
font-size: 0;
|
|
362
|
+
padding: 5px 33px 0;
|
|
363
|
+
text-align: left
|
|
490
364
|
}
|
|
491
365
|
|
|
366
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
|
|
367
|
+
position: relative;
|
|
368
|
+
display: inline-block;
|
|
369
|
+
width: 14.2%;
|
|
370
|
+
height: 25px;
|
|
371
|
+
text-align: center;
|
|
372
|
+
margin-top: 8px
|
|
373
|
+
}
|
|
492
374
|
|
|
375
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
|
|
376
|
+
color: #eee
|
|
377
|
+
}
|
|
493
378
|
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.svg?t=1737679854669#iconfont') format('svg');
|
|
379
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
|
|
380
|
+
display: block;
|
|
381
|
+
position: absolute;
|
|
382
|
+
left: 12%;
|
|
383
|
+
top: 2px
|
|
500
384
|
}
|
|
501
385
|
|
|
502
|
-
.
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
386
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
|
|
387
|
+
font-size: 12px
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
|
|
391
|
+
-webkit-animation: jumpheart .8s ease infinite alternate;
|
|
392
|
+
animation: jumpheart .8s ease infinite alternate
|
|
508
393
|
}
|
|
509
394
|
|
|
510
395
|
@keyframes jumpheart {
|
|
@@ -513,340 +398,490 @@
|
|
|
513
398
|
transform: scale(1.2)
|
|
514
399
|
}
|
|
515
400
|
}
|
|
516
|
-
.ele-calendar {
|
|
517
|
-
position: relative;
|
|
518
|
-
width: 325px !important;
|
|
519
|
-
min-height: 325px !important;
|
|
520
|
-
height: auto !important;
|
|
521
|
-
}
|
|
522
401
|
|
|
523
|
-
.ele-calendar .
|
|
524
|
-
|
|
402
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
|
|
403
|
+
display: none;
|
|
404
|
+
font-size: 26px
|
|
525
405
|
}
|
|
526
406
|
|
|
527
|
-
.ele-calendar .ani-wrap {
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
407
|
+
.ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
|
|
408
|
+
position: absolute;
|
|
409
|
+
left: 50%;
|
|
410
|
+
top: 50%;
|
|
411
|
+
z-index: 1;
|
|
412
|
+
color: #666;
|
|
413
|
+
font-size: 13px;
|
|
414
|
+
-webkit-transform: translate(-50%,-52%);
|
|
415
|
+
transform: translate(-50%,-52%)
|
|
533
416
|
}
|
|
534
417
|
|
|
535
|
-
.ele-calendar .
|
|
536
|
-
|
|
537
|
-
justify-content: space-between;
|
|
538
|
-
align-items: flex-end;
|
|
539
|
-
line-height: 1;
|
|
540
|
-
padding: 0 47px 20px;
|
|
418
|
+
.ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
|
|
419
|
+
display: none!important
|
|
541
420
|
}
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
421
|
+
.icon-tuoyuanxing:before {
|
|
422
|
+
content: "\E6A7";
|
|
423
|
+
}
|
|
424
|
+
.icon-xingzhuangjiehe:before {
|
|
425
|
+
content: "\E6A6";
|
|
546
426
|
}
|
|
547
427
|
|
|
548
|
-
|
|
549
|
-
|
|
428
|
+
#audio {
|
|
429
|
+
position: absolute;
|
|
430
|
+
right: 10px;
|
|
431
|
+
top: 10px;
|
|
432
|
+
z-index: 103;
|
|
433
|
+
width: 30px;
|
|
434
|
+
height: 30px;
|
|
435
|
+
display: flex;
|
|
436
|
+
align-items: center;
|
|
550
437
|
}
|
|
551
438
|
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
top: 2px;
|
|
555
|
-
font-size: 57px;
|
|
439
|
+
#audio .mrotate {
|
|
440
|
+
animation: mrotate 5s linear infinite;
|
|
556
441
|
}
|
|
557
442
|
|
|
558
|
-
|
|
559
|
-
|
|
443
|
+
@keyframes mrotate {
|
|
444
|
+
to {
|
|
445
|
+
transform: rotate(1turn);
|
|
446
|
+
}
|
|
560
447
|
}
|
|
561
448
|
|
|
562
|
-
|
|
449
|
+
#audio .audio {
|
|
450
|
+
width: 100%;
|
|
451
|
+
height: 100%;
|
|
563
452
|
display: flex;
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
border-radius:
|
|
453
|
+
align-items: center;
|
|
454
|
+
justify-content: center;
|
|
455
|
+
color: #fff;
|
|
456
|
+
background: #666;
|
|
457
|
+
border-radius: 50%;
|
|
458
|
+
overflow: hidden;
|
|
459
|
+
cursor: pointer;
|
|
460
|
+
transition: all 0.3s ease;
|
|
569
461
|
}
|
|
570
462
|
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
text-align: center;
|
|
574
|
-
color: #fff;
|
|
575
|
-
font-size: 12px;
|
|
463
|
+
#audio .audio.a-border {
|
|
464
|
+
border: 1px solid #fff;
|
|
576
465
|
}
|
|
577
466
|
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
467
|
+
#audio .audio .music-icon {
|
|
468
|
+
display: block;
|
|
469
|
+
width: 60%;
|
|
470
|
+
height: 60%;
|
|
471
|
+
object-fit: contain;
|
|
582
472
|
}
|
|
583
473
|
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
474
|
+
#audio .audio .iconfont {
|
|
475
|
+
font-size: 2opx;
|
|
476
|
+
line-height: 1;
|
|
477
|
+
}
|
|
478
|
+
#audio .icon-cancel {
|
|
479
|
+
position: absolute;
|
|
480
|
+
width: 100%;
|
|
481
|
+
height: 100%;
|
|
482
|
+
border-radius: 50%;
|
|
483
|
+
overflow: hidden;
|
|
484
|
+
padding: 15px 0;
|
|
590
485
|
}
|
|
486
|
+
#audio .icon-cancel .icon-h {
|
|
487
|
+
transform: rotate(45deg);
|
|
488
|
+
width: 100%;
|
|
489
|
+
height: 2px;
|
|
490
|
+
background: #fff;
|
|
491
|
+
}
|
|
492
|
+
#audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
|
|
493
|
+
content: '';
|
|
494
|
+
position: absolute;
|
|
495
|
+
width: 100%;
|
|
496
|
+
height: 2px;
|
|
497
|
+
background: #fff;
|
|
498
|
+
}
|
|
591
499
|
|
|
592
|
-
.
|
|
593
|
-
|
|
500
|
+
.video-player {
|
|
501
|
+
position: absolute;
|
|
502
|
+
overflow: hidden;
|
|
503
|
+
background-color: #000;
|
|
594
504
|
}
|
|
595
505
|
|
|
596
|
-
.
|
|
597
|
-
|
|
506
|
+
.video-container {
|
|
507
|
+
width: 100%;
|
|
508
|
+
height: 100%;
|
|
598
509
|
}
|
|
599
510
|
|
|
600
|
-
.
|
|
601
|
-
|
|
511
|
+
.video-container iframe {
|
|
512
|
+
width: 100%;
|
|
513
|
+
height: 100%;
|
|
514
|
+
border: none;
|
|
602
515
|
}
|
|
603
516
|
|
|
604
|
-
.
|
|
605
|
-
|
|
606
|
-
|
|
517
|
+
.video-cover {
|
|
518
|
+
position: relative;
|
|
519
|
+
width: 100%;
|
|
520
|
+
height: 100%;
|
|
521
|
+
background-size: cover;
|
|
522
|
+
background-position: center;
|
|
523
|
+
cursor: pointer;
|
|
607
524
|
}
|
|
608
525
|
|
|
609
|
-
.
|
|
526
|
+
.video-cover .play-btn {
|
|
610
527
|
position: absolute;
|
|
611
528
|
left: 50%;
|
|
612
529
|
top: 50%;
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
530
|
+
transform: translate(-50%, -50%);
|
|
531
|
+
width: 50px;
|
|
532
|
+
height: 50px;
|
|
533
|
+
opacity: 0.8;
|
|
534
|
+
transition: opacity 0.2s;
|
|
617
535
|
}
|
|
618
536
|
|
|
619
|
-
.
|
|
620
|
-
|
|
621
|
-
.ele-calendar .right-center,
|
|
622
|
-
.ele-calendar .top-center {
|
|
623
|
-
display: none !important;
|
|
624
|
-
}
|
|
625
|
-
.icon-zan1:before {
|
|
626
|
-
content: "\E66D";
|
|
627
|
-
}
|
|
628
|
-
.ele-calendar .ani-wrap .can-wrap2 {
|
|
629
|
-
padding: 21px 23px 0
|
|
537
|
+
.video-cover:hover .play-btn {
|
|
538
|
+
opacity: 1;
|
|
630
539
|
}
|
|
540
|
+
|
|
541
|
+
.ele-shape {
|
|
542
|
+
position: absolute;
|
|
543
|
+
overflow: hidden;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.ani-wrap {
|
|
547
|
+
width: 100%;
|
|
548
|
+
height: 100%;
|
|
549
|
+
box-sizing: border-box;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.e-shape {
|
|
553
|
+
width: 100%;
|
|
554
|
+
height: 100%;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.svg-container :deep(svg) {
|
|
558
|
+
width: 100%;
|
|
559
|
+
height: 100%;
|
|
560
|
+
display: block;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.svg-loading,
|
|
564
|
+
.svg-error {
|
|
565
|
+
display: flex;
|
|
566
|
+
align-items: center;
|
|
567
|
+
justify-content: center;
|
|
568
|
+
width: 100%;
|
|
569
|
+
height: 100%;
|
|
570
|
+
background: rgba(0,0,0,0.05);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.ele-img {
|
|
574
|
+
position: absolute;
|
|
575
|
+
overflow: hidden;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.ele-img .ani-wrap {
|
|
579
|
+
width: 100%;
|
|
580
|
+
height: 100%;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.ele-img .ele-image {
|
|
584
|
+
position: relative;
|
|
585
|
+
display: block;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.ele-img .rotate-wrap {
|
|
589
|
+
position: absolute;
|
|
590
|
+
left: 0;
|
|
591
|
+
right: 0;
|
|
592
|
+
top: 0;
|
|
593
|
+
bottom: 0;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.ele-img .ele-img-bg,
|
|
597
|
+
.ele-img .rotate-wrap .img-wrap {
|
|
598
|
+
width: 100%;
|
|
599
|
+
height: 100%;
|
|
600
|
+
overflow: hidden;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.ele-img .ele-bg-wrap {
|
|
604
|
+
width: 100%;
|
|
605
|
+
height: 100%;
|
|
606
|
+
background-size: cover;
|
|
607
|
+
background-position: 50% 50%;
|
|
608
|
+
background-repeat: no-repeat;
|
|
609
|
+
background-clip: border-box;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
/* 动画关键帧 */
|
|
613
|
+
@keyframes zoomIn {
|
|
614
|
+
from {
|
|
615
|
+
opacity: 0;
|
|
616
|
+
transform: scale(0.5);
|
|
617
|
+
}
|
|
618
|
+
to {
|
|
619
|
+
opacity: 1;
|
|
620
|
+
transform: scale(1);
|
|
621
|
+
}
|
|
622
|
+
}
|
|
631
623
|
|
|
632
|
-
.
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
-webkit-box-pack: justify;
|
|
637
|
-
-ms-flex-pack: justify;
|
|
638
|
-
justify-content: space-between;
|
|
639
|
-
-webkit-box-align: end;
|
|
640
|
-
-ms-flex-align: end;
|
|
641
|
-
align-items: flex-end;
|
|
642
|
-
line-height: 1;
|
|
643
|
-
padding: 0 16px 22px;
|
|
644
|
-
font-size: 36px
|
|
624
|
+
.bohao-button {
|
|
625
|
+
position: absolute;
|
|
626
|
+
cursor: pointer;
|
|
627
|
+
user-select: none;
|
|
645
628
|
}
|
|
646
629
|
|
|
647
|
-
.
|
|
648
|
-
|
|
630
|
+
.bohao-container {
|
|
631
|
+
display: flex;
|
|
632
|
+
justify-content: center;
|
|
633
|
+
align-items: center;
|
|
634
|
+
width: 100%;
|
|
635
|
+
height: 100%;
|
|
636
|
+
overflow: hidden;
|
|
637
|
+
transition: opacity 0.2s;
|
|
649
638
|
}
|
|
650
639
|
|
|
651
|
-
.
|
|
652
|
-
|
|
653
|
-
display: -ms-flexbox;
|
|
654
|
-
display: flex;
|
|
655
|
-
-webkit-box-pack: start;
|
|
656
|
-
-ms-flex-pack: start;
|
|
657
|
-
justify-content: flex-start;
|
|
658
|
-
height: 25px;
|
|
659
|
-
line-height: 25px;
|
|
660
|
-
padding: 0 10px;
|
|
661
|
-
border-radius: 13px
|
|
640
|
+
.bohao-container:hover {
|
|
641
|
+
opacity: 0.9;
|
|
662
642
|
}
|
|
663
643
|
|
|
664
|
-
.
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
font-size: 12px;
|
|
669
|
-
font-weight: 600
|
|
644
|
+
.bohao-content {
|
|
645
|
+
display: flex;
|
|
646
|
+
align-items: center;
|
|
647
|
+
justify-content: center;
|
|
670
648
|
}
|
|
671
649
|
|
|
672
|
-
.
|
|
673
|
-
|
|
650
|
+
.btn-text {
|
|
651
|
+
margin-left: 10px;
|
|
674
652
|
}
|
|
675
653
|
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
font-weight: 600
|
|
654
|
+
/* 这里可以添加实际的电话图标样式 */
|
|
655
|
+
.iconfont.hb-tel {
|
|
656
|
+
display: inline-block;
|
|
657
|
+
width: 16px;
|
|
658
|
+
height: 16px;
|
|
659
|
+
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>');
|
|
660
|
+
background-repeat: no-repeat;
|
|
661
|
+
background-position: center;
|
|
662
|
+
background-size: contain;
|
|
686
663
|
}
|
|
687
664
|
|
|
688
|
-
.
|
|
689
|
-
|
|
690
|
-
padding: 5px 10px 0;
|
|
691
|
-
text-align: left
|
|
665
|
+
.count-down .drag-point {
|
|
666
|
+
cursor: default!important
|
|
692
667
|
}
|
|
693
668
|
|
|
694
|
-
.
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
width: 14.2%;
|
|
698
|
-
height: 25px;
|
|
699
|
-
text-align: center;
|
|
700
|
-
margin-top: 8px
|
|
669
|
+
.count-down .ani-wrap {
|
|
670
|
+
width: 100%;
|
|
671
|
+
height: 100%
|
|
701
672
|
}
|
|
702
673
|
|
|
703
|
-
.
|
|
704
|
-
display:
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
674
|
+
.count-down .count-text,.count-down .finish-cont {
|
|
675
|
+
display: -webkit-box;
|
|
676
|
+
display: -ms-flexbox;
|
|
677
|
+
display: flex;
|
|
678
|
+
height: 100%;
|
|
679
|
+
-webkit-box-align: center;
|
|
680
|
+
-ms-flex-align: center;
|
|
681
|
+
align-items: center;
|
|
682
|
+
-webkit-box-pack: center;
|
|
683
|
+
-ms-flex-pack: center;
|
|
684
|
+
justify-content: center
|
|
709
685
|
}
|
|
710
686
|
|
|
711
|
-
.
|
|
712
|
-
|
|
687
|
+
.count-down .finish-cont {
|
|
688
|
+
width: 100%
|
|
713
689
|
}
|
|
714
690
|
|
|
715
|
-
.
|
|
716
|
-
-webkit-
|
|
717
|
-
|
|
691
|
+
.count-down .count-flip {
|
|
692
|
+
display: -webkit-box;
|
|
693
|
+
display: -ms-flexbox;
|
|
694
|
+
display: flex;
|
|
695
|
+
height: 100%;
|
|
696
|
+
-webkit-box-align: center;
|
|
697
|
+
-ms-flex-align: center;
|
|
698
|
+
align-items: center;
|
|
699
|
+
-webkit-box-pack: center;
|
|
700
|
+
-ms-flex-pack: center;
|
|
701
|
+
justify-content: center
|
|
718
702
|
}
|
|
719
703
|
|
|
720
|
-
.
|
|
721
|
-
|
|
722
|
-
|
|
704
|
+
.count-down .count-flip .numscroll {
|
|
705
|
+
-webkit-animation: numscroll .4s ease-in-out;
|
|
706
|
+
animation: numscroll .4s ease-in-out;
|
|
707
|
+
-webkit-animation-fill-mode: both;
|
|
708
|
+
animation-fill-mode: both
|
|
723
709
|
}
|
|
724
710
|
|
|
725
|
-
.
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
font-size: 13px;
|
|
732
|
-
-webkit-transform: translate(-50%,-52%);
|
|
733
|
-
transform: translate(-50%,-52%)
|
|
711
|
+
.count-down .count-flip .numscroll .curr-num {
|
|
712
|
+
-webkit-transition: all .3s ease-in-out;
|
|
713
|
+
transition: all .3s ease-in-out;
|
|
714
|
+
opacity: .6;
|
|
715
|
+
-webkit-transform: scale(.5)!important;
|
|
716
|
+
transform: scale(.5)!important
|
|
734
717
|
}
|
|
735
718
|
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
line-height: 1;
|
|
747
|
-
padding: 18px 33px 10px;
|
|
748
|
-
font-size: 36px
|
|
719
|
+
@-webkit-keyframes numscroll {
|
|
720
|
+
0% {
|
|
721
|
+
-webkit-transform: translateZ(0);
|
|
722
|
+
transform: translateZ(0)
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
to {
|
|
726
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
727
|
+
transform: translate3d(0,100%,0)
|
|
728
|
+
}
|
|
749
729
|
}
|
|
750
730
|
|
|
751
|
-
|
|
752
|
-
|
|
731
|
+
@keyframes numscroll {
|
|
732
|
+
0% {
|
|
733
|
+
-webkit-transform: translateZ(0);
|
|
734
|
+
transform: translateZ(0)
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
to {
|
|
738
|
+
-webkit-transform: translate3d(0,100%,0);
|
|
739
|
+
transform: translate3d(0,100%,0)
|
|
740
|
+
}
|
|
753
741
|
}
|
|
754
742
|
|
|
755
|
-
.
|
|
756
|
-
|
|
743
|
+
.count-down .count-flip .c-com {
|
|
744
|
+
min-width: 50px;
|
|
745
|
+
height: auto;
|
|
746
|
+
margin: 6px;
|
|
747
|
+
padding: 5px 0 6px;
|
|
748
|
+
background-color: #111
|
|
757
749
|
}
|
|
758
750
|
|
|
759
|
-
.
|
|
751
|
+
.count-down .count-flip .c-com .flex-wrap {
|
|
760
752
|
display: -webkit-box;
|
|
761
753
|
display: -ms-flexbox;
|
|
762
754
|
display: flex;
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
border-bottom: 1px solid
|
|
755
|
+
position: relative;
|
|
756
|
+
width: 100%;
|
|
757
|
+
height: 100%;
|
|
758
|
+
-webkit-box-align: center;
|
|
759
|
+
-ms-flex-align: center;
|
|
760
|
+
align-items: center
|
|
770
761
|
}
|
|
771
762
|
|
|
772
|
-
.
|
|
773
|
-
|
|
774
|
-
text-align: center;
|
|
775
|
-
color: #fff;
|
|
776
|
-
font-size: 12px;
|
|
777
|
-
font-weight: 600
|
|
763
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
764
|
+
line-height: 27px
|
|
778
765
|
}
|
|
779
766
|
|
|
780
|
-
.
|
|
781
|
-
position:
|
|
767
|
+
.count-down .count-flip .c-com .flex-wrap .next-num {
|
|
768
|
+
position: absolute;
|
|
769
|
+
top: -100%
|
|
782
770
|
}
|
|
783
771
|
|
|
784
|
-
.
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
text-align: left
|
|
772
|
+
.count-down .count-flip .c-com .flex-wrap .curr-num {
|
|
773
|
+
-webkit-transform: scale(1);
|
|
774
|
+
transform: scale(1)
|
|
788
775
|
}
|
|
789
776
|
|
|
790
|
-
.
|
|
791
|
-
|
|
792
|
-
display: inline-block;
|
|
793
|
-
width: 14.2%;
|
|
794
|
-
height: 25px;
|
|
795
|
-
text-align: center;
|
|
796
|
-
margin-top: 8px
|
|
777
|
+
.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 {
|
|
778
|
+
display: none!important
|
|
797
779
|
}
|
|
798
780
|
|
|
799
|
-
.
|
|
800
|
-
|
|
781
|
+
.c-wrap {
|
|
782
|
+
width: 100%;
|
|
783
|
+
height: 100%;
|
|
784
|
+
overflow: hidden;
|
|
785
|
+
font-size: 0
|
|
801
786
|
}
|
|
802
787
|
|
|
803
|
-
.
|
|
804
|
-
|
|
805
|
-
position: absolute;
|
|
806
|
-
left: 12%;
|
|
807
|
-
top: 2px
|
|
788
|
+
.c-wrap.c-day-wrap {
|
|
789
|
+
text-align: center
|
|
808
790
|
}
|
|
809
791
|
|
|
810
|
-
.
|
|
811
|
-
|
|
792
|
+
.c-wrap.c-day-wrap .c-num {
|
|
793
|
+
width: auto
|
|
812
794
|
}
|
|
813
795
|
|
|
814
|
-
.
|
|
815
|
-
|
|
816
|
-
|
|
796
|
+
.c-wrap .c-num {
|
|
797
|
+
display: inline-block;
|
|
798
|
+
width: 50%;
|
|
799
|
+
overflow: hidden;
|
|
800
|
+
font-size: 20px;
|
|
801
|
+
color: #999
|
|
817
802
|
}
|
|
818
803
|
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
804
|
+
.c-wrap .c-left .flex-wrap {
|
|
805
|
+
display: -webkit-box;
|
|
806
|
+
display: -ms-flexbox;
|
|
807
|
+
display: flex;
|
|
808
|
+
-webkit-box-pack: end;
|
|
809
|
+
-ms-flex-pack: end;
|
|
810
|
+
justify-content: flex-end
|
|
824
811
|
}
|
|
825
812
|
|
|
826
|
-
.
|
|
827
|
-
display:
|
|
828
|
-
|
|
813
|
+
.c-wrap .c-text {
|
|
814
|
+
display: -webkit-box;
|
|
815
|
+
display: -ms-flexbox;
|
|
816
|
+
display: flex;
|
|
817
|
+
width: 100%;
|
|
818
|
+
font-size: 12px;
|
|
819
|
+
-webkit-box-pack: center;
|
|
820
|
+
-ms-flex-pack: center;
|
|
821
|
+
justify-content: center;
|
|
822
|
+
-webkit-box-align: center;
|
|
823
|
+
-ms-flex-align: center;
|
|
824
|
+
align-items: center;
|
|
825
|
+
white-space: nowrap
|
|
829
826
|
}
|
|
830
827
|
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
.ant-input-number {
|
|
831
|
+
box-sizing: border-box;
|
|
832
|
+
margin: 0;
|
|
833
|
+
padding: 0;
|
|
834
|
+
color: rgba(0, 0, 0, 0.88);
|
|
835
|
+
font-size: 14px;
|
|
836
|
+
line-height: 1.5714285714285714;
|
|
837
|
+
list-style: none;
|
|
838
|
+
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';
|
|
839
|
+
position: relative;
|
|
840
|
+
display: inline-block;
|
|
841
|
+
width: 100%;
|
|
842
|
+
min-width: 0;
|
|
843
|
+
background-color: #ffffff;
|
|
844
|
+
background-image: none;
|
|
845
|
+
border-width: 1px;
|
|
846
|
+
border-style: solid;
|
|
847
|
+
border-color: #d9d9d9;
|
|
848
|
+
border-radius: 6px;
|
|
849
|
+
transition: all 0.2s;
|
|
850
|
+
border: 1px solid #d9d9d9;
|
|
851
|
+
}
|
|
852
|
+
.ant-form-item {
|
|
853
|
+
box-sizing: border-box;
|
|
854
|
+
margin: 0;
|
|
855
|
+
padding: 0;
|
|
856
|
+
color: rgba(0, 0, 0, 0.88);
|
|
857
|
+
font-size: 14px;
|
|
858
|
+
line-height: 1.5714285714285714;
|
|
859
|
+
list-style: none;
|
|
860
|
+
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';
|
|
861
|
+
margin-bottom: 0px;
|
|
862
|
+
vertical-align: top;
|
|
840
863
|
}
|
|
841
864
|
|
|
842
|
-
.
|
|
843
|
-
|
|
865
|
+
.like-button {
|
|
866
|
+
display: flex;
|
|
867
|
+
flex-direction: column;
|
|
868
|
+
align-items: center;
|
|
869
|
+
cursor: pointer;
|
|
844
870
|
}
|
|
845
|
-
|
|
846
|
-
|
|
871
|
+
|
|
872
|
+
.icon-heart {
|
|
873
|
+
font-size: 24px;
|
|
874
|
+
color: #e74c3c;
|
|
847
875
|
}
|
|
848
|
-
|
|
849
|
-
|
|
876
|
+
|
|
877
|
+
.liked {
|
|
878
|
+
color: #f00; /* 更改颜色以示已赞 */
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.like-count {
|
|
882
|
+
margin-top: 4px;
|
|
883
|
+
font-size: 16px;
|
|
884
|
+
color: #333;
|
|
850
885
|
}
|
|
851
886
|
|
|
852
887
|
.element-ditu .ani-wrap {
|
|
@@ -892,46 +927,6 @@
|
|
|
892
927
|
}
|
|
893
928
|
|
|
894
929
|
|
|
895
|
-
.ant-input-number {
|
|
896
|
-
box-sizing: border-box;
|
|
897
|
-
margin: 0;
|
|
898
|
-
padding: 0;
|
|
899
|
-
color: rgba(0, 0, 0, 0.88);
|
|
900
|
-
font-size: 14px;
|
|
901
|
-
line-height: 1.5714285714285714;
|
|
902
|
-
list-style: none;
|
|
903
|
-
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';
|
|
904
|
-
position: relative;
|
|
905
|
-
display: inline-block;
|
|
906
|
-
width: 100%;
|
|
907
|
-
min-width: 0;
|
|
908
|
-
background-color: #ffffff;
|
|
909
|
-
background-image: none;
|
|
910
|
-
border-width: 1px;
|
|
911
|
-
border-style: solid;
|
|
912
|
-
border-color: #d9d9d9;
|
|
913
|
-
border-radius: 6px;
|
|
914
|
-
transition: all 0.2s;
|
|
915
|
-
border: 1px solid #d9d9d9;
|
|
916
|
-
}
|
|
917
|
-
.ant-form-item {
|
|
918
|
-
box-sizing: border-box;
|
|
919
|
-
margin: 0;
|
|
920
|
-
padding: 0;
|
|
921
|
-
color: rgba(0, 0, 0, 0.88);
|
|
922
|
-
font-size: 14px;
|
|
923
|
-
line-height: 1.5714285714285714;
|
|
924
|
-
list-style: none;
|
|
925
|
-
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';
|
|
926
|
-
margin-bottom: 0px;
|
|
927
|
-
vertical-align: top;
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
.uni-lotties-component {
|
|
931
|
-
width: 100%;
|
|
932
|
-
height: 100%;
|
|
933
|
-
}
|
|
934
|
-
|
|
935
930
|
.effect-container {
|
|
936
931
|
will-change: transform;
|
|
937
932
|
}
|
|
@@ -988,21 +983,15 @@
|
|
|
988
983
|
-webkit-animation: snow 5s linear infinite;
|
|
989
984
|
animation: snow 5s linear infinite
|
|
990
985
|
}
|
|
991
|
-
|
|
992
|
-
.uni-svg-component {
|
|
993
|
-
display: inline-block;
|
|
994
|
-
}
|
|
995
|
-
|
|
996
|
-
/* 设计稿尺寸(如375px下20px的按钮) */
|
|
997
|
-
.btn {
|
|
998
|
-
width: 20px; /* 直接写设计稿px */
|
|
999
|
-
height: 10px;
|
|
1000
|
-
font-size: 14px;
|
|
1001
|
-
}
|
|
1002
986
|
|
|
1003
987
|
.uni-build-up-component {
|
|
1004
988
|
}
|
|
1005
989
|
|
|
990
|
+
.uni-lotties-component {
|
|
991
|
+
width: 100%;
|
|
992
|
+
height: 100%;
|
|
993
|
+
}
|
|
994
|
+
|
|
1006
995
|
/* Iconfont definition moved here for completeness */
|
|
1007
996
|
@font-face {
|
|
1008
997
|
font-family: iconfont;
|
|
@@ -1049,7 +1038,7 @@ i {
|
|
|
1049
1038
|
}
|
|
1050
1039
|
|
|
1051
1040
|
.bar-mess {
|
|
1052
|
-
width:
|
|
1041
|
+
width: 100%; /* Adjusted for padding/icon */
|
|
1053
1042
|
height: 36px;
|
|
1054
1043
|
line-height: 36px;
|
|
1055
1044
|
font-size: 14px;
|
|
@@ -1246,10 +1235,8 @@ i {
|
|
|
1246
1235
|
}
|
|
1247
1236
|
*/
|
|
1248
1237
|
|
|
1249
|
-
.
|
|
1250
|
-
|
|
1251
|
-
width: 100%;
|
|
1252
|
-
height: 100%;
|
|
1238
|
+
.uni-svg-component {
|
|
1239
|
+
display: inline-block;
|
|
1253
1240
|
}
|
|
1254
1241
|
|
|
1255
1242
|
body, html {
|
|
@@ -1647,6 +1634,13 @@ body, html {
|
|
|
1647
1634
|
background-position: center;
|
|
1648
1635
|
will-change: transform;
|
|
1649
1636
|
}
|
|
1637
|
+
|
|
1638
|
+
/* 设计稿尺寸(如375px下20px的按钮) */
|
|
1639
|
+
.btn {
|
|
1640
|
+
width: 20px; /* 直接写设计稿px */
|
|
1641
|
+
height: 10px;
|
|
1642
|
+
font-size: 14px;
|
|
1643
|
+
}
|
|
1650
1644
|
|
|
1651
1645
|
.form-submit {
|
|
1652
1646
|
cursor: pointer;
|
|
@@ -1671,6 +1665,12 @@ body, html {
|
|
|
1671
1665
|
transform: none !important;
|
|
1672
1666
|
}
|
|
1673
1667
|
|
|
1668
|
+
.form-container {
|
|
1669
|
+
position: relative;
|
|
1670
|
+
width: 100%;
|
|
1671
|
+
height: 100%;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
1674
|
.form-input {
|
|
1675
1675
|
position: absolute;
|
|
1676
1676
|
}
|