正在显示
19 个修改的文件
包含
4923 行增加
和
0 行删除
.idea/A6079080424317.iml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<module type="WEB_MODULE" version="4"> | ||
3 | + <component name="NewModuleRootManager"> | ||
4 | + <content url="file://$MODULE_DIR$"> | ||
5 | + <excludeFolder url="file://$MODULE_DIR$/.tmp" /> | ||
6 | + <excludeFolder url="file://$MODULE_DIR$/temp" /> | ||
7 | + <excludeFolder url="file://$MODULE_DIR$/tmp" /> | ||
8 | + </content> | ||
9 | + <orderEntry type="inheritedJdk" /> | ||
10 | + <orderEntry type="sourceFolder" forTests="false" /> | ||
11 | + </component> | ||
12 | +</module> |
.idea/modules.xml
0 → 100644
.idea/vcs.xml
0 → 100644
assets/css/LArea.css
0 → 100644
1 | +.gearArea { | ||
2 | + font-family: Helvetica Neue, Helvetica, Arial, sans-serif; | ||
3 | + font-size: 10px; | ||
4 | + background-color: rgba(0, 0, 0, 0.2); | ||
5 | + display: block; | ||
6 | + position: fixed; | ||
7 | + top: 0; | ||
8 | + left: 0; | ||
9 | + width: 100%; | ||
10 | + height: 100%; | ||
11 | + z-index: 9900; | ||
12 | + overflow: hidden; | ||
13 | + animation-fill-mode: both | ||
14 | +} | ||
15 | + | ||
16 | +.area_ctrl { | ||
17 | + vertical-align: middle; | ||
18 | + background-color: #d5d8df; | ||
19 | + color: #000; | ||
20 | + margin: 0; | ||
21 | + height: auto; | ||
22 | + width: 100%; | ||
23 | + position: absolute; | ||
24 | + left: 0; | ||
25 | + bottom: 0; | ||
26 | + z-index: 9901; | ||
27 | + overflow: hidden; | ||
28 | + transform: translate3d(0, 0, 0) | ||
29 | +} | ||
30 | + | ||
31 | +.slideInUp { | ||
32 | + animation: slideInUp .3s; | ||
33 | +} | ||
34 | + | ||
35 | +@keyframes slideInUp { | ||
36 | + from { | ||
37 | + transform: translate3d(0, 100%, 0) | ||
38 | + } | ||
39 | + to { | ||
40 | + transform: translate3d(0, 0, 0) | ||
41 | + } | ||
42 | +} | ||
43 | + | ||
44 | +.area_roll { | ||
45 | + display: flex; | ||
46 | + width: 100%; | ||
47 | + height: auto; | ||
48 | + overflow: hidden; | ||
49 | + background-color: transparent; | ||
50 | + -webkit-mask: -webkit-gradient(linear, 0% 50%, 0% 100%, from(#debb47), to(rgba(36, 142, 36, 0))); | ||
51 | + -webkit-mask: -webkit-linear-gradient(top, #debb47 50%, rgba(36, 142, 36, 0)) | ||
52 | +} | ||
53 | + | ||
54 | +.area_roll>div { | ||
55 | + font-size: 1.6em; | ||
56 | + height: 10em; | ||
57 | + float: left; | ||
58 | + background-color: transparent; | ||
59 | + position: relative; | ||
60 | + overflow: hidden; | ||
61 | + flex: 1 | ||
62 | +} | ||
63 | + | ||
64 | +.area_roll>div .gear { | ||
65 | + width: 100%; | ||
66 | + float: left; | ||
67 | + position: absolute; | ||
68 | + z-index: 9902; | ||
69 | + margin-top: 4em | ||
70 | +} | ||
71 | + | ||
72 | +.area_roll_mask { | ||
73 | + -webkit-mask: -webkit-gradient(linear, 0% 40%, 0% 0%, from(#debb47), to(rgba(36, 142, 36, 0))); | ||
74 | + -webkit-mask: -webkit-linear-gradient(bottom, #debb47 50%, rgba(36, 142, 36, 0)); | ||
75 | + padding: 0 | ||
76 | +} | ||
77 | + | ||
78 | +.area_grid { | ||
79 | + position: relative; | ||
80 | + top: 4em; | ||
81 | + width: 100%; | ||
82 | + height: 2em; | ||
83 | + margin: 0; | ||
84 | + box-sizing: border-box; | ||
85 | + z-index: 0; | ||
86 | + border-top: 1px solid #abaeb5; | ||
87 | + border-bottom: 1px solid #abaeb5 | ||
88 | +} | ||
89 | + | ||
90 | +.area_roll>div:nth-child(3) .area_grid>div { | ||
91 | + left: 42% | ||
92 | +} | ||
93 | + | ||
94 | +.area_btn { | ||
95 | + color: #0575f2; | ||
96 | + font-size: 1.6em; | ||
97 | + line-height: 1em; | ||
98 | + text-align: center; | ||
99 | + padding: .8em 1em | ||
100 | +} | ||
101 | + | ||
102 | +.area_btn_box:before, | ||
103 | +.area_btn_box:after { | ||
104 | + content: ''; | ||
105 | + position: absolute; | ||
106 | + height: 1px; | ||
107 | + width: 100%; | ||
108 | + display: block; | ||
109 | + background-color: #96979b; | ||
110 | + z-index: 15; | ||
111 | + transform: scaleY(0.33) | ||
112 | +} | ||
113 | + | ||
114 | +.area_btn_box { | ||
115 | + display: flex; | ||
116 | + justify-content:space-between; | ||
117 | + align-items: stretch; | ||
118 | + background-color: #f1f2f4; | ||
119 | + position: relative | ||
120 | +} | ||
121 | + | ||
122 | +.area_btn_box:before { | ||
123 | + left: 0; | ||
124 | + top: 0; | ||
125 | + transform-origin: 50% 20% | ||
126 | +} | ||
127 | + | ||
128 | +.area_btn_box:after { | ||
129 | + left: 0; | ||
130 | + bottom: 0; | ||
131 | + transform-origin: 50% 70% | ||
132 | +} | ||
133 | + | ||
134 | +.tooth { | ||
135 | + height: 2em; | ||
136 | + line-height: 2em; | ||
137 | + text-align: center; | ||
138 | + display: flex; | ||
139 | + line-clamp: 1; | ||
140 | + flex-direction:column; | ||
141 | + overflow: hidden | ||
142 | +} |
assets/css/UICityList.json
0 → 100644
1 | +{ | ||
2 | + "topCitys": [ | ||
3 | + { | ||
4 | + "city": "北京市", | ||
5 | + "id": 110001, | ||
6 | + "pinyin": "beijing" | ||
7 | + }, | ||
8 | + { | ||
9 | + "city": "天津市", | ||
10 | + "id": 120001, | ||
11 | + "pinyin": "tianjin" | ||
12 | + }, | ||
13 | + { | ||
14 | + "id": 310001, | ||
15 | + "city": "上海", | ||
16 | + "pinyin": "shanghai" | ||
17 | + } | ||
18 | + ], | ||
19 | + "citys": [ | ||
20 | + { | ||
21 | + "id": 110001, | ||
22 | + "city": "北京", | ||
23 | + "pinyin": "beijing" | ||
24 | + }, | ||
25 | + { | ||
26 | + "id": 120001, | ||
27 | + "city": "天津市", | ||
28 | + "pinyin": "tianjin" | ||
29 | + }, | ||
30 | + { | ||
31 | + "id": 130001, | ||
32 | + "city": "石家庄", | ||
33 | + "pinyin": "jiazhuang" | ||
34 | + }, | ||
35 | + { | ||
36 | + "id": 130002, | ||
37 | + "city": "唐山", | ||
38 | + "pinyin": "tangshan" | ||
39 | + }, | ||
40 | + { | ||
41 | + "id": 130003, | ||
42 | + "city": "秦皇岛", | ||
43 | + "pinyin": "qinhuangdao" | ||
44 | + }, | ||
45 | + { | ||
46 | + "id": 130004, | ||
47 | + "city": "邯郸", | ||
48 | + "pinyin": "handan" | ||
49 | + }, | ||
50 | + { | ||
51 | + "id": 130005, | ||
52 | + "city": "邢台", | ||
53 | + "pinyin": "xingtai" | ||
54 | + }, | ||
55 | + { | ||
56 | + "id": 130006, | ||
57 | + "city": "保定", | ||
58 | + "pinyin": "baoding" | ||
59 | + }, | ||
60 | + { | ||
61 | + "id": 130007, | ||
62 | + "city": "张家口", | ||
63 | + "pinyin": "zhangjiakou" | ||
64 | + }, | ||
65 | + { | ||
66 | + "id": 130008, | ||
67 | + "city": "承德", | ||
68 | + "pinyin": "chengde" | ||
69 | + }, | ||
70 | + { | ||
71 | + "id": 130009, | ||
72 | + "city": "沧州", | ||
73 | + "pinyin": "cangzhou" | ||
74 | + }, | ||
75 | + { | ||
76 | + "id": 13010, | ||
77 | + "city": "廊坊", | ||
78 | + "pinyin": "langfang" | ||
79 | + }, | ||
80 | + { | ||
81 | + "id": 131001, | ||
82 | + "city": "衡水", | ||
83 | + "pinyin": "hengshui" | ||
84 | + }, | ||
85 | + { | ||
86 | + "id": 140001, | ||
87 | + "city": "太原", | ||
88 | + "pinyin": "taiyuan" | ||
89 | + }, | ||
90 | + { | ||
91 | + "id": 140002, | ||
92 | + "city": "大同", | ||
93 | + "pinyin": "datong" | ||
94 | + }, | ||
95 | + { | ||
96 | + "id": 140003, | ||
97 | + "city": "阳泉", | ||
98 | + "pinyin": "yangquan" | ||
99 | + }, | ||
100 | + { | ||
101 | + "id": 140004, | ||
102 | + "city": "长治", | ||
103 | + "pinyin": "zhangzhi" | ||
104 | + }, | ||
105 | + { | ||
106 | + "id": 140005, | ||
107 | + "city": "晋城", | ||
108 | + "pinyin": "jincheng" | ||
109 | + }, | ||
110 | + { | ||
111 | + "id": 140006, | ||
112 | + "city": "朔州", | ||
113 | + "pinyin": "shuozhou" | ||
114 | + }, | ||
115 | + { | ||
116 | + "id": 140007, | ||
117 | + "city": "晋中", | ||
118 | + "pinyin": "jinzhong" | ||
119 | + }, | ||
120 | + { | ||
121 | + "id": 140008, | ||
122 | + "city": "运城", | ||
123 | + "pinyin": "yuncheng" | ||
124 | + }, | ||
125 | + { | ||
126 | + "id": 140009, | ||
127 | + "city": "忻州", | ||
128 | + "pinyin": "xinzhou" | ||
129 | + }, | ||
130 | + { | ||
131 | + "id": 14010, | ||
132 | + "city": "临汾", | ||
133 | + "pinyin": "linfen" | ||
134 | + }, | ||
135 | + { | ||
136 | + "id": 141001, | ||
137 | + "city": "吕梁", | ||
138 | + "pinyin": "lvliang" | ||
139 | + }, | ||
140 | + { | ||
141 | + "id": 150001, | ||
142 | + "city": "呼和浩特", | ||
143 | + "pinyin": "huhehaote" | ||
144 | + }, | ||
145 | + { | ||
146 | + "id": 150002, | ||
147 | + "city": "包头", | ||
148 | + "pinyin": "baotou" | ||
149 | + }, | ||
150 | + { | ||
151 | + "id": 150003, | ||
152 | + "city": "乌海", | ||
153 | + "pinyin": "wuhai" | ||
154 | + }, | ||
155 | + { | ||
156 | + "id": 150004, | ||
157 | + "city": "赤峰", | ||
158 | + "pinyin": "chifeng" | ||
159 | + }, | ||
160 | + { | ||
161 | + "id": 150005, | ||
162 | + "city": "通辽", | ||
163 | + "pinyin": "tongliao" | ||
164 | + }, | ||
165 | + { | ||
166 | + "id": 150006, | ||
167 | + "city": "鄂尔多斯", | ||
168 | + "pinyin": "eerduosi" | ||
169 | + }, | ||
170 | + { | ||
171 | + "id": 150007, | ||
172 | + "city": "呼伦贝尔", | ||
173 | + "pinyin": "hulunbeier" | ||
174 | + }, | ||
175 | + { | ||
176 | + "id": 150008, | ||
177 | + "city": "巴彦淖尔", | ||
178 | + "pinyin": "bayannaoer" | ||
179 | + }, | ||
180 | + { | ||
181 | + "id": 150009, | ||
182 | + "city": "乌兰察布", | ||
183 | + "pinyin": "wulanchabu" | ||
184 | + }, | ||
185 | + { | ||
186 | + "id": 152002, | ||
187 | + "city": "兴安盟", | ||
188 | + "pinyin": "xinganmeng" | ||
189 | + }, | ||
190 | + { | ||
191 | + "id": 152005, | ||
192 | + "city": "锡林郭勒盟", | ||
193 | + "pinyin": "xilinguolemeng" | ||
194 | + }, | ||
195 | + { | ||
196 | + "id": 152009, | ||
197 | + "city": "阿拉善盟", | ||
198 | + "pinyin": "alashanmeng" | ||
199 | + }, | ||
200 | + { | ||
201 | + "id": 210001, | ||
202 | + "city": "沈阳", | ||
203 | + "pinyin": "shenyang" | ||
204 | + }, | ||
205 | + { | ||
206 | + "id": 210002, | ||
207 | + "city": "大连", | ||
208 | + "pinyin": "dalian" | ||
209 | + }, | ||
210 | + { | ||
211 | + "id": 210003, | ||
212 | + "city": "鞍山", | ||
213 | + "pinyin": "anshan" | ||
214 | + }, | ||
215 | + { | ||
216 | + "id": 210004, | ||
217 | + "city": "抚顺", | ||
218 | + "pinyin": "fushun" | ||
219 | + }, | ||
220 | + { | ||
221 | + "id": 210005, | ||
222 | + "city": "本溪", | ||
223 | + "pinyin": "benxi" | ||
224 | + }, | ||
225 | + { | ||
226 | + "id": 210006, | ||
227 | + "city": "丹东", | ||
228 | + "pinyin": "dandong" | ||
229 | + }, | ||
230 | + { | ||
231 | + "id": 210007, | ||
232 | + "city": "锦州", | ||
233 | + "pinyin": "jinzhou" | ||
234 | + }, | ||
235 | + { | ||
236 | + "id": 210008, | ||
237 | + "city": "营口", | ||
238 | + "pinyin": "yingkou" | ||
239 | + }, | ||
240 | + { | ||
241 | + "id": 210009, | ||
242 | + "city": "阜新", | ||
243 | + "pinyin": "fuxin" | ||
244 | + }, | ||
245 | + { | ||
246 | + "id": 21010, | ||
247 | + "city": "辽阳", | ||
248 | + "pinyin": "liaoyang" | ||
249 | + }, | ||
250 | + { | ||
251 | + "id": 211001, | ||
252 | + "city": "盘锦", | ||
253 | + "pinyin": "panjin" | ||
254 | + }, | ||
255 | + { | ||
256 | + "id": 211002, | ||
257 | + "city": "铁岭", | ||
258 | + "pinyin": "tieling" | ||
259 | + }, | ||
260 | + { | ||
261 | + "id": 211003, | ||
262 | + "city": "朝阳", | ||
263 | + "pinyin": "chaoyang" | ||
264 | + }, | ||
265 | + { | ||
266 | + "id": 211004, | ||
267 | + "city": "葫芦岛", | ||
268 | + "pinyin": "huludao" | ||
269 | + }, | ||
270 | + { | ||
271 | + "id": 220001, | ||
272 | + "city": "长春", | ||
273 | + "pinyin": "zhangchun" | ||
274 | + }, | ||
275 | + { | ||
276 | + "id": 220002, | ||
277 | + "city": "吉林", | ||
278 | + "pinyin": "jilin" | ||
279 | + }, | ||
280 | + { | ||
281 | + "id": 220003, | ||
282 | + "city": "四平", | ||
283 | + "pinyin": "siping" | ||
284 | + }, | ||
285 | + { | ||
286 | + "id": 220004, | ||
287 | + "city": "辽源", | ||
288 | + "pinyin": "liaoyuan" | ||
289 | + }, | ||
290 | + { | ||
291 | + "id": 220005, | ||
292 | + "city": "通化", | ||
293 | + "pinyin": "tonghua" | ||
294 | + }, | ||
295 | + { | ||
296 | + "id": 220006, | ||
297 | + "city": "白山", | ||
298 | + "pinyin": "baishan" | ||
299 | + }, | ||
300 | + { | ||
301 | + "id": 220007, | ||
302 | + "city": "松原", | ||
303 | + "pinyin": "songyuan" | ||
304 | + }, | ||
305 | + { | ||
306 | + "id": 220008, | ||
307 | + "city": "白城", | ||
308 | + "pinyin": "baicheng" | ||
309 | + }, | ||
310 | + { | ||
311 | + "id": 222004, | ||
312 | + "city": "延边朝鲜族自治州", | ||
313 | + "pinyin": "yanbianchaoxianzuzizhizhou" | ||
314 | + }, | ||
315 | + { | ||
316 | + "id": 230001, | ||
317 | + "city": "哈尔滨", | ||
318 | + "pinyin": "haerbin" | ||
319 | + }, | ||
320 | + { | ||
321 | + "id": 230002, | ||
322 | + "city": "齐齐哈尔", | ||
323 | + "pinyin": "qiqihaer" | ||
324 | + }, | ||
325 | + { | ||
326 | + "id": 230003, | ||
327 | + "city": "鸡西", | ||
328 | + "pinyin": "jixi" | ||
329 | + }, | ||
330 | + { | ||
331 | + "id": 230004, | ||
332 | + "city": "鹤岗", | ||
333 | + "pinyin": "hegang" | ||
334 | + }, | ||
335 | + { | ||
336 | + "id": 230006, | ||
337 | + "city": "大庆", | ||
338 | + "pinyin": "daqing" | ||
339 | + }, | ||
340 | + { | ||
341 | + "id": 230007, | ||
342 | + "city": "伊春", | ||
343 | + "pinyin": "yichun" | ||
344 | + }, | ||
345 | + { | ||
346 | + "id": 230008, | ||
347 | + "city": "佳木斯", | ||
348 | + "pinyin": "jiamusi" | ||
349 | + }, | ||
350 | + { | ||
351 | + "id": 230009, | ||
352 | + "city": "七台河", | ||
353 | + "pinyin": "qitaihe" | ||
354 | + }, | ||
355 | + { | ||
356 | + "id": 23010, | ||
357 | + "city": "牡丹江", | ||
358 | + "pinyin": "mudanjiang" | ||
359 | + }, | ||
360 | + { | ||
361 | + "id": 231001, | ||
362 | + "city": "黑河", | ||
363 | + "pinyin": "heihe" | ||
364 | + }, | ||
365 | + { | ||
366 | + "id": 231002, | ||
367 | + "city": "绥化", | ||
368 | + "pinyin": "suihua" | ||
369 | + }, | ||
370 | + { | ||
371 | + "id": 232007, | ||
372 | + "city": "大兴安岭地区", | ||
373 | + "pinyin": "daxinganlingdiqu" | ||
374 | + }, | ||
375 | + { | ||
376 | + "id": 310001, | ||
377 | + "city": "上海", | ||
378 | + "pinyin": "shanghai" | ||
379 | + }, | ||
380 | + { | ||
381 | + "id": 320001, | ||
382 | + "city": "南京", | ||
383 | + "pinyin": "nanjing" | ||
384 | + }, | ||
385 | + { | ||
386 | + "id": 320002, | ||
387 | + "city": "无锡", | ||
388 | + "pinyin": "wuxi" | ||
389 | + }, | ||
390 | + { | ||
391 | + "id": 320003, | ||
392 | + "city": "徐州", | ||
393 | + "pinyin": "xuzhou" | ||
394 | + }, | ||
395 | + { | ||
396 | + "id": 320004, | ||
397 | + "city": "常州", | ||
398 | + "pinyin": "changzhou" | ||
399 | + }, | ||
400 | + { | ||
401 | + "id": 320005, | ||
402 | + "city": "苏州", | ||
403 | + "pinyin": "suzhou" | ||
404 | + }, | ||
405 | + { | ||
406 | + "id": 320006, | ||
407 | + "city": "南通", | ||
408 | + "pinyin": "nantong" | ||
409 | + }, | ||
410 | + { | ||
411 | + "id": 320007, | ||
412 | + "city": "连云港", | ||
413 | + "pinyin": "lianyungang" | ||
414 | + }, | ||
415 | + { | ||
416 | + "id": 320008, | ||
417 | + "city": "淮安", | ||
418 | + "pinyin": "huaian" | ||
419 | + }, | ||
420 | + { | ||
421 | + "id": 320009, | ||
422 | + "city": "盐城", | ||
423 | + "pinyin": "yancheng" | ||
424 | + }, | ||
425 | + { | ||
426 | + "id": 32010, | ||
427 | + "city": "扬州", | ||
428 | + "pinyin": "yangzhou" | ||
429 | + }, | ||
430 | + { | ||
431 | + "id": 321001, | ||
432 | + "city": "镇江", | ||
433 | + "pinyin": "zhenjiang" | ||
434 | + }, | ||
435 | + { | ||
436 | + "id": 321002, | ||
437 | + "city": "泰州", | ||
438 | + "pinyin": "taizhou" | ||
439 | + }, | ||
440 | + { | ||
441 | + "id": 321003, | ||
442 | + "city": "宿迁", | ||
443 | + "pinyin": "suqian" | ||
444 | + }, | ||
445 | + { | ||
446 | + "id": 330001, | ||
447 | + "city": "杭州", | ||
448 | + "pinyin": "hangzhou" | ||
449 | + }, | ||
450 | + { | ||
451 | + "id": 330002, | ||
452 | + "city": "宁波", | ||
453 | + "pinyin": "ningbo" | ||
454 | + }, | ||
455 | + { | ||
456 | + "id": 330003, | ||
457 | + "city": "温州", | ||
458 | + "pinyin": "wenzhou" | ||
459 | + }, | ||
460 | + { | ||
461 | + "id": 330004, | ||
462 | + "city": "嘉兴", | ||
463 | + "pinyin": "jiaxing" | ||
464 | + }, | ||
465 | + { | ||
466 | + "id": 330005, | ||
467 | + "city": "湖州", | ||
468 | + "pinyin": "huzhou" | ||
469 | + }, | ||
470 | + { | ||
471 | + "id": 330006, | ||
472 | + "city": "绍兴", | ||
473 | + "pinyin": "shaoxing" | ||
474 | + }, | ||
475 | + { | ||
476 | + "id": 330007, | ||
477 | + "city": "金华", | ||
478 | + "pinyin": "jinhua" | ||
479 | + }, | ||
480 | + { | ||
481 | + "id": 330008, | ||
482 | + "city": "衢州", | ||
483 | + "pinyin": "quzhou" | ||
484 | + }, | ||
485 | + { | ||
486 | + "id": 330009, | ||
487 | + "city": "舟山", | ||
488 | + "pinyin": "zhoushan" | ||
489 | + }, | ||
490 | + { | ||
491 | + "id": 33010, | ||
492 | + "city": "台州", | ||
493 | + "pinyin": "taizhou1" | ||
494 | + }, | ||
495 | + { | ||
496 | + "id": 331001, | ||
497 | + "city": "丽水", | ||
498 | + "pinyin": "lishui" | ||
499 | + }, | ||
500 | + { | ||
501 | + "id": 340001, | ||
502 | + "city": "合肥", | ||
503 | + "pinyin": "hefei" | ||
504 | + }, | ||
505 | + { | ||
506 | + "id": 340002, | ||
507 | + "city": "芜湖", | ||
508 | + "pinyin": "wuhu" | ||
509 | + }, | ||
510 | + { | ||
511 | + "id": 340003, | ||
512 | + "city": "蚌埠", | ||
513 | + "pinyin": "bangbu" | ||
514 | + }, | ||
515 | + { | ||
516 | + "id": 340004, | ||
517 | + "city": "淮南", | ||
518 | + "pinyin": "huainan" | ||
519 | + }, | ||
520 | + { | ||
521 | + "id": 340005, | ||
522 | + "city": "马鞍山", | ||
523 | + "pinyin": "maanshan" | ||
524 | + }, | ||
525 | + { | ||
526 | + "id": 340006, | ||
527 | + "city": "淮北", | ||
528 | + "pinyin": "huaibei" | ||
529 | + }, | ||
530 | + { | ||
531 | + "id": 340007, | ||
532 | + "city": "铜陵", | ||
533 | + "pinyin": "tongling" | ||
534 | + }, | ||
535 | + { | ||
536 | + "id": 340008, | ||
537 | + "city": "安庆", | ||
538 | + "pinyin": "anqing" | ||
539 | + }, | ||
540 | + { | ||
541 | + "id": 34010, | ||
542 | + "city": "黄山", | ||
543 | + "pinyin": "huangshan" | ||
544 | + }, | ||
545 | + { | ||
546 | + "id": 341001, | ||
547 | + "city": "滁州", | ||
548 | + "pinyin": "chuzhou" | ||
549 | + }, | ||
550 | + { | ||
551 | + "id": 341002, | ||
552 | + "city": "阜阳", | ||
553 | + "pinyin": "fuyang" | ||
554 | + }, | ||
555 | + { | ||
556 | + "id": 341003, | ||
557 | + "city": "宿州", | ||
558 | + "pinyin": "suzhou1" | ||
559 | + }, | ||
560 | + { | ||
561 | + "id": 341004, | ||
562 | + "city": "巢湖", | ||
563 | + "pinyin": "chaohu" | ||
564 | + }, | ||
565 | + { | ||
566 | + "id": 341005, | ||
567 | + "city": "六安", | ||
568 | + "pinyin": "liuan" | ||
569 | + }, | ||
570 | + { | ||
571 | + "id": 341006, | ||
572 | + "city": "亳州", | ||
573 | + "pinyin": "bozhou" | ||
574 | + }, | ||
575 | + { | ||
576 | + "id": 341007, | ||
577 | + "city": "池州", | ||
578 | + "pinyin": "chizhou" | ||
579 | + }, | ||
580 | + { | ||
581 | + "id": 341008, | ||
582 | + "city": "宣城", | ||
583 | + "pinyin": "xuancheng" | ||
584 | + }, | ||
585 | + { | ||
586 | + "id": 350001, | ||
587 | + "city": "福州", | ||
588 | + "pinyin": "fuzhou" | ||
589 | + }, | ||
590 | + { | ||
591 | + "id": 350002, | ||
592 | + "city": "厦门", | ||
593 | + "pinyin": "xiamen" | ||
594 | + }, | ||
595 | + { | ||
596 | + "id": 350003, | ||
597 | + "city": "莆田", | ||
598 | + "pinyin": "putian" | ||
599 | + }, | ||
600 | + { | ||
601 | + "id": 350004, | ||
602 | + "city": "三明", | ||
603 | + "pinyin": "sanming" | ||
604 | + }, | ||
605 | + { | ||
606 | + "id": 350005, | ||
607 | + "city": "泉州", | ||
608 | + "pinyin": "quanzhou" | ||
609 | + }, | ||
610 | + { | ||
611 | + "id": 350006, | ||
612 | + "city": "漳州", | ||
613 | + "pinyin": "zhangzhou" | ||
614 | + }, | ||
615 | + { | ||
616 | + "id": 350007, | ||
617 | + "city": "南平", | ||
618 | + "pinyin": "nanping" | ||
619 | + }, | ||
620 | + { | ||
621 | + "id": 350008, | ||
622 | + "city": "龙岩", | ||
623 | + "pinyin": "longyan" | ||
624 | + }, | ||
625 | + { | ||
626 | + "id": 350009, | ||
627 | + "city": "宁德", | ||
628 | + "pinyin": "ningde" | ||
629 | + }, | ||
630 | + { | ||
631 | + "id": 360001, | ||
632 | + "city": "南昌", | ||
633 | + "pinyin": "nanchang" | ||
634 | + }, | ||
635 | + { | ||
636 | + "id": 360002, | ||
637 | + "city": "景德镇", | ||
638 | + "pinyin": "jingdezhen" | ||
639 | + }, | ||
640 | + { | ||
641 | + "id": 360003, | ||
642 | + "city": "萍乡", | ||
643 | + "pinyin": "pingxiang" | ||
644 | + }, | ||
645 | + { | ||
646 | + "id": 360004, | ||
647 | + "city": "九江", | ||
648 | + "pinyin": "jiujiang" | ||
649 | + }, | ||
650 | + { | ||
651 | + "id": 360005, | ||
652 | + "city": "新余", | ||
653 | + "pinyin": "xinyu" | ||
654 | + }, | ||
655 | + { | ||
656 | + "id": 360006, | ||
657 | + "city": "鹰潭", | ||
658 | + "pinyin": "yingtan" | ||
659 | + }, | ||
660 | + { | ||
661 | + "id": 360007, | ||
662 | + "city": "赣州", | ||
663 | + "pinyin": "ganzhou" | ||
664 | + }, | ||
665 | + { | ||
666 | + "id": 360008, | ||
667 | + "city": "吉安", | ||
668 | + "pinyin": "jian" | ||
669 | + }, | ||
670 | + { | ||
671 | + "id": 360009, | ||
672 | + "city": "宜春", | ||
673 | + "pinyin": "yichun1" | ||
674 | + }, | ||
675 | + { | ||
676 | + "id": 36010, | ||
677 | + "city": "抚州", | ||
678 | + "pinyin": "fuzhou1" | ||
679 | + }, | ||
680 | + { | ||
681 | + "id": 361001, | ||
682 | + "city": "上饶", | ||
683 | + "pinyin": "shangrao" | ||
684 | + }, | ||
685 | + { | ||
686 | + "id": 370001, | ||
687 | + "city": "济南", | ||
688 | + "pinyin": "jinan" | ||
689 | + }, | ||
690 | + { | ||
691 | + "id": 370002, | ||
692 | + "city": "青岛", | ||
693 | + "pinyin": "qingdao" | ||
694 | + }, | ||
695 | + { | ||
696 | + "id": 370003, | ||
697 | + "city": "淄博", | ||
698 | + "pinyin": "zibo" | ||
699 | + }, | ||
700 | + { | ||
701 | + "id": 370004, | ||
702 | + "city": "枣庄", | ||
703 | + "pinyin": "zaozhuang" | ||
704 | + }, | ||
705 | + { | ||
706 | + "id": 370005, | ||
707 | + "city": "东营", | ||
708 | + "pinyin": "dongying" | ||
709 | + }, | ||
710 | + { | ||
711 | + "id": 370006, | ||
712 | + "city": "烟台", | ||
713 | + "pinyin": "yantai" | ||
714 | + }, | ||
715 | + { | ||
716 | + "id": 370007, | ||
717 | + "city": "潍坊", | ||
718 | + "pinyin": "weifang" | ||
719 | + }, | ||
720 | + { | ||
721 | + "id": 370008, | ||
722 | + "city": "济宁", | ||
723 | + "pinyin": "jining" | ||
724 | + }, | ||
725 | + { | ||
726 | + "id": 370009, | ||
727 | + "city": "泰安", | ||
728 | + "pinyin": "taian" | ||
729 | + }, | ||
730 | + { | ||
731 | + "id": 37010, | ||
732 | + "city": "威海", | ||
733 | + "pinyin": "weihai" | ||
734 | + }, | ||
735 | + { | ||
736 | + "id": 371001, | ||
737 | + "city": "日照", | ||
738 | + "pinyin": "rizhao" | ||
739 | + }, | ||
740 | + { | ||
741 | + "id": 371002, | ||
742 | + "city": "莱芜", | ||
743 | + "pinyin": "laiwu" | ||
744 | + }, | ||
745 | + { | ||
746 | + "id": 371003, | ||
747 | + "city": "临沂", | ||
748 | + "pinyin": "linyi" | ||
749 | + }, | ||
750 | + { | ||
751 | + "id": 371004, | ||
752 | + "city": "德州", | ||
753 | + "pinyin": "dezhou" | ||
754 | + }, | ||
755 | + { | ||
756 | + "id": 371005, | ||
757 | + "city": "聊城", | ||
758 | + "pinyin": "liaocheng" | ||
759 | + }, | ||
760 | + { | ||
761 | + "id": 371006, | ||
762 | + "city": "滨州", | ||
763 | + "pinyin": "binzhou" | ||
764 | + }, | ||
765 | + { | ||
766 | + "id": 371007, | ||
767 | + "city": "荷泽", | ||
768 | + "pinyin": "heze" | ||
769 | + }, | ||
770 | + { | ||
771 | + "id": 410001, | ||
772 | + "city": "郑州", | ||
773 | + "pinyin": "zhengzhou" | ||
774 | + }, | ||
775 | + { | ||
776 | + "id": 410002, | ||
777 | + "city": "开封", | ||
778 | + "pinyin": "kaifeng" | ||
779 | + }, | ||
780 | + { | ||
781 | + "id": 410003, | ||
782 | + "city": "洛阳", | ||
783 | + "pinyin": "luoyang" | ||
784 | + }, | ||
785 | + { | ||
786 | + "id": 410004, | ||
787 | + "city": "平顶山", | ||
788 | + "pinyin": "pingdingshan" | ||
789 | + }, | ||
790 | + { | ||
791 | + "id": 410005, | ||
792 | + "city": "安阳", | ||
793 | + "pinyin": "anyang" | ||
794 | + }, | ||
795 | + { | ||
796 | + "id": 410006, | ||
797 | + "city": "鹤壁", | ||
798 | + "pinyin": "hebi" | ||
799 | + }, | ||
800 | + { | ||
801 | + "id": 410007, | ||
802 | + "city": "新乡", | ||
803 | + "pinyin": "xinxiang" | ||
804 | + }, | ||
805 | + { | ||
806 | + "id": 410008, | ||
807 | + "city": "焦作", | ||
808 | + "pinyin": "jiaozuo" | ||
809 | + }, | ||
810 | + { | ||
811 | + "id": 410009, | ||
812 | + "city": "濮阳", | ||
813 | + "pinyin": "puyang" | ||
814 | + }, | ||
815 | + { | ||
816 | + "id": 41010, | ||
817 | + "city": "许昌", | ||
818 | + "pinyin": "xuchang" | ||
819 | + }, | ||
820 | + { | ||
821 | + "id": 411001, | ||
822 | + "city": "漯河", | ||
823 | + "pinyin": "luohe" | ||
824 | + }, | ||
825 | + { | ||
826 | + "id": 411002, | ||
827 | + "city": "三门峡", | ||
828 | + "pinyin": "sanmenxia" | ||
829 | + }, | ||
830 | + { | ||
831 | + "id": 411003, | ||
832 | + "city": "南阳", | ||
833 | + "pinyin": "nanyang" | ||
834 | + }, | ||
835 | + { | ||
836 | + "id": 411004, | ||
837 | + "city": "商丘", | ||
838 | + "pinyin": "shangqiu" | ||
839 | + }, | ||
840 | + { | ||
841 | + "id": 411005, | ||
842 | + "city": "信阳", | ||
843 | + "pinyin": "xinyang" | ||
844 | + }, | ||
845 | + { | ||
846 | + "id": 411006, | ||
847 | + "city": "周口", | ||
848 | + "pinyin": "zhoukou" | ||
849 | + }, | ||
850 | + { | ||
851 | + "id": 411007, | ||
852 | + "city": "驻马店", | ||
853 | + "pinyin": "zhumadian" | ||
854 | + }, | ||
855 | + { | ||
856 | + "id": 420001, | ||
857 | + "city": "武汉", | ||
858 | + "pinyin": "wuhan" | ||
859 | + }, | ||
860 | + { | ||
861 | + "id": 420002, | ||
862 | + "city": "黄石", | ||
863 | + "pinyin": "huang" | ||
864 | + }, | ||
865 | + { | ||
866 | + "id": 420003, | ||
867 | + "city": "十堰", | ||
868 | + "pinyin": "shiyan" | ||
869 | + }, | ||
870 | + { | ||
871 | + "id": 420005, | ||
872 | + "city": "宜昌", | ||
873 | + "pinyin": "yichang" | ||
874 | + }, | ||
875 | + { | ||
876 | + "id": 420006, | ||
877 | + "city": "襄樊", | ||
878 | + "pinyin": "xiangfan" | ||
879 | + }, | ||
880 | + { | ||
881 | + "id": 420007, | ||
882 | + "city": "鄂州", | ||
883 | + "pinyin": "ezhou" | ||
884 | + }, | ||
885 | + { | ||
886 | + "id": 420008, | ||
887 | + "city": "荆门", | ||
888 | + "pinyin": "jingmen" | ||
889 | + }, | ||
890 | + { | ||
891 | + "id": 420009, | ||
892 | + "city": "孝感", | ||
893 | + "pinyin": "xiaogan" | ||
894 | + }, | ||
895 | + { | ||
896 | + "id": 42010, | ||
897 | + "city": "荆州", | ||
898 | + "pinyin": "jingzhou" | ||
899 | + }, | ||
900 | + { | ||
901 | + "id": 421001, | ||
902 | + "city": "黄冈", | ||
903 | + "pinyin": "huanggang" | ||
904 | + }, | ||
905 | + { | ||
906 | + "id": 421002, | ||
907 | + "city": "咸宁", | ||
908 | + "pinyin": "xianning" | ||
909 | + }, | ||
910 | + { | ||
911 | + "id": 421003, | ||
912 | + "city": "随州", | ||
913 | + "pinyin": "suizhou" | ||
914 | + }, | ||
915 | + { | ||
916 | + "id": 422008, | ||
917 | + "city": "恩施土家族苗族自治州", | ||
918 | + "pinyin": "entujiazumiaozuzizhizhou" | ||
919 | + }, | ||
920 | + { | ||
921 | + "id": 430001, | ||
922 | + "city": "长沙", | ||
923 | + "pinyin": "changsha" | ||
924 | + }, | ||
925 | + { | ||
926 | + "id": 430002, | ||
927 | + "city": "株洲", | ||
928 | + "pinyin": "zhuzhou" | ||
929 | + }, | ||
930 | + { | ||
931 | + "id": 430003, | ||
932 | + "city": "湘潭", | ||
933 | + "pinyin": "xiangtan" | ||
934 | + }, | ||
935 | + { | ||
936 | + "id": 430004, | ||
937 | + "city": "衡阳", | ||
938 | + "pinyin": "hengyang" | ||
939 | + }, | ||
940 | + { | ||
941 | + "id": 430005, | ||
942 | + "city": "邵阳", | ||
943 | + "pinyin": "shaoyang" | ||
944 | + }, | ||
945 | + { | ||
946 | + "id": 430006, | ||
947 | + "city": "岳阳", | ||
948 | + "pinyin": "yueyang" | ||
949 | + }, | ||
950 | + { | ||
951 | + "id": 430007, | ||
952 | + "city": "常德", | ||
953 | + "pinyin": "changde" | ||
954 | + }, | ||
955 | + { | ||
956 | + "id": 430008, | ||
957 | + "city": "张家界", | ||
958 | + "pinyin": "zhangjiajie" | ||
959 | + }, | ||
960 | + { | ||
961 | + "id": 430009, | ||
962 | + "city": "益阳", | ||
963 | + "pinyin": "yiyang" | ||
964 | + }, | ||
965 | + { | ||
966 | + "id": 43010, | ||
967 | + "city": "郴州", | ||
968 | + "pinyin": "chenzhou" | ||
969 | + }, | ||
970 | + { | ||
971 | + "id": 431001, | ||
972 | + "city": "永州", | ||
973 | + "pinyin": "yongzhou" | ||
974 | + }, | ||
975 | + { | ||
976 | + "id": 431002, | ||
977 | + "city": "怀化", | ||
978 | + "pinyin": "huaihua" | ||
979 | + }, | ||
980 | + { | ||
981 | + "id": 431003, | ||
982 | + "city": "娄底", | ||
983 | + "pinyin": "loudi" | ||
984 | + }, | ||
985 | + { | ||
986 | + "id": 433001, | ||
987 | + "city": "湘西", | ||
988 | + "pinyin": "xiangxitujiazumiaozuzizhizhou" | ||
989 | + }, | ||
990 | + { | ||
991 | + "id": 440001, | ||
992 | + "city": "广州", | ||
993 | + "pinyin": "guangzhou" | ||
994 | + }, | ||
995 | + { | ||
996 | + "id": 440002, | ||
997 | + "city": "韶关", | ||
998 | + "pinyin": "shaoguan" | ||
999 | + }, | ||
1000 | + { | ||
1001 | + "id": 440003, | ||
1002 | + "city": "深圳", | ||
1003 | + "pinyin": "shenzhen" | ||
1004 | + }, | ||
1005 | + { | ||
1006 | + "id": 440004, | ||
1007 | + "city": "珠海", | ||
1008 | + "pinyin": "zhuhai" | ||
1009 | + }, | ||
1010 | + { | ||
1011 | + "id": 440005, | ||
1012 | + "city": "汕头", | ||
1013 | + "pinyin": "shantou" | ||
1014 | + }, | ||
1015 | + { | ||
1016 | + "id": 440006, | ||
1017 | + "city": "佛山", | ||
1018 | + "pinyin": "foshan" | ||
1019 | + }, | ||
1020 | + { | ||
1021 | + "id": 440007, | ||
1022 | + "city": "江门", | ||
1023 | + "pinyin": "jiangmen" | ||
1024 | + }, | ||
1025 | + { | ||
1026 | + "id": 440008, | ||
1027 | + "city": "湛江", | ||
1028 | + "pinyin": "zhanjiang" | ||
1029 | + }, | ||
1030 | + { | ||
1031 | + "id": 440009, | ||
1032 | + "city": "茂名", | ||
1033 | + "pinyin": "maoming" | ||
1034 | + }, | ||
1035 | + { | ||
1036 | + "id": 441002, | ||
1037 | + "city": "肇庆", | ||
1038 | + "pinyin": "zhaoqing" | ||
1039 | + }, | ||
1040 | + { | ||
1041 | + "id": 441003, | ||
1042 | + "city": "惠州", | ||
1043 | + "pinyin": "huizhou" | ||
1044 | + }, | ||
1045 | + { | ||
1046 | + "id": 441004, | ||
1047 | + "city": "梅州", | ||
1048 | + "pinyin": "meizhou" | ||
1049 | + }, | ||
1050 | + { | ||
1051 | + "id": 441005, | ||
1052 | + "city": "汕尾", | ||
1053 | + "pinyin": "shanwei" | ||
1054 | + }, | ||
1055 | + { | ||
1056 | + "id": 441006, | ||
1057 | + "city": "河源", | ||
1058 | + "pinyin": "heyuan" | ||
1059 | + }, | ||
1060 | + { | ||
1061 | + "id": 441007, | ||
1062 | + "city": "阳江", | ||
1063 | + "pinyin": "yangjiang" | ||
1064 | + }, | ||
1065 | + { | ||
1066 | + "id": 441008, | ||
1067 | + "city": "清远", | ||
1068 | + "pinyin": "qingyuan" | ||
1069 | + }, | ||
1070 | + { | ||
1071 | + "id": 441009, | ||
1072 | + "city": "东莞", | ||
1073 | + "pinyin": "dongguan" | ||
1074 | + }, | ||
1075 | + { | ||
1076 | + "id": 442000, | ||
1077 | + "city": "中山", | ||
1078 | + "pinyin": "zhongshan" | ||
1079 | + }, | ||
1080 | + { | ||
1081 | + "id": 445001, | ||
1082 | + "city": "潮州", | ||
1083 | + "pinyin": "chaozhou" | ||
1084 | + }, | ||
1085 | + { | ||
1086 | + "id": 445002, | ||
1087 | + "city": "揭阳", | ||
1088 | + "pinyin": "jieyang" | ||
1089 | + }, | ||
1090 | + { | ||
1091 | + "id": 445003, | ||
1092 | + "city": "云浮", | ||
1093 | + "pinyin": "yunfu" | ||
1094 | + }, | ||
1095 | + { | ||
1096 | + "id": 450001, | ||
1097 | + "city": "南宁", | ||
1098 | + "pinyin": "nanning" | ||
1099 | + }, | ||
1100 | + { | ||
1101 | + "id": 450002, | ||
1102 | + "city": "柳州", | ||
1103 | + "pinyin": "liuzhou" | ||
1104 | + }, | ||
1105 | + { | ||
1106 | + "id": 450003, | ||
1107 | + "city": "桂林", | ||
1108 | + "pinyin": "guilin" | ||
1109 | + }, | ||
1110 | + { | ||
1111 | + "id": 450004, | ||
1112 | + "city": "梧州", | ||
1113 | + "pinyin": "wuzhou" | ||
1114 | + }, | ||
1115 | + { | ||
1116 | + "id": 450005, | ||
1117 | + "city": "北海", | ||
1118 | + "pinyin": "beihai" | ||
1119 | + }, | ||
1120 | + { | ||
1121 | + "id": 450006, | ||
1122 | + "city": "防城港", | ||
1123 | + "pinyin": "fangchenggang" | ||
1124 | + }, | ||
1125 | + { | ||
1126 | + "id": 450007, | ||
1127 | + "city": "钦州", | ||
1128 | + "pinyin": "qinzhou" | ||
1129 | + }, | ||
1130 | + { | ||
1131 | + "id": 450008, | ||
1132 | + "city": "贵港", | ||
1133 | + "pinyin": "guigang" | ||
1134 | + }, | ||
1135 | + { | ||
1136 | + "id": 450009, | ||
1137 | + "city": "玉林", | ||
1138 | + "pinyin": "yulin" | ||
1139 | + }, | ||
1140 | + { | ||
1141 | + "id": 45010, | ||
1142 | + "city": "百色", | ||
1143 | + "pinyin": "baise" | ||
1144 | + }, | ||
1145 | + { | ||
1146 | + "id": 451001, | ||
1147 | + "city": "贺州", | ||
1148 | + "pinyin": "hezhou" | ||
1149 | + }, | ||
1150 | + { | ||
1151 | + "id": 451002, | ||
1152 | + "city": "河池", | ||
1153 | + "pinyin": "hechi" | ||
1154 | + }, | ||
1155 | + { | ||
1156 | + "id": 451003, | ||
1157 | + "city": "来宾", | ||
1158 | + "pinyin": "laibin" | ||
1159 | + }, | ||
1160 | + { | ||
1161 | + "id": 451004, | ||
1162 | + "city": "崇左", | ||
1163 | + "pinyin": "chongzuo" | ||
1164 | + }, | ||
1165 | + { | ||
1166 | + "id": 460001, | ||
1167 | + "city": "海口", | ||
1168 | + "pinyin": "haikou" | ||
1169 | + }, | ||
1170 | + { | ||
1171 | + "id": 460002, | ||
1172 | + "city": "三亚", | ||
1173 | + "pinyin": "sanya" | ||
1174 | + }, | ||
1175 | + { | ||
1176 | + "id": 500003, | ||
1177 | + "city": "重庆", | ||
1178 | + "pinyin": "chongqing" | ||
1179 | + }, | ||
1180 | + { | ||
1181 | + "id": 510001, | ||
1182 | + "city": "成都", | ||
1183 | + "pinyin": "chengdu" | ||
1184 | + }, | ||
1185 | + { | ||
1186 | + "id": 510003, | ||
1187 | + "city": "自贡", | ||
1188 | + "pinyin": "zigong" | ||
1189 | + }, | ||
1190 | + { | ||
1191 | + "id": 510004, | ||
1192 | + "city": "攀枝花", | ||
1193 | + "pinyin": "panzhihua" | ||
1194 | + }, | ||
1195 | + { | ||
1196 | + "id": 510005, | ||
1197 | + "city": "泸州", | ||
1198 | + "pinyin": "luzhou" | ||
1199 | + }, | ||
1200 | + { | ||
1201 | + "id": 510006, | ||
1202 | + "city": "德阳", | ||
1203 | + "pinyin": "deyang" | ||
1204 | + }, | ||
1205 | + { | ||
1206 | + "id": 510007, | ||
1207 | + "city": "绵阳", | ||
1208 | + "pinyin": "mianyang" | ||
1209 | + }, | ||
1210 | + { | ||
1211 | + "id": 510008, | ||
1212 | + "city": "广元", | ||
1213 | + "pinyin": "guangyuan" | ||
1214 | + }, | ||
1215 | + { | ||
1216 | + "id": 510009, | ||
1217 | + "city": "遂宁", | ||
1218 | + "pinyin": "suining" | ||
1219 | + }, | ||
1220 | + { | ||
1221 | + "id": 51010, | ||
1222 | + "city": "内江", | ||
1223 | + "pinyin": "neijiang" | ||
1224 | + }, | ||
1225 | + { | ||
1226 | + "id": 511001, | ||
1227 | + "city": "乐山", | ||
1228 | + "pinyin": "leshan" | ||
1229 | + }, | ||
1230 | + { | ||
1231 | + "id": 511003, | ||
1232 | + "city": "南充", | ||
1233 | + "pinyin": "nanchong" | ||
1234 | + }, | ||
1235 | + { | ||
1236 | + "id": 511004, | ||
1237 | + "city": "眉山", | ||
1238 | + "pinyin": "meishan" | ||
1239 | + }, | ||
1240 | + { | ||
1241 | + "id": 511005, | ||
1242 | + "city": "宜宾", | ||
1243 | + "pinyin": "yibin" | ||
1244 | + }, | ||
1245 | + { | ||
1246 | + "id": 511006, | ||
1247 | + "city": "广安", | ||
1248 | + "pinyin": "guangan" | ||
1249 | + }, | ||
1250 | + { | ||
1251 | + "id": 511007, | ||
1252 | + "city": "达州", | ||
1253 | + "pinyin": "dazhou" | ||
1254 | + }, | ||
1255 | + { | ||
1256 | + "id": 511008, | ||
1257 | + "city": "雅安", | ||
1258 | + "pinyin": "yaan" | ||
1259 | + }, | ||
1260 | + { | ||
1261 | + "id": 511009, | ||
1262 | + "city": "巴中", | ||
1263 | + "pinyin": "bazhong" | ||
1264 | + }, | ||
1265 | + { | ||
1266 | + "id": 512000, | ||
1267 | + "city": "资阳", | ||
1268 | + "pinyin": "ziyang" | ||
1269 | + }, | ||
1270 | + { | ||
1271 | + "id": 513002, | ||
1272 | + "city": "阿坝藏族羌族自治州", | ||
1273 | + "pinyin": "abazangzuqiangzuzizhizhou" | ||
1274 | + }, | ||
1275 | + { | ||
1276 | + "id": 513003, | ||
1277 | + "city": "甘孜藏族自治州", | ||
1278 | + "pinyin": "ganzizangzuzizhizhou" | ||
1279 | + }, | ||
1280 | + { | ||
1281 | + "id": 513004, | ||
1282 | + "city": "凉山彝族自治州", | ||
1283 | + "pinyin": "liangshanyizuzizhizhou" | ||
1284 | + }, | ||
1285 | + { | ||
1286 | + "id": 520001, | ||
1287 | + "city": "贵阳", | ||
1288 | + "pinyin": "guiyang" | ||
1289 | + }, | ||
1290 | + { | ||
1291 | + "id": 520002, | ||
1292 | + "city": "六盘水", | ||
1293 | + "pinyin": "liupanshui" | ||
1294 | + }, | ||
1295 | + { | ||
1296 | + "id": 520003, | ||
1297 | + "city": "遵义", | ||
1298 | + "pinyin": "zunyi" | ||
1299 | + }, | ||
1300 | + { | ||
1301 | + "id": 520004, | ||
1302 | + "city": "安顺", | ||
1303 | + "pinyin": "anshun" | ||
1304 | + }, | ||
1305 | + { | ||
1306 | + "id": 522002, | ||
1307 | + "city": "铜仁地区", | ||
1308 | + "pinyin": "tongrendiqu" | ||
1309 | + }, | ||
1310 | + { | ||
1311 | + "id": 522003, | ||
1312 | + "city": "黔西南布依族苗族自治州", | ||
1313 | + "pinyin": "qianxinanbuyizumiaozuzizhizhou" | ||
1314 | + }, | ||
1315 | + { | ||
1316 | + "id": 522004, | ||
1317 | + "city": "毕节地区", | ||
1318 | + "pinyin": "bijiediqu" | ||
1319 | + }, | ||
1320 | + { | ||
1321 | + "id": 522006, | ||
1322 | + "city": "黔东南苗族侗族自治州", | ||
1323 | + "pinyin": "qiandongnanmiaozudongzuzizhizhou" | ||
1324 | + }, | ||
1325 | + { | ||
1326 | + "id": 522007, | ||
1327 | + "city": "黔南布依族苗族自治州", | ||
1328 | + "pinyin": "qiannanbuyizumiaozuzizhizhou" | ||
1329 | + }, | ||
1330 | + { | ||
1331 | + "id": 530001, | ||
1332 | + "city": "昆明", | ||
1333 | + "pinyin": "kunming" | ||
1334 | + }, | ||
1335 | + { | ||
1336 | + "id": 530003, | ||
1337 | + "city": "曲靖", | ||
1338 | + "pinyin": "qujing" | ||
1339 | + }, | ||
1340 | + { | ||
1341 | + "id": 530004, | ||
1342 | + "city": "玉溪", | ||
1343 | + "pinyin": "yuxi" | ||
1344 | + }, | ||
1345 | + { | ||
1346 | + "id": 530005, | ||
1347 | + "city": "保山", | ||
1348 | + "pinyin": "baoshan" | ||
1349 | + }, | ||
1350 | + { | ||
1351 | + "id": 530006, | ||
1352 | + "city": "昭通", | ||
1353 | + "pinyin": "zhaotong" | ||
1354 | + }, | ||
1355 | + { | ||
1356 | + "id": 530007, | ||
1357 | + "city": "丽江", | ||
1358 | + "pinyin": "lijiang" | ||
1359 | + }, | ||
1360 | + { | ||
1361 | + "id": 530008, | ||
1362 | + "city": "思茅", | ||
1363 | + "pinyin": "simao" | ||
1364 | + }, | ||
1365 | + { | ||
1366 | + "id": 530009, | ||
1367 | + "city": "临沧", | ||
1368 | + "pinyin": "lincang" | ||
1369 | + }, | ||
1370 | + { | ||
1371 | + "id": 532003, | ||
1372 | + "city": "楚雄彝族自治州", | ||
1373 | + "pinyin": "chuxiongyizuzizhizhou" | ||
1374 | + }, | ||
1375 | + { | ||
1376 | + "id": 532005, | ||
1377 | + "city": "红河哈尼族彝族自治州", | ||
1378 | + "pinyin": "honghehanizuyizuzizhizhou" | ||
1379 | + }, | ||
1380 | + { | ||
1381 | + "id": 532006, | ||
1382 | + "city": "文山壮族苗族自治州", | ||
1383 | + "pinyin": "wenshanzhuangzumiaozuzizhizhou" | ||
1384 | + }, | ||
1385 | + { | ||
1386 | + "id": 532008, | ||
1387 | + "city": "西双版纳傣族自治州", | ||
1388 | + "pinyin": "xishuangbannadaizuzizhizhou" | ||
1389 | + }, | ||
1390 | + { | ||
1391 | + "id": 532009, | ||
1392 | + "city": "大理白族自治州", | ||
1393 | + "pinyin": "dalibaizuzizhizhou" | ||
1394 | + }, | ||
1395 | + { | ||
1396 | + "id": 533001, | ||
1397 | + "city": "德宏傣族景颇族自治州", | ||
1398 | + "pinyin": "dehongdaizujingpozuzizhizhou" | ||
1399 | + }, | ||
1400 | + { | ||
1401 | + "id": 533003, | ||
1402 | + "city": "怒江傈僳族自治州", | ||
1403 | + "pinyin": "nujianglisuzuzizhizhou" | ||
1404 | + }, | ||
1405 | + { | ||
1406 | + "id": 533004, | ||
1407 | + "city": "迪庆藏族自治州", | ||
1408 | + "pinyin": "diqingzangzuzizhizhou" | ||
1409 | + }, | ||
1410 | + { | ||
1411 | + "id": 540001, | ||
1412 | + "city": "拉萨", | ||
1413 | + "pinyin": "lasa" | ||
1414 | + }, | ||
1415 | + { | ||
1416 | + "id": 542001, | ||
1417 | + "city": "昌都地区", | ||
1418 | + "pinyin": "changdoudiqu" | ||
1419 | + }, | ||
1420 | + { | ||
1421 | + "id": 542002, | ||
1422 | + "city": "山南地区", | ||
1423 | + "pinyin": "shannandiqu" | ||
1424 | + }, | ||
1425 | + { | ||
1426 | + "id": 542003, | ||
1427 | + "city": "日喀则地区", | ||
1428 | + "pinyin": "rikazediqu" | ||
1429 | + }, | ||
1430 | + { | ||
1431 | + "id": 542004, | ||
1432 | + "city": "那曲地区", | ||
1433 | + "pinyin": "neiqudiqu" | ||
1434 | + }, | ||
1435 | + { | ||
1436 | + "id": 542005, | ||
1437 | + "city": "阿里地区", | ||
1438 | + "pinyin": "alidiqu" | ||
1439 | + }, | ||
1440 | + { | ||
1441 | + "id": 542006, | ||
1442 | + "city": "林芝地区", | ||
1443 | + "pinyin": "linzhidiqu" | ||
1444 | + }, | ||
1445 | + { | ||
1446 | + "id": 610001, | ||
1447 | + "city": "西安", | ||
1448 | + "pinyin": "xian" | ||
1449 | + }, | ||
1450 | + { | ||
1451 | + "id": 610002, | ||
1452 | + "city": "铜川", | ||
1453 | + "pinyin": "tongchuan" | ||
1454 | + }, | ||
1455 | + { | ||
1456 | + "id": 610003, | ||
1457 | + "city": "宝鸡", | ||
1458 | + "pinyin": "baoji" | ||
1459 | + }, | ||
1460 | + { | ||
1461 | + "id": 610004, | ||
1462 | + "city": "咸阳", | ||
1463 | + "pinyin": "xianyang" | ||
1464 | + }, | ||
1465 | + { | ||
1466 | + "id": 610005, | ||
1467 | + "city": "渭南", | ||
1468 | + "pinyin": "weinan" | ||
1469 | + }, | ||
1470 | + { | ||
1471 | + "id": 610006, | ||
1472 | + "city": "延安", | ||
1473 | + "pinyin": "yanan" | ||
1474 | + }, | ||
1475 | + { | ||
1476 | + "id": 610007, | ||
1477 | + "city": "汉中", | ||
1478 | + "pinyin": "hanzhong" | ||
1479 | + }, | ||
1480 | + { | ||
1481 | + "id": 610008, | ||
1482 | + "city": "榆林", | ||
1483 | + "pinyin": "yulin" | ||
1484 | + }, | ||
1485 | + { | ||
1486 | + "id": 610009, | ||
1487 | + "city": "安康", | ||
1488 | + "pinyin": "ankang" | ||
1489 | + }, | ||
1490 | + { | ||
1491 | + "id": 61010, | ||
1492 | + "city": "商洛", | ||
1493 | + "pinyin": "shangluo" | ||
1494 | + }, | ||
1495 | + { | ||
1496 | + "id": 620001, | ||
1497 | + "city": "兰州", | ||
1498 | + "pinyin": "lanzhou" | ||
1499 | + }, | ||
1500 | + { | ||
1501 | + "id": 620002, | ||
1502 | + "city": "嘉峪关", | ||
1503 | + "pinyin": "jiayuguan" | ||
1504 | + }, | ||
1505 | + { | ||
1506 | + "id": 620003, | ||
1507 | + "city": "金昌", | ||
1508 | + "pinyin": "jinchang" | ||
1509 | + }, | ||
1510 | + { | ||
1511 | + "id": 620004, | ||
1512 | + "city": "白银", | ||
1513 | + "pinyin": "baiyin" | ||
1514 | + }, | ||
1515 | + { | ||
1516 | + "id": 620005, | ||
1517 | + "city": "天水", | ||
1518 | + "pinyin": "tianshui" | ||
1519 | + }, | ||
1520 | + { | ||
1521 | + "id": 620006, | ||
1522 | + "city": "武威", | ||
1523 | + "pinyin": "wuwei" | ||
1524 | + }, | ||
1525 | + { | ||
1526 | + "id": 620007, | ||
1527 | + "city": "张掖", | ||
1528 | + "pinyin": "zhangye" | ||
1529 | + }, | ||
1530 | + { | ||
1531 | + "id": 620008, | ||
1532 | + "city": "平凉", | ||
1533 | + "pinyin": "pingliang" | ||
1534 | + }, | ||
1535 | + { | ||
1536 | + "id": 620009, | ||
1537 | + "city": "酒泉", | ||
1538 | + "pinyin": "jiuquan" | ||
1539 | + }, | ||
1540 | + { | ||
1541 | + "id": 62010, | ||
1542 | + "city": "庆阳", | ||
1543 | + "pinyin": "qingyang" | ||
1544 | + }, | ||
1545 | + { | ||
1546 | + "id": 621001, | ||
1547 | + "city": "定西", | ||
1548 | + "pinyin": "dingxi" | ||
1549 | + }, | ||
1550 | + { | ||
1551 | + "id": 621002, | ||
1552 | + "city": "陇南", | ||
1553 | + "pinyin": "longnan" | ||
1554 | + }, | ||
1555 | + { | ||
1556 | + "id": 622009, | ||
1557 | + "city": "临夏回族自治州", | ||
1558 | + "pinyin": "linxiahuizuzizhizhou" | ||
1559 | + }, | ||
1560 | + { | ||
1561 | + "id": 623000, | ||
1562 | + "city": "甘南藏族自治州", | ||
1563 | + "pinyin": "gannanzangzuzizhizhou" | ||
1564 | + }, | ||
1565 | + { | ||
1566 | + "id": 630001, | ||
1567 | + "city": "西宁", | ||
1568 | + "pinyin": "xining" | ||
1569 | + }, | ||
1570 | + { | ||
1571 | + "id": 632001, | ||
1572 | + "city": "海东地区", | ||
1573 | + "pinyin": "haidongdiqu" | ||
1574 | + }, | ||
1575 | + { | ||
1576 | + "id": 632002, | ||
1577 | + "city": "海北藏族自治州", | ||
1578 | + "pinyin": "haibeizangzuzizhizhou" | ||
1579 | + }, | ||
1580 | + { | ||
1581 | + "id": 632003, | ||
1582 | + "city": "黄南藏族自治州", | ||
1583 | + "pinyin": "huangnanzangzuzizhizhou" | ||
1584 | + }, | ||
1585 | + { | ||
1586 | + "id": 632005, | ||
1587 | + "city": "海南藏族自治州", | ||
1588 | + "pinyin": "hainanzangzuzizhizhou" | ||
1589 | + }, | ||
1590 | + { | ||
1591 | + "id": 632006, | ||
1592 | + "city": "果洛藏族自治州", | ||
1593 | + "pinyin": "guoluozangzuzizhizhou" | ||
1594 | + }, | ||
1595 | + { | ||
1596 | + "id": 632007, | ||
1597 | + "city": "玉树藏族自治州", | ||
1598 | + "pinyin": "yushuzangzuzizhizhou" | ||
1599 | + }, | ||
1600 | + { | ||
1601 | + "id": 632008, | ||
1602 | + "city": "海西蒙古族藏族自治州", | ||
1603 | + "pinyin": "haiximengguzuzangzuzizhizhou" | ||
1604 | + }, | ||
1605 | + { | ||
1606 | + "id": 640001, | ||
1607 | + "city": "银川", | ||
1608 | + "pinyin": "yinchuan" | ||
1609 | + }, | ||
1610 | + { | ||
1611 | + "id": 640002, | ||
1612 | + "city": "石嘴山", | ||
1613 | + "pinyin": "zuishan" | ||
1614 | + }, | ||
1615 | + { | ||
1616 | + "id": 640003, | ||
1617 | + "city": "吴忠", | ||
1618 | + "pinyin": "wuzhong" | ||
1619 | + }, | ||
1620 | + { | ||
1621 | + "id": 640004, | ||
1622 | + "city": "固原", | ||
1623 | + "pinyin": "guyuan" | ||
1624 | + }, | ||
1625 | + { | ||
1626 | + "id": 640005, | ||
1627 | + "city": "中卫", | ||
1628 | + "pinyin": "zhongwei" | ||
1629 | + }, | ||
1630 | + { | ||
1631 | + "id": 650001, | ||
1632 | + "city": "乌鲁木齐", | ||
1633 | + "pinyin": "wulumuqi" | ||
1634 | + }, | ||
1635 | + { | ||
1636 | + "id": 650002, | ||
1637 | + "city": "克拉玛依", | ||
1638 | + "pinyin": "kelamayi" | ||
1639 | + }, | ||
1640 | + { | ||
1641 | + "id": 652001, | ||
1642 | + "city": "吐鲁番地区", | ||
1643 | + "pinyin": "tulufandiqu" | ||
1644 | + }, | ||
1645 | + { | ||
1646 | + "id": 652002, | ||
1647 | + "city": "哈密地区", | ||
1648 | + "pinyin": "hamidiqu" | ||
1649 | + }, | ||
1650 | + { | ||
1651 | + "id": 652003, | ||
1652 | + "city": "昌吉回族自治州", | ||
1653 | + "pinyin": "changjihuizuzizhizhou" | ||
1654 | + }, | ||
1655 | + { | ||
1656 | + "id": 652007, | ||
1657 | + "city": "博尔塔拉蒙古自治州", | ||
1658 | + "pinyin": "boertalamengguzizhizhou" | ||
1659 | + }, | ||
1660 | + { | ||
1661 | + "id": 652008, | ||
1662 | + "city": "巴音郭楞蒙古自治州", | ||
1663 | + "pinyin": "bayinguolengmengguzizhizhou" | ||
1664 | + }, | ||
1665 | + { | ||
1666 | + "id": 652009, | ||
1667 | + "city": "阿克苏地区", | ||
1668 | + "pinyin": "akesudiqu" | ||
1669 | + }, | ||
1670 | + { | ||
1671 | + "id": 653000, | ||
1672 | + "city": "克孜勒苏柯尔克孜自治州", | ||
1673 | + "pinyin": "kezilesukeerkezizizhizhou" | ||
1674 | + }, | ||
1675 | + { | ||
1676 | + "id": 653001, | ||
1677 | + "city": "喀什地区", | ||
1678 | + "pinyin": "kashendiqu" | ||
1679 | + }, | ||
1680 | + { | ||
1681 | + "id": 653002, | ||
1682 | + "city": "和田地区", | ||
1683 | + "pinyin": "hetiandiqu" | ||
1684 | + }, | ||
1685 | + { | ||
1686 | + "id": 654003, | ||
1687 | + "city": "阿勒泰地区", | ||
1688 | + "pinyin": "aletaidiqu" | ||
1689 | + }, | ||
1690 | + { | ||
1691 | + "id": 810001, | ||
1692 | + "city": "香港", | ||
1693 | + "pinyin": "xianggang" | ||
1694 | + } | ||
1695 | + ] | ||
1696 | +} |
assets/css/api.css
0 → 100644
1 | +@font-face { | ||
2 | + /* font-properties */ | ||
3 | + font-family: iospingfang; | ||
4 | + src: url('../icon/PingFangRegular.ttf'); | ||
5 | +} | ||
6 | + | ||
7 | +@font-face { | ||
8 | + font-family: 'fzjt'; | ||
9 | + src: url("../icon/fzjt.ttf"); | ||
10 | +} | ||
11 | + | ||
12 | +html { | ||
13 | + font-family: sans-serif; | ||
14 | +} | ||
15 | + | ||
16 | +html, body, header, section, footer, div, ul, ol, li, img, a, span, em, del, legend, center, strong, var, fieldset, form, label, dl, dt, dd, cite, input, hr, time, mark, code, figcaption, figure, textarea, h1, h2, h3, h4, h5, h6, p { | ||
17 | + margin: 0; | ||
18 | + border: 0; | ||
19 | + padding: 0; | ||
20 | + font-style: normal; | ||
21 | + /*touch-action: none;*/ | ||
22 | + touch-action: manipulation | ||
23 | +} | ||
24 | + | ||
25 | +html, body { | ||
26 | + -webkit-touch-callout: none; | ||
27 | + -webkit-text-size-adjust: none; | ||
28 | + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | ||
29 | + -webkit-user-select: none; | ||
30 | + background-color: #fff; | ||
31 | +} | ||
32 | + | ||
33 | +nav, article, aside, details, main, header, footer, section, fieldset, figcaption, figure { | ||
34 | + display: block; | ||
35 | +} | ||
36 | + | ||
37 | +img, a, button, em, del, strong, var, label, cite, small, time, mark, code, textarea { | ||
38 | + display: inline-block; | ||
39 | +} | ||
40 | + | ||
41 | +header, section, footer { | ||
42 | + position: relative; | ||
43 | +} | ||
44 | + | ||
45 | +ol, ul { | ||
46 | + list-style: none; | ||
47 | +} | ||
48 | + | ||
49 | +input, button, textarea { | ||
50 | + border: 0; | ||
51 | + margin: 0; | ||
52 | + padding: 0; | ||
53 | + font-size: 1em; | ||
54 | + line-height: 1em; | ||
55 | + -webkit-appearance: none; | ||
56 | + background-color: rgba(0, 0, 0, 0); | ||
57 | + outline: none; | ||
58 | +} | ||
59 | + | ||
60 | +input[type="text"], | ||
61 | +input[type="date"], | ||
62 | +input[type="tel"], | ||
63 | +input[type="email"], | ||
64 | +input[type="number"], | ||
65 | +input[type="password"], | ||
66 | +input[type="checkbox"] { | ||
67 | + -webkit-appearance: none; | ||
68 | + display: block; | ||
69 | + height: 100%; | ||
70 | + line-height: normal; /*手机上的line-height不能写成和height的值一样,会出现再次输入光标靠上的现象*/ | ||
71 | + background: none; | ||
72 | + border-radius: 0; | ||
73 | + -webkit-border-radius: 0; | ||
74 | + outline: none; | ||
75 | + -webkit-transform: translateZ(0); | ||
76 | + -moz-transform: translateZ(0); | ||
77 | + -ms-transform: translateZ(0); | ||
78 | + -o-transform: translateZ(0); | ||
79 | + transform: translateZ(0); /*解决加入js后input框输入瞬间变白的现象*/ | ||
80 | +} | ||
81 | + | ||
82 | +span { | ||
83 | + display: inline-block; | ||
84 | +} | ||
85 | + | ||
86 | +a:active, a:hover { | ||
87 | + outline: 0; | ||
88 | +} | ||
89 | + | ||
90 | +a, a:visited { | ||
91 | + text-decoration: none; | ||
92 | +} | ||
93 | + | ||
94 | +label, .wordWrap { | ||
95 | + word-wrap: break-word; | ||
96 | + word-break: break-all; | ||
97 | +} | ||
98 | + | ||
99 | +table { | ||
100 | + border-collapse: collapse; | ||
101 | + border-spacing: 0; | ||
102 | +} | ||
103 | + | ||
104 | +td, th { | ||
105 | + padding: 0; | ||
106 | +} | ||
107 | + | ||
108 | +.clearfix:after { | ||
109 | + content: ' '; | ||
110 | + display: block; | ||
111 | + clear: both; | ||
112 | + visibility: hidden; | ||
113 | + line-height: 0; | ||
114 | + height: 0; | ||
115 | +} | ||
116 | + | ||
117 | +.loading_more { | ||
118 | + display: block; | ||
119 | + height: 1.5em; | ||
120 | + width: 100%; | ||
121 | +} | ||
122 | + | ||
123 | +.loading_more:before { | ||
124 | + display: inline-block; | ||
125 | + vertical-align: text-bottom; | ||
126 | + content: ' '; | ||
127 | + height: 16px; | ||
128 | + width: 16px; | ||
129 | + margin-right: 6px; | ||
130 | + background: url(../image/loading_more.gif) no-repeat center; | ||
131 | + -webkit-background-size: contain; | ||
132 | + background-size: contain; | ||
133 | +} | ||
134 | + | ||
135 | +.loading_more:after { | ||
136 | + content: '加载更多'; | ||
137 | +} | ||
138 | + | ||
139 | +* { | ||
140 | + margin: 0; | ||
141 | + padding: 0; | ||
142 | + box-sizing: border-box; | ||
143 | + /*overflow-y: scroll;*/ | ||
144 | +} | ||
145 | + | ||
146 | +.main_color { | ||
147 | + color: #dbb25f; | ||
148 | +} | ||
149 | + | ||
150 | +.clamp1 { | ||
151 | + display: -webkit-box !important; | ||
152 | + -webkit-box-orient: vertical; | ||
153 | + -webkit-line-clamp: 1; | ||
154 | + overflow: hidden; | ||
155 | +} | ||
156 | + | ||
157 | +.ellipsis { | ||
158 | + overflow: hidden; | ||
159 | + text-overflow: ellipsis; | ||
160 | + white-space: nowrap; | ||
161 | +} | ||
162 | + | ||
163 | +.clamp2 { | ||
164 | + display: -webkit-box; | ||
165 | + -webkit-box-orient: vertical; | ||
166 | + -webkit-line-clamp: 2; | ||
167 | + overflow: hidden; | ||
168 | +} | ||
169 | + | ||
170 | +.padding0 { | ||
171 | + padding: 0 !important; | ||
172 | +} | ||
173 | + | ||
174 | +.margin0 { | ||
175 | + margin: 0 !important; | ||
176 | +} | ||
177 | + | ||
178 | +[v-cloak] { | ||
179 | + display: none; | ||
180 | +} | ||
181 | + | ||
182 | +#loadStart { | ||
183 | + position: fixed; | ||
184 | + left: 0; | ||
185 | + right: 0; | ||
186 | + top: 0; | ||
187 | + bottom: 0; | ||
188 | + /*background: #bbb;*/ | ||
189 | + z-index: 100000; | ||
190 | + transition: 1s; | ||
191 | + background: #fff url("../image/loading.gif") center center no-repeat; | ||
192 | + background-size: 12%; | ||
193 | +} | ||
194 | + | ||
195 | +.save_btn { | ||
196 | + text-align: center; | ||
197 | + font-size: 0.36rem; | ||
198 | + color: #fff; | ||
199 | + padding: 0.15rem 0; | ||
200 | + width: 100%; | ||
201 | + position: absolute; | ||
202 | + left: 0; | ||
203 | + bottom: 0; | ||
204 | + z-index: 100; | ||
205 | + background-color: #dbb25f; | ||
206 | +} | ||
207 | + | ||
208 | +.moreoul { | ||
209 | + width: 100%; | ||
210 | +} | ||
211 | + | ||
212 | +.moreoul li { | ||
213 | + width: 100%; | ||
214 | + padding: 0.3rem 0; | ||
215 | + line-height: 0.3rem; | ||
216 | + font-size: 16px; | ||
217 | + border-bottom: 1px solid #f0f0f0; | ||
218 | + text-align: center; | ||
219 | +} | ||
220 | + | ||
221 | +.nodata { | ||
222 | + font-size: 16px; | ||
223 | + color: #c0c0c0; | ||
224 | + text-align: center; | ||
225 | + padding: 0.5rem 0; | ||
226 | + width: 100% !important; | ||
227 | +} | ||
228 | + | ||
229 | +.weui-picker__indicator:after { | ||
230 | + border-bottom: 1px solid #dbb25f; | ||
231 | +} | ||
232 | + | ||
233 | +.weui-picker__indicator:before { | ||
234 | + border-top: 1px solid #dbb25f; | ||
235 | +} | ||
236 | + | ||
237 | +.weui-picker__action { | ||
238 | + padding: 0.2rem 0; | ||
239 | + font-size: 13px; | ||
240 | + text-align: center; | ||
241 | +} | ||
242 | + | ||
243 | +.weui-picker__action:first-child { | ||
244 | + color: #333; | ||
245 | + text-align: center; | ||
246 | +} | ||
247 | + | ||
248 | +.weui-picker__action:last-child { | ||
249 | + color: #fff; | ||
250 | + text-align: center; | ||
251 | + background-color: #dbb25f; | ||
252 | +} | ||
253 | + | ||
254 | +.weui-picker__hd { | ||
255 | + padding: 0; | ||
256 | +} | ||
257 | + | ||
258 | +.weui-picker__item { | ||
259 | + font-size: 13px; | ||
260 | +} | ||
261 | + | ||
262 | +.close_left { | ||
263 | + position: relative; | ||
264 | +} | ||
265 | + | ||
266 | +.close_left::before { | ||
267 | + position: absolute; | ||
268 | + left: -0.1rem; | ||
269 | + right: -0.1rem; | ||
270 | + top: -0.1rem; | ||
271 | + bottom: -0.1rem; | ||
272 | + content: ''; | ||
273 | +} | ||
274 | + | ||
275 | +.mint-popup-bottom { | ||
276 | + width: 100%; | ||
277 | +} | ||
278 | + | ||
279 | +.weui-check__label:active { | ||
280 | + background: transparent; | ||
281 | +} | ||
282 | + | ||
283 | +.weui-cells_checkbox .weui-icon-checked:before { | ||
284 | + /*content: '';*/ | ||
285 | +} | ||
286 | + | ||
287 | +.weui-cells_checkbox .weui-check:checked + .weui-icon-checked:before { | ||
288 | + color: #dbb25f | ||
289 | +} | ||
290 | + | ||
291 | +.weui-cell__hd { | ||
292 | + position: relative; | ||
293 | +} | ||
294 | + | ||
295 | +.weui-cell__hd::before { | ||
296 | + content: ''; | ||
297 | + position: absolute; | ||
298 | + left: -10px; | ||
299 | + right: -10px; | ||
300 | + top: -10px; | ||
301 | + bottom: -10px; | ||
302 | +} | ||
303 | + | ||
304 | +.mold_index { | ||
305 | + position: fixed; | ||
306 | + height: 100%; | ||
307 | + width: 100%; | ||
308 | + background-color: rgba(0, 0, 0, 0.05); | ||
309 | + /*background-color: #000;*/ | ||
310 | + left: 0; | ||
311 | + top: 0; | ||
312 | + bottom: 0; | ||
313 | + z-index: 10; | ||
314 | +} | ||
315 | + | ||
316 | +.weui-mask, .weui-mask_transparent { | ||
317 | + position: fixed; | ||
318 | + z-index: 1000; | ||
319 | + top: 0; | ||
320 | + right: 0; | ||
321 | + left: 0; | ||
322 | + bottom: 0; | ||
323 | + width: 100%; | ||
324 | + height: 100%; | ||
325 | + display: flex; | ||
326 | + align-items: center; | ||
327 | + justify-content: center; | ||
328 | +} | ||
329 | + | ||
330 | +.weui-toast { | ||
331 | + position: fixed; | ||
332 | + z-index: 5000; | ||
333 | + width: 80%; | ||
334 | + min-height: auto; | ||
335 | + height: auto; | ||
336 | + top: 50%; | ||
337 | + left: 0; | ||
338 | + right: 0; | ||
339 | + margin: 0 auto; | ||
340 | + /*margin-left: -3.8em;*/ | ||
341 | + background: hsla(0, 0%, 7%, .7); | ||
342 | + text-align: center; | ||
343 | + border-radius: 5px; | ||
344 | + color: #fff; | ||
345 | + font-size: 14px; | ||
346 | + padding: 0.2rem 0; | ||
347 | +} | ||
348 | + | ||
349 | +.weui-icon_toast { | ||
350 | + margin: 0; | ||
351 | + display: block | ||
352 | +} | ||
353 | + | ||
354 | +.weui-toast__content { | ||
355 | + margin: 0; | ||
356 | +} | ||
357 | + | ||
358 | +.weui-icon_toast.weui-icon-success-no-circle { | ||
359 | + font-size: 0; | ||
360 | +} | ||
361 | + | ||
362 | +.weui-icon_toast.weui-icon-success-no-circle:before { | ||
363 | + color: #fff; | ||
364 | + font-size: 0; | ||
365 | + margin: 0; | ||
366 | +} |
assets/css/bank.json
0 → 100644
1 | +{ | ||
2 | + "bankList": [ | ||
3 | + { | ||
4 | + "value": "CDB", | ||
5 | + "text": "国家开发银行" | ||
6 | + }, | ||
7 | + { | ||
8 | + "value": "ICBC", | ||
9 | + "text": "中国工商银行" | ||
10 | + }, | ||
11 | + { | ||
12 | + "value": "ABC", | ||
13 | + "text": "中国农业银行" | ||
14 | + }, | ||
15 | + { | ||
16 | + "value": "BOC", | ||
17 | + "text": "中国银行" | ||
18 | + }, | ||
19 | + { | ||
20 | + "value": "CCB", | ||
21 | + "text": "中国建设银行" | ||
22 | + }, | ||
23 | + { | ||
24 | + "value": "PSBC", | ||
25 | + "text": "中国邮政储蓄银行" | ||
26 | + }, | ||
27 | + { | ||
28 | + "value": "COMM", | ||
29 | + "text": "交通银行" | ||
30 | + }, | ||
31 | + { | ||
32 | + "value": "CMB", | ||
33 | + "text": "招商银行" | ||
34 | + }, | ||
35 | + { | ||
36 | + "value": "SPDB", | ||
37 | + "text": "上海浦东发展银行" | ||
38 | + }, | ||
39 | + { | ||
40 | + "value": "CIB", | ||
41 | + "text": "兴业银行" | ||
42 | + }, | ||
43 | + { | ||
44 | + "value": "HXBANK", | ||
45 | + "text": "华夏银行" | ||
46 | + }, | ||
47 | + { | ||
48 | + "value": "GDB", | ||
49 | + "text": "广东发展银行" | ||
50 | + }, | ||
51 | + { | ||
52 | + "value": "CMBC", | ||
53 | + "text": "中国民生银行" | ||
54 | + }, | ||
55 | + { | ||
56 | + "value": "CITIC", | ||
57 | + "text": "中信银行" | ||
58 | + }, | ||
59 | + { | ||
60 | + "value": "CEB", | ||
61 | + "text": "中国光大银行" | ||
62 | + }, | ||
63 | + { | ||
64 | + "value": "EGBANK", | ||
65 | + "text": "恒丰银行" | ||
66 | + }, | ||
67 | + { | ||
68 | + "value": "CZBANK", | ||
69 | + "text": "浙商银行" | ||
70 | + }, | ||
71 | + { | ||
72 | + "value": "BOHAIB", | ||
73 | + "text": "渤海银行" | ||
74 | + }, | ||
75 | + { | ||
76 | + "value": "SPABANK", | ||
77 | + "text": "平安银行" | ||
78 | + }, | ||
79 | + { | ||
80 | + "value": "SHRCB", | ||
81 | + "text": "上海农村商业银行" | ||
82 | + }, | ||
83 | + { | ||
84 | + "value": "YXCCB", | ||
85 | + "text": "玉溪市商业银行" | ||
86 | + }, | ||
87 | + { | ||
88 | + "value": "YDRCB", | ||
89 | + "text": "尧都农商行" | ||
90 | + }, | ||
91 | + { | ||
92 | + "value": "BJBANK", | ||
93 | + "text": "北京银行" | ||
94 | + }, | ||
95 | + { | ||
96 | + "value": "SHBANK", | ||
97 | + "text": "上海银行" | ||
98 | + }, | ||
99 | + { | ||
100 | + "value": "JSBANK", | ||
101 | + "text": "江苏银行" | ||
102 | + }, | ||
103 | + { | ||
104 | + "value": "HZCB", | ||
105 | + "text": "杭州银行" | ||
106 | + }, | ||
107 | + { | ||
108 | + "value": "NJCB", | ||
109 | + "text": "南京银行" | ||
110 | + }, | ||
111 | + { | ||
112 | + "value": "NBBANK", | ||
113 | + "text": "宁波银行" | ||
114 | + }, | ||
115 | + { | ||
116 | + "value": "HSBANK", | ||
117 | + "text": "徽商银行" | ||
118 | + }, | ||
119 | + { | ||
120 | + "value": "CSCB", | ||
121 | + "text": "长沙银行" | ||
122 | + }, | ||
123 | + { | ||
124 | + "value": "CDCB", | ||
125 | + "text": "成都银行" | ||
126 | + }, | ||
127 | + { | ||
128 | + "value": "CQBANK", | ||
129 | + "text": "重庆银行" | ||
130 | + }, | ||
131 | + { | ||
132 | + "value": "DLB", | ||
133 | + "text": "大连银行" | ||
134 | + }, | ||
135 | + { | ||
136 | + "value": "NCB", | ||
137 | + "text": "南昌银行" | ||
138 | + }, | ||
139 | + { | ||
140 | + "value": "FJHXBC", | ||
141 | + "text": "福建海峡银行" | ||
142 | + }, | ||
143 | + { | ||
144 | + "value": "HKB", | ||
145 | + "text": "汉口银行" | ||
146 | + }, | ||
147 | + { | ||
148 | + "value": "WZCB", | ||
149 | + "text": "温州银行" | ||
150 | + }, | ||
151 | + { | ||
152 | + "value": "QDCCB", | ||
153 | + "text": "青岛银行" | ||
154 | + }, | ||
155 | + { | ||
156 | + "value": "TZCB", | ||
157 | + "text": "台州银行" | ||
158 | + }, | ||
159 | + { | ||
160 | + "value": "JXBANK", | ||
161 | + "text": "嘉兴银行" | ||
162 | + }, | ||
163 | + { | ||
164 | + "value": "CSRCB", | ||
165 | + "text": "常熟农村商业银行" | ||
166 | + }, | ||
167 | + { | ||
168 | + "value": "NHB", | ||
169 | + "text": "南海农村信用联社" | ||
170 | + }, | ||
171 | + { | ||
172 | + "value": "CZRCB", | ||
173 | + "text": "常州农村信用联社" | ||
174 | + }, | ||
175 | + { | ||
176 | + "value": "H3CB", | ||
177 | + "text": "内蒙古银行" | ||
178 | + }, | ||
179 | + { | ||
180 | + "value": "SXCB", | ||
181 | + "text": "绍兴银行" | ||
182 | + }, | ||
183 | + { | ||
184 | + "value": "SDEB", | ||
185 | + "text": "顺德农商银行" | ||
186 | + }, | ||
187 | + { | ||
188 | + "value": "WJRCB", | ||
189 | + "text": "吴江农商银行" | ||
190 | + }, | ||
191 | + { | ||
192 | + "value": "ZBCB", | ||
193 | + "text": "齐商银行" | ||
194 | + }, | ||
195 | + { | ||
196 | + "value": "GYCB", | ||
197 | + "text": "贵阳市商业银行" | ||
198 | + }, | ||
199 | + { | ||
200 | + "value": "ZYCBANK", | ||
201 | + "text": "遵义市商业银行" | ||
202 | + }, | ||
203 | + { | ||
204 | + "value": "HZCCB", | ||
205 | + "text": "湖州市商业银行" | ||
206 | + }, | ||
207 | + { | ||
208 | + "value": "DAQINGB", | ||
209 | + "text": "龙江银行" | ||
210 | + }, | ||
211 | + { | ||
212 | + "value": "JINCHB", | ||
213 | + "text": "晋城银行JCBANK" | ||
214 | + }, | ||
215 | + { | ||
216 | + "value": "ZJTLCB", | ||
217 | + "text": "浙江泰隆商业银行" | ||
218 | + }, | ||
219 | + { | ||
220 | + "value": "GDRCC", | ||
221 | + "text": "广东省农村信用社联合社" | ||
222 | + }, | ||
223 | + { | ||
224 | + "value": "DRCBCL", | ||
225 | + "text": "东莞农村商业银行" | ||
226 | + }, | ||
227 | + { | ||
228 | + "value": "MTBANK", | ||
229 | + "text": "浙江民泰商业银行" | ||
230 | + }, | ||
231 | + { | ||
232 | + "value": "GCB", | ||
233 | + "text": "广州银行" | ||
234 | + }, | ||
235 | + { | ||
236 | + "value": "LYCB", | ||
237 | + "text": "辽阳市商业银行" | ||
238 | + }, | ||
239 | + { | ||
240 | + "value": "JSRCU", | ||
241 | + "text": "江苏省农村信用联合社" | ||
242 | + }, | ||
243 | + { | ||
244 | + "value": "LANGFB", | ||
245 | + "text": "廊坊银行" | ||
246 | + }, | ||
247 | + { | ||
248 | + "value": "CZCB", | ||
249 | + "text": "浙江稠州商业银行" | ||
250 | + }, | ||
251 | + { | ||
252 | + "value": "DYCB", | ||
253 | + "text": "德阳商业银行" | ||
254 | + }, | ||
255 | + { | ||
256 | + "value": "JZBANK", | ||
257 | + "text": "晋中市商业银行" | ||
258 | + }, | ||
259 | + { | ||
260 | + "value": "BOSZ", | ||
261 | + "text": "苏州银行" | ||
262 | + }, | ||
263 | + { | ||
264 | + "value": "GLBANK", | ||
265 | + "text": "桂林银行" | ||
266 | + }, | ||
267 | + { | ||
268 | + "value": "URMQCCB", | ||
269 | + "text": "乌鲁木齐市商业银行" | ||
270 | + }, | ||
271 | + { | ||
272 | + "value": "CDRCB", | ||
273 | + "text": "成都农商银行" | ||
274 | + }, | ||
275 | + { | ||
276 | + "value": "ZRCBANK", | ||
277 | + "text": "张家港农村商业银行" | ||
278 | + }, | ||
279 | + { | ||
280 | + "value": "BOD", | ||
281 | + "text": "东莞银行" | ||
282 | + }, | ||
283 | + { | ||
284 | + "value": "LSBANK", | ||
285 | + "text": "莱商银行" | ||
286 | + }, | ||
287 | + { | ||
288 | + "value": "BJRCB", | ||
289 | + "text": "北京农村商业银行" | ||
290 | + }, | ||
291 | + { | ||
292 | + "value": "TRCB", | ||
293 | + "text": "天津农商银行" | ||
294 | + }, | ||
295 | + { | ||
296 | + "value": "SRBANK", | ||
297 | + "text": "上饶银行" | ||
298 | + }, | ||
299 | + { | ||
300 | + "value": "FDB", | ||
301 | + "text": "富滇银行" | ||
302 | + }, | ||
303 | + { | ||
304 | + "value": "CRCBANK", | ||
305 | + "text": "重庆农村商业银行" | ||
306 | + }, | ||
307 | + { | ||
308 | + "value": "ASCB", | ||
309 | + "text": "鞍山银行" | ||
310 | + }, | ||
311 | + { | ||
312 | + "value": "NXBANK", | ||
313 | + "text": "宁夏银行" | ||
314 | + }, | ||
315 | + { | ||
316 | + "value": "BHB", | ||
317 | + "text": "河北银行" | ||
318 | + }, | ||
319 | + { | ||
320 | + "value": "HRXJB", | ||
321 | + "text": "华融湘江银行" | ||
322 | + }, | ||
323 | + { | ||
324 | + "value": "ZGCCB", | ||
325 | + "text": "自贡市商业银行" | ||
326 | + }, | ||
327 | + { | ||
328 | + "value": "YNRCC", | ||
329 | + "text": "云南省农村信用社" | ||
330 | + }, | ||
331 | + { | ||
332 | + "value": "JLBANK", | ||
333 | + "text": "吉林银行" | ||
334 | + }, | ||
335 | + { | ||
336 | + "value": "DYCCB", | ||
337 | + "text": "东营市商业银行" | ||
338 | + }, | ||
339 | + { | ||
340 | + "value": "KLB", | ||
341 | + "text": "昆仑银行" | ||
342 | + }, | ||
343 | + { | ||
344 | + "value": "ORBANK", | ||
345 | + "text": "鄂尔多斯银行" | ||
346 | + }, | ||
347 | + { | ||
348 | + "value": "XTB", | ||
349 | + "text": "邢台银行" | ||
350 | + }, | ||
351 | + { | ||
352 | + "value": "JSB", | ||
353 | + "text": "晋商银行" | ||
354 | + }, | ||
355 | + { | ||
356 | + "value": "TCCB", | ||
357 | + "text": "天津银行" | ||
358 | + }, | ||
359 | + { | ||
360 | + "value": "BOYK", | ||
361 | + "text": "营口银行" | ||
362 | + }, | ||
363 | + { | ||
364 | + "value": "JLRCU", | ||
365 | + "text": "吉林农信" | ||
366 | + }, | ||
367 | + { | ||
368 | + "value": "SDRCU", | ||
369 | + "text": "山东农信" | ||
370 | + }, | ||
371 | + { | ||
372 | + "value": "XABANK", | ||
373 | + "text": "西安银行" | ||
374 | + }, | ||
375 | + { | ||
376 | + "value": "HBRCU", | ||
377 | + "text": "河北省农村信用社" | ||
378 | + }, | ||
379 | + { | ||
380 | + "value": "NXRCU", | ||
381 | + "text": "宁夏黄河农村商业银行" | ||
382 | + }, | ||
383 | + { | ||
384 | + "value": "GZRCU", | ||
385 | + "text": "贵州省农村信用社" | ||
386 | + }, | ||
387 | + { | ||
388 | + "value": "FXCB", | ||
389 | + "text": "阜新银行" | ||
390 | + }, | ||
391 | + { | ||
392 | + "value": "HBHSBANK", | ||
393 | + "text": "湖北银行黄石分行" | ||
394 | + }, | ||
395 | + { | ||
396 | + "value": "ZJNX", | ||
397 | + "text": "浙江省农村信用社联合社" | ||
398 | + }, | ||
399 | + { | ||
400 | + "value": "XXBANK", | ||
401 | + "text": "新乡银行" | ||
402 | + }, | ||
403 | + { | ||
404 | + "value": "HBYCBANK", | ||
405 | + "text": "湖北银行宜昌分行" | ||
406 | + }, | ||
407 | + { | ||
408 | + "value": "LSCCB", | ||
409 | + "text": "乐山市商业银行" | ||
410 | + }, | ||
411 | + { | ||
412 | + "value": "TCRCB", | ||
413 | + "text": "江苏太仓农村商业银行" | ||
414 | + }, | ||
415 | + { | ||
416 | + "value": "BZMD", | ||
417 | + "text": "驻马店银行" | ||
418 | + }, | ||
419 | + { | ||
420 | + "value": "GZB", | ||
421 | + "text": "赣州银行" | ||
422 | + }, | ||
423 | + { | ||
424 | + "value": "WRCB", | ||
425 | + "text": "无锡农村商业银行" | ||
426 | + }, | ||
427 | + { | ||
428 | + "value": "BGB", | ||
429 | + "text": "广西北部湾银行" | ||
430 | + }, | ||
431 | + { | ||
432 | + "value": "GRCB", | ||
433 | + "text": "广州农商银行" | ||
434 | + }, | ||
435 | + { | ||
436 | + "value": "JRCB", | ||
437 | + "text": "江苏江阴农村商业银行" | ||
438 | + }, | ||
439 | + { | ||
440 | + "value": "BOP", | ||
441 | + "text": "平顶山银行" | ||
442 | + }, | ||
443 | + { | ||
444 | + "value": "TACCB", | ||
445 | + "text": "泰安市商业银行" | ||
446 | + }, | ||
447 | + { | ||
448 | + "value": "CGNB", | ||
449 | + "text": "南充市商业银行" | ||
450 | + }, | ||
451 | + { | ||
452 | + "value": "CCQTGB", | ||
453 | + "text": "重庆三峡银行" | ||
454 | + }, | ||
455 | + { | ||
456 | + "value": "XLBANK", | ||
457 | + "text": "中山小榄村镇银行" | ||
458 | + }, | ||
459 | + { | ||
460 | + "value": "HDBANK", | ||
461 | + "text": "邯郸银行" | ||
462 | + }, | ||
463 | + { | ||
464 | + "value": "KORLABANK", | ||
465 | + "text": "库尔勒市商业银行" | ||
466 | + }, | ||
467 | + { | ||
468 | + "value": "BOJZ", | ||
469 | + "text": "锦州银行" | ||
470 | + }, | ||
471 | + { | ||
472 | + "value": "QLBANK", | ||
473 | + "text": "齐鲁银行" | ||
474 | + }, | ||
475 | + { | ||
476 | + "value": "BOQH", | ||
477 | + "text": "青海银行" | ||
478 | + }, | ||
479 | + { | ||
480 | + "value": "YQCCB", | ||
481 | + "text": "阳泉银行" | ||
482 | + }, | ||
483 | + { | ||
484 | + "value": "SJBANK", | ||
485 | + "text": "盛京银行" | ||
486 | + }, | ||
487 | + { | ||
488 | + "value": "FSCB", | ||
489 | + "text": "抚顺银行" | ||
490 | + }, | ||
491 | + { | ||
492 | + "value": "ZZBANK", | ||
493 | + "text": "郑州银行" | ||
494 | + }, | ||
495 | + { | ||
496 | + "value": "SRCB", | ||
497 | + "text": "深圳农村商业银行" | ||
498 | + }, | ||
499 | + { | ||
500 | + "value": "BANKWF", | ||
501 | + "text": "潍坊银行" | ||
502 | + }, | ||
503 | + { | ||
504 | + "value": "JJBANK", | ||
505 | + "text": "九江银行" | ||
506 | + }, | ||
507 | + { | ||
508 | + "value": "JXRCU", | ||
509 | + "text": "江西省农村信用" | ||
510 | + }, | ||
511 | + { | ||
512 | + "value": "HNRCU", | ||
513 | + "text": "河南省农村信用" | ||
514 | + }, | ||
515 | + { | ||
516 | + "value": "GSRCU", | ||
517 | + "text": "甘肃省农村信用" | ||
518 | + }, | ||
519 | + { | ||
520 | + "value": "SCRCU", | ||
521 | + "text": "四川省农村信用" | ||
522 | + }, | ||
523 | + { | ||
524 | + "value": "GXRCU", | ||
525 | + "text": "广西省农村信用" | ||
526 | + }, | ||
527 | + { | ||
528 | + "value": "SXRCCU", | ||
529 | + "text": "陕西信合" | ||
530 | + }, | ||
531 | + { | ||
532 | + "value": "WHRCB", | ||
533 | + "text": "武汉农村商业银行" | ||
534 | + }, | ||
535 | + { | ||
536 | + "value": "YBCCB", | ||
537 | + "text": "宜宾市商业银行" | ||
538 | + }, | ||
539 | + { | ||
540 | + "value": "KSRB", | ||
541 | + "text": "昆山农村商业银行" | ||
542 | + }, | ||
543 | + { | ||
544 | + "value": "SZSBK", | ||
545 | + "text": "石嘴山银行" | ||
546 | + }, | ||
547 | + { | ||
548 | + "value": "HSBK", | ||
549 | + "text": "衡水银行" | ||
550 | + }, | ||
551 | + { | ||
552 | + "value": "XYBANK", | ||
553 | + "text": "信阳银行" | ||
554 | + }, | ||
555 | + { | ||
556 | + "value": "NBYZ", | ||
557 | + "text": "鄞州银行" | ||
558 | + }, | ||
559 | + { | ||
560 | + "value": "ZJKCCB", | ||
561 | + "text": "张家口市商业银行" | ||
562 | + }, | ||
563 | + { | ||
564 | + "value": "XCYH", | ||
565 | + "text": "许昌银行" | ||
566 | + }, | ||
567 | + { | ||
568 | + "value": "JNBANK", | ||
569 | + "text": "济宁银行" | ||
570 | + }, | ||
571 | + { | ||
572 | + "value": "CBKF", | ||
573 | + "text": "开封市商业银行" | ||
574 | + }, | ||
575 | + { | ||
576 | + "value": "WHCCB", | ||
577 | + "text": "威海市商业银行" | ||
578 | + }, | ||
579 | + { | ||
580 | + "value": "HBC", | ||
581 | + "text": "湖北银行" | ||
582 | + }, | ||
583 | + { | ||
584 | + "value": "BOCD", | ||
585 | + "text": "承德银行" | ||
586 | + }, | ||
587 | + { | ||
588 | + "value": "BODD", | ||
589 | + "text": "丹东银行" | ||
590 | + }, | ||
591 | + { | ||
592 | + "value": "JHBANK", | ||
593 | + "text": "金华银行" | ||
594 | + }, | ||
595 | + { | ||
596 | + "value": "BOCY", | ||
597 | + "text": "朝阳银行" | ||
598 | + }, | ||
599 | + { | ||
600 | + "value": "LSBC", | ||
601 | + "text": "临商银行" | ||
602 | + }, | ||
603 | + { | ||
604 | + "value": "BSB", | ||
605 | + "text": "包商银行" | ||
606 | + }, | ||
607 | + { | ||
608 | + "value": "LZYH", | ||
609 | + "text": "兰州银行" | ||
610 | + }, | ||
611 | + { | ||
612 | + "value": "BOZK", | ||
613 | + "text": "周口银行" | ||
614 | + }, | ||
615 | + { | ||
616 | + "value": "DZBANK", | ||
617 | + "text": "德州银行" | ||
618 | + }, | ||
619 | + { | ||
620 | + "value": "SCCB", | ||
621 | + "text": "三门峡银行" | ||
622 | + }, | ||
623 | + { | ||
624 | + "value": "AYCB", | ||
625 | + "text": "安阳银行" | ||
626 | + }, | ||
627 | + { | ||
628 | + "value": "ARCU", | ||
629 | + "text": "安徽省农村信用社" | ||
630 | + }, | ||
631 | + { | ||
632 | + "value": "HURCB", | ||
633 | + "text": "湖北省农村信用社" | ||
634 | + }, | ||
635 | + { | ||
636 | + "value": "HNRCC", | ||
637 | + "text": "湖南省农村信用社" | ||
638 | + }, | ||
639 | + { | ||
640 | + "value": "NYNB", | ||
641 | + "text": "广东南粤银行" | ||
642 | + }, | ||
643 | + { | ||
644 | + "value": "LYBANK", | ||
645 | + "text": "洛阳银行" | ||
646 | + }, | ||
647 | + { | ||
648 | + "value": "NHQS", | ||
649 | + "text": "农信银清算中心" | ||
650 | + }, | ||
651 | + { | ||
652 | + "value": "CBBQS", | ||
653 | + "text": "城市商业银行资金清算中心" | ||
654 | + } | ||
655 | + ] | ||
656 | +} |
assets/css/base.css
0 → 100644
1 | +@media (min-width: 320px) { | ||
2 | + html { | ||
3 | + font-size: 50px; | ||
4 | + } | ||
5 | +} | ||
6 | + | ||
7 | +@media (min-width: 720px) { | ||
8 | + html { | ||
9 | + font-size: 100px; | ||
10 | + } | ||
11 | +} | ||
12 | + | ||
13 | +* { | ||
14 | + margin: 0px; | ||
15 | + padding: 0px; | ||
16 | +} | ||
17 | + | ||
18 | +a { | ||
19 | + text-decoration: none; | ||
20 | + color: #979797; | ||
21 | +} | ||
22 | + | ||
23 | +body { | ||
24 | + font-family: "微软雅黑"; | ||
25 | + overflow-x: hidden; | ||
26 | + height: 100%; | ||
27 | + background-color: #efefef; | ||
28 | + font-size: 14px; | ||
29 | +} | ||
30 | + | ||
31 | +.left { | ||
32 | + float: left; | ||
33 | +} | ||
34 | + | ||
35 | +.right { | ||
36 | + float: right; | ||
37 | +} | ||
38 | + | ||
39 | +.center { | ||
40 | + text-align: center; | ||
41 | +} | ||
42 | + | ||
43 | +.textleft { | ||
44 | + text-align: left; | ||
45 | +} | ||
46 | + | ||
47 | +.textright { | ||
48 | + text-align: right !important; | ||
49 | +} | ||
50 | + | ||
51 | +.footer { | ||
52 | + background-color: #fff; | ||
53 | +} | ||
54 | + | ||
55 | +.footer ul li { | ||
56 | + display: inline-block; | ||
57 | + list-style: none; | ||
58 | + width: 2rem; | ||
59 | + height: 100%; | ||
60 | + margin: 0.1rem 0rem; | ||
61 | +} | ||
62 | + | ||
63 | +.footer ul li a img { | ||
64 | + width: 0.59rem; | ||
65 | +} | ||
66 | + | ||
67 | +.parttitle { | ||
68 | + margin-left: 0.22rem; | ||
69 | + margin-top: 0.15rem; | ||
70 | +} | ||
71 | + | ||
72 | +.box { | ||
73 | + padding: 0.25rem; | ||
74 | +} | ||
75 | + | ||
76 | +.minbox { | ||
77 | + padding: 0.15rem; | ||
78 | +} | ||
79 | + | ||
80 | +.mari { | ||
81 | + margin-left: 0.22rem; | ||
82 | +} | ||
83 | + | ||
84 | +.corigt { | ||
85 | + text-align: left; | ||
86 | + margin-left: 0.2rem; | ||
87 | + width: 4.32rem; | ||
88 | +} | ||
89 | + | ||
90 | +.corigt span { | ||
91 | + font-size: 0.28rem; | ||
92 | + color: #424242; | ||
93 | +} | ||
94 | + | ||
95 | +.minute { | ||
96 | + margin-top: 0.1rem; | ||
97 | +} | ||
98 | + | ||
99 | +.minute span { | ||
100 | + color: #8e8e8e; | ||
101 | + font-size: 0.2rem; | ||
102 | + margin-right: 0.15rem; | ||
103 | +} | ||
104 | + | ||
105 | +.minute span img { | ||
106 | + vertical-align: sub; | ||
107 | + width: 0.25rem; | ||
108 | +} | ||
109 | + | ||
110 | +.price { | ||
111 | + font-size: 0.24rem; | ||
112 | + color: #e87136; | ||
113 | + text-align: right; | ||
114 | + margin-top: 0.1rem; | ||
115 | +} | ||
116 | + | ||
117 | +.through { | ||
118 | + text-decoration: line-through; | ||
119 | + font-size: 0.24rem !important; | ||
120 | + color: #979797 !important; | ||
121 | + margin-left: 0.2rem; | ||
122 | +} | ||
123 | + | ||
124 | +input { | ||
125 | + caret-color: #d8b25f; | ||
126 | + outline: none; | ||
127 | +} | ||
128 | + | ||
129 | +.pharea { | ||
130 | + caret-color: #d8b25f !important; | ||
131 | + outline: none; | ||
132 | +} | ||
133 | + | ||
134 | +.qufen { | ||
135 | + margin-right: 0.1rem; | ||
136 | + color: #d8b25f; | ||
137 | +} |
assets/css/circle.scss
0 → 100644
1 | +/*完整度环*/ | ||
2 | +.progress_wrap { | ||
3 | + position: relative; | ||
4 | + margin: 0 0 0 .14rem; | ||
5 | + width: .92rem; | ||
6 | + height: .92rem; | ||
7 | + | ||
8 | + &.little { | ||
9 | + | ||
10 | + .under { | ||
11 | + | ||
12 | + .rightcircle, .leftcircle { | ||
13 | + border-top: $ progress_border_under_little; | ||
14 | + } | ||
15 | + | ||
16 | + .rightcircle { | ||
17 | + border-right: $ progress_border_under_little; | ||
18 | + } | ||
19 | + | ||
20 | + .leftcircle { | ||
21 | + border-left: $ progress_border_under_little; | ||
22 | + } | ||
23 | + | ||
24 | + } | ||
25 | + .up { | ||
26 | + | ||
27 | + .rightcircle, .leftcircle { | ||
28 | + border-top: $ progress_border_up_little; | ||
29 | + } | ||
30 | + | ||
31 | + .rightcircle { | ||
32 | + border-right: $ progress_border_up_little; | ||
33 | + } | ||
34 | + | ||
35 | + .leftcircle { | ||
36 | + border-left: $ progress_border_up_little; | ||
37 | + } | ||
38 | + | ||
39 | + } | ||
40 | + .up_left_cover { | ||
41 | + width: .47rem; | ||
42 | + height: .92rem; | ||
43 | + | ||
44 | + .leftcircle { | ||
45 | + top: -.02rem; | ||
46 | + width: .74rem; | ||
47 | + height: .74rem; | ||
48 | + border: .11rem solid transparent; | ||
49 | + border-top: $ progress_border_up_left_cover_little; | ||
50 | + border-left: $ progress_border_up_left_cover_little; | ||
51 | + -webkit-transform: rotate(-191deg); | ||
52 | + } | ||
53 | + | ||
54 | + } | ||
55 | + } | ||
56 | + & | ||
57 | + .more { | ||
58 | + | ||
59 | + .under { | ||
60 | + | ||
61 | + .rightcircle, .leftcircle { | ||
62 | + border-top: $ progress_border_under; | ||
63 | + } | ||
64 | + | ||
65 | + .rightcircle { | ||
66 | + border-right: $ progress_border_under; | ||
67 | + } | ||
68 | + | ||
69 | + .leftcircle { | ||
70 | + border-left: $ progress_border_under; | ||
71 | + } | ||
72 | + | ||
73 | + } | ||
74 | + .up { | ||
75 | + | ||
76 | + .rightcircle, .leftcircle { | ||
77 | + border-top: $ progress_border_up; | ||
78 | + } | ||
79 | + | ||
80 | + .rightcircle { | ||
81 | + border-right: $ progress_border_up; | ||
82 | + } | ||
83 | + | ||
84 | + .leftcircle { | ||
85 | + border-left: $ progress_border_up; | ||
86 | + } | ||
87 | + | ||
88 | + } | ||
89 | + } | ||
90 | + .right, .left { | ||
91 | + position: absolute; | ||
92 | + top: 0; | ||
93 | + overflow: hidden; | ||
94 | + width: .46rem; | ||
95 | + height: .92rem; | ||
96 | + | ||
97 | + .circleProgress { | ||
98 | + position: absolute; | ||
99 | + top: 0; | ||
100 | + width: .78rem; | ||
101 | + height: .78rem; | ||
102 | + border: .07rem solid transparent; | ||
103 | + border-radius: 50%; | ||
104 | + } | ||
105 | + | ||
106 | + .rightcircle { | ||
107 | + right: 0; | ||
108 | + -webkit-transform: rotate(15deg); | ||
109 | + } | ||
110 | + | ||
111 | + .leftcircle { | ||
112 | + left: 0; | ||
113 | + -webkit-transform: rotate(-15deg); | ||
114 | + } | ||
115 | + | ||
116 | + } | ||
117 | + .right { | ||
118 | + right: 0; | ||
119 | + } | ||
120 | + | ||
121 | + .left { | ||
122 | + left: 0; | ||
123 | + } | ||
124 | + | ||
125 | + .num { | ||
126 | + position: absolute; | ||
127 | + left: 50%; | ||
128 | + top: 50%; | ||
129 | + width: .5rem; | ||
130 | + transform: translate(-50%, -50%); | ||
131 | + font-size: .12rem; | ||
132 | + color: $ public_auxiliary_col; | ||
133 | + text-align: center; | ||
134 | + line-height: .26rem; | ||
135 | + } | ||
136 | + | ||
137 | +} |
assets/css/city.css
0 → 100644
1 | +.city { | ||
2 | + display: block; | ||
3 | +} | ||
4 | +.city .city-wrapper { | ||
5 | + position: fixed; | ||
6 | + top: 0; | ||
7 | + bottom: 0; | ||
8 | + width: 100%; | ||
9 | +} | ||
10 | +.city .city-wrapper .cities .title { | ||
11 | + height: 28px; | ||
12 | + padding-left: 16px; | ||
13 | + line-height: 28px; | ||
14 | + background-color: #f5f5f5; | ||
15 | + font-family: Helvetica; | ||
16 | + font-size: 1.2rem; | ||
17 | + color: #878787; | ||
18 | +} | ||
19 | +.city .city-wrapper .cities .item { | ||
20 | + height: 44px; | ||
21 | + padding: 0 16px; | ||
22 | + line-height: 44px; | ||
23 | + font-size: 1.6rem; | ||
24 | +} | ||
25 | +.city .city-wrapper .cities .item .name { | ||
26 | + display: block; | ||
27 | + position: relative; | ||
28 | +} | ||
29 | +.city .city-wrapper .cities .item .name:before, | ||
30 | +.city .city-wrapper .cities .item .name:after { | ||
31 | + display: block; | ||
32 | + position: absolute; | ||
33 | + border-top: 1px solid #e5e5e5; | ||
34 | + left: 0; | ||
35 | + width: 100%; | ||
36 | + content: ' '; | ||
37 | +} | ||
38 | +.city .city-wrapper .cities .item .name:before { | ||
39 | + display: none; | ||
40 | + top: 0; | ||
41 | +} | ||
42 | +.city .city-wrapper .cities .item .name:after { | ||
43 | + display: block; | ||
44 | + bottom: 0; | ||
45 | +} | ||
46 | +.city .city-wrapper .cities .item:active { | ||
47 | + background-color: #f0f0f0; | ||
48 | +} | ||
49 | +.city .city-wrapper .cities .item:last-child .name:after { | ||
50 | + display: none; | ||
51 | +} | ||
52 | +.city .city-wrapper .shortcut { | ||
53 | + position: absolute; | ||
54 | + z-index: 30; | ||
55 | + width: 40px; | ||
56 | + right: 0; | ||
57 | + font-family: Helvetica; | ||
58 | +} | ||
59 | +.city .city-wrapper .shortcut .item { | ||
60 | + height: 12px; | ||
61 | + padding-top: 4px; | ||
62 | + padding-left: 24px; | ||
63 | + text-align: center; | ||
64 | + font-size: 1.2rem; | ||
65 | + color: #fa8919; | ||
66 | +} | ||
67 | +@media only screen and (max-height: 600px) { | ||
68 | + .city .city-wrapper .shortcut .item { | ||
69 | + padding-top: 3px; | ||
70 | + } | ||
71 | +} |
assets/css/common1.css
0 → 100644
1 | +#datePage section{ | ||
2 | + height:50px !important; | ||
3 | + } | ||
4 | + | ||
5 | +.kbtn{ | ||
6 | + border:none; | ||
7 | + width:90%; | ||
8 | + cursor:pointer; | ||
9 | + } | ||
10 | +#datePage{ | ||
11 | + position:fixed !important;} | ||
12 | +#dateshadow{ | ||
13 | + position:fixed !important;} | ||
14 | +.page {display: none;position: absolute;left: 0;bottom: 0;right: 0;width: 100%;height: 100%;overflow: hidden;} | ||
15 | +#dateshadow{ | ||
16 | + z-index:111; | ||
17 | + } | ||
18 | + | ||
19 | +#datescroll div{float: left;margin-left: 10%;margin-top: 15px;padding-right: 22px;} | ||
20 | +#datescroll_datetime div{float: left;margin-left: 10%;padding-right: 22px;} | ||
21 | + | ||
22 | +#yearwrapper{position: absolute;left: 0;top:45px;bottom: 60px;width:80%;} | ||
23 | +#monthwrapper{position: absolute;left: 26%;top:45px;bottom: 60px;width:80%;} | ||
24 | +#daywrapper{position: absolute;left: 50%;top:45px;bottom: 60px;width:80%;} | ||
25 | + | ||
26 | +#Hourwrapper{position: absolute;left: 0;top:195px;bottom: 68px;width:80%;} | ||
27 | +#Minutewrapper{position: absolute;left: 26%;top:195px;bottom: 68px;width:80%;} | ||
28 | +#Secondwrapper{position: absolute;left: 50%;top:195px;bottom: 68px;width:80%;} | ||
29 | + | ||
30 | +/*增加手指滑动触摸面积*/ | ||
31 | +#Hourwrapper ul li{color: #000;font-size: 12px; list-style-type:none;} | ||
32 | +#Minutewrapper ul li{color: #000;font-size: 12px; list-style-type:none;} | ||
33 | +#Secondwrapper ul li{color: #000;font-size: 12px; list-style-type:none;} | ||
34 | +#yearwrapper ul li{color: #000;font-size: 12px; list-style-type:none;} | ||
35 | +#monthwrapper ul li{color: #000;font-size: 12px; list-style-type:none;} | ||
36 | +#daywrapper ul li{color: #000;font-size: 12px; list-style-type:none;} | ||
37 | + | ||
38 | +#markyear{position:relative; margin-left: 76px;top:-2px;} | ||
39 | +#markmonth{position:relative; margin-left: 40px;top:-2px;} | ||
40 | +#markday{position:relative; margin-left: 42px;top:-2px;} | ||
41 | +#markhour{position:relative; margin-left: 62px;top:-2px;} | ||
42 | +#markminut{position:relative; margin-left: 58px;top:-2px;} | ||
43 | +#marksecond{position:relative; margin-left: 68px;top:-2px;} | ||
44 | +#dateheader{width: 100%;height: 50px;background: #79C12F;text-align: center;color: #fff;line-height: 50px;font-size: 20px;} | ||
45 | + | ||
46 | +#setcancle ul{ | ||
47 | + text-align: center; | ||
48 | + line-height: 30px; | ||
49 | + margin:1px auto; | ||
50 | + font-size: 20px; | ||
51 | +} | ||
52 | +#setcancle ul li{ | ||
53 | + float: left; | ||
54 | + width: 50%; | ||
55 | + height: 36px; | ||
56 | + list-style-type: none; | ||
57 | + color:#fff; | ||
58 | + cursor:pointer; | ||
59 | + border-top: 1px solid #ccc; | ||
60 | + border-bottom: 1px solid #ccc; | ||
61 | +} | ||
62 | +#dateconfirm{ | ||
63 | + position: absolute; | ||
64 | + background: -webkit-gradient(linear, 0 0, 0 100%, from(#d8b25f), to(#d8b25f)); | ||
65 | + | ||
66 | +} | ||
67 | +#datecancle{ | ||
68 | + position: absolute; | ||
69 | + background: #fff; | ||
70 | + right:0px; | ||
71 | + width: 50%; | ||
72 | + color:#424242 !important; | ||
73 | +} | ||
74 | +#dateshadow{display: none;position: absolute;width: 100%;height: 150%;top:0;left:0;background: #000; filter:alpha(Opacity=50);-moz-opacity:0.5;opacity: 0.5;} | ||
75 | +#datePage{font-size: 22px; border-radius: 3px; position:absolute;MARGIN-RIGHT: auto;vertical-align:middle; | ||
76 | +MARGIN-LEFT: auto;width:100%;;height: 240px;background: #FFFFFF;z-index:9999999;} | ||
77 | +#datetitle{position: relative; | ||
78 | +height: 0.4rem; | ||
79 | +line-height: 0.4rem; | ||
80 | +text-align: center; | ||
81 | +border-bottom: 0.01rem solid #d8b25f; | ||
82 | +color: #d8b25f; | ||
83 | +font-size: 0.24rem;} | ||
84 | +#datemark{font-size: 18px;left:5%;width: 90%;height: 20px;border-top: 1px solid #d8b25f;border-bottom: 1px solid #d8b25f;position:absolute;top:108px;} | ||
85 | +#timemark{font-size: 18px;left:5%;width: 90%;height: 20px;border-top: 1px solid #d8b25f;border-bottom: 1px solid #d8b25f;position:absolute;top:242px;} | ||
86 | +#datescroll{background: #fff;width:94%; margin:10px 3%;border: 1px solid #fff;border-radius: 4px;height: 120px;text-align: center;line-height: 40px;} | ||
87 | +#datescroll_datetime{display: none;background:#fff;width:94%; margin:10px 3%;margin-top: 10px;border: 1px solid #fff;border-radius: 4px;height: 120px;text-align: center;line-height: 40px;} | ||
88 | +#yearwrapper ul,#monthwrapper ul,#daywrapper ul{width:40%;} | ||
89 | +#Hourwrapper ul,#Minutewrapper ul,#Secondwrapper ul{width:40%;} | ||
90 | +#dateFooter{width:100%;background: #fff;height: 36px;bottom: 0px;position: absolute;} |
assets/css/doc.css
0 → 100644
1 | + | ||
2 | +.index_header { | ||
3 | + background-color: #fff; | ||
4 | + font-size: 18px; | ||
5 | + color: #424242; | ||
6 | +} | ||
7 | + | ||
8 | +.index_header .iconfont { | ||
9 | + color: #D8B25F; | ||
10 | + font-size: 18px; | ||
11 | +} | ||
12 | + | ||
13 | +.doc_left { | ||
14 | + font-size: 11px; | ||
15 | + color: #8B8B8B; | ||
16 | +} | ||
17 | + | ||
18 | +.doc_right { | ||
19 | + display: flex; | ||
20 | + align-items: center; | ||
21 | + color: #D8B25F; | ||
22 | +} | ||
23 | + | ||
24 | +.doc_right .iconfont { | ||
25 | + color: #D8B25F; | ||
26 | + font-size: 18px; | ||
27 | + padding: 0 0.33rem; | ||
28 | +} | ||
29 | + | ||
30 | +.doc_appointment { | ||
31 | + padding: 0.28rem 0.56rem; | ||
32 | + font-size: 15px; | ||
33 | + color: #fff; | ||
34 | + background-color: #dbb25f; | ||
35 | +} | ||
36 | + | ||
37 | +.doc_footer { | ||
38 | + display: flex; | ||
39 | + align-items: center; | ||
40 | + justify-content: space-between; | ||
41 | + background-color: #fff; | ||
42 | + width: 100%; | ||
43 | + position: fixed; | ||
44 | + bottom: 0; | ||
45 | + left: 0; | ||
46 | + padding: 0 0 0 0.41rem; | ||
47 | + font-size: 13px; | ||
48 | + z-index: 99; | ||
49 | +} | ||
50 | + | ||
51 | +.doc_left { | ||
52 | + font-size: 11px; | ||
53 | + color: #8B8B8B; | ||
54 | +} | ||
55 | + | ||
56 | +.doc_right { | ||
57 | + display: flex; | ||
58 | + align-items: center; | ||
59 | + color: #D8B25F; | ||
60 | +} | ||
61 | + | ||
62 | +.doc_footer .doc_right .iconfont { | ||
63 | + color: #D8B25F; | ||
64 | + font-size: 18px; | ||
65 | + padding: 0.28rem 0.33rem; | ||
66 | + border-left: 1px solid #e4e4e4; | ||
67 | +} | ||
68 | + | ||
69 | +.doc_appointment { | ||
70 | + padding: 0.28rem 0.56rem; | ||
71 | + font-size: 15px; | ||
72 | + color: #fff; | ||
73 | + background-color: #dbb25f; | ||
74 | +} | ||
75 | + | ||
76 | +.rmb { | ||
77 | + font-size: 13px; | ||
78 | + color: #E87139; | ||
79 | +} | ||
80 | + | ||
81 | +.doc_price { | ||
82 | + color: #E87139; | ||
83 | + font-size: 18px; | ||
84 | +} | ||
85 | + | ||
86 | +.pack { | ||
87 | + margin: 0.11rem 0; | ||
88 | + border: 0; | ||
89 | +} | ||
90 | + | ||
91 | +.doc_item { | ||
92 | + display: flex; | ||
93 | + align-items: center; | ||
94 | + justify-content: space-between; | ||
95 | + font-size: 14px; | ||
96 | + color: #424242; | ||
97 | + padding: 0.24rem 0.55rem 0.24rem 0.44rem; | ||
98 | + background-color: #fff; | ||
99 | + border-bottom: 1px solid #ececec; | ||
100 | +} | ||
101 | + | ||
102 | +.doc_room .iconfont { | ||
103 | + font-size: 18px; | ||
104 | + color: #DCBA6F; | ||
105 | + margin-right: 0.17rem; | ||
106 | +} | ||
107 | + | ||
108 | +/*.doc_item .icon-shouji1 {*/ | ||
109 | + /*font-size: 18px;*/ | ||
110 | +/*}*/ | ||
111 | + | ||
112 | +.doc_right { | ||
113 | + font-size: 12px; | ||
114 | + color: #C2C1C3; | ||
115 | +} | ||
116 | + | ||
117 | +.doc_form { | ||
118 | + background-color: #fff; | ||
119 | + margin: 0.11rem 0; | ||
120 | +} | ||
121 | + | ||
122 | +.doc_form_title { | ||
123 | + padding: 0.32rem 0.42rem; | ||
124 | + font-size: 16px; | ||
125 | + color: #424242; | ||
126 | + border-bottom: 1px solid #ececec; | ||
127 | +} | ||
128 | + | ||
129 | +.doc_item:last-child { | ||
130 | + border: 0; | ||
131 | +} | ||
132 | + | ||
133 | +.doc_right input { | ||
134 | + text-align: right; | ||
135 | + color: #424242; | ||
136 | + font-size: 12px; | ||
137 | +} | ||
138 | + | ||
139 | +.doc_right input::placeholder { | ||
140 | + color: #C2C1C3; | ||
141 | +} | ||
142 | + | ||
143 | +.tips { | ||
144 | + font-size: 10px; | ||
145 | + color: #A4A4A4; | ||
146 | + display: flex; | ||
147 | + align-items: center; | ||
148 | +} | ||
149 | + | ||
150 | +.doc_mold { | ||
151 | + position: fixed; | ||
152 | + height: 100%; | ||
153 | + width: 100%; | ||
154 | + background-color: rgba(0, 0, 0, 0.7); | ||
155 | + left: 0; | ||
156 | + top: 0; | ||
157 | + z-index: 100; | ||
158 | +} |
assets/css/index.css
0 → 100644
1 | +/*首页头部分*/ | ||
2 | +.index_header { | ||
3 | + line-height: 0.38rem; | ||
4 | + color: #fff; | ||
5 | + background-color: #dbb25f; | ||
6 | + display: flex; | ||
7 | + align-items: center; | ||
8 | + justify-content: space-between; | ||
9 | + padding: 0.2rem 0.4rem; | ||
10 | + font-size: 15px; | ||
11 | +} | ||
12 | + | ||
13 | +.index_left { | ||
14 | + display: flex; | ||
15 | + align-items: center; | ||
16 | + font-size: 14px; | ||
17 | + width: auto; | ||
18 | +} | ||
19 | + | ||
20 | +.index_left span { | ||
21 | + max-width: 1.3rem; | ||
22 | + display: -webkit-box; | ||
23 | + -webkit-box-orient: vertical; | ||
24 | + -webkit-line-clamp: 1; | ||
25 | + overflow: hidden; | ||
26 | +} | ||
27 | + | ||
28 | +.index_left_img { | ||
29 | + display: flex; | ||
30 | + align-items: center; | ||
31 | + justify-content: center; | ||
32 | +} | ||
33 | + | ||
34 | +.index_left_img .iconfont { | ||
35 | + font-size: 13px; | ||
36 | + color: #fff; | ||
37 | + margin: 0 0.19rem 0 0; | ||
38 | +} | ||
39 | + | ||
40 | +.index_right { | ||
41 | + display: flex; | ||
42 | + align-items: center; | ||
43 | + justify-content: center; | ||
44 | + text-align: center; | ||
45 | + position: relative; | ||
46 | +} | ||
47 | + | ||
48 | +.index_right:before { | ||
49 | + position: absolute; | ||
50 | + left: -0.1rem; | ||
51 | + right: -0.1rem; | ||
52 | + top: -0.1rem; | ||
53 | + bottom: -0.1rem; | ||
54 | + content: ''; | ||
55 | +} | ||
56 | + | ||
57 | +.index_right img { | ||
58 | + height: 0.44rem; | ||
59 | +} | ||
60 | + | ||
61 | +footer { | ||
62 | + display: flex; | ||
63 | + align-items: center; | ||
64 | + justify-content: space-around; | ||
65 | + position: fixed; | ||
66 | + width: 100%; | ||
67 | + font-size: 12px; | ||
68 | + left: 0; | ||
69 | + color: #969696; | ||
70 | + bottom: 0; | ||
71 | + background-color: #fff; | ||
72 | + border: 1px solid #f2f2f2; | ||
73 | + z-index: 100; | ||
74 | +} | ||
75 | + | ||
76 | +.footer_item { | ||
77 | + padding: 0.23rem 0 0.16rem 0; | ||
78 | + display: flex; | ||
79 | + align-items: center; | ||
80 | + flex-direction: column; | ||
81 | + flex: 1; | ||
82 | + text-align: center; | ||
83 | +} | ||
84 | + | ||
85 | +.footer_item_active { | ||
86 | + color: #dbb25f; | ||
87 | +} | ||
88 | + | ||
89 | +.img_transform { | ||
90 | + transform: rotate(45deg); | ||
91 | + transition: 0.1s; | ||
92 | +} | ||
93 | + | ||
94 | +.img_transform1 { | ||
95 | + transform: rotate(0deg); | ||
96 | + transition: 0.1s; | ||
97 | +} | ||
98 | + | ||
99 | +/*首页内容部分*/ | ||
100 | + | ||
101 | +.index_list { | ||
102 | + overflow: hidden; | ||
103 | + display: flex; | ||
104 | + align-items: center; | ||
105 | + flex-wrap: wrap; | ||
106 | + margin: 0.15rem 0 0.13rem 0; | ||
107 | + padding: 0.19rem 0 0 0; | ||
108 | + background-color: #fff; | ||
109 | + box-shadow: 0.01rem 0.02rem 0.05rem #C8C6C6; | ||
110 | + position: relative; | ||
111 | +} | ||
112 | + | ||
113 | +.index_item { | ||
114 | + width: 20%; | ||
115 | + text-align: center; | ||
116 | + display: flex; | ||
117 | + align-items: center; | ||
118 | + flex-direction: column; | ||
119 | + margin: 0 0 0.3rem 0; | ||
120 | + font-size: 12px; | ||
121 | + color: #35373D; | ||
122 | + overflow: hidden; | ||
123 | +} | ||
124 | + | ||
125 | +.index_img { | ||
126 | + height: 0.82rem; | ||
127 | + width: 0.82rem; | ||
128 | + display: flex; | ||
129 | + align-items: center; | ||
130 | + justify-content: center; | ||
131 | + background-color: #f2f2f2; | ||
132 | + border-radius: 50%; | ||
133 | + overflow: hidden; | ||
134 | + margin-bottom: 0.07rem; | ||
135 | +} | ||
136 | + | ||
137 | +.index_img img { | ||
138 | + width: 100%; | ||
139 | + font-size: 0; | ||
140 | +} | ||
141 | + | ||
142 | +.menus { | ||
143 | + display: flex; | ||
144 | + flex-direction: column; | ||
145 | + color: #424242; | ||
146 | + font-size: 15px; | ||
147 | + position: fixed; | ||
148 | + right: 0.25rem; | ||
149 | + top: 0; | ||
150 | + background-color: #fff; | ||
151 | + border-radius: 0.07rem; | ||
152 | + z-index: 20; | ||
153 | +} | ||
154 | + | ||
155 | +.menus_item { | ||
156 | + padding: 0.1rem 0.2rem; | ||
157 | + border-bottom: 1px solid #eee; | ||
158 | + display: flex; | ||
159 | + align-items: center; | ||
160 | +} | ||
161 | + | ||
162 | +.menus_item .iconfont { | ||
163 | + color: #dbb25f; | ||
164 | + font-size: 20px; | ||
165 | + margin-right: 0.2rem; | ||
166 | + font-weight: bold; | ||
167 | +} | ||
168 | + | ||
169 | +.banner_box img { | ||
170 | + width: 100%; | ||
171 | +} | ||
172 | + | ||
173 | +.banner_nav_box { | ||
174 | + display: flex; | ||
175 | + align-items: center; | ||
176 | + justify-content: space-between; | ||
177 | + flex-wrap: wrap; | ||
178 | +} | ||
179 | + | ||
180 | +.banner_item { | ||
181 | + width: 49%; | ||
182 | + display: flex; | ||
183 | + align-items: center; | ||
184 | + justify-content: space-between; | ||
185 | + background-color: #fff; | ||
186 | + box-shadow: 0.01rem 0.02rem 0.05rem #C8C6C6; | ||
187 | + margin-bottom: 0.16rem; | ||
188 | + overflow: hidden; | ||
189 | + /*padding: 0.2rem 0;*/ | ||
190 | +} | ||
191 | + | ||
192 | +.banner_item_left { | ||
193 | + padding: 0.22rem 0 0.22rem 0.22rem; | ||
194 | + /*max-width: 1.6rem;*/ | ||
195 | + font-size: 10px; | ||
196 | + color: #8E8E8E; | ||
197 | + display: flex; | ||
198 | + flex-direction: column; | ||
199 | + line-height: 0.3rem; | ||
200 | +} | ||
201 | + | ||
202 | +.banner_item_title { | ||
203 | + /*font-weight: bold;*/ | ||
204 | + color: #2C2C2E; | ||
205 | + font-size: 15px; | ||
206 | +} | ||
207 | + | ||
208 | +/*.banner_item img {*/ | ||
209 | +/*width: 100%;*/ | ||
210 | +/*!*max-height: 1.3rem;*!*/ | ||
211 | +/*}*/ | ||
212 | + | ||
213 | +.banner_item_img { | ||
214 | + display: flex; | ||
215 | + align-items: center; | ||
216 | + justify-content: center; | ||
217 | +} | ||
218 | + | ||
219 | +.banner_item_img img { | ||
220 | + width: 100%; | ||
221 | +} | ||
222 | + | ||
223 | +.banner_item_content { | ||
224 | + display: -webkit-box; | ||
225 | + -webkit-box-orient: vertical; | ||
226 | + -webkit-line-clamp: 2; | ||
227 | + overflow: hidden; | ||
228 | + max-width: 2rem; | ||
229 | +} | ||
230 | + | ||
231 | +.swiper_box { | ||
232 | + background-color: #fff; | ||
233 | + padding: 0 0.14rem; | ||
234 | +} | ||
235 | + | ||
236 | +.swiper_title { | ||
237 | + display: flex; | ||
238 | + align-items: center; | ||
239 | + justify-content: space-between; | ||
240 | + padding: 0.29rem 0.11rem 0.21rem 0; | ||
241 | +} | ||
242 | + | ||
243 | +.swiper_title img { | ||
244 | + height: 0.3rem; | ||
245 | + margin: 0 0.1rem; | ||
246 | +} | ||
247 | + | ||
248 | +.swiper_title_content { | ||
249 | + display: flex; | ||
250 | + align-items: center; | ||
251 | + justify-content: center; | ||
252 | + font-size: 18px; | ||
253 | + text-align: center; | ||
254 | + color: #424242; | ||
255 | + flex: 1; | ||
256 | + padding-left: 1.2rem; | ||
257 | +} | ||
258 | + | ||
259 | +.change_slide { | ||
260 | + color: #979797; | ||
261 | + font-size: 12px; | ||
262 | +} | ||
263 | + | ||
264 | +.icon-xunhuan101 { | ||
265 | + font-size: 14px; | ||
266 | + margin-left: 0.2rem; | ||
267 | +} | ||
268 | + | ||
269 | +.swiper_item { | ||
270 | + display: flex; | ||
271 | + align-items: center; | ||
272 | + justify-content: space-between; | ||
273 | + font-size: 14px; | ||
274 | + color: #424242; | ||
275 | + padding: 0.28rem 0.25rem 0.28rem 0; | ||
276 | + margin: 0 0.14rem; | ||
277 | + border-top: 1px solid #ececec; | ||
278 | + background-color: #fff; | ||
279 | +} | ||
280 | + | ||
281 | +.swiper_item_img { | ||
282 | + width: 1.86rem; | ||
283 | + height: 1.6rem; | ||
284 | + display: flex; | ||
285 | + align-items: center; | ||
286 | + justify-content: center; | ||
287 | + margin-right: 0.22rem; | ||
288 | + overflow: hidden; | ||
289 | + border-radius: 0.1rem; | ||
290 | +} | ||
291 | + | ||
292 | +.swiper_item_img img { | ||
293 | + width: 100%; | ||
294 | +} | ||
295 | + | ||
296 | +.swiper_item_title { | ||
297 | + color: #2C2C2E; | ||
298 | + font-size: 16px; | ||
299 | +} | ||
300 | + | ||
301 | +.swiper_item_content { | ||
302 | + margin: -0.1rem 0 0 0; | ||
303 | + color: #979797; | ||
304 | + font-size: 13px; | ||
305 | + display: -webkit-box; | ||
306 | + -webkit-box-orient: vertical; | ||
307 | + -webkit-line-clamp: 1; | ||
308 | + overflow: hidden; | ||
309 | +} | ||
310 | + | ||
311 | +.swiper_item_type { | ||
312 | + font-size: 12px; | ||
313 | + color: #8E8E8E; | ||
314 | + display: flex; | ||
315 | + align-items: center; | ||
316 | +} | ||
317 | + | ||
318 | +.swiper_item_right { | ||
319 | + flex: 1; | ||
320 | + height: 1.6rem; | ||
321 | + display: flex; | ||
322 | + justify-content: space-between; | ||
323 | + flex-direction: column; | ||
324 | +} | ||
325 | + | ||
326 | +.swiper_item_type1, .swiper_item_type2, .swiper_item_type3 { | ||
327 | + display: flex; | ||
328 | + align-items: center; | ||
329 | + margin-right: 0.2rem; | ||
330 | +} | ||
331 | + | ||
332 | +.swiper_item_type1 span, .swiper_item_type2 span, .swiper_item_type3 span { | ||
333 | + display: -webkit-box; | ||
334 | + -webkit-box-orient: vertical; | ||
335 | + -webkit-line-clamp: 1; | ||
336 | + overflow: hidden; | ||
337 | +} | ||
338 | + | ||
339 | +.icon_img { | ||
340 | + width: 0.25rem; | ||
341 | + display: flex; | ||
342 | + align-items: center; | ||
343 | + justify-content: center; | ||
344 | + margin-right: 0.05rem; | ||
345 | +} | ||
346 | + | ||
347 | +.icon_img img { | ||
348 | + width: 100%; | ||
349 | +} | ||
350 | + | ||
351 | +.icon_box1, .icon_box2, .icon_box3 { | ||
352 | + height: 0.3rem; | ||
353 | + width: 0.3rem; | ||
354 | + border-radius: 50%; | ||
355 | + display: flex; | ||
356 | + align-items: center; | ||
357 | + justify-content: center; | ||
358 | + margin-right: 0.02rem; | ||
359 | +} | ||
360 | + | ||
361 | +.swiper_item_type .iconfont { | ||
362 | + font-size: 10px; | ||
363 | + color: #ffffff; | ||
364 | +} | ||
365 | + | ||
366 | +.icon_box1 { | ||
367 | + background-color: #f87e59; | ||
368 | +} | ||
369 | + | ||
370 | +.icon_box1 .icon-fanhui { | ||
371 | + transform: rotate(-60deg); | ||
372 | +} | ||
373 | + | ||
374 | +.icon_box2 { | ||
375 | + background-color: #d8b25f; | ||
376 | +} | ||
377 | + | ||
378 | +.icon_box3 { | ||
379 | + background-color: #EFA660; | ||
380 | +} | ||
381 | + | ||
382 | +.swiper_item_money { | ||
383 | + display: flex; | ||
384 | + justify-content: flex-end; | ||
385 | + font-size: 12px; | ||
386 | + color: #E87136; | ||
387 | +} | ||
388 | + | ||
389 | +.swiper_item_type .icon-shijian { | ||
390 | + color: #f87e59; | ||
391 | + font-size: 18px; | ||
392 | +} | ||
393 | + | ||
394 | +/*专业护理*/ | ||
395 | +.nurse_banner { | ||
396 | + background-repeat: no-repeat; | ||
397 | + background-size: cover; | ||
398 | + background-position: center; | ||
399 | + height: 2.77rem; | ||
400 | + width: 100%; | ||
401 | + display: flex; | ||
402 | + align-items: center; | ||
403 | + justify-content: center; | ||
404 | + margin-bottom: 0.15rem; | ||
405 | +} | ||
406 | + | ||
407 | +.nurse_text { | ||
408 | + text-align: center; | ||
409 | + padding: 0.2rem 0.35rem; | ||
410 | + font-size: 15px; | ||
411 | + border-bottom: 1px solid #fff; | ||
412 | + color: #fff; | ||
413 | + border-top: 1px solid #fff; | ||
414 | +} | ||
415 | + | ||
416 | +.nurse_title { | ||
417 | + font-size: 11px; | ||
418 | + color: #999999; | ||
419 | + display: flex; | ||
420 | + align-items: center; | ||
421 | + background-color: #fff; | ||
422 | + padding: 0.25rem 0.42rem 0 0.42rem; | ||
423 | +} | ||
424 | + | ||
425 | +.pro { | ||
426 | + color: #D8B25F; | ||
427 | + font-size: 15px; | ||
428 | +} | ||
429 | + | ||
430 | +.prod { | ||
431 | + color: #5FB4F4; | ||
432 | + font-size: 15px; | ||
433 | + padding: 0 0.23rem 0 0; | ||
434 | +} | ||
435 | + | ||
436 | +.nurse_img_box { | ||
437 | + display: flex; | ||
438 | + align-items: center; | ||
439 | + justify-content: space-around; | ||
440 | + background-color: #fff; | ||
441 | + padding: 0.25rem 0.2rem 0.35rem 0.25rem; | ||
442 | + flex-wrap: wrap; | ||
443 | + margin-bottom: 0.13rem; | ||
444 | +} | ||
445 | + | ||
446 | +.nurse_item { | ||
447 | + width: 30%; | ||
448 | + font-size: 12px; | ||
449 | + color: #999999; | ||
450 | + display: flex; | ||
451 | + align-items: center; | ||
452 | + flex-direction: column; | ||
453 | + justify-content: center; | ||
454 | + /*padding: 0.24rem 0 0 0;*/ | ||
455 | + background-color: #f8f8f8; | ||
456 | +} | ||
457 | + | ||
458 | +.nurse_item_title { | ||
459 | + text-align: center; | ||
460 | + font-size: 15px; | ||
461 | + color: #424242; | ||
462 | + padding-bottom: 0.21rem; | ||
463 | +} | ||
464 | + | ||
465 | +.nurse_item_price { | ||
466 | + color: #E87136; | ||
467 | +} | ||
468 | + | ||
469 | +.nurse_item_img { | ||
470 | + width: 100%; | ||
471 | + /*margin-top: 0.27rem;*/ | ||
472 | + display: flex; | ||
473 | + align-items: center; | ||
474 | + justify-content: center; | ||
475 | +} | ||
476 | + | ||
477 | +.nurse_item_img img { | ||
478 | + width: 100%; | ||
479 | +} | ||
480 | + | ||
481 | +.business_box { | ||
482 | + display: flex; | ||
483 | + align-items: center; | ||
484 | + justify-content: space-between; | ||
485 | + flex-wrap: wrap; | ||
486 | + background-color: #fff; | ||
487 | + padding: 0.13rem 0; | ||
488 | + box-shadow: 0.01rem 0.02rem 0.05rem #C8C6C6; | ||
489 | + margin-bottom: 0.13rem; | ||
490 | +} | ||
491 | + | ||
492 | +.business_item { | ||
493 | + width: 50%; | ||
494 | + border-bottom: 1px solid #f6f6f6; | ||
495 | + font-size: 15px; | ||
496 | + color: #424242; | ||
497 | + display: flex; | ||
498 | + align-items: center; | ||
499 | + padding: 0.26rem; | ||
500 | +} | ||
501 | + | ||
502 | +.business_item:nth-child(2n-1) { | ||
503 | + border-right: 1px solid #f6f6f6; | ||
504 | +} | ||
505 | + | ||
506 | +.business_item_img { | ||
507 | + display: flex; | ||
508 | + align-items: center; | ||
509 | + justify-content: center; | ||
510 | + width: 0.8rem; | ||
511 | + height: 0.8rem; | ||
512 | + margin-right: 0.15rem; | ||
513 | + border-radius: 50%; | ||
514 | + overflow: hidden; | ||
515 | +} | ||
516 | + | ||
517 | +.business_item_right { | ||
518 | + flex: 1; | ||
519 | +} | ||
520 | + | ||
521 | +.business_item_img img { | ||
522 | + width: 100%; | ||
523 | +} | ||
524 | + | ||
525 | +.business_content { | ||
526 | + color: #929292; | ||
527 | + font-size: 11px; | ||
528 | +} | ||
529 | + | ||
530 | +.business_item_title { | ||
531 | + margin: 0; | ||
532 | + font-weight: bold; | ||
533 | +} | ||
534 | + | ||
535 | +.bcg { | ||
536 | + background-color: #fff; | ||
537 | + padding: 0; | ||
538 | +} | ||
539 | + | ||
540 | +.bold { | ||
541 | + font-weight: bold; | ||
542 | + padding: 0.29rem 0 0.22rem 0; | ||
543 | +} | ||
544 | + | ||
545 | +.bcg .nurse_item_img { | ||
546 | + width: 1.15rem; | ||
547 | +} | ||
548 | + | ||
549 | +.index1 { | ||
550 | + /*background-repeat: no-repeat;*/ | ||
551 | + /*background-size: cover;*/ | ||
552 | + width: 100%; | ||
553 | + display: flex; | ||
554 | + align-items: center; | ||
555 | + justify-content: center; | ||
556 | + border-bottom: 1px solid #f2f2f2; | ||
557 | + background-color: #fff; | ||
558 | +} | ||
559 | + | ||
560 | +.index1 img { | ||
561 | + width: 100%; | ||
562 | +} | ||
563 | + | ||
564 | +.index1_item { | ||
565 | + display: flex; | ||
566 | + align-items: center; | ||
567 | + justify-content: space-between; | ||
568 | + padding: 0.1rem 0.4rem; | ||
569 | + line-height: 0.88rem; | ||
570 | + width: 100%; | ||
571 | + position: fixed; | ||
572 | + top: 0; | ||
573 | + left: 0; | ||
574 | + z-index: 999; | ||
575 | +} | ||
576 | + | ||
577 | +.index1 .iconfont { | ||
578 | + color: #fff; | ||
579 | +} | ||
580 | + | ||
581 | +@keyframes opacity { | ||
582 | + from { | ||
583 | + opacity: 0; | ||
584 | + } | ||
585 | + to { | ||
586 | + opacity: 1; | ||
587 | + } | ||
588 | +} | ||
589 | + | ||
590 | +.fixed_top { | ||
591 | + position: fixed; | ||
592 | + left: 0; | ||
593 | + top: 0; | ||
594 | + width: 100%; | ||
595 | + z-index: 9; | ||
596 | + background-color: #fff; | ||
597 | + animation: opacity 0.2s forwards; | ||
598 | + border-bottom: 1px solid #f6f6f6; | ||
599 | +} |
assets/css/login_index.css
0 → 100644
1 | +.login_box { | ||
2 | + display: flex; | ||
3 | + align-items: center; | ||
4 | + justify-content: space-around; | ||
5 | + font-size: 15px; | ||
6 | + color: #424242; | ||
7 | + padding: 0.21rem 0; | ||
8 | + margin: 0.35rem 0 1.04rem 0; | ||
9 | +} | ||
10 | + | ||
11 | +.login_box span { | ||
12 | + padding: 0.21rem 0; | ||
13 | +} | ||
14 | + | ||
15 | +.login_active { | ||
16 | + color: #D8B25F; | ||
17 | + border-bottom: 1px solid #D8B25F; | ||
18 | +} | ||
19 | + | ||
20 | +.login_input { | ||
21 | + margin: 0 0.55rem; | ||
22 | + font-size: 13px; | ||
23 | + color: #8D8C8C; | ||
24 | + border-bottom: 1px solid #d3d1d4; | ||
25 | + padding: 0 0.06rem; | ||
26 | + display: flex; | ||
27 | + align-items: center; | ||
28 | + justify-content: space-between; | ||
29 | +} | ||
30 | + | ||
31 | +.login_input input { | ||
32 | + padding: 0.36rem 0; | ||
33 | + color: #424242; | ||
34 | + font-size: 15px; | ||
35 | + flex: 1; | ||
36 | +} | ||
37 | + | ||
38 | +input::-webkit-input-placeholder { | ||
39 | + color: #C8C6C6; | ||
40 | + font-size: 13px; | ||
41 | +} | ||
42 | + | ||
43 | +.login_input input::placeholder { | ||
44 | + color: #C8C6C6; | ||
45 | + font-size: 13px; | ||
46 | +} | ||
47 | + | ||
48 | +.login_input input::-moz-placeholder { | ||
49 | + color: #C8C6C6; | ||
50 | + font-size: 13px; | ||
51 | +} | ||
52 | + | ||
53 | +.login_input input:-ms-input-placeholder { | ||
54 | + color: #C8C6C6; | ||
55 | + font-size: 13px; | ||
56 | +} | ||
57 | + | ||
58 | +.login_input span { | ||
59 | + padding: 0 0.2rem; | ||
60 | + display: inline-block; | ||
61 | + height: 100%; | ||
62 | +} | ||
63 | + | ||
64 | +.login_input .count { | ||
65 | + border-left: 2px solid #dbb25f; | ||
66 | +} | ||
67 | + | ||
68 | +.login_btn { | ||
69 | + margin: 0.9rem 0.55rem 0 0.55rem; | ||
70 | + font-size: 18px; | ||
71 | + color: #fff; | ||
72 | + padding: 0.31rem 0 0.21rem 0; | ||
73 | + background-color: #dbb25f; | ||
74 | + text-align: center; | ||
75 | + border-radius: 0.16rem; | ||
76 | +} | ||
77 | + | ||
78 | +.no_reg { | ||
79 | + font-size: 13px; | ||
80 | + color: #C8C6C6; | ||
81 | + text-align: center; | ||
82 | + padding: 0.3rem 0; | ||
83 | +} | ||
84 | + | ||
85 | +.fast_login_box { | ||
86 | + display: flex; | ||
87 | + align-items: center; | ||
88 | + font-size: 12px; | ||
89 | + color: #C8C6C6; | ||
90 | + margin: 1.31rem 0.52rem 0.5rem 0.52rem; | ||
91 | +} | ||
92 | + | ||
93 | +.fast_login_box .span_line { | ||
94 | + height: 1px; | ||
95 | + background-color: #e1e0e0; | ||
96 | + flex: 1; | ||
97 | +} | ||
98 | + | ||
99 | +.login_type_box { | ||
100 | + display: flex; | ||
101 | + align-items: center; | ||
102 | + margin: 0.5rem 0; | ||
103 | + padding: 0 2.3rem; | ||
104 | + justify-content: space-between; | ||
105 | +} | ||
106 | + | ||
107 | +.login_type_box .icon-wei_xing { | ||
108 | + color: #09bb08; | ||
109 | + font-size: 40px; | ||
110 | +} | ||
111 | + | ||
112 | +.login_type_box .icon-QQ { | ||
113 | + color: #12bbf6; | ||
114 | + font-size: 40px; | ||
115 | +} | ||
116 | + | ||
117 | +.agree_box { | ||
118 | + display: flex; | ||
119 | + align-items: center; | ||
120 | + color: #A5A5A5; | ||
121 | + justify-content: center; | ||
122 | + font-size: 12px; | ||
123 | +} | ||
124 | + | ||
125 | +.agree_box .iconfont { | ||
126 | + font-size: 12px; | ||
127 | + margin-right: 0.2rem; | ||
128 | +} | ||
129 | + | ||
130 | +/*.agree_box .icon-fangkuang {*/ | ||
131 | +/*font-size: 20px;*/ | ||
132 | +/*margin-right: 0.2rem;*/ | ||
133 | +/*}*/ | ||
134 | + | ||
135 | +.agreement { | ||
136 | + color: #D8B25F; | ||
137 | +} | ||
138 | + | ||
139 | +/*.login_loading {*/ | ||
140 | + /*display: flex;*/ | ||
141 | + /*align-items: center;*/ | ||
142 | + /*justify-content: center;*/ | ||
143 | + /*position: fixed;*/ | ||
144 | + /*flex-direction: column;*/ | ||
145 | + /*width: 100%;*/ | ||
146 | + /*height: 100%;*/ | ||
147 | + /*font-size: 12px;*/ | ||
148 | +/*}*/ | ||
149 | + | ||
150 | +/*.login_loading span {*/ | ||
151 | + /*padding: 0.2rem;*/ | ||
152 | + /*background-color: rgba(0, 0, 0, 0.2);*/ | ||
153 | + /*color: #fff;*/ | ||
154 | +/*}*/ | ||
155 | + | ||
156 | +/*.login_img {*/ | ||
157 | + /*display: flex;*/ | ||
158 | + /*align-items: center;*/ | ||
159 | + /*justify-content: center;*/ | ||
160 | + /*width: 1.5rem;*/ | ||
161 | + /*height: 1.5rem;*/ | ||
162 | +/*}*/ | ||
163 | + | ||
164 | +/*.login_img img {*/ | ||
165 | + /*width: 100%;*/ | ||
166 | +/*}*/ |
assets/css/my_f.css
0 → 100644
1 | +.my_top { | ||
2 | + background: url("../../assets/image/center.png") no-repeat; | ||
3 | + background-size: 100% 100%; | ||
4 | + background-position: center; | ||
5 | + height: 4.15rem; | ||
6 | +} | ||
7 | + | ||
8 | +.my_top_icon_box { | ||
9 | + display: flex; | ||
10 | + align-items: center; | ||
11 | + justify-content: flex-end; | ||
12 | + padding: 0.6rem 0.5rem 0 0; | ||
13 | + position: relative; | ||
14 | +} | ||
15 | + | ||
16 | +.my_top_icon_box .iconfont { | ||
17 | + font-size: 20px; | ||
18 | + color: #fff; | ||
19 | + transform: rotateY(180deg); | ||
20 | +} | ||
21 | + | ||
22 | +.my_header_boxs { | ||
23 | + height: 1.8rem; | ||
24 | + width: 1.8rem; | ||
25 | + border-radius: 50%; | ||
26 | + margin: 0 auto; | ||
27 | + border: 0.02rem solid #e6ac56; | ||
28 | + position: relative; | ||
29 | + display: flex; | ||
30 | + align-items: center; | ||
31 | + justify-content: center; | ||
32 | +} | ||
33 | + | ||
34 | +.my_header_box { | ||
35 | + height: 1.74rem; | ||
36 | + width: 1.74rem; | ||
37 | + display: flex; | ||
38 | + align-items: center; | ||
39 | + justify-content: center; | ||
40 | + border-radius: 50%; | ||
41 | + margin: 0 auto; | ||
42 | + overflow: hidden; | ||
43 | + position: relative; | ||
44 | +} | ||
45 | + | ||
46 | +.my_header_box img { | ||
47 | + width: 100%; | ||
48 | +} | ||
49 | + | ||
50 | +.my_name { | ||
51 | + text-align: center; | ||
52 | + font-size: 15px; | ||
53 | + color: #fff; | ||
54 | + padding: 0.16rem 0; | ||
55 | +} | ||
56 | + | ||
57 | +.my_count { | ||
58 | + display: flex; | ||
59 | + align-items: center; | ||
60 | + justify-content: space-around; | ||
61 | + padding: 0.4rem 0; | ||
62 | + box-shadow: 0 0.1rem 0.05rem RGBA(243, 243, 243, 0.75); | ||
63 | +} | ||
64 | + | ||
65 | +.my_count .my_count_item:nth-child(2) { | ||
66 | + border-left: 1px solid #f2f2f2; | ||
67 | +} | ||
68 | + | ||
69 | +.my_count_item { | ||
70 | + flex: 1; | ||
71 | + font-size: 14px; | ||
72 | + color: #000; | ||
73 | + display: flex; | ||
74 | + flex-direction: column; | ||
75 | + align-items: center; | ||
76 | + justify-content: center; | ||
77 | + padding: 0.2rem 0; | ||
78 | + text-align: center; | ||
79 | +} | ||
80 | + | ||
81 | +.my_price { | ||
82 | + color: #FF6F05; | ||
83 | + font-size: 18px; | ||
84 | + padding: 0.17rem 0; | ||
85 | +} | ||
86 | + | ||
87 | +.my_item_box { | ||
88 | + display: flex; | ||
89 | + align-items: center; | ||
90 | + flex-wrap: wrap; | ||
91 | + margin: 0.45rem 0.28rem; | ||
92 | +} | ||
93 | + | ||
94 | +.my_item { | ||
95 | + width: 32%; | ||
96 | + border-bottom: 3px solid #f2f2f2; | ||
97 | + border-right: 3px solid #f2f2f2; | ||
98 | + display: flex; | ||
99 | + align-items: center; | ||
100 | + justify-content: center; | ||
101 | + flex-direction: column; | ||
102 | + font-size: 15px; | ||
103 | + color: #000; | ||
104 | + padding: 0.11rem 0 0.29rem 0; | ||
105 | + text-align: center; | ||
106 | + position: relative; | ||
107 | +} | ||
108 | + | ||
109 | +.my_item img { | ||
110 | + width: 0.76rem; | ||
111 | + height: 0.76rem; | ||
112 | + border-radius: 50%; | ||
113 | + margin-bottom: 0.13rem; | ||
114 | +} | ||
115 | + | ||
116 | +.border_1 { | ||
117 | + border-bottom: 0; | ||
118 | +} | ||
119 | + | ||
120 | +.border_2 { | ||
121 | + border-right: 0; | ||
122 | +} | ||
123 | + | ||
124 | +.login { | ||
125 | + display: flex; | ||
126 | + align-items: center; | ||
127 | + justify-content: center; | ||
128 | + font-size: 0.3rem; | ||
129 | + | ||
130 | +} | ||
131 | + | ||
132 | +.login_btn { | ||
133 | + height: 1.74rem; | ||
134 | + width: 1.74rem; | ||
135 | + border-radius: 50%; | ||
136 | + display: flex; | ||
137 | + align-items: center; | ||
138 | + justify-content: center; | ||
139 | + background-color: #fff; | ||
140 | + font-size: 0.3rem; | ||
141 | + color: #424242; | ||
142 | +} | ||
143 | + | ||
144 | +.my_vip { | ||
145 | + position: absolute; | ||
146 | + top: -0.1rem; | ||
147 | + right: 0.1rem; | ||
148 | + font-size: 20px; | ||
149 | + height: 0.4rem; | ||
150 | + width: 0.4rem; | ||
151 | + text-align: center; | ||
152 | + color: #fff; | ||
153 | + line-height: 0.4rem; | ||
154 | + z-index: 10; | ||
155 | + border-radius: 50%; | ||
156 | +} | ||
157 | + | ||
158 | +.no_vip { | ||
159 | + background-color: #f2f2f2; | ||
160 | +} | ||
161 | + | ||
162 | +.vip_show { | ||
163 | + background-color: #FC8817; | ||
164 | +} | ||
165 | + | ||
166 | +.my_money { | ||
167 | + font-size: 10px; | ||
168 | + text-align: center; | ||
169 | + color: #B6B4B4; | ||
170 | + position: absolute; | ||
171 | + bottom: 0; | ||
172 | + left: 0; | ||
173 | + right: 0; | ||
174 | + margin: 0 auto; | ||
175 | +} |
assets/css/my_news.css
0 → 100644
1 | + | ||
2 | +.new_top { | ||
3 | + display: flex; | ||
4 | + align-items: center; | ||
5 | + justify-content: space-around; | ||
6 | + font-size: 0.24rem; | ||
7 | + color: #656565; | ||
8 | + padding: 0.16rem 0; | ||
9 | + margin: 0 0 0.16rem 0; | ||
10 | + background-color: #fff; | ||
11 | + position: fixed; | ||
12 | + z-index: 10; | ||
13 | + left: 0; | ||
14 | + top: 0; | ||
15 | + width: 100%; | ||
16 | +} | ||
17 | + | ||
18 | +.new_top div { | ||
19 | + padding: 0.12rem 0.05rem; | ||
20 | + position: relative; | ||
21 | +} | ||
22 | + | ||
23 | +.new_top .sapn_active { | ||
24 | + color: #DDBB73; | ||
25 | + border-bottom: 1px solid #DDBB73; | ||
26 | +} | ||
27 | + | ||
28 | +.new_top .news { | ||
29 | + position: absolute; | ||
30 | + top: 0.05rem; | ||
31 | + right: -0.05rem; | ||
32 | + height: 0.2rem; | ||
33 | + width: 0.2rem; | ||
34 | + border-radius: 50%; | ||
35 | + color: #F6F5F5; | ||
36 | + text-align: center; | ||
37 | + display: flex; | ||
38 | + align-items: center; | ||
39 | + justify-content: center; | ||
40 | + font-size: 0.18rem; | ||
41 | + background-color: #FF0000; | ||
42 | +} | ||
43 | + | ||
44 | +.all { | ||
45 | + margin-top: 1.1rem; | ||
46 | +} | ||
47 | + | ||
48 | +.all_item { | ||
49 | + padding: 0.5rem 0.63rem 0.47rem 0.54rem; | ||
50 | + margin-bottom: 0.17rem; | ||
51 | + background-color: #fff; | ||
52 | + position: relative; | ||
53 | +} | ||
54 | + | ||
55 | +.all_content { | ||
56 | + display: -webkit-box; | ||
57 | + -webkit-box-orient: vertical; | ||
58 | + -webkit-line-clamp: 1; | ||
59 | + overflow: hidden; | ||
60 | + font-size: 0.24rem; | ||
61 | + color: #424242; | ||
62 | +} | ||
63 | + | ||
64 | +.all_time { | ||
65 | + display: flex; | ||
66 | + align-items: center; | ||
67 | + justify-content: flex-end; | ||
68 | + color: #878787; | ||
69 | + font-size: 0.2rem; | ||
70 | + padding: 0.37rem 0 0 0; | ||
71 | +} | ||
72 | + | ||
73 | +.new_num2 { | ||
74 | + font-size: 0.14rem; | ||
75 | +} |
assets/css/pay.css
0 → 100644
1 | +.pay_time { | ||
2 | + text-align: center; | ||
3 | + padding: 0.2rem 0; | ||
4 | + background-color: #dbb25f; | ||
5 | + color: #fff; | ||
6 | + font-size: 0.24rem; | ||
7 | +} | ||
8 | + | ||
9 | +.pay_box { | ||
10 | + background-color: #fff; | ||
11 | + font-size: 14px; | ||
12 | + color: #424242; | ||
13 | + margin: 0.11rem 0 0 0; | ||
14 | +} | ||
15 | + | ||
16 | +.pay_item_title { | ||
17 | + display: flex; | ||
18 | + align-items: center; | ||
19 | + justify-content: space-between; | ||
20 | + font-size: 14px; | ||
21 | + color: #E87139; | ||
22 | + padding: 0.32rem 0.5rem 0.32rem 0.42rem; | ||
23 | + border-bottom: 1px solid #ebebeb; | ||
24 | +} | ||
25 | + | ||
26 | +.pay_item_title .pay_item_title_span { | ||
27 | + border-left: 0.13rem solid #dbb25f; | ||
28 | + padding: 0 0.2rem; | ||
29 | + color: #424242; | ||
30 | +} | ||
31 | + | ||
32 | +.pay_detail { | ||
33 | + padding: 0.23rem 0 0.28rem 0.42rem; | ||
34 | +} | ||
35 | + | ||
36 | +.pay_detail_item { | ||
37 | + display: flex; | ||
38 | + align-items: center; | ||
39 | + padding: 0 0 0.23rem 0; | ||
40 | + font-size: 14px; | ||
41 | + color: #424242; | ||
42 | + flex-wrap: wrap; | ||
43 | +} | ||
44 | + | ||
45 | +.pay_detail_item .iconfont { | ||
46 | + color: #DFBB6D; | ||
47 | + margin-right: 0.1rem; | ||
48 | +} | ||
49 | + | ||
50 | +.pay_detail_item .pay_detail_label { | ||
51 | + color: #919191; | ||
52 | + font-size:14px; | ||
53 | + margin-right: 0.26rem; | ||
54 | + min-width: 1.2rem; | ||
55 | +} | ||
56 | + | ||
57 | +.pay_detail .pay_detail_item:last-child { | ||
58 | + padding: 0; | ||
59 | +} | ||
60 | + | ||
61 | +.pay_detail_item_img { | ||
62 | + width: 2.15rem; | ||
63 | + height: 1.85rem; | ||
64 | + justify-content: center; | ||
65 | + display: flex; | ||
66 | + align-items: center; | ||
67 | + background-color: #f2f2f2; | ||
68 | + border-radius: 0.16rem; | ||
69 | + margin: 0 0.2rem 0.2rem 0; | ||
70 | + overflow: hidden; | ||
71 | +} | ||
72 | + | ||
73 | +.pay_detail_item_img img { | ||
74 | + width: 100%; | ||
75 | +} | ||
76 | + | ||
77 | +.pay_price_item { | ||
78 | + display: flex; | ||
79 | + align-items: center; | ||
80 | + justify-content: space-between; | ||
81 | + padding: 0 0.32rem 0.2rem 0; | ||
82 | + font-size: 14px; | ||
83 | + color: #424242; | ||
84 | +} | ||
85 | + | ||
86 | +.pay_order_num { | ||
87 | + padding: 0.2rem 0.44rem; | ||
88 | + font-size: 14px; | ||
89 | + color: #424242; | ||
90 | +} | ||
91 | + | ||
92 | +.address { | ||
93 | + flex-wrap: nowrap; | ||
94 | +} | ||
95 | + | ||
96 | +.pay_btn_box { | ||
97 | + position: fixed; | ||
98 | + width: 100%; | ||
99 | + padding: 0.25rem 0.5rem; | ||
100 | + background-color: #fff; | ||
101 | + left: 0; | ||
102 | + bottom: 0; | ||
103 | + z-index: 20; | ||
104 | + display: flex; | ||
105 | + align-items: center; | ||
106 | + justify-content: flex-end; | ||
107 | +} | ||
108 | + | ||
109 | +.pay_btn_box span { | ||
110 | + padding: 0.16rem 0.45rem; | ||
111 | + border: 1px solid #D8B25F; | ||
112 | + border-radius: 0.16rem; | ||
113 | + font-size: 16px; | ||
114 | + color: #D8B25F; | ||
115 | +} |
assets/css/pay_form_f.css
0 → 100644
1 | + | ||
2 | +.service { | ||
3 | + padding: 0.1rem 0.6rem; | ||
4 | + font-size: 15px; | ||
5 | + font-weight: 500; | ||
6 | + background-color: #f5f5f5; | ||
7 | +} | ||
8 | + | ||
9 | +.service_his { | ||
10 | + padding: 0.1rem 0.54rem; | ||
11 | + background-color: #fff; | ||
12 | + display: flex; | ||
13 | + align-items: center; | ||
14 | + flex-wrap: wrap; | ||
15 | + border-bottom: 1px solid #f8f8f8; | ||
16 | +} | ||
17 | + | ||
18 | +.service_his span { | ||
19 | + padding: 0.05rem 0.36rem; | ||
20 | + color: #E87139; | ||
21 | + font-size: 12px; | ||
22 | + border: 1px solid #E87139; | ||
23 | + border-radius: 0.05rem; | ||
24 | + margin: 0.1rem 0.2rem 0.1rem 0; | ||
25 | +} | ||
26 | + | ||
27 | +.service_his .active_span { | ||
28 | + color: #fff; | ||
29 | + background-color: #E87139; | ||
30 | +} | ||
31 | + | ||
32 | +.service_input_box { | ||
33 | + background-color: #fff; | ||
34 | + font-size: 14px; | ||
35 | + color: #424242; | ||
36 | + border-bottom: 1px solid #f8f8f8f8; | ||
37 | + justify-content: space-between; | ||
38 | + display: flex; | ||
39 | + align-items: center; | ||
40 | + padding: 0 0.4rem; | ||
41 | + /*height: 0.88rem;*/ | ||
42 | + line-height: 100%; | ||
43 | +} | ||
44 | + | ||
45 | +.service_icon { | ||
46 | + display: flex; | ||
47 | + align-items: center; | ||
48 | +} | ||
49 | + | ||
50 | +.pinganbox { | ||
51 | + margin: 0.11rem 0; | ||
52 | + height: auto; | ||
53 | + justify-content: flex-start; | ||
54 | +} | ||
55 | + | ||
56 | +.pinganbox img { | ||
57 | + width: 1.5rem; | ||
58 | +} | ||
59 | + | ||
60 | +.pinganbox .service_input { | ||
61 | + margin: 0 0.2rem 0 0; | ||
62 | +} | ||
63 | + | ||
64 | +.right_content { | ||
65 | + font-size: 12px; | ||
66 | + color: #575757; | ||
67 | + display: -webkit-box; | ||
68 | + -webkit-box-orient: vertical; | ||
69 | + -webkit-line-clamp: 1; | ||
70 | + overflow: hidden; | ||
71 | + line-height: 0.5rem; | ||
72 | +} | ||
73 | + | ||
74 | +.pinganbox .iconfont { | ||
75 | + color: #C2C1C3; | ||
76 | + margin-left: 0.1rem; | ||
77 | +} | ||
78 | + | ||
79 | +.service_icon .iconfont { | ||
80 | + font-size: 19px; | ||
81 | + color: #dbb25f; | ||
82 | + margin-right: 0.24rem; | ||
83 | +} | ||
84 | + | ||
85 | +.service_input { | ||
86 | + flex: 1; | ||
87 | + display: flex; | ||
88 | + align-items: center; | ||
89 | + justify-content: flex-end; | ||
90 | +} | ||
91 | + | ||
92 | +.service_input input { | ||
93 | + /*padding: 0.25rem 0;*/ | ||
94 | + height: 0.88rem; | ||
95 | + text-align: right; | ||
96 | + display: inline-block; | ||
97 | + width: 100%; | ||
98 | +} | ||
99 | + | ||
100 | +.service_input span { | ||
101 | + color: #C2C1C3; | ||
102 | + margin: 0.25rem 0 0.25rem 0.25rem; | ||
103 | + text-align: right; | ||
104 | + font-size: 12px; | ||
105 | + /*display: inline-block;*/ | ||
106 | + /*width: 100%;*/ | ||
107 | +} | ||
108 | + | ||
109 | +.service_input input::placeholder { | ||
110 | + color: #C2C1C3; | ||
111 | + font-size: 12px; | ||
112 | + text-align: right; | ||
113 | +} | ||
114 | + | ||
115 | +.service_input .date_info { | ||
116 | + color: #424242; | ||
117 | + font-size: 12px; | ||
118 | +} | ||
119 | + | ||
120 | +.sex_box { | ||
121 | + display: flex; | ||
122 | + align-items: center; | ||
123 | + font-size: 12px; | ||
124 | + color: #C2C1C3; | ||
125 | + justify-content: flex-end; | ||
126 | + height: 0.88rem; | ||
127 | +} | ||
128 | + | ||
129 | +.sex_box label { | ||
130 | + font-size: 12px; | ||
131 | + margin-left: 0.5rem; | ||
132 | + display: flex; | ||
133 | + align-items: center; | ||
134 | + /*padding: 0;*/ | ||
135 | + /*height: 0.12rem;*/ | ||
136 | +} | ||
137 | + | ||
138 | +input[type="radio"] + label::before { | ||
139 | + content: "\a0"; /*不换行空格*/ | ||
140 | + display: inline-block; | ||
141 | + vertical-align: middle; | ||
142 | + font-size: 12px; | ||
143 | + width: 0.3rem; | ||
144 | + height: 0.3rem; | ||
145 | + margin-right: .2rem; | ||
146 | + border-radius: 50%; | ||
147 | + border: 1px solid #C2C1C3; | ||
148 | + line-height: 1; | ||
149 | + box-sizing: border-box; | ||
150 | +} | ||
151 | + | ||
152 | +.female, .male { | ||
153 | + display: flex; | ||
154 | + align-items: center; | ||
155 | + justify-content: center; | ||
156 | + margin-left: 0.2rem; | ||
157 | +} | ||
158 | + | ||
159 | +input[type="radio"]:checked + label::before { | ||
160 | + background-color: #dbb25f; | ||
161 | + background-clip: content-box; | ||
162 | + padding: 0.05rem; | ||
163 | + box-sizing: border-box; | ||
164 | +} | ||
165 | + | ||
166 | +.service_text_box { | ||
167 | + background-color: #fff; | ||
168 | + margin: 0 0 0.1rem 0; | ||
169 | + overflow: hidden; | ||
170 | +} | ||
171 | + | ||
172 | +.service_text { | ||
173 | + display: flex; | ||
174 | + font-size: 15px; | ||
175 | + color: #424242; | ||
176 | + background-color: #f2f2f2; | ||
177 | + margin: 0.15rem 0.4rem; | ||
178 | + overflow: hidden; | ||
179 | + padding: 0 0.1rem; | ||
180 | +} | ||
181 | + | ||
182 | +.service_text textarea { | ||
183 | + padding: 0.25rem 0; | ||
184 | + resize: none; | ||
185 | + margin-left: 0.1rem; | ||
186 | + line-height: 0.3rem; | ||
187 | + width: 100%; | ||
188 | +} | ||
189 | + | ||
190 | +.service_text textarea::placeholder { | ||
191 | + color: #C2C1C3; | ||
192 | + font-size: 12px; | ||
193 | + line-height: 0.3rem; | ||
194 | +} | ||
195 | + | ||
196 | +.service_text textarea::-webkit-input-placeholder { | ||
197 | + color: #C2C1C3; | ||
198 | + font-size: 12px; | ||
199 | + line-height: 0.3rem; | ||
200 | +} | ||
201 | + | ||
202 | +.service_text textarea:-moz-placeholder { | ||
203 | + color: #C2C1C3; | ||
204 | + font-size: 12px; | ||
205 | + line-height: 0.3rem; | ||
206 | +} | ||
207 | + | ||
208 | +.service_text .icon-tianxie { | ||
209 | + padding: 0.25rem 0; | ||
210 | + color: #C2C1C3; | ||
211 | +} | ||
212 | + | ||
213 | +.service_input .icon-yiliao { | ||
214 | + font-size: 20px; | ||
215 | + color: #dbb25f; | ||
216 | +} | ||
217 | + | ||
218 | +.service_icon .icon-xinjia, .service_icon .icon-tool_active { | ||
219 | + color: #424242; | ||
220 | +} | ||
221 | + | ||
222 | +.service_icon .icon-shenfenzhengming { | ||
223 | + font-size: 23px; | ||
224 | + color: #424242; | ||
225 | + margin-right: 0.1rem; | ||
226 | +} | ||
227 | + | ||
228 | +.service_icon .icon-credentials_icon { | ||
229 | + margin-right: 0.1rem; | ||
230 | +} | ||
231 | + | ||
232 | +.agree_box { | ||
233 | + /*align-items: center;*/ | ||
234 | + font-size: 12px; | ||
235 | + color: #424242; | ||
236 | + padding: 0.28rem 0.25rem; | ||
237 | +} | ||
238 | + | ||
239 | +.contract span { | ||
240 | + display: inline; | ||
241 | +} | ||
242 | + | ||
243 | +.contract .contract_item { | ||
244 | + color: #D8B25F; | ||
245 | +} | ||
246 | + | ||
247 | +.agreetit { | ||
248 | + /*display: flex;*/ | ||
249 | + /*display: inline-flex;*/ | ||
250 | +} | ||
251 | + | ||
252 | +.tgl { | ||
253 | + display: none; | ||
254 | +} | ||
255 | + | ||
256 | +.tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-btn::-moz-selection { | ||
257 | + background: none; | ||
258 | +} | ||
259 | + | ||
260 | +.tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection { | ||
261 | + background: none; | ||
262 | +} | ||
263 | + | ||
264 | +.tgl + .tgl-btn { | ||
265 | + outline: 0; | ||
266 | + /*display: block;*/ | ||
267 | + min-width: 0.5rem; | ||
268 | + height: 0.3rem; | ||
269 | + margin-right: 0.1rem; | ||
270 | +} | ||
271 | + | ||
272 | +.tgl + .tgl-btn:after, .tgl + .tgl-btn:before { | ||
273 | + position: relative; | ||
274 | + display: block; | ||
275 | + content: ""; | ||
276 | + width: 50%; | ||
277 | + height: 100%; | ||
278 | +} | ||
279 | + | ||
280 | +.tgl + .tgl-btn:after { | ||
281 | + left: 0; | ||
282 | +} | ||
283 | + | ||
284 | +.tgl + .tgl-btn:before { | ||
285 | + display: none; | ||
286 | +} | ||
287 | + | ||
288 | +.tgl:checked + .tgl-btn:after { | ||
289 | + left: 50%; | ||
290 | +} | ||
291 | + | ||
292 | +.tgl-light + .tgl-btn { | ||
293 | + background: #a1a1a1; | ||
294 | + border-radius: 0.4rem; | ||
295 | + padding: 2px; | ||
296 | + -webkit-transition: all .4s ease; | ||
297 | + transition: all .4s ease; | ||
298 | +} | ||
299 | + | ||
300 | +.tgl-light + .tgl-btn:after { | ||
301 | + border-radius: 50%; | ||
302 | + background: #fff; | ||
303 | + -webkit-transition: all .2s ease; | ||
304 | + transition: all .2s ease; | ||
305 | +} | ||
306 | + | ||
307 | +.tgl-light:checked + .tgl-btn { | ||
308 | + background: #d8b25f; | ||
309 | +} | ||
310 | + | ||
311 | +.mint-popup-bottom { | ||
312 | + width: 100%; | ||
313 | +} |
-
请 注册 或 登录 后发表评论