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
- #audio {
163
- position: absolute;
164
- right: 10px;
165
- top: 10px;
166
- z-index: 103;
167
- width: 30px;
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
- #audio .mrotate {
174
- animation: mrotate 5s linear infinite;
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 mrotate {
178
- to {
179
- transform: rotate(1turn);
180
- }
86
+ @keyframes jumpheart {
87
+ to {
88
+ -webkit-transform: scale(1.2);
89
+ transform: scale(1.2)
90
+ }
181
91
  }
182
-
183
- #audio .audio {
184
- width: 100%;
185
- height: 100%;
186
- display: flex;
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
- #audio .audio.a-border {
198
- border: 1px solid #fff;
99
+ .ele-calendar .drag-point {
100
+ cursor: default !important;
199
101
  }
200
102
 
201
- #audio .audio .music-icon {
202
- display: block;
203
- width: 60%;
204
- height: 60%;
205
- object-fit: contain;
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
- #audio .audio .iconfont {
209
- font-size: 2opx;
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
- .like-button {
267
- display: flex;
268
- flex-direction: column;
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
- .icon-heart {
274
- font-size: 24px;
275
- color: #e74c3c;
124
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-right {
125
+ font-size: 25px;
276
126
  }
277
127
 
278
- .liked {
279
- color: #f00; /* 更改颜色以示已赞 */
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
- .like-count {
283
- margin-top: 4px;
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
- .bohao-button {
289
- position: absolute;
290
- cursor: pointer;
291
- user-select: none;
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
- .bohao-container {
295
- display: flex;
296
- justify-content: center;
297
- align-items: center;
298
- width: 100%;
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
- .bohao-container:hover {
305
- opacity: 0.9;
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
- .bohao-content {
309
- display: flex;
310
- align-items: center;
311
- justify-content: center;
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
- .btn-text {
315
- margin-left: 10px;
168
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
169
+ display: block;
316
170
  }
317
171
 
318
- /* 这里可以添加实际的电话图标样式 */
319
- .iconfont.hb-tel {
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
- .count-down .drag-point {
330
- cursor: default!important
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
- .count-down .ani-wrap {
334
- width: 100%;
335
- height: 100%
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
- .count-down .count-text,.count-down .finish-cont {
339
- display: -webkit-box;
340
- display: -ms-flexbox;
341
- display: flex;
342
- height: 100%;
343
- -webkit-box-align: center;
344
- -ms-flex-align: center;
345
- align-items: center;
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
- .count-down .finish-cont {
352
- width: 100%
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
- .count-down .count-flip {
208
+ .ele-calendar .ani-wrap .can-wrap2 .can-top {
356
209
  display: -webkit-box;
357
210
  display: -ms-flexbox;
358
211
  display: flex;
359
- height: 100%;
360
- -webkit-box-align: center;
361
- -ms-flex-align: center;
362
- align-items: center;
363
- -webkit-box-pack: center;
364
- -ms-flex-pack: center;
365
- justify-content: center
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
- .count-down .count-flip .numscroll {
369
- -webkit-animation: numscroll .4s ease-in-out;
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
- .count-down .count-flip .numscroll .curr-num {
376
- -webkit-transition: all .3s ease-in-out;
377
- transition: all .3s ease-in-out;
378
- opacity: .6;
379
- -webkit-transform: scale(.5)!important;
380
- transform: scale(.5)!important
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
- @-webkit-keyframes numscroll {
384
- 0% {
385
- -webkit-transform: translateZ(0);
386
- transform: translateZ(0)
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
- @keyframes numscroll {
396
- 0% {
397
- -webkit-transform: translateZ(0);
398
- transform: translateZ(0)
399
- }
248
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
249
+ position: relative
250
+ }
400
251
 
401
- to {
402
- -webkit-transform: translate3d(0,100%,0);
403
- transform: translate3d(0,100%,0)
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
- .count-down .count-flip .c-com {
408
- min-width: 50px;
409
- height: auto;
410
- margin: 6px;
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
- .count-down .count-flip .c-com .flex-wrap {
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
- width: 100%;
421
- height: 100%;
422
- -webkit-box-align: center;
423
- -ms-flex-align: center;
424
- align-items: center
272
+ display: inline-block;
273
+ width: 14.2%;
274
+ height: 25px;
275
+ text-align: center;
276
+ margin-top: 8px
425
277
  }
426
278
 
427
- .count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
428
- line-height: 27px
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
- .count-down .count-flip .c-com .flex-wrap .next-num {
432
- position: absolute;
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
- .count-down .count-flip .c-com .flex-wrap .curr-num {
437
- -webkit-transform: scale(1);
438
- transform: scale(1)
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
- .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 {
442
- display: none!important
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
- .c-wrap {
446
- width: 100%;
447
- height: 100%;
448
- overflow: hidden;
449
- font-size: 0
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
- .c-wrap.c-day-wrap {
453
- text-align: center
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
- .c-wrap.c-day-wrap .c-num {
457
- width: auto
327
+ .ele-calendar .ani-wrap .can-wrap3 .can-top span {
328
+ font-size: 16px
458
329
  }
459
330
 
460
- .c-wrap .c-num {
461
- display: inline-block;
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
- .c-wrap .c-left .flex-wrap {
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: end;
473
- -ms-flex-pack: end;
474
- justify-content: flex-end
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
- .c-wrap .c-text {
478
- display: -webkit-box;
479
- display: -ms-flexbox;
480
- display: flex;
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
- -webkit-box-pack: center;
484
- -ms-flex-pack: center;
485
- justify-content: center;
486
- -webkit-box-align: center;
487
- -ms-flex-align: center;
488
- align-items: center;
489
- white-space: nowrap
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
- @font-face {
495
- font-family: "iconfont"; /* Project id 3350423 */
496
- src: url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.woff2?t=1737679854669') format('woff2'),
497
- url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.woff?t=1737679854669') format('woff'),
498
- url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.ttf?t=1737679854669') format('truetype'),
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
- .iconfont {
503
- font-family: "iconfont" !important;
504
- font-size: 16px;
505
- font-style: normal;
506
- -webkit-font-smoothing: antialiased;
507
- -moz-osx-font-smoothing: grayscale;
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 .drag-point {
524
- cursor: default !important;
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
- position: relative;
529
- width: 100%;
530
- min-height: 325px !important;
531
- height: auto !important;
532
- padding: 22px 0;
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 .ani-wrap .can-wrap .can-top {
536
- display: flex;
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
- .ele-calendar .ani-wrap .can-wrap .can-top .can-left {
544
- font-size: 25px;
545
- padding-bottom: 4px;
421
+ .icon-tuoyuanxing:before {
422
+ content: "\E6A7";
423
+ }
424
+ .icon-xingzhuangjiehe:before {
425
+ content: "\E6A6";
546
426
  }
547
427
 
548
- .ele-calendar .ani-wrap .can-wrap .can-top .can-right {
549
- font-size: 25px;
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
- .ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
553
- position: relative;
554
- top: 2px;
555
- font-size: 57px;
439
+ #audio .mrotate {
440
+ animation: mrotate 5s linear infinite;
556
441
  }
557
442
 
558
- .ele-calendar .ani-wrap .can-wrap .can-main {
559
- padding: 0 23px;
443
+ @keyframes mrotate {
444
+ to {
445
+ transform: rotate(1turn);
446
+ }
560
447
  }
561
448
 
562
- .ele-calendar .ani-wrap .can-wrap .can-main .can-week {
449
+ #audio .audio {
450
+ width: 100%;
451
+ height: 100%;
563
452
  display: flex;
564
- justify-content: flex-start;
565
- height: 25px;
566
- line-height: 25px;
567
- padding: 0 10px;
568
- border-radius: 13px;
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
- .ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
572
- width: 14.2%;
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
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
579
- font-size: 0;
580
- padding: 5px 10px 0;
581
- text-align: left;
467
+ #audio .audio .music-icon {
468
+ display: block;
469
+ width: 60%;
470
+ height: 60%;
471
+ object-fit: contain;
582
472
  }
583
473
 
584
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
585
- position: relative;
586
- display: inline-block;
587
- height: 25px;
588
- text-align: center;
589
- margin-top: 8px;
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
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
593
- display: block;
500
+ .video-player {
501
+ position: absolute;
502
+ overflow: hidden;
503
+ background-color: #000;
594
504
  }
595
505
 
596
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
597
- color: #fff !important;
506
+ .video-container {
507
+ width: 100%;
508
+ height: 100%;
598
509
  }
599
510
 
600
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
601
- animation: jumpheart 0.8s ease infinite alternate;
511
+ .video-container iframe {
512
+ width: 100%;
513
+ height: 100%;
514
+ border: none;
602
515
  }
603
516
 
604
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
605
- display: none;
606
- font-size: 26px;
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
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
526
+ .video-cover .play-btn {
610
527
  position: absolute;
611
528
  left: 50%;
612
529
  top: 50%;
613
- z-index: 1;
614
- color: #666;
615
- font-size: 13px;
616
- transform: translate(-50%, -52%);
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
- .ele-calendar .bottom-center,
620
- .ele-calendar .left-center,
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
- .ele-calendar .ani-wrap .can-wrap2 .can-top {
633
- display: -webkit-box;
634
- display: -ms-flexbox;
635
- display: flex;
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
- .ele-calendar .ani-wrap .can-wrap2 .can-top span {
648
- font-size: 16px
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
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
652
- display: -webkit-box;
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
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
665
- width: 14.2%;
666
- text-align: center;
667
- color: #fff;
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
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
673
- position: relative
650
+ .btn-text {
651
+ margin-left: 10px;
674
652
  }
675
653
 
676
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
677
- position: absolute;
678
- white-space: nowrap;
679
- left: 50%;
680
- top: 15%;
681
- -webkit-transform: translateX(-50%);
682
- transform: translateX(-50%);
683
- font-size: 76px;
684
- opacity: .1;
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
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
689
- font-size: 0;
690
- padding: 5px 10px 0;
691
- text-align: left
665
+ .count-down .drag-point {
666
+ cursor: default!important
692
667
  }
693
668
 
694
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
695
- position: relative;
696
- display: inline-block;
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
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
704
- display: block;
705
- position: absolute;
706
- left: 17%;
707
- top: 0;
708
- font-size: 25px
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
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
712
- color: #fff!important
687
+ .count-down .finish-cont {
688
+ width: 100%
713
689
  }
714
690
 
715
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
716
- -webkit-animation: jumpheart .8s ease infinite alternate;
717
- animation: jumpheart .8s ease infinite alternate
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
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
721
- display: none;
722
- font-size: 26px
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
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
726
- position: absolute;
727
- left: 50%;
728
- top: 50%;
729
- z-index: 1;
730
- color: #666;
731
- font-size: 13px;
732
- -webkit-transform: translate(-50%,-52%);
733
- transform: translate(-50%,-52%)
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
- .ele-calendar .ani-wrap .can-wrap3 .can-top {
737
- display: -webkit-box;
738
- display: -ms-flexbox;
739
- display: flex;
740
- -webkit-box-pack: justify;
741
- -ms-flex-pack: justify;
742
- justify-content: space-between;
743
- -webkit-box-align: end;
744
- -ms-flex-align: end;
745
- align-items: flex-end;
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
- .ele-calendar .ani-wrap .can-wrap3 .can-top span {
752
- font-size: 16px
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
- .ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
756
- font-size: 20px
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
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
751
+ .count-down .count-flip .c-com .flex-wrap {
760
752
  display: -webkit-box;
761
753
  display: -ms-flexbox;
762
754
  display: flex;
763
- -webkit-box-pack: start;
764
- -ms-flex-pack: start;
765
- justify-content: flex-start;
766
- height: 40px;
767
- line-height: 40px;
768
- padding: 0 34px;
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
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
773
- width: 14.2%;
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
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
781
- position: relative
767
+ .count-down .count-flip .c-com .flex-wrap .next-num {
768
+ position: absolute;
769
+ top: -100%
782
770
  }
783
771
 
784
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
785
- font-size: 0;
786
- padding: 5px 33px 0;
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
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
791
- position: relative;
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
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
800
- color: #eee
781
+ .c-wrap {
782
+ width: 100%;
783
+ height: 100%;
784
+ overflow: hidden;
785
+ font-size: 0
801
786
  }
802
787
 
803
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
804
- display: block;
805
- position: absolute;
806
- left: 12%;
807
- top: 2px
788
+ .c-wrap.c-day-wrap {
789
+ text-align: center
808
790
  }
809
791
 
810
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
811
- font-size: 12px
792
+ .c-wrap.c-day-wrap .c-num {
793
+ width: auto
812
794
  }
813
795
 
814
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
815
- -webkit-animation: jumpheart .8s ease infinite alternate;
816
- animation: jumpheart .8s ease infinite alternate
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
- @keyframes jumpheart {
820
- to {
821
- -webkit-transform: scale(1.2);
822
- transform: scale(1.2)
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
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
827
- display: none;
828
- font-size: 26px
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
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
832
- position: absolute;
833
- left: 50%;
834
- top: 50%;
835
- z-index: 1;
836
- color: #666;
837
- font-size: 13px;
838
- -webkit-transform: translate(-50%,-52%);
839
- transform: translate(-50%,-52%)
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
- .ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
843
- display: none!important
865
+ .like-button {
866
+ display: flex;
867
+ flex-direction: column;
868
+ align-items: center;
869
+ cursor: pointer;
844
870
  }
845
- .icon-tuoyuanxing:before {
846
- content: "\E6A7";
871
+
872
+ .icon-heart {
873
+ font-size: 24px;
874
+ color: #e74c3c;
847
875
  }
848
- .icon-xingzhuangjiehe:before {
849
- content: "\E6A6";
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: 96%; /* Adjusted for padding/icon */
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
- .form-container {
1250
- position: relative;
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
  }