unika-components 1.2.4 → 1.2.6

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.
Files changed (66) hide show
  1. package/dist/assets/css/invite.css +712 -0
  2. package/dist/index.html +53 -0
  3. package/dist/js/app.js +3325 -0
  4. package/dist/js/chunk-vendors.js +1638 -0
  5. package/dist/src/components/UniCall/UniCall.vue.d.ts +11 -1
  6. package/dist/src/components/UniCountdown/UniCountdown.vue.d.ts +12 -1
  7. package/dist/src/components/UniFormInput/UniFormInput.vue.d.ts +13 -1
  8. package/dist/src/components/UniImage/UniImage.vue.d.ts +0 -3
  9. package/dist/src/components/UniInvite/UniInvite.vue.d.ts +57 -0
  10. package/dist/src/components/UniInvite/index.d.ts +2 -0
  11. package/dist/src/components/UniMap/UniMap.vue.d.ts +11 -1
  12. package/dist/src/components/WorkRender/WorkRender.vue.d.ts +1 -0
  13. package/dist/src/composables/inviteManager.d.ts +13 -0
  14. package/dist/src/constants/invitePhrases.d.ts +3 -0
  15. package/dist/src/constants/inviteProps.d.ts +4 -0
  16. package/dist/src/constants/inviteTemplates.d.ts +5 -0
  17. package/dist/src/defaultProps.d.ts +49 -0
  18. package/dist/src/index.d.ts +22 -1
  19. package/dist/src/utils/inviteAnimation.d.ts +3 -0
  20. package/dist/src/utils/inviteTemplate.d.ts +4 -0
  21. package/dist/src/utils/resolveInviteRender.d.ts +12 -0
  22. package/dist/unika-components.css +1984 -1251
  23. package/dist/unika-components.esm.js +1673 -545
  24. package/dist/unika-components.umd.js +1723 -571
  25. package/package.json +4 -3
  26. package/dist/.DS_Store +0 -0
  27. package/dist/src/components/LongPage/LongPage.vue.d.ts +0 -20
  28. package/dist/src/components/LongPage/index.d.ts +0 -2
  29. package/dist/src/components/SwiperPage/SwiperAnimate.d.ts +0 -3
  30. package/dist/src/components/SwiperPage/SwiperPage.vue.d.ts +0 -36
  31. package/dist/src/components/SwiperPage/index.d.ts +0 -2
  32. package/dist/src/components/UniBackground/UniBackground.vue.d.ts +0 -11
  33. package/dist/src/components/UniBackground/index.d.ts +0 -2
  34. package/dist/src/components/UniBulidUp/UniBulidUp.vue.d.ts +0 -12
  35. package/dist/src/components/UniBulidUp/index.d.ts +0 -2
  36. package/dist/src/components/UniCalendar/Calendar.vue.d.ts +0 -165
  37. package/dist/src/components/UniEffect/sonw.d.ts +0 -2
  38. package/dist/src/components/UniFormMultiple/validators.d.ts +0 -20
  39. package/dist/src/components/UniFormSelect/validators.d.ts +0 -1
  40. package/dist/src/components/UniFormSingle/validators.d.ts +0 -20
  41. package/dist/src/components/UniLike/UniLike.vue.d.ts +0 -14
  42. package/dist/src/components/UniLike/index.d.ts +0 -2
  43. package/dist/src/components/UniLotties/UniLotties.vue.d.ts +0 -340
  44. package/dist/src/components/UniLotties/index.d.ts +0 -2
  45. package/dist/src/components/UniRegisterForm/UniRegisterForm.vue.d.ts +0 -28
  46. package/dist/src/components/UniRegisterForm/index.d.ts +0 -2
  47. package/dist/src/components/UniSvg/UniSvg.vue.d.ts +0 -12
  48. package/dist/src/components/UniSvg/index.d.ts +0 -2
  49. package/dist/src/components/UniSwiper/UniSwiper.vue.d.ts +0 -12
  50. package/dist/src/components/UniSwiper/index.d.ts +0 -2
  51. package/dist/src/components/UniTanmu/Barrage.vue.d.ts +0 -76
  52. package/dist/src/components/UniTanmu/UniTanmu.vue.d.ts +0 -59
  53. package/dist/src/components/UniTanmu/index.d.ts +0 -2
  54. package/dist/src/components/UniTest/index.d.ts +0 -2
  55. package/dist/src/components/UniTextBk/index.d.ts +0 -2
  56. package/dist/src/components/WorkRender/DynamicElement.vue.d.ts +0 -59
  57. package/dist/src/components/WorkRender/PageIndicator.vue.d.ts +0 -110
  58. package/dist/src/components/WorkRender/SwiperAnimate.d.ts +0 -3
  59. package/dist/src/components/WorkRender/WorkRenderer.vue.d.ts +0 -59
  60. package/dist/src/components/WorkRenderLong/test.vue.d.ts +0 -72
  61. package/dist/src/composables/useElementProps.d.ts +0 -8
  62. package/dist/src/composables/useElementStyle.d.ts +0 -18
  63. package/dist/src/constants/countdown.d.ts +0 -65
  64. package/dist/src/constants/toolbar.d.ts +0 -13
  65. package/dist/src/hooks/useComponentClick.d.ts +0 -2
  66. package/dist/src/hooks/useStylePick.d.ts +0 -3
@@ -1,12 +1,12 @@
1
-
2
- /* 添加百位数样式 */
3
- .c-hundred {
4
- display: flex;
5
- align-items: center;
6
- justify-content: center;
7
- width: 30px; /* 根据需要调整 */
8
- margin-right: 5px;
9
- }
1
+
2
+ /* 添加百位数样式 */
3
+ .c-hundred {
4
+ display: flex;
5
+ align-items: center;
6
+ justify-content: center;
7
+ width: 30px; /* 根据需要调整 */
8
+ margin-right: 5px;
9
+ }
10
10
 
11
11
  .global-v ::v-deep .global-v-show iframe {
12
12
  position: absolute;
@@ -102,7 +102,100 @@
102
102
  transform: scale(1);
103
103
  opacity: 1;
104
104
  }
105
- }.ele-shape {
105
+ }.element-ditu .ani-wrap {
106
+ width: 100%;
107
+ height: 100%;
108
+ overflow: hidden
109
+ }
110
+
111
+ .element-ditu .map {
112
+ width: 100%;
113
+ height: 100%
114
+ }
115
+
116
+ .element-ditu .map .el-button {
117
+ width: 100%;
118
+ height: 100%;
119
+ display: -webkit-box;
120
+ display: -ms-flexbox;
121
+ display: flex;
122
+ -webkit-box-align: center;
123
+ -ms-flex-align: center;
124
+ align-items: center;
125
+ padding: 0;
126
+ -webkit-box-pack: center;
127
+ -ms-flex-pack: center;
128
+ justify-content: center;
129
+ background: inherit;
130
+ color: inherit;
131
+ border: none
132
+ }
133
+
134
+ .element-ditu .center-map {
135
+ width: 100%;
136
+ height: 100%;
137
+ background: #fff
138
+ }
139
+
140
+ .element-ditu .mask-map {
141
+ position: absolute;
142
+ width: 100%;
143
+ height: 100%;
144
+ top: 0
145
+ }
146
+ .map-iframe {
147
+ width: 100%;
148
+ height: 100%;
149
+ }.ele-img {
150
+ position: absolute;
151
+ overflow: hidden;
152
+ }
153
+
154
+ .ele-img .ani-wrap {
155
+ width: 100%;
156
+ height: 100%;
157
+ }
158
+
159
+ .ele-img .ele-image {
160
+ position: relative;
161
+ display: block;
162
+ }
163
+
164
+ .ele-img .rotate-wrap {
165
+ position: absolute;
166
+ left: 0;
167
+ right: 0;
168
+ top: 0;
169
+ bottom: 0;
170
+ }
171
+
172
+ .ele-img .ele-img-bg,
173
+ .ele-img .rotate-wrap .img-wrap {
174
+ width: 100%;
175
+ height: 100%;
176
+ overflow: hidden;
177
+ }
178
+
179
+ .ele-img .ele-bg-wrap {
180
+ width: 100%;
181
+ height: 100%;
182
+ background-size: cover;
183
+ background-position: 50% 50%;
184
+ background-repeat: no-repeat;
185
+ background-clip: border-box;
186
+ }
187
+
188
+ /* 动画关键帧 */
189
+ @keyframes zoomIn {
190
+ from {
191
+ opacity: 0;
192
+ transform: scale(0.5);
193
+ }
194
+ to {
195
+ opacity: 1;
196
+ transform: scale(1);
197
+ }
198
+ }.ele-shape {
106
199
  position: absolute;
107
200
  overflow: hidden;
108
201
  }
@@ -145,661 +238,751 @@
145
238
  width: 100%;
146
239
  height: 100%;
147
240
  overflow: visible;
241
+ }.button {
242
+ position: absolute;
243
+ cursor: pointer;
244
+ user-select: none;
148
245
  }
149
- @keyframes jumpheart {
150
- to {
151
- -webkit-transform: scale(1.2);
152
- transform: scale(1.2)
153
- }
154
- }
155
- .ele-calendar {
156
- position: relative;
157
- width: 325px !important;
158
- min-height: 325px !important;
159
- height: auto !important;
160
- }
161
-
162
- .ele-calendar .drag-point {
163
- cursor: default !important;
164
- }
165
-
166
- .ele-calendar .ani-wrap {
167
- position: relative;
246
+
247
+ .button .ani-wrap {
248
+ display: flex;
249
+ justify-content: center;
250
+ align-items: center;
168
251
  width: 100%;
169
- min-height: 325px !important;
170
- height: auto !important;
171
- padding: 22px 0;
252
+ height: 100%;
253
+ overflow: hidden;
254
+ transition: opacity 0.2s;
255
+ }
256
+
257
+ .button .ani-wrap:hover {
258
+ opacity: 0.9;
172
259
  }
173
260
 
174
- .ele-calendar .ani-wrap .can-wrap .can-top {
261
+ .button-content {
175
262
  display: flex;
176
- justify-content: space-between;
177
- align-items: flex-end;
178
- line-height: 1;
179
- padding: 0 47px 20px;
263
+ align-items: center;
264
+ justify-content: center;
180
265
  }
181
266
 
182
- .ele-calendar .ani-wrap .can-wrap .can-top .can-left {
183
- font-size: 25px;
184
- padding-bottom: 4px;
267
+ .btn-text {
268
+ margin-left: 10px;
185
269
  }
186
-
187
- .ele-calendar .ani-wrap .can-wrap .can-top .can-right {
188
- font-size: 25px;
270
+ .element-video {
271
+ position: absolute;
272
+ overflow: hidden;
273
+ background-color: transparent;
274
+ }
275
+
276
+ .element-video .ani-wrap, .element-video img {
277
+ display: block;
278
+ width: 100%;
279
+ height: 100%;
280
+ }
281
+
282
+ .video-container {
283
+ width: 100%;
284
+ height: 100%;
285
+ }
286
+
287
+ .video-container iframe {
288
+ width: 100%;
289
+ height: 100%;
290
+ border: none;
291
+ }
292
+
293
+ .video-cover {
294
+ position: relative;
295
+ width: 100%;
296
+ height: 100%;
297
+ background-size: cover;
298
+ background-position: center;
299
+ cursor: pointer;
300
+ }
301
+
302
+ .video-cover .play-btn {
303
+ position: absolute;
304
+ left: 50%;
305
+ top: 50%;
306
+ transform: translate(-50%, -50%);
307
+ width: 50px;
308
+ height: 50px;
309
+ opacity: 0.8;
310
+ transition: opacity 0.2s;
311
+ }
312
+
313
+ .video-cover:hover .play-btn {
314
+ opacity: 1;
315
+ }.ele-effect {
316
+ will-change: transform;
189
317
  }
190
318
 
191
- .ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
319
+ .ele-effect .effect-wrap {
192
320
  position: relative;
193
- top: 2px;
194
- font-size: 57px;
321
+ width: 100%;
322
+ height: 100%;
195
323
  }
196
324
 
197
- .ele-calendar .ani-wrap .can-wrap .can-main {
198
- padding: 0 23px;
325
+ .particle {
326
+ position: absolute;
327
+ background-repeat: no-repeat;
328
+ background-size: contain;
329
+ animation-name: falling;
330
+ animation-timing-function: linear;
331
+ animation-iteration-count: infinite;
332
+ will-change: transform;
199
333
  }
200
334
 
201
- .ele-calendar .ani-wrap .can-wrap .can-main .can-week {
202
- display: flex;
203
- justify-content: flex-start;
204
- height: 25px;
205
- line-height: 25px;
206
- padding: 0 10px;
207
- border-radius: 13px;
335
+ @keyframes falling {
336
+ 0% {
337
+ transform: translateY(0) rotate(0deg);
338
+ opacity: 1;
339
+ }
340
+ 80% {
341
+ opacity: 0.8;
342
+ }
343
+ 100% {
344
+ transform: translateY(100vh) rotate(360deg);
345
+ opacity: 0;
346
+ }
208
347
  }
209
-
210
- .ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
211
- width: 14.2%;
212
- text-align: center;
213
- color: #fff;
214
- font-size: 12px;
348
+ .ele-lottie .ele-lotwrap {
349
+ overflow: hidden
215
350
  }
216
351
 
217
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
218
- font-size: 0;
219
- padding: 5px 10px 0;
220
- text-align: left;
352
+ .ele-effect .effect-wrap {
353
+ position: relative;
354
+ overflow: hidden;
355
+ width: 100%;
356
+ height: 100%
221
357
  }
222
358
 
223
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
224
- position: relative;
225
- display: inline-block;
226
- height: 25px;
227
- text-align: center;
228
- margin-top: 8px;
359
+ .ele-effect .e-small {
360
+ position: absolute;
361
+ width: 24px;
362
+ height: 24px;
363
+ background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
364
+ background-size: cover;
365
+ background-repeat: no-repeat;
366
+ -webkit-transform-origin: center;
367
+ transform-origin: center;
368
+ -webkit-animation: snow 5s linear infinite;
369
+ animation: snow 5s linear infinite
370
+ }#audio {
371
+ position: absolute;
372
+ right: 10px;
373
+ top: 10px;
374
+ z-index: 103;
375
+ width: 30px;
376
+ height: 30px;
377
+ display: flex;
378
+ align-items: center;
229
379
  }
230
380
 
231
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
232
- display: block;
381
+ #audio .mrotate {
382
+ animation: mrotate 5s linear infinite;
233
383
  }
234
384
 
235
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
236
- color: #fff !important;
385
+ @keyframes mrotate {
386
+ to {
387
+ transform: rotate(1turn);
388
+ }
237
389
  }
238
390
 
239
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
240
- animation: jumpheart 0.8s ease infinite alternate;
391
+ #audio .audio {
392
+ width: 100%;
393
+ height: 100%;
394
+ display: flex;
395
+ align-items: center;
396
+ justify-content: center;
397
+ color: #fff;
398
+ background: #666;
399
+ border-radius: 50%;
400
+ overflow: hidden;
401
+ cursor: pointer;
402
+ transition: all 0.3s ease;
241
403
  }
242
404
 
243
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
244
- display: none;
245
- font-size: 26px;
405
+ #audio .audio.a-border {
406
+ border: 1px solid #fff;
246
407
  }
247
408
 
248
- .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
249
- position: absolute;
250
- left: 50%;
251
- top: 50%;
252
- z-index: 1;
253
- color: #666;
254
- font-size: 13px;
255
- transform: translate(-50%, -52%);
409
+ #audio .audio .music-icon {
410
+ display: block;
411
+ width: 60%;
412
+ height: 60%;
413
+ object-fit: contain;
256
414
  }
257
415
 
258
- .ele-calendar .bottom-center,
259
- .ele-calendar .left-center,
260
- .ele-calendar .right-center,
261
- .ele-calendar .top-center {
262
- display: none !important;
416
+ #audio .audio .iconfont {
417
+ font-size: 2opx;
418
+ line-height: 1;
419
+ }
420
+ #audio .icon-cancel {
421
+ position: absolute;
422
+ width: 100%;
423
+ height: 100%;
424
+ border-radius: 50%;
425
+ overflow: hidden;
426
+ padding: 15px 0;
427
+ }
428
+ #audio .icon-cancel .icon-h {
429
+ transform: rotate(45deg);
430
+ width: 100%;
431
+ height: 2px;
432
+ background: #fff;
433
+ }
434
+ #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
435
+ content: '';
436
+ position: absolute;
437
+ width: 100%;
438
+ height: 2px;
439
+ background: #fff;
440
+ }.count-down .drag-point {
441
+ cursor: default!important
263
442
  }
264
443
 
265
- .ele-calendar .ani-wrap .can-wrap2 {
266
- padding: 21px 23px 0
444
+ .count-down .ani-wrap {
445
+ width: 100%;
446
+ height: 100%;
447
+ overflow: visible;
267
448
  }
268
449
 
269
- .ele-calendar .ani-wrap .can-wrap2 .can-top {
450
+ .count-down .count-text,.count-down .finish-cont {
270
451
  display: -webkit-box;
271
452
  display: -ms-flexbox;
272
453
  display: flex;
273
- -webkit-box-pack: justify;
274
- -ms-flex-pack: justify;
275
- justify-content: space-between;
276
- -webkit-box-align: end;
277
- -ms-flex-align: end;
278
- align-items: flex-end;
279
- line-height: 1;
280
- padding: 0 16px 22px;
281
- font-size: 36px
454
+ height: 100%;
455
+ -webkit-box-align: center;
456
+ -ms-flex-align: center;
457
+ align-items: center;
458
+ -webkit-box-pack: center;
459
+ -ms-flex-pack: center;
460
+ justify-content: center
282
461
  }
283
462
 
284
- .ele-calendar .ani-wrap .can-wrap2 .can-top span {
285
- font-size: 16px
463
+ .count-down .finish-cont {
464
+ width: 100%
286
465
  }
287
466
 
288
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
467
+ .count-down .count-flip {
289
468
  display: -webkit-box;
290
469
  display: -ms-flexbox;
291
470
  display: flex;
292
- -webkit-box-pack: start;
293
- -ms-flex-pack: start;
294
- justify-content: flex-start;
295
- height: 25px;
296
- line-height: 25px;
297
- padding: 0 10px;
298
- border-radius: 13px
299
- }
300
-
301
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
302
- width: 14.2%;
303
- text-align: center;
304
- color: #fff;
305
- font-size: 12px;
306
- font-weight: 600
471
+ height: 100%;
472
+ -webkit-box-align: center;
473
+ -ms-flex-align: center;
474
+ align-items: center;
475
+ -webkit-box-pack: center;
476
+ -ms-flex-pack: center;
477
+ justify-content: center
307
478
  }
308
479
 
309
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
310
- position: relative
480
+ .count-down .count-flip[data-direction="vertical"] {
481
+ -webkit-box-orient: vertical;
482
+ -webkit-box-direction: normal;
483
+ -ms-flex-direction: column;
484
+ flex-direction: column;
485
+ height: auto;
486
+ min-height: 100%;
311
487
  }
312
488
 
313
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
314
- position: absolute;
315
- white-space: nowrap;
316
- left: 50%;
317
- top: 15%;
318
- -webkit-transform: translateX(-50%);
319
- transform: translateX(-50%);
320
- font-size: 76px;
321
- opacity: .1;
322
- font-weight: 600
489
+ .count-down .count-flip[data-direction="vertical"] .c-com {
490
+ margin: 6px 0;
491
+ width: auto;
323
492
  }
324
493
 
325
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
326
- font-size: 0;
327
- padding: 5px 10px 0;
328
- text-align: left
494
+ .count-down .count-flip .numscroll {
495
+ -webkit-animation: numscroll .4s ease-in-out;
496
+ animation: numscroll .4s ease-in-out;
497
+ -webkit-animation-fill-mode: both;
498
+ animation-fill-mode: both
329
499
  }
330
500
 
331
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
332
- position: relative;
333
- display: inline-block;
334
- width: 14.2%;
335
- height: 25px;
336
- text-align: center;
337
- margin-top: 8px
501
+ .count-down .count-flip .numscroll .curr-num {
502
+ -webkit-transition: all .3s ease-in-out;
503
+ transition: all .3s ease-in-out;
504
+ opacity: .6;
505
+ -webkit-transform: scale(.5)!important;
506
+ transform: scale(.5)!important
338
507
  }
339
508
 
340
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
341
- display: block;
342
- position: absolute;
343
- left: 17%;
344
- top: 0;
345
- font-size: 25px
346
- }
509
+ @-webkit-keyframes numscroll {
510
+ 0% {
511
+ -webkit-transform: translateZ(0);
512
+ transform: translateZ(0)
513
+ }
347
514
 
348
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
349
- color: #fff!important
515
+ to {
516
+ -webkit-transform: translate3d(0,100%,0);
517
+ transform: translate3d(0,100%,0)
518
+ }
350
519
  }
351
520
 
352
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
353
- -webkit-animation: jumpheart .8s ease infinite alternate;
354
- animation: jumpheart .8s ease infinite alternate
355
- }
521
+ @keyframes numscroll {
522
+ 0% {
523
+ -webkit-transform: translateZ(0);
524
+ transform: translateZ(0)
525
+ }
356
526
 
357
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
358
- display: none;
359
- font-size: 26px
527
+ to {
528
+ -webkit-transform: translate3d(0,100%,0);
529
+ transform: translate3d(0,100%,0)
530
+ }
360
531
  }
361
532
 
362
- .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
363
- position: absolute;
364
- left: 50%;
365
- top: 50%;
366
- z-index: 1;
367
- color: #666;
368
- font-size: 13px;
369
- -webkit-transform: translate(-50%,-52%);
370
- transform: translate(-50%,-52%)
533
+ .count-down .count-flip .c-com {
534
+ min-width: 50px;
535
+ height: auto;
536
+ margin: 6px;
537
+ padding: 5px 0 6px;
538
+ background-color: #111
371
539
  }
372
540
 
373
- .ele-calendar .ani-wrap .can-wrap3 .can-top {
541
+ .count-down .count-flip .c-com .flex-wrap {
374
542
  display: -webkit-box;
375
543
  display: -ms-flexbox;
376
544
  display: flex;
377
- -webkit-box-pack: justify;
378
- -ms-flex-pack: justify;
379
- justify-content: space-between;
380
- -webkit-box-align: end;
381
- -ms-flex-align: end;
382
- align-items: flex-end;
383
- line-height: 1;
384
- padding: 18px 33px 10px;
385
- font-size: 36px;
545
+ position: relative;
546
+ width: 100%;
547
+ height: 100%;
548
+ -webkit-box-align: center;
549
+ -ms-flex-align: center;
550
+ align-items: center
386
551
  }
387
552
 
388
- .ele-calendar .ani-wrap .can-wrap3 .can-top span {
389
- font-size: 16px
553
+ .count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
554
+ line-height: 27px
390
555
  }
391
556
 
392
- .ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
393
- font-size: 20px
557
+ .count-down .count-flip .c-com .flex-wrap .next-num {
558
+ position: absolute;
559
+ top: -100%
394
560
  }
395
561
 
396
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
397
- display: -webkit-box;
398
- display: -ms-flexbox;
399
- display: flex;
400
- -webkit-box-pack: start;
401
- -ms-flex-pack: start;
402
- justify-content: flex-start;
403
- height: 40px;
404
- line-height: 40px;
405
- padding: 0 34px;
406
- border-bottom: 1px solid
407
- }
408
-
409
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
410
- width: 14.2%;
411
- text-align: center;
412
- color: #fff;
413
- font-size: 12px;
414
- font-weight: 600
562
+ .count-down .count-flip .c-com .flex-wrap .curr-num {
563
+ -webkit-transform: scale(1);
564
+ transform: scale(1)
415
565
  }
416
566
 
417
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
418
- position: relative
567
+ .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 {
568
+ display: none!important
419
569
  }
420
570
 
421
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
422
- font-size: 0;
423
- padding: 5px 33px 0;
424
- text-align: left
571
+ .c-wrap {
572
+ width: 100%;
573
+ height: 100%;
574
+ overflow: hidden;
575
+ font-size: 0
425
576
  }
426
577
 
427
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
428
- position: relative;
429
- display: inline-block;
430
- width: 14.2%;
431
- height: 25px;
432
- text-align: center;
433
- margin-top: 8px;
578
+ .c-wrap.c-day-wrap {
579
+ text-align: center
434
580
  }
435
581
 
436
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
437
- color: #eee
582
+ .c-wrap.c-day-wrap .c-num {
583
+ width: auto
438
584
  }
439
585
 
440
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
441
- display: block;
442
- position: absolute;
443
- left: 12%;
444
- top: 2px;
586
+ .c-wrap .c-num {
587
+ display: inline-block;
588
+ width: 50%;
589
+ overflow: hidden;
590
+ font-size: 20px;
591
+ color: #999
445
592
  }
446
593
 
447
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
448
- font-size: 12px
594
+ .c-wrap .c-left .flex-wrap {
595
+ display: -webkit-box;
596
+ display: -ms-flexbox;
597
+ display: flex;
598
+ -webkit-box-pack: end;
599
+ -ms-flex-pack: end;
600
+ justify-content: flex-end
449
601
  }
450
602
 
451
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
452
- -webkit-animation: jumpheart .8s ease infinite alternate;
453
- animation: jumpheart .8s ease infinite alternate
603
+ .c-wrap .c-text {
604
+ display: -webkit-box;
605
+ display: -ms-flexbox;
606
+ display: flex;
607
+ width: 100%;
608
+ font-size: 12px;
609
+ -webkit-box-pack: center;
610
+ -ms-flex-pack: center;
611
+ justify-content: center;
612
+ -webkit-box-align: center;
613
+ -ms-flex-align: center;
614
+ align-items: center;
615
+ white-space: nowrap
454
616
  }
455
617
 
618
+ .ele-lottie .ele-lotwrap {
619
+ overflow: hidden;
620
+ }
456
621
  @keyframes jumpheart {
457
622
  to {
458
623
  -webkit-transform: scale(1.2);
459
624
  transform: scale(1.2)
460
625
  }
461
626
  }
462
-
463
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
464
- display: none;
465
- font-size: 26px
627
+ .ele-calendar {
628
+ position: relative;
629
+ width: 325px !important;
630
+ min-height: 325px !important;
631
+ height: auto !important;
466
632
  }
467
633
 
468
- .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
469
- position: absolute;
470
- left: 50%;
471
- top: 50%;
472
- z-index: 1;
473
- color: #666;
474
- font-size: 13px;
475
- -webkit-transform: translate(-50%,-52%);
476
- transform: translate(-50%,-52%)
634
+ .ele-calendar .drag-point {
635
+ cursor: default !important;
477
636
  }
478
637
 
479
- .ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
480
- display: none!important
638
+ .ele-calendar .ani-wrap {
639
+ position: relative;
640
+ width: 100%;
641
+ min-height: 325px !important;
642
+ height: auto !important;
643
+ padding: 22px 0;
481
644
  }
482
- .icon-tuoyuanxing:before {
483
- content: "\E6A7";
645
+
646
+ .ele-calendar .ani-wrap .can-wrap .can-top {
647
+ display: flex;
648
+ justify-content: space-between;
649
+ align-items: flex-end;
650
+ line-height: 1;
651
+ padding: 0 47px 20px;
484
652
  }
485
- .icon-zan1:before {
486
- content: "\E66D";
653
+
654
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-left {
655
+ font-size: 25px;
656
+ padding-bottom: 4px;
487
657
  }
488
- .icon-xingzhuangjiehe:before {
489
- content: "\E6A6";
490
- }.ele-img {
491
- position: absolute;
492
- overflow: hidden;
493
- }
494
-
495
- .ele-img .ani-wrap {
496
- width: 100%;
497
- height: 100%;
498
- }
499
-
500
- .ele-img .ele-image {
501
- position: relative;
502
- display: block;
503
- }
504
-
505
- .ele-img .rotate-wrap {
506
- position: absolute;
507
- left: 0;
508
- right: 0;
509
- top: 0;
510
- bottom: 0;
511
- }
512
-
513
- .ele-img .ele-img-bg,
514
- .ele-img .rotate-wrap .img-wrap {
515
- width: 100%;
516
- height: 100%;
517
- overflow: hidden;
518
- }
519
-
520
- .ele-img .ele-bg-wrap {
521
- width: 100%;
522
- height: 100%;
523
- background-size: cover;
524
- background-position: 50% 50%;
525
- background-repeat: no-repeat;
526
- background-clip: border-box;
527
- }
528
-
529
- /* 动画关键帧 */
530
- @keyframes zoomIn {
531
- from {
532
- opacity: 0;
533
- transform: scale(0.5);
534
- }
535
- to {
536
- opacity: 1;
537
- transform: scale(1);
538
- }
539
- }#audio {
540
- position: absolute;
541
- right: 10px;
542
- top: 10px;
543
- z-index: 103;
544
- width: 30px;
545
- height: 30px;
546
- display: flex;
547
- align-items: center;
658
+
659
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-right {
660
+ font-size: 25px;
548
661
  }
549
662
 
550
- #audio .mrotate {
551
- animation: mrotate 5s linear infinite;
663
+ .ele-calendar .ani-wrap .can-wrap .can-top .can-right span {
664
+ position: relative;
665
+ top: 2px;
666
+ font-size: 57px;
552
667
  }
553
668
 
554
- @keyframes mrotate {
555
- to {
556
- transform: rotate(1turn);
557
- }
669
+ .ele-calendar .ani-wrap .can-wrap .can-main {
670
+ padding: 0 23px;
558
671
  }
559
672
 
560
- #audio .audio {
561
- width: 100%;
562
- height: 100%;
673
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-week {
563
674
  display: flex;
564
- align-items: center;
565
- justify-content: center;
675
+ justify-content: flex-start;
676
+ height: 25px;
677
+ line-height: 25px;
678
+ padding: 0 10px;
679
+ border-radius: 13px;
680
+ }
681
+
682
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-week span {
683
+ width: 14.2%;
684
+ text-align: center;
566
685
  color: #fff;
567
- background: #666;
568
- border-radius: 50%;
569
- overflow: hidden;
570
- cursor: pointer;
571
- transition: all 0.3s ease;
686
+ font-size: 12px;
572
687
  }
573
688
 
574
- #audio .audio.a-border {
575
- border: 1px solid #fff;
689
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul {
690
+ font-size: 0;
691
+ padding: 5px 10px 0;
692
+ text-align: left;
576
693
  }
577
694
 
578
- #audio .audio .music-icon {
579
- display: block;
580
- width: 60%;
581
- height: 60%;
582
- object-fit: contain;
695
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li {
696
+ position: relative;
697
+ display: inline-block;
698
+ height: 25px;
699
+ text-align: center;
700
+ margin-top: 8px;
583
701
  }
584
702
 
585
- #audio .audio .iconfont {
586
- font-size: 2opx;
587
- line-height: 1;
703
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active .iconfont {
704
+ display: block;
588
705
  }
589
- #audio .icon-cancel {
590
- position: absolute;
591
- width: 100%;
592
- height: 100%;
593
- border-radius: 50%;
594
- overflow: hidden;
595
- padding: 15px 0;
706
+
707
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.active span {
708
+ color: #fff !important;
596
709
  }
597
- #audio .icon-cancel .icon-h {
598
- transform: rotate(45deg);
599
- width: 100%;
600
- height: 2px;
601
- background: #fff;
602
- }
603
- #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
604
- content: '';
605
- position: absolute;
606
- width: 100%;
607
- height: 2px;
608
- background: #fff;
609
- }
610
- .element-video {
611
- position: absolute;
612
- overflow: hidden;
613
- background-color: transparent;
614
- }
615
-
616
- .element-video .ani-wrap, .element-video img {
617
- display: block;
618
- width: 100%;
619
- height: 100%;
620
- }
621
-
622
- .video-container {
623
- width: 100%;
624
- height: 100%;
625
- }
626
-
627
- .video-container iframe {
628
- width: 100%;
629
- height: 100%;
630
- border: none;
631
- }
632
-
633
- .video-cover {
634
- position: relative;
635
- width: 100%;
636
- height: 100%;
637
- background-size: cover;
638
- background-position: center;
639
- cursor: pointer;
640
- }
641
-
642
- .video-cover .play-btn {
643
- position: absolute;
644
- left: 50%;
645
- top: 50%;
646
- transform: translate(-50%, -50%);
647
- width: 50px;
648
- height: 50px;
649
- opacity: 0.8;
650
- transition: opacity 0.2s;
651
- }
652
-
653
- .video-cover:hover .play-btn {
654
- opacity: 1;
655
- }.element-ditu .ani-wrap {
656
- width: 100%;
657
- height: 100%;
658
- overflow: hidden
710
+
711
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li.heart-ani .iconfont {
712
+ animation: jumpheart 0.8s ease infinite alternate;
659
713
  }
660
714
 
661
- .element-ditu .map {
662
- width: 100%;
663
- height: 100%
715
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li .iconfont {
716
+ display: none;
717
+ font-size: 26px;
664
718
  }
665
719
 
666
- .element-ditu .map .el-button {
667
- width: 100%;
668
- height: 100%;
720
+ .ele-calendar .ani-wrap .can-wrap .can-main .can-date ul li span {
721
+ position: absolute;
722
+ left: 50%;
723
+ top: 50%;
724
+ z-index: 1;
725
+ color: #666;
726
+ font-size: 13px;
727
+ transform: translate(-50%, -52%);
728
+ }
729
+
730
+ .ele-calendar .bottom-center,
731
+ .ele-calendar .left-center,
732
+ .ele-calendar .right-center,
733
+ .ele-calendar .top-center {
734
+ display: none !important;
735
+ }
736
+
737
+ .ele-calendar .ani-wrap .can-wrap2 {
738
+ padding: 21px 23px 0
739
+ }
740
+
741
+ .ele-calendar .ani-wrap .can-wrap2 .can-top {
669
742
  display: -webkit-box;
670
743
  display: -ms-flexbox;
671
744
  display: flex;
672
- -webkit-box-align: center;
673
- -ms-flex-align: center;
674
- align-items: center;
675
- padding: 0;
676
- -webkit-box-pack: center;
677
- -ms-flex-pack: center;
678
- justify-content: center;
679
- background: inherit;
680
- color: inherit;
681
- border: none
745
+ -webkit-box-pack: justify;
746
+ -ms-flex-pack: justify;
747
+ justify-content: space-between;
748
+ -webkit-box-align: end;
749
+ -ms-flex-align: end;
750
+ align-items: flex-end;
751
+ line-height: 1;
752
+ padding: 0 16px 22px;
753
+ font-size: 36px
682
754
  }
683
755
 
684
- .element-ditu .center-map {
685
- width: 100%;
686
- height: 100%;
687
- background: #fff
756
+ .ele-calendar .ani-wrap .can-wrap2 .can-top span {
757
+ font-size: 16px
688
758
  }
689
759
 
690
- .element-ditu .mask-map {
691
- position: absolute;
692
- width: 100%;
693
- height: 100%;
694
- top: 0
695
- }
696
- .map-iframe {
697
- width: 100%;
698
- height: 100%;
699
- }#page-list .tip-cover {
700
- position: fixed;
701
- left: 0;
702
- top: 0;
703
- width: 100%;
704
- height: 100%;
760
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week {
761
+ display: -webkit-box;
705
762
  display: -ms-flexbox;
706
763
  display: flex;
707
- -ms-flex-align: center;
708
- align-items: center;
709
- -ms-flex-pack: center;
710
- justify-content: center;
711
- z-index: 999;
712
- background-color: rgba(0,0,0,.7)
764
+ -webkit-box-pack: start;
765
+ -ms-flex-pack: start;
766
+ justify-content: flex-start;
767
+ height: 25px;
768
+ line-height: 25px;
769
+ padding: 0 10px;
770
+ border-radius: 13px
713
771
  }
714
772
 
715
- #page-list .tip-cover .tip {
716
- width: 80%;
717
- max-width: 250px;
718
- padding: 10px;
719
- border-radius: 5px;
720
- background-color: #fff
773
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-week span {
774
+ width: 14.2%;
775
+ text-align: center;
776
+ color: #fff;
777
+ font-size: 12px;
778
+ font-weight: 600
721
779
  }
722
780
 
723
- #page-list .tip-cover .tip-btn {
724
- display: block;
725
- margin: 25px auto;
726
- width: 120px;
727
- height: 30px;
728
- color: #fff;
729
- border-radius: 4px;
730
- text-align: center;
731
- font-size: 14px;
732
- line-height: 30px;
733
- background: #ed5566
781
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date {
782
+ position: relative
734
783
  }
735
784
 
736
- #page-list .tip-cover .tip-content {
737
- font-size: 14px;
738
- padding-top: 30px;
785
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date .can-year {
786
+ position: absolute;
787
+ white-space: nowrap;
788
+ left: 50%;
789
+ top: 15%;
790
+ -webkit-transform: translateX(-50%);
791
+ transform: translateX(-50%);
792
+ font-size: 76px;
793
+ opacity: .1;
794
+ font-weight: 600
739
795
  }
740
796
 
741
- .tip-cover {
742
- position: fixed;
743
- left: 0;
744
- top: 0;
745
- width: 100%;
746
- height: 100%;
747
- display: -ms-flexbox;
748
- display: flex;
749
- -ms-flex-align: center;
750
- align-items: center;
751
- -ms-flex-pack: center;
752
- justify-content: center;
753
- z-index: 999;
754
- background-color: rgba(0,0,0,.7)
797
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul {
798
+ font-size: 0;
799
+ padding: 5px 10px 0;
800
+ text-align: left
755
801
  }
756
802
 
757
- .tip-cover .tip {
758
- width: 80%;
759
- max-width: 250px;
760
- padding: 5px;
761
- border-radius: 3px;
762
- background-color: #fff
803
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li {
804
+ position: relative;
805
+ display: inline-block;
806
+ width: 14.2%;
807
+ height: 25px;
808
+ text-align: center;
809
+ margin-top: 8px
763
810
  }
764
811
 
765
- .tip-cover .tip-btn {
812
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active .iconfont {
766
813
  display: block;
767
- margin: 13px auto;
768
- width: 64px;
769
- height: 20px;
770
- color: #fff;
771
- border-radius: 4px;
772
- text-align: center;
773
- font-size: 14px;
774
- line-height: 20px;
775
- background: #ed5566;
776
- }
777
- .ele-lottie .ele-lotwrap {
778
- overflow: hidden;
779
- }.call {
780
814
  position: absolute;
781
- cursor: pointer;
782
- user-select: none;
815
+ left: 17%;
816
+ top: 0;
817
+ font-size: 25px
783
818
  }
784
819
 
785
- .call .ani-wrap {
786
- display: flex;
787
- justify-content: center;
788
- align-items: center;
789
- width: 100%;
790
- height: 100%;
791
- overflow: hidden;
792
- transition: opacity 0.2s;
820
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.active span {
821
+ color: #fff!important
793
822
  }
794
823
 
795
- .call .ani-wrap:hover {
796
- opacity: 0.9;
824
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li.heart-ani .iconfont {
825
+ -webkit-animation: jumpheart .8s ease infinite alternate;
826
+ animation: jumpheart .8s ease infinite alternate
797
827
  }
798
828
 
799
- .call-content {
800
- display: flex;
801
- align-items: center;
802
- justify-content: center;
829
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li .iconfont {
830
+ display: none;
831
+ font-size: 26px
832
+ }
833
+
834
+ .ele-calendar .ani-wrap .can-wrap2 .can-main .can-date ul li span {
835
+ position: absolute;
836
+ left: 50%;
837
+ top: 50%;
838
+ z-index: 1;
839
+ color: #666;
840
+ font-size: 13px;
841
+ -webkit-transform: translate(-50%,-52%);
842
+ transform: translate(-50%,-52%)
843
+ }
844
+
845
+ .ele-calendar .ani-wrap .can-wrap3 .can-top {
846
+ display: -webkit-box;
847
+ display: -ms-flexbox;
848
+ display: flex;
849
+ -webkit-box-pack: justify;
850
+ -ms-flex-pack: justify;
851
+ justify-content: space-between;
852
+ -webkit-box-align: end;
853
+ -ms-flex-align: end;
854
+ align-items: flex-end;
855
+ line-height: 1;
856
+ padding: 18px 33px 10px;
857
+ font-size: 36px;
858
+ }
859
+
860
+ .ele-calendar .ani-wrap .can-wrap3 .can-top span {
861
+ font-size: 16px
862
+ }
863
+
864
+ .ele-calendar .ani-wrap .can-wrap3 .can-top .can-year {
865
+ font-size: 20px
866
+ }
867
+
868
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week {
869
+ display: -webkit-box;
870
+ display: -ms-flexbox;
871
+ display: flex;
872
+ -webkit-box-pack: start;
873
+ -ms-flex-pack: start;
874
+ justify-content: flex-start;
875
+ height: 40px;
876
+ line-height: 40px;
877
+ padding: 0 34px;
878
+ border-bottom: 1px solid
879
+ }
880
+
881
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-week span {
882
+ width: 14.2%;
883
+ text-align: center;
884
+ color: #fff;
885
+ font-size: 12px;
886
+ font-weight: 600
887
+ }
888
+
889
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date {
890
+ position: relative
891
+ }
892
+
893
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul {
894
+ font-size: 0;
895
+ padding: 5px 33px 0;
896
+ text-align: left
897
+ }
898
+
899
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li {
900
+ position: relative;
901
+ display: inline-block;
902
+ width: 14.2%;
903
+ height: 25px;
904
+ text-align: center;
905
+ margin-top: 8px;
906
+ }
907
+
908
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active {
909
+ color: #eee
910
+ }
911
+
912
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active .iconfont {
913
+ display: block;
914
+ position: absolute;
915
+ left: 12%;
916
+ top: 2px;
917
+ }
918
+
919
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.active span {
920
+ font-size: 12px
921
+ }
922
+
923
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li.heart-ani .iconfont {
924
+ -webkit-animation: jumpheart .8s ease infinite alternate;
925
+ animation: jumpheart .8s ease infinite alternate
926
+ }
927
+
928
+ @keyframes jumpheart {
929
+ to {
930
+ -webkit-transform: scale(1.2);
931
+ transform: scale(1.2)
932
+ }
933
+ }
934
+
935
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li .iconfont {
936
+ display: none;
937
+ font-size: 26px
938
+ }
939
+
940
+ .ele-calendar .ani-wrap .can-wrap3 .can-main .can-date ul li span {
941
+ position: absolute;
942
+ left: 50%;
943
+ top: 50%;
944
+ z-index: 1;
945
+ color: #666;
946
+ font-size: 13px;
947
+ -webkit-transform: translate(-50%,-52%);
948
+ transform: translate(-50%,-52%)
949
+ }
950
+
951
+ .ele-calendar .bottom-center,.ele-calendar .left-center,.ele-calendar .right-center,.ele-calendar .top-center {
952
+ display: none!important
953
+ }
954
+ .icon-tuoyuanxing:before {
955
+ content: "\E6A7";
956
+ }
957
+ .icon-zan1:before {
958
+ content: "\E66D";
959
+ }
960
+ .icon-xingzhuangjiehe:before {
961
+ content: "\E6A6";
962
+ }.call {
963
+ position: absolute;
964
+ cursor: pointer;
965
+ user-select: none;
966
+ }
967
+
968
+ .call .ani-wrap {
969
+ display: flex;
970
+ justify-content: center;
971
+ align-items: center;
972
+ width: 100%;
973
+ height: 100%;
974
+ overflow: hidden;
975
+ transition: opacity 0.2s;
976
+ }
977
+
978
+ .call .ani-wrap:hover {
979
+ opacity: 0.9;
980
+ }
981
+
982
+ .call-content {
983
+ display: flex;
984
+ align-items: center;
985
+ justify-content: center;
803
986
  }
804
987
 
805
988
  .btn-text {
@@ -3315,7 +3498,53 @@ to {
3315
3498
  }
3316
3499
  }
3317
3500
 
3318
- @charset"UTF-8";.animated {
3501
+ .form-submit {
3502
+ cursor: pointer;
3503
+ transition: all 0.2s;
3504
+ outline: none;
3505
+ border: none;
3506
+ }
3507
+
3508
+ .form-submit:hover {
3509
+ opacity: 0.9;
3510
+ transform: translateY(-1px);
3511
+ }
3512
+
3513
+ .form-submit:active {
3514
+ opacity: 0.8;
3515
+ transform: translateY(0);
3516
+ }
3517
+
3518
+ .form-submit:disabled {
3519
+ opacity: 0.6;
3520
+ cursor: not-allowed;
3521
+ transform: none !important;
3522
+ }
3523
+
3524
+ .f-submit {
3525
+ position: relative;
3526
+ display: block
3527
+ }
3528
+
3529
+ .f-submit .ani-wrap {
3530
+ width: 100%;
3531
+ height: 100%;
3532
+ padding: 10px;
3533
+ overflow: hidden;
3534
+ position: relative
3535
+ }
3536
+
3537
+ .f-submit .f-ovh {
3538
+ position: absolute;
3539
+ left: 50%;
3540
+ top: 50%;
3541
+ transform: translate(-50%,-50%)
3542
+ }
3543
+
3544
+ .form-submit:disabled {
3545
+ opacity: 0.7;
3546
+ cursor: not-allowed;
3547
+ }@charset"UTF-8";.animated {
3319
3548
  animation-duration: 1s;
3320
3549
  animation-fill-mode: both
3321
3550
  }
@@ -8201,298 +8430,197 @@ to {
8201
8430
  transform: translateX(0)
8202
8431
  }
8203
8432
  }
8204
- .count-down .drag-point {
8205
- cursor: default!important
8206
- }
8207
-
8208
- .count-down .ani-wrap {
8209
- width: 100%;
8210
- height: 100%
8211
- }
8212
-
8213
- .count-down .count-text,.count-down .finish-cont {
8214
- display: -webkit-box;
8215
- display: -ms-flexbox;
8216
- display: flex;
8217
- height: 100%;
8218
- -webkit-box-align: center;
8219
- -ms-flex-align: center;
8220
- align-items: center;
8221
- -webkit-box-pack: center;
8222
- -ms-flex-pack: center;
8223
- justify-content: center
8224
- }
8225
-
8226
- .count-down .finish-cont {
8227
- width: 100%
8228
- }
8229
-
8230
- .count-down .count-flip {
8231
- display: -webkit-box;
8232
- display: -ms-flexbox;
8233
- display: flex;
8234
- height: 100%;
8235
- -webkit-box-align: center;
8236
- -ms-flex-align: center;
8237
- align-items: center;
8238
- -webkit-box-pack: center;
8239
- -ms-flex-pack: center;
8240
- justify-content: center
8241
- }
8242
-
8243
- .count-down .count-flip .numscroll {
8244
- -webkit-animation: numscroll .4s ease-in-out;
8245
- animation: numscroll .4s ease-in-out;
8246
- -webkit-animation-fill-mode: both;
8247
- animation-fill-mode: both
8248
- }
8249
-
8250
- .count-down .count-flip .numscroll .curr-num {
8251
- -webkit-transition: all .3s ease-in-out;
8252
- transition: all .3s ease-in-out;
8253
- opacity: .6;
8254
- -webkit-transform: scale(.5)!important;
8255
- transform: scale(.5)!important
8256
- }
8257
-
8258
- @-webkit-keyframes numscroll {
8259
- 0% {
8260
- -webkit-transform: translateZ(0);
8261
- transform: translateZ(0)
8433
+ /* .ele-form {
8434
+ position: absolute;
8435
+ user-select: none;
8436
+ } */
8437
+
8438
+ .f-select {
8439
+ cursor: pointer;
8262
8440
  }
8263
-
8264
- to {
8265
- -webkit-transform: translate3d(0,100%,0);
8266
- transform: translate3d(0,100%,0)
8441
+
8442
+ .ani-wrap {
8443
+ position: relative;
8267
8444
  }
8268
- }
8269
-
8270
- @keyframes numscroll {
8271
- 0% {
8272
- -webkit-transform: translateZ(0);
8273
- transform: translateZ(0)
8445
+
8446
+ .f-select .ani-wrap .fs-tit {
8447
+ position: relative;
8448
+ display: flex;
8449
+ padding: 0 5px;
8450
+ height: 35px;
8451
+ line-height: 35px;
8452
+ align-items: center;
8274
8453
  }
8275
-
8276
- to {
8277
- -webkit-transform: translate3d(0,100%,0);
8278
- transform: translate3d(0,100%,0)
8454
+
8455
+ .require {
8456
+ padding: 0 5px 0 0;
8457
+ color: red;
8458
+ vertical-align: middle;
8279
8459
  }
8280
- }
8460
+
8461
+ .fs-cont {
8462
+ padding-right: 15px;
8463
+ white-space: nowrap;
8464
+ overflow: hidden;
8465
+ text-overflow: ellipsis;
8466
+ flex-grow: 1;
8467
+ }
8468
+
8469
+ .icon-bofang1 {
8470
+ font-size: 12px;
8471
+ transition: transform 0.2s ease;
8472
+ }
8473
+
8474
+ .rotate-180 {
8475
+ transform: rotate(180deg) !important;
8476
+ }
8477
+
8478
+ .f-real {
8479
+ position: absolute;
8480
+ left: 0;
8481
+ top: 0;
8482
+ width: 100%;
8483
+ height: 100%;
8484
+ z-index: 1;
8485
+ opacity: 0;
8486
+ cursor: pointer;
8487
+ }
8488
+
8489
+ .dropdown-menu {
8490
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
8491
+ }
8492
+
8493
+ .dropdown-item {
8494
+ padding: 8px 10px;
8495
+ cursor: pointer;
8496
+ transition: background-color 0.2s;
8497
+ }
8498
+
8499
+ .dropdown-item:hover {
8500
+ background-color: #f5f5f5;
8501
+ }
8502
+
8503
+ .dropdown-item.selected {
8504
+ background-color: #e6f7ff;
8505
+ color: #1890ff;
8506
+ }
8507
+
8508
+ .f-select .fs-tit .icon-bofang1 {
8509
+ position: absolute;
8510
+ right: 10px;
8511
+ font-size: 12px;
8512
+ display: inline-block;
8513
+ transform: rotate(90deg);
8514
+ }
8515
+
8516
+ .icon-bofang1:before {
8517
+ content: "\E6CF";
8518
+ }
8519
+
8520
+ .has-error {
8521
+ border-color: #ff4d4f !important;
8522
+ }
8523
+
8524
+ .error-tip {
8525
+ position: fixed;
8526
+ left: 0;
8527
+ top: 0;
8528
+ width: 100%;
8529
+ height: 100%;
8530
+ z-index: 1000;
8531
+ }/* .ele-form {
8532
+ position: absolute;
8533
+ user-select: none;
8534
+ } */
8281
8535
 
8282
- .count-down .count-flip .c-com {
8283
- min-width: 50px;
8284
- height: auto;
8285
- margin: 6px;
8286
- padding: 5px 0 6px;
8287
- background-color: #111
8536
+ .f-multiple {
8537
+ cursor: pointer;
8288
8538
  }
8289
8539
 
8290
- .count-down .count-flip .c-com .flex-wrap {
8291
- display: -webkit-box;
8292
- display: -ms-flexbox;
8293
- display: flex;
8540
+ .ani-wrap {
8294
8541
  position: relative;
8295
- width: 100%;
8296
- height: 100%;
8297
- -webkit-box-align: center;
8298
- -ms-flex-align: center;
8299
- align-items: center
8300
- }
8301
-
8302
- .count-down .count-flip .c-com .flex-wrap .curr-num,.count-down .count-flip .c-com .flex-wrap .next-num {
8303
- line-height: 27px
8304
8542
  }
8305
8543
 
8306
- .count-down .count-flip .c-com .flex-wrap .next-num {
8307
- position: absolute;
8308
- top: -100%
8309
- }
8310
-
8311
- .count-down .count-flip .c-com .flex-wrap .curr-num {
8312
- -webkit-transform: scale(1);
8313
- transform: scale(1)
8544
+ .f-multiple .ani-wrap .fs-tit {
8545
+ display: flex;
8546
+ padding: 0 5px;
8547
+ height: 40px;
8548
+ align-items: center;
8549
+ white-space: nowrap;
8550
+ overflow: hidden;
8551
+ text-overflow: ellipsis;
8552
+ border-bottom: 1px solid rgba(153, 153, 153, 1);
8314
8553
  }
8315
8554
 
8316
- .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 {
8317
- display: none!important
8555
+ .require {
8556
+ padding: 0 5px 0 0;
8557
+ color: red;
8558
+ vertical-align: middle;
8318
8559
  }
8319
8560
 
8320
- .c-wrap {
8321
- width: 100%;
8322
- height: 100%;
8323
- overflow: hidden;
8324
- font-size: 0
8561
+ .f-multiple ul {
8562
+ padding: 15px;
8563
+ margin: 0;
8564
+ list-style: none;
8325
8565
  }
8326
8566
 
8327
- .c-wrap.c-day-wrap {
8328
- text-align: center
8567
+ .f-multiple ul li {
8568
+ margin-top: 12px;
8569
+ font-size: 0;
8570
+ display: flex;
8571
+ align-items: center;
8572
+ cursor: pointer;
8329
8573
  }
8330
8574
 
8331
- .c-wrap.c-day-wrap .c-num {
8332
- width: auto
8575
+ .f-multiple ul li:first-child {
8576
+ margin-top: 0;
8333
8577
  }
8334
8578
 
8335
- .c-wrap .c-num {
8579
+ .fs-circle {
8336
8580
  display: inline-block;
8337
- width: 50%;
8338
- overflow: hidden;
8339
- font-size: 20px;
8340
- color: #999
8581
+ width: 16px;
8582
+ height: 16px;
8583
+ border-radius: 50%;
8584
+ position: relative;
8585
+ transition: all 0.2s;
8341
8586
  }
8342
8587
 
8343
- .c-wrap .c-left .flex-wrap {
8344
- display: -webkit-box;
8345
- display: -ms-flexbox;
8346
- display: flex;
8347
- -webkit-box-pack: end;
8348
- -ms-flex-pack: end;
8349
- justify-content: flex-end
8588
+ .fs-circle.selected {
8589
+ background-color: #2687f1;
8590
+ border-color: #2687f1 !important;
8350
8591
  }
8351
8592
 
8352
- .c-wrap .c-text {
8353
- display: -webkit-box;
8354
- display: -ms-flexbox;
8355
- display: flex;
8356
- width: 100%;
8357
- font-size: 12px;
8358
- -webkit-box-pack: center;
8359
- -ms-flex-pack: center;
8360
- justify-content: center;
8361
- -webkit-box-align: center;
8362
- -ms-flex-align: center;
8363
- align-items: center;
8364
- white-space: nowrap
8365
- }
8366
- .button {
8593
+ .fs-circle.selected::after {
8594
+ content: "";
8367
8595
  position: absolute;
8368
- cursor: pointer;
8369
- user-select: none;
8370
- }
8371
-
8372
- .button .ani-wrap {
8373
- display: flex;
8374
- justify-content: center;
8375
- align-items: center;
8376
- width: 100%;
8377
- height: 100%;
8378
- overflow: hidden;
8379
- transition: opacity 0.2s;
8596
+ top: 3px;
8597
+ left: 3px;
8598
+ width: 8px;
8599
+ height: 8px;
8600
+ border-radius: 50%;
8601
+ background-color: white;
8380
8602
  }
8381
-
8382
- .button .ani-wrap:hover {
8383
- opacity: 0.9;
8603
+
8604
+ .fs-txt {
8605
+ display: inline-block;
8606
+ width: calc(100% - 16px);
8607
+ padding-left: 8px;
8608
+ vertical-align: top;
8609
+ word-break: break-all;
8610
+ font-size: 14px;
8611
+ line-height: 1.2;
8384
8612
  }
8385
8613
 
8386
- .button-content {
8387
- display: flex;
8388
- align-items: center;
8389
- justify-content: center;
8614
+ .has-error .fs-tit {
8615
+ border-bottom-color: #ff4d4f;
8616
+ }.form-input.form-input--editing,
8617
+ .form-input.form-input--editing input {
8618
+ pointer-events: none;
8619
+ user-select: none;
8620
+ -webkit-user-select: none;
8390
8621
  }
8391
8622
 
8392
- .btn-text {
8393
- margin-left: 10px;
8394
- }.ele-effect {
8395
- will-change: transform;
8396
- }
8397
-
8398
- .ele-effect .effect-wrap {
8399
- position: relative;
8400
- width: 100%;
8401
- height: 100%;
8402
- }
8403
-
8404
- .particle {
8405
- position: absolute;
8406
- background-repeat: no-repeat;
8407
- background-size: contain;
8408
- animation-name: falling;
8409
- animation-timing-function: linear;
8410
- animation-iteration-count: infinite;
8411
- will-change: transform;
8412
- }
8413
-
8414
- @keyframes falling {
8415
- 0% {
8416
- transform: translateY(0) rotate(0deg);
8417
- opacity: 1;
8418
- }
8419
- 80% {
8420
- opacity: 0.8;
8421
- }
8422
- 100% {
8423
- transform: translateY(100vh) rotate(360deg);
8424
- opacity: 0;
8425
- }
8426
- }
8427
- .ele-lottie .ele-lotwrap {
8428
- overflow: hidden
8429
- }
8430
-
8431
- .ele-effect .effect-wrap {
8432
- position: relative;
8433
- overflow: hidden;
8434
- width: 100%;
8435
- height: 100%
8436
- }
8437
-
8438
- .ele-effect .e-small {
8439
- position: absolute;
8440
- width: 24px;
8441
- height: 24px;
8442
- background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
8443
- background-size: cover;
8444
- background-repeat: no-repeat;
8445
- -webkit-transform-origin: center;
8446
- transform-origin: center;
8447
- -webkit-animation: snow 5s linear infinite;
8448
- animation: snow 5s linear infinite
8449
- }.form-submit {
8450
- cursor: pointer;
8451
- transition: all 0.2s;
8452
- outline: none;
8453
- border: none;
8454
- }
8455
-
8456
- .form-submit:hover {
8457
- opacity: 0.9;
8458
- transform: translateY(-1px);
8459
- }
8460
-
8461
- .form-submit:active {
8462
- opacity: 0.8;
8463
- transform: translateY(0);
8464
- }
8465
-
8466
- .form-submit:disabled {
8467
- opacity: 0.6;
8468
- cursor: not-allowed;
8469
- transform: none !important;
8470
- }
8471
-
8472
- .f-submit {
8473
- position: relative;
8474
- display: block
8475
- }
8476
-
8477
- .f-submit .ani-wrap {
8478
- width: 100%;
8479
- height: 100%;
8480
- padding: 10px;
8481
- overflow: hidden;
8482
- position: relative
8483
- }
8484
-
8485
- .f-submit .f-ovh {
8486
- position: absolute;
8487
- left: 50%;
8488
- top: 50%;
8489
- transform: translate(-50%,-50%)
8490
- }
8491
-
8492
- .form-submit:disabled {
8493
- opacity: 0.7;
8494
- cursor: not-allowed;
8495
- }.form-input {
8623
+ .form-input {
8496
8624
  position: absolute;
8497
8625
  }
8498
8626
 
@@ -8545,104 +8673,6 @@ cursor: not-allowed;
8545
8673
  }/* .ele-form {
8546
8674
  position: absolute;
8547
8675
  user-select: none;
8548
- } */
8549
-
8550
- .f-select {
8551
- cursor: pointer;
8552
- }
8553
-
8554
- .ani-wrap {
8555
- position: relative;
8556
- }
8557
-
8558
- .f-select .ani-wrap .fs-tit {
8559
- position: relative;
8560
- display: flex;
8561
- padding: 0 5px;
8562
- height: 35px;
8563
- line-height: 35px;
8564
- align-items: center;
8565
- }
8566
-
8567
- .require {
8568
- padding: 0 5px 0 0;
8569
- color: red;
8570
- vertical-align: middle;
8571
- }
8572
-
8573
- .fs-cont {
8574
- padding-right: 15px;
8575
- white-space: nowrap;
8576
- overflow: hidden;
8577
- text-overflow: ellipsis;
8578
- flex-grow: 1;
8579
- }
8580
-
8581
- .icon-bofang1 {
8582
- font-size: 12px;
8583
- transition: transform 0.2s ease;
8584
- }
8585
-
8586
- .rotate-180 {
8587
- transform: rotate(180deg) !important;
8588
- }
8589
-
8590
- .f-real {
8591
- position: absolute;
8592
- left: 0;
8593
- top: 0;
8594
- width: 100%;
8595
- height: 100%;
8596
- z-index: 1;
8597
- opacity: 0;
8598
- cursor: pointer;
8599
- }
8600
-
8601
- .dropdown-menu {
8602
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
8603
- }
8604
-
8605
- .dropdown-item {
8606
- padding: 8px 10px;
8607
- cursor: pointer;
8608
- transition: background-color 0.2s;
8609
- }
8610
-
8611
- .dropdown-item:hover {
8612
- background-color: #f5f5f5;
8613
- }
8614
-
8615
- .dropdown-item.selected {
8616
- background-color: #e6f7ff;
8617
- color: #1890ff;
8618
- }
8619
-
8620
- .f-select .fs-tit .icon-bofang1 {
8621
- position: absolute;
8622
- right: 10px;
8623
- font-size: 12px;
8624
- display: inline-block;
8625
- transform: rotate(90deg);
8626
- }
8627
-
8628
- .icon-bofang1:before {
8629
- content: "\E6CF";
8630
- }
8631
-
8632
- .has-error {
8633
- border-color: #ff4d4f !important;
8634
- }
8635
-
8636
- .error-tip {
8637
- position: fixed;
8638
- left: 0;
8639
- top: 0;
8640
- width: 100%;
8641
- height: 100%;
8642
- z-index: 1000;
8643
- }/* .ele-form {
8644
- position: absolute;
8645
- user-select: none;
8646
8676
  }
8647
8677
  */
8648
8678
  .f-single {
@@ -8734,533 +8764,1236 @@ cursor: not-allowed;
8734
8764
  width: 100%;
8735
8765
  height: 100%;
8736
8766
  z-index: 1000;
8737
- }/* .ele-form {
8738
- position: absolute;
8739
- user-select: none;
8740
- } */
8741
-
8742
- .f-multiple {
8767
+ }
8768
+ .global.receipt {
8769
+ width: 35px;
8770
+ height: 55px;
8771
+ border-radius: 50%;
8772
+ text-align: center;
8773
+ margin-bottom: 5px;
8774
+ border: 2px solid #fff;
8743
8775
  cursor: pointer;
8744
8776
  }
8745
-
8746
- .ani-wrap {
8747
- position: relative;
8777
+ .icon-liuyan:before { content: "\E636"; }
8778
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
8779
+ .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
8780
+ .icon-guanbi:before {
8781
+ content: "\E676";
8748
8782
  }
8749
-
8750
- .f-multiple .ani-wrap .fs-tit {
8751
- display: flex;
8752
- padding: 0 5px;
8753
- height: 40px;
8754
- align-items: center;
8755
- white-space: nowrap;
8756
- overflow: hidden;
8757
- text-overflow: ellipsis;
8758
- border-bottom: 1px solid rgba(153, 153, 153, 1);
8783
+ .icon-liuyan:before {
8784
+ content: "\E636";
8785
+ }
8786
+ .icon-dianhua:before {
8787
+ content: "\E60E";
8788
+ }
8789
+ .icon-daohang1:before {
8790
+ content: "\E612";
8791
+ }
8792
+ .icon-shipin2:before {
8793
+ content: "\E611";
8794
+ }
8795
+ .icon-buoumaotubiao20:before {
8796
+ content: "\E614";
8759
8797
  }
8760
8798
 
8761
- .require {
8762
- padding: 0 5px 0 0;
8763
- color: red;
8764
- vertical-align: middle;
8799
+ /* 主按钮组样式 */
8800
+ #page-global {
8801
+ position: absolute;
8802
+ right: 10px; /* 0.26667rem ≈ 10px */
8803
+ bottom: 15%;
8804
+ z-index: 100;
8805
+ width: 35px; /* 0.93333rem ≈ 35px */
8765
8806
  }
8766
8807
 
8767
- .f-multiple ul {
8768
- padding: 15px;
8808
+ #page-global .global {
8809
+ width: 35px;
8810
+ height: 55px; /* 1.46667rem ≈ 55px */
8811
+ border-radius: 50%;
8812
+ text-align: center;
8813
+ margin-bottom: 5px; /* 0.13333rem ≈ 5px */
8814
+ border-width: 0;
8815
+ }
8816
+
8817
+ #page-global .global.tel {
8818
+ /* margin-bottom: 15px; */
8819
+ }
8820
+
8821
+ #page-global .global.video span {
8822
+ position: relative;
8823
+ top: -4px; /* -0.10667rem ≈ -4px */
8824
+ }
8825
+
8826
+ #page-global .global .iconfont {
8827
+ font-size: 30px; /* 0.8rem ≈ 30px */
8828
+ color: #fff;
8829
+ text-shadow: 0 1px 3px rgba(0,0,0,.1); /* 0.02667rem ≈ 1px, 0.08rem ≈ 3px */
8830
+ }
8831
+
8832
+ #page-global .global .icon-bofang1 {
8833
+ margin-left: 3px; /* 0.08rem ≈ 3px */
8834
+ }
8835
+
8836
+ #page-global .global .icon-liuyan {
8837
+ position: relative;
8838
+ left: 1px; /* 0.02667rem ≈ 1px */
8839
+ font-size: 27px; /* 0.72rem ≈ 27px */
8840
+ }
8841
+
8842
+ #page-global .global>span {
8843
+ font-size: 10px; /* 0.32rem ≈ 12px */
8844
+ line-height: 20px; /* 0.53333rem ≈ 20px */
8845
+ text-shadow: 0 1px 1px rgba(0,0,0,.14); /* 0.02667rem ≈ 1px */
8846
+ display: block;
8847
+ }
8848
+
8849
+ /* 过渡动画 */
8850
+ .v-slide-enter-active,
8851
+ .v-slide-leave-active {
8852
+ transition: all 0.3s;
8853
+ }
8854
+
8855
+ .v-slide-enter,
8856
+ .v-slide-leave-to {
8857
+ transform: translate3d(100%,0,0);
8858
+ }
8859
+
8860
+ /* 回执表单样式 */
8861
+ #receipt-wrap {
8862
+ position: absolute;
8863
+ left: 0;
8864
+ top: 0;
8865
+ z-index: 103;
8866
+ width: 100%;
8867
+ height: 100%;
8868
+ background-color: rgba(0,0,0,.8);
8869
+ }
8870
+
8871
+ #receipt-wrap .icon-guanbi {
8872
+ position: absolute;
8873
+ right: 15px; /* 0.4rem ≈ 15px */
8874
+ top: 15px;
8875
+ padding: 10px; /* 0.26667rem ≈ 10px */
8876
+ font-size: 16px; /* 0.42667rem ≈ 16px */
8877
+ color: #bfbfbf;
8878
+ cursor: pointer;
8879
+ }
8880
+
8881
+ #receipt-wrap .r-tit {
8882
+ font-size: 26px; /* 0.69333rem ≈ 26px */
8883
+ color: #fff;
8884
+ text-align: center;
8885
+ padding-top: 92px; /* 2.45333rem ≈ 92px */
8886
+ }
8887
+
8888
+ #receipt-wrap .r-cont {
8889
+ width: 174px; /* 4.64rem ≈ 174px */
8890
+ margin: 0 auto;
8891
+ }
8892
+
8893
+ #receipt-wrap .r-cont,
8894
+ #receipt-wrap .r-list {
8895
+ -webkit-user-select: none;
8896
+ -moz-user-select: none;
8897
+ -ms-user-select: none;
8898
+ user-select: none;
8899
+ -webkit-tap-highlight-color: transparent;
8900
+ }
8901
+
8902
+ #receipt-wrap .r-list {
8903
+ margin-top: 50px; /* 1.33333rem ≈ 50px */
8904
+ }
8905
+
8906
+ #receipt-wrap .r-list li {
8907
+ width: 100%;
8908
+ height: 40px; /* 1.06667rem ≈ 40px */
8909
+ line-height: 40px;
8910
+ }
8911
+
8912
+ #receipt-wrap .r-list li.r-submit {
8913
+ height: auto;
8914
+ line-height: 1;
8915
+ margin-top: 30px; /* 0.8rem ≈ 30px */
8916
+ border-bottom: 0;
8917
+ }
8918
+
8919
+ #receipt-wrap .r-list li.r-which {
8920
+ position: relative;
8921
+ }
8922
+
8923
+ #receipt-wrap .r-list li.r-which:after {
8924
+ display: block;
8925
+ content: "";
8926
+ position: absolute;
8927
+ top: 50%;
8928
+ left: 50%;
8929
+ margin-top: 0px; /* -0.08rem ≈ -3px */
8930
+ margin-left: 25px; /* 0.53333rem ≈ 20px */
8931
+ width: 0;
8932
+ height: 0;
8933
+ border-top: 6px solid #bfbfbf; /* 0.16rem ≈ 6px */
8934
+ border-left: 4px solid transparent; /* 0.10667rem ≈ 4px */
8935
+ border-right: 4px solid transparent;
8936
+ }
8937
+ #receipt-wrap .r-list li {
8938
+ width: 100%;
8939
+ height: 40px;
8940
+ line-height: 40px;
8941
+ border-bottom: 1px solid #ffffff; /* 0.02667rem ≈ 1px */
8942
+ }
8943
+
8944
+ #receipt-wrap .r-list li .r-input {
8945
+ display: block;
8946
+ width: 100%;
8947
+ height: 40px;
8948
+ border-bottom: 1px solid #c8c8c8; /* 0.02667rem ≈ 1px */
8949
+ font-size: 14px; /* 0.37333rem ≈ 14px */
8950
+ color: #bfbfbf;
8951
+ text-align: center;
8952
+ border-radius: 0;
8953
+ -webkit-appearance: none;
8954
+ -webkit-tap-highlight-color: transparent;
8955
+ background: transparent;
8956
+ outline: none;
8957
+ border: none;
8958
+ }
8959
+
8960
+ #receipt-wrap .r-list li .r-input:disabled {
8961
+ color: #bfbfbf;
8962
+ -webkit-appearance: none;
8963
+ opacity: 1;
8964
+ }
8965
+
8966
+ #receipt-wrap .r-list li .r-input:disabled::-webkit-input-placeholder {
8967
+ color: #bfbfbf;
8968
+ }
8969
+
8970
+ #receipt-wrap .r-list li .r-input::-webkit-input-placeholder {
8971
+ color: #bfbfbf;
8972
+ opacity: 1;
8973
+ }
8974
+
8975
+ #receipt-wrap .r-list li .r-btn {
8976
+ width: 100%;
8977
+ height: 30px; /* 0.8rem ≈ 30px */
8978
+ line-height: 30px;
8979
+ color: #fff;
8980
+ background-color: #ff4562;
8981
+ border-radius: 20px; /* 0.53333rem ≈ 20px */
8982
+ outline: 0;
8983
+ font-size: 14px;
8984
+ border: none;
8985
+ cursor: pointer;
8986
+ }
8987
+
8988
+ /* 提示信息样式 */
8989
+ #receipt-wrap .tip-cover {
8990
+ position: fixed;
8991
+ left: 0;
8992
+ top: 0;
8993
+ width: 100%;
8994
+ height: 100%;
8995
+ display: flex;
8996
+ align-items: center;
8997
+ justify-content: center;
8998
+ z-index: 999;
8999
+ background-color: rgba(0,0,0,.7);
9000
+ }
9001
+
9002
+ #receipt-wrap .tip-cover .tip {
9003
+ width: 80%;
9004
+ max-width: 250px; /* 6.66667rem ≈ 250px */
9005
+ padding: 10px;
9006
+ border-radius: 5px; /* 0.13333rem ≈ 5px */
9007
+ background-color: #fff;
9008
+ }
9009
+
9010
+ #receipt-wrap .tip-cover .tip-btn {
9011
+ display: block;
9012
+ margin: 25px auto; /* 0.66667rem ≈ 25px */
9013
+ width: 120px; /* 3.2rem ≈ 120px */
9014
+ height: 30px;
9015
+ color: #fff;
9016
+ border-radius: 4px; /* 0.10667rem ≈ 4px */
9017
+ text-align: center;
9018
+ font-size: 14px;
9019
+ line-height: 30px;
9020
+ background: #ed5566;
9021
+ border: none;
9022
+ cursor: pointer;
9023
+ }
9024
+
9025
+ #receipt-wrap .tip-cover .tip-content {
9026
+ font-size: 14px;
9027
+ padding-top: 30px; /* 0.8rem ≈ 30px */
9028
+ text-align: center;
9029
+ }
9030
+
9031
+ /* 选择器样式 */
9032
+ .which-select {
9033
+ top: 0;
9034
+ z-index: 110;
9035
+ height: 100%;
9036
+ background-color: rgba(0,0,0,.5);
9037
+ }
9038
+
9039
+ .which-select,
9040
+ .which-select ul {
9041
+ position: absolute;
9042
+ left: 0;
9043
+ width: 100%;
9044
+ }
9045
+
9046
+ .which-select ul {
9047
+ bottom: 0;
9048
+ transition: transform 0.3s ease-out;
8769
9049
  margin: 0;
9050
+ padding: 0;
8770
9051
  list-style: none;
8771
9052
  }
8772
9053
 
8773
- .f-multiple ul li {
8774
- margin-top: 12px;
8775
- font-size: 0;
9054
+ .which-select ul.hide {
9055
+ transform: translateY(100%);
9056
+ }
9057
+
9058
+ .which-select ul li {
9059
+ width: 100%;
9060
+ height: 45px; /* 1.2rem ≈ 45px */
9061
+ line-height: 45px;
9062
+ background-color: #f0f0f0;
9063
+ border-bottom: 1px solid #e0e0e0;
9064
+ text-align: center;
9065
+ cursor: pointer;
9066
+ }
9067
+
9068
+ .which-select ul li:last-child {
9069
+ line-height: 40px;
9070
+ height: auto;
9071
+ padding-bottom: 15px;
9072
+ }
9073
+
9074
+ /* 视频播放器样式 */
9075
+ .global-v {
9076
+ position: fixed;
9077
+ top: 0;
9078
+ left: 0;
9079
+ width: 100%;
9080
+ height: 100%;
9081
+ background: rgba(0,0,0,.7);
9082
+ z-index: 101;
9083
+ transition: all 0.3s;
9084
+ }
9085
+
9086
+ .global-v.gv-show {
9087
+ transform: translateX(-100%);
9088
+ }
9089
+
9090
+ .global-v #close-gvideo {
9091
+ position: absolute;
9092
+ left: 13px; /* 0.34667rem ≈ 13px */
9093
+ top: 13px;
9094
+ z-index: 10;
9095
+ color: #fff;
9096
+ cursor: pointer;
9097
+ }
9098
+
9099
+ .global-v #close-gvideo .icon-buoumaotubiao20 {
9100
+ font-size: 22px; /* 0.58667rem ≈ 22px */
9101
+ font-weight: 700;
9102
+ }
9103
+
9104
+ .global-v .global-v-show {
9105
+ position: relative;
9106
+ z-index: 1;
9107
+ width: 100%;
9108
+ height: 100%;
9109
+ }
9110
+
9111
+ .global-v ::v-deep .global-v-show iframe {
9112
+ position: absolute;
9113
+ left: 0;
9114
+ top: 50%;
9115
+ transform: translateY(-60%);
9116
+ min-height: 45%;
9117
+ max-height: 100%;
9118
+ width: 100%;
9119
+ }
9120
+
9121
+ /* 缩放动画 */
9122
+ .scale-enter-active,
9123
+ .scale-leave-active {
9124
+ transition: 0.2s;
9125
+ transform-origin: center center;
9126
+ }
9127
+
9128
+ .scale-enter,
9129
+ .scale-leave-to {
9130
+ opacity: 0;
9131
+ transform: scale(1.1);
9132
+ }
9133
+
9134
+ .scale-enter-to,
9135
+ .scale-leave {
9136
+ opacity: 1;
9137
+ transform: scale(1);
9138
+ }
9139
+ /* 新增 toast 样式 */
9140
+ .mint-toast {
9141
+ position: fixed;
9142
+ top: 50%;
9143
+ left: 50%;
9144
+ transform: translate(-50%, -50%);
9145
+ display: flex;
9146
+ flex-direction: column;
9147
+ align-items: center;
9148
+ justify-content: center;
9149
+ min-width: 90px; /* 2.4rem ≈ 90px */
9150
+ max-width: 180px; /* 4.8rem ≈ 180px */
9151
+ height: 90px;
9152
+ padding: 8px !important; /* 0.21333rem ≈ 8px */
9153
+ background-color: rgba(0, 0, 0, 0.7);
9154
+ border-radius: 8px;
9155
+ z-index: 2000;
9156
+ color: #fff;
9157
+ }
9158
+
9159
+ .mint-toast-text {
9160
+ font-size: 12px; /* 0.32rem ≈ 12px */
9161
+ padding-top: 0 !important;
9162
+ }
9163
+
9164
+ /* 新增图标样式 */
9165
+ .icon-duihao:before {
9166
+ content: "\E637";
9167
+ }
9168
+
9169
+ .icon-cuowu2:before {
9170
+ content: "\E65E";
9171
+ color: #F44336; /* 失败的红色 */
9172
+ }
9173
+ #page-list .tip-cover {
9174
+ position: fixed;
9175
+ left: 0;
9176
+ top: 0;
9177
+ width: 100%;
9178
+ height: 100%;
9179
+ display: -ms-flexbox;
9180
+ display: flex;
9181
+ -ms-flex-align: center;
9182
+ align-items: center;
9183
+ -ms-flex-pack: center;
9184
+ justify-content: center;
9185
+ z-index: 999;
9186
+ background-color: rgba(0,0,0,.7)
9187
+ }
9188
+
9189
+ #page-list .tip-cover .tip {
9190
+ width: 80%;
9191
+ max-width: 250px;
9192
+ padding: 10px;
9193
+ border-radius: 5px;
9194
+ background-color: #fff
9195
+ }
9196
+
9197
+ #page-list .tip-cover .tip-btn {
9198
+ display: block;
9199
+ margin: 25px auto;
9200
+ width: 120px;
9201
+ height: 30px;
9202
+ color: #fff;
9203
+ border-radius: 4px;
9204
+ text-align: center;
9205
+ font-size: 14px;
9206
+ line-height: 30px;
9207
+ background: #ed5566
9208
+ }
9209
+
9210
+ #page-list .tip-cover .tip-content {
9211
+ font-size: 14px;
9212
+ padding-top: 30px;
9213
+ }
9214
+
9215
+ .tip-cover {
9216
+ position: fixed;
9217
+ left: 0;
9218
+ top: 0;
9219
+ width: 100%;
9220
+ height: 100%;
9221
+ display: -ms-flexbox;
9222
+ display: flex;
9223
+ -ms-flex-align: center;
9224
+ align-items: center;
9225
+ -ms-flex-pack: center;
9226
+ justify-content: center;
9227
+ z-index: 999;
9228
+ background-color: rgba(0,0,0,.7)
9229
+ }
9230
+
9231
+ .tip-cover .tip {
9232
+ width: 80%;
9233
+ max-width: 250px;
9234
+ padding: 5px;
9235
+ border-radius: 3px;
9236
+ background-color: #fff
9237
+ }
9238
+
9239
+ .tip-cover .tip-btn {
9240
+ display: block;
9241
+ margin: 13px auto;
9242
+ width: 64px;
9243
+ height: 20px;
9244
+ color: #fff;
9245
+ border-radius: 4px;
9246
+ text-align: center;
9247
+ font-size: 14px;
9248
+ line-height: 20px;
9249
+ background: #ed5566;
9250
+ }
9251
+ .global.map {
9252
+ width: 35px;
9253
+ height: 55px;
9254
+ border-radius: 50%;
9255
+ text-align: center;
9256
+ margin-bottom: 5px;
9257
+ border: 2px solid #fff;
9258
+ cursor: pointer;
9259
+ }
9260
+ .icon-daohang1:before { content: "\E612"; }
9261
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9262
+ .global.map > span { font-size: 10px; line-height: 20px; display: block;}
9263
+ .global.tel {
9264
+ width: 35px;
9265
+ height: 55px;
9266
+ border-radius: 50%;
9267
+ text-align: center;
9268
+ margin-bottom: 15px;
9269
+ border: 2px solid #fff;
9270
+ cursor: pointer;
9271
+ }
9272
+ .icon-dianhua:before { content: "\E60E"; }
9273
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9274
+ .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
9275
+ .global.video {
9276
+ width: 35px;
9277
+ height: 55px;
9278
+ border-radius: 50%;
9279
+ text-align: center;
9280
+ margin-bottom: 5px;
9281
+ border: 2px solid #fff;
9282
+ cursor: pointer;
9283
+ }
9284
+ .icon-shipin2:before { content: "\E611"; }
9285
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9286
+ .global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
9287
+ }
9288
+ /* ===== 送呈(启呈)运行时样式 ===== */
9289
+ #invite {
9290
+ position: absolute;
9291
+ left: 0;
9292
+ top: 0;
9293
+ bottom: 0;
9294
+ right: 0;
9295
+ z-index: 104;
9296
+ overflow: hidden;
9297
+ background-color: transparent;
9298
+ cursor: pointer;
9299
+ }
9300
+
9301
+ /* 编辑器 iframe 预览 */
9302
+ #invite.uni-invite--preview {
9303
+ position: absolute;
9304
+ left: 0;
9305
+ top: 0;
9306
+ bottom: 0;
9307
+ right: 0;
9308
+ transform: none;
9309
+ max-width: none;
9310
+ cursor: default;
9311
+ }
9312
+
9313
+ /* ---------- type1 ---------- */
9314
+ #invite .type1 {
9315
+ width: 100%;
9316
+ height: 100%;
9317
+ position: relative;
9318
+ }
9319
+
9320
+ #invite .type1 .img1 {
9321
+ width: 100%;
9322
+ height: 100%;
9323
+ position: absolute;
9324
+ top: 0;
9325
+ left: 0;
9326
+ object-fit: cover;
9327
+ }
9328
+
9329
+ #invite .type1 .content-center {
9330
+ width: 8.53333rem;
9331
+ height: 5.76rem;
9332
+ position: absolute;
9333
+ top: 50%;
9334
+ left: 50%;
9335
+ transform: translate(-50%, -50%);
9336
+ }
9337
+
9338
+ #invite .type1 .content-center .bottom-ani,
9339
+ #invite .type1 .content-center img {
9340
+ width: 100%;
9341
+ height: 100%;
9342
+ position: absolute;
9343
+ top: 0;
9344
+ left: 0;
9345
+ }
9346
+
9347
+ #invite .type1 .content-center .bottom-ani {
9348
+ transform-origin: bottom center;
9349
+ transform-style: preserve-3d;
9350
+ }
9351
+
9352
+ #invite .type1 .content-center .bottom-ani .img3 {
9353
+ width: 100%;
9354
+ height: 100%;
9355
+ top: 0;
9356
+ left: 0;
9357
+ transform-origin: bottom center;
9358
+ object-fit: contain;
9359
+ }
9360
+
9361
+ #invite .type1 .content-center .bottom-ani .content {
9362
+ font-size: 0.32rem;
9363
+ position: absolute;
9364
+ top: 4.8rem;
9365
+ left: 50%;
9366
+ transform: translateX(-50%);
9367
+ backface-visibility: hidden;
9368
+ white-space: nowrap;
9369
+ }
9370
+
9371
+ #invite .type1 .content-center .top-ani {
9372
+ position: absolute;
9373
+ width: 100%;
9374
+ height: 100%;
9375
+ top: 0;
9376
+ left: 0;
9377
+ transform-origin: top center;
9378
+ transform-style: preserve-3d;
9379
+ }
9380
+
9381
+ #invite .type1 .content-center .top-ani .title {
9382
+ font-size: 0.53333rem;
9383
+ font-weight: 900;
9384
+ left: 0.90667rem;
9385
+ }
9386
+
9387
+ #invite .type1 .content-center .top-ani .name,
9388
+ #invite .type1 .content-center .top-ani .title {
9389
+ position: absolute;
9390
+ height: 0.64rem;
9391
+ top: 1.2rem;
9392
+ display: flex;
9393
+ align-items: center;
9394
+ justify-content: center;
9395
+ backface-visibility: hidden;
9396
+ white-space: nowrap;
9397
+ }
9398
+
9399
+ #invite .type1 .content-center .top-ani .name {
9400
+ padding: 0 0.10667rem;
9401
+ border-bottom: 0.02667rem solid #ffe5c7;
9402
+ border-top: 0.02667rem solid #ffe5c7;
9403
+ font-size: 0.32rem;
9404
+ right: 0.90667rem;
9405
+ }
9406
+
9407
+ #invite .type1 .content-center .top-ani .img5 {
9408
+ backface-visibility: hidden;
9409
+ }
9410
+
9411
+ #invite .type1 .content-center .img6 {
9412
+ width: 100%;
9413
+ height: 2.13333rem;
9414
+ top: 1.81333rem;
9415
+ animation: invite-breathing 2s linear infinite;
9416
+ }
9417
+
9418
+ #invite .type1.active {
9419
+ animation: invite-vanish 1s linear 1.8s;
9420
+ animation-fill-mode: both;
9421
+ }
9422
+
9423
+ #invite .type1.active .bottom-ani {
9424
+ animation: invite-bottomOpen 1.2s linear 0.6s;
9425
+ animation-fill-mode: both;
9426
+ }
9427
+
9428
+ #invite .type1.active .top-ani {
9429
+ animation: invite-topOpen 1.2s linear 0.5s;
9430
+ animation-fill-mode: both;
9431
+ }
9432
+
9433
+ #invite .type1.active .img6 {
9434
+ animation: invite-vanish 0.5s linear;
9435
+ animation-fill-mode: both;
9436
+ }
9437
+
9438
+ /* ---------- type2(默认) ---------- */
9439
+ #invite .type2 {
9440
+ width: 100%;
9441
+ height: 100%;
9442
+ position: relative;
9443
+ }
9444
+
9445
+ #invite .type2 .img1,
9446
+ #invite .type2 .top-ani {
9447
+ width: 100%;
9448
+ height: 100%;
9449
+ position: absolute;
9450
+ top: 0;
9451
+ left: 0;
9452
+ }
9453
+
9454
+ #invite .type2 .img1 {
9455
+ object-fit: cover;
9456
+ }
9457
+
9458
+ #invite .type2 .top-ani {
9459
+ transform-origin: top center;
9460
+ transform-style: preserve-3d;
9461
+ }
9462
+
9463
+ #invite .type2 .top-ani .img2 {
9464
+ width: 100%;
9465
+ position: absolute;
9466
+ top: 0;
9467
+ left: 0;
9468
+ }
9469
+
9470
+ #invite .type2 .top-ani .title {
9471
+ font-size: 1.12rem;
9472
+ font-weight: 900;
9473
+ position: absolute;
9474
+ top: 1.49333rem;
9475
+ left: 50%;
9476
+ transform: translateX(-50%);
8776
9477
  display: flex;
9478
+ flex-flow: column;
8777
9479
  align-items: center;
8778
- cursor: pointer;
8779
9480
  }
8780
9481
 
8781
- .f-multiple ul li:first-child {
8782
- margin-top: 0;
9482
+ #invite .type2 .top-ani .title span {
9483
+ display: block;
8783
9484
  }
8784
9485
 
8785
- .fs-circle {
8786
- display: inline-block;
8787
- width: 16px;
8788
- height: 16px;
8789
- border-radius: 50%;
8790
- position: relative;
8791
- transition: all 0.2s;
9486
+ #invite .type2 .top-ani .divider {
9487
+ width: 2.93333rem;
9488
+ position: absolute;
9489
+ top: 5.06667rem;
9490
+ left: 50%;
9491
+ transform: translateX(-50%);
8792
9492
  }
8793
9493
 
8794
- .fs-circle.selected {
8795
- background-color: #2687f1;
8796
- border-color: #2687f1 !important;
9494
+ #invite .type2 .top-ani .name {
9495
+ font-size: 0.50667rem;
9496
+ top: 5.81333rem;
8797
9497
  }
8798
9498
 
8799
- .fs-circle.selected::after {
8800
- content: "";
9499
+ #invite .type2 .content,
9500
+ #invite .type2 .top-ani .name {
8801
9501
  position: absolute;
8802
- top: 3px;
8803
- left: 3px;
8804
- width: 8px;
8805
- height: 8px;
8806
- border-radius: 50%;
8807
- background-color: white;
9502
+ left: 50%;
9503
+ transform: translateX(-50%);
9504
+ white-space: nowrap;
8808
9505
  }
8809
9506
 
8810
- .fs-txt {
8811
- display: inline-block;
8812
- width: calc(100% - 16px);
8813
- padding-left: 8px;
8814
- vertical-align: top;
8815
- word-break: break-all;
8816
- font-size: 14px;
8817
- line-height: 1.2;
9507
+ #invite .type2 .content {
9508
+ width: 100%;
9509
+ bottom: 1.73333rem;
9510
+ text-align: center;
9511
+ z-index: 2;
8818
9512
  }
8819
9513
 
8820
- .has-error .fs-tit {
8821
- border-bottom-color: #ff4d4f;
9514
+ #invite .type2 .img3 {
9515
+ width: 100%;
9516
+ height: 3.73333rem;
9517
+ position: absolute;
9518
+ top: 7.46667rem;
9519
+ left: 0;
9520
+ z-index: 5;
9521
+ object-fit: contain;
9522
+ pointer-events: none;
9523
+ animation: invite-breathing 2s linear infinite;
8822
9524
  }
8823
- .icon-guanbi:before {
8824
- content: "\E676";
9525
+
9526
+ #invite .type2.active {
9527
+ animation: invite-vanish 1s linear 1.2s;
9528
+ animation-fill-mode: both;
8825
9529
  }
8826
- .icon-liuyan:before {
8827
- content: "\E636";
9530
+
9531
+ #invite .type2.active .top-ani {
9532
+ animation: invite-topOpen 1.2s linear 0.5s;
9533
+ animation-fill-mode: both;
8828
9534
  }
8829
- .icon-dianhua:before {
8830
- content: "\E60E";
9535
+
9536
+ #invite .type2.active .img3 {
9537
+ animation: invite-vanish 0.5s linear;
9538
+ animation-fill-mode: both;
8831
9539
  }
8832
- .icon-daohang1:before {
8833
- content: "\E612";
9540
+
9541
+ /* ---------- type3 ---------- */
9542
+ #invite .type3 {
9543
+ width: 100%;
9544
+ height: 100%;
9545
+ position: relative;
8834
9546
  }
8835
- .icon-shipin2:before {
8836
- content: "\E611";
9547
+
9548
+ #invite .type3 .img1,
9549
+ #invite .type3 .right-ani {
9550
+ width: 100%;
9551
+ height: 100%;
9552
+ position: absolute;
9553
+ left: 0;
9554
+ top: 0;
8837
9555
  }
8838
- .icon-buoumaotubiao20:before {
8839
- content: "\E614";
9556
+
9557
+ #invite .type3 .img1 {
9558
+ object-fit: cover;
8840
9559
  }
8841
9560
 
8842
- /* 主按钮组样式 */
8843
- #page-global {
8844
- position: absolute;
8845
- right: 10px; /* 0.26667rem ≈ 10px */
8846
- bottom: 15%;
8847
- z-index: 100;
8848
- width: 35px; /* 0.93333rem ≈ 35px */
9561
+ #invite .type3 .right-ani {
9562
+ transform-origin: right center;
9563
+ transform-style: preserve-3d;
8849
9564
  }
8850
9565
 
8851
- #page-global .global {
8852
- width: 35px;
8853
- height: 55px; /* 1.46667rem ≈ 55px */
8854
- border-radius: 50%;
8855
- text-align: center;
8856
- margin-bottom: 5px; /* 0.13333rem ≈ 5px */
8857
- border-width: 0;
9566
+ #invite .type3 .right-ani .img2 {
9567
+ width: 100%;
9568
+ height: 100%;
9569
+ position: absolute;
9570
+ left: 0;
9571
+ object-fit: cover;
8858
9572
  }
8859
9573
 
8860
- #page-global .global.tel {
8861
- /* margin-bottom: 15px; */
9574
+ #invite .type3 .right-ani .title {
9575
+ font-size: 1.12rem;
9576
+ font-weight: 900;
9577
+ top: 9%;
9578
+ letter-spacing: 0.26667rem;
8862
9579
  }
8863
9580
 
8864
- #page-global .global.video span {
8865
- position: relative;
8866
- top: -4px; /* -0.10667rem ≈ -4px */
9581
+ #invite .type3 .right-ani .name,
9582
+ #invite .type3 .right-ani .title {
9583
+ position: absolute;
9584
+ writing-mode: vertical-lr;
9585
+ text-orientation: upright;
9586
+ right: 1.22667rem;
9587
+ width: 1.12rem;
8867
9588
  }
8868
9589
 
8869
- #page-global .global .iconfont {
8870
- font-size: 30px; /* 0.8rem ≈ 30px */
8871
- color: #fff;
8872
- text-shadow: 0 1px 3px rgba(0,0,0,.1); /* 0.02667rem ≈ 1px, 0.08rem ≈ 3px */
9590
+ #invite .type3 .right-ani .name {
9591
+ font-size: 0.56rem;
9592
+ bottom: 9%;
9593
+ letter-spacing: 0.13333rem;
9594
+ text-align: center;
9595
+ line-height: 1.12rem;
9596
+ white-space: nowrap;
9597
+ padding: 0.18667rem 0;
9598
+ border-left: 0.02667rem solid rgba(255, 229, 199, 0.5);
9599
+ border-right: 0.02667rem solid rgba(255, 229, 199, 0.5);
8873
9600
  }
8874
9601
 
8875
- #page-global .global .icon-bofang1 {
8876
- margin-left: 3px; /* 0.08rem ≈ 3px */
9602
+ #invite .type3 .right-ani .content {
9603
+ font-size: 0.4rem;
9604
+ letter-spacing: 0.13333rem;
9605
+ position: absolute;
9606
+ writing-mode: vertical-lr;
9607
+ text-orientation: upright;
9608
+ right: 3.36rem;
9609
+ top: 50%;
9610
+ white-space: nowrap;
9611
+ transform: translateY(-50%);
8877
9612
  }
8878
9613
 
8879
- #page-global .global .icon-liuyan {
8880
- position: relative;
8881
- left: 1px; /* 0.02667rem ≈ 1px */
8882
- font-size: 27px; /* 0.72rem ≈ 27px */
9614
+ #invite .type3 .img3 {
9615
+ width: 100%;
9616
+ height: 3.73333rem;
9617
+ top: 50%;
9618
+ left: 0;
9619
+ margin-top: -1.86667rem;
9620
+ position: absolute;
9621
+ transform-origin: 25% center;
9622
+ animation: invite-breathing 2s linear infinite;
8883
9623
  }
8884
9624
 
8885
- #page-global .global>span {
8886
- font-size: 10px; /* 0.32rem ≈ 12px */
8887
- line-height: 20px; /* 0.53333rem ≈ 20px */
8888
- text-shadow: 0 1px 1px rgba(0,0,0,.14); /* 0.02667rem ≈ 1px */
8889
- display: block;
9625
+ #invite .type3.active {
9626
+ animation: invite-vanish 1s linear 1.4s;
9627
+ animation-fill-mode: both;
8890
9628
  }
8891
9629
 
8892
- /* 过渡动画 */
8893
- .v-slide-enter-active,
8894
- .v-slide-leave-active {
8895
- transition: all 0.3s;
9630
+ #invite .type3.active .right-ani {
9631
+ animation: invite-rightOpen 1.2s linear 0.5s;
9632
+ animation-fill-mode: both;
8896
9633
  }
8897
9634
 
8898
- .v-slide-enter,
8899
- .v-slide-leave-to {
8900
- transform: translate3d(100%,0,0);
9635
+ #invite .type3.active .img3 {
9636
+ animation: invite-vanish 0.5s linear;
9637
+ animation-fill-mode: both;
8901
9638
  }
8902
9639
 
8903
- /* 回执表单样式 */
8904
- #receipt-wrap {
8905
- position: absolute;
8906
- left: 0;
8907
- top: 0;
8908
- z-index: 103;
9640
+ /* ---------- type4 ---------- */
9641
+ #invite .type4 {
8909
9642
  width: 100%;
8910
9643
  height: 100%;
8911
- background-color: rgba(0,0,0,.8);
9644
+ position: relative;
8912
9645
  }
8913
9646
 
8914
- #receipt-wrap .icon-guanbi {
9647
+ #invite .type4 .img1,
9648
+ #invite .type4 .img2 {
9649
+ width: 100%;
9650
+ height: 100%;
8915
9651
  position: absolute;
8916
- right: 15px; /* 0.4rem ≈ 15px */
8917
- top: 15px;
8918
- padding: 10px; /* 0.26667rem ≈ 10px */
8919
- font-size: 16px; /* 0.42667rem ≈ 16px */
8920
- color: #bfbfbf;
8921
- cursor: pointer;
9652
+ top: 0;
9653
+ left: 0;
9654
+ object-fit: cover;
8922
9655
  }
8923
9656
 
8924
- #receipt-wrap .r-tit {
8925
- font-size: 26px; /* 0.69333rem ≈ 26px */
8926
- color: #fff;
8927
- text-align: center;
8928
- padding-top: 92px; /* 2.45333rem ≈ 92px */
9657
+ #invite .type4 .img2 {
9658
+ transform-origin: left center;
9659
+ transform-style: preserve-3d;
8929
9660
  }
8930
9661
 
8931
- #receipt-wrap .r-cont {
8932
- width: 174px; /* 4.64rem ≈ 174px */
8933
- margin: 0 auto;
9662
+ #invite .type4 .right-ani {
9663
+ transform-origin: right center;
9664
+ transform-style: preserve-3d;
8934
9665
  }
8935
9666
 
8936
- #receipt-wrap .r-cont,
8937
- #receipt-wrap .r-list {
8938
- -webkit-user-select: none;
8939
- -moz-user-select: none;
8940
- -ms-user-select: none;
8941
- user-select: none;
8942
- -webkit-tap-highlight-color: transparent;
9667
+ #invite .type4 .right-ani,
9668
+ #invite .type4 .right-ani .img3 {
9669
+ position: absolute;
9670
+ width: 100%;
9671
+ height: 100%;
9672
+ top: 0;
9673
+ left: 0;
8943
9674
  }
8944
9675
 
8945
- #receipt-wrap .r-list {
8946
- margin-top: 50px; /* 1.33333rem ≈ 50px */
9676
+ #invite .type4 .right-ani .img3 {
9677
+ object-fit: cover;
8947
9678
  }
8948
9679
 
8949
- #receipt-wrap .r-list li {
8950
- width: 100%;
8951
- height: 40px; /* 1.06667rem ≈ 40px */
8952
- line-height: 40px;
9680
+ #invite .type4 .right-ani .title {
9681
+ font-size: 1.12rem;
9682
+ font-weight: 900;
9683
+ top: 9%;
9684
+ letter-spacing: 0.26667rem;
8953
9685
  }
8954
9686
 
8955
- #receipt-wrap .r-list li.r-submit {
8956
- height: auto;
8957
- line-height: 1;
8958
- margin-top: 30px; /* 0.8rem ≈ 30px */
8959
- border-bottom: 0;
9687
+ #invite .type4 .right-ani .name,
9688
+ #invite .type4 .right-ani .title {
9689
+ position: absolute;
9690
+ writing-mode: vertical-lr;
9691
+ text-orientation: upright;
9692
+ right: 1.22667rem;
9693
+ width: 1.12rem;
8960
9694
  }
8961
9695
 
8962
- #receipt-wrap .r-list li.r-which {
8963
- position: relative;
9696
+ #invite .type4 .right-ani .name {
9697
+ font-size: 0.56rem;
9698
+ bottom: 9%;
9699
+ letter-spacing: 0.13333rem;
9700
+ text-align: center;
9701
+ line-height: 1.12rem;
9702
+ padding: 0.18667rem 0;
9703
+ white-space: nowrap;
9704
+ border-left: 0.02667rem solid rgba(255, 229, 199, 0.5);
9705
+ border-right: 0.02667rem solid rgba(255, 229, 199, 0.5);
8964
9706
  }
8965
9707
 
8966
- #receipt-wrap .r-list li.r-which:after {
8967
- display: block;
8968
- content: "";
9708
+ #invite .type4 .right-ani .content {
9709
+ font-size: 0.4rem;
9710
+ letter-spacing: 0.13333rem;
8969
9711
  position: absolute;
9712
+ writing-mode: vertical-lr;
9713
+ text-orientation: upright;
9714
+ right: 3.36rem;
8970
9715
  top: 50%;
8971
- left: 50%;
8972
- margin-top: 0px; /* -0.08rem ≈ -3px */
8973
- margin-left: 25px; /* 0.53333rem ≈ 20px */
8974
- width: 0;
8975
- height: 0;
8976
- border-top: 6px solid #bfbfbf; /* 0.16rem ≈ 6px */
8977
- border-left: 4px solid transparent; /* 0.10667rem ≈ 4px */
8978
- border-right: 4px solid transparent;
9716
+ white-space: nowrap;
9717
+ transform: translateY(-50%);
8979
9718
  }
8980
- #receipt-wrap .r-list li {
9719
+
9720
+ #invite .type4 .img4 {
8981
9721
  width: 100%;
8982
- height: 40px;
8983
- line-height: 40px;
8984
- border-bottom: 1px solid #ffffff; /* 0.02667rem ≈ 1px */
9722
+ height: 3.73333rem;
9723
+ top: 50%;
9724
+ left: 0;
9725
+ margin-top: -1.86667rem;
9726
+ position: absolute;
9727
+ transform-origin: 30% center;
9728
+ animation: invite-breathing 2s linear infinite;
8985
9729
  }
8986
9730
 
8987
- #receipt-wrap .r-list li .r-input {
8988
- display: block;
8989
- width: 100%;
8990
- height: 40px;
8991
- border-bottom: 1px solid #c8c8c8; /* 0.02667rem ≈ 1px */
8992
- font-size: 14px; /* 0.37333rem ≈ 14px */
8993
- color: #bfbfbf;
8994
- text-align: center;
8995
- border-radius: 0;
8996
- -webkit-appearance: none;
8997
- -webkit-tap-highlight-color: transparent;
8998
- background: transparent;
8999
- outline: none;
9000
- border: none;
9731
+ #invite .type4.active {
9732
+ animation: invite-vanish 1s linear 1.4s;
9733
+ animation-fill-mode: both;
9001
9734
  }
9002
9735
 
9003
- #receipt-wrap .r-list li .r-input:disabled {
9004
- color: #bfbfbf;
9005
- -webkit-appearance: none;
9006
- opacity: 1;
9736
+ #invite .type4.active .img2 {
9737
+ animation: invite-leftOpen 1.2s linear 0.6s;
9738
+ animation-fill-mode: both;
9007
9739
  }
9008
9740
 
9009
- #receipt-wrap .r-list li .r-input:disabled::-webkit-input-placeholder {
9010
- color: #bfbfbf;
9741
+ #invite .type4.active .right-ani {
9742
+ animation: invite-rightOpen 1.2s linear 0.5s;
9743
+ animation-fill-mode: both;
9011
9744
  }
9012
9745
 
9013
- #receipt-wrap .r-list li .r-input::-webkit-input-placeholder {
9014
- color: #bfbfbf;
9015
- opacity: 1;
9746
+ #invite .type4.active .img4 {
9747
+ animation: invite-vanish 0.5s linear;
9748
+ animation-fill-mode: both;
9749
+ }
9750
+
9751
+ /* ---------- type5 ---------- */
9752
+ #invite .type5 {
9753
+ width: 100%;
9754
+ height: 100%;
9755
+ position: relative;
9756
+ }
9757
+
9758
+ #invite .type5 .img1 {
9759
+ width: 100%;
9760
+ height: 100%;
9761
+ position: absolute;
9762
+ top: 0;
9763
+ left: 0;
9764
+ object-fit: cover;
9016
9765
  }
9017
9766
 
9018
- #receipt-wrap .r-list li .r-btn {
9767
+ #invite .type5 .content-center {
9768
+ position: absolute;
9769
+ left: 50%;
9770
+ top: 4.08rem;
9771
+ transform: translateX(-50%);
9772
+ width: 8.98667rem;
9773
+ height: 6.02667rem;
9774
+ }
9775
+
9776
+ #invite .type5 .content-center .img2 {
9777
+ position: absolute;
9019
9778
  width: 100%;
9020
- height: 30px; /* 0.8rem ≈ 30px */
9021
- line-height: 30px;
9022
- color: #fff;
9023
- background-color: #ff4562;
9024
- border-radius: 20px; /* 0.53333rem ≈ 20px */
9025
- outline: 0;
9026
- font-size: 14px;
9027
- border: none;
9028
- cursor: pointer;
9779
+ height: 100%;
9780
+ left: 0;
9781
+ top: 0;
9029
9782
  }
9030
9783
 
9031
- /* 提示信息样式 */
9032
- #receipt-wrap .tip-cover {
9033
- position: fixed;
9784
+ #invite .type5 .content-center .top-ani {
9785
+ width: 8.98667rem;
9786
+ height: 4.61333rem;
9787
+ position: absolute;
9034
9788
  left: 0;
9035
9789
  top: 0;
9790
+ transform-origin: top center;
9791
+ transform-style: preserve-3d;
9792
+ }
9793
+
9794
+ #invite .type5 .content-center .top-ani .img3,
9795
+ #invite .type5 .content-center .top-ani .img4 {
9036
9796
  width: 100%;
9037
9797
  height: 100%;
9038
- display: flex;
9039
- align-items: center;
9040
- justify-content: center;
9041
- z-index: 999;
9042
- background-color: rgba(0,0,0,.7);
9798
+ position: absolute;
9799
+ left: 0;
9800
+ top: 0;
9043
9801
  }
9044
9802
 
9045
- #receipt-wrap .tip-cover .tip {
9046
- width: 80%;
9047
- max-width: 250px; /* 6.66667rem ≈ 250px */
9048
- padding: 10px;
9049
- border-radius: 5px; /* 0.13333rem ≈ 5px */
9050
- background-color: #fff;
9803
+ #invite .type5 .content-center .top-ani .img4 {
9804
+ backface-visibility: hidden;
9051
9805
  }
9052
9806
 
9053
- #receipt-wrap .tip-cover .tip-btn {
9054
- display: block;
9055
- margin: 25px auto; /* 0.66667rem ≈ 25px */
9056
- width: 120px; /* 3.2rem ≈ 120px */
9057
- height: 30px;
9058
- color: #fff;
9059
- border-radius: 4px; /* 0.10667rem ≈ 4px */
9060
- text-align: center;
9061
- font-size: 14px;
9062
- line-height: 30px;
9063
- background: #ed5566;
9064
- border: none;
9065
- cursor: pointer;
9807
+ #invite .type5 .content-center .top-ani .title {
9808
+ position: absolute;
9809
+ left: 0.53333rem;
9810
+ top: 0.4rem;
9811
+ backface-visibility: hidden;
9066
9812
  }
9067
9813
 
9068
- #receipt-wrap .tip-cover .tip-content {
9069
- font-size: 14px;
9070
- padding-top: 30px; /* 0.8rem ≈ 30px */
9071
- text-align: center;
9814
+ #invite .type5 .content-center .top-ani .content {
9815
+ position: absolute;
9816
+ left: 50%;
9817
+ transform: translateX(-50%);
9818
+ top: 1.86667rem;
9819
+ white-space: nowrap;
9820
+ font-size: 0.32rem;
9821
+ backface-visibility: hidden;
9072
9822
  }
9073
9823
 
9074
- /* 选择器样式 */
9075
- .which-select {
9076
- top: 0;
9077
- z-index: 110;
9078
- height: 100%;
9079
- background-color: rgba(0,0,0,.5);
9824
+ #invite .type5 .content-center .img5 {
9825
+ position: absolute;
9826
+ left: 50%;
9827
+ margin-left: -0.98667rem;
9828
+ top: 3.2rem;
9829
+ width: 1.97333rem;
9830
+ height: 1.97333rem;
9831
+ animation: invite-breathing 2s linear infinite;
9080
9832
  }
9081
9833
 
9082
- .which-select,
9083
- .which-select ul {
9084
- position: absolute;
9085
- left: 0;
9086
- width: 100%;
9834
+ #invite .type5.active {
9835
+ animation: invite-vanish 1s linear 1.8s;
9836
+ animation-fill-mode: both;
9087
9837
  }
9088
9838
 
9089
- .which-select ul {
9090
- bottom: 0;
9091
- transition: transform 0.3s ease-out;
9092
- margin: 0;
9093
- padding: 0;
9094
- list-style: none;
9839
+ #invite .type5.active .content-center {
9840
+ animation: invite-bottomMove 0.5s linear;
9841
+ animation-fill-mode: both;
9095
9842
  }
9096
9843
 
9097
- .which-select ul.hide {
9098
- transform: translateY(100%);
9844
+ #invite .type5.active .content-center .top-ani {
9845
+ animation: invite-topOpen 1.2s linear 0.6s;
9846
+ animation-fill-mode: both;
9099
9847
  }
9100
9848
 
9101
- .which-select ul li {
9849
+ #invite .type5.active .img5 {
9850
+ animation: invite-vanish 0.5s linear;
9851
+ animation-fill-mode: both;
9852
+ }
9853
+
9854
+ /* ---------- type6 ---------- */
9855
+ #invite .type6 {
9102
9856
  width: 100%;
9103
- height: 45px; /* 1.2rem ≈ 45px */
9104
- line-height: 45px;
9105
- background-color: #f0f0f0;
9106
- border-bottom: 1px solid #e0e0e0;
9107
- text-align: center;
9108
- cursor: pointer;
9857
+ height: 100%;
9858
+ position: relative;
9109
9859
  }
9110
9860
 
9111
- .which-select ul li:last-child {
9112
- line-height: 40px;
9113
- height: auto;
9114
- padding-bottom: 15px;
9861
+ #invite .type6 .img1 {
9862
+ position: absolute;
9863
+ width: 100%;
9864
+ bottom: 0;
9865
+ left: 0;
9115
9866
  }
9116
9867
 
9117
- /* 视频播放器样式 */
9118
- .global-v {
9119
- position: fixed;
9868
+ #invite .type6 .top-ani {
9869
+ width: 100%;
9870
+ position: absolute;
9120
9871
  top: 0;
9121
9872
  left: 0;
9873
+ }
9874
+
9875
+ #invite .type6 .top-ani .img2 {
9122
9876
  width: 100%;
9123
- height: 100%;
9124
- background: rgba(0,0,0,.7);
9125
- z-index: 101;
9126
- transition: all 0.3s;
9127
9877
  }
9128
9878
 
9129
- .global-v.gv-show {
9130
- transform: translateX(-100%);
9879
+ #invite .type6 .top-ani .title {
9880
+ top: 2.66667rem;
9881
+ font-size: 1.41333rem;
9882
+ writing-mode: vertical-lr;
9883
+ text-orientation: upright;
9884
+ letter-spacing: 0.34667rem;
9131
9885
  }
9132
9886
 
9133
- .global-v #close-gvideo {
9887
+ #invite .type6 .top-ani .content,
9888
+ #invite .type6 .top-ani .title {
9134
9889
  position: absolute;
9135
- left: 13px; /* 0.34667rem ≈ 13px */
9136
- top: 13px;
9137
- z-index: 10;
9138
- color: #fff;
9139
- cursor: pointer;
9890
+ left: 50%;
9891
+ font-weight: 700;
9892
+ transform: translateX(-50%);
9140
9893
  }
9141
9894
 
9142
- .global-v #close-gvideo .icon-buoumaotubiao20 {
9143
- font-size: 22px; /* 0.58667rem ≈ 22px */
9144
- font-weight: 700;
9895
+ #invite .type6 .top-ani .content {
9896
+ top: 7.14667rem;
9897
+ font-size: 0.48rem;
9898
+ white-space: nowrap;
9145
9899
  }
9146
9900
 
9147
- .global-v .global-v-show {
9148
- position: relative;
9149
- z-index: 1;
9150
- width: 100%;
9151
- height: 100%;
9901
+ #invite .type6 .top-ani .name {
9902
+ position: absolute;
9903
+ top: 10.29333rem;
9904
+ left: 50%;
9905
+ font-size: 0.53333rem;
9906
+ transform: translateX(-50%);
9152
9907
  }
9153
9908
 
9154
- .global-v ::v-deep .global-v-show iframe {
9909
+ #invite .type6 .img3 {
9155
9910
  position: absolute;
9156
- left: 0;
9157
- top: 50%;
9158
- transform: translateY(-60%);
9159
- min-height: 45%;
9160
- max-height: 100%;
9161
- width: 100%;
9911
+ width: 4.26667rem;
9912
+ top: 11.2rem;
9913
+ left: 50%;
9914
+ margin-left: -2.13333rem;
9915
+ z-index: 3;
9916
+ animation: invite-breathing 2s linear infinite;
9162
9917
  }
9163
9918
 
9164
- /* 缩放动画 */
9165
- .scale-enter-active,
9166
- .scale-leave-active {
9167
- transition: 0.2s;
9168
- transform-origin: center center;
9919
+ #invite .type6.active {
9920
+ animation: invite-vanish 1s linear 1.5s;
9921
+ animation-fill-mode: both;
9169
9922
  }
9170
9923
 
9171
- .scale-enter,
9172
- .scale-leave-to {
9173
- opacity: 0;
9174
- transform: scale(1.1);
9924
+ #invite .type6.active .img1 {
9925
+ animation: invite-downMove 1s linear 0.3s;
9926
+ animation-fill-mode: both;
9175
9927
  }
9176
9928
 
9177
- .scale-enter-to,
9178
- .scale-leave {
9179
- opacity: 1;
9180
- transform: scale(1);
9929
+ #invite .type6.active .top-ani {
9930
+ animation: invite-upMove 1s linear 0.3s;
9931
+ animation-fill-mode: both;
9181
9932
  }
9182
- /* 新增 toast 样式 */
9183
- .mint-toast {
9184
- position: fixed;
9185
- top: 50%;
9186
- left: 50%;
9187
- transform: translate(-50%, -50%);
9188
- display: flex;
9189
- flex-direction: column;
9190
- align-items: center;
9191
- justify-content: center;
9192
- min-width: 90px; /* 2.4rem ≈ 90px */
9193
- max-width: 180px; /* 4.8rem ≈ 180px */
9194
- height: 90px;
9195
- padding: 8px !important; /* 0.21333rem ≈ 8px */
9196
- background-color: rgba(0, 0, 0, 0.7);
9197
- border-radius: 8px;
9198
- z-index: 2000;
9199
- color: #fff;
9933
+
9934
+ #invite .type6.active .img3 {
9935
+ animation: invite-vanish 0.5s linear;
9936
+ animation-fill-mode: both;
9200
9937
  }
9201
9938
 
9202
- .mint-toast-text {
9203
- font-size: 12px; /* 0.32rem ≈ 12px */
9204
- padding-top: 0 !important;
9939
+ /* ---------- animations ---------- */
9940
+ @keyframes invite-breathing {
9941
+ 50% {
9942
+ transform: scale3d(1.2, 1.2, 1.2);
9943
+ }
9205
9944
  }
9206
9945
 
9207
- /* 新增图标样式 */
9208
- .icon-duihao:before {
9209
- content: "\E637";
9946
+ @keyframes invite-vanish {
9947
+ to {
9948
+ opacity: 0;
9949
+ transform: scale3d(1.2, 1.2, 1.2);
9950
+ }
9210
9951
  }
9211
9952
 
9212
- .icon-cuowu2:before {
9213
- content: "\E65E";
9214
- color: #F44336; /* 失败的红色 */
9953
+ @keyframes invite-topOpen {
9954
+ to {
9955
+ transform: perspective(13.33333rem) rotateX(180deg);
9956
+ animation-timing-function: ease-out;
9957
+ }
9215
9958
  }
9216
9959
 
9217
- .global.video {
9218
- width: 35px;
9219
- height: 55px;
9220
- border-radius: 50%;
9221
- text-align: center;
9222
- margin-bottom: 5px;
9223
- border: 2px solid #fff;
9224
- cursor: pointer;
9960
+ @keyframes invite-bottomOpen {
9961
+ to {
9962
+ transform: perspective(13.33333rem) rotateX(-180deg);
9963
+ animation-timing-function: ease-out;
9964
+ }
9225
9965
  }
9226
- .icon-shipin2:before { content: "\E611"; }
9227
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9228
- .global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
9966
+
9967
+ @keyframes invite-leftOpen {
9968
+ to {
9969
+ transform: perspective(13.33333rem) rotateY(-180deg);
9970
+ animation-timing-function: ease-out;
9971
+ }
9229
9972
  }
9230
9973
 
9231
- .global.map {
9232
- width: 35px;
9233
- height: 55px;
9234
- border-radius: 50%;
9235
- text-align: center;
9236
- margin-bottom: 5px;
9237
- border: 2px solid #fff;
9238
- cursor: pointer;
9974
+ @keyframes invite-rightOpen {
9975
+ to {
9976
+ transform: perspective(13.33333rem) rotateY(180deg);
9977
+ animation-timing-function: ease-out;
9978
+ }
9239
9979
  }
9240
- .icon-daohang1:before { content: "\E612"; }
9241
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9242
- .global.map > span { font-size: 10px; line-height: 20px; display: block;}
9243
- .global.tel {
9244
- width: 35px;
9245
- height: 55px;
9246
- border-radius: 50%;
9247
- text-align: center;
9248
- margin-bottom: 15px;
9249
- border: 2px solid #fff;
9250
- cursor: pointer;
9980
+
9981
+ @keyframes invite-bottomMove {
9982
+ to {
9983
+ top: 4.61333rem;
9984
+ }
9251
9985
  }
9252
- .icon-dianhua:before { content: "\E60E"; }
9253
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9254
- .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
9255
- .global.receipt {
9256
- width: 35px;
9257
- height: 55px;
9258
- border-radius: 50%;
9259
- text-align: center;
9260
- margin-bottom: 5px;
9261
- border: 2px solid #fff;
9262
- cursor: pointer;
9986
+
9987
+ @keyframes invite-upMove {
9988
+ to {
9989
+ transform: translateY(-100%);
9990
+ animation-timing-function: ease-out;
9991
+ }
9992
+ }
9993
+
9994
+ @keyframes invite-downMove {
9995
+ to {
9996
+ transform: translateY(100%);
9997
+ animation-timing-function: ease-out;
9998
+ }
9263
9999
  }
9264
- .icon-liuyan:before { content: "\E636"; }
9265
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
9266
- .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }