aaa-ui-test 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of aaa-ui-test might be problematic. Click here for more details.

Files changed (104) hide show
  1. package/README.md +62 -0
  2. package/babel-plugin-on-demand-load/index.js +74 -0
  3. package/babel-plugin-on-demand-load/report.js +49 -0
  4. package/lib/index.css +2213 -0
  5. package/lib/index.js +10083 -0
  6. package/package.json +73 -0
  7. package/src/assets/css/common/_mixin.scss +130 -0
  8. package/src/assets/css/common/_var.scss +69 -0
  9. package/src/components/address/index.js +8 -0
  10. package/src/components/address/index.scss +72 -0
  11. package/src/components/address/src/address.vue +238 -0
  12. package/src/components/amount/index.js +6 -0
  13. package/src/components/amount/index.scss +88 -0
  14. package/src/components/amount/src/amount.vue +143 -0
  15. package/src/components/button/__tests__/__snapshots__/index.test.js.snap +7 -0
  16. package/src/components/button/__tests__/index.test.js +39 -0
  17. package/src/components/button/index.js +7 -0
  18. package/src/components/button/index.scss +83 -0
  19. package/src/components/button/src/button.vue +39 -0
  20. package/src/components/button-group/index.js +8 -0
  21. package/src/components/button-group/index.scss +37 -0
  22. package/src/components/button-group/src/button-group.vue +21 -0
  23. package/src/components/checkbox/index.js +8 -0
  24. package/src/components/checkbox/index.scss +47 -0
  25. package/src/components/checkbox/src/checkbox-group.vue +53 -0
  26. package/src/components/checkbox/src/checkbox.vue +153 -0
  27. package/src/components/date-selecter/index.js +6 -0
  28. package/src/components/date-selecter/index.scss +190 -0
  29. package/src/components/date-selecter/src/dateselecter.vue +387 -0
  30. package/src/components/default/index.js +6 -0
  31. package/src/components/default/index.scss +25 -0
  32. package/src/components/default/src/default.vue +23 -0
  33. package/src/components/dialog/index.js +146 -0
  34. package/src/components/dialog/index.scss +250 -0
  35. package/src/components/dialog/src/dialog.vue +153 -0
  36. package/src/components/field/index.js +8 -0
  37. package/src/components/field/index.scss +93 -0
  38. package/src/components/field/src/field.vue +57 -0
  39. package/src/components/input/__tests__/__snapshots__/index.test.js.snap +10 -0
  40. package/src/components/input/__tests__/index.test.js +63 -0
  41. package/src/components/input/index.js +8 -0
  42. package/src/components/input/index.scss +91 -0
  43. package/src/components/input/src/input.vue +214 -0
  44. package/src/components/list/index.js +8 -0
  45. package/src/components/list/index.scss +21 -0
  46. package/src/components/list/src/list.vue +16 -0
  47. package/src/components/list-item/index.js +8 -0
  48. package/src/components/list-item/index.scss +126 -0
  49. package/src/components/list-item/src/list-item.vue +59 -0
  50. package/src/components/loading/__tests__/__snapshots__/index.test.js.snap +9 -0
  51. package/src/components/loading/__tests__/index.test.js +30 -0
  52. package/src/components/loading/index.js +128 -0
  53. package/src/components/loading/index.scss +33 -0
  54. package/src/components/loading/src/loading.vue +23 -0
  55. package/src/components/mask/index.js +9 -0
  56. package/src/components/mask/index.scss +16 -0
  57. package/src/components/mask/src/mask.vue +52 -0
  58. package/src/components/notice/index.js +6 -0
  59. package/src/components/notice/index.scss +81 -0
  60. package/src/components/notice/src/notice.vue +128 -0
  61. package/src/components/overlay/index.js +8 -0
  62. package/src/components/overlay/index.scss +119 -0
  63. package/src/components/overlay/src/overlay.vue +72 -0
  64. package/src/components/picker/index.js +7 -0
  65. package/src/components/picker/index.scss +49 -0
  66. package/src/components/picker/src/picker.vue +205 -0
  67. package/src/components/popup/index.js +8 -0
  68. package/src/components/popup/index.scss +79 -0
  69. package/src/components/popup/src/popup.vue +88 -0
  70. package/src/components/popup-header/index.js +8 -0
  71. package/src/components/popup-header/index.scss +45 -0
  72. package/src/components/popup-header/src/popup-header.vue +41 -0
  73. package/src/components/radio/index.js +8 -0
  74. package/src/components/radio/index.scss +19 -0
  75. package/src/components/radio/src/radio.vue +51 -0
  76. package/src/components/select/index.js +8 -0
  77. package/src/components/select/index.scss +51 -0
  78. package/src/components/select/src/select.vue +86 -0
  79. package/src/components/swiper/index.js +6 -0
  80. package/src/components/swiper/index.scss +49 -0
  81. package/src/components/swiper/src/swiper.vue +211 -0
  82. package/src/components/switch/__tests__/__snapshots__/index.test.js.snap +15 -0
  83. package/src/components/switch/__tests__/index.test.js +44 -0
  84. package/src/components/switch/index.js +8 -0
  85. package/src/components/switch/index.scss +85 -0
  86. package/src/components/switch/src/switch.vue +60 -0
  87. package/src/components/tabs/index.js +8 -0
  88. package/src/components/tabs/index.scss +73 -0
  89. package/src/components/tabs/src/tab-item.vue +40 -0
  90. package/src/components/tabs/src/tabs.vue +121 -0
  91. package/src/components/textarea/index.js +8 -0
  92. package/src/components/textarea/index.scss +41 -0
  93. package/src/components/textarea/src/textarea.vue +140 -0
  94. package/src/components/toast/__tests__/__snapshots__/index.test.js.snap +3 -0
  95. package/src/components/toast/__tests__/index.test.js +25 -0
  96. package/src/components/toast/index.js +53 -0
  97. package/src/components/toast/index.scss +102 -0
  98. package/src/components/toast/src/toast.vue +19 -0
  99. package/src/index.js +87 -0
  100. package/src/mixins/emitter.js +33 -0
  101. package/src/mixins/visible.js +23 -0
  102. package/src/utils/clickoutside.js +42 -0
  103. package/src/utils/fix-body.js +46 -0
  104. package/src/utils/utils.js +71 -0
package/lib/index.css ADDED
@@ -0,0 +1,2213 @@
1
+ .jdd-list {
2
+ position: relative;
3
+ width: 100%;
4
+ margin-top: 20px; }
5
+ .jdd-list-title {
6
+ position: relative;
7
+ font-size: 14px;
8
+ color: #999;
9
+ line-height: 1;
10
+ padding: 10px 16px; }
11
+ .jdd-list-body {
12
+ position: relative;
13
+ background-color: #fff; }
14
+
15
+ .jdd-list-item {
16
+ width: 100%;
17
+ padding-left: 16px;
18
+ display: -webkit-box;
19
+ display: -webkit-flex;
20
+ display: -ms-flexbox;
21
+ display: flex;
22
+ -webkit-box-align: center;
23
+ -webkit-align-items: center;
24
+ -ms-flex-align: center;
25
+ align-items: center;
26
+ font-size: 14px;
27
+ height: 56px;
28
+ -webkit-box-sizing: border-box;
29
+ box-sizing: border-box; }
30
+ .jdd-list-item.jdd-list-item-mheight {
31
+ height: 70px; }
32
+ .jdd-list-item.jdd-list-item-mheight .jdd-list-item-icon img {
33
+ width: 44px;
34
+ height: 44px; }
35
+ .jdd-list-item.jdd-list-item-diasbled .jdd-list-item-cont .title {
36
+ color: #ccc; }
37
+ .jdd-list-item.jdd-list-item-diasbled .jdd-list-item-cont .desc {
38
+ color: #ccc; }
39
+ .jdd-list-item.jdd-list-item-diasbled .jdd-list-item-after {
40
+ color: #ccc; }
41
+ .jdd-list-item-inner {
42
+ position: relative;
43
+ width: 100%;
44
+ display: -webkit-box;
45
+ display: -webkit-flex;
46
+ display: -ms-flexbox;
47
+ display: flex;
48
+ -webkit-box-align: center;
49
+ -webkit-align-items: center;
50
+ -ms-flex-align: center;
51
+ align-items: center;
52
+ height: 100%;
53
+ padding-right: 16px;
54
+ -webkit-box-sizing: border-box;
55
+ box-sizing: border-box; }
56
+ .jdd-list-item-border-top {
57
+ position: relative; }
58
+ .jdd-list-item-border-top::before {
59
+ content: " ";
60
+ position: absolute;
61
+ display: block;
62
+ -webkit-transform-origin: top;
63
+ transform-origin: top;
64
+ z-index: 0;
65
+ left: 0;
66
+ top: 0;
67
+ right: 0;
68
+ border-top: 1px solid #eee; }
69
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
70
+ .jdd-list-item-border-top::before {
71
+ -webkit-transform: scaleY(0.5);
72
+ transform: scaleY(0.5); } }
73
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
74
+ .jdd-list-item-border-top::before {
75
+ -webkit-transform: scaleY(0.33333);
76
+ transform: scaleY(0.33333); } }
77
+ .jdd-list-item-border-bottom {
78
+ position: relative; }
79
+ .jdd-list-item-border-bottom::after {
80
+ content: " ";
81
+ position: absolute;
82
+ display: block;
83
+ -webkit-transform-origin: bottom;
84
+ transform-origin: bottom;
85
+ z-index: 0;
86
+ left: 0;
87
+ bottom: 0;
88
+ right: 0;
89
+ border-bottom: 1px solid #eeeeee; }
90
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
91
+ .jdd-list-item-border-bottom::after {
92
+ -webkit-transform: scaleY(0.5);
93
+ transform: scaleY(0.5); } }
94
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
95
+ .jdd-list-item-border-bottom::after {
96
+ -webkit-transform: scaleY(0.33333);
97
+ transform: scaleY(0.33333); } }
98
+ .jdd-list-item-icon {
99
+ margin-right: 12px;
100
+ display: -webkit-box;
101
+ display: -webkit-flex;
102
+ display: -ms-flexbox;
103
+ display: flex;
104
+ -webkit-box-align: center;
105
+ -webkit-align-items: center;
106
+ -ms-flex-align: center;
107
+ align-items: center;
108
+ -webkit-box-pack: center;
109
+ -webkit-justify-content: center;
110
+ -ms-flex-pack: center;
111
+ justify-content: center; }
112
+ .jdd-list-item-icon img {
113
+ display: block;
114
+ width: 24px;
115
+ height: 24px; }
116
+ .jdd-list-item-cont {
117
+ -webkit-box-flex: 1;
118
+ -webkit-flex: 1;
119
+ -ms-flex: 1;
120
+ flex: 1;
121
+ min-width: 0; }
122
+ .jdd-list-item-cont .title {
123
+ font-family: PingFangSC-Medium;
124
+ color: #444;
125
+ font-size: 16px; }
126
+ .jdd-list-item-cont .desc {
127
+ font-size: 12px;
128
+ color: #999999;
129
+ margin-top: 6px; }
130
+ .jdd-list-item-after {
131
+ position: relative;
132
+ color: #999;
133
+ text-align: right; }
134
+ .jdd-list-item-after p {
135
+ font-family: PingFangSC-Regular;
136
+ font-size: 12px;
137
+ color: #999999; }
138
+ .jdd-list-item-after .arrow {
139
+ display: none;
140
+ height: 6px;
141
+ width: 6px;
142
+ border-width: 1px 1px 0 0;
143
+ border-color: #999;
144
+ border-style: solid;
145
+ -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
146
+ transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
147
+ position: relative;
148
+ top: -2px;
149
+ position: absolute;
150
+ top: 50%;
151
+ margin-top: -4px;
152
+ right: 2px;
153
+ -webkit-box-sizing: content-box;
154
+ box-sizing: content-box; }
155
+
156
+ .jdd-list-item-link .jdd-list-item-after {
157
+ padding-right: 16px; }
158
+ .jdd-list-item-link .jdd-list-item-after .arrow {
159
+ display: inline-block; }
160
+
161
+ .jdd-list-item-link:not(.jdd-list-item-diasbled):active {
162
+ background-color: #F2F2F2; }
163
+
164
+ .jdd-button {
165
+ display: inline-block;
166
+ font-family: PingFangSC-Medium;
167
+ text-align: center;
168
+ font-size: 18px;
169
+ color: #fff;
170
+ margin: 0;
171
+ border-radius: 2px; }
172
+ .jdd-button-large {
173
+ width: 100%;
174
+ height: 50px;
175
+ line-height: 50px; }
176
+ .jdd-button-medium {
177
+ height: 50px;
178
+ line-height: 50px;
179
+ padding: 0 84px;
180
+ width: auto; }
181
+ .jdd-button-small {
182
+ height: 30px;
183
+ line-height: 30px;
184
+ font-size: 12px;
185
+ width: 80px;
186
+ border-radius: 30px;
187
+ background: #fff; }
188
+ .jdd-button-default {
189
+ background: #4D7BFE; }
190
+ .jdd-button-default:active {
191
+ background: #4B84E1; }
192
+ .jdd-button-disabled {
193
+ background: #ccc; }
194
+ .jdd-button-sick {
195
+ background: #B9D1F8; }
196
+ .jdd-button-short {
197
+ background: #4D7BFE; }
198
+ .jdd-button-short:active {
199
+ background: #4B84E1; }
200
+ .jdd-button-white.jdd-button-large {
201
+ background: #fff;
202
+ position: relative;
203
+ color: #4D7BFE; }
204
+ .jdd-button-white.jdd-button-large::before {
205
+ display: block;
206
+ content: " ";
207
+ position: absolute;
208
+ pointer-events: none;
209
+ -webkit-backface-visibility: hidden;
210
+ backface-visibility: hidden;
211
+ -webkit-transform-origin: left top;
212
+ transform-origin: left top;
213
+ z-index: 0;
214
+ left: 0;
215
+ top: 0;
216
+ border: 1px solid #DDDDDD;
217
+ border-radius: 2px; }
218
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
219
+ .jdd-button-white.jdd-button-large::before {
220
+ border-radius: 4px;
221
+ right: -100%;
222
+ bottom: -100%;
223
+ -webkit-transform: scale(0.5);
224
+ transform: scale(0.5); } }
225
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
226
+ .jdd-button-white.jdd-button-large::before {
227
+ border-radius: 6px;
228
+ right: -200%;
229
+ bottom: -200%;
230
+ -webkit-transform: scale(0.33333);
231
+ transform: scale(0.33333); } }
232
+ .jdd-button-white.jdd-button-small {
233
+ background: #fff;
234
+ position: relative; }
235
+ .jdd-button-white.jdd-button-small::before {
236
+ display: block;
237
+ content: " ";
238
+ position: absolute;
239
+ pointer-events: none;
240
+ -webkit-backface-visibility: hidden;
241
+ backface-visibility: hidden;
242
+ -webkit-transform-origin: left top;
243
+ transform-origin: left top;
244
+ z-index: 0;
245
+ left: 0;
246
+ top: 0;
247
+ border: 1px solid #CCC;
248
+ border-radius: 15px; }
249
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
250
+ .jdd-button-white.jdd-button-small::before {
251
+ border-radius: 30px;
252
+ right: -100%;
253
+ bottom: -100%;
254
+ -webkit-transform: scale(0.5);
255
+ transform: scale(0.5); } }
256
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
257
+ .jdd-button-white.jdd-button-small::before {
258
+ border-radius: 45px;
259
+ right: -200%;
260
+ bottom: -200%;
261
+ -webkit-transform: scale(0.33333);
262
+ transform: scale(0.33333); } }
263
+ .jdd-button-white:active {
264
+ background: #f2f2f2; }
265
+ .jdd-button-white-normal.jdd-button-large {
266
+ background: #fff;
267
+ position: relative;
268
+ color: #666; }
269
+ .jdd-button-white-normal.jdd-button-large::before {
270
+ display: block;
271
+ content: " ";
272
+ position: absolute;
273
+ pointer-events: none;
274
+ -webkit-backface-visibility: hidden;
275
+ backface-visibility: hidden;
276
+ -webkit-transform-origin: left top;
277
+ transform-origin: left top;
278
+ z-index: 0;
279
+ left: 0;
280
+ top: 0;
281
+ border: 1px solid #DDDDDD;
282
+ border-radius: 2px; }
283
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
284
+ .jdd-button-white-normal.jdd-button-large::before {
285
+ border-radius: 4px;
286
+ right: -100%;
287
+ bottom: -100%;
288
+ -webkit-transform: scale(0.5);
289
+ transform: scale(0.5); } }
290
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
291
+ .jdd-button-white-normal.jdd-button-large::before {
292
+ border-radius: 6px;
293
+ right: -200%;
294
+ bottom: -200%;
295
+ -webkit-transform: scale(0.33333);
296
+ transform: scale(0.33333); } }
297
+ .jdd-button-white-normal.jdd-button-small {
298
+ background: #fff;
299
+ position: relative;
300
+ color: #666; }
301
+ .jdd-button-white-normal.jdd-button-small::before {
302
+ display: block;
303
+ content: " ";
304
+ position: absolute;
305
+ pointer-events: none;
306
+ -webkit-backface-visibility: hidden;
307
+ backface-visibility: hidden;
308
+ -webkit-transform-origin: left top;
309
+ transform-origin: left top;
310
+ z-index: 0;
311
+ left: 0;
312
+ top: 0;
313
+ border: 1px solid #CCC;
314
+ border-radius: 15px; }
315
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
316
+ .jdd-button-white-normal.jdd-button-small::before {
317
+ border-radius: 30px;
318
+ right: -100%;
319
+ bottom: -100%;
320
+ -webkit-transform: scale(0.5);
321
+ transform: scale(0.5); } }
322
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
323
+ .jdd-button-white-normal.jdd-button-small::before {
324
+ border-radius: 45px;
325
+ right: -200%;
326
+ bottom: -200%;
327
+ -webkit-transform: scale(0.33333);
328
+ transform: scale(0.33333); } }
329
+ .jdd-button-white-normal:active {
330
+ background: #f2f2f2; }
331
+
332
+ .jdd-button-group {
333
+ display: -webkit-box;
334
+ display: -webkit-flex;
335
+ display: -ms-flexbox;
336
+ display: flex;
337
+ width: 100%;
338
+ font-family: PingFangSC-Medium;
339
+ font-size: 18px;
340
+ background: #fff;
341
+ color: #fff; }
342
+ .jdd-button-group span {
343
+ -webkit-box-flex: 1;
344
+ -webkit-flex: 1;
345
+ -ms-flex: 1;
346
+ flex: 1; }
347
+ .jdd-button-group-bottom {
348
+ position: fixed;
349
+ bottom: 0;
350
+ z-index: 50;
351
+ padding-bottom: constant(safe-area-inset-bottom) !important;
352
+ padding-bottom: env(safe-area-inset-bottom) !important; }
353
+ .jdd-button-group-bottom .jdd-button {
354
+ border-radius: unset; }
355
+ .jdd-button-group-bottom .jdd-button:not(:first-child) {
356
+ -webkit-box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.04);
357
+ box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.04); }
358
+ .jdd-button-group-top {
359
+ position: fixed;
360
+ top: 0;
361
+ z-index: 50; }
362
+
363
+ .jdd-toast {
364
+ position: fixed;
365
+ left: 0;
366
+ width: 100%;
367
+ text-align: center;
368
+ z-index: 999;
369
+ opacity: 1; }
370
+ .jdd-toast.jdd-toast-top {
371
+ top: -100%; }
372
+ .jdd-toast.jdd-toast-top.jdd-toast-in {
373
+ -webkit-animation: jddToastTopIn 3.8s ease-in-out;
374
+ animation: jddToastTopIn 3.8s ease-in-out; }
375
+ .jdd-toast.jdd-toast-bottom {
376
+ bottom: -100%; }
377
+ .jdd-toast.jdd-toast-bottom.jdd-toast-in {
378
+ -webkit-animation: jddToastBottomIn 3.8s ease-in-out;
379
+ animation: jddToastBottomIn 3.8s ease-in-out; }
380
+
381
+ .jdd-toast span {
382
+ margin: 10px 20px;
383
+ display: inline-block;
384
+ padding: 10px 20px;
385
+ line-height: 20px;
386
+ font-family: PingFangSC-Medium;
387
+ font-size: 14px;
388
+ color: #fff;
389
+ background: #4D7BFE;
390
+ border-radius: 100px;
391
+ -webkit-box-shadow: 0 0 7px 0 rgba(3, 6, 14, 0.2);
392
+ box-shadow: 0 0 7px 0 rgba(3, 6, 14, 0.2); }
393
+
394
+ @-webkit-keyframes jddToastBottomIn {
395
+ 0% {
396
+ bottom: 0; }
397
+ 10% {
398
+ bottom: 96px; }
399
+ 90% {
400
+ bottom: 96px; }
401
+ 100% {
402
+ bottom: 0px; } }
403
+
404
+ @keyframes jddToastBottomIn {
405
+ 0% {
406
+ bottom: 0; }
407
+ 10% {
408
+ bottom: 96px; }
409
+ 90% {
410
+ bottom: 96px; }
411
+ 100% {
412
+ bottom: 0px; } }
413
+
414
+ @-webkit-keyframes jddToastTopIn {
415
+ 0% {
416
+ bottom: 0; }
417
+ 10% {
418
+ top: 60px; }
419
+ 90% {
420
+ top: 60px; }
421
+ 100% {
422
+ top: 0px; } }
423
+
424
+ @keyframes jddToastTopIn {
425
+ 0% {
426
+ bottom: 0; }
427
+ 10% {
428
+ top: 60px; }
429
+ 90% {
430
+ top: 60px; }
431
+ 100% {
432
+ top: 0px; } }
433
+
434
+ .jdd-mask {
435
+ position: fixed;
436
+ z-index: 1000;
437
+ top: 0;
438
+ left: 0;
439
+ right: 0;
440
+ bottom: 0;
441
+ background-color: rgba(0, 0, 0, 0.6); }
442
+ .jdd-mask-transparent {
443
+ background-color: transparent; }
444
+
445
+ body.jdd-modal-open {
446
+ position: fixed; }
447
+
448
+ .jdd-loading {
449
+ display: -webkit-box;
450
+ display: -webkit-flex;
451
+ display: -ms-flexbox;
452
+ display: flex;
453
+ position: fixed;
454
+ top: 40%;
455
+ left: 50%;
456
+ z-index: 9999;
457
+ width: 54px;
458
+ height: 54px;
459
+ margin: -27px 0 0 -27px;
460
+ border-radius: 3px;
461
+ background-color: rgba(0, 0, 0, 0.6);
462
+ -webkit-box-pack: center;
463
+ -webkit-justify-content: center;
464
+ -ms-flex-pack: center;
465
+ justify-content: center;
466
+ -webkit-box-align: center;
467
+ -webkit-align-items: center;
468
+ -ms-flex-align: center;
469
+ align-items: center; }
470
+ .jdd-loading img {
471
+ display: inline-block;
472
+ vertical-align: middle;
473
+ width: auto; }
474
+
475
+ .jdd-loading-fade-enter-active,
476
+ .jdd-loading-fade-leave-active {
477
+ -webkit-transition: 0.3s ease-out;
478
+ transition: 0.3s ease-out; }
479
+
480
+ .jdd-loading-fade-enter-to {
481
+ opacity: 1;
482
+ -webkit-transform: scale(1);
483
+ transform: scale(1); }
484
+
485
+ .jdd-loading-fade-leave-to {
486
+ opacity: 0;
487
+ -webkit-transform: scale(0.8);
488
+ transform: scale(0.8); }
489
+
490
+ .screen-lock {
491
+ overflow: hidden; }
492
+
493
+ .hide {
494
+ display: none; }
495
+
496
+ .bgWhite {
497
+ background-color: #fff; }
498
+
499
+ .jdd-overlay-box {
500
+ position: fixed;
501
+ z-index: 1000;
502
+ top: 0;
503
+ left: 0;
504
+ right: 0;
505
+ bottom: 0; }
506
+
507
+ .jdd-overlay-container {
508
+ position: relative;
509
+ height: 100%;
510
+ padding: 130px 0px 50px;
511
+ z-index: 1001;
512
+ display: -webkit-box;
513
+ display: -webkit-flex;
514
+ display: -ms-flexbox;
515
+ display: flex;
516
+ -webkit-box-orient: vertical;
517
+ -webkit-box-direction: normal;
518
+ -webkit-flex-direction: column;
519
+ -ms-flex-direction: column;
520
+ flex-direction: column; }
521
+
522
+ .jdd-overlay-title {
523
+ position: relative;
524
+ max-height: 79px;
525
+ margin: 0 40px;
526
+ overflow: hidden;
527
+ position: relative; }
528
+ .jdd-overlay-title::after {
529
+ content: " ";
530
+ position: absolute;
531
+ display: block;
532
+ -webkit-transform-origin: bottom;
533
+ transform-origin: bottom;
534
+ z-index: 0;
535
+ left: 0;
536
+ bottom: 0;
537
+ right: 0;
538
+ border-bottom: 1px solid #eeeeee; }
539
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
540
+ .jdd-overlay-title::after {
541
+ -webkit-transform: scaleY(0.5);
542
+ transform: scaleY(0.5); } }
543
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
544
+ .jdd-overlay-title::after {
545
+ -webkit-transform: scaleY(0.33333);
546
+ transform: scaleY(0.33333); } }
547
+ .jdd-overlay-title h2 {
548
+ width: 100%;
549
+ padding-bottom: 20px;
550
+ font-size: 21px;
551
+ line-height: 29.5px;
552
+ color: #333;
553
+ text-align: center;
554
+ display: block; }
555
+
556
+ .jdd-overlay-content {
557
+ padding: 20px 30px 0 40px;
558
+ -webkit-box-flex: 1;
559
+ -webkit-flex: 1;
560
+ -ms-flex: 1;
561
+ flex: 1;
562
+ display: -webkit-box;
563
+ display: -webkit-flex;
564
+ display: -ms-flexbox;
565
+ display: flex;
566
+ overflow-y: hidden; }
567
+
568
+ .jdd-overlay-inner {
569
+ overflow-y: auto;
570
+ -webkit-overflow-scrolling: touch;
571
+ font-size: 16px;
572
+ line-height: 28px;
573
+ color: #666;
574
+ padding-right: 10px; }
575
+
576
+ .jdd-overlay-btn {
577
+ margin: 50px auto 0px;
578
+ text-align: center;
579
+ overflow: hidden;
580
+ font-size: 0; }
581
+ .jdd-overlay-btn .jdd-imgs-close {
582
+ display: inline-block;
583
+ width: 44px;
584
+ height: 44px;
585
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAYAAABxlTA0AAAAAXNSR0IArs4c6QAAAu9JREFUeAHt2r+LE0EUwPHLXqWlRQohhYWFIASSf+C82s5CQWut7QX9F+xTKni9licWlvlhQBRsUxmuucoiv3wPMse47ia3k7mdF+67EHay2X0788nL290hBwcsCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAALGBMbj8f3YXZKYdyaTyY3YcavGy6oeEHv/wWDwZjabfRsOh09ixR6NRnfn8/nX6XT6MTVyI9agQuIo7mq1er0+dpFl2bNOp/MhJJY7RnGXy+UXiXtbtzUajc/NZvNhq9X64/apc50sg7UsCMIrb7CHAvNul0zO42psOcexZPIL7zy1NpMBt9vt75qxMtqFN+Jg5CLcddye/CreeueotZm0ROhINWM1c6V56I28UrnYhNvtdp9LmVh5sWttJgfW0e6CbBlXx2YCOBTZOq4p4KrI+4BrDviyyPuCaxJ4G7JcsAb+fa7uv156qS9oriP+2kwN9jul7Q0XvnMBvpXb3ySu9tEssHauBFk/8hezuNpJ08DawS3IpnG1/8me5PTkl1m05soT33l+X9m+lO2nKR8i8n0qem8a2N0tFNRcnWPI9AlQM7xoYFa2mQV2uG5WzIFp5rq2rIPnLrwYV9o0CVyGKxI9AX4q6/8miGTq8/GVSgUGNwe8CVfvc3W+uGgWTjL9vUVkU3cR23D9C1rJ3cVCM1y+iJPAhIt+mBngKrhOYR+QTZSIEFxF1nJRVJMtlYvkGRyK67JY11p7FVWa/0zaWygXSYFj4Dpoq8jJSoT+byHmrJhe2MrKhdTqR+6LqHudDFj+C/Fbfta/cgPeaW6hBPlMzvMjd57a3iYtEf1+/6aM9JO8juS1E64cf7F45eJMsvqBwP+8+PC6NRRZQF5KlkX9srUsSNx7182T8SKAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAK2Bf4CoKj4d3I8GvAAAAAASUVORK5CYII=);
586
+ background-repeat: no-repeat;
587
+ background-size: 100% 100%; }
588
+
589
+ .jdd-o-dl {
590
+ padding-bottom: 10px;
591
+ position: relative; }
592
+ .jdd-o-dl .jdd-o-dt {
593
+ color: #333; }
594
+ .jdd-o-dl img {
595
+ width: 100%;
596
+ display: block; }
597
+
598
+ dl.jdd-o-dl {
599
+ list-style-type: none;
600
+ counter-reset: sectioncounter; }
601
+ dl.jdd-o-dl dd {
602
+ margin-left: 16px; }
603
+ dl.jdd-o-dl dd::before, dl.jdd-o-dl dd:before {
604
+ content: counter(sectioncounter);
605
+ counter-increment: sectioncounter;
606
+ float: left;
607
+ margin-left: -16px; }
608
+
609
+ .ani-scale-leave,
610
+ .ani-scale-enter-active {
611
+ opacity: .98;
612
+ -webkit-backface-visibility: hidden;
613
+ backface-visibility: hidden;
614
+ -webkit-transition-property: opacity, -webkit-transform;
615
+ transition-property: opacity, -webkit-transform;
616
+ transition-property: transform, opacity;
617
+ transition-property: transform, opacity, -webkit-transform;
618
+ -webkit-transition-timing-function: ease-out;
619
+ transition-timing-function: ease-out;
620
+ -webkit-transition-duration: 200ms;
621
+ transition-duration: 200ms;
622
+ -webkit-transform: scale(1);
623
+ transform: scale(1); }
624
+
625
+ .ani-scale-enter,
626
+ .ani-scale-leave-to {
627
+ opacity: 0;
628
+ -webkit-transition-property: opacity, -webkit-transform;
629
+ transition-property: opacity, -webkit-transform;
630
+ transition-property: transform, opacity;
631
+ transition-property: transform, opacity, -webkit-transform;
632
+ -webkit-transition-timing-function: ease-out;
633
+ transition-timing-function: ease-out;
634
+ -webkit-transition-duration: 200ms;
635
+ transition-duration: 200ms;
636
+ -webkit-transform: scale(0.85);
637
+ transform: scale(0.85); }
638
+
639
+ .jdd-notice {
640
+ height: 36px;
641
+ line-height: 36px;
642
+ background: #FFF7EA;
643
+ position: relative;
644
+ padding: 0 16px 0; }
645
+ .jdd-notice.has-icon {
646
+ padding-right: 39px; }
647
+ .jdd-notice .info-white {
648
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAtCAMAAAANxBKoAAAARVBMVEX///8AAAD///////////////////////////////////////////////////////////////////////////////////+Y34OdAAAAF3RSTlOZAE0QlUeKeFU9kHBqXAsFey8dIHQ3K12BC1EAAAE4SURBVEjHnZVbcoMwDEVFZNmG8Ao03f9SK5O2CdIlEM6nOKPxCD2oMnDdtWMMcWy7mu1HWquS6JUkvGn3OZAl5B7agzSEaGTwNifaIrG1p0jbxGlt3wK9I9xe7dnIXp+eNkfaI/KfPSTaJw2/thDgmq/rgDzsHtX5rt/u67r3i51R5qqwzp6LzageWV2bJ7DaQgdzk6jtCoLfraSK2Ju4JgpTTYdRtzsuq9v64NflgY2rO3r7Ui3MNq5u3LR9aSMF9JK62P6NQX1AV+wIco/ILrmZwLtbZE9l+Hy4hfVuni1l6l1v9VRC/5IJl3AAxWLYg9/w31DC/d3jYRU/O9oksuwj1yeB/Vxeqn+Mnc3Me9vPfCW2XWHHyme76sweVKb9HXt2fyvz29swn707+zft5L08f4v37/wPEEEJqjAJwqAAAAAASUVORK5CYII=) no-repeat;
649
+ background-size: 16px;
650
+ background-position: center; }
651
+ .jdd-notice .link-white {
652
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAqCAMAAAB1LNBvAAAAV1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////+ORg7oAAAAHXRSTlMAzAOHCYGafKKEBmN2aA6qj4xwErCUa19bQJWRFUR+SGAAAACCSURBVDjLtdRJDoAgEERRARVxnuf7n1Mbt11NQmJt37p+QjsSuEZZRJVSEDP1ruZNi+gkNEEcAQ7R2BOuPJYiLoQNwFPANCes/sENYBHEncdWwHsmMxxNH2mOuhhqBSoC5DhKBcpjqPSUsbRguiDpHtOAyRBZlpwn/GkrtCCiIbA9D6TsBWKNDfNxAAAAAElFTkSuQmCC) no-repeat;
653
+ background-size: 10px;
654
+ background-position: center; }
655
+ .jdd-notice .close-white {
656
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAWVJREFUSA3dlbFOAzEMhu0rQzckZjYeAHiESmUoKyMvgMTzIPEILKxVhQ7oG/AEvAIS2y13wXYuqt0mjYEJLLXJXfz7S2JbB/DvLCwXx2E1O/3JwVjHeq1t9ENc7NYwwEtYzs/1Wm0u/qQD6NYaYgAQukcI4YR+RwB964VEv74VnegpzmgWgJMbQPyQNSfEBGch6znOaJgmacwKYDLHy/Yt+aTR47sDYLFH6PHhWFlADeINvhdQhGBzC2G4i4XAW+Sc5a+wCshCAAe6xFgcleAugIK80q4P+VkM4RPgYJZLfnLh0ZapXtmZh603xfQZvypgk1AYd89XRCanqTfjXsAmOHc2Gd9501x/pxmLgGxwrpbF8wNXjReSvchicNXNHh85tBxd/XmFLPH4mhN4BGovMq1pbA5Cf+/t0ASKfbCVE44zmgXg9IqS9x4TWG7/JE6jgYie4pTsV5/Mp4sz/TUrMf7W+y9KrBaurvrIqgAAAABJRU5ErkJggg==) no-repeat;
657
+ background-size: 12px;
658
+ background-position: center; }
659
+ .jdd-notice .txt {
660
+ height: 100%;
661
+ font-family: PingFangSC-Regular;
662
+ font-size: 14px;
663
+ color: #FFB540;
664
+ overflow: hidden;
665
+ float: left; }
666
+ .jdd-notice .icon {
667
+ position: absolute;
668
+ width: 39px;
669
+ height: 100%;
670
+ right: 0;
671
+ top: 0; }
672
+ .jdd-notice .info {
673
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAtCAMAAAANxBKoAAAAclBMVEUAAAD/tkD/t0H/v0r/tUH/tUD/tkH/tkD/tkD/tUH/tkD/tkH/tUH/uUH/u0T/vEP/tkn/tkL/t0H/t0H/tUD/////2p//yXP/1pb/5bv/x2//8Nj/3qr/+vP/4rT/z4X/9ur/6sn/6MT/xWn/vVT/uUuzVhT1AAAAFHRSTlMAx3cY+fbw5uPMspmOMh4TB2VOZlBSPsgAAAE9SURBVEjHldXdbsIwDAVgJymUtoFSOC1lwNjv+7/ilGibSI/bLd9tLMtynFimXNfUVVmUVd10ThbtrMEjY3cyp/UFpgrfimZv19Cs7V6IM5hjqP7tBvM2W0kcVliyOiSZJ8Ec/pDdURlcjPvthsHfzE9nLBSn8YSElajV+nzu+/6c9r2VwGuZ+yDN7uNsFGBjjB7TIdglVXNurtyAcN2REXEgWk8iJ0f8XydNRnQjNcjTEI10UEsFMvTRhQ4qKWejr3RQSqFV8hyi7/xIQ252D9EfSu4KipD7BUrdNRSXeJOkVvv9ySMVNdLNzdS7dpcOegtvYE6dwVf1bmD0+b6pdwNLbycMyTWU/TYMAL8d8VTzN6Q8vXmKpjcvlsc1oqpz/qqsfzDrj836v7N2Q9beydpp+fsyfxczd1zY81821XtZdTEi1gAAAABJRU5ErkJggg==) no-repeat;
674
+ background-size: 16px;
675
+ background-position: center; }
676
+ .jdd-notice .link {
677
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAqCAMAAAB1LNBvAAAAV1BMVEUAAAD/x1f/tUD/vE3/tkH/tkD/tkH/xVf/tkD/tkD/tkH/tkH/tkH/tT//tkD/tkD/vEf/tj//tkD/tUD/tkD/t0H/t0D/tkD/tkH/uEH/u0T/tkD/tUAAyBDXAAAAHHRSTlMABf0Mq5+ACMCopaKazrt5E9fGtrGUjYdyTxjcIwZHJAAAAIdJREFUOMud1EsSgzAMA9CkhUBIy/+P739OxllHYoK3b2WPZKNzGDhOfog6EYhBCDaKZdqsZ1gwnBlOBKtWMbzAb/15wsamcWT4J9hH9G9weMQijSfFSxTBJmo7ugAnfNQuk6paILVKLpcmSDbShiLKCad+zSUfCRdwSVLAVGIyDtZdERD7PTfTUhRPIdZb4wAAAABJRU5ErkJggg==) no-repeat;
678
+ background-size: 10px;
679
+ background-position: center; }
680
+ .jdd-notice .close {
681
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAWVJREFUSA3dlbFOAzEMhu0rQzckZjYeAHiESmUoKyMvgMTzIPEILKxVhQ7oG/AEvAIS2y13wXYuqt0mjYEJLLXJXfz7S2JbB/DvLCwXx2E1O/3JwVjHeq1t9ENc7NYwwEtYzs/1Wm0u/qQD6NYaYgAQukcI4YR+RwB964VEv74VnegpzmgWgJMbQPyQNSfEBGch6znOaJgmacwKYDLHy/Yt+aTR47sDYLFH6PHhWFlADeINvhdQhGBzC2G4i4XAW+Sc5a+wCshCAAe6xFgcleAugIK80q4P+VkM4RPgYJZLfnLh0ZapXtmZh603xfQZvypgk1AYd89XRCanqTfjXsAmOHc2Gd9501x/pxmLgGxwrpbF8wNXjReSvchicNXNHh85tBxd/XmFLPH4mhN4BGovMq1pbA5Cf+/t0ASKfbCVE44zmgXg9IqS9x4TWG7/JE6jgYie4pTsV5/Mp4sz/TUrMf7W+y9KrBaurvrIqgAAAABJRU5ErkJggg==) no-repeat;
682
+ background-size: 12px;
683
+ background-position: center; }
684
+
685
+ .jdd-notice-scroll {
686
+ width: 100%;
687
+ white-space: nowrap;
688
+ overflow: hidden; }
689
+
690
+ .jdd-notice-pscroll {
691
+ width: 8000%;
692
+ overflow: hidden; }
693
+ .jdd-notice-pscroll p {
694
+ display: inline-block;
695
+ padding-left: 16px; }
696
+
697
+ .jdd-popup {
698
+ display: -webkit-box;
699
+ display: -webkit-flex;
700
+ display: -ms-flexbox;
701
+ display: flex;
702
+ -webkit-box-orient: vertical;
703
+ -webkit-box-direction: normal;
704
+ -webkit-flex-direction: column;
705
+ -ms-flex-direction: column;
706
+ flex-direction: column;
707
+ position: absolute;
708
+ left: 0;
709
+ bottom: 0;
710
+ width: 100%;
711
+ z-index: 1001;
712
+ background: #ffffff;
713
+ border-radius: 8px 8px 0px 0px;
714
+ max-height: 80%;
715
+ padding-bottom: constant(safe-area-inset-bottom) !important;
716
+ padding-bottom: env(safe-area-inset-bottom) !important; }
717
+ .jdd-popup .jdd-popup-content {
718
+ overflow-y: auto;
719
+ -webkit-overflow-scrolling: touch; }
720
+
721
+ .jdd-popup-wrap {
722
+ position: fixed;
723
+ left: 0;
724
+ bottom: 0;
725
+ width: 100%;
726
+ height: 100%;
727
+ z-index: 1001; }
728
+
729
+ .jdd-fade-bottom-enter-active {
730
+ -webkit-animation-delay: .3s;
731
+ animation-delay: .3s; }
732
+ .jdd-fade-bottom-enter-active .jdd-popup {
733
+ -webkit-animation: jdd-popup-enter .3s;
734
+ animation: jdd-popup-enter .3s; }
735
+
736
+ @-webkit-keyframes jdd-popup-enter {
737
+ 0% {
738
+ opacity: 1;
739
+ -webkit-transform: translate3d(0, 100%, 0);
740
+ transform: translate3d(0, 100%, 0); }
741
+ 100% {
742
+ -webkit-transform: translate3d(0, 0, 0);
743
+ transform: translate3d(0, 0, 0);
744
+ opacity: 1; } }
745
+
746
+ @keyframes jdd-popup-enter {
747
+ 0% {
748
+ opacity: 1;
749
+ -webkit-transform: translate3d(0, 100%, 0);
750
+ transform: translate3d(0, 100%, 0); }
751
+ 100% {
752
+ -webkit-transform: translate3d(0, 0, 0);
753
+ transform: translate3d(0, 0, 0);
754
+ opacity: 1; } }
755
+
756
+ .jdd-fade-bottom-leave-active {
757
+ -webkit-animation-delay: .3s;
758
+ animation-delay: .3s; }
759
+ .jdd-fade-bottom-leave-active .jdd-popup {
760
+ -webkit-animation: jdd-popup-leave .3s ease-in both;
761
+ animation: jdd-popup-leave .3s ease-in both; }
762
+
763
+ @-webkit-keyframes jdd-popup-leave {
764
+ 0% {
765
+ -webkit-transform: translate3d(0, 0, 0);
766
+ transform: translate3d(0, 0, 0);
767
+ opacity: 1; }
768
+ 100% {
769
+ -webkit-transform: translate3d(0, 100%, 0);
770
+ transform: translate3d(0, 100%, 0);
771
+ opacity: 0; } }
772
+
773
+ @keyframes jdd-popup-leave {
774
+ 0% {
775
+ -webkit-transform: translate3d(0, 0, 0);
776
+ transform: translate3d(0, 0, 0);
777
+ opacity: 1; }
778
+ 100% {
779
+ -webkit-transform: translate3d(0, 100%, 0);
780
+ transform: translate3d(0, 100%, 0);
781
+ opacity: 0; } }
782
+
783
+ .jdd-select-date-scroller dl {
784
+ margin-top: 45px;
785
+ width: 100%; }
786
+
787
+ .jdd-select-date-scroller dl dd.focus {
788
+ font-size: 18px;
789
+ color: #4D7BFE; }
790
+
791
+ .jdd-select-date-scroller dd {
792
+ font-family: PingFangSC-Medium;
793
+ width: 100%;
794
+ height: 45px;
795
+ line-height: 45px; }
796
+
797
+ .jdd-select-date-btns li {
798
+ height: 50px;
799
+ line-height: 50px; }
800
+
801
+ .jdd-select-date-scroller-n dl {
802
+ margin-top: 100px;
803
+ width: 100%; }
804
+
805
+ .jdd-select-date-scroller-n dl dd.focus {
806
+ font-size: 18px;
807
+ color: #4D7BFE; }
808
+
809
+ .jdd-select-date-scroller-n dd {
810
+ font-family: PingFangSC-Medium;
811
+ width: 100%;
812
+ height: 50px;
813
+ line-height: 50px;
814
+ color: #999;
815
+ -webkit-transition: all .2s ease;
816
+ transition: all .2s ease; }
817
+
818
+ .jdd-select-date-btns-n li {
819
+ height: 60px;
820
+ line-height: 60px; }
821
+
822
+ .jdd-date-mask {
823
+ position: fixed;
824
+ left: 0;
825
+ top: 0;
826
+ right: 0;
827
+ bottom: 0;
828
+ z-index: 100;
829
+ background: rgba(0, 0, 0, 0.5); }
830
+
831
+ .jdd-dateselecter {
832
+ background: #fff;
833
+ position: absolute;
834
+ bottom: 0;
835
+ width: 100%;
836
+ left: 0;
837
+ z-index: 200;
838
+ border-top-right-radius: 8px;
839
+ border-top-left-radius: 8px; }
840
+
841
+ .jdd-select-value {
842
+ height: 50px;
843
+ position: relative;
844
+ position: relative; }
845
+ .jdd-select-value::after {
846
+ content: " ";
847
+ position: absolute;
848
+ display: block;
849
+ -webkit-transform-origin: bottom;
850
+ transform-origin: bottom;
851
+ z-index: 0;
852
+ left: 0;
853
+ bottom: 0;
854
+ right: 0;
855
+ border-bottom: 1px solid #eeeeee; }
856
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
857
+ .jdd-select-value::after {
858
+ -webkit-transform: scaleY(0.5);
859
+ transform: scaleY(0.5); } }
860
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
861
+ .jdd-select-value::after {
862
+ -webkit-transform: scaleY(0.33333);
863
+ transform: scaleY(0.33333); } }
864
+ .jdd-select-value::before {
865
+ content: " ";
866
+ position: absolute;
867
+ display: block;
868
+ -webkit-transform-origin: top;
869
+ transform-origin: top;
870
+ z-index: 0;
871
+ left: 0;
872
+ top: 0;
873
+ right: 0;
874
+ border-top: 1px solid #eeeeee; }
875
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
876
+ .jdd-select-value::before {
877
+ -webkit-transform: scaleY(0.5);
878
+ transform: scaleY(0.5); } }
879
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
880
+ .jdd-select-value::before {
881
+ -webkit-transform: scaleY(0.33333);
882
+ transform: scaleY(0.33333); } }
883
+
884
+ .jdd-dateselecter-title {
885
+ height: 60px; }
886
+ .jdd-dateselecter-title span {
887
+ padding: 19px 16px 18px;
888
+ display: inline-block;
889
+ font-family: PingFangSC-Medium;
890
+ font-size: 16px;
891
+ color: #666; }
892
+ .jdd-dateselecter-title .cancel {
893
+ float: left; }
894
+ .jdd-dateselecter-title .confirm {
895
+ float: right;
896
+ color: #4D7BFE; }
897
+
898
+ .jdd-select-date {
899
+ position: fixed;
900
+ top: 0;
901
+ right: 0;
902
+ bottom: 0;
903
+ left: 0;
904
+ z-index: 1000;
905
+ font-size: 16px; }
906
+
907
+ .jdd-select-date:after {
908
+ content: '';
909
+ position: fixed;
910
+ top: 0;
911
+ right: 0;
912
+ bottom: 0;
913
+ left: 0;
914
+ z-index: 100;
915
+ background-color: transparent;
916
+ -webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
917
+ transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1); }
918
+
919
+ .jdd-select-date.jdd-select-date-in:after {
920
+ background-color: rgba(0, 0, 0, 0.6); }
921
+
922
+ .jdd-select-date.jdd-select-date-in .jdd-select-date-con {
923
+ opacity: 1;
924
+ -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
925
+ transform: translate3d(-50%, -50%, 0) scale(1); }
926
+
927
+ .jdd-select-date.jdd-select-date-in .jdd-select-date-con-n {
928
+ opacity: 1;
929
+ -webkit-transform: translate3d(0, 0, 0);
930
+ transform: translate3d(0, 0, 0); }
931
+
932
+ .jdd-select-date-con {
933
+ position: absolute;
934
+ top: 50%;
935
+ left: 50%;
936
+ width: 280px;
937
+ height: 206px;
938
+ z-index: 1000;
939
+ opacity: 0;
940
+ -webkit-transform: translate3d(-50%, -50%, 0) scale(1.185);
941
+ transform: translate3d(-50%, -50%, 0) scale(1.185);
942
+ -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
943
+ transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); }
944
+
945
+ .jdd-select-date-scroller, .jdd-select-date-scrollerbox {
946
+ position: relative;
947
+ width: 100%;
948
+ height: 156px;
949
+ overflow: hidden; }
950
+
951
+ .jdd-select-date-scrollerbox .jdd-select-value {
952
+ position: absolute;
953
+ top: 125px;
954
+ left: 0;
955
+ width: 100%;
956
+ -webkit-transform: translate3d(0, -50%, 0);
957
+ transform: translate3d(0, -50%, 0); }
958
+
959
+ .jdd-select-date-scroller div {
960
+ position: relative;
961
+ float: left;
962
+ -webkit-box-sizing: border-box;
963
+ box-sizing: border-box;
964
+ padding: 10px 0;
965
+ height: 100%;
966
+ text-align: center;
967
+ z-index: 100; }
968
+
969
+ .jdd-select-date-con-n {
970
+ position: absolute;
971
+ bottom: 0;
972
+ left: 0;
973
+ width: 100%;
974
+ z-index: 1000;
975
+ opacity: 0;
976
+ -webkit-transform: translate3d(0, 100%, 0);
977
+ transform: translate3d(0, 100%, 0);
978
+ -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
979
+ transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); }
980
+
981
+ .jdd-select-date-scroller-n, .jdd-select-date-scrollerbox-n {
982
+ position: relative;
983
+ width: 100%;
984
+ height: 269px;
985
+ overflow: hidden;
986
+ display: -webkit-box;
987
+ display: -webkit-flex;
988
+ display: -ms-flexbox;
989
+ display: flex;
990
+ -webkit-box-pack: center;
991
+ -webkit-justify-content: center;
992
+ -ms-flex-pack: center;
993
+ justify-content: center; }
994
+
995
+ .jdd-select-date-scrollerbox-n {
996
+ -webkit-mask: -webkit-gradient(linear, 0 55%, 0 0, from(#fff), to(rgba(255, 255, 255, 0))); }
997
+
998
+ .jdd-select-date-scrollerbox-n .jdd-select-value {
999
+ position: absolute;
1000
+ top: 125px;
1001
+ left: 0;
1002
+ width: 100%;
1003
+ -webkit-transform: translate3d(0, -50%, 0);
1004
+ transform: translate3d(0, -50%, 0);
1005
+ z-index: -1; }
1006
+
1007
+ .jdd-select-date-scroller-n {
1008
+ -webkit-mask: -webkit-gradient(linear, 0 55%, 0 100%, from(#fff), to(rgba(255, 255, 255, 0))); }
1009
+
1010
+ .jdd-select-date-scroller-n div {
1011
+ position: relative;
1012
+ float: left;
1013
+ -webkit-box-sizing: border-box;
1014
+ box-sizing: border-box;
1015
+ height: 100%;
1016
+ text-align: center;
1017
+ z-index: 100; }
1018
+
1019
+ .jdd-select-date-ymd div {
1020
+ width: 110px; }
1021
+
1022
+ .jdd-select-date-hms div {
1023
+ width: 80px; }
1024
+
1025
+ .jdd-select-date-hms .split {
1026
+ width: auto; }
1027
+
1028
+ .hide {
1029
+ display: none; }
1030
+
1031
+ .jdd-dialog-box {
1032
+ position: fixed;
1033
+ z-index: 1002;
1034
+ top: 0;
1035
+ left: 0;
1036
+ right: 0;
1037
+ bottom: 0;
1038
+ display: -webkit-box;
1039
+ display: -webkit-flex;
1040
+ display: -ms-flexbox;
1041
+ display: flex;
1042
+ -webkit-box-pack: center;
1043
+ -webkit-justify-content: center;
1044
+ -ms-flex-pack: center;
1045
+ justify-content: center;
1046
+ -webkit-box-align: center;
1047
+ -webkit-align-items: center;
1048
+ -ms-flex-align: center;
1049
+ align-items: center; }
1050
+
1051
+ .jdd-dialog-box .jdd-dialog-activity {
1052
+ background: transparent;
1053
+ overflow: unset;
1054
+ width: 290px; }
1055
+
1056
+ .jdd-dialog-activity-close {
1057
+ position: absolute;
1058
+ top: -35px;
1059
+ right: 0px;
1060
+ display: inline-block;
1061
+ width: 25px;
1062
+ height: 25px;
1063
+ border-radius: 25px;
1064
+ background-color: #000;
1065
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAYAAABxlTA0AAAAAXNSR0IArs4c6QAAAu9JREFUeAHt2r+LE0EUwPHLXqWlRQohhYWFIASSf+C82s5CQWut7QX9F+xTKni9licWlvlhQBRsUxmuucoiv3wPMse47ia3k7mdF+67EHay2X0788nL290hBwcsCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAALGBMbj8f3YXZKYdyaTyY3YcavGy6oeEHv/wWDwZjabfRsOh09ixR6NRnfn8/nX6XT6MTVyI9agQuIo7mq1er0+dpFl2bNOp/MhJJY7RnGXy+UXiXtbtzUajc/NZvNhq9X64/apc50sg7UsCMIrb7CHAvNul0zO42psOcexZPIL7zy1NpMBt9vt75qxMtqFN+Jg5CLcddye/CreeueotZm0ROhINWM1c6V56I28UrnYhNvtdp9LmVh5sWttJgfW0e6CbBlXx2YCOBTZOq4p4KrI+4BrDviyyPuCaxJ4G7JcsAb+fa7uv156qS9oriP+2kwN9jul7Q0XvnMBvpXb3ySu9tEssHauBFk/8hezuNpJ08DawS3IpnG1/8me5PTkl1m05soT33l+X9m+lO2nKR8i8n0qem8a2N0tFNRcnWPI9AlQM7xoYFa2mQV2uG5WzIFp5rq2rIPnLrwYV9o0CVyGKxI9AX4q6/8miGTq8/GVSgUGNwe8CVfvc3W+uGgWTjL9vUVkU3cR23D9C1rJ3cVCM1y+iJPAhIt+mBngKrhOYR+QTZSIEFxF1nJRVJMtlYvkGRyK67JY11p7FVWa/0zaWygXSYFj4Dpoq8jJSoT+byHmrJhe2MrKhdTqR+6LqHudDFj+C/Fbfta/cgPeaW6hBPlMzvMjd57a3iYtEf1+/6aM9JO8juS1E64cf7F45eJMsvqBwP+8+PC6NRRZQF5KlkX9srUsSNx7182T8SKAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAK2Bf4CoKj4d3I8GvAAAAAASUVORK5CYII=);
1066
+ background-size: 100% auto; }
1067
+
1068
+ .jdd-dialog-activity-inner {
1069
+ min-height: 250px;
1070
+ max-height: 400px;
1071
+ border-radius: 8px;
1072
+ overflow: hidden;
1073
+ width: 290px;
1074
+ background: transparent; }
1075
+
1076
+ .jdd-dialog {
1077
+ position: relative;
1078
+ z-index: 1001;
1079
+ width: 280px;
1080
+ background-color: #fff;
1081
+ border-radius: 8px;
1082
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
1083
+ -webkit-user-select: none;
1084
+ -webkit-user-drag: none;
1085
+ overflow: hidden; }
1086
+
1087
+ .jdd-dialog-inner {
1088
+ padding: 24px 0 22px; }
1089
+
1090
+ .jdd-dialog-inner h2,
1091
+ .jdd-dialog-content h2 {
1092
+ font-family: 'PingFangSC-Medium';
1093
+ font-size: 18px;
1094
+ color: #333;
1095
+ line-height: 29px;
1096
+ text-align: center;
1097
+ padding: 0 24px;
1098
+ font-weight: normal; }
1099
+
1100
+ .jdd-dialog-inner > img + h2,
1101
+ .jdd-dialog-content > img + h2 {
1102
+ padding-top: 12px; }
1103
+
1104
+ .jdd-dialog-content {
1105
+ line-height: 24px;
1106
+ font-size: 17px;
1107
+ color: #666;
1108
+ max-height: 60vh;
1109
+ overflow: auto; }
1110
+ .jdd-dialog-content.dialogContent {
1111
+ font-family: inherit;
1112
+ text-align: justify; }
1113
+ .jdd-dialog-content h3 {
1114
+ font-size: 14px;
1115
+ color: #444;
1116
+ line-height: 22px;
1117
+ padding: 12px 24px 0;
1118
+ font-weight: 700; }
1119
+ .jdd-dialog-content p {
1120
+ font-size: 14px;
1121
+ color: #666;
1122
+ line-height: 22px;
1123
+ padding: 12px 24px 0;
1124
+ text-align: justify; }
1125
+ .jdd-dialog-content .contentScroll {
1126
+ max-height: 280px;
1127
+ overflow: hidden;
1128
+ overflow-y: auto; }
1129
+ .jdd-dialog-content img {
1130
+ width: 100%;
1131
+ display: block; }
1132
+
1133
+ .jdd-dialog-btns {
1134
+ position: relative;
1135
+ table-layout: fixed;
1136
+ display: table;
1137
+ border-collapse: collapse;
1138
+ width: 100%;
1139
+ overflow: hidden; }
1140
+
1141
+ .jdd-border-top {
1142
+ position: relative; }
1143
+ .jdd-border-top::before {
1144
+ content: " ";
1145
+ position: absolute;
1146
+ display: block;
1147
+ -webkit-transform-origin: top;
1148
+ transform-origin: top;
1149
+ z-index: 0;
1150
+ left: 0;
1151
+ top: 0;
1152
+ right: 0;
1153
+ border-top: 1px solid #eee; }
1154
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
1155
+ .jdd-border-top::before {
1156
+ -webkit-transform: scaleY(0.5);
1157
+ transform: scaleY(0.5); } }
1158
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
1159
+ .jdd-border-top::before {
1160
+ -webkit-transform: scaleY(0.33333);
1161
+ transform: scaleY(0.33333); } }
1162
+
1163
+ .jdd-btn {
1164
+ position: relative; }
1165
+ .jdd-btn:active {
1166
+ background: #f2f2f2; }
1167
+
1168
+ .jdd-default-btns .jdd-btn + .jdd-btn {
1169
+ position: relative; }
1170
+ .jdd-default-btns .jdd-btn + .jdd-btn::before {
1171
+ content: " ";
1172
+ position: absolute;
1173
+ display: block;
1174
+ -webkit-transform-origin: left;
1175
+ transform-origin: left;
1176
+ z-index: 0;
1177
+ left: 0;
1178
+ bottom: 0;
1179
+ top: 0;
1180
+ border-left: 1px solid #eee; }
1181
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
1182
+ .jdd-default-btns .jdd-btn + .jdd-btn::before {
1183
+ -webkit-transform: scaleX(0.5);
1184
+ transform: scaleX(0.5); } }
1185
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
1186
+ .jdd-default-btns .jdd-btn + .jdd-btn::before {
1187
+ -webkit-transform: scaleX(0.33333);
1188
+ transform: scaleX(0.33333); } }
1189
+
1190
+ .jdd-vertical-btns {
1191
+ display: block; }
1192
+ .jdd-vertical-btns .jdd-btn {
1193
+ display: block; }
1194
+ .jdd-vertical-btns .jdd-btn + .jdd-btn {
1195
+ position: relative; }
1196
+ .jdd-vertical-btns .jdd-btn + .jdd-btn::before {
1197
+ content: " ";
1198
+ position: absolute;
1199
+ display: block;
1200
+ -webkit-transform-origin: top;
1201
+ transform-origin: top;
1202
+ z-index: 0;
1203
+ left: 0;
1204
+ top: 0;
1205
+ right: 0;
1206
+ border-top: 1px solid #eee; }
1207
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
1208
+ .jdd-vertical-btns .jdd-btn + .jdd-btn::before {
1209
+ -webkit-transform: scaleY(0.5);
1210
+ transform: scaleY(0.5); } }
1211
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
1212
+ .jdd-vertical-btns .jdd-btn + .jdd-btn::before {
1213
+ -webkit-transform: scaleY(0.33333);
1214
+ transform: scaleY(0.33333); } }
1215
+
1216
+ .jdd-btn {
1217
+ display: table-cell;
1218
+ width: 100%;
1219
+ font-family: 'PingFangSC-Medium';
1220
+ font-size: 18px;
1221
+ height: 50px;
1222
+ line-height: 50px;
1223
+ text-align: center; }
1224
+
1225
+ .jdd-primary-btn {
1226
+ color: #4D7BFE; }
1227
+
1228
+ .jdd-cancel-btn {
1229
+ color: #666; }
1230
+
1231
+ .jdd-alert-btn {
1232
+ color: #FC3438; }
1233
+
1234
+ .jdd-btn.jdd-disable {
1235
+ color: #aaa;
1236
+ background: inherit; }
1237
+
1238
+ @media only screen and (min-device-width: 414px) and (-webkit-min-device-pixel-ratio: 3) {
1239
+ .jdd-dialog {
1240
+ width: 308px; } }
1241
+
1242
+ @-webkit-keyframes jdd-dialogIn {
1243
+ 0% {
1244
+ opacity: 0;
1245
+ -webkit-transform: scale(0.9);
1246
+ transform: scale(0.9); }
1247
+ 50% {
1248
+ opacity: 1;
1249
+ -webkit-transform: scale(1.1);
1250
+ transform: scale(1.1); }
1251
+ 100% {
1252
+ -webkit-transform: scale(1);
1253
+ transform: scale(1); } }
1254
+
1255
+ @keyframes jdd-dialogIn {
1256
+ 0% {
1257
+ opacity: 0;
1258
+ -webkit-transform: scale(0.9);
1259
+ transform: scale(0.9); }
1260
+ 50% {
1261
+ opacity: 1;
1262
+ -webkit-transform: scale(1.1);
1263
+ transform: scale(1.1); }
1264
+ 100% {
1265
+ -webkit-transform: scale(1);
1266
+ transform: scale(1); } }
1267
+
1268
+ @-webkit-keyframes jdd-dialogOut {
1269
+ 0% {
1270
+ -webkit-transform: scale(1) translate3d(0, 0, 0);
1271
+ transform: scale(1) translate3d(0, 0, 0); }
1272
+ 100% {
1273
+ opacity: 0;
1274
+ -webkit-transform: translate3d(0, 100%, 0) scale(0.815);
1275
+ transform: translate3d(0, 100%, 0) scale(0.815); } }
1276
+
1277
+ @keyframes jdd-dialogOut {
1278
+ 0% {
1279
+ -webkit-transform: scale(1) translate3d(0, 0, 0);
1280
+ transform: scale(1) translate3d(0, 0, 0); }
1281
+ 100% {
1282
+ opacity: 0;
1283
+ -webkit-transform: translate3d(0, 100%, 0) scale(0.815);
1284
+ transform: translate3d(0, 100%, 0) scale(0.815); } }
1285
+
1286
+ .fade-dialog-enter-active {
1287
+ -webkit-animation-delay: .3s;
1288
+ animation-delay: .3s; }
1289
+ .fade-dialog-enter-active .jdd-dialog {
1290
+ -webkit-animation: jdd-dialogIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1291
+ animation: jdd-dialogIn 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
1292
+
1293
+ .fade-dialog-leave-active {
1294
+ -webkit-animation-delay: .3s;
1295
+ animation-delay: .3s; }
1296
+ .fade-dialog-leave-active .jdd-dialog {
1297
+ -webkit-animation: jdd-dialogOut .3s ease-in both;
1298
+ animation: jdd-dialogOut .3s ease-in both; }
1299
+
1300
+ .jdd-field {
1301
+ display: -webkit-box;
1302
+ display: -webkit-flex;
1303
+ display: -ms-flexbox;
1304
+ display: flex;
1305
+ background-color: #fff;
1306
+ padding: 0 16px;
1307
+ min-height: 72px;
1308
+ position: relative;
1309
+ -webkit-box-orient: vertical;
1310
+ -webkit-box-direction: normal;
1311
+ -webkit-flex-direction: column;
1312
+ -ms-flex-direction: column;
1313
+ flex-direction: column; }
1314
+ .jdd-field .jdd-field-label {
1315
+ -webkit-transition: all 0.1s ease-in-out;
1316
+ transition: all 0.1s ease-in-out;
1317
+ font-family: PingFangSC-Regular;
1318
+ font-size: 18px;
1319
+ color: #999999;
1320
+ letter-spacing: 0;
1321
+ padding-top: 24px;
1322
+ line-height: 25px;
1323
+ width: 100%;
1324
+ height: auto; }
1325
+
1326
+ .jdd-field.jdd-field-focus .jdd-field-label {
1327
+ padding-top: 12px;
1328
+ font-size: 14px;
1329
+ margin-bottom: 4px;
1330
+ line-height: 20px; }
1331
+
1332
+ .jdd-field-row {
1333
+ -webkit-box-orient: horizontal;
1334
+ -webkit-box-direction: normal;
1335
+ -webkit-flex-direction: row;
1336
+ -ms-flex-direction: row;
1337
+ flex-direction: row; }
1338
+
1339
+ .jdd-field-label {
1340
+ font-family: PingFangSC-Regular;
1341
+ font-size: 16px;
1342
+ color: #333333;
1343
+ letter-spacing: 0;
1344
+ height: 56px;
1345
+ line-height: 56px;
1346
+ -webkit-align-self: flex-start;
1347
+ -ms-flex-item-align: start;
1348
+ align-self: flex-start;
1349
+ overflow: hidden;
1350
+ text-align: left; }
1351
+
1352
+ .jdd-field-border-top {
1353
+ position: relative; }
1354
+ .jdd-field-border-top::before {
1355
+ content: " ";
1356
+ position: absolute;
1357
+ display: block;
1358
+ -webkit-transform-origin: top;
1359
+ transform-origin: top;
1360
+ z-index: 0;
1361
+ left: 16px;
1362
+ top: 0;
1363
+ right: 0;
1364
+ border-top: 1px solid #e5e5e5; }
1365
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
1366
+ .jdd-field-border-top::before {
1367
+ -webkit-transform: scaleY(0.5);
1368
+ transform: scaleY(0.5); } }
1369
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
1370
+ .jdd-field-border-top::before {
1371
+ -webkit-transform: scaleY(0.33333);
1372
+ transform: scaleY(0.33333); } }
1373
+
1374
+ .jdd-field-border-bottom {
1375
+ position: relative; }
1376
+ .jdd-field-border-bottom::after {
1377
+ content: " ";
1378
+ position: absolute;
1379
+ display: block;
1380
+ -webkit-transform-origin: bottom;
1381
+ transform-origin: bottom;
1382
+ z-index: 0;
1383
+ left: 16px;
1384
+ bottom: 0;
1385
+ right: 0;
1386
+ border-bottom: 1px solid #e5e5e5; }
1387
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
1388
+ .jdd-field-border-bottom::after {
1389
+ -webkit-transform: scaleY(0.5);
1390
+ transform: scaleY(0.5); } }
1391
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
1392
+ .jdd-field-border-bottom::after {
1393
+ -webkit-transform: scaleY(0.33333);
1394
+ transform: scaleY(0.33333); } }
1395
+
1396
+ .jdd-field-inline {
1397
+ display: -webkit-box;
1398
+ display: -webkit-flex;
1399
+ display: -ms-flexbox;
1400
+ display: flex;
1401
+ background-color: #fff;
1402
+ padding: 0 16px;
1403
+ min-height: 56px;
1404
+ position: relative; }
1405
+ .jdd-field-inline .jdd-field-control {
1406
+ -webkit-box-flex: 1;
1407
+ -webkit-flex: 1;
1408
+ -ms-flex: 1;
1409
+ flex: 1;
1410
+ margin-left: 10px; }
1411
+ .jdd-field-inline .jdd-field-label {
1412
+ width: 160px;
1413
+ -webkit-flex-shrink: 0;
1414
+ -ms-flex-negative: 0;
1415
+ flex-shrink: 0; }
1416
+ .jdd-field-inline .jdd-field-label span {
1417
+ display: inline-block;
1418
+ width: 100%;
1419
+ overflow: hidden;
1420
+ white-space: nowrap;
1421
+ text-overflow: ellipsis; }
1422
+
1423
+ .jdd-field-inline.jdd-field-error .jdd-field-label {
1424
+ line-height: unset; }
1425
+
1426
+ .jdd-field-error .jdd-field-label {
1427
+ color: #fc3438;
1428
+ display: -webkit-box;
1429
+ display: -webkit-flex;
1430
+ display: -ms-flexbox;
1431
+ display: flex;
1432
+ -webkit-box-align: center;
1433
+ -webkit-align-items: center;
1434
+ -ms-flex-align: center;
1435
+ align-items: center; }
1436
+
1437
+ .jdd-field-input {
1438
+ display: -webkit-box;
1439
+ display: -webkit-flex;
1440
+ display: -ms-flexbox;
1441
+ display: flex;
1442
+ -webkit-box-align: center;
1443
+ -webkit-align-items: center;
1444
+ -ms-flex-align: center;
1445
+ align-items: center; }
1446
+ .jdd-field-input input {
1447
+ border: none;
1448
+ outline: none;
1449
+ -webkit-appearance: none;
1450
+ -moz-appearance: none;
1451
+ appearance: none; }
1452
+
1453
+ .jdd-field .jdd-field-input-with-icon {
1454
+ padding-right: 32px; }
1455
+
1456
+ .jdd-field .jdd-field-input input {
1457
+ text-align: left;
1458
+ font-size: 18px;
1459
+ font-family: PingFangSC-Medium;
1460
+ font-weight: 500;
1461
+ color: #333333;
1462
+ line-height: 22px; }
1463
+
1464
+ .jdd-field .jdd-field-icon-wrap {
1465
+ position: absolute;
1466
+ top: 0px;
1467
+ bottom: 0px;
1468
+ margin: auto 0px;
1469
+ right: 16px;
1470
+ display: -webkit-box;
1471
+ display: -webkit-flex;
1472
+ display: -ms-flexbox;
1473
+ display: flex;
1474
+ -webkit-box-align: center;
1475
+ -webkit-align-items: center;
1476
+ -ms-flex-align: center;
1477
+ align-items: center;
1478
+ z-index: 1; }
1479
+
1480
+ .jdd-field .jdd-field-control .jdd-field-disable {
1481
+ color: #ccc; }
1482
+
1483
+ .jdd-field input {
1484
+ padding-right: 20px; }
1485
+
1486
+ .jdd-field-inline .jdd-field-icon-wrap {
1487
+ display: -webkit-box;
1488
+ display: -webkit-flex;
1489
+ display: -ms-flexbox;
1490
+ display: flex; }
1491
+
1492
+ .jdd-field-inline .jdd-field-control .jdd-field-disable {
1493
+ color: #ccc; }
1494
+
1495
+ .jdd-field-control input {
1496
+ font-family: PingFangSC-Regular;
1497
+ font-size: 16px;
1498
+ color: #333333;
1499
+ letter-spacing: 0;
1500
+ -webkit-box-flex: 1;
1501
+ -webkit-flex: 1;
1502
+ -ms-flex: 1;
1503
+ flex: 1;
1504
+ text-align: right;
1505
+ background-color: inherit;
1506
+ width: 100%;
1507
+ min-width: 0; }
1508
+ .jdd-field-control input::-webkit-input-placeholder {
1509
+ font-family: PingFangSC-Regular,PingFang SC;
1510
+ font-weight: 400;
1511
+ font-size: 16px;
1512
+ color: #cccccc; }
1513
+ .jdd-field-control input::-moz-placeholder {
1514
+ font-family: PingFangSC-Regular,PingFang SC;
1515
+ font-weight: 400;
1516
+ font-size: 16px;
1517
+ color: #cccccc; }
1518
+ .jdd-field-control input:-ms-input-placeholder {
1519
+ font-family: PingFangSC-Regular,PingFang SC;
1520
+ font-weight: 400;
1521
+ font-size: 16px;
1522
+ color: #cccccc; }
1523
+ .jdd-field-control input::-ms-input-placeholder {
1524
+ font-family: PingFangSC-Regular,PingFang SC;
1525
+ font-weight: 400;
1526
+ font-size: 16px;
1527
+ color: #cccccc; }
1528
+ .jdd-field-control input::placeholder {
1529
+ font-family: PingFangSC-Regular,PingFang SC;
1530
+ font-weight: 400;
1531
+ font-size: 16px;
1532
+ color: #cccccc; }
1533
+
1534
+ .jdd-field-control .jdd-field-clean-icon {
1535
+ width: 16px;
1536
+ height: 16px;
1537
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAYAAADFw8lbAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAqFJREFUWEfFmclOAzEMQFsWsS/iyFr2HQr8/1fBhQMIv1FThSEZO560RLJamCwvju143OHA34YydEtkU2RNZHUiYcZP+fIlwifyIfIu8u1fsmzkunQ/ERmLvBXKi/Q/nWywbNWC3mjtshCsayM3k9MoQOjuyhEfirxWhIw3MJJ5F/rSLskEVzMCjGHvZI0VLyxH/TgHyAD87LFdID3OUupc7f6Y165Vsxz3wxw12YYlMmxosDjO9T9CBmhMDoVlG96tHd+ToY82B/ao9SHeJhuBXAtBZ9KHUMKntlDu+cVkDkC0ObZTpEzQNRA4TIPGpweWNeI5NNjbNija7ILEucICYWwpbAwZ5uB0NFPaiWG5u7VjwH7bzQqbgmTsuWFd+jSNXVmMm414YPtAsiZ+00QA0jRNm/HzEti+kGHdPUD3C0GtmiXTStm15bjbijsG1DNQg60JyVqkhIN7h0bDjnNmUEuTccJidqScHadg4+hg9W7NT9TbSJsgZwbA1oJkjSqgKZsMoJ4bLKWc3kefgwzHb70UtJPr5Uw5745ttIZmuZDc4QnI9ktZsMmSS0HT5DQ8eQJ+F6QWujw22wT80ivUAlkbtrlCS5KSEshasNOkBFhLmueBrAE7TfMA1RJnktuc41icIXcpFCfOwGp1pVGUDXlvnDgaWOIrFZQ/zfJyByxa8GZcQbMWSPr+eg2JiY/kD+0otXccbTzPLQUOwli2sVNyP8tis+yjFiDYAe8nNbTm3YippBNUjb0ywLuYd1xRkSzAUqiad9kxWRnpstXwbHlONotzuQu5AZZwRDTQ6lLe46ass2jRmrUPO/ZkPrkNcMHgCzNr2C65gScyjGXczH++Se2cH8QORNAOlbe4NETU4H/8WMHViaO0X6PN2vwBXtDwHrylQ1oAAAAASUVORK5CYII=");
1538
+ background-position: left center;
1539
+ background-repeat: no-repeat;
1540
+ background-size: 16px;
1541
+ -webkit-transition-property: opacity, -webkit-transform;
1542
+ transition-property: opacity, -webkit-transform;
1543
+ transition-property: opacity, transform;
1544
+ transition-property: opacity, transform, -webkit-transform;
1545
+ -webkit-transition-timing-function: ease-out;
1546
+ transition-timing-function: ease-out;
1547
+ -webkit-transition-duration: 0.3s;
1548
+ transition-duration: 0.3s;
1549
+ margin-left: 8px;
1550
+ display: block; }
1551
+
1552
+ .jdd-select-icon:after {
1553
+ content: "";
1554
+ display: block;
1555
+ height: 12px;
1556
+ width: 12px;
1557
+ right: 16px;
1558
+ position: absolute;
1559
+ top: 0;
1560
+ bottom: 0;
1561
+ margin: auto 0;
1562
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAANZJREFUSA3N1LEVwiAQgOFAJnAiW0vr9NDoCnaOEAugs2QKt3AMNwDvChqfXA64IjR5L/D+j+SFTNMeh/f+yN2X5i4s65xza875FUK4lHvUtRnQWr8xmFJaOYii9NochhHAeQCvxphHbW0XgDEu0g1wkSGAgwwDW4gIQCFiQA0RBf4hzQcNI9SA8/GB+YRr4MQfRAH4jSxKqSe0NVxv1tq72Csqcdj1XOL4FCJALS4CUPFhYCs+BHDi3QA33gW0xBFoPgfwCZ5+P0UMiY0Y4wxPcRYLjoa+872d9nrgfKMAAAAASUVORK5CYII=) no-repeat;
1563
+ background-size: cover; }
1564
+
1565
+ .jdd-field .jdd-select-show {
1566
+ position: absolute;
1567
+ top: 0;
1568
+ bottom: 0;
1569
+ margin: auto 0;
1570
+ right: 30px;
1571
+ display: -webkit-box;
1572
+ display: -webkit-flex;
1573
+ display: -ms-flexbox;
1574
+ display: flex;
1575
+ -webkit-box-align: center;
1576
+ -webkit-align-items: center;
1577
+ -ms-flex-align: center;
1578
+ align-items: center;
1579
+ font-size: 18px;
1580
+ font-family: PingFangSC-Medium;
1581
+ line-height: 22px;
1582
+ padding-bottom: 14px;
1583
+ letter-spacing: 0;
1584
+ padding-right: 12px; }
1585
+
1586
+ .jdd-field .jdd-field-hasvalue {
1587
+ position: relative;
1588
+ right: 0; }
1589
+
1590
+ .jdd-field-inline .jdd-field-select {
1591
+ display: -webkit-box;
1592
+ display: -webkit-flex;
1593
+ display: -ms-flexbox;
1594
+ display: flex;
1595
+ -webkit-box-align: center;
1596
+ -webkit-align-items: center;
1597
+ -ms-flex-align: center;
1598
+ align-items: center; }
1599
+
1600
+ .jdd-field-inline .jdd-select-show {
1601
+ -webkit-box-flex: 1;
1602
+ -webkit-flex: 1;
1603
+ -ms-flex: 1;
1604
+ flex: 1;
1605
+ padding: 16px 16px 16px 0;
1606
+ font-size: 16px;
1607
+ text-align: right;
1608
+ font-family: PingFangSC-Regular; }
1609
+
1610
+ .jdd-field-switch {
1611
+ text-align: right;
1612
+ display: -webkit-box;
1613
+ display: -webkit-flex;
1614
+ display: -ms-flexbox;
1615
+ display: flex;
1616
+ -webkit-box-align: center;
1617
+ -webkit-align-items: center;
1618
+ -ms-flex-align: center;
1619
+ align-items: center; }
1620
+ .jdd-field-switch .jdd-switch-disable input[type="checkbox"]:checked + .jdd-switch-show {
1621
+ border-color: #b9d1f8;
1622
+ background-color: #b9d1f8; }
1623
+
1624
+ .jdd-switch {
1625
+ position: relative;
1626
+ font-size: 0;
1627
+ display: inline-block;
1628
+ width: 100%; }
1629
+ .jdd-switch .jdd-switch-show {
1630
+ width: 49px;
1631
+ height: 29px;
1632
+ display: inline-block;
1633
+ position: relative;
1634
+ border-radius: 16px;
1635
+ -webkit-box-sizing: border-box;
1636
+ box-sizing: border-box;
1637
+ background: #e5e5e5; }
1638
+ .jdd-switch input[type="checkbox"] {
1639
+ position: absolute;
1640
+ top: 0px;
1641
+ left: 0px;
1642
+ opacity: 0;
1643
+ width: 100%;
1644
+ height: 100%;
1645
+ z-index: 3;
1646
+ -webkit-appearance: none;
1647
+ -moz-appearance: none;
1648
+ appearance: none;
1649
+ border: 0px; }
1650
+ .jdd-switch input[type="checkbox"]:checked + .jdd-switch-show {
1651
+ border-color: #4d7bfe;
1652
+ background-color: #4d7bfe; }
1653
+ .jdd-switch input[type="checkbox"]:checked + .jdd-switch-show::after {
1654
+ -webkit-transform: translateX(23px);
1655
+ transform: translateX(23px); }
1656
+ .jdd-switch input[type="checkbox"]:checked + .jdd-switch-show::before {
1657
+ -webkit-transform: scale(0);
1658
+ transform: scale(0); }
1659
+ .jdd-switch .jdd-switch-show::before {
1660
+ content: " ";
1661
+ position: absolute;
1662
+ top: 0;
1663
+ left: 0;
1664
+ width: 100%;
1665
+ height: 100%;
1666
+ -webkit-box-sizing: border-box;
1667
+ box-sizing: border-box;
1668
+ z-index: 1;
1669
+ -webkit-transform: scale(1);
1670
+ transform: scale(1);
1671
+ border-radius: 14px;
1672
+ background: #cccccc;
1673
+ -webkit-transition: all 200ms ease 0s;
1674
+ transition: all 200ms ease 0s; }
1675
+ .jdd-switch .jdd-switch-show::after {
1676
+ position: absolute;
1677
+ left: 0;
1678
+ top: 0;
1679
+ bottom: 0;
1680
+ margin: auto 0;
1681
+ content: " ";
1682
+ height: 23px;
1683
+ width: 23px;
1684
+ z-index: 2;
1685
+ -webkit-transform: translateX(3px);
1686
+ transform: translateX(3px);
1687
+ border-radius: 100%;
1688
+ background: white;
1689
+ -webkit-transition: all 200ms ease 0s;
1690
+ transition: all 200ms ease 0s; }
1691
+
1692
+ .jdd-field-control textarea {
1693
+ -webkit-appearance: none;
1694
+ -moz-appearance: none;
1695
+ appearance: none;
1696
+ width: 100%;
1697
+ padding: 0;
1698
+ border: 0;
1699
+ background-color: transparent;
1700
+ overflow: visible;
1701
+ display: block;
1702
+ resize: none;
1703
+ word-break: break-word;
1704
+ word-wrap: break-word;
1705
+ -webkit-box-sizing: content-box;
1706
+ box-sizing: content-box;
1707
+ color: #333333;
1708
+ letter-spacing: 0;
1709
+ text-align: right;
1710
+ line-height: 22px;
1711
+ max-height: 66px; }
1712
+ .jdd-field-control textarea::-webkit-input-placeholder {
1713
+ font-size: 16px;
1714
+ color: #cccccc; }
1715
+ .jdd-field-control textarea::-moz-placeholder {
1716
+ font-size: 16px;
1717
+ color: #cccccc; }
1718
+ .jdd-field-control textarea:-ms-input-placeholder {
1719
+ font-size: 16px;
1720
+ color: #cccccc; }
1721
+ .jdd-field-control textarea::-ms-input-placeholder {
1722
+ font-size: 16px;
1723
+ color: #cccccc; }
1724
+ .jdd-field-control textarea::placeholder {
1725
+ font-size: 16px;
1726
+ color: #cccccc; }
1727
+
1728
+ .jdd-field-inline textarea {
1729
+ line-height: 22px;
1730
+ font-size: 16px;
1731
+ font-family: PingFangSC-Regular; }
1732
+
1733
+ .jdd-field-inline .jdd-field-textarea {
1734
+ padding: 16px 0px; }
1735
+
1736
+ .jdd-field textarea {
1737
+ font-family: PingFangSC-Medium;
1738
+ font-size: 18px;
1739
+ text-align: left; }
1740
+
1741
+ .jdd-checkbox {
1742
+ display: -webkit-box;
1743
+ display: -webkit-flex;
1744
+ display: -ms-flexbox;
1745
+ display: flex;
1746
+ position: relative; }
1747
+
1748
+ .jdd-checkbox-disabled .jdd-checkbox-icon {
1749
+ background: #dddddd;
1750
+ border: none; }
1751
+
1752
+ .jdd-checkbox-disabled .jdd-checkbox-label {
1753
+ color: #cccccc; }
1754
+
1755
+ .jdd-list-item-icon .jdd-checkbox-icon {
1756
+ margin-right: 0; }
1757
+
1758
+ .jdd-checkbox-icon {
1759
+ display: -webkit-box;
1760
+ display: -webkit-flex;
1761
+ display: -ms-flexbox;
1762
+ display: flex;
1763
+ position: relative;
1764
+ width: 15px;
1765
+ height: 15px;
1766
+ -webkit-flex-shrink: 0;
1767
+ -ms-flex-negative: 0;
1768
+ flex-shrink: 0;
1769
+ border-radius: 100%;
1770
+ margin-right: 6px; }
1771
+
1772
+ .jdd-checkbox-input {
1773
+ position: absolute;
1774
+ left: 0;
1775
+ top: 0;
1776
+ width: 100%;
1777
+ height: 100%;
1778
+ outline: none;
1779
+ opacity: 0; }
1780
+
1781
+ .jdd-checkbox-checked svg {
1782
+ width: 100%;
1783
+ height: 100%; }
1784
+
1785
+ .jdd-checkbox-unchecked {
1786
+ border-width: 1px;
1787
+ border-style: solid; }
1788
+ .jdd-checkbox-unchecked svg {
1789
+ display: none; }
1790
+
1791
+ .jdd-tabs-line {
1792
+ height: 50px;
1793
+ background-color: #fff; }
1794
+
1795
+ .jdd-tabs-list {
1796
+ position: relative;
1797
+ display: -webkit-box;
1798
+ display: -webkit-flex;
1799
+ display: -ms-flexbox;
1800
+ display: flex;
1801
+ height: 100%;
1802
+ -webkit-box-align: center;
1803
+ -webkit-align-items: center;
1804
+ -ms-flex-align: center;
1805
+ align-items: center;
1806
+ overflow-x: auto;
1807
+ overflow-y: hidden;
1808
+ -webkit-overflow-scrolling: touch; }
1809
+ .jdd-tabs-list::-webkit-scrollbar {
1810
+ display: none; }
1811
+
1812
+ .jdd-tabs-hasscroll .jdd-tabs-item {
1813
+ -webkit-box-flex: 0;
1814
+ -webkit-flex: 0 0 auto;
1815
+ -ms-flex: 0 0 auto;
1816
+ flex: 0 0 auto; }
1817
+
1818
+ .jdd-tabs-list .jdd-tabs-active p {
1819
+ color: #333333; }
1820
+
1821
+ .jdd-tabs-active-line {
1822
+ display: inline-block;
1823
+ position: absolute;
1824
+ height: 3px;
1825
+ width: 20px;
1826
+ bottom: 6px;
1827
+ background-color: #333;
1828
+ -webkit-transition: all .2s ease;
1829
+ transition: all .2s ease; }
1830
+
1831
+ .jdd-tabs-item {
1832
+ position: relative;
1833
+ -webkit-box-flex: 1;
1834
+ -webkit-flex: 1;
1835
+ -ms-flex: 1;
1836
+ flex: 1;
1837
+ min-width: 0;
1838
+ text-align: center;
1839
+ padding: 0 12px; }
1840
+ .jdd-tabs-item:first-child {
1841
+ padding-left: 16px; }
1842
+ .jdd-tabs-item:last-child {
1843
+ padding-right: 16px; }
1844
+ .jdd-tabs-item p {
1845
+ font-size: 16px;
1846
+ font-weight: 500;
1847
+ color: #999999;
1848
+ line-height: 22px;
1849
+ overflow: hidden;
1850
+ text-overflow: ellipsis;
1851
+ white-space: nowrap; }
1852
+
1853
+ .jdd-amount-wrap {
1854
+ display: -webkit-box;
1855
+ display: -webkit-flex;
1856
+ display: -ms-flexbox;
1857
+ display: flex;
1858
+ position: relative;
1859
+ height: 80px;
1860
+ background: #fff;
1861
+ padding: 0 16px; }
1862
+
1863
+ .jdd-amount-icon, .jdd-amount-value {
1864
+ font-size: 26px;
1865
+ font-family: "UDC1.04-Bold", "UDC104";
1866
+ line-height: 80px; }
1867
+
1868
+ .jdd-amount-shine {
1869
+ display: inline-block;
1870
+ -webkit-animation: change-bordercolor 0.7s infinite ease-in-out;
1871
+ animation: change-bordercolor 0.7s infinite ease-in-out;
1872
+ width: 2px;
1873
+ background-color: transparent;
1874
+ height: 40px;
1875
+ -webkit-align-self: center;
1876
+ -ms-flex-item-align: center;
1877
+ align-self: center; }
1878
+
1879
+ .jdd-amount-edit {
1880
+ display: -webkit-box;
1881
+ display: -webkit-flex;
1882
+ display: -ms-flexbox;
1883
+ display: flex;
1884
+ -webkit-box-flex: 1;
1885
+ -webkit-flex: 1;
1886
+ -ms-flex: 1;
1887
+ flex: 1;
1888
+ min-width: 0;
1889
+ overflow-x: auto;
1890
+ -webkit-overflow-scrolling: touch; }
1891
+
1892
+ .jdd-amount-icon {
1893
+ margin-right: 10px;
1894
+ color: #333333; }
1895
+
1896
+ .jdd-amount-unit-wrap {
1897
+ display: -webkit-box;
1898
+ display: -webkit-flex;
1899
+ display: -ms-flexbox;
1900
+ display: flex;
1901
+ position: absolute;
1902
+ top: 7px; }
1903
+
1904
+ .jdd-amount-line {
1905
+ display: inline-block;
1906
+ width: 1px;
1907
+ height: 20px;
1908
+ background: #dddddd;
1909
+ margin-right: 6px; }
1910
+
1911
+ .jdd-amount-unit {
1912
+ display: inline-block;
1913
+ text-align: center;
1914
+ line-height: 14px;
1915
+ width: 26px;
1916
+ height: 14px;
1917
+ background: #dddddd;
1918
+ border-radius: 3px;
1919
+ font-size: 10px;
1920
+ font-weight: 400;
1921
+ color: white; }
1922
+
1923
+ .jdd-amount-slot {
1924
+ font-size: 12px;
1925
+ color: #4D7BFE;
1926
+ padding-top: 38px;
1927
+ margin-left: 16px; }
1928
+
1929
+ .jdd-amount-hasvalue .jdd-amount-value {
1930
+ -webkit-box-flex: 0;
1931
+ -webkit-flex-grow: 0;
1932
+ -ms-flex-positive: 0;
1933
+ flex-grow: 0;
1934
+ font-size: 36px;
1935
+ color: #333333; }
1936
+
1937
+ .jdd-amount-value {
1938
+ color: #cccccc;
1939
+ -webkit-box-flex: 1;
1940
+ -webkit-flex-grow: 1;
1941
+ -ms-flex-positive: 1;
1942
+ flex-grow: 1; }
1943
+
1944
+ @-webkit-keyframes change-bordercolor {
1945
+ 0% {
1946
+ background-color: transparent; }
1947
+ 100% {
1948
+ background-color: #3385ff; } }
1949
+
1950
+ @keyframes change-bordercolor {
1951
+ 0% {
1952
+ background-color: transparent; }
1953
+ 100% {
1954
+ background-color: #3385ff; } }
1955
+
1956
+ .jdd-swiper {
1957
+ min-height: 1px;
1958
+ height: 100%; }
1959
+ .jdd-swiper .jdd-swiper-group {
1960
+ position: relative;
1961
+ height: 100%;
1962
+ overflow: hidden;
1963
+ white-space: nowrap; }
1964
+ .jdd-swiper .jdd-swiper-group .jdd-swiper-item {
1965
+ float: left;
1966
+ -webkit-box-sizing: border-box;
1967
+ box-sizing: border-box;
1968
+ overflow: hidden;
1969
+ text-align: center; }
1970
+ .jdd-swiper .jdd-swiper-group .jdd-swiper-item a {
1971
+ display: block;
1972
+ width: 100%;
1973
+ overflow: hidden;
1974
+ text-decoration: none; }
1975
+ .jdd-swiper .jdd-swiper-group .jdd-swiper-item img {
1976
+ display: block;
1977
+ width: 100%; }
1978
+
1979
+ .jdd-dots {
1980
+ position: absolute;
1981
+ right: 0;
1982
+ left: 0;
1983
+ bottom: 6px;
1984
+ -webkit-transform: translateZ(1px);
1985
+ transform: translateZ(1px);
1986
+ text-align: center;
1987
+ font-size: 0; }
1988
+ .jdd-dots .jdd-dot {
1989
+ display: inline-block;
1990
+ margin: 0 4px;
1991
+ width: 6px;
1992
+ height: 6px;
1993
+ border-radius: 100%;
1994
+ background: white;
1995
+ opacity: 0.3; }
1996
+ .jdd-dots .jdd-dot.active {
1997
+ border-radius: 100%;
1998
+ opacity: 1;
1999
+ background: #fff; }
2000
+
2001
+ .jdd-default {
2002
+ display: -webkit-box;
2003
+ display: -webkit-flex;
2004
+ display: -ms-flexbox;
2005
+ display: flex;
2006
+ -webkit-box-orient: vertical;
2007
+ -webkit-box-direction: normal;
2008
+ -webkit-flex-direction: column;
2009
+ -ms-flex-direction: column;
2010
+ flex-direction: column;
2011
+ -webkit-box-align: center;
2012
+ -webkit-align-items: center;
2013
+ -ms-flex-align: center;
2014
+ align-items: center;
2015
+ padding-top: 100px; }
2016
+ .jdd-default .jdd-default-img {
2017
+ text-align: center;
2018
+ margin-bottom: 10px; }
2019
+ .jdd-default .jdd-default-img img {
2020
+ width: 110px;
2021
+ height: 110px; }
2022
+ .jdd-default p {
2023
+ margin-bottom: 20px;
2024
+ font-size: 14px;
2025
+ font-family: PingFangSC-Regular, PingFang SC;
2026
+ font-weight: 400;
2027
+ color: #666666;
2028
+ line-height: 20px;
2029
+ text-align: center; }
2030
+
2031
+ .jdd-radio-item {
2032
+ position: relative; }
2033
+ .jdd-radio-item .jdd-radio-check {
2034
+ position: absolute;
2035
+ top: 0;
2036
+ bottom: 0;
2037
+ right: 16px;
2038
+ width: 16px;
2039
+ height: 16px;
2040
+ margin: auto 0;
2041
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAABPif9NfP9Qf/9NfP9NfP9NfP9Ne/9Ne/9Tf/9Qgf9ZgP9ohf9OfP9Ne/9Oe/9Ne/9NfP9NfP9Nff9Nff9NfP9Off9Off9NfP9Rff9QgP9Oe/9OfP9Pe/9OfP9Ne/8dQQxFAAAAH3RSTlMADcYf4vik9N4nGhQJ7+rVza+Yi3BjWExCOTC6jH59kbkAigAAAKZJREFUOMvV0EkOgzAMQFEgATIwz9DB979l66hWFUfJuvUGrPeFQrK/n1yn3Q5SpNz0AMrEXSh4TxV1LdFvTcyvDn2M+tmmv3/U6BOdJue+l+gzuSxYsTl/kEsAv1gBZ6G1AvCLxfn6ve/CL564lhutQTE73wmDYsLX+iBixedA7UnACzvio7sCp8Jdn9QhU4GjhA+86A0Hvxhs1LFwP5Iq7k32m/MCVqERH4/NPOsAAAAASUVORK5CYII=) 0 0 no-repeat;
2042
+ background-size: 100% auto; }
2043
+ .jdd-radio-item .jdd-list-item:active {
2044
+ background-color: #F2F2F2; }
2045
+
2046
+ .jdd-popup-header {
2047
+ position: relative;
2048
+ -webkit-flex-shrink: 0;
2049
+ -ms-flex-negative: 0;
2050
+ flex-shrink: 0;
2051
+ display: -webkit-box;
2052
+ display: -webkit-flex;
2053
+ display: -ms-flexbox;
2054
+ display: flex;
2055
+ -webkit-box-orient: vertical;
2056
+ -webkit-box-direction: normal;
2057
+ -webkit-flex-direction: column;
2058
+ -ms-flex-direction: column;
2059
+ flex-direction: column;
2060
+ padding: 20px 16px;
2061
+ position: relative; }
2062
+ .jdd-popup-header::after {
2063
+ content: " ";
2064
+ position: absolute;
2065
+ display: block;
2066
+ -webkit-transform-origin: bottom;
2067
+ transform-origin: bottom;
2068
+ z-index: 0;
2069
+ left: 0;
2070
+ bottom: 0;
2071
+ right: 0;
2072
+ border-bottom: 1px solid #eeeeee; }
2073
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
2074
+ .jdd-popup-header::after {
2075
+ -webkit-transform: scaleY(0.5);
2076
+ transform: scaleY(0.5); } }
2077
+ @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 3dppx) {
2078
+ .jdd-popup-header::after {
2079
+ -webkit-transform: scaleY(0.33333);
2080
+ transform: scaleY(0.33333); } }
2081
+ .jdd-popup-header .jdd-popup-main-title {
2082
+ display: -webkit-box;
2083
+ display: -webkit-flex;
2084
+ display: -ms-flexbox;
2085
+ display: flex;
2086
+ line-height: 25px; }
2087
+ .jdd-popup-header .jdd-popup-main-title p {
2088
+ font-family: PingFangSC-Medium;
2089
+ font-size: 18px;
2090
+ color: #333333;
2091
+ letter-spacing: 0;
2092
+ text-align: center;
2093
+ -webkit-box-flex: 1;
2094
+ -webkit-flex: 1;
2095
+ -ms-flex: 1;
2096
+ flex: 1; }
2097
+ .jdd-popup-header .jdd-popup-main-title span {
2098
+ position: absolute;
2099
+ right: 0px;
2100
+ top: 0;
2101
+ bottom: 0;
2102
+ margin: auto 0;
2103
+ display: block;
2104
+ width: 44px;
2105
+ height: 44px;
2106
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAYAAABxlTA0AAAAAXNSR0IArs4c6QAAAu9JREFUeAHt2r+LE0EUwPHLXqWlRQohhYWFIASSf+C82s5CQWut7QX9F+xTKni9licWlvlhQBRsUxmuucoiv3wPMse47ia3k7mdF+67EHay2X0788nL290hBwcsCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAALGBMbj8f3YXZKYdyaTyY3YcavGy6oeEHv/wWDwZjabfRsOh09ixR6NRnfn8/nX6XT6MTVyI9agQuIo7mq1er0+dpFl2bNOp/MhJJY7RnGXy+UXiXtbtzUajc/NZvNhq9X64/apc50sg7UsCMIrb7CHAvNul0zO42psOcexZPIL7zy1NpMBt9vt75qxMtqFN+Jg5CLcddye/CreeueotZm0ROhINWM1c6V56I28UrnYhNvtdp9LmVh5sWttJgfW0e6CbBlXx2YCOBTZOq4p4KrI+4BrDviyyPuCaxJ4G7JcsAb+fa7uv156qS9oriP+2kwN9jul7Q0XvnMBvpXb3ySu9tEssHauBFk/8hezuNpJ08DawS3IpnG1/8me5PTkl1m05soT33l+X9m+lO2nKR8i8n0qem8a2N0tFNRcnWPI9AlQM7xoYFa2mQV2uG5WzIFp5rq2rIPnLrwYV9o0CVyGKxI9AX4q6/8miGTq8/GVSgUGNwe8CVfvc3W+uGgWTjL9vUVkU3cR23D9C1rJ3cVCM1y+iJPAhIt+mBngKrhOYR+QTZSIEFxF1nJRVJMtlYvkGRyK67JY11p7FVWa/0zaWygXSYFj4Dpoq8jJSoT+byHmrJhe2MrKhdTqR+6LqHudDFj+C/Fbfta/cgPeaW6hBPlMzvMjd57a3iYtEf1+/6aM9JO8juS1E64cf7F45eJMsvqBwP+8+PC6NRRZQF5KlkX9srUsSNx7182T8SKAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAIIIIAAAggggAACCCCAAAK2Bf4CoKj4d3I8GvAAAAAASUVORK5CYII=);
2107
+ background-size: 100% auto; }
2108
+ .jdd-popup-header .jdd-popup-sub-title {
2109
+ font-family: PingFangSC-Regular;
2110
+ font-size: 13px;
2111
+ color: #999999;
2112
+ text-align: center;
2113
+ line-height: 18px;
2114
+ margin-bottom: 3px;
2115
+ padding-right: 18px; }
2116
+
2117
+ .jdd-address-main {
2118
+ display: -webkit-box;
2119
+ display: -webkit-flex;
2120
+ display: -ms-flexbox;
2121
+ display: flex;
2122
+ -webkit-box-orient: vertical;
2123
+ -webkit-box-direction: normal;
2124
+ -webkit-flex-direction: column;
2125
+ -ms-flex-direction: column;
2126
+ flex-direction: column;
2127
+ overflow: hidden;
2128
+ -webkit-box-flex: 1;
2129
+ -webkit-flex: 1;
2130
+ -ms-flex: 1;
2131
+ flex: 1;
2132
+ height: 100%; }
2133
+
2134
+ .jdd-address-chose-area {
2135
+ -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.1, 0.57, 0.1, 1);
2136
+ transition: -webkit-transform 0.3s cubic-bezier(0.1, 0.57, 0.1, 1);
2137
+ transition: transform 0.3s cubic-bezier(0.1, 0.57, 0.1, 1);
2138
+ transition: transform 0.3s cubic-bezier(0.1, 0.57, 0.1, 1), -webkit-transform 0.3s cubic-bezier(0.1, 0.57, 0.1, 1);
2139
+ -webkit-box-flex: 1;
2140
+ -webkit-flex: 1;
2141
+ -ms-flex: 1;
2142
+ flex: 1;
2143
+ display: -webkit-box;
2144
+ display: -webkit-flex;
2145
+ display: -ms-flexbox;
2146
+ display: flex;
2147
+ width: 100%;
2148
+ position: absolute;
2149
+ top: 109px;
2150
+ bottom: 0;
2151
+ bottom: constant(safe-area-inset-bottom) !important;
2152
+ bottom: env(safe-area-inset-bottom) !important; }
2153
+ .jdd-address-chose-area .jdd-radio-item-active p {
2154
+ color: #4d7bfe; }
2155
+
2156
+ .jdd-address-radio-item {
2157
+ -webkit-box-flex: 0;
2158
+ -webkit-flex: 0 0 100%;
2159
+ -ms-flex: 0 0 100%;
2160
+ flex: 0 0 100%;
2161
+ -webkit-overflow-scrolling: touch;
2162
+ max-height: 100%; }
2163
+
2164
+ .jdd-address-area-active {
2165
+ overflow: auto; }
2166
+
2167
+ .jdd-address-item-text {
2168
+ line-height: 56px;
2169
+ height: 56px;
2170
+ font-family: PingFangSC-Regular;
2171
+ font-size: 14px;
2172
+ color: #333333;
2173
+ padding-left: 16px; }
2174
+
2175
+ .jdd-address-tab-active::after {
2176
+ content: "";
2177
+ position: absolute;
2178
+ height: 3px;
2179
+ width: 20px;
2180
+ bottom: 0;
2181
+ left: 0;
2182
+ right: 0;
2183
+ margin: auto;
2184
+ background-color: #333333; }
2185
+
2186
+ .jdd-address-chosen {
2187
+ -webkit-flex-shrink: 0;
2188
+ -ms-flex-negative: 0;
2189
+ flex-shrink: 0;
2190
+ display: -webkit-box;
2191
+ display: -webkit-flex;
2192
+ display: -ms-flexbox;
2193
+ display: flex;
2194
+ line-height: 44px;
2195
+ height: 44px;
2196
+ padding-left: 16px;
2197
+ padding-right: 16px;
2198
+ overflow-x: auto; }
2199
+ .jdd-address-chosen li {
2200
+ margin-right: 24px;
2201
+ position: relative;
2202
+ font-family: PingFangSC-Regular;
2203
+ font-size: 14px;
2204
+ -webkit-flex-shrink: 0;
2205
+ -ms-flex-negative: 0;
2206
+ flex-shrink: 0; }
2207
+
2208
+ .jdd-address-popup .jdd-popup-content {
2209
+ -webkit-box-flex: 1;
2210
+ -webkit-flex: 1;
2211
+ -ms-flex: 1;
2212
+ flex: 1; }
2213
+