unika-components 1.1.50 → 1.1.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,4 @@
1
1
 
2
- body {
3
- margin: 0 auto;
4
- white-space: normal;
5
- word-break: break-all;
6
- font-family: PingFang SC, Microsoft Yahei, Lato, Helvetica Neue, Arial, SimSun, Helvetica, STHeiTi, Roboto Regular, Roboto, Droid Sans, sans-serif;
7
- }
8
-
9
2
  .form-submit {
10
3
  cursor: pointer;
11
4
  transition: all 0.2s;
@@ -57,6 +50,13 @@ position: absolute;
57
50
  opacity: 0.7;
58
51
  cursor: not-allowed;
59
52
  }
53
+ body {
54
+ margin: 0 auto;
55
+ white-space: normal;
56
+ word-break: break-all;
57
+ font-family: PingFang SC, Microsoft Yahei, Lato, Helvetica Neue, Arial, SimSun, Helvetica, STHeiTi, Roboto Regular, Roboto, Droid Sans, sans-serif;
58
+ }
59
+
60
60
  .form-container {
61
61
  position: relative;
62
62
  width: 100%;
@@ -72,7 +72,74 @@ cursor: not-allowed;
72
72
  max-height: 100%;
73
73
  width: 100%;
74
74
  }
75
- .count-down .drag-point {
75
+
76
+ .ele-text {
77
+ position: relative;
78
+ }
79
+
80
+ .ele-text .ani-wrap {
81
+ width: 100%;
82
+ height: 100%;
83
+ }
84
+
85
+ .text-common {
86
+ padding: 5px;
87
+ text-orientation: upright;
88
+ white-space: pre-wrap;
89
+ }
90
+
91
+ /* 文本动画类 */
92
+ .text-fadeIn {
93
+ animation: fadeIn 1s ease-in-out;
94
+ }
95
+
96
+ .text-slideIn {
97
+ animation: slideIn 1s ease-in-out;
98
+ }
99
+
100
+ .text-bounceIn {
101
+ animation: bounceIn 1s ease-in-out;
102
+ }
103
+
104
+ /* 基础动画关键帧 */
105
+ @keyframes fadeIn {
106
+ from {
107
+ opacity: 0;
108
+ }
109
+ to {
110
+ opacity: 1;
111
+ }
112
+ }
113
+
114
+ @keyframes slideIn {
115
+ from {
116
+ transform: translateY(20px);
117
+ opacity: 0;
118
+ }
119
+ to {
120
+ transform: translateY(0);
121
+ opacity: 1;
122
+ }
123
+ }
124
+
125
+ @keyframes bounceIn {
126
+ 0% {
127
+ transform: scale(0.3);
128
+ opacity: 0;
129
+ }
130
+ 50% {
131
+ transform: scale(1.05);
132
+ opacity: 0.8;
133
+ }
134
+ 70% {
135
+ transform: scale(0.9);
136
+ opacity: 0.9;
137
+ }
138
+ 100% {
139
+ transform: scale(1);
140
+ opacity: 1;
141
+ }
142
+ }.count-down .drag-point {
76
143
  cursor: default!important
77
144
  }
78
145
 
@@ -264,175 +331,7 @@ cursor: not-allowed;
264
331
  width: 100%;
265
332
  height: 100%;
266
333
  background: rgba(0,0,0,0.05);
267
- }
268
- .ele-text {
269
- position: relative;
270
- }
271
-
272
- .ele-text .ani-wrap {
273
- width: 100%;
274
- height: 100%;
275
- }
276
-
277
- .text-common {
278
- padding: 5px;
279
- text-orientation: upright;
280
- white-space: pre-wrap;
281
- }
282
-
283
- /* 文本动画类 */
284
- .text-fadeIn {
285
- animation: fadeIn 1s ease-in-out;
286
- }
287
-
288
- .text-slideIn {
289
- animation: slideIn 1s ease-in-out;
290
- }
291
-
292
- .text-bounceIn {
293
- animation: bounceIn 1s ease-in-out;
294
- }
295
-
296
- /* 基础动画关键帧 */
297
- @keyframes fadeIn {
298
- from {
299
- opacity: 0;
300
- }
301
- to {
302
- opacity: 1;
303
- }
304
- }
305
-
306
- @keyframes slideIn {
307
- from {
308
- transform: translateY(20px);
309
- opacity: 0;
310
- }
311
- to {
312
- transform: translateY(0);
313
- opacity: 1;
314
- }
315
- }
316
-
317
- @keyframes bounceIn {
318
- 0% {
319
- transform: scale(0.3);
320
- opacity: 0;
321
- }
322
- 50% {
323
- transform: scale(1.05);
324
- opacity: 0.8;
325
- }
326
- 70% {
327
- transform: scale(0.9);
328
- opacity: 0.9;
329
- }
330
- 100% {
331
- transform: scale(1);
332
- opacity: 1;
333
- }
334
- }.ele-effect {
335
- will-change: transform;
336
- }
337
-
338
- .ele-effect .effect-wrap {
339
- position: relative;
340
- width: 100%;
341
- height: 100%;
342
- }
343
-
344
- .particle {
345
- position: absolute;
346
- background-repeat: no-repeat;
347
- background-size: contain;
348
- animation-name: falling;
349
- animation-timing-function: linear;
350
- animation-iteration-count: infinite;
351
- will-change: transform;
352
- }
353
-
354
- @keyframes falling {
355
- 0% {
356
- transform: translateY(0) rotate(0deg);
357
- opacity: 1;
358
- }
359
- 80% {
360
- opacity: 0.8;
361
- }
362
- 100% {
363
- transform: translateY(100vh) rotate(360deg);
364
- opacity: 0;
365
- }
366
- }
367
- .ele-lottie .ele-lotwrap {
368
- overflow: hidden
369
- }
370
-
371
- .ele-effect .effect-wrap {
372
- position: relative;
373
- overflow: hidden;
374
- width: 100%;
375
- height: 100%
376
- }
377
-
378
- .ele-effect .e-small {
379
- position: absolute;
380
- width: 24px;
381
- height: 24px;
382
- background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
383
- background-size: cover;
384
- background-repeat: no-repeat;
385
- -webkit-transform-origin: center;
386
- transform-origin: center;
387
- -webkit-animation: snow 5s linear infinite;
388
- animation: snow 5s linear infinite
389
- }
390
- .element-video {
391
- position: absolute;
392
- overflow: hidden;
393
- background-color: transparent;
394
- }
395
-
396
- .element-video .ani-wrap, .element-video img {
397
- display: block;
398
- width: 100%;
399
- height: 100%;
400
- }
401
-
402
- .video-container {
403
- width: 100%;
404
- height: 100%;
405
- }
406
-
407
- .video-container iframe {
408
- width: 100%;
409
- height: 100%;
410
- border: none;
411
- }
412
-
413
- .video-cover {
414
- position: relative;
415
- width: 100%;
416
- height: 100%;
417
- background-size: cover;
418
- background-position: center;
419
- cursor: pointer;
420
- }
421
-
422
- .video-cover .play-btn {
423
- position: absolute;
424
- left: 50%;
425
- top: 50%;
426
- transform: translate(-50%, -50%);
427
- width: 50px;
428
- height: 50px;
429
- opacity: 0.8;
430
- transition: opacity 0.2s;
431
- }
432
-
433
- .video-cover:hover .play-btn {
434
- opacity: 1;
435
- }#audio {
334
+ }#audio {
436
335
  position: absolute;
437
336
  right: 10px;
438
337
  top: 10px;
@@ -503,10 +402,56 @@ cursor: not-allowed;
503
402
  height: 2px;
504
403
  background: #fff;
505
404
  }
506
- @keyframes jumpheart {
507
- to {
508
- -webkit-transform: scale(1.2);
509
- transform: scale(1.2)
405
+ .element-video {
406
+ position: absolute;
407
+ overflow: hidden;
408
+ background-color: transparent;
409
+ }
410
+
411
+ .element-video .ani-wrap, .element-video img {
412
+ display: block;
413
+ width: 100%;
414
+ height: 100%;
415
+ }
416
+
417
+ .video-container {
418
+ width: 100%;
419
+ height: 100%;
420
+ }
421
+
422
+ .video-container iframe {
423
+ width: 100%;
424
+ height: 100%;
425
+ border: none;
426
+ }
427
+
428
+ .video-cover {
429
+ position: relative;
430
+ width: 100%;
431
+ height: 100%;
432
+ background-size: cover;
433
+ background-position: center;
434
+ cursor: pointer;
435
+ }
436
+
437
+ .video-cover .play-btn {
438
+ position: absolute;
439
+ left: 50%;
440
+ top: 50%;
441
+ transform: translate(-50%, -50%);
442
+ width: 50px;
443
+ height: 50px;
444
+ opacity: 0.8;
445
+ transition: opacity 0.2s;
446
+ }
447
+
448
+ .video-cover:hover .play-btn {
449
+ opacity: 1;
450
+ }
451
+ @keyframes jumpheart {
452
+ to {
453
+ -webkit-transform: scale(1.2);
454
+ transform: scale(1.2)
510
455
  }
511
456
  }
512
457
  .ele-calendar {
@@ -844,49 +789,6 @@ cursor: not-allowed;
844
789
  }
845
790
  .icon-xingzhuangjiehe:before {
846
791
  content: "\E6A6";
847
- }.call {
848
- position: absolute;
849
- cursor: pointer;
850
- user-select: none;
851
- }
852
-
853
- .call .ani-wrap {
854
- display: flex;
855
- justify-content: center;
856
- align-items: center;
857
- width: 100%;
858
- height: 100%;
859
- overflow: hidden;
860
- transition: opacity 0.2s;
861
- }
862
-
863
- .call .ani-wrap:hover {
864
- opacity: 0.9;
865
- }
866
-
867
- .call-content {
868
- display: flex;
869
- align-items: center;
870
- justify-content: center;
871
- }
872
-
873
- .btn-text {
874
- margin-left: 10px;
875
- }
876
-
877
- /* 这里可以添加实际的电话图标样式 */
878
- /* .iconfont.hb-tel {
879
- display: inline-block;
880
- width: 16px;
881
- height: 16px;
882
- background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/></svg>');
883
- background-repeat: no-repeat;
884
- background-position: center;
885
- background-size: contain;
886
- } */
887
-
888
- .hb-tel:before {
889
- content: "\E642";
890
792
  }.ele-img {
891
793
  position: absolute;
892
794
  overflow: hidden;
@@ -936,10 +838,81 @@ cursor: not-allowed;
936
838
  opacity: 1;
937
839
  transform: scale(1);
938
840
  }
939
- }
841
+ }.call {
842
+ position: absolute;
843
+ cursor: pointer;
844
+ user-select: none;
845
+ }
846
+
847
+ .call .ani-wrap {
848
+ display: flex;
849
+ justify-content: center;
850
+ align-items: center;
851
+ width: 100%;
852
+ height: 100%;
853
+ overflow: hidden;
854
+ transition: opacity 0.2s;
855
+ }
856
+
857
+ .call .ani-wrap:hover {
858
+ opacity: 0.9;
859
+ }
860
+
861
+ .call-content {
862
+ display: flex;
863
+ align-items: center;
864
+ justify-content: center;
865
+ }
866
+
867
+ .btn-text {
868
+ margin-left: 10px;
869
+ }
870
+
871
+ /* 这里可以添加实际的电话图标样式 */
872
+ /* .iconfont.hb-tel {
873
+ display: inline-block;
874
+ width: 16px;
875
+ height: 16px;
876
+ background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/></svg>');
877
+ background-repeat: no-repeat;
878
+ background-position: center;
879
+ background-size: contain;
880
+ } */
881
+
882
+ .hb-tel:before {
883
+ content: "\E642";
884
+ }
940
885
  .ele-lottie .ele-lotwrap {
941
886
  overflow: hidden;
942
- }.element-ditu .ani-wrap {
887
+ }.button {
888
+ position: absolute;
889
+ cursor: pointer;
890
+ user-select: none;
891
+ }
892
+
893
+ .button .ani-wrap {
894
+ display: flex;
895
+ justify-content: center;
896
+ align-items: center;
897
+ width: 100%;
898
+ height: 100%;
899
+ overflow: hidden;
900
+ transition: opacity 0.2s;
901
+ }
902
+
903
+ .button .ani-wrap:hover {
904
+ opacity: 0.9;
905
+ }
906
+
907
+ .button-content {
908
+ display: flex;
909
+ align-items: center;
910
+ justify-content: center;
911
+ }
912
+
913
+ .btn-text {
914
+ margin-left: 10px;
915
+ }.element-ditu .ani-wrap {
943
916
  width: 100%;
944
917
  height: 100%;
945
918
  overflow: hidden
@@ -1033,337 +1006,14 @@ cursor: not-allowed;
1033
1006
  }
1034
1007
  .dynamic-placeholder-input:-ms-input-placeholder {
1035
1008
  color: var(--placeholder-color, #999);
1036
- }.button {
1037
- position: absolute;
1038
- cursor: pointer;
1039
- user-select: none;
1040
- }
1009
+ }/* Iconfont definition */
1010
+ .icon-danmuliebiao1:before {
1011
+ content: "\E68A";
1012
+ }
1041
1013
 
1042
- .button .ani-wrap {
1043
- display: flex;
1044
- justify-content: center;
1045
- align-items: center;
1046
- width: 100%;
1047
- height: 100%;
1048
- overflow: hidden;
1049
- transition: opacity 0.2s;
1050
- }
1051
-
1052
- .button .ani-wrap:hover {
1053
- opacity: 0.9;
1054
- }
1055
-
1056
- .button-content {
1057
- display: flex;
1058
- align-items: center;
1059
- justify-content: center;
1060
- }
1061
-
1062
- .btn-text {
1063
- margin-left: 10px;
1064
- }
1065
- body, html {
1066
- width: 100%;
1067
- height: 100%;
1068
- }
1069
- * {
1070
- padding: 0;
1071
- margin: 0;
1072
- box-sizing: border-box;
1073
- white-space: normal;
1074
- word-break: break-all;
1075
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1076
- }
1077
-
1078
- @font-face {
1079
- font-family: iconfont;
1080
- src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
1081
- url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
1082
- url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
1083
- }
1084
-
1085
- .iconfont {
1086
- font-family: "iconfont" !important;
1087
- font-size: 16px;
1088
- font-style: normal;
1089
- -webkit-font-smoothing: antialiased;
1090
- -moz-osx-font-smoothing: grayscale;
1091
- }
1092
-
1093
-
1094
- ::-webkit-scrollbar {
1095
- -webkit-appearance: none;
1096
- width: 2px;
1097
- height:2px;
1098
- display:none;
1099
- }
1100
-
1101
- ::-webkit-scrollbar-button {
1102
- display: none
1103
- }
1104
-
1105
- ::-webkit-scrollbar-corner,::-webkit-scrollbar-track {
1106
- background-color: transparent
1107
- }
1108
-
1109
- ::-webkit-scrollbar-thumb {
1110
- border-radius: 2px;
1111
- background-color: rgba(0,0,0,.5)
1112
- }
1113
-
1114
-
1115
- #index {
1116
- position: relative;
1117
- width: 100%;
1118
- height: 100%;
1119
- overflow: hidden;
1120
- }
1121
-
1122
- #page-list {
1123
- position: relative;
1124
- width: 100%;
1125
- height: 100%;
1126
- max-width: 800px;
1127
- margin: 0 auto;
1128
- z-index: 1
1129
- }
1130
-
1131
- #page-list.hardware .eles {
1132
- will-change: transform
1133
- }
1134
-
1135
- #page-list .bg-wrap {
1136
- position: absolute;
1137
- left: 0;
1138
- top: 0;
1139
- right: 0;
1140
- bottom: 0;
1141
- z-index: -1
1142
- }
1143
-
1144
- #page-list .ani-pause .ani-wrap {
1145
- animation-play-state: paused!important;
1146
- -webkit-animation-play-state: paused!important
1147
- }
1148
-
1149
- #page-list .audio-wrap {
1150
- z-index: 10
1151
- }
1152
-
1153
- #page-list .audio-wrap,#page-list .page-item {
1154
- position: absolute;
1155
- left: 0;
1156
- top: 0;
1157
- right: 0;
1158
- bottom: 0
1159
- }
1160
-
1161
- #page-list .page-item {
1162
- z-index: 0;
1163
- overflow: hidden;
1164
- display: none;
1165
- visibility: hidden;
1166
- transform-style: preserve-3d;
1167
- -webkit-backface-visibility: hidden;
1168
- backface-visibility: hidden;
1169
- transition-timing-function: cubic-bezier(.1,.57,.1,1)
1170
- }
1171
-
1172
- #page-list .page-item .count-down {
1173
- display: none
1174
- }
1175
-
1176
- #page-list .page-item .has-ani {
1177
- display: none!important
1178
- }
1179
-
1180
- #page-list .page-item .ele-effect,#page-list .page-item .page-bg {
1181
- display: none
1182
- }
1183
-
1184
- #page-list .page-item .limit-ani .ani-wrap,#page-list .page-item .limit-ani .eles {
1185
- animation: none!important
1186
- }
1187
-
1188
- #page-list .page-item .ani-pause .ani-wrap {
1189
- animation-play-state: paused!important;
1190
- -webkit-animation-play-state: paused!important
1191
- }
1192
-
1193
- #page-list .page-item .showAniEle .has-ani {
1194
- display: block!important
1195
- }
1196
-
1197
- #page-list .page-item .showAniEle .page-bg {
1198
- display: block
1199
- }
1200
-
1201
- #page-list .page-item .scroll-wrap {
1202
- position: relative;
1203
- width: 100%;
1204
- overflow: hidden
1205
- }
1206
-
1207
- #page-list .page-item .amap-maps {
1208
- display: none
1209
- }
1210
-
1211
- #page-list .page-item.current {
1212
- z-index: 1;
1213
- display: block;
1214
- visibility: visible
1215
- }
1216
-
1217
- #page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
1218
- display: block
1219
- }
1220
-
1221
- #page-list .page-item.current .page-wrap .eles {
1222
- text-align: left
1223
- }
1224
-
1225
- #page-list .page-item.current .page-wrap .page-bg {
1226
- display: block
1227
- }
1228
-
1229
- #page-list .page-item.current .page-wrap .has-ani {
1230
- display: block!important
1231
- }
1232
-
1233
- #page-list .page-item.visibility {
1234
- display: block;
1235
- visibility: hidden
1236
- }
1237
-
1238
- #page-list .page-item.active {
1239
- z-index: 2;
1240
- visibility: visible
1241
- }
1242
-
1243
- #page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
1244
- display: block
1245
- }
1246
-
1247
- #page-list .page-item .page-wrap {
1248
- position: relative;
1249
- width: 100%;
1250
- height: 100%;
1251
- overflow: hidden;
1252
- z-index: 1
1253
- }
1254
-
1255
- #page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
1256
- position: absolute;
1257
- right: 0;
1258
- left: 0;
1259
- top: 0;
1260
- bottom: 0;
1261
- width: 100%;
1262
- height: 100%;
1263
- overflow: hidden
1264
- }
1265
-
1266
- #page-list .page-item .page-wrap .page-bg {
1267
- background-size: cover;
1268
- background-repeat: no-repeat;
1269
- background-position: 50% 50%;
1270
- z-index: 0
1271
- }
1272
-
1273
- #page-list .page-item .page-wrap .ele-wrap {
1274
- z-index: 1
1275
- }
1276
-
1277
- #page-list .page-item .page-wrap .eles {
1278
- position: absolute
1279
- }
1280
-
1281
- #page-list .tip-cover {
1282
- position: fixed;
1283
- left: 0;
1284
- top: 0;
1285
- width: 100%;
1286
- height: 100%;
1287
- display: -ms-flexbox;
1288
- display: flex;
1289
- -ms-flex-align: center;
1290
- align-items: center;
1291
- -ms-flex-pack: center;
1292
- justify-content: center;
1293
- z-index: 999;
1294
- background-color: rgba(0,0,0,.7)
1295
- }
1296
-
1297
- #page-list .tip-cover .tip {
1298
- width: 80%;
1299
- max-width: 250px;
1300
- padding: 10px;
1301
- border-radius: 5px;
1302
- background-color: #fff
1303
- }
1304
-
1305
- #page-list .tip-cover .tip-btn {
1306
- display: block;
1307
- margin: 25px auto;
1308
- width: 120px;
1309
- height: 30px;
1310
- color: #fff;
1311
- border-radius: 4px;
1312
- text-align: center;
1313
- font-size: 14px;
1314
- line-height: 30px;
1315
- background: #ed5566
1316
- }
1317
-
1318
- #page-list .tip-cover .tip-content {
1319
- font-size: 14px;
1320
- padding-top: 30px;
1321
- }
1322
-
1323
- .tip-cover {
1324
- position: fixed;
1325
- left: 0;
1326
- top: 0;
1327
- width: 100%;
1328
- height: 100%;
1329
- display: -ms-flexbox;
1330
- display: flex;
1331
- -ms-flex-align: center;
1332
- align-items: center;
1333
- -ms-flex-pack: center;
1334
- justify-content: center;
1335
- z-index: 999;
1336
- background-color: rgba(0,0,0,.7)
1337
- }
1338
-
1339
- .tip-cover .tip {
1340
- width: 80%;
1341
- max-width: 250px;
1342
- padding: 5px;
1343
- border-radius: 3px;
1344
- background-color: #fff
1345
- }
1346
-
1347
- .tip-cover .tip-btn {
1348
- display: block;
1349
- margin: 13px auto;
1350
- width: 64px;
1351
- height: 20px;
1352
- color: #fff;
1353
- border-radius: 4px;
1354
- text-align: center;
1355
- font-size: 14px;
1356
- line-height: 20px;
1357
- background: #ed5566;
1358
- }
1359
- /* Iconfont definition */
1360
- .icon-danmuliebiao1:before {
1361
- content: "\E68A";
1362
- }
1363
-
1364
- .icon-cuowu2:before {
1365
- content: "\E65E";
1366
- }
1014
+ .icon-cuowu2:before {
1015
+ content: "\E65E";
1016
+ }
1367
1017
 
1368
1018
  i {
1369
1019
  font-style: normal;
@@ -2264,7 +1914,7 @@ font-style: normal;
2264
1914
  user-select: none;
2265
1915
  }
2266
1916
 
2267
- .f-single {
1917
+ .f-select {
2268
1918
  cursor: pointer;
2269
1919
  }
2270
1920
 
@@ -2272,15 +1922,13 @@ font-style: normal;
2272
1922
  position: relative;
2273
1923
  }
2274
1924
 
2275
- .f-single .ani-wrap .fs-tit {
1925
+ .f-select .ani-wrap .fs-tit {
1926
+ position: relative;
2276
1927
  display: flex;
2277
1928
  padding: 0 5px;
2278
- height: 40px;
1929
+ height: 35px;
1930
+ line-height: 35px;
2279
1931
  align-items: center;
2280
- white-space: nowrap;
2281
- overflow: hidden;
2282
- text-overflow: ellipsis;
2283
- border-bottom: 1px solid rgba(153, 153, 153, 1);
2284
1932
  }
2285
1933
 
2286
1934
  .require {
@@ -2289,63 +1937,69 @@ font-style: normal;
2289
1937
  vertical-align: middle;
2290
1938
  }
2291
1939
 
2292
- .f-single ul {
2293
- padding: 15px;
2294
- margin: 0;
2295
- list-style: none;
2296
- }
1940
+ .fs-cont {
1941
+ padding-right: 15px;
1942
+ white-space: nowrap;
1943
+ overflow: hidden;
1944
+ text-overflow: ellipsis;
1945
+ flex-grow: 1;
1946
+ }
2297
1947
 
2298
- .f-single ul li {
2299
- display: flex;
2300
- align-items: center;
2301
- margin-top: 12px;
2302
- font-size: 0;
1948
+ .icon-bofang1 {
1949
+ font-size: 12px;
1950
+ transition: transform 0.2s ease;
2303
1951
  }
2304
1952
 
2305
- .f-single ul li:first-child {
2306
- margin-top: 0;
1953
+ .rotate-180 {
1954
+ transform: rotate(180deg) !important;
2307
1955
  }
2308
1956
 
2309
- .fs-circle {
2310
- display: inline-block;
2311
- width: 16px;
2312
- height: 16px;
2313
- border-radius: 50%;
2314
- position: relative;
2315
- transition: all 0.2s;
1957
+ .f-real {
1958
+ position: absolute;
1959
+ left: 0;
1960
+ top: 0;
1961
+ width: 100%;
1962
+ height: 100%;
1963
+ z-index: 1;
1964
+ opacity: 0;
1965
+ cursor: pointer;
2316
1966
  }
2317
1967
 
2318
- .fs-circle.selected {
2319
- background-color: #2687f1;
2320
- border-color: #2687f1 !important;
1968
+ .dropdown-menu {
1969
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
2321
1970
  }
2322
1971
 
2323
- .fs-circle.selected::after {
2324
- content: "";
2325
- position: absolute;
2326
- top: 3px;
2327
- left: 3px;
2328
- width: 8px;
2329
- height: 8px;
2330
- border-radius: 50%;
2331
- background-color: white;
1972
+ .dropdown-item {
1973
+ padding: 8px 10px;
1974
+ cursor: pointer;
1975
+ transition: background-color 0.2s;
2332
1976
  }
2333
1977
 
2334
- .fs-txt {
2335
- display: inline-block;
2336
- width: calc(100% - 16px);
2337
- padding-left: 8px;
2338
- vertical-align: top;
2339
- word-break: break-all;
2340
- font-size: 14px;
2341
- line-height: 1.2;
1978
+ .dropdown-item:hover {
1979
+ background-color: #f5f5f5;
2342
1980
  }
2343
1981
 
2344
- .has-error .fs-tit {
2345
- border-bottom-color: #ff4d4f;
1982
+ .dropdown-item.selected {
1983
+ background-color: #e6f7ff;
1984
+ color: #1890ff;
1985
+ }
1986
+
1987
+ .f-select .fs-tit .icon-bofang1 {
1988
+ position: absolute;
1989
+ right: 10px;
1990
+ font-size: 12px;
1991
+ display: inline-block;
1992
+ transform: rotate(90deg);
1993
+ }
1994
+
1995
+ .icon-bofang1:before {
1996
+ content: "\E6CF";
1997
+ }
1998
+
1999
+ .has-error {
2000
+ border-color: #ff4d4f !important;
2346
2001
  }
2347
2002
 
2348
- /* 错误提示样式 */
2349
2003
  .error-tip {
2350
2004
  position: fixed;
2351
2005
  left: 0;
@@ -3829,12 +3483,362 @@ to {
3829
3483
  -webkit-transform: none;
3830
3484
  transform: none
3831
3485
  }
3832
- } */.ele-form {
3486
+ } */
3487
+ body, html {
3488
+ width: 100%;
3489
+ height: 100%;
3490
+ }
3491
+ * {
3492
+ padding: 0;
3493
+ margin: 0;
3494
+ box-sizing: border-box;
3495
+ white-space: normal;
3496
+ word-break: break-all;
3497
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
3498
+ }
3499
+
3500
+ @font-face {
3501
+ font-family: iconfont;
3502
+ src: url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.f1262e4.woff2) format("woff2"),
3503
+ url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.788d827.woff) format("woff"),
3504
+ url(https://h5cdn.unika.cc/static/font/iconfont/iconfont.9541e59.ttf) format("truetype")
3505
+ }
3506
+
3507
+ .iconfont {
3508
+ font-family: "iconfont" !important;
3509
+ font-size: 16px;
3510
+ font-style: normal;
3511
+ -webkit-font-smoothing: antialiased;
3512
+ -moz-osx-font-smoothing: grayscale;
3513
+ }
3514
+
3515
+
3516
+ ::-webkit-scrollbar {
3517
+ -webkit-appearance: none;
3518
+ width: 2px;
3519
+ height:2px;
3520
+ display:none;
3521
+ }
3522
+
3523
+ ::-webkit-scrollbar-button {
3524
+ display: none
3525
+ }
3526
+
3527
+ ::-webkit-scrollbar-corner,::-webkit-scrollbar-track {
3528
+ background-color: transparent
3529
+ }
3530
+
3531
+ ::-webkit-scrollbar-thumb {
3532
+ border-radius: 2px;
3533
+ background-color: rgba(0,0,0,.5)
3534
+ }
3535
+
3536
+
3537
+ #index {
3538
+ position: relative;
3539
+ width: 100%;
3540
+ height: 100%;
3541
+ overflow: hidden;
3542
+ }
3543
+
3544
+ #page-list {
3545
+ position: relative;
3546
+ width: 100%;
3547
+ height: 100%;
3548
+ max-width: 800px;
3549
+ margin: 0 auto;
3550
+ z-index: 1
3551
+ }
3552
+
3553
+ #page-list.hardware .eles {
3554
+ will-change: transform
3555
+ }
3556
+
3557
+ #page-list .bg-wrap {
3558
+ position: absolute;
3559
+ left: 0;
3560
+ top: 0;
3561
+ right: 0;
3562
+ bottom: 0;
3563
+ z-index: -1
3564
+ }
3565
+
3566
+ #page-list .ani-pause .ani-wrap {
3567
+ animation-play-state: paused!important;
3568
+ -webkit-animation-play-state: paused!important
3569
+ }
3570
+
3571
+ #page-list .audio-wrap {
3572
+ z-index: 10
3573
+ }
3574
+
3575
+ #page-list .audio-wrap,#page-list .page-item {
3576
+ position: absolute;
3577
+ left: 0;
3578
+ top: 0;
3579
+ right: 0;
3580
+ bottom: 0
3581
+ }
3582
+
3583
+ #page-list .page-item {
3584
+ z-index: 0;
3585
+ overflow: hidden;
3586
+ display: none;
3587
+ visibility: hidden;
3588
+ transform-style: preserve-3d;
3589
+ -webkit-backface-visibility: hidden;
3590
+ backface-visibility: hidden;
3591
+ transition-timing-function: cubic-bezier(.1,.57,.1,1)
3592
+ }
3593
+
3594
+ #page-list .page-item .count-down {
3595
+ display: none
3596
+ }
3597
+
3598
+ #page-list .page-item .has-ani {
3599
+ display: none!important
3600
+ }
3601
+
3602
+ #page-list .page-item .ele-effect,#page-list .page-item .page-bg {
3603
+ display: none
3604
+ }
3605
+
3606
+ #page-list .page-item .limit-ani .ani-wrap,#page-list .page-item .limit-ani .eles {
3607
+ animation: none!important
3608
+ }
3609
+
3610
+ #page-list .page-item .ani-pause .ani-wrap {
3611
+ animation-play-state: paused!important;
3612
+ -webkit-animation-play-state: paused!important
3613
+ }
3614
+
3615
+ #page-list .page-item .showAniEle .has-ani {
3616
+ display: block!important
3617
+ }
3618
+
3619
+ #page-list .page-item .showAniEle .page-bg {
3620
+ display: block
3621
+ }
3622
+
3623
+ #page-list .page-item .scroll-wrap {
3624
+ position: relative;
3625
+ width: 100%;
3626
+ overflow: hidden
3627
+ }
3628
+
3629
+ #page-list .page-item .amap-maps {
3630
+ display: none
3631
+ }
3632
+
3633
+ #page-list .page-item.current {
3634
+ z-index: 1;
3635
+ display: block;
3636
+ visibility: visible
3637
+ }
3638
+
3639
+ #page-list .page-item.current .amap-maps,#page-list .page-item.current .count-down,#page-list .page-item.current .page-wrap .ele-effect {
3640
+ display: block
3641
+ }
3642
+
3643
+ #page-list .page-item.current .page-wrap .eles {
3644
+ text-align: left
3645
+ }
3646
+
3647
+ #page-list .page-item.current .page-wrap .page-bg {
3648
+ display: block
3649
+ }
3650
+
3651
+ #page-list .page-item.current .page-wrap .has-ani {
3652
+ display: block!important
3653
+ }
3654
+
3655
+ #page-list .page-item.visibility {
3656
+ display: block;
3657
+ visibility: hidden
3658
+ }
3659
+
3660
+ #page-list .page-item.active {
3661
+ z-index: 2;
3662
+ visibility: visible
3663
+ }
3664
+
3665
+ #page-list .page-item.active .amap-maps,#page-list .page-item.active .count-down {
3666
+ display: block
3667
+ }
3668
+
3669
+ #page-list .page-item .page-wrap {
3670
+ position: relative;
3671
+ width: 100%;
3672
+ height: 100%;
3673
+ overflow: hidden;
3674
+ z-index: 1
3675
+ }
3676
+
3677
+ #page-list .page-item .page-wrap .ele-wrap,#page-list .page-item .page-wrap .page-bg {
3678
+ position: absolute;
3679
+ right: 0;
3680
+ left: 0;
3681
+ top: 0;
3682
+ bottom: 0;
3683
+ width: 100%;
3684
+ height: 100%;
3685
+ overflow: hidden
3686
+ }
3687
+
3688
+ #page-list .page-item .page-wrap .page-bg {
3689
+ background-size: cover;
3690
+ background-repeat: no-repeat;
3691
+ background-position: 50% 50%;
3692
+ z-index: 0
3693
+ }
3694
+
3695
+ #page-list .page-item .page-wrap .ele-wrap {
3696
+ z-index: 1
3697
+ }
3698
+
3699
+ #page-list .page-item .page-wrap .eles {
3700
+ position: absolute
3701
+ }
3702
+
3703
+ #page-list .tip-cover {
3704
+ position: fixed;
3705
+ left: 0;
3706
+ top: 0;
3707
+ width: 100%;
3708
+ height: 100%;
3709
+ display: -ms-flexbox;
3710
+ display: flex;
3711
+ -ms-flex-align: center;
3712
+ align-items: center;
3713
+ -ms-flex-pack: center;
3714
+ justify-content: center;
3715
+ z-index: 999;
3716
+ background-color: rgba(0,0,0,.7)
3717
+ }
3718
+
3719
+ #page-list .tip-cover .tip {
3720
+ width: 80%;
3721
+ max-width: 250px;
3722
+ padding: 10px;
3723
+ border-radius: 5px;
3724
+ background-color: #fff
3725
+ }
3726
+
3727
+ #page-list .tip-cover .tip-btn {
3728
+ display: block;
3729
+ margin: 25px auto;
3730
+ width: 120px;
3731
+ height: 30px;
3732
+ color: #fff;
3733
+ border-radius: 4px;
3734
+ text-align: center;
3735
+ font-size: 14px;
3736
+ line-height: 30px;
3737
+ background: #ed5566
3738
+ }
3739
+
3740
+ #page-list .tip-cover .tip-content {
3741
+ font-size: 14px;
3742
+ padding-top: 30px;
3743
+ }
3744
+
3745
+ .tip-cover {
3746
+ position: fixed;
3747
+ left: 0;
3748
+ top: 0;
3749
+ width: 100%;
3750
+ height: 100%;
3751
+ display: -ms-flexbox;
3752
+ display: flex;
3753
+ -ms-flex-align: center;
3754
+ align-items: center;
3755
+ -ms-flex-pack: center;
3756
+ justify-content: center;
3757
+ z-index: 999;
3758
+ background-color: rgba(0,0,0,.7)
3759
+ }
3760
+
3761
+ .tip-cover .tip {
3762
+ width: 80%;
3763
+ max-width: 250px;
3764
+ padding: 5px;
3765
+ border-radius: 3px;
3766
+ background-color: #fff
3767
+ }
3768
+
3769
+ .tip-cover .tip-btn {
3770
+ display: block;
3771
+ margin: 13px auto;
3772
+ width: 64px;
3773
+ height: 20px;
3774
+ color: #fff;
3775
+ border-radius: 4px;
3776
+ text-align: center;
3777
+ font-size: 14px;
3778
+ line-height: 20px;
3779
+ background: #ed5566;
3780
+ }
3781
+ .ele-effect {
3782
+ will-change: transform;
3783
+ }
3784
+
3785
+ .ele-effect .effect-wrap {
3786
+ position: relative;
3787
+ width: 100%;
3788
+ height: 100%;
3789
+ }
3790
+
3791
+ .particle {
3792
+ position: absolute;
3793
+ background-repeat: no-repeat;
3794
+ background-size: contain;
3795
+ animation-name: falling;
3796
+ animation-timing-function: linear;
3797
+ animation-iteration-count: infinite;
3798
+ will-change: transform;
3799
+ }
3800
+
3801
+ @keyframes falling {
3802
+ 0% {
3803
+ transform: translateY(0) rotate(0deg);
3804
+ opacity: 1;
3805
+ }
3806
+ 80% {
3807
+ opacity: 0.8;
3808
+ }
3809
+ 100% {
3810
+ transform: translateY(100vh) rotate(360deg);
3811
+ opacity: 0;
3812
+ }
3813
+ }
3814
+ .ele-lottie .ele-lotwrap {
3815
+ overflow: hidden
3816
+ }
3817
+
3818
+ .ele-effect .effect-wrap {
3819
+ position: relative;
3820
+ overflow: hidden;
3821
+ width: 100%;
3822
+ height: 100%
3823
+ }
3824
+
3825
+ .ele-effect .e-small {
3826
+ position: absolute;
3827
+ width: 24px;
3828
+ height: 24px;
3829
+ background-image: url(https://h5cdn.unika.cc/static/img/uniComponents/snow.png);
3830
+ background-size: cover;
3831
+ background-repeat: no-repeat;
3832
+ -webkit-transform-origin: center;
3833
+ transform-origin: center;
3834
+ -webkit-animation: snow 5s linear infinite;
3835
+ animation: snow 5s linear infinite
3836
+ }.ele-form {
3833
3837
  position: absolute;
3834
3838
  user-select: none;
3835
3839
  }
3836
3840
 
3837
- .f-select {
3841
+ .f-single {
3838
3842
  cursor: pointer;
3839
3843
  }
3840
3844
 
@@ -3842,13 +3846,15 @@ to {
3842
3846
  position: relative;
3843
3847
  }
3844
3848
 
3845
- .f-select .ani-wrap .fs-tit {
3846
- position: relative;
3849
+ .f-single .ani-wrap .fs-tit {
3847
3850
  display: flex;
3848
3851
  padding: 0 5px;
3849
- height: 35px;
3850
- line-height: 35px;
3852
+ height: 40px;
3851
3853
  align-items: center;
3854
+ white-space: nowrap;
3855
+ overflow: hidden;
3856
+ text-overflow: ellipsis;
3857
+ border-bottom: 1px solid rgba(153, 153, 153, 1);
3852
3858
  }
3853
3859
 
3854
3860
  .require {
@@ -3857,69 +3863,63 @@ to {
3857
3863
  vertical-align: middle;
3858
3864
  }
3859
3865
 
3860
- .fs-cont {
3861
- padding-right: 15px;
3862
- white-space: nowrap;
3863
- overflow: hidden;
3864
- text-overflow: ellipsis;
3865
- flex-grow: 1;
3866
- }
3867
-
3868
- .icon-bofang1 {
3869
- font-size: 12px;
3870
- transition: transform 0.2s ease;
3871
- }
3872
-
3873
- .rotate-180 {
3874
- transform: rotate(180deg) !important;
3875
- }
3876
-
3877
- .f-real {
3878
- position: absolute;
3879
- left: 0;
3880
- top: 0;
3881
- width: 100%;
3882
- height: 100%;
3883
- z-index: 1;
3884
- opacity: 0;
3885
- cursor: pointer;
3866
+ .f-single ul {
3867
+ padding: 15px;
3868
+ margin: 0;
3869
+ list-style: none;
3886
3870
  }
3887
3871
 
3888
- .dropdown-menu {
3889
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
3872
+ .f-single ul li {
3873
+ display: flex;
3874
+ align-items: center;
3875
+ margin-top: 12px;
3876
+ font-size: 0;
3890
3877
  }
3891
3878
 
3892
- .dropdown-item {
3893
- padding: 8px 10px;
3894
- cursor: pointer;
3895
- transition: background-color 0.2s;
3879
+ .f-single ul li:first-child {
3880
+ margin-top: 0;
3896
3881
  }
3897
3882
 
3898
- .dropdown-item:hover {
3899
- background-color: #f5f5f5;
3883
+ .fs-circle {
3884
+ display: inline-block;
3885
+ width: 16px;
3886
+ height: 16px;
3887
+ border-radius: 50%;
3888
+ position: relative;
3889
+ transition: all 0.2s;
3900
3890
  }
3901
3891
 
3902
- .dropdown-item.selected {
3903
- background-color: #e6f7ff;
3904
- color: #1890ff;
3892
+ .fs-circle.selected {
3893
+ background-color: #2687f1;
3894
+ border-color: #2687f1 !important;
3905
3895
  }
3906
3896
 
3907
- .f-select .fs-tit .icon-bofang1 {
3908
- position: absolute;
3909
- right: 10px;
3910
- font-size: 12px;
3911
- display: inline-block;
3912
- transform: rotate(90deg);
3897
+ .fs-circle.selected::after {
3898
+ content: "";
3899
+ position: absolute;
3900
+ top: 3px;
3901
+ left: 3px;
3902
+ width: 8px;
3903
+ height: 8px;
3904
+ border-radius: 50%;
3905
+ background-color: white;
3913
3906
  }
3914
3907
 
3915
- .icon-bofang1:before {
3916
- content: "\E6CF";
3908
+ .fs-txt {
3909
+ display: inline-block;
3910
+ width: calc(100% - 16px);
3911
+ padding-left: 8px;
3912
+ vertical-align: top;
3913
+ word-break: break-all;
3914
+ font-size: 14px;
3915
+ line-height: 1.2;
3917
3916
  }
3918
3917
 
3919
- .has-error {
3920
- border-color: #ff4d4f !important;
3918
+ .has-error .fs-tit {
3919
+ border-bottom-color: #ff4d4f;
3921
3920
  }
3922
3921
 
3922
+ /* 错误提示样式 */
3923
3923
  .error-tip {
3924
3924
  position: fixed;
3925
3925
  left: 0;
@@ -3927,92 +3927,45 @@ to {
3927
3927
  width: 100%;
3928
3928
  height: 100%;
3929
3929
  z-index: 1000;
3930
- }.ele-form {
3931
- position: absolute;
3932
- user-select: none;
3933
- }
3934
-
3935
- .f-multiple {
3936
- cursor: pointer;
3937
- }
3938
-
3939
- .ani-wrap {
3940
- position: relative;
3941
- }
3942
-
3943
- .f-multiple .ani-wrap .fs-tit {
3944
- display: flex;
3945
- padding: 0 5px;
3946
- height: 40px;
3947
- align-items: center;
3948
- white-space: nowrap;
3949
- overflow: hidden;
3950
- text-overflow: ellipsis;
3951
- border-bottom: 1px solid rgba(153, 153, 153, 1);
3952
- }
3953
-
3954
- .require {
3955
- padding: 0 5px 0 0;
3956
- color: red;
3957
- vertical-align: middle;
3958
- }
3959
-
3960
- .f-multiple ul {
3961
- padding: 15px;
3962
- margin: 0;
3963
- list-style: none;
3964
- }
3965
-
3966
- .f-multiple ul li {
3967
- margin-top: 12px;
3968
- font-size: 0;
3969
- display: flex;
3970
- align-items: center;
3930
+ }
3931
+ .global.tel {
3932
+ width: 35px;
3933
+ height: 55px;
3934
+ border-radius: 50%;
3935
+ text-align: center;
3936
+ margin-bottom: 15px;
3937
+ border: 2px solid #fff;
3971
3938
  cursor: pointer;
3972
3939
  }
3973
-
3974
- .f-multiple ul li:first-child {
3975
- margin-top: 0;
3976
- }
3977
-
3978
- .fs-circle {
3979
- display: inline-block;
3980
- width: 16px;
3981
- height: 16px;
3940
+ .icon-dianhua:before { content: "\E60E"; }
3941
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3942
+ .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
3943
+ .global.video {
3944
+ width: 35px;
3945
+ height: 55px;
3982
3946
  border-radius: 50%;
3983
- position: relative;
3984
- transition: all 0.2s;
3947
+ text-align: center;
3948
+ margin-bottom: 5px;
3949
+ border: 2px solid #fff;
3950
+ cursor: pointer;
3985
3951
  }
3986
-
3987
- .fs-circle.selected {
3988
- background-color: #2687f1;
3989
- border-color: #2687f1 !important;
3952
+ .icon-shipin2:before { content: "\E611"; }
3953
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3954
+ .global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
3990
3955
  }
3991
3956
 
3992
- .fs-circle.selected::after {
3993
- content: "";
3994
- position: absolute;
3995
- top: 3px;
3996
- left: 3px;
3997
- width: 8px;
3998
- height: 8px;
3957
+ .global.receipt {
3958
+ width: 35px;
3959
+ height: 55px;
3999
3960
  border-radius: 50%;
4000
- background-color: white;
4001
- }
4002
-
4003
- .fs-txt {
4004
- display: inline-block;
4005
- width: calc(100% - 16px);
4006
- padding-left: 8px;
4007
- vertical-align: top;
4008
- word-break: break-all;
4009
- font-size: 14px;
4010
- line-height: 1.2;
4011
- }
4012
-
4013
- .has-error .fs-tit {
4014
- border-bottom-color: #ff4d4f;
3961
+ text-align: center;
3962
+ margin-bottom: 5px;
3963
+ border: 2px solid #fff;
3964
+ cursor: pointer;
4015
3965
  }
3966
+ .icon-liuyan:before { content: "\E636"; }
3967
+ .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
3968
+ .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
4016
3969
  .icon-guanbi:before {
4017
3970
  content: "\E676";
4018
3971
  }
@@ -4407,7 +4360,7 @@ to {
4407
4360
  color: #F44336; /* 失败的红色 */
4408
4361
  }
4409
4362
 
4410
- .global.video {
4363
+ .global.map {
4411
4364
  width: 35px;
4412
4365
  height: 55px;
4413
4366
  border-radius: 50%;
@@ -4416,44 +4369,91 @@ to {
4416
4369
  border: 2px solid #fff;
4417
4370
  cursor: pointer;
4418
4371
  }
4419
- .icon-shipin2:before { content: "\E611"; }
4372
+ .icon-daohang1:before { content: "\E612"; }
4420
4373
  .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4421
- .global.video > span { font-size: 10px; line-height: 20px; display: block; position: relative; top: -4px;
4374
+ .global.map > span { font-size: 10px; line-height: 20px; display: block;}.ele-form {
4375
+ position: absolute;
4376
+ user-select: none;
4422
4377
  }
4423
4378
 
4424
- .global.tel {
4425
- width: 35px;
4426
- height: 55px;
4427
- border-radius: 50%;
4428
- text-align: center;
4429
- margin-bottom: 15px;
4430
- border: 2px solid #fff;
4379
+ .f-multiple {
4431
4380
  cursor: pointer;
4432
4381
  }
4433
- .icon-dianhua:before { content: "\E60E"; }
4434
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4435
- .global.tel > span { font-size: 10px; line-height: 20px; display: block;}
4436
- .global.receipt {
4437
- width: 35px;
4438
- height: 55px;
4439
- border-radius: 50%;
4440
- text-align: center;
4441
- margin-bottom: 5px;
4442
- border: 2px solid #fff;
4382
+
4383
+ .ani-wrap {
4384
+ position: relative;
4385
+ }
4386
+
4387
+ .f-multiple .ani-wrap .fs-tit {
4388
+ display: flex;
4389
+ padding: 0 5px;
4390
+ height: 40px;
4391
+ align-items: center;
4392
+ white-space: nowrap;
4393
+ overflow: hidden;
4394
+ text-overflow: ellipsis;
4395
+ border-bottom: 1px solid rgba(153, 153, 153, 1);
4396
+ }
4397
+
4398
+ .require {
4399
+ padding: 0 5px 0 0;
4400
+ color: red;
4401
+ vertical-align: middle;
4402
+ }
4403
+
4404
+ .f-multiple ul {
4405
+ padding: 15px;
4406
+ margin: 0;
4407
+ list-style: none;
4408
+ }
4409
+
4410
+ .f-multiple ul li {
4411
+ margin-top: 12px;
4412
+ font-size: 0;
4413
+ display: flex;
4414
+ align-items: center;
4443
4415
  cursor: pointer;
4444
4416
  }
4445
- .icon-liuyan:before { content: "\E636"; }
4446
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4447
- .global.receipt > span { font-size: 10px; line-height: 20px; display: block; }
4448
- .global.map {
4449
- width: 35px;
4450
- height: 55px;
4417
+
4418
+ .f-multiple ul li:first-child {
4419
+ margin-top: 0;
4420
+ }
4421
+
4422
+ .fs-circle {
4423
+ display: inline-block;
4424
+ width: 16px;
4425
+ height: 16px;
4451
4426
  border-radius: 50%;
4452
- text-align: center;
4453
- margin-bottom: 5px;
4454
- border: 2px solid #fff;
4455
- cursor: pointer;
4427
+ position: relative;
4428
+ transition: all 0.2s;
4456
4429
  }
4457
- .icon-daohang1:before { content: "\E612"; }
4458
- .iconfont { font-family: iconfont !important; font-size: 30px; font-style: normal; }
4459
- .global.map > span { font-size: 10px; line-height: 20px; display: block;}
4430
+
4431
+ .fs-circle.selected {
4432
+ background-color: #2687f1;
4433
+ border-color: #2687f1 !important;
4434
+ }
4435
+
4436
+ .fs-circle.selected::after {
4437
+ content: "";
4438
+ position: absolute;
4439
+ top: 3px;
4440
+ left: 3px;
4441
+ width: 8px;
4442
+ height: 8px;
4443
+ border-radius: 50%;
4444
+ background-color: white;
4445
+ }
4446
+
4447
+ .fs-txt {
4448
+ display: inline-block;
4449
+ width: calc(100% - 16px);
4450
+ padding-left: 8px;
4451
+ vertical-align: top;
4452
+ word-break: break-all;
4453
+ font-size: 14px;
4454
+ line-height: 1.2;
4455
+ }
4456
+
4457
+ .has-error .fs-tit {
4458
+ border-bottom-color: #ff4d4f;
4459
+ }