unika-components 1.1.114 → 1.1.115

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.
@@ -8,7 +8,74 @@
8
8
  max-height: 100%;
9
9
  width: 100%;
10
10
  }
11
- .ele-img {
11
+
12
+ .ele-text {
13
+ position: relative;
14
+ }
15
+
16
+ .ele-text .ani-wrap {
17
+ width: 100%;
18
+ height: 100%;
19
+ }
20
+
21
+ .text-common {
22
+ padding: 5px;
23
+ text-orientation: upright;
24
+ white-space: pre-wrap;
25
+ }
26
+
27
+ /* 文本动画类 */
28
+ .text-fadeIn {
29
+ animation: fadeIn 1s ease-in-out;
30
+ }
31
+
32
+ .text-slideIn {
33
+ animation: slideIn 1s ease-in-out;
34
+ }
35
+
36
+ .text-bounceIn {
37
+ animation: bounceIn 1s ease-in-out;
38
+ }
39
+
40
+ /* 基础动画关键帧 */
41
+ @keyframes fadeIn {
42
+ from {
43
+ opacity: 0;
44
+ }
45
+ to {
46
+ opacity: 1;
47
+ }
48
+ }
49
+
50
+ @keyframes slideIn {
51
+ from {
52
+ transform: translateY(20px);
53
+ opacity: 0;
54
+ }
55
+ to {
56
+ transform: translateY(0);
57
+ opacity: 1;
58
+ }
59
+ }
60
+
61
+ @keyframes bounceIn {
62
+ 0% {
63
+ transform: scale(0.3);
64
+ opacity: 0;
65
+ }
66
+ 50% {
67
+ transform: scale(1.05);
68
+ opacity: 0.8;
69
+ }
70
+ 70% {
71
+ transform: scale(0.9);
72
+ opacity: 0.9;
73
+ }
74
+ 100% {
75
+ transform: scale(1);
76
+ opacity: 1;
77
+ }
78
+ }.ele-img {
12
79
  position: absolute;
13
80
  overflow: hidden;
14
81
  }
@@ -399,6 +466,69 @@
399
466
  }
400
467
  .icon-xingzhuangjiehe:before {
401
468
  content: "\E6A6";
469
+ }.ele-shape {
470
+ position: absolute;
471
+ overflow: hidden;
472
+ }
473
+
474
+ .ani-wrap {
475
+ width: 100%;
476
+ height: 100%;
477
+ box-sizing: border-box;
478
+ }
479
+
480
+ .e-shape {
481
+ width: 100%;
482
+ height: 100%;
483
+ }
484
+
485
+ .svg-container :deep(svg) {
486
+ width: 100%;
487
+ height: 100%;
488
+ display: block;
489
+ }
490
+
491
+ .svg-loading,
492
+ .svg-error {
493
+ display: flex;
494
+ align-items: center;
495
+ justify-content: center;
496
+ width: 100%;
497
+ height: 100%;
498
+ background: rgba(0,0,0,0.05);
499
+ }.call {
500
+ position: absolute;
501
+ cursor: pointer;
502
+ user-select: none;
503
+ }
504
+
505
+ .call .ani-wrap {
506
+ display: flex;
507
+ justify-content: center;
508
+ align-items: center;
509
+ width: 100%;
510
+ height: 100%;
511
+ overflow: hidden;
512
+ transition: opacity 0.2s;
513
+ }
514
+
515
+ .call .ani-wrap:hover {
516
+ opacity: 0.9;
517
+ }
518
+
519
+ .call-content {
520
+ display: flex;
521
+ align-items: center;
522
+ justify-content: center;
523
+ }
524
+
525
+ .btn-text {
526
+ margin-left: 10px;
527
+ }
528
+
529
+
530
+ .hb-tel:before {
531
+ content: "\E642";
402
532
  }#audio {
403
533
  position: absolute;
404
534
  right: 10px;
@@ -469,7 +599,106 @@
469
599
  width: 100%;
470
600
  height: 2px;
471
601
  background: #fff;
472
- }.count-down .drag-point {
602
+ }.ele-effect {
603
+ will-change: transform;
604
+ }
605
+
606
+ .ele-effect .effect-wrap {
607
+ position: relative;
608
+ width: 100%;
609
+ height: 100%;
610
+ }
611
+
612
+ .particle {
613
+ position: absolute;
614
+ background-repeat: no-repeat;
615
+ background-size: contain;
616
+ animation-name: falling;
617
+ animation-timing-function: linear;
618
+ animation-iteration-count: infinite;
619
+ will-change: transform;
620
+ }
621
+
622
+ @keyframes falling {
623
+ 0% {
624
+ transform: translateY(0) rotate(0deg);
625
+ opacity: 1;
626
+ }
627
+ 80% {
628
+ opacity: 0.8;
629
+ }
630
+ 100% {
631
+ transform: translateY(100vh) rotate(360deg);
632
+ opacity: 0;
633
+ }
634
+ }
635
+ .ele-lottie .ele-lotwrap {
636
+ overflow: hidden
637
+ }
638
+
639
+ .ele-effect .effect-wrap {
640
+ position: relative;
641
+ overflow: hidden;
642
+ width: 100%;
643
+ height: 100%
644
+ }
645
+
646
+ .ele-effect .e-small {
647
+ position: absolute;
648
+ width: 24px;
649
+ height: 24px;
650
+ background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
651
+ background-size: cover;
652
+ background-repeat: no-repeat;
653
+ -webkit-transform-origin: center;
654
+ transform-origin: center;
655
+ -webkit-animation: snow 5s linear infinite;
656
+ animation: snow 5s linear infinite
657
+ }.element-ditu .ani-wrap {
658
+ width: 100%;
659
+ height: 100%;
660
+ overflow: hidden
661
+ }
662
+
663
+ .element-ditu .map {
664
+ width: 100%;
665
+ height: 100%
666
+ }
667
+
668
+ .element-ditu .map .el-button {
669
+ width: 100%;
670
+ height: 100%;
671
+ display: -webkit-box;
672
+ display: -ms-flexbox;
673
+ display: flex;
674
+ -webkit-box-align: center;
675
+ -ms-flex-align: center;
676
+ align-items: center;
677
+ padding: 0;
678
+ -webkit-box-pack: center;
679
+ -ms-flex-pack: center;
680
+ justify-content: center;
681
+ background: inherit;
682
+ color: inherit;
683
+ border: none
684
+ }
685
+
686
+ .element-ditu .center-map {
687
+ width: 100%;
688
+ height: 100%;
689
+ background: #fff
690
+ }
691
+
692
+ .element-ditu .mask-map {
693
+ position: absolute;
694
+ width: 100%;
695
+ height: 100%;
696
+ top: 0
697
+ }
698
+ .map-iframe {
699
+ width: 100%;
700
+ height: 100%;
701
+ }.count-down .drag-point {
473
702
  cursor: default!important
474
703
  }
475
704
 
@@ -631,243 +860,11 @@
631
860
  align-items: center;
632
861
  white-space: nowrap
633
862
  }
634
- .ele-effect {
635
- will-change: transform;
636
- }
637
-
638
- .ele-effect .effect-wrap {
639
- position: relative;
640
- width: 100%;
641
- height: 100%;
642
- }
643
-
644
- .particle {
645
- position: absolute;
646
- background-repeat: no-repeat;
647
- background-size: contain;
648
- animation-name: falling;
649
- animation-timing-function: linear;
650
- animation-iteration-count: infinite;
651
- will-change: transform;
652
- }
653
863
 
654
- @keyframes falling {
655
- 0% {
656
- transform: translateY(0) rotate(0deg);
657
- opacity: 1;
658
- }
659
- 80% {
660
- opacity: 0.8;
661
- }
662
- 100% {
663
- transform: translateY(100vh) rotate(360deg);
664
- opacity: 0;
665
- }
666
- }
667
- .ele-lottie .ele-lotwrap {
668
- overflow: hidden
669
- }
670
-
671
- .ele-effect .effect-wrap {
672
- position: relative;
673
- overflow: hidden;
674
- width: 100%;
675
- height: 100%
676
- }
677
-
678
- .ele-effect .e-small {
679
- position: absolute;
680
- width: 24px;
681
- height: 24px;
682
- background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
683
- background-size: cover;
684
- background-repeat: no-repeat;
685
- -webkit-transform-origin: center;
686
- transform-origin: center;
687
- -webkit-animation: snow 5s linear infinite;
688
- animation: snow 5s linear infinite
689
- }
690
- .ele-text {
691
- position: relative;
692
- }
693
-
694
- .ele-text .ani-wrap {
695
- width: 100%;
696
- height: 100%;
697
- }
698
-
699
- .text-common {
700
- padding: 5px;
701
- text-orientation: upright;
702
- white-space: pre-wrap;
703
- }
704
-
705
- /* 文本动画类 */
706
- .text-fadeIn {
707
- animation: fadeIn 1s ease-in-out;
708
- }
709
-
710
- .text-slideIn {
711
- animation: slideIn 1s ease-in-out;
712
- }
713
-
714
- .text-bounceIn {
715
- animation: bounceIn 1s ease-in-out;
716
- }
717
-
718
- /* 基础动画关键帧 */
719
- @keyframes fadeIn {
720
- from {
721
- opacity: 0;
722
- }
723
- to {
724
- opacity: 1;
725
- }
726
- }
727
-
728
- @keyframes slideIn {
729
- from {
730
- transform: translateY(20px);
731
- opacity: 0;
732
- }
733
- to {
734
- transform: translateY(0);
735
- opacity: 1;
736
- }
737
- }
738
-
739
- @keyframes bounceIn {
740
- 0% {
741
- transform: scale(0.3);
742
- opacity: 0;
743
- }
744
- 50% {
745
- transform: scale(1.05);
746
- opacity: 0.8;
747
- }
748
- 70% {
749
- transform: scale(0.9);
750
- opacity: 0.9;
751
- }
752
- 100% {
753
- transform: scale(1);
754
- opacity: 1;
755
- }
756
- }.call {
757
- position: absolute;
758
- cursor: pointer;
759
- user-select: none;
760
- }
761
-
762
- .call .ani-wrap {
763
- display: flex;
764
- justify-content: center;
765
- align-items: center;
766
- width: 100%;
767
- height: 100%;
768
- overflow: hidden;
769
- transition: opacity 0.2s;
770
- }
771
-
772
- .call .ani-wrap:hover {
773
- opacity: 0.9;
774
- }
775
-
776
- .call-content {
777
- display: flex;
778
- align-items: center;
779
- justify-content: center;
780
- }
781
-
782
- .btn-text {
783
- margin-left: 10px;
784
- }
785
-
786
-
787
- .hb-tel:before {
788
- content: "\E642";
789
- }.ele-shape {
790
- position: absolute;
791
- overflow: hidden;
792
- }
793
-
794
- .ani-wrap {
795
- width: 100%;
796
- height: 100%;
797
- box-sizing: border-box;
798
- }
799
-
800
- .e-shape {
801
- width: 100%;
802
- height: 100%;
803
- }
804
-
805
- .svg-container :deep(svg) {
806
- width: 100%;
807
- height: 100%;
808
- display: block;
809
- }
810
-
811
- .svg-loading,
812
- .svg-error {
813
- display: flex;
814
- align-items: center;
815
- justify-content: center;
816
- width: 100%;
817
- height: 100%;
818
- background: rgba(0,0,0,0.05);
819
- }
820
- .ele-lottie .ele-lotwrap {
821
- overflow: hidden;
822
- }.element-ditu .ani-wrap {
823
- width: 100%;
824
- height: 100%;
825
- overflow: hidden
826
- }
827
-
828
- .element-ditu .map {
829
- width: 100%;
830
- height: 100%
831
- }
832
-
833
- .element-ditu .map .el-button {
834
- width: 100%;
835
- height: 100%;
836
- display: -webkit-box;
837
- display: -ms-flexbox;
838
- display: flex;
839
- -webkit-box-align: center;
840
- -ms-flex-align: center;
841
- align-items: center;
842
- padding: 0;
843
- -webkit-box-pack: center;
844
- -ms-flex-pack: center;
845
- justify-content: center;
846
- background: inherit;
847
- color: inherit;
848
- border: none
849
- }
850
-
851
- .element-ditu .center-map {
852
- width: 100%;
853
- height: 100%;
854
- background: #fff
855
- }
856
-
857
- .element-ditu .mask-map {
858
- position: absolute;
859
- width: 100%;
860
- height: 100%;
861
- top: 0
862
- }
863
- .map-iframe {
864
- width: 100%;
865
- height: 100%;
866
- }
867
- .element-video {
868
- position: absolute;
869
- overflow: hidden;
870
- background-color: transparent;
864
+ .element-video {
865
+ position: absolute;
866
+ overflow: hidden;
867
+ background-color: transparent;
871
868
  }
872
869
 
873
870
  .element-video .ani-wrap, .element-video img {
@@ -986,938 +983,38 @@
986
983
  font-size: 14px;
987
984
  line-height: 20px;
988
985
  background: #ed5566;
989
- } /* Iconfont definition */
990
- .icon-danmuliebiao1:before {
991
- content: "\E68A";
992
- }
993
-
994
- .icon-cuowu2:before {
995
- content: "\E65E";
996
- }
997
-
998
- i {
999
- font-style: normal;
1000
- }
986
+ } .button {
987
+ position: absolute;
988
+ cursor: pointer;
989
+ user-select: none;
990
+ }
1001
991
 
1002
- .v-modal {
1003
- position: fixed;
1004
- left: 0;
1005
- top: 0;
1006
- width: 100%;
1007
- height: 100%;
1008
- opacity: .5;
1009
- background: #000;
1010
- }
1011
- /* 底部工具栏样式 */
1012
- #toolbarNew {
1013
- position: fixed;
1014
- left: 0;
1015
- bottom: 0;
1016
- width: 100%;
1017
- padding: 12px 0;
1018
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
1019
- z-index: 100;
1020
- }
992
+ .button .ani-wrap {
993
+ display: flex;
994
+ justify-content: center;
995
+ align-items: center;
996
+ width: 100%;
997
+ height: 100%;
998
+ overflow: hidden;
999
+ transition: opacity 0.2s;
1000
+ }
1021
1001
 
1022
- .toolbar {
1023
- display: flex;
1024
- align-items: center;
1025
- padding: 0 10px;
1026
- }
1027
-
1028
- .bar-left {
1029
- position: relative;
1030
- flex: 1;
1031
- }
1032
-
1033
- .bar-mess {
1034
- width: 100%;
1035
- height: 36px;
1036
- line-height: 36px;
1037
- font-size: 14px;
1038
- color: #ccc;
1039
- padding: 0 8px;
1040
- border-radius: 18px;
1041
- border: none;
1042
- -webkit-appearance: none;
1043
- background-color: rgba(0, 0, 0, 0.28);
1044
- }
1045
-
1046
- .bar-mess::placeholder {
1047
- color: rgba(255, 255, 255, 0.7);
1048
- }
1049
-
1050
- .bar-left .iconfont {
1051
- position: absolute;
1052
- right: 10px;
1053
- top: 50%;
1054
- transform: translateY(-50%);
1055
- color: #f2f2f2;
1056
- font-size: 16px;
1057
- cursor: pointer;
1058
- z-index: 2;
1059
- padding: 5px;
1060
- }
1061
-
1062
- /* 关闭弹幕按钮样式 */
1063
- .toolbar-close {
1064
- position: absolute;
1065
- left: 10px;
1066
- transform: translateY(-50%);
1067
- display: flex;
1068
- align-items: center;
1069
- cursor: pointer;
1070
- z-index: 2;
1071
- }
1072
-
1073
- .toolbar-close img {
1074
- display: block;
1075
- width: 36px;
1076
- height: 36px;
1077
- cursor: pointer;
1078
- }
1079
-
1080
- /* 弹幕容器样式 */
1081
- .bullet-container {
1082
- position: fixed;
1083
- left: 10px;
1084
- right: 10px;
1085
- height: 120px;
1002
+ .button .ani-wrap:hover {
1003
+ opacity: 0.9;
1004
+ }
1005
+
1006
+ .button-content {
1007
+ display: flex;
1008
+ align-items: center;
1009
+ justify-content: center;
1010
+ }
1011
+
1012
+ .btn-text {
1013
+ margin-left: 10px;
1014
+ }
1015
+ .ele-lottie .ele-lotwrap {
1086
1016
  overflow: hidden;
1087
- z-index: 99;
1088
- pointer-events: none;
1089
- }
1090
-
1091
- .bullet-item {
1092
- position: absolute;
1093
- left: 0;
1094
- bottom: 0;
1095
- padding: 5px 10px;
1096
- border-radius: 15px;
1097
- font-size: 14px;
1098
- white-space: nowrap;
1099
- animation: bulletMove linear;
1100
- animation-fill-mode: forwards;
1101
- will-change: transform;
1102
- display: inline-block;
1103
- max-width: 90%;
1104
- }
1105
-
1106
- @keyframes bulletMove {
1107
- 0% {
1108
- transform: translateY(0);
1109
- opacity: 1;
1110
- }
1111
- 100% {
1112
- transform: translateY(calc(-1 * 150px));
1113
- opacity: 0;
1114
- }
1115
- }
1116
-
1117
- /* 弹幕输入弹窗样式 */
1118
- .popup-overlay {
1119
- position: fixed;
1120
- top: 0;
1121
- left: 0;
1122
- right: 0;
1123
- bottom: 0;
1124
- background: rgba(0, 0, 0, 0.5);
1125
- display: flex;
1126
- justify-content: center;
1127
- align-items: flex-end;
1128
- z-index: 200;
1129
- }
1130
-
1131
- #index .mint-popup {
1132
- background-color: transparent;
1133
- }
1134
-
1135
- .mint-popup {
1136
- position: fixed;
1137
- background: #fff;
1138
- top: 50%;
1139
- left: 50%;
1140
- transform: translate3d(-50%, -50%, 0);
1141
- -webkit-backface-visibility: hidden;
1142
- backface-visibility: hidden;
1143
- transition: .2s ease-out;
1144
- }
1145
-
1146
- .bar-messwin {
1147
- width: 309px;
1148
- height: 341px;
1149
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/mess-bg.png') no-repeat 50%;
1150
- background-size: 100% 100%;
1151
- position: relative;
1152
- display: flex;
1153
- flex-direction: column;
1154
- align-items: center;
1155
- margin-bottom: 20px;
1156
- }
1157
-
1158
- .bar-messwin .mess-logo {
1159
- width: 171px;
1160
- height: 110px;
1161
- margin-top: -64px;
1162
- margin-left: 11px;
1163
- }
1164
-
1165
- .bar-messwin .mess-title {
1166
- margin-top: 12px;
1167
- font-weight: 600;
1168
- font-size: 21px;
1169
- color: #333;
1170
- }
1171
-
1172
- .bar-messwin .mess-input {
1173
- width: 267px;
1174
- height: 43px;
1175
- background: #fff;
1176
- border-radius: 9px;
1177
- border: 1px solid rgba(237,85,102,0.4);
1178
- margin-top: 12px;
1179
- display: flex;
1180
- align-items: center;
1181
- justify-content: center;
1182
- padding: 0 13px;
1183
- }
1184
-
1185
- .bar-messwin .mess-input input {
1186
- width: 100%;
1187
- font-size: 17px;
1188
- font-family: PingFang SC;
1189
- font-weight: 400;
1190
- color: #333;
1191
- border: none;
1192
- outline: none;
1193
- background: transparent;
1194
- }
1195
-
1196
- .bar-messwin .mess-input input::-webkit-input-placeholder {
1197
- color: #999;
1198
- }
1199
-
1200
- .bar-messwin .mess-input input::-ms-input-placeholder {
1201
- color: #999;
1202
- }
1203
-
1204
- .bar-messwin .mess-input input::placeholder {
1205
- color: #999;
1206
- }
1207
-
1208
- .bar-messwin .mess-textarea {
1209
- width: 267px;
1210
- height: 85px;
1211
- background: #fff;
1212
- border-radius: 9px;
1213
- border: 1px solid rgba(237,85,102,0.4);
1214
- display: flex;
1215
- padding: 9px 13px;
1216
- justify-content: space-between;
1217
- margin-top: 12px;
1218
- position: relative;
1219
- }
1220
-
1221
- .bar-messwin .mess-textarea textarea {
1222
- width: 203px;
1223
- height: 68px;
1224
- font-size: 17px;
1225
- resize: none;
1226
- outline: none;
1227
- border: none;
1228
- background: transparent;
1229
- color: #333;
1230
- font-family: PingFang SC;
1231
- }
1232
-
1233
- .bar-messwin .mess-textarea textarea::-webkit-input-placeholder {
1234
- color: #999;
1235
- }
1236
-
1237
- .bar-messwin .mess-textarea textarea::-ms-input-placeholder {
1238
- color: #999;
1239
- }
1240
-
1241
- .bar-messwin .mess-textarea textarea::placeholder {
1242
- color: #999;
1243
- }
1244
-
1245
- .bar-messwin .mess-textarea img {
1246
- width: 26px;
1247
- height: 26px;
1248
- cursor: pointer;
1249
- }
1250
-
1251
- .bar-messwin .mess-textarea .wish-dropdown {
1252
- position: absolute;
1253
- top: 43px;
1254
- right: 0;
1255
- width: 267px;
1256
- background: #fff;
1257
- border-radius: 9px;
1258
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
1259
- z-index: 10;
1260
- max-height: 213px;
1261
- overflow-y: auto;
1262
- border: 1px solid rgba(237,85,102,0.2);
1263
- padding: 0 13px;
1264
- }
1265
-
1266
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar {
1267
- width: 3px;
1268
- background-color: transparent;
1269
- display: block;
1270
- }
1271
-
1272
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-thumb {
1273
- background-color: #ccc;
1274
- border-radius: 9px;
1275
- min-height: 32px;
1276
- }
1277
-
1278
- .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-track {
1279
- background-color: transparent;
1280
- border-radius: 3px;
1281
- margin: 4px 0;
1282
- }
1283
-
1284
- .bar-messwin .mess-textarea .wish-dropdown .wish-item {
1285
- padding: 11px 0;
1286
- display: flex;
1287
- align-items: flex-start;
1288
- cursor: pointer;
1289
- transition: background-color 0.2s;
1290
- border-bottom: 1px solid rgba(0,0,0,0.05);
1291
- }
1292
-
1293
- .bar-messwin .mess-textarea .wish-dropdown .wish-item:last-child {
1294
- border-bottom: none;
1295
- }
1296
-
1297
- .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-dot {
1298
- color: #ff4874;
1299
- margin-right: 5px;
1300
- font-size: 11px;
1301
- line-height: 21px;
1302
- }
1303
-
1304
- .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-text {
1305
- font-size: 15px;
1306
- color: #333;
1307
- line-height: 21px;
1308
- text-align: left;
1309
- }
1310
-
1311
- .bar-messwin .bar-m-sub {
1312
- width: 267px;
1313
- height: 43px;
1314
- background: linear-gradient(270deg,#ff4874,#ff9061);
1315
- border-radius: 68px;
1316
- font-size: 17px;
1317
- font-family: PingFang SC;
1318
- font-weight: 400;
1319
- color: #fff;
1320
- margin-top: 26px;
1321
- border: none;
1322
- outline: none;
1323
- cursor: pointer;
1324
- display: flex;
1325
- align-items: center;
1326
- justify-content: center;
1327
- }
1328
-
1329
- .bar-messwin .icon-cuowu2, .give-gift .icon-cuowu2 {
1330
- position: absolute;
1331
- bottom: -60px;
1332
- right: 50%;
1333
- transform: translateX(50%);
1334
- font-size: 28px;
1335
- color: #fff;
1336
- cursor: pointer;
1337
- }
1338
-
1339
- /* 提示弹窗样式 */
1340
- .mint-msgbox-wrapper {
1341
- position: fixed;
1342
- top: 0;
1343
- left: 0;
1344
- right: 0;
1345
- bottom: 0;
1346
- background-color: rgba(0,0,0,0.5);
1347
- z-index: 2005;
1348
- display: flex;
1349
- justify-content: center;
1350
- align-items: center;
1351
- }
1352
-
1353
- .mint-msgbox {
1354
- position: relative;
1355
- background-color: #fff;
1356
- width: 85%;
1357
- border-radius: 3px;
1358
- font-size: 17px;
1359
- overflow: hidden;
1360
- }
1361
-
1362
- .mint-msgbox-header {
1363
- padding: 16px 0 0;
1364
- }
1365
-
1366
- .mint-msgbox-content {
1367
- padding: 11px 21px 16px;
1368
- border-bottom: 1px solid #ddd;
1369
- min-height: 38px;
1370
- position: relative;
1371
- }
1372
-
1373
- .mint-msgbox-title {
1374
- text-align: center;
1375
- padding-left: 0;
1376
- margin-bottom: 0;
1377
- font-size: 17px;
1378
- font-weight: 700;
1379
- color: #333;
1380
- }
1381
-
1382
- .mint-msgbox-message {
1383
- color: #999;
1384
- margin: 0;
1385
- text-align: center;
1386
- line-height: 38px;
1387
- }
1388
-
1389
- .mint-msgbox-btns {
1390
- display: flex;
1391
- height: 43px;
1392
- line-height: 43px;
1393
- }
1394
-
1395
- .mint-msgbox-btn {
1396
- line-height: 37px;
1397
- display: block;
1398
- background-color: #fff;
1399
- flex: 1;
1400
- margin: 0;
1401
- border: 0;
1402
- }
1403
-
1404
- .mint-msgbox-confirm {
1405
- color: #26a2ff;
1406
- width: 100%;
1407
- }
1408
- /* 右侧按钮区域样式 */
1409
- #toolbarNew .toolbar .bar-right {
1410
- margin-left: 7px;
1411
- font-size: 0;
1412
- display: flex;
1413
- align-items: center;
1414
- }
1415
-
1416
- #toolbarNew .toolbar .bar-right.move-left {
1417
- right: 64px;
1418
- }
1419
-
1420
- #toolbarNew .toolbar .bar-right .bar-r-com,
1421
- #toolbarNew .toolbar .bar-right>img {
1422
- display: inline-block;
1423
- vertical-align: middle;
1424
- }
1425
-
1426
- #toolbarNew .toolbar .bar-right .bar-r-com {
1427
- margin-left: 8px;
1428
- cursor: pointer;
1429
- }
1430
-
1431
- #toolbarNew .toolbar .bar-right .bar-r-com.bar-r-gift {
1432
- width: 36px;
1433
- height: 36px;
1434
- transform-origin: center bottom;
1435
- animation: giftJump 3s ease infinite;
1436
- }
1437
-
1438
- @keyframes giftJump {
1439
- 0%, 24%, 48%, to {
1440
- transform: translateZ(0);
1441
- }
1442
- 12% {
1443
- transform: translate3d(0, -10px, 0);
1444
- }
1445
- 36% {
1446
- transform: translate3d(0, -10px, 0);
1447
- }
1448
- }
1449
-
1450
- #toolbarNew .toolbar .bar-right .bar-r-com:first-child {
1451
- margin-left: 0;
1452
- }
1453
-
1454
- #toolbarNew .toolbar .bar-right>img {
1455
- position: relative;
1456
- z-index: 1;
1457
- width: 26px;
1458
- height: 26px;
1459
- }
1460
-
1461
- #toolbarNew .toolbar .bar-right .bar-heart {
1462
- position: relative;
1463
- width: 36px;
1464
- height: 36px;
1465
- text-align: center;
1466
- }
1467
-
1468
- #toolbarNew .toolbar .bar-right .bar-heart .bar-praise {
1469
- position: absolute;
1470
- max-width: 36px;
1471
- height: 15px;
1472
- line-height: 15px;
1473
- right: 0;
1474
- top: 0;
1475
- z-index: 3;
1476
- font-size: 10px;
1477
- color: #fff;
1478
- border-radius: 6px;
1479
- padding: 0 4px;
1480
- box-sizing: border-box;
1481
- white-space: nowrap;
1482
- background-color: #f38200;
1483
- transform: translateX(40%);
1484
- }
1485
-
1486
- #toolbarNew .toolbar .bar-right .bar-zan {
1487
- position: relative;
1488
- z-index: 2;
1489
- height: 33px;
1490
- width: 33px;
1491
- box-sizing: border-box;
1492
- }
1493
-
1494
- #toolbarNew .toolbar .bar-right .bar-zan .ani-num {
1495
- position: absolute;
1496
- top: 0;
1497
- left: 10px;
1498
- opacity: 0;
1499
- font-size: 15px;
1500
- color: #f07a87;
1501
- }
1502
-
1503
- #toolbarNew .toolbar .bar-right .bar-zan .stop-longtap {
1504
- position: absolute;
1505
- left: 0;
1506
- right: 0;
1507
- bottom: 0;
1508
- top: 0;
1509
- z-index: 1;
1510
- }
1511
-
1512
- #toolbarNew .toolbar .bar-right .bar-zan img {
1513
- width: 36px;
1514
- height: 36px;
1515
- }
1516
-
1517
- #toolbarNew .toolbar .bar-right .bar-zan.active .ani-num {
1518
- z-index: 2;
1519
- animation: praise 1.2s;
1520
- animation-fill-mode: both;
1521
- }
1522
-
1523
- @keyframes praise {
1524
- 0% {
1525
- opacity: 1;
1526
- }
1527
- 50% {
1528
- opacity: 1;
1529
- transform: translate3d(0, -35px, 0);
1530
- }
1531
- to {
1532
- opacity: 0;
1533
- transform: translate3d(0, -35px, 0);
1534
- }
1535
- }
1536
-
1537
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap {
1538
- transform: scale(0.85);
1539
- }
1540
-
1541
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:first-of-type {
1542
- animation: jump .6s ease-out;
1543
- }
1544
-
1545
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(2) {
1546
- animation: jump2 .6s ease-out;
1547
- }
1548
-
1549
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(3) {
1550
- animation: jump3 .6s ease-out;
1551
- }
1552
-
1553
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(4) {
1554
- animation: jump4 .6s ease-out;
1555
- }
1556
-
1557
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(5) {
1558
- animation: jump5 .6s ease-out;
1559
- }
1560
-
1561
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(6) {
1562
- animation: jump6 .6s ease-out;
1563
- }
1564
-
1565
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(7) {
1566
- animation: jump7 .6s ease-out;
1567
- }
1568
-
1569
- #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(8) {
1570
- animation: jump8 .6s ease-out;
1571
- }
1572
-
1573
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap {
1574
- position: absolute;
1575
- left: 0;
1576
- top: 0;
1577
- right: 0;
1578
- bottom: 0;
1579
- pointer-events: none;
1580
- overflow: visible;
1581
- }
1582
-
1583
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span {
1584
- position: absolute;
1585
- width: 6px;
1586
- height: 6px;
1587
- border-radius: 50%;
1588
- opacity: 0;
1589
- }
1590
-
1591
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:first-of-type {
1592
- left: 50%;
1593
- top: -8px;
1594
- transform: translate3d(-50%, 0, 0);
1595
- background-color: #b3e5c8;
1596
- }
1597
-
1598
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(2) {
1599
- left: -8px;
1600
- top: 50%;
1601
- transform: translate3d(0, -50%, 0);
1602
- background-color: #f4ba31;
1603
- }
1604
-
1605
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(3) {
1606
- left: 50%;
1607
- bottom: -8px;
1608
- transform: translate3d(-50%, 0, 0);
1609
- background-color: #339fef;
1610
- }
1611
-
1612
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(4) {
1613
- top: 50%;
1614
- right: -8px;
1615
- transform: translate3d(0, -50%, 0);
1616
- background-color: #e2264d;
1617
- }
1618
-
1619
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(5) {
1620
- left: -5px;
1621
- top: 0;
1622
- transform: translate3d(0, -50%, 0);
1623
- background-color: #a08880;
1624
- }
1625
-
1626
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(6) {
1627
- left: -5px;
1628
- bottom: 0;
1629
- transform: translate3d(0, 50%, 0);
1630
- background-color: #43c1b5;
1631
- }
1632
-
1633
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(7) {
1634
- right: -5px;
1635
- bottom: 0;
1636
- transform: translate3d(0, 50%, 0);
1637
- background-color: #f5be3b;
1638
- }
1639
-
1640
- #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(8) {
1641
- right: -5px;
1642
- top: 0;
1643
- transform: translate3d(0, -50%, 0);
1644
- background-color: coral;
1645
- }
1646
-
1647
- @keyframes jump {
1648
- 0% {
1649
- opacity: 1;
1650
- transform: translate3d(-50%, 0, 0) scale(1);
1651
- }
1652
- 40% {
1653
- transform: translate3d(-50%, -100%, 0) scale(0.7);
1654
- }
1655
- to {
1656
- opacity: 1;
1657
- transform: translate3d(-50%, -150%, 0) scale(0);
1658
- }
1659
- }
1660
-
1661
- @keyframes jump2 {
1662
- 0% {
1663
- opacity: 1;
1664
- transform: translate3d(0, -50%, 0) scale(1);
1665
- }
1666
- 40% {
1667
- transform: translate3d(-100%, -50%, 0) scale(0.7);
1668
- }
1669
- to {
1670
- opacity: 1;
1671
- transform: translate3d(-150%, -50%, 0) scale(0);
1672
- }
1673
- }
1674
-
1675
- @keyframes jump3 {
1676
- 0% {
1677
- opacity: 1;
1678
- transform: translate3d(-50%, 0, 0) scale(1);
1679
- }
1680
- 40% {
1681
- transform: translate3d(-50%, 100%, 0) scale(0.7);
1682
- }
1683
- to {
1684
- opacity: 1;
1685
- transform: translate3d(-50%, 150%, 0) scale(0);
1686
- }
1687
- }
1688
-
1689
- @keyframes jump4 {
1690
- 0% {
1691
- opacity: 1;
1692
- transform: translate3d(0, -50%, 0) scale(1);
1693
- }
1694
- 40% {
1695
- transform: translate3d(100%, -50%, 0) scale(0.7);
1696
- }
1697
- to {
1698
- opacity: 1;
1699
- transform: translate3d(150%, -50%, 0) scale(0);
1700
- }
1701
- }
1702
-
1703
- @keyframes jump5 {
1704
- 0% {
1705
- opacity: 1;
1706
- transform: translate3d(0, -50%, 0) scale(1);
1707
- }
1708
- 40% {
1709
- transform: translate3d(-80%, -80%, 0) scale(0.7);
1710
- }
1711
- to {
1712
- opacity: 1;
1713
- transform: translate3d(-130%, -130%, 0) scale(0);
1714
- }
1715
- }
1716
-
1717
- @keyframes jump6 {
1718
- 0% {
1719
- opacity: 1;
1720
- transform: translate3d(0, 50%, 0) scale(1);
1721
- }
1722
- 40% {
1723
- transform: translate3d(-80%, 80%, 0) scale(0.7);
1724
- }
1725
- to {
1726
- opacity: 1;
1727
- transform: translate3d(-130%, 130%, 0) scale(0);
1728
- }
1729
- }
1730
-
1731
- @keyframes jump7 {
1732
- 0% {
1733
- opacity: 1;
1734
- transform: translate3d(0, 50%, 0) scale(1);
1735
- }
1736
- 40% {
1737
- transform: translate3d(80%, 80%, 0) scale(0.7);
1738
- }
1739
- to {
1740
- opacity: 1;
1741
- transform: translate3d(130%, 130%, 0) scale(0);
1742
- }
1743
- }
1744
-
1745
- @keyframes jump8 {
1746
- 0% {
1747
- opacity: 1;
1748
- transform: translate3d(0, 50%, 0) scale(1);
1749
- }
1750
- 40% {
1751
- transform: translate3d(80%, -80%, 0) scale(0.7);
1752
- }
1753
- to {
1754
- opacity: 1;
1755
- transform: translate3d(130%, -130%, 0) scale(0);
1756
- }
1757
- }
1758
-
1759
- /* 礼物弹窗样式 */
1760
- .give-gift {
1761
- position: fixed;
1762
- top: 50%;
1763
- left: 50%;
1764
- transform: translate(-50%, -50%);
1765
- z-index: 2004;
1766
- background: white;
1767
- padding: 20px;
1768
- border-radius: 10px;
1769
- text-align: center;
1770
- }
1771
-
1772
- .give-gift .back {
1773
- position: absolute;
1774
- top: 10px;
1775
- left: 10px;
1776
- cursor: pointer;
1777
- }
1778
-
1779
- .give-gift img {
1780
- max-width: 300px;
1781
- max-height: 300px;
1782
- margin-top: 20px;
1783
- }
1784
-
1785
- /* 留言成功弹窗样式 */
1786
- .mess-success-popup {
1787
- position: fixed;
1788
- top: 0;
1789
- left: 0;
1790
- right: 0;
1791
- bottom: 0;
1792
- background-color: rgba(0, 0, 0, 0.5);
1793
- z-index: 2003;
1794
- display: flex;
1795
- justify-content: center;
1796
- align-items: center;
1797
- }
1798
-
1799
- .mess-success-popup .gift-popup {
1800
- width: 300px;
1801
- height: 200px;
1802
- background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
1803
- border-radius: 10px;
1804
- padding: 20px;
1805
- text-align: center;
1806
- position: relative;
1807
- }
1808
-
1809
- .mess-success-popup .gift-popup .icon-cuowu2 {
1810
- position: absolute;
1811
- top: 10px;
1812
- right: 10px;
1813
- cursor: pointer;
1814
- }
1815
-
1816
- .mess-success-popup .gift-popup .toast {
1817
- display: flex;
1818
- align-items: center;
1819
- justify-content: center;
1820
- margin: 10px 0;
1821
- }
1822
-
1823
- .mess-success-popup .gift-popup .toast img {
1824
- width: 20px;
1825
- height: 15px;
1826
- margin: 0 5px;
1827
- }
1828
-
1829
- .mess-success-popup .gift-popup .title {
1830
- margin: 15px 0;
1831
- font-size: 16px;
1832
- color: #333;
1833
- }
1834
-
1835
- .mess-success-popup .gift-popup .btn {
1836
- background: linear-gradient(270deg, #ff4874, #ff9061);
1837
- color: white;
1838
- border: none;
1839
- padding: 10px 20px;
1840
- border-radius: 20px;
1841
- margin-top: 15px;
1842
- cursor: pointer;
1843
- }
1844
-
1845
- /* 新增图片加载动画样式 */
1846
- .gift-image-container {
1847
- position: relative;
1848
- width: 300px;
1849
- height: 300px;
1850
- margin: 20px 0;
1851
- overflow: hidden;
1852
- }
1853
-
1854
- .gift-image-container img {
1855
- width: 100%;
1856
- height: 100%;
1857
- object-fit: contain;
1858
- opacity: 0;
1859
- transition: opacity 0.5s ease-in-out;
1860
- }
1861
-
1862
- .gift-image-container img.loaded {
1863
- opacity: 1;
1864
- }
1865
-
1866
- .image-loading {
1867
- position: absolute;
1868
- top: 0;
1869
- left: 0;
1870
- width: 100%;
1871
- height: 100%;
1872
- display: flex;
1873
- justify-content: center;
1874
- align-items: center;
1875
- background: rgba(255, 255, 255, 0.8);
1876
- }
1877
-
1878
- .loading-spinner {
1879
- width: 40px;
1880
- height: 40px;
1881
- border: 4px solid #f3f3f3;
1882
- border-top: 4px solid #ed5566;
1883
- border-radius: 50%;
1884
- animation: spin 1s linear infinite;
1885
- }
1886
-
1887
- @keyframes spin {
1888
- 0% { transform: rotate(0deg); }
1889
- 100% { transform: rotate(360deg); }
1890
- }
1891
-
1892
- .button {
1893
- position: absolute;
1894
- cursor: pointer;
1895
- user-select: none;
1896
- }
1897
-
1898
- .button .ani-wrap {
1899
- display: flex;
1900
- justify-content: center;
1901
- align-items: center;
1902
- width: 100%;
1903
- height: 100%;
1904
- overflow: hidden;
1905
- transition: opacity 0.2s;
1906
- }
1907
-
1908
- .button .ani-wrap:hover {
1909
- opacity: 0.9;
1910
- }
1911
-
1912
- .button-content {
1913
- display: flex;
1914
- align-items: center;
1915
- justify-content: center;
1916
- }
1917
-
1918
- .btn-text {
1919
- margin-left: 10px;
1920
- }body, html {
1017
+ }body, html {
1921
1018
  width: 100%;
1922
1019
  height: 100%;
1923
1020
  }
@@ -3047,348 +2144,1347 @@ animation-timing-function: cubic-bezier(0,.44,.75,.99)
3047
2144
  transform: scaleX(1)
3048
2145
  }
3049
2146
  }
3050
-
3051
- .flyIn {
3052
- -webkit-animation-name: flyIn;
3053
- animation-name: flyIn
2147
+
2148
+ .flyIn {
2149
+ -webkit-animation-name: flyIn;
2150
+ animation-name: flyIn
2151
+ }
2152
+
2153
+ @-webkit-keyframes flyIn {
2154
+ 0%,20%,40%,60%,80%,to {
2155
+ -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
2156
+ transition-timing-function: cubic-bezier(.215,.61,.355,1)
2157
+ }
2158
+
2159
+ 0% {
2160
+ opacity: 0;
2161
+ -webkit-transform: scale3d(2,2,2);
2162
+ transform: scale3d(2,2,2)
2163
+ }
2164
+
2165
+ 40% {
2166
+ -webkit-transform: scale3d(.9,.9,.9);
2167
+ transform: scale3d(.9,.9,.9)
2168
+ }
2169
+
2170
+ 60% {
2171
+ -webkit-transform: scale3d(1.03,1.03,1.03);
2172
+ transform: scale3d(1.03,1.03,1.03)
2173
+ }
2174
+
2175
+ 80% {
2176
+ opacity: 1;
2177
+ -webkit-transform: scale3d(.97,.97,.97);
2178
+ transform: scale3d(.97,.97,.97)
2179
+ }
2180
+
2181
+ to {
2182
+ -webkit-transform: scaleX(1);
2183
+ transform: scaleX(1)
2184
+ }
2185
+ }
2186
+
2187
+ @keyframes flyIn {
2188
+ 0%,20%,40%,60%,80%,to {
2189
+ -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
2190
+ transition-timing-function: cubic-bezier(.215,.61,.355,1)
2191
+ }
2192
+
2193
+ 0% {
2194
+ opacity: 0;
2195
+ -webkit-transform: scale3d(2,2,2);
2196
+ transform: scale3d(2,2,2)
2197
+ }
2198
+
2199
+ 40% {
2200
+ -webkit-transform: scale3d(.9,.9,.9);
2201
+ transform: scale3d(.9,.9,.9)
2202
+ }
2203
+
2204
+ 60% {
2205
+ -webkit-transform: scale3d(1.03,1.03,1.03);
2206
+ transform: scale3d(1.03,1.03,1.03)
2207
+ }
2208
+
2209
+ 80% {
2210
+ opacity: 1;
2211
+ -webkit-transform: scale3d(.97,.97,.97);
2212
+ transform: scale3d(.97,.97,.97)
2213
+ }
2214
+
2215
+ to {
2216
+ -webkit-transform: scaleX(1);
2217
+ transform: scaleX(1)
2218
+ }
2219
+ }
2220
+
2221
+ .bounceSmall {
2222
+ -webkit-animation-name: bounceSmall;
2223
+ animation-name: bounceSmall;
2224
+ -webkit-animation-timing-function: ease-out;
2225
+ animation-timing-function: ease-out
2226
+ }
2227
+
2228
+ @-webkit-keyframes bounceSmall {
2229
+ 0% {
2230
+ opacity: 0;
2231
+ -webkit-transform: scale(1.7)
2232
+ }
2233
+
2234
+ 50% {
2235
+ opacity: 1;
2236
+ -webkit-transform: scale(.95)
2237
+ }
2238
+
2239
+ 80% {
2240
+ -webkit-transform: scale(1.05)
2241
+ }
2242
+
2243
+ 90% {
2244
+ -webkit-transform: scale(.98)
2245
+ }
2246
+
2247
+ to {
2248
+ -webkit-transform: scale(1)
2249
+ }
2250
+ }
2251
+
2252
+ @keyframes bounceSmall {
2253
+ 0% {
2254
+ opacity: 0;
2255
+ -webkit-transform: scale(1.7)
2256
+ }
2257
+
2258
+ 50% {
2259
+ opacity: 1;
2260
+ -webkit-transform: scale(.95)
2261
+ }
2262
+
2263
+ 80% {
2264
+ -webkit-transform: scale(1.05)
2265
+ }
2266
+
2267
+ 90% {
2268
+ -webkit-transform: scale(.98)
2269
+ }
2270
+
2271
+ to {
2272
+ -webkit-transform: scale(1)
2273
+ }
2274
+ }
2275
+
2276
+ .pullUp {
2277
+ -webkit-transform-origin: 50% 100%;
2278
+ transform-origin: 50% 100%;
2279
+ -webkit-animation-name: pullUp;
2280
+ animation-name: pullUp;
2281
+ -webkit-animation-timing-function: ease-out;
2282
+ animation-timing-function: ease-out
2283
+ }
2284
+
2285
+ @-webkit-keyframes pullUp {
2286
+ 0%,40%,60%,80%,99% {
2287
+ -webkit-animation-timing-function: ease-out;
2288
+ animation-timing-function: ease-out
2289
+ }
2290
+
2291
+ 0% {
2292
+ opacity: 0;
2293
+ -webkit-transform: scaleY(.1);
2294
+ transform: scaleY(.1);
2295
+ -webkit-transform-origin: 50% 100%;
2296
+ transform-origin: 50% 100%
2297
+ }
2298
+
2299
+ 40% {
2300
+ opacity: 1;
2301
+ -webkit-transform: scaleY(1.02);
2302
+ transform: scaleY(1.02);
2303
+ -webkit-transform-origin: 50% 100%;
2304
+ transform-origin: 50% 100%
2305
+ }
2306
+
2307
+ 60% {
2308
+ -webkit-transform: scaleY(.98);
2309
+ transform: scaleY(.98);
2310
+ -webkit-transform-origin: 50% 100%;
2311
+ transform-origin: 50% 100%
2312
+ }
2313
+
2314
+ 80% {
2315
+ -webkit-transform: scaleY(1.01);
2316
+ transform: scaleY(1.01);
2317
+ -webkit-transform-origin: 50% 100%;
2318
+ transform-origin: 50% 100%
2319
+ }
2320
+
2321
+ 99% {
2322
+ -webkit-transform: scaleY(1);
2323
+ transform: scaleY(1);
2324
+ -webkit-transform-origin: 50% 100%;
2325
+ transform-origin: 50% 100%
2326
+ }
2327
+
2328
+ to {
2329
+ -webkit-transform: none;
2330
+ transform: none
2331
+ }
3054
2332
  }
3055
2333
 
3056
- @-webkit-keyframes flyIn {
3057
- 0%,20%,40%,60%,80%,to {
3058
- -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
3059
- transition-timing-function: cubic-bezier(.215,.61,.355,1)
2334
+ @keyframes pullUp {
2335
+ 0%,40%,60%,80%,99% {
2336
+ -webkit-animation-timing-function: ease-out;
2337
+ animation-timing-function: ease-out
3060
2338
  }
3061
2339
 
3062
2340
  0% {
3063
2341
  opacity: 0;
3064
- -webkit-transform: scale3d(2,2,2);
3065
- transform: scale3d(2,2,2)
2342
+ -webkit-transform: scaleY(.1);
2343
+ transform: scaleY(.1);
2344
+ -webkit-transform-origin: 50% 100%;
2345
+ transform-origin: 50% 100%
3066
2346
  }
3067
2347
 
3068
2348
  40% {
3069
- -webkit-transform: scale3d(.9,.9,.9);
3070
- transform: scale3d(.9,.9,.9)
2349
+ opacity: 1;
2350
+ -webkit-transform: scaleY(1.02);
2351
+ transform: scaleY(1.02);
2352
+ -webkit-transform-origin: 50% 100%;
2353
+ transform-origin: 50% 100%
3071
2354
  }
3072
2355
 
3073
2356
  60% {
3074
- -webkit-transform: scale3d(1.03,1.03,1.03);
3075
- transform: scale3d(1.03,1.03,1.03)
2357
+ -webkit-transform: scaleY(.98);
2358
+ transform: scaleY(.98);
2359
+ -webkit-transform-origin: 50% 100%;
2360
+ transform-origin: 50% 100%
3076
2361
  }
3077
2362
 
3078
2363
  80% {
3079
- opacity: 1;
3080
- -webkit-transform: scale3d(.97,.97,.97);
3081
- transform: scale3d(.97,.97,.97)
2364
+ -webkit-transform: scaleY(1.01);
2365
+ transform: scaleY(1.01);
2366
+ -webkit-transform-origin: 50% 100%;
2367
+ transform-origin: 50% 100%
2368
+ }
2369
+
2370
+ 99% {
2371
+ -webkit-transform: scaleY(1);
2372
+ transform: scaleY(1);
2373
+ -webkit-transform-origin: 50% 100%;
2374
+ transform-origin: 50% 100%
3082
2375
  }
3083
2376
 
3084
2377
  to {
3085
- -webkit-transform: scaleX(1);
3086
- transform: scaleX(1)
2378
+ -webkit-transform: none;
2379
+ transform: none
3087
2380
  }
3088
2381
  }
3089
2382
 
3090
- @keyframes flyIn {
3091
- 0%,20%,40%,60%,80%,to {
3092
- -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
3093
- transition-timing-function: cubic-bezier(.215,.61,.355,1)
2383
+ .pullDown {
2384
+ -webkit-transform-origin: 50% 0;
2385
+ transform-origin: 50% 0;
2386
+ -webkit-animation-name: pullDown;
2387
+ animation-name: pullDown;
2388
+ -webkit-animation-timing-function: ease-out;
2389
+ animation-timing-function: ease-out
2390
+ }
2391
+
2392
+ @-webkit-keyframes pullDown {
2393
+ 0%,40%,60%,80%,99% {
2394
+ -webkit-animation-timing-function: ease-out;
2395
+ animation-timing-function: ease-out
3094
2396
  }
3095
2397
 
3096
2398
  0% {
3097
2399
  opacity: 0;
3098
- -webkit-transform: scale3d(2,2,2);
3099
- transform: scale3d(2,2,2)
2400
+ -webkit-transform: scaleY(.1);
2401
+ transform: scaleY(.1);
2402
+ -webkit-transform-origin: 50% 0;
2403
+ transform-origin: 50% 0
3100
2404
  }
3101
2405
 
3102
2406
  40% {
3103
- -webkit-transform: scale3d(.9,.9,.9);
3104
- transform: scale3d(.9,.9,.9)
2407
+ opacity: 1;
2408
+ -webkit-transform: scaleY(1.02);
2409
+ transform: scaleY(1.02);
2410
+ -webkit-transform-origin: 50% 0;
2411
+ transform-origin: 50% 0
3105
2412
  }
3106
2413
 
3107
2414
  60% {
3108
- -webkit-transform: scale3d(1.03,1.03,1.03);
3109
- transform: scale3d(1.03,1.03,1.03)
2415
+ -webkit-transform: scaleY(.98);
2416
+ transform: scaleY(.98);
2417
+ -webkit-transform-origin: 50% 0;
2418
+ transform-origin: 50% 0
3110
2419
  }
3111
2420
 
3112
2421
  80% {
3113
- opacity: 1;
3114
- -webkit-transform: scale3d(.97,.97,.97);
3115
- transform: scale3d(.97,.97,.97)
2422
+ -webkit-transform: scaleY(1.01);
2423
+ transform: scaleY(1.01);
2424
+ -webkit-transform-origin: 50% 0;
2425
+ transform-origin: 50% 0
2426
+ }
2427
+
2428
+ 99% {
2429
+ -webkit-transform: scaleY(1);
2430
+ transform: scaleY(1);
2431
+ -webkit-transform-origin: 50% 0;
2432
+ transform-origin: 50% 0
3116
2433
  }
3117
2434
 
3118
2435
  to {
3119
- -webkit-transform: scaleX(1);
3120
- transform: scaleX(1)
2436
+ -webkit-transform: none;
2437
+ transform: none
3121
2438
  }
3122
2439
  }
3123
2440
 
3124
- .bounceSmall {
3125
- -webkit-animation-name: bounceSmall;
3126
- animation-name: bounceSmall;
3127
- -webkit-animation-timing-function: ease-out;
3128
- animation-timing-function: ease-out
2441
+ @keyframes pullDown {
2442
+ 0%,40%,60%,80%,99% {
2443
+ -webkit-animation-timing-function: ease-out;
2444
+ animation-timing-function: ease-out
3129
2445
  }
3130
2446
 
3131
- @-webkit-keyframes bounceSmall {
3132
2447
  0% {
3133
2448
  opacity: 0;
3134
- -webkit-transform: scale(1.7)
2449
+ -webkit-transform: scaleY(.1);
2450
+ transform: scaleY(.1);
2451
+ -webkit-transform-origin: 50% 0;
2452
+ transform-origin: 50% 0
3135
2453
  }
3136
2454
 
3137
- 50% {
2455
+ 40% {
3138
2456
  opacity: 1;
3139
- -webkit-transform: scale(.95)
2457
+ -webkit-transform: scaleY(1.02);
2458
+ transform: scaleY(1.02);
2459
+ -webkit-transform-origin: 50% 0;
2460
+ transform-origin: 50% 0
2461
+ }
2462
+
2463
+ 60% {
2464
+ -webkit-transform: scaleY(.98);
2465
+ transform: scaleY(.98);
2466
+ -webkit-transform-origin: 50% 0;
2467
+ transform-origin: 50% 0
3140
2468
  }
3141
2469
 
3142
2470
  80% {
3143
- -webkit-transform: scale(1.05)
2471
+ -webkit-transform: scaleY(1.01);
2472
+ transform: scaleY(1.01);
2473
+ -webkit-transform-origin: 50% 0;
2474
+ transform-origin: 50% 0
3144
2475
  }
3145
2476
 
3146
- 90% {
3147
- -webkit-transform: scale(.98)
2477
+ 99% {
2478
+ -webkit-transform: scaleY(1);
2479
+ transform: scaleY(1);
2480
+ -webkit-transform-origin: 50% 0;
2481
+ transform-origin: 50% 0
3148
2482
  }
3149
2483
 
3150
2484
  to {
3151
- -webkit-transform: scale(1)
3152
- }
2485
+ -webkit-transform: none;
2486
+ transform: none
3153
2487
  }
3154
-
3155
- @keyframes bounceSmall {
3156
- 0% {
3157
- opacity: 0;
3158
- -webkit-transform: scale(1.7)
2488
+ }.form-submit {
2489
+ cursor: pointer;
2490
+ transition: all 0.2s;
2491
+ outline: none;
2492
+ border: none;
3159
2493
  }
3160
2494
 
3161
- 50% {
3162
- opacity: 1;
3163
- -webkit-transform: scale(.95)
2495
+ .form-submit:hover {
2496
+ opacity: 0.9;
2497
+ transform: translateY(-1px);
3164
2498
  }
3165
2499
 
3166
- 80% {
3167
- -webkit-transform: scale(1.05)
2500
+ .form-submit:active {
2501
+ opacity: 0.8;
2502
+ transform: translateY(0);
3168
2503
  }
3169
2504
 
3170
- 90% {
3171
- -webkit-transform: scale(.98)
2505
+ .form-submit:disabled {
2506
+ opacity: 0.6;
2507
+ cursor: not-allowed;
2508
+ transform: none !important;
3172
2509
  }
3173
2510
 
3174
- to {
3175
- -webkit-transform: scale(1)
3176
- }
2511
+ .f-submit {
2512
+ position: relative;
2513
+ display: block
3177
2514
  }
3178
2515
 
3179
- .pullUp {
3180
- -webkit-transform-origin: 50% 100%;
3181
- transform-origin: 50% 100%;
3182
- -webkit-animation-name: pullUp;
3183
- animation-name: pullUp;
3184
- -webkit-animation-timing-function: ease-out;
3185
- animation-timing-function: ease-out
2516
+ .f-submit .ani-wrap {
2517
+ width: 100%;
2518
+ height: 100%;
2519
+ padding: 10px;
2520
+ overflow: hidden;
2521
+ position: relative
3186
2522
  }
3187
2523
 
3188
- @-webkit-keyframes pullUp {
3189
- 0%,40%,60%,80%,99% {
3190
- -webkit-animation-timing-function: ease-out;
3191
- animation-timing-function: ease-out
2524
+ .f-submit .f-ovh {
2525
+ position: absolute;
2526
+ left: 50%;
2527
+ top: 50%;
2528
+ transform: translate(-50%,-50%)
3192
2529
  }
3193
2530
 
3194
- 0% {
2531
+ .form-submit:disabled {
2532
+ opacity: 0.7;
2533
+ cursor: not-allowed;
2534
+ }/* Iconfont definition */
2535
+ .icon-danmuliebiao1:before {
2536
+ content: "\E68A";
2537
+ }
2538
+
2539
+ .icon-cuowu2:before {
2540
+ content: "\E65E";
2541
+ }
2542
+
2543
+ i {
2544
+ font-style: normal;
2545
+ }
2546
+
2547
+ .v-modal {
2548
+ position: fixed;
2549
+ left: 0;
2550
+ top: 0;
2551
+ width: 100%;
2552
+ height: 100%;
2553
+ opacity: .5;
2554
+ background: #000;
2555
+ }
2556
+ /* 底部工具栏样式 */
2557
+ #toolbarNew {
2558
+ position: fixed;
2559
+ left: 0;
2560
+ bottom: 0;
2561
+ width: 100%;
2562
+ padding: 12px 0;
2563
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/inputBg.png') 0 0 repeat-x;
2564
+ z-index: 100;
2565
+ }
2566
+
2567
+ .toolbar {
2568
+ display: flex;
2569
+ align-items: center;
2570
+ padding: 0 10px;
2571
+ }
2572
+
2573
+ .bar-left {
2574
+ position: relative;
2575
+ flex: 1;
2576
+ }
2577
+
2578
+ .bar-mess {
2579
+ width: 100%;
2580
+ height: 36px;
2581
+ line-height: 36px;
2582
+ font-size: 14px;
2583
+ color: #ccc;
2584
+ padding: 0 8px;
2585
+ border-radius: 18px;
2586
+ border: none;
2587
+ -webkit-appearance: none;
2588
+ background-color: rgba(0, 0, 0, 0.28);
2589
+ }
2590
+
2591
+ .bar-mess::placeholder {
2592
+ color: rgba(255, 255, 255, 0.7);
2593
+ }
2594
+
2595
+ .bar-left .iconfont {
2596
+ position: absolute;
2597
+ right: 10px;
2598
+ top: 50%;
2599
+ transform: translateY(-50%);
2600
+ color: #f2f2f2;
2601
+ font-size: 16px;
2602
+ cursor: pointer;
2603
+ z-index: 2;
2604
+ padding: 5px;
2605
+ }
2606
+
2607
+ /* 关闭弹幕按钮样式 */
2608
+ .toolbar-close {
2609
+ position: absolute;
2610
+ left: 10px;
2611
+ transform: translateY(-50%);
2612
+ display: flex;
2613
+ align-items: center;
2614
+ cursor: pointer;
2615
+ z-index: 2;
2616
+ }
2617
+
2618
+ .toolbar-close img {
2619
+ display: block;
2620
+ width: 36px;
2621
+ height: 36px;
2622
+ cursor: pointer;
2623
+ }
2624
+
2625
+ /* 弹幕容器样式 */
2626
+ .bullet-container {
2627
+ position: fixed;
2628
+ left: 10px;
2629
+ right: 10px;
2630
+ height: 120px;
2631
+ overflow: hidden;
2632
+ z-index: 99;
2633
+ pointer-events: none;
2634
+ }
2635
+
2636
+ .bullet-item {
2637
+ position: absolute;
2638
+ left: 0;
2639
+ bottom: 0;
2640
+ padding: 5px 10px;
2641
+ border-radius: 15px;
2642
+ font-size: 14px;
2643
+ white-space: nowrap;
2644
+ animation: bulletMove linear;
2645
+ animation-fill-mode: forwards;
2646
+ will-change: transform;
2647
+ display: inline-block;
2648
+ max-width: 90%;
2649
+ }
2650
+
2651
+ @keyframes bulletMove {
2652
+ 0% {
2653
+ transform: translateY(0);
2654
+ opacity: 1;
2655
+ }
2656
+ 100% {
2657
+ transform: translateY(calc(-1 * 150px));
2658
+ opacity: 0;
2659
+ }
2660
+ }
2661
+
2662
+ /* 弹幕输入弹窗样式 */
2663
+ .popup-overlay {
2664
+ position: fixed;
2665
+ top: 0;
2666
+ left: 0;
2667
+ right: 0;
2668
+ bottom: 0;
2669
+ background: rgba(0, 0, 0, 0.5);
2670
+ display: flex;
2671
+ justify-content: center;
2672
+ align-items: flex-end;
2673
+ z-index: 200;
2674
+ }
2675
+
2676
+ #index .mint-popup {
2677
+ background-color: transparent;
2678
+ }
2679
+
2680
+ .mint-popup {
2681
+ position: fixed;
2682
+ background: #fff;
2683
+ top: 50%;
2684
+ left: 50%;
2685
+ transform: translate3d(-50%, -50%, 0);
2686
+ -webkit-backface-visibility: hidden;
2687
+ backface-visibility: hidden;
2688
+ transition: .2s ease-out;
2689
+ }
2690
+
2691
+ .bar-messwin {
2692
+ width: 309px;
2693
+ height: 341px;
2694
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/mess-bg.png') no-repeat 50%;
2695
+ background-size: 100% 100%;
2696
+ position: relative;
2697
+ display: flex;
2698
+ flex-direction: column;
2699
+ align-items: center;
2700
+ margin-bottom: 20px;
2701
+ }
2702
+
2703
+ .bar-messwin .mess-logo {
2704
+ width: 171px;
2705
+ height: 110px;
2706
+ margin-top: -64px;
2707
+ margin-left: 11px;
2708
+ }
2709
+
2710
+ .bar-messwin .mess-title {
2711
+ margin-top: 12px;
2712
+ font-weight: 600;
2713
+ font-size: 21px;
2714
+ color: #333;
2715
+ }
2716
+
2717
+ .bar-messwin .mess-input {
2718
+ width: 267px;
2719
+ height: 43px;
2720
+ background: #fff;
2721
+ border-radius: 9px;
2722
+ border: 1px solid rgba(237,85,102,0.4);
2723
+ margin-top: 12px;
2724
+ display: flex;
2725
+ align-items: center;
2726
+ justify-content: center;
2727
+ padding: 0 13px;
2728
+ }
2729
+
2730
+ .bar-messwin .mess-input input {
2731
+ width: 100%;
2732
+ font-size: 17px;
2733
+ font-family: PingFang SC;
2734
+ font-weight: 400;
2735
+ color: #333;
2736
+ border: none;
2737
+ outline: none;
2738
+ background: transparent;
2739
+ }
2740
+
2741
+ .bar-messwin .mess-input input::-webkit-input-placeholder {
2742
+ color: #999;
2743
+ }
2744
+
2745
+ .bar-messwin .mess-input input::-ms-input-placeholder {
2746
+ color: #999;
2747
+ }
2748
+
2749
+ .bar-messwin .mess-input input::placeholder {
2750
+ color: #999;
2751
+ }
2752
+
2753
+ .bar-messwin .mess-textarea {
2754
+ width: 267px;
2755
+ height: 85px;
2756
+ background: #fff;
2757
+ border-radius: 9px;
2758
+ border: 1px solid rgba(237,85,102,0.4);
2759
+ display: flex;
2760
+ padding: 9px 13px;
2761
+ justify-content: space-between;
2762
+ margin-top: 12px;
2763
+ position: relative;
2764
+ }
2765
+
2766
+ .bar-messwin .mess-textarea textarea {
2767
+ width: 203px;
2768
+ height: 68px;
2769
+ font-size: 17px;
2770
+ resize: none;
2771
+ outline: none;
2772
+ border: none;
2773
+ background: transparent;
2774
+ color: #333;
2775
+ font-family: PingFang SC;
2776
+ }
2777
+
2778
+ .bar-messwin .mess-textarea textarea::-webkit-input-placeholder {
2779
+ color: #999;
2780
+ }
2781
+
2782
+ .bar-messwin .mess-textarea textarea::-ms-input-placeholder {
2783
+ color: #999;
2784
+ }
2785
+
2786
+ .bar-messwin .mess-textarea textarea::placeholder {
2787
+ color: #999;
2788
+ }
2789
+
2790
+ .bar-messwin .mess-textarea img {
2791
+ width: 26px;
2792
+ height: 26px;
2793
+ cursor: pointer;
2794
+ }
2795
+
2796
+ .bar-messwin .mess-textarea .wish-dropdown {
2797
+ position: absolute;
2798
+ top: 43px;
2799
+ right: 0;
2800
+ width: 267px;
2801
+ background: #fff;
2802
+ border-radius: 9px;
2803
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
2804
+ z-index: 10;
2805
+ max-height: 213px;
2806
+ overflow-y: auto;
2807
+ border: 1px solid rgba(237,85,102,0.2);
2808
+ padding: 0 13px;
2809
+ }
2810
+
2811
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar {
2812
+ width: 3px;
2813
+ background-color: transparent;
2814
+ display: block;
2815
+ }
2816
+
2817
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-thumb {
2818
+ background-color: #ccc;
2819
+ border-radius: 9px;
2820
+ min-height: 32px;
2821
+ }
2822
+
2823
+ .bar-messwin .mess-textarea .wish-dropdown::-webkit-scrollbar-track {
2824
+ background-color: transparent;
2825
+ border-radius: 3px;
2826
+ margin: 4px 0;
2827
+ }
2828
+
2829
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item {
2830
+ padding: 11px 0;
2831
+ display: flex;
2832
+ align-items: flex-start;
2833
+ cursor: pointer;
2834
+ transition: background-color 0.2s;
2835
+ border-bottom: 1px solid rgba(0,0,0,0.05);
2836
+ }
2837
+
2838
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item:last-child {
2839
+ border-bottom: none;
2840
+ }
2841
+
2842
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-dot {
2843
+ color: #ff4874;
2844
+ margin-right: 5px;
2845
+ font-size: 11px;
2846
+ line-height: 21px;
2847
+ }
2848
+
2849
+ .bar-messwin .mess-textarea .wish-dropdown .wish-item .wish-text {
2850
+ font-size: 15px;
2851
+ color: #333;
2852
+ line-height: 21px;
2853
+ text-align: left;
2854
+ }
2855
+
2856
+ .bar-messwin .bar-m-sub {
2857
+ width: 267px;
2858
+ height: 43px;
2859
+ background: linear-gradient(270deg,#ff4874,#ff9061);
2860
+ border-radius: 68px;
2861
+ font-size: 17px;
2862
+ font-family: PingFang SC;
2863
+ font-weight: 400;
2864
+ color: #fff;
2865
+ margin-top: 26px;
2866
+ border: none;
2867
+ outline: none;
2868
+ cursor: pointer;
2869
+ display: flex;
2870
+ align-items: center;
2871
+ justify-content: center;
2872
+ }
2873
+
2874
+ .bar-messwin .icon-cuowu2, .give-gift .icon-cuowu2 {
2875
+ position: absolute;
2876
+ bottom: -60px;
2877
+ right: 50%;
2878
+ transform: translateX(50%);
2879
+ font-size: 28px;
2880
+ color: #fff;
2881
+ cursor: pointer;
2882
+ }
2883
+
2884
+ /* 提示弹窗样式 */
2885
+ .mint-msgbox-wrapper {
2886
+ position: fixed;
2887
+ top: 0;
2888
+ left: 0;
2889
+ right: 0;
2890
+ bottom: 0;
2891
+ background-color: rgba(0,0,0,0.5);
2892
+ z-index: 2005;
2893
+ display: flex;
2894
+ justify-content: center;
2895
+ align-items: center;
2896
+ }
2897
+
2898
+ .mint-msgbox {
2899
+ position: relative;
2900
+ background-color: #fff;
2901
+ width: 85%;
2902
+ border-radius: 3px;
2903
+ font-size: 17px;
2904
+ overflow: hidden;
2905
+ }
2906
+
2907
+ .mint-msgbox-header {
2908
+ padding: 16px 0 0;
2909
+ }
2910
+
2911
+ .mint-msgbox-content {
2912
+ padding: 11px 21px 16px;
2913
+ border-bottom: 1px solid #ddd;
2914
+ min-height: 38px;
2915
+ position: relative;
2916
+ }
2917
+
2918
+ .mint-msgbox-title {
2919
+ text-align: center;
2920
+ padding-left: 0;
2921
+ margin-bottom: 0;
2922
+ font-size: 17px;
2923
+ font-weight: 700;
2924
+ color: #333;
2925
+ }
2926
+
2927
+ .mint-msgbox-message {
2928
+ color: #999;
2929
+ margin: 0;
2930
+ text-align: center;
2931
+ line-height: 38px;
2932
+ }
2933
+
2934
+ .mint-msgbox-btns {
2935
+ display: flex;
2936
+ height: 43px;
2937
+ line-height: 43px;
2938
+ }
2939
+
2940
+ .mint-msgbox-btn {
2941
+ line-height: 37px;
2942
+ display: block;
2943
+ background-color: #fff;
2944
+ flex: 1;
2945
+ margin: 0;
2946
+ border: 0;
2947
+ }
2948
+
2949
+ .mint-msgbox-confirm {
2950
+ color: #26a2ff;
2951
+ width: 100%;
2952
+ }
2953
+ /* 右侧按钮区域样式 */
2954
+ #toolbarNew .toolbar .bar-right {
2955
+ margin-left: 7px;
2956
+ font-size: 0;
2957
+ display: flex;
2958
+ align-items: center;
2959
+ }
2960
+
2961
+ #toolbarNew .toolbar .bar-right.move-left {
2962
+ right: 64px;
2963
+ }
2964
+
2965
+ #toolbarNew .toolbar .bar-right .bar-r-com,
2966
+ #toolbarNew .toolbar .bar-right>img {
2967
+ display: inline-block;
2968
+ vertical-align: middle;
2969
+ }
2970
+
2971
+ #toolbarNew .toolbar .bar-right .bar-r-com {
2972
+ margin-left: 8px;
2973
+ cursor: pointer;
2974
+ }
2975
+
2976
+ #toolbarNew .toolbar .bar-right .bar-r-com.bar-r-gift {
2977
+ width: 36px;
2978
+ height: 36px;
2979
+ transform-origin: center bottom;
2980
+ animation: giftJump 3s ease infinite;
2981
+ }
2982
+
2983
+ @keyframes giftJump {
2984
+ 0%, 24%, 48%, to {
2985
+ transform: translateZ(0);
2986
+ }
2987
+ 12% {
2988
+ transform: translate3d(0, -10px, 0);
2989
+ }
2990
+ 36% {
2991
+ transform: translate3d(0, -10px, 0);
2992
+ }
2993
+ }
2994
+
2995
+ #toolbarNew .toolbar .bar-right .bar-r-com:first-child {
2996
+ margin-left: 0;
2997
+ }
2998
+
2999
+ #toolbarNew .toolbar .bar-right>img {
3000
+ position: relative;
3001
+ z-index: 1;
3002
+ width: 26px;
3003
+ height: 26px;
3004
+ }
3005
+
3006
+ #toolbarNew .toolbar .bar-right .bar-heart {
3007
+ position: relative;
3008
+ width: 36px;
3009
+ height: 36px;
3010
+ text-align: center;
3011
+ }
3012
+
3013
+ #toolbarNew .toolbar .bar-right .bar-heart .bar-praise {
3014
+ position: absolute;
3015
+ max-width: 36px;
3016
+ height: 15px;
3017
+ line-height: 15px;
3018
+ right: 0;
3019
+ top: 0;
3020
+ z-index: 3;
3021
+ font-size: 10px;
3022
+ color: #fff;
3023
+ border-radius: 6px;
3024
+ padding: 0 4px;
3025
+ box-sizing: border-box;
3026
+ white-space: nowrap;
3027
+ background-color: #f38200;
3028
+ transform: translateX(40%);
3029
+ }
3030
+
3031
+ #toolbarNew .toolbar .bar-right .bar-zan {
3032
+ position: relative;
3033
+ z-index: 2;
3034
+ height: 33px;
3035
+ width: 33px;
3036
+ box-sizing: border-box;
3037
+ }
3038
+
3039
+ #toolbarNew .toolbar .bar-right .bar-zan .ani-num {
3040
+ position: absolute;
3041
+ top: 0;
3042
+ left: 10px;
3195
3043
  opacity: 0;
3196
- -webkit-transform: scaleY(.1);
3197
- transform: scaleY(.1);
3198
- -webkit-transform-origin: 50% 100%;
3199
- transform-origin: 50% 100%
3200
- }
3201
-
3202
- 40% {
3203
- opacity: 1;
3204
- -webkit-transform: scaleY(1.02);
3205
- transform: scaleY(1.02);
3206
- -webkit-transform-origin: 50% 100%;
3207
- transform-origin: 50% 100%
3208
- }
3209
-
3210
- 60% {
3211
- -webkit-transform: scaleY(.98);
3212
- transform: scaleY(.98);
3213
- -webkit-transform-origin: 50% 100%;
3214
- transform-origin: 50% 100%
3215
- }
3216
-
3217
- 80% {
3218
- -webkit-transform: scaleY(1.01);
3219
- transform: scaleY(1.01);
3220
- -webkit-transform-origin: 50% 100%;
3221
- transform-origin: 50% 100%
3222
- }
3223
-
3224
- 99% {
3225
- -webkit-transform: scaleY(1);
3226
- transform: scaleY(1);
3227
- -webkit-transform-origin: 50% 100%;
3228
- transform-origin: 50% 100%
3229
- }
3230
-
3231
- to {
3232
- -webkit-transform: none;
3233
- transform: none
3234
- }
3235
- }
3236
-
3237
- @keyframes pullUp {
3238
- 0%,40%,60%,80%,99% {
3239
- -webkit-animation-timing-function: ease-out;
3240
- animation-timing-function: ease-out
3241
- }
3242
-
3243
- 0% {
3044
+ font-size: 15px;
3045
+ color: #f07a87;
3046
+ }
3047
+
3048
+ #toolbarNew .toolbar .bar-right .bar-zan .stop-longtap {
3049
+ position: absolute;
3050
+ left: 0;
3051
+ right: 0;
3052
+ bottom: 0;
3053
+ top: 0;
3054
+ z-index: 1;
3055
+ }
3056
+
3057
+ #toolbarNew .toolbar .bar-right .bar-zan img {
3058
+ width: 36px;
3059
+ height: 36px;
3060
+ }
3061
+
3062
+ #toolbarNew .toolbar .bar-right .bar-zan.active .ani-num {
3063
+ z-index: 2;
3064
+ animation: praise 1.2s;
3065
+ animation-fill-mode: both;
3066
+ }
3067
+
3068
+ @keyframes praise {
3069
+ 0% {
3070
+ opacity: 1;
3071
+ }
3072
+ 50% {
3073
+ opacity: 1;
3074
+ transform: translate3d(0, -35px, 0);
3075
+ }
3076
+ to {
3077
+ opacity: 0;
3078
+ transform: translate3d(0, -35px, 0);
3079
+ }
3080
+ }
3081
+
3082
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap {
3083
+ transform: scale(0.85);
3084
+ }
3085
+
3086
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:first-of-type {
3087
+ animation: jump .6s ease-out;
3088
+ }
3089
+
3090
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(2) {
3091
+ animation: jump2 .6s ease-out;
3092
+ }
3093
+
3094
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(3) {
3095
+ animation: jump3 .6s ease-out;
3096
+ }
3097
+
3098
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(4) {
3099
+ animation: jump4 .6s ease-out;
3100
+ }
3101
+
3102
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(5) {
3103
+ animation: jump5 .6s ease-out;
3104
+ }
3105
+
3106
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(6) {
3107
+ animation: jump6 .6s ease-out;
3108
+ }
3109
+
3110
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(7) {
3111
+ animation: jump7 .6s ease-out;
3112
+ }
3113
+
3114
+ #toolbarNew .toolbar .bar-right .bar-zan.active .zan-wrap span:nth-of-type(8) {
3115
+ animation: jump8 .6s ease-out;
3116
+ }
3117
+
3118
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap {
3119
+ position: absolute;
3120
+ left: 0;
3121
+ top: 0;
3122
+ right: 0;
3123
+ bottom: 0;
3124
+ pointer-events: none;
3125
+ overflow: visible;
3126
+ }
3127
+
3128
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span {
3129
+ position: absolute;
3130
+ width: 6px;
3131
+ height: 6px;
3132
+ border-radius: 50%;
3244
3133
  opacity: 0;
3245
- -webkit-transform: scaleY(.1);
3246
- transform: scaleY(.1);
3247
- -webkit-transform-origin: 50% 100%;
3248
- transform-origin: 50% 100%
3249
- }
3250
-
3251
- 40% {
3252
- opacity: 1;
3253
- -webkit-transform: scaleY(1.02);
3254
- transform: scaleY(1.02);
3255
- -webkit-transform-origin: 50% 100%;
3256
- transform-origin: 50% 100%
3257
- }
3258
-
3259
- 60% {
3260
- -webkit-transform: scaleY(.98);
3261
- transform: scaleY(.98);
3262
- -webkit-transform-origin: 50% 100%;
3263
- transform-origin: 50% 100%
3264
- }
3265
-
3266
- 80% {
3267
- -webkit-transform: scaleY(1.01);
3268
- transform: scaleY(1.01);
3269
- -webkit-transform-origin: 50% 100%;
3270
- transform-origin: 50% 100%
3271
- }
3272
-
3273
- 99% {
3274
- -webkit-transform: scaleY(1);
3275
- transform: scaleY(1);
3276
- -webkit-transform-origin: 50% 100%;
3277
- transform-origin: 50% 100%
3278
- }
3279
-
3280
- to {
3281
- -webkit-transform: none;
3282
- transform: none
3283
- }
3284
- }
3285
-
3286
- .pullDown {
3287
- -webkit-transform-origin: 50% 0;
3288
- transform-origin: 50% 0;
3289
- -webkit-animation-name: pullDown;
3290
- animation-name: pullDown;
3291
- -webkit-animation-timing-function: ease-out;
3292
- animation-timing-function: ease-out
3293
- }
3294
-
3295
- @-webkit-keyframes pullDown {
3296
- 0%,40%,60%,80%,99% {
3297
- -webkit-animation-timing-function: ease-out;
3298
- animation-timing-function: ease-out
3299
- }
3300
-
3301
- 0% {
3134
+ }
3135
+
3136
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:first-of-type {
3137
+ left: 50%;
3138
+ top: -8px;
3139
+ transform: translate3d(-50%, 0, 0);
3140
+ background-color: #b3e5c8;
3141
+ }
3142
+
3143
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(2) {
3144
+ left: -8px;
3145
+ top: 50%;
3146
+ transform: translate3d(0, -50%, 0);
3147
+ background-color: #f4ba31;
3148
+ }
3149
+
3150
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(3) {
3151
+ left: 50%;
3152
+ bottom: -8px;
3153
+ transform: translate3d(-50%, 0, 0);
3154
+ background-color: #339fef;
3155
+ }
3156
+
3157
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(4) {
3158
+ top: 50%;
3159
+ right: -8px;
3160
+ transform: translate3d(0, -50%, 0);
3161
+ background-color: #e2264d;
3162
+ }
3163
+
3164
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(5) {
3165
+ left: -5px;
3166
+ top: 0;
3167
+ transform: translate3d(0, -50%, 0);
3168
+ background-color: #a08880;
3169
+ }
3170
+
3171
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(6) {
3172
+ left: -5px;
3173
+ bottom: 0;
3174
+ transform: translate3d(0, 50%, 0);
3175
+ background-color: #43c1b5;
3176
+ }
3177
+
3178
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(7) {
3179
+ right: -5px;
3180
+ bottom: 0;
3181
+ transform: translate3d(0, 50%, 0);
3182
+ background-color: #f5be3b;
3183
+ }
3184
+
3185
+ #toolbarNew .toolbar .bar-right .bar-zan .zan-wrap span:nth-of-type(8) {
3186
+ right: -5px;
3187
+ top: 0;
3188
+ transform: translate3d(0, -50%, 0);
3189
+ background-color: coral;
3190
+ }
3191
+
3192
+ @keyframes jump {
3193
+ 0% {
3194
+ opacity: 1;
3195
+ transform: translate3d(-50%, 0, 0) scale(1);
3196
+ }
3197
+ 40% {
3198
+ transform: translate3d(-50%, -100%, 0) scale(0.7);
3199
+ }
3200
+ to {
3201
+ opacity: 1;
3202
+ transform: translate3d(-50%, -150%, 0) scale(0);
3203
+ }
3204
+ }
3205
+
3206
+ @keyframes jump2 {
3207
+ 0% {
3208
+ opacity: 1;
3209
+ transform: translate3d(0, -50%, 0) scale(1);
3210
+ }
3211
+ 40% {
3212
+ transform: translate3d(-100%, -50%, 0) scale(0.7);
3213
+ }
3214
+ to {
3215
+ opacity: 1;
3216
+ transform: translate3d(-150%, -50%, 0) scale(0);
3217
+ }
3218
+ }
3219
+
3220
+ @keyframes jump3 {
3221
+ 0% {
3222
+ opacity: 1;
3223
+ transform: translate3d(-50%, 0, 0) scale(1);
3224
+ }
3225
+ 40% {
3226
+ transform: translate3d(-50%, 100%, 0) scale(0.7);
3227
+ }
3228
+ to {
3229
+ opacity: 1;
3230
+ transform: translate3d(-50%, 150%, 0) scale(0);
3231
+ }
3232
+ }
3233
+
3234
+ @keyframes jump4 {
3235
+ 0% {
3236
+ opacity: 1;
3237
+ transform: translate3d(0, -50%, 0) scale(1);
3238
+ }
3239
+ 40% {
3240
+ transform: translate3d(100%, -50%, 0) scale(0.7);
3241
+ }
3242
+ to {
3243
+ opacity: 1;
3244
+ transform: translate3d(150%, -50%, 0) scale(0);
3245
+ }
3246
+ }
3247
+
3248
+ @keyframes jump5 {
3249
+ 0% {
3250
+ opacity: 1;
3251
+ transform: translate3d(0, -50%, 0) scale(1);
3252
+ }
3253
+ 40% {
3254
+ transform: translate3d(-80%, -80%, 0) scale(0.7);
3255
+ }
3256
+ to {
3257
+ opacity: 1;
3258
+ transform: translate3d(-130%, -130%, 0) scale(0);
3259
+ }
3260
+ }
3261
+
3262
+ @keyframes jump6 {
3263
+ 0% {
3264
+ opacity: 1;
3265
+ transform: translate3d(0, 50%, 0) scale(1);
3266
+ }
3267
+ 40% {
3268
+ transform: translate3d(-80%, 80%, 0) scale(0.7);
3269
+ }
3270
+ to {
3271
+ opacity: 1;
3272
+ transform: translate3d(-130%, 130%, 0) scale(0);
3273
+ }
3274
+ }
3275
+
3276
+ @keyframes jump7 {
3277
+ 0% {
3278
+ opacity: 1;
3279
+ transform: translate3d(0, 50%, 0) scale(1);
3280
+ }
3281
+ 40% {
3282
+ transform: translate3d(80%, 80%, 0) scale(0.7);
3283
+ }
3284
+ to {
3285
+ opacity: 1;
3286
+ transform: translate3d(130%, 130%, 0) scale(0);
3287
+ }
3288
+ }
3289
+
3290
+ @keyframes jump8 {
3291
+ 0% {
3292
+ opacity: 1;
3293
+ transform: translate3d(0, 50%, 0) scale(1);
3294
+ }
3295
+ 40% {
3296
+ transform: translate3d(80%, -80%, 0) scale(0.7);
3297
+ }
3298
+ to {
3299
+ opacity: 1;
3300
+ transform: translate3d(130%, -130%, 0) scale(0);
3301
+ }
3302
+ }
3303
+
3304
+ /* 礼物弹窗样式 */
3305
+ .give-gift {
3306
+ position: fixed;
3307
+ top: 50%;
3308
+ left: 50%;
3309
+ transform: translate(-50%, -50%);
3310
+ z-index: 2004;
3311
+ background: white;
3312
+ padding: 20px;
3313
+ border-radius: 10px;
3314
+ text-align: center;
3315
+ }
3316
+
3317
+ .give-gift .back {
3318
+ position: absolute;
3319
+ top: 10px;
3320
+ left: 10px;
3321
+ cursor: pointer;
3322
+ }
3323
+
3324
+ .give-gift img {
3325
+ max-width: 300px;
3326
+ max-height: 300px;
3327
+ margin-top: 20px;
3328
+ }
3329
+
3330
+ /* 留言成功弹窗样式 */
3331
+ .mess-success-popup {
3332
+ position: fixed;
3333
+ top: 0;
3334
+ left: 0;
3335
+ right: 0;
3336
+ bottom: 0;
3337
+ background-color: rgba(0, 0, 0, 0.5);
3338
+ z-index: 2003;
3339
+ display: flex;
3340
+ justify-content: center;
3341
+ align-items: center;
3342
+ }
3343
+
3344
+ .mess-success-popup .gift-popup {
3345
+ width: 300px;
3346
+ height: 200px;
3347
+ background: url('https://h5cdn.unika.cc/static/img/uniComponents/bg-color.png') no-repeat;
3348
+ border-radius: 10px;
3349
+ padding: 20px;
3350
+ text-align: center;
3351
+ position: relative;
3352
+ }
3353
+
3354
+ .mess-success-popup .gift-popup .icon-cuowu2 {
3355
+ position: absolute;
3356
+ top: 10px;
3357
+ right: 10px;
3358
+ cursor: pointer;
3359
+ }
3360
+
3361
+ .mess-success-popup .gift-popup .toast {
3362
+ display: flex;
3363
+ align-items: center;
3364
+ justify-content: center;
3365
+ margin: 10px 0;
3366
+ }
3367
+
3368
+ .mess-success-popup .gift-popup .toast img {
3369
+ width: 20px;
3370
+ height: 15px;
3371
+ margin: 0 5px;
3372
+ }
3373
+
3374
+ .mess-success-popup .gift-popup .title {
3375
+ margin: 15px 0;
3376
+ font-size: 16px;
3377
+ color: #333;
3378
+ }
3379
+
3380
+ .mess-success-popup .gift-popup .btn {
3381
+ background: linear-gradient(270deg, #ff4874, #ff9061);
3382
+ color: white;
3383
+ border: none;
3384
+ padding: 10px 20px;
3385
+ border-radius: 20px;
3386
+ margin-top: 15px;
3387
+ cursor: pointer;
3388
+ }
3389
+
3390
+ /* 新增图片加载动画样式 */
3391
+ .gift-image-container {
3392
+ position: relative;
3393
+ width: 300px;
3394
+ height: 300px;
3395
+ margin: 20px 0;
3396
+ overflow: hidden;
3397
+ }
3398
+
3399
+ .gift-image-container img {
3400
+ width: 100%;
3401
+ height: 100%;
3402
+ object-fit: contain;
3302
3403
  opacity: 0;
3303
- -webkit-transform: scaleY(.1);
3304
- transform: scaleY(.1);
3305
- -webkit-transform-origin: 50% 0;
3306
- transform-origin: 50% 0
3307
- }
3308
-
3309
- 40% {
3404
+ transition: opacity 0.5s ease-in-out;
3405
+ }
3406
+
3407
+ .gift-image-container img.loaded {
3310
3408
  opacity: 1;
3311
- -webkit-transform: scaleY(1.02);
3312
- transform: scaleY(1.02);
3313
- -webkit-transform-origin: 50% 0;
3314
- transform-origin: 50% 0
3315
- }
3316
-
3317
- 60% {
3318
- -webkit-transform: scaleY(.98);
3319
- transform: scaleY(.98);
3320
- -webkit-transform-origin: 50% 0;
3321
- transform-origin: 50% 0
3322
- }
3323
-
3324
- 80% {
3325
- -webkit-transform: scaleY(1.01);
3326
- transform: scaleY(1.01);
3327
- -webkit-transform-origin: 50% 0;
3328
- transform-origin: 50% 0
3329
- }
3330
-
3331
- 99% {
3332
- -webkit-transform: scaleY(1);
3333
- transform: scaleY(1);
3334
- -webkit-transform-origin: 50% 0;
3335
- transform-origin: 50% 0
3336
- }
3337
-
3338
- to {
3339
- -webkit-transform: none;
3340
- transform: none
3341
- }
3342
- }
3343
-
3344
- @keyframes pullDown {
3345
- 0%,40%,60%,80%,99% {
3346
- -webkit-animation-timing-function: ease-out;
3347
- animation-timing-function: ease-out
3348
- }
3349
-
3350
- 0% {
3351
- opacity: 0;
3352
- -webkit-transform: scaleY(.1);
3353
- transform: scaleY(.1);
3354
- -webkit-transform-origin: 50% 0;
3355
- transform-origin: 50% 0
3356
- }
3357
-
3358
- 40% {
3409
+ }
3410
+
3411
+ .image-loading {
3412
+ position: absolute;
3413
+ top: 0;
3414
+ left: 0;
3415
+ width: 100%;
3416
+ height: 100%;
3417
+ display: flex;
3418
+ justify-content: center;
3419
+ align-items: center;
3420
+ background: rgba(255, 255, 255, 0.8);
3421
+ }
3422
+
3423
+ .loading-spinner {
3424
+ width: 40px;
3425
+ height: 40px;
3426
+ border: 4px solid #f3f3f3;
3427
+ border-top: 4px solid #ed5566;
3428
+ border-radius: 50%;
3429
+ animation: spin 1s linear infinite;
3430
+ }
3431
+
3432
+ @keyframes spin {
3433
+ 0% { transform: rotate(0deg); }
3434
+ 100% { transform: rotate(360deg); }
3435
+ }
3436
+
3437
+ .form-input {
3438
+ position: absolute;
3439
+ }
3440
+
3441
+ .input-wrapper {
3442
+ display: flex;
3443
+ align-items: center;
3444
+ width: 100%;
3445
+ height: 100%;
3446
+ padding: 0 10px;
3447
+ box-sizing: border-box;
3448
+ position: relative;
3449
+ transition: border-color 0.3s;
3450
+ }
3451
+
3452
+ .required-marker {
3453
+ font-size: 12px;
3454
+ padding: 0 5px 0 0;
3455
+ color: red;
3456
+ vertical-align: middle;
3457
+ }
3458
+
3459
+ input {
3460
+ flex: 1;
3461
+ border: none;
3462
+ outline: none;
3463
+ background: transparent;
3464
+ height: 100%;
3465
+ padding: 0;
3466
+ margin: 0;
3467
+ }
3468
+ /*
3469
+ input::placeholder {
3470
+ color: #ccc;
3359
3471
  opacity: 1;
3360
- -webkit-transform: scaleY(1.02);
3361
- transform: scaleY(1.02);
3362
- -webkit-transform-origin: 50% 0;
3363
- transform-origin: 50% 0
3364
- }
3365
-
3366
- 60% {
3367
- -webkit-transform: scaleY(.98);
3368
- transform: scaleY(.98);
3369
- -webkit-transform-origin: 50% 0;
3370
- transform-origin: 50% 0
3371
- }
3372
-
3373
- 80% {
3374
- -webkit-transform: scaleY(1.01);
3375
- transform: scaleY(1.01);
3376
- -webkit-transform-origin: 50% 0;
3377
- transform-origin: 50% 0
3378
- }
3379
-
3380
- 99% {
3381
- -webkit-transform: scaleY(1);
3382
- transform: scaleY(1);
3383
- -webkit-transform-origin: 50% 0;
3384
- transform-origin: 50% 0
3385
- }
3386
-
3387
- to {
3388
- -webkit-transform: none;
3389
- transform: none
3390
- }
3391
- }/* .ele-form {
3472
+ } */
3473
+
3474
+ .dynamic-placeholder-input::placeholder {
3475
+ color: var(--placeholder-color, #999);
3476
+ opacity: 1;
3477
+ }
3478
+ .dynamic-placeholder-input::-webkit-input-placeholder {
3479
+ color: var(--placeholder-color, #999);
3480
+ }
3481
+ .dynamic-placeholder-input::-moz-placeholder {
3482
+ color: var(--placeholder-color, #999);
3483
+ opacity: 1;
3484
+ }
3485
+ .dynamic-placeholder-input:-ms-input-placeholder {
3486
+ color: var(--placeholder-color, #999);
3487
+ }/* .ele-form {
3392
3488
  position: absolute;
3393
3489
  user-select: none;
3394
3490
  }
@@ -3482,141 +3578,7 @@ to {
3482
3578
  width: 100%;
3483
3579
  height: 100%;
3484
3580
  z-index: 1000;
3485
- }.form-input {
3486
- position: absolute;
3487
- }
3488
-
3489
- .input-wrapper {
3490
- display: flex;
3491
- align-items: center;
3492
- width: 100%;
3493
- height: 100%;
3494
- padding: 0 10px;
3495
- box-sizing: border-box;
3496
- position: relative;
3497
- transition: border-color 0.3s;
3498
- }
3499
-
3500
- .required-marker {
3501
- font-size: 12px;
3502
- padding: 0 5px 0 0;
3503
- color: red;
3504
- vertical-align: middle;
3505
- }
3506
-
3507
- input {
3508
- flex: 1;
3509
- border: none;
3510
- outline: none;
3511
- background: transparent;
3512
- height: 100%;
3513
- padding: 0;
3514
- margin: 0;
3515
- }
3516
- /*
3517
- input::placeholder {
3518
- color: #ccc;
3519
- opacity: 1;
3520
- } */
3521
-
3522
- .dynamic-placeholder-input::placeholder {
3523
- color: var(--placeholder-color, #999);
3524
- opacity: 1;
3525
- }
3526
- .dynamic-placeholder-input::-webkit-input-placeholder {
3527
- color: var(--placeholder-color, #999);
3528
- }
3529
- .dynamic-placeholder-input::-moz-placeholder {
3530
- color: var(--placeholder-color, #999);
3531
- opacity: 1;
3532
- }
3533
- .dynamic-placeholder-input:-ms-input-placeholder {
3534
- color: var(--placeholder-color, #999);
3535
- }.form-submit {
3536
- cursor: pointer;
3537
- transition: all 0.2s;
3538
- outline: none;
3539
- border: none;
3540
- }
3541
-
3542
- .form-submit:hover {
3543
- opacity: 0.9;
3544
- transform: translateY(-1px);
3545
- }
3546
-
3547
- .form-submit:active {
3548
- opacity: 0.8;
3549
- transform: translateY(0);
3550
- }
3551
-
3552
- .form-submit:disabled {
3553
- opacity: 0.6;
3554
- cursor: not-allowed;
3555
- transform: none !important;
3556
- }
3557
-
3558
- .f-submit {
3559
- position: relative;
3560
- display: block
3561
- }
3562
-
3563
- .f-submit .ani-wrap {
3564
- width: 100%;
3565
- height: 100%;
3566
- padding: 10px;
3567
- overflow: hidden;
3568
- position: relative
3569
- }
3570
-
3571
- .f-submit .f-ovh {
3572
- position: absolute;
3573
- left: 50%;
3574
- top: 50%;
3575
- transform: translate(-50%,-50%)
3576
- }
3577
-
3578
- .form-submit:disabled {
3579
- opacity: 0.7;
3580
- cursor: not-allowed;
3581
- }
3582
- .global.video {
3583
- width: 35px;
3584
- height: 55px;
3585
- border-radius: 50%;
3586
- text-align: center;
3587
- margin-bottom: 5px;
3588
- border: 2px solid #fff;
3589
- cursor: pointer;
3590
- }
3591
- .icon-shipin2:before { content: "\E611"; }
3592
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3593
- .global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
3594
- }
3595
-
3596
- .global.map {
3597
- width: 35px;
3598
- height: 55px;
3599
- border-radius: 50%;
3600
- text-align: center;
3601
- margin-bottom: 5px;
3602
- border: 2px solid #fff;
3603
- cursor: pointer;
3604
- }
3605
- .icon-daohang1:before { content: "\E612"; }
3606
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3607
- .global.map > span { font-size: 10px; line-height: 20px; display: block;}
3608
- .global.tel {
3609
- width: 35px;
3610
- height: 55px;
3611
- border-radius: 50%;
3612
- text-align: center;
3613
- margin-bottom: 15px;
3614
- border: 2px solid #fff;
3615
- cursor: pointer;
3616
- }
3617
- .icon-dianhua:before { content: "\E60E"; }
3618
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3619
- .global.tel > span { font-size: 10px; line-height: 20px; display: block;}/* .ele-form {
3581
+ }/* .ele-form {
3620
3582
  position: absolute;
3621
3583
  user-select: none;
3622
3584
  } */
@@ -3715,18 +3677,6 @@ cursor: not-allowed;
3715
3677
  height: 100%;
3716
3678
  z-index: 1000;
3717
3679
  }
3718
- .global.receipt {
3719
- width: 35px;
3720
- height: 55px;
3721
- border-radius: 50%;
3722
- text-align: center;
3723
- margin-bottom: 5px;
3724
- border: 2px solid #fff;
3725
- cursor: pointer;
3726
- }
3727
- .icon-liuyan:before { content: "\E636"; }
3728
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3729
- .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
3730
3680
  .icon-guanbi:before {
3731
3681
  content: "\E676";
3732
3682
  }
@@ -4205,4 +4155,54 @@ cursor: not-allowed;
4205
4155
 
4206
4156
  .has-error .fs-tit {
4207
4157
  border-bottom-color: #ff4d4f;
4208
- }
4158
+ }
4159
+ .global.tel {
4160
+ width: 35px;
4161
+ height: 55px;
4162
+ border-radius: 50%;
4163
+ text-align: center;
4164
+ margin-bottom: 15px;
4165
+ border: 2px solid #fff;
4166
+ cursor: pointer;
4167
+ }
4168
+ .icon-dianhua:before { content: "\E60E"; }
4169
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4170
+ .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
4171
+ .global.map {
4172
+ width: 35px;
4173
+ height: 55px;
4174
+ border-radius: 50%;
4175
+ text-align: center;
4176
+ margin-bottom: 5px;
4177
+ border: 2px solid #fff;
4178
+ cursor: pointer;
4179
+ }
4180
+ .icon-daohang1:before { content: "\E612"; }
4181
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4182
+ .global.map > span { font-size: 10px; line-height: 20px; display: block;}
4183
+ .global.video {
4184
+ width: 35px;
4185
+ height: 55px;
4186
+ border-radius: 50%;
4187
+ text-align: center;
4188
+ margin-bottom: 5px;
4189
+ border: 2px solid #fff;
4190
+ cursor: pointer;
4191
+ }
4192
+ .icon-shipin2:before { content: "\E611"; }
4193
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4194
+ .global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
4195
+ }
4196
+
4197
+ .global.receipt {
4198
+ width: 35px;
4199
+ height: 55px;
4200
+ border-radius: 50%;
4201
+ text-align: center;
4202
+ margin-bottom: 5px;
4203
+ border: 2px solid #fff;
4204
+ cursor: pointer;
4205
+ }
4206
+ .icon-liuyan:before { content: "\E636"; }
4207
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4208
+ .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }