user.css
79.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
.dotm_btn2{background:url(../images/all.png) no-repeat;background-size: auto 16px; }
/*个人中心欢迎页*/
.user_com{ width:100%; overflow:hidden;}
.com_top{ width:100%;position:relative;}
.com_top h2{ width:100%; height:40px;}
.com_top h2 a{ width:50px; display:block; background-color:rgba(28,27,26,0.6); font-size:14px; line-height:30px; color:#FFF; margin-top:8px; float:right; margin-right:10px; -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:20px; text-align:center; font-weight:normal}
.com_top dl{ width:100%; margin:auto;/* position:absolute; bottom:-45px;*/;margin-top: 24px; z-index:99999;}
.com_top dl dt{ width:100%;}
.com_top .headPic{width:80px;position: absolute;left: 15px;bottom: -40px;font-size: 14px; color: #000000;text-align: center;}
/*会员充值*/
.vipno_col {padding: 0 10px; background-color: #fff;border-bottom: 1px #eee solid}
.vipno_col .inner{padding: 8px 0;font-size: 12px;}
.vipno_col .inner .vipimg{width: 40px;display: inline-block;vertical-align: middle;margin-right: 5px; }
.vipno_col .inner .joinvip{float: right;color: #d01d33; border: 1px #d01d33 solid;padding: 1px 3px;display: inline-block;font-size: 12px;border-radius: 4px;}
/*新增个人中心样式20170912*/
.user-header{position: absolute;left: 50%;top: 31%;margin-left: -40px; width: 80px;text-align: center;}
.user-header a{margin:0 auto 10px;background-color: rgba(255,255,255,0.8);overflow: auto; border: 2px solid #fff; width: 80px;height: 80px; border-radius:50%;-moz-border-radius: 50%;-webkit-border-radius: 50%; display: block;}
.user-header a img{max-width: 100%;max-height: 100%;}
.user-header .username{background-color: rgba(255,255,255,0.8);padding: 5px 10px; border: 1px solid #fff;border-radius:32px;-moz-border-radius:32px;-webkit-border-radius:32px;display: block;white-space: nowrap;overflow: hidden;text-overflow: ellipsis}
.user_topnav{background:#FFF;margin-bottom: 10px;}
.user_topnav .tit,.Wallet .tit{padding: 10px; border-bottom: 1px solid #eee;font-size: 16px;color:#333;background:url(../images/distribut/left.png) no-repeat 95% center;background-size: 11px 20px;}
.user_topnav .tit span,.Wallet .tit span{margin-left: 10px;vertical-align: middle;}
.user_topnav ul{width: 100%;font-size: 0;}
.user_topnav ul li{position: relative; width: 25%;padding: 10px 0;text-align: center;vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.user_topnav ul li div{position: relative;margin: auto;}
.user_topnav ul li div img{width: 100%;}
.user_topnav ul li em{top: -5px;right: -5px;}
.user_topnav ul li p{font-size: 14px;color: #333;}
.Wallet .tit{background: none;}
.Wallet_ul{margin-top: 10px;}
.Wallet_ul li{border-bottom: 1px solid #eee;padding: 10px;background:url(../images/distribut/left.png) no-repeat 95% center;background-size: 11px 20px;background-color: #fff;}
.Wallet_ul .down{background:url(../images/distribut/down.png) no-repeat 95% center;background-size: 20px 11px;background-color: #fff;}
.Wallet_ul li a {display:block;}
.Wallet_ul li a span{color: #333;margin-left: 10px;}
/*个人中心顶部样式20170912 end*/
/*分销首页的头像*/
.com_top .headPic1{width:auto;top: 50%;margin-top: -40px;bottom: none;}
.com_top .headPic1 a,.com_top .headPic1 .cut{vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.com_top .headPic1 a{width: 80px;}
.com_top .headPic1 .cut{max-width: 150px; background-color: #fff;margin-left: 10px;padding: 5px 10px;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius: 4px;}
.com_top .headPic img{ display:block; width:80px; height:80px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;border: 1px solid #f7e9e2;}
.com_top dl dt span{ display:block; float:left; text-indent:10px; font-size:14px; color:#FFF;}
.com_top dl dd{ float:right;font-size:14px; color:#fff; text-align:right; padding-right:10px; margin-left:-10px;}
/*新增 分销商首页 20170704*/
.shopname{max-width:50%; position: absolute;bottom: 10px;left: 120px;background-color: rgba(255,255,255,0.5);padding: 3px 10px;border-radius:4px;-moz-border-radius: 4px;-webkit-border-radius: 4px;}
.uer_topnav{ width:100%; height:60px; background:#FFF; border-bottom:1px solid #dddcdc}
.uer_topnav ul{ width:70%; height:40px; padding-top:10px; float:right}
.uer_topnav ul li{ width:33%; float:left; line-height:20px; color:#666; text-align:center;}
/*新增 分销商的首页 20170704*/
.uer_topnav ul li .titName{color: #666;font-size: 14px;}
.uer_topnav ul li a{ display:block; width:100%; overflow:hidden;font-size:12px;}
.uer_topnav ul li span{ display:block; width:100%; height:20px;line-height:20px; font-size:14px; color:#666}
.bian{border-right:1px solid #eeeeee;}
.uer_topnav1{border-bottom: 10px solid #eee;height: auto;}
/*我的发展收益 分销商 新增 20170322*/
/*可提现金额*/
.w_money{display: block; font-size: 14px; border-bottom: 1px solid #eee;color: #333;padding: 10px;background-color: #fff;}
.w_money .left{float: left;}
.w_money .left img{margin-right: 5px;}
.w_money .left span{vertical-align: middle;}
.w_money .right{float: right;}
.w_money .right img{margin-left: 5px;}
.w_money .right span{color: #C4182E;}
.w_money .selectbtn{font-size: 14px;color: #C4182E;padding: 5px 10px;background-color: #fff;border: 1px solid #C4182E;border-radius: 16px;-moz-border-radius: 16px;-webkit-border-radius: 16px;}
.uer_topnav1 .saleMoney{width: 100%;float: none;padding-bottom: 10px;}
.uer_topnav1 .saleMoney li{width: 33%; font-size: 14px;color: #999;}
.uer_topnav1 .saleMoney li span{font-size: 14px; color: #333;}
/*我的发展收益 分销商 end*/
/*新增推广二维码的样式 20170503*/
.codebox .user_com{background-color: #eee;}
.Wallet{ background:#FFF; overflow:hidden; margin-top: 10px; position:relative;border-radius: 4px;-moz-border-radius: 4px;-webkit-border-radius: 4px;}
.Wallet .codeimg{text-align: left;margin:10px 10px 20px;}
.Wallet .codeimg div{ vertical-align: middle;display: inline-block;*display: inline-block;*zoom: 1;}
.Wallet .codeimg .imgbox{padding: 0; margin-right: 10px; width: 70px;height: 70px; text-align: center; border: 1px solid #eee;vertical-align: middle;display: inline-block;*display: inline;*zoom: 1; border-radius: 50%;-moz-border-radius: 50%;-webkit-border-radius: 50%;}
.Wallet .codeimg .imgbox img{max-width: 100%;max-height: 100%;}
.Wallet .codeImg{width:150px;height:150px;padding: 10px;/*border: 1px solid #EEEEEE;*/border-radius:8px ;}
.Wallet .smallImg{width: 40px;height: 40px;position: absolute;left:calc(50% - 20px);top: 35%;border-radius:8px ;}
.Wallet .codeTxt{font-size: 14px;margin: 10px 0 50px;color: #999;}
.Wallet .btnRed{background-color: #C4182E;color: #fff;font-size: 16px;border: 0; width: 100%;height: 40px; text-align: center;border-radius:4px;-moz-border-radius: 4px;-webkit-border-radius:4px ;}
/*二维码弹窗*/
.mask_layer {
position: fixed;
top: 0;
left: 0;
z-index: 999;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.8);
}
.mask_layer .item
{
margin-top:100px;
font-size:14px;
color:#fff;
}
.mask_layer .item p
{
padding:10px 20px;
color: #fff;
}
.mask_layer .item a
{
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
margin:0 10px;
padding:5px;
background-color:#399aff;
}
.mask_layer .item .dian
{
vertical-align:middle;
display:inline-block;
*display:inline;
*zoom:1;
width:30px;
height:30px;
text-align:center;
}
.mask_layer .item .dian img
{
width:20px;
height:20px;
margin:5px auto;
}
.mask_layer .item .zsjt
{
width:50px;
height:100px;
position:absolute;
right:10px;
top:20px;
}
.mask_layer .item .llq
{
width:30px;
height:30px;
margin-right:5px;
vertical-align:middle;
}
/*新增推广二维码的样式 20170503*/
.Wallet a{ padding-left:10px; height:45px; display:block; width:100%; overflow:hidden; padding-bottom:1px}
.Wallet a dl{width:100%; margin-left:35px; overflow:hidden;}
.Wallet a dl dt{float:left; font-size:14px;line-height:45px; color:#666;}
.Wallet a dl dd{float:right;background: url(../images/arrow_right.png) no-repeat right center;color:#aaaaaa; background-size: auto 12px; margin-right:60px; padding-right:20px}
.Wallet a dl dd{font-size:12px; line-height:45px; color:#aaaaaa; }
.b{border-bottom:1px solid #eeeeee}
.show_million{display: none;}
.endorse_hend{background: white; padding: 4px 0; font-size: 14px;}
.endorse_hend p{ text-align: center;}
.endorse_dyr{padding: 16px 16px;}
.endorse_dyr form{text-align: center;width: 100%;}
.endorse_dyr input[type=button]{-webkit-appearance: none;}
.endorse_dyr input{ vertical-align: middle;}
/*我的分销商搜索框 新增display 0170323*/
.endorse_dyr .endor_text{vertical-align: middle;display: inline-block;*display: inline;*zoom: 1; line-height: 24px;padding: 2px 10px;width: 70%;border: 1px solid #dedede;border-radius: 4px;}
.endorse_dyr .endor_but{vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;background-color: white;border: 1px solid #dedede;padding: 2px 10px; line-height: 24px;border-radius: 4px;width: 20%;}
/*我的分销商搜索框 end*/
.hend_endor,.sec_endor,.stay_endor{display: inline-block;vertical-align: middle;font-size: 12px;line-height: 1.2;color: #747477;}
.hend_endor{margin-right: 4px;}
.sec_endor{width: 70%;}
.tuij_cas{ color:white; text-align:center; font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; width:80%; margin:0 auto; line-height:26px}
.mt20{margin-top: 20px;}
.endorse_num{padding: 20px 12px;background: white; border-bottom: 1px solid #FAF0F0;position: relative;}
.endorse_num:last-child{border: 0;}
.bg_gray{background: #F8F8F8;}
.percent_hund{width: 72%;}
.sec_endor p{/*width: 106px*/ ;display: block;overflow: hidden; text-overflow: ellipsis;white-space: nowrap;}
.stay_endor a{margin-left:0;display: block;padding: 0px 4px; background: white;border: 2px solid orangered; line-height: 24px;height: 24px;border-radius: 6px; text-align: center;}
.stay_endor{vertical-align: bottom;position: absolute;right: 24px;bottom: 20px;}
.tx_cash span{display: block;float: left;width: 24%;text-align: right;font-size: 12px;}
.tx_cash input[type=text]{height: 24px;padding: 2px 10px;width: 60%;border: 1px solid #dedede; border-radius: 4px;float: left;margin-top: 5px;}
.tx_cash img{border: 0;}
.tx_cash:after{content: '';clear: both;display: block;}
.cash_num{padding: 16px 16px; font-size: 14px;text-align: center;}
.cash_num p{padding-bottom: 20px;}
#cash_submit{background: white;border: 1px solid #dedede;border-radius: 4px;text-align: center;display:initial;margin-left: 0;height: 24px;padding:4px 60px}
.cash_num table{margin-bottom: 20px;}
.bb1{border-bottom: 1px solid #dedede;}
.cash_num table tr{border-bottom: 1px solid #dedede;}
.cash_num table tr th,.cash_num table tr td{text-align: center;}
.Icon{ display:block; float:left; width:35px; height:35px; margin-top:5px; position:absolute}
.Icon1,.Icon2,.Icon3,.Icon4,.Icon5,.Icon6,.Icon7,.Icon8,.Icon9,.Icon11{background-image: url(../images/user.png);background-repeat: no-repeat;background-size: auto 1200%; }
.Icon10{background-image: url(../images/user1.png);background-repeat: no-repeat;background-size: auto 820%; }
.Icon1{ background-position:0px 3px}
.Icon2{ background-position:0px -34px}
.Icon3{ background-position:0px -71px}
.Icon4{ background-position:0px -108px}
.Icon5{ background-position:0px -146px}
.Icon6{ background-position:0px -183px}
.Icon7{ background-position:0px -221px}
.Icon8{ background-position:0px -255px}
.Icon9{background-position:0px -302px}
.Icon10{background-position:0px 3px}
.Icon11{background-position:0px -336px}
.Wallet ul{height:40px; margin:auto; /*padding-top:10px;*/ border-bottom:1px solid #eeeeee; padding:5px 0;}
.Wallet ul li{ float:left; width:25%; text-align:center}
.Wallet ul li.sell_cost{width:50%}
.j_million{ background-image:url(../images/w1_03.png); background-repeat:no-repeat; background-position: 0px 3px;}
.million_num{background-color: black;padding: 6px 4px;color: white;border-radius: 6px;}
.Wallet ul li span{ display:block; width:100%; font-size:12px; line-height:150%; color:#666}
.Wallet ul li strong{ display:block;width:100%;font-size:12px; line-height:150%; color:#C4182E; text-indent:3px; font-weight:normal}
.bain1{ border-right:1px solid #eeeeee; margin-left:-1px;}
/*我的发展收益 分销商标题 新增 20170322*/
.Wallet .commodity{font-size: 14px;color: #000000;}
.Wallet .commodity li{width: 50%;}
.Wallet .commodity img{width: 30px;height: 30px;margin-right:10px ;}
/*我的发展收益 分销商标题 end*/
/*分销导航 20170908*/
.Wallet .dis_nav{width:100%;text-align: left;font-size: 0;border: 0;height: auto;padding: 0;}
.Wallet .dis_nav li{font-size: 14px; width: 25%;text-align: center;padding: 10px 0;float: none;vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.Wallet .dis_nav li a{height: auto;margin: 0;color: #333;padding: 0;}
.Wallet .dis_nav li img {width:50px;}
/*分销导航 end*/
/*我的订单user_order_list.lbi*/
.order{ width:100%; overflow:hidden; background:#F5F5F5;}
.order_list{ width:100%; overflow:hidden; background:#FFF; border-bottom:0.06rem solid #eeeeee;}
/*订单列表 新增 20170320*/
.order_list:first-child{margin-top: 138px;}
/*订单列表 修改宽度 20170420*/
.order_list h2{/* width:95%;*/padding:0 10px; margin:auto; height:40px; border-bottom:1px solid #eeeeee;font-size:14px; line-height:40px; color:#666; font-weight:normal}
.order_list h2 img{ display:inline-block; width:25px; height:25px; margin-top:-5px}
.order_list h2 span{ margin-left:8px; display:inline-block; font-size:14px; line-height:40px; color:#000; font-weight:normal}
.order_list h2 strong{ display:inline-block; float:right; font-size:12px; line-height:40px; color:#F60; font-weight:normal}
/*订单列表 修改宽度,修改边距 20170420*/
.order_list dl{/* width:95%;*/margin:auto; overflow:hidden;border-bottom:1px solid #eeeeee; padding:10px;}
.order_list dl dt{ width:20%; float:left;}
.order_list dl dt img{ display:block; width:90%; float:left;}
/*修改高度 20170322*/
.order_list dl .name{ width:50%; float:left; overflow:hidden;overflow: hidden;-webkit-line-clamp: 2;-webkit-box-orient: vertical;display: -webkit-box;height: 35px;}
.order_list dl .name strong{ display:block; width:100%;line-height:120%; color:#000; font-weight:normal;display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
word-break: break-all;
overflow: hidden;}
.order_list dl .name span{display:block; width:100%; height:15px; line-height:15px; font-size:12px; color:#999; margin-top:5px; overflow:hidden;}
/*订单列表修改内边距 20170420*/
.order_list dl .pice{ width:30%;/*padding-right: 10px;*/ float:left; overflow:hidden; font-weight:normal; font-size:14px; line-height:1; color:#333; text-align:right}
.order_list dl .pice em{ display:block; width:100%; font-size:12px; color:#666; line-height:20px; font-style:normal;}
/*订单列表 修改宽度 20170420*/
.order_list .pic{width: 100%; margin:auto; overflow:hidden; text-align:right; color:#000}
/*价格颜色 修改 20170317*/
.order_list .pic strong{padding-right: 5px; display:inline-block;font-size:17px; line-height:50px; /*color:#C4182E;*/ color:#C4182E;font-weight:normal;}
.anniu{ height:50px; text-align:right;}
/*按钮 修改 20170317*/
.anniu a{ display:inline-block; margin-top:10px;width:70px; height:30px; font-size:14px; line-height:30px; /*background:#FF3300;*/background:#C4182E; color:#fff; text-align:center;border-radius:5px;}
/*按钮 外边距 修改 20170317*/
.anniu span{display:inline-block; margin-top:10px; width:70px; height:29px;font-size:14px; line-height:29px; border:1px solid #666; text-align:center;border-radius:5px; color:#666}
.anniu strong{ display:inline-block;margin-top:10px; height:30px; font-size:14px; line-height:30px; color:#F60; font-weight:normal; text-align:left; margin-right:10px;}
.anniu strong img{ margin-top:-10px;}
/*订单订单详情user_order_detail.lbi*/
.lan{ background:#5D6B85}
.detail_top{ width:100%; overflow:hidden; background:#FFF; border-bottom:1px solid #CCC}
/*增加相对定位 20170322*/
.detail_top dl{ width:95%;margin:auto; overflow:hidden; padding-top:10px; padding-bottom:10px;position: relative;font-size: 14px;}
.detail_top dl dt{ float:left; overflow:hidden; width:10%;}
/*订单详情增加门店信息*/
.detail_top .shop{width: 100%;border-top:1px solid #EEEEEE;margin-top: 10px;}
.detail_top .shop li{ width: 100%;border-bottom: 1px solid #EEEEEE;font-size: 14px;color: #333333;}
.detail_top .shop li span{color: #999999;margin-right: 10px;}
.detail_top .shop li .shopTxt{vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;width: 75%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.dingdan_1{ width:30px; height:30px; display:block; background-position:0 -218px;}
.dingdan_2{ width:30px; height:30px; display:block; background-position:0 -292px;}
.dingdan_3{ width:30px; height:30px; display:block; background-position:0 -254px;}
.dingdan_4{ width:30px; height:70px; display:block;}
.detail_dowm{ width:100%; background:#f4f4f4; height:50px; position:fixed; max-width: 720px;bottom:0px; border-top:1px solid #e6e5e5; padding-bottom:5px;}
.anniu1{ width:95%; margin:auto; height:50px; text-align:right}
/*按钮 外边距 修改 20170317*/
.anniu1 a{ display:inline-block; /*margin-top:5px;*/ margin: 5px; width:80px; height:40px; font-size:14px; line-height:40px; border:1px solid #666; color:#666; text-align:center;border-radius:5px;}
.anniu1 span{color: #c4182e; display:inline-block; margin-top:5px; width:80px; height:40px;font-size:14px; line-height:40px; border:1px solid #C4182E; text-align:center;border-radius:5px;}
.anniu1 strong{ display:inline-block;margin-top:5px; height:40px; font-size:14px; line-height:40px; color:#F60; font-weight:normal; text-align:left; margin-right:10px;}
.anniu1 strong img{ margin-top:-10px;}
/*订单详情门店信息修改宽度 20170503*/
.detail_top dl dd{ width:90%; float:left; font-size:14px; line-height:150%; color:#23232b; overflow:hidden;}
.lan dl dd{ color:#FFF;}
.dingdanhao a{ color:#FFF;font-size:15px; line-height:150%; display:inline-block; text-indent:10px;}
.detail_top dl dd h3{ width:100%; text-align:left; font-size:16px; color:#333; position:relative; font-weight:normal}
/*修改订单详情收货人的手机号*/
.detail_top dl dd h3 em{ display:block;float:right; right:5px; position:absolute; top:0px;margin-left: 10px; font-size:16px; color:#666; font-weight:normal}
.detail_top dl dd h3 em a{font-size:14px; color:#666; font-weight:normal}
.detail_top dl dd p{ font-size:13px; line-height:150%; color:#52BF7F;}
.detail_top dl dd strong{ font-size:12px; color:#666; line-height:150%; font-weight:normal}
.wuliu img{ position:absolute; bottom:0px;}
.ord_list1{width:100%; margin:auto; overflow:hidden; background:#FFF; margin-top:10px; border-bottom:1px solid #CCC;border-top:1px solid #CCC}
/*颜色 修改 20170317*/
.ord_list1 h2{ width:95%; margin:auto; height:40px;font-size:14px; line-height:40px; /*color:#666;*/ color: #747474; font-weight:normal}
.ord_list1 h2 img{ display:inline-block; width:25px; height:25px; margin-top:-5px}
.ord_dingdan{ width:95%; margin:auto; overflow:hidden; border-top:1px solid #eeeeee; padding-top:8px; padding-bottom:8px;}
.ord_dingdan .ord_img{ width:30%; float:left}
.ord_dingdan .ord_img img{width:100% ;}
.ord_dingdan .ord_name{ width:70%; float:left}
.ord_dingdan .ord_name p{ width:95%; margin:auto;}
.ord_dingdan .ord_name p a{ display:block; font-size:14px; line-height:18px; color:#333}
/*颜色 修改 20170317*/
.ord_dingdan .ord_name span{ display:block; width:95%; margin:auto; font-size:13px; line-height:150%; color:#666; }
.ord_dingdan .ord_name strong{ display:block; width:95%; margin:auto; font-size:13px; line-height:150%; /*color:#C4182E;*/ color: #C4182E;}
.xiaoji{ width:90%; margin:auto; text-align:right; height:30px; font-size:14px; color:#666; line-height:30px;}
.xiaoji strong{ /*color:#C4182E;*/ color:#C4182E;font-size:18px;}
/*颜色 修改 end*/
.zhifu{display:block; height:25px;right:5px;text-align:center; font-size:14px; line-height:25px; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;background-color:#5D6B85; margin-top:10px; width:60%; margin:auto}
.zhif{ display:block; line-height:25px;}
.jiage{ width:100%;margin-right:8px; overflow:hidden;text-align:right; font-size:14px; line-height:150%; color:#333; /*padding-top:10px; padding-bottom:10px;*/}
.jiage p{ width:80%; float:right; margin-right:10px;}
/*价格颜色 修改 20170317 */
.price{ /*color:#C4182E*/ color: #C4182E;}
.price1{ /*color:#C4182E;*/color: #C4182E; font-size:20px;}
/*价格颜色 end*/
.qita{ width:100%; overflow:hidden; margin-top:10px; background:#FFF; border-bottom:1px solid #CCC; border-top:1px solid #CCC;}
.subNav{ width:100%; height:40px; font-size:16px; line-height:40px; color:#333; text-indent:10px;}
.navContent{ width:90%; margin:auto; overflow:hidden;}
.navContent ul{ width:98%; margin:auto; overflow:hidden; padding-bottom:10px; padding-top:8px;}
.navContent ul li{ font-size:12px; line-height:150%; color:#666}
.list_footer{ width:100%; height:50px; background:#FFF; position:fixed; bottom:0px; max-width: 720px;}
/*地址管理 按钮背景颜色 修改 20170321 */
.list_footer a{ display:block; margin:auto; width:95%; height:40px; margin-top:5px; font-size:16px; line-height:40px; color:#fff; text-align:center; border-radius:20px; /*background:#FF3300;*/ background-color:#C4182E; border-radius:3px; }
/*我的收藏user_collection.lbi*/
.shouchang{ width:100%; overflow:hidden; background:#FFF;}
.shouchang ul{ width:100%; margin:auto; overflow:hidden}
/*我的收藏修改边距和宽度 20170422*/
.shouchang ul li{ /*width:100%;*/ overflow:hidden; margin-bottom:5px; position:relative; border-bottom:1px solid #eeeeee; padding:10px; /*padding-top:15px*/}
.shouchang ul li .imgurl{ width:25%; float:left;}
.shouchang ul li .imgurl img{ width:100% !important; height:auto !important}
.shouchang ul li .order_info{ width:73%; float:right; overflow:hidden;}
.shouchang ul li .order_info dl dt{ width:100%; font-size:14px; line-height:150%; color:#333;}
.shouchang ul li .order_info dl dd{ width:100%; line-height:150%; color:#333}
/*我的收藏 修改价格样式 20170420*/
.shouchang ul li .order_info dl dd del{font-size: 12px;margin-left: 10px;}
.shouchang ul li .order_info dl dd strong{ color:#C4182E;font-size:14px;}
.shouchang ul li .dingdancaozuo{ position:absolute; right:0px; bottom:15px;}
.shouchang ul li .dingdancaozuo a{ display:block; float:left; padding-left:10px; padding-right:10px;height:25px; font-size:13px; line-height:25px; text-align:center; color:#666}
.s_flow{ border-radius:25px; border:1px solid #C4182E; margin-right:10px; background:#C4182E}
.s_out{ border-radius:25px; border:1px solid #999; margin-right:10px; background:#999}
.font12{ font-size:18px; line-height:50px; text-align:center; color:#333}
/*收藏店铺*/
.sc_nav{ width:100%; overflow:hidden; height:50px; padding-top:10px; padding-bottom:2px}
.sc_nav ul{ width:90%; margin:auto; overflow:hidden; border:1px solid #666;border-radius:3px; }
.sc_nav ul li{ width:50%; float:left; overflow:hidden; line-height:40px; height:40px;text-align:center}
.sc_nav ul li a{ font-size:16px; color:#666; display:block; width:100%; height:40px}
.sc_nav ul li a.on { color:#fff;background:#666}
.main{ width:100%; overflow:hidden; border-top:1px solid #ccc}
.dianpu{ width:100%; overflow:hidden; background:#FFF;}
.dianpu ul{ width:95%; margin:auto; overflow:hidden}
.dianpu ul li{ width:100%; overflow:hidden; margin-bottom:5px; position:relative; border-bottom:1px solid #eeeeee; padding-bottom:10px; padding-top:10px}
.dianpu ul li .imgurl{ width:20%; float:left;}
.dianpu ul li .imgurl img{ width:100% !important; height:auto !important}
.dianpu ul li .order_info{ width:78%; float:right; overflow:hidden;}
.dianpu ul li .order_info dl dt{ width:100%; font-size:14px; line-height:150%; color:#333;}
.dianpu ul li .order_info dl dt span{ display:inline-block; margin-right:5px; height:20px; line-height:20px; padding-left:5px; padding-right:5px; font-size:12px; background:#666; color:#fff;border-radius:3px; }
.dianpu ul li .order_info dl dd{ width:100%; overflow:hidden; margin-top:10px; height:25px;}
.dianpu ul li .order_info dl dd img{ display:block; height:25px; width:25px; float:left}
.dianpu ul li .order_info dl dd span{ display:block; font-size:14px; color:#666; line-height:25px;float:left}
.outdianpu{ display:block; height:25px; padding-left:10px; padding-right:10px; background:#999; color:#FFF; position:absolute; right:10px; line-height:25px; bottom:10px;border-radius:25px; font-size:14px}
/*我的评价user_comments.lbi*/
.Evaluation{ width:100%; height:40px; border-bottom:1px solid #eeeeee; background:#FFF}
.Evaluation ul{ width:90%; margin:auto; height:39px;}
.Evaluation ul li{ width:33.3%; float:left; height:39px; line-height:39px; text-align:center}
.Evaluation ul li a{ display:block; width:90%; margin:auto; height:38px; font-size:16px; color:#666; }
.Evaluation ul li a.on { color:#C4182E; border-bottom:2px solid #C4182E }
/*菜单栏 修改 20170320*/
/*.Evaluation2{ width:90%; height:40px; border-bottom:1px solid #eeeeee; background:#FFF}*/
.Evaluation2{ width:100%;margin: auto; background-color:#FFF;position: fixed;left: 0;top: 0px;z-index: 999;}
.Evaluation2 ul{max-width:720px;width: 100%; margin:auto;border-bottom:1px solid #eeeeee;height:40px; /*height:39px;*/}
.Evaluation2 ul li{ width:20%; float:left; /*height:39px; line-height:39px;*/height: 45px; line-height: 45px; text-align:center}
/*菜单栏 end*/
.Evaluation2 ul li a{ display:block; width:90%; margin:auto; height:38px; font-size:14px; color:#666; }
.Evaluation2 ul li a.on { color:#C4182E; border-bottom:2px solid #C4182E }
.Emain{ width:100%; overflow:hidden;}
.pingjia{ width:100%; overflow:hidden; background:#FFF; padding-top:10px; padding-bottom:10px; margin-bottom:10px;}
.pingjia h2{ width:95%; height:40px; margin:auto; font-size:14px; line-height:40px; color:#999; font-weight:normal}
.pingjia dl{ width:95%; overflow:hidden; margin:auto;}
.pingjia dl dt{ width:25%; float:left; overflow:hidden}
.pingjia dl dt img{ display:block; width:95%; float:left}
.pingjia dl dd{ width:75%; float:left; overflow:hidden}
.pingjia dl dd span{ display:block; width:100%; overflow:hidden; font-size:14px; line-height:150%; color:#000;text-overflow: ellipsis;white-space: nowrap;}
.pingjia dl dd strong{ display:block; width:100%; overflow:hidden; font-size:16px; line-height:150%; color:#C4182E; font-weight:normal;}
/*评价按钮修改*/
.pingjia .remark{display: inline-block;float:right; width: 75px; height:30px;border: 1px solid #ccc; font-size: 14px;line-height: 30px;color: #999;text-align: center;border-radius: 5px;}
.pj_zhuangtai{ width:95%; margin:auto; overflow:hidden; border-top:1px solid #eeeeee; text-align:right; margin-top:10px;font-size:14px; line-height:40px;color:#999; padding-top:10px;}
.pj_zhuangtai a{ display:inline-block; width:75px; height:40px; border:1px solid #ccc; font-size:16px; line-height:40px; color:#999; text-align:center;border-radius:5px; }
.pj_main{ width:95%; margin:auto; overflow:hidden; border-top:1px solid #eeeeee; text-align:right; margin-top:10px; padding-top:10px; padding-bottom:10px;}
.pj_main ul{ width:100%; overflow:hidden;}
.pj_main ul li{ width:100%; overflow:hidden}
.pj_main ul li em{ display:block; float:left;font-size:14px; line-height:30px; color:#000;}
.pj_main ul li img{ display:block; float:left; height:20px; margin-top:5px;}
.pj_w{ width:100%; overflow:hidden; text-align:left; font-size:14px; line-height:150%; color:#999}
.sd_img{ width:100%; overflow:hidden}
.sd_img dl{ width:100%; overflow:hidden}
.sd_img dl dd{ float:left;width:50px; height:50px; margin:5px;}
.sd_img dl dd img{ width:50px; height:50px;}
/*----评价comment_order.dwt----*/
/*.pj{ width:100%; margin:auto; padding-top:10px; padding-bottom:10px; background:#FFF}
.pj dl{ width:95%; overflow:hidden; margin:auto}
.pj dl dt{ width:20%; float:left; overflow:hidden;}
.pj dl dt img{ display:block; width:100%; }
.pj dl dd{ width:80%; float:left; overflow:hidden;}*/
.pj dl dd textarea{width: 100%; border: 0;resize: none; /*margin-top: 40px;*/color: #999999;}
/*输入框的高度*/
.htpic{height: 280px;}
.hopic{height: 140px;}
.pj dl dd p{ width:95%; margin-left:5%; font-size:14px; color:#000; line-height:150%;}
.pj dl dd span{ display:block; width:95%; margin-left:5%; font-size:14px; color:#F60; line-height:150%;}
.dis_vm{ width:0; height:100%; display: inline-block;*display: inline;*zoom: 1; vertical-align: middle;}
.pj{ width:100%; margin:auto; padding-top:10px; padding-bottom:10px; background:#FFF;border-bottom: 10px solid #ebebeb;}
.pj:last-child{border: 0;}
.pj dl{ width:100%; overflow:hidden; margin:auto;}
.pj dl dt{ width:140px;margin:0 20px; float:left; overflow:hidden;}
.pj dl dt .imgbox{ display:block; width:138px;height: 138px; border: 1px solid #EEEEEE;margin-top: 20px; text-align: center;font-size: 0;}
.pj dl dt .imgbox img{width: 100%;height: 100%; vertical-align: middle;}
.pj dl dd{ width:60%; float:left; overflow:hidden;}
/*评价 end*/
.clear{clear: both;}
.haoping{ width:95%; overflow:hidden; text-align:center; margin:auto; margin-top:15px;}
.haoping a{ display:inline-block;padding-left:10px; padding-right:15px; overflow:hidden; border-radius:20px; font-size:16px; line-height:25px; margin-left:10px; margin-right:10px;}
.haoping a em{ display:inline-block; width:25px; height:25px; margin-right:5px;}
.haoping a em img{ width:25px; height:25px;}
.clo1{ color:#C4182E}
.clo1 em{ background:#C4182E;border-radius: 50%; }
.clo2{ color:#F90}
.clo2 em{ background:#F90;border-radius: 50%; }
.clo3{ color:#999}
.clo3 em{ background:#999;border-radius: 50%; }
.p_main{ width:95%;margin:auto; margin-top:15px; overflow:hidden; }
.pj .inputBorder{ border: 1px solid #DFDFDF; line-height:150%; padding-top:5px; padding-bottom:5px; padding-left: 5px; -webkit-appearance: none; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; border-radius: 0; -webkit-rtl-ordering: logical; -webkit-user-select: text; cursor: auto; background:#f4f3f3; font-size:14px; width:95%; margin:auto;}
.m_pingjia{display:block; margin:auto; background:#C4182E; font-size:16px; line-height:40px;
border:0px; color:#FFF; width:100%; margin:auto;margin-top:10px; margin-bottom:10px;border-radius:5px; }
/*评分 修改 20170318*/
/*.pingfen{ width:100%; padding-top:10px; padding-bottom:10px; overflow:hidden; margin:auto; margin-top:10px; background:#FFF; border-top:1px solid #eeeeee}*/
/*.pingfen h2{ width:95%; margin:auto; height:40px; font-size:16px; color:#000; line-height:40px; font-weight:normal;}
.pingfen ul{ width:95%; margin:auto; overflow:hidden}
.pingfen ul li{ float:left; font-size:14px; line-height:30px; color:#666; }
.pingfen ul li img{ height:20px;}*/
.pingfen{padding:10px 20px; overflow:hidden; margin:auto; margin-top:10px; background:#FFF; border-top:1px solid #eeeeee}
.pingfen p{color: #000000;margin:10px 5px;}
.textBlack{color: #010101;}
.startBox{color: #999999;margin:10px 5px;}
.startBox span{float: left;margin: 5px;}
.startBox ul{float: right;}
.startBox ul li{background: url(../images/star.png) no-repeat;background-size: cover; width: 30px;height: 28px;margin: 5px; vertical-align: middle;display: inline-flex;*display: inherit;*z-index: 1;}
.startBox ul li.on{background-image: url(../images/starRed.png);}
/*评分 修改 end*/
.p_main ul{ width:100%; overflow:hidden;}
.p_main ul li{ width:100%; height:50px; border:1px solid #000}
.p_main ul li input{ display:block; width:200px; height:50px; border:0; background:#CCC}
/*个人设置user_welcome.lbi*/
.Personal{ width:100%; overflow:hidden; background:#F5F5F5}
.Personal .innercontent1{ width:100%; margin:auto; overflow:hidden; background:#FFF; padding-bottom:10px;}
.Personal .innercontent1 .name{ width:95%; margin:auto; height:50px;font-size:14px; line-height:50px; color:#666; border-bottom:1px solid #eeeeee}
.Personal .innercontent1 .name span{width:25%; display:inline-block;*display: inline;*zoom: 1;}
/*个人设置 修改 20170327*/
.name input{ border:0px solid #DFDFDF; height: 18px; line-height: 18px; /*padding-top:4px;width: 36%;*/padding: 0; width: 51%; padding-bottom:4px; -webkit-appearance: none; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; border-radius: 0; -webkit-rtl-ordering: logical; -webkit-user-select: text; cursor: auto; background-color: white; }
.name select { -webkit-appearance: none; border-radius: 0; border: 0px solid #e5e5e5; height:50px; line-height:50px; background-repeat: no-repeat; background-image: url('../images/down.png'); background-position: center right; background-size: 23px 7px; display: inline-block; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1;font-size:18px; color:#333; padding-right:30px;}
.field_pwd input{ border: 1px solid #DFDFDF; height:25px; padding-top:4px; padding-bottom:4px; -webkit-appearance: none; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; border-radius: 0; -webkit-rtl-ordering: logical; -webkit-user-select: text; cursor: auto; background-color: white; display:block; margin:auto; margin-top:10px; font-size:14px; line-height:25px; width:80%; text-indent:10px; }
/*个人信息生日农历 新增 20170317*/
.calendar{float: right; font-size: 16px;color: #999999;}
.calendar:after{clear: both;}
.trueCalendar{vertical-align:text-bottom;display: inline-block;*display: inline;*zoom: 1;width: 30px;height: 30px; background: url(../images/category/select2.png) 15px 14px no-repeat; background-size: 15px 87px;}
.calendarOn{ background-position: 15px -30px; }
/*个人信息生日农历 end*/
/*会员信息20170414二维码以及地址修改开始*/
.ewmbox{position: relative;top: 50px;width: 85%; max-width: 300px;margin: auto;background-color: #fff;z-index: 999;border-radius: 8px;text-align: center;padding: 20px 0;}
.ewmbox .vip_info{font-size: 0;text-align: left;}
.ewmbox .vip_info img,.ewmbox .vip_info div{vertical-align:top; display: inline-block;*display: inline;*zoom: 1;font-size: 16px;margin-top: 10px;width: 48%}
.ewmbox .vip_info .address{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;text-overflow:ellipsis; word-break: break-all;overflow: hidden; width: 100%;height: 50px;}
.ewmbox .codeImg{position: relative;width: 80%; margin:20px auto 0;}
.ewmbox .codeImg img{width: 100%;}
.ewmbox .codeImg .small{position: absolute;left: 40%;top: 40%;width: 20%;height: 20%;margin: 2px;}
.ewmbox .txt{font-size: 12px;color: #999999;text-align: center;margin: 20px 0 0 0;}
.ewmbox .vip_info .pic_n{width: 20px;height:20px;margin-top: 5px;}
/*会员信息20170414二维码以及地址修改结束*/
.Personal .innercontent1 .name1{width:95%; margin:auto; height:50px;font-size:14px; line-height:50px; color:#666; border-bottom:1px solid #eeeeee}
.Personal .innercontent1 .name1 span{width:25%; display:block; float:left}
.name1 ul { width:70%; float:left; height:50px;}
.name1 ul li { float: left; width:33.3%}
.name1 ul li input{ display:none}
.name1 ul li label{ padding-left: 22px; display: block; height:50px; line-height:50px; background: url(../images/category/select2.png) 0 17px no-repeat; background-size: 15px 87px; color: #989da2; font-size:14px;}
.name1 ul li.on label { background-position: 0 -27px; }
/*新增 分割线 20170316*/
.hengStyle{background-color: #f5f5f5;border-bottom: 1px solid #cccccc;height: 10px;}
/*修改按钮的背景颜色 20170317*/
.btn_big1{ display:block; margin:auto; /*background:#FF3300;*/ background: #C4182E; font-size:14px; line-height:40px;
border:0px; color:#FFF; width:95%; margin:auto;margin-top:10px; margin-bottom:10px;border-radius:3px; font-family:"微软雅黑"}
/*修改按钮的背景颜色 end*/
.title{ font-size:14px; color:#333; line-height:40px; margin-left:10px;}
.field_pwd select{ -webkit-appearance: none; border-radius: 0; border: 1px solid #e5e5e5; height: 34px; line-height: 34px; padding: 0 23px 0 10px; color: #333; background-repeat: no-repeat; background-image: url('../images/down.png'); background-position: center right; background-size: 23px 7px; display: inline-block; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; display:block;margin:auto; width:80%;}
.Personal .innercontent11{ width:100%; margin:auto; overflow:hidden; background:#FFF; padding-bottom:10px; margin-top:10px; border-bottom:1px solid #ccc; border-top:1px solid #ccc}
/*地址管理user_address_listlbi*/
/*新增无地址时的样式*/
.map{text-align: center;margin-top: 40px;}
.map p{font-size: 16px;color: #999999;padding-top: 20px;}
.map img{width: 30%;}
.address_add{ width:96%; overflow:hidden; background:#FFF; border-bottom:10px solid #f8f8f8; position:relative; color:#333; padding: 5px 0;}
.address_add h2{ width:25px; height:25px; position:absolute; left:5px; top:50%; margin-top:-12px;}
.address_add h2 img{ display:block; width:25px; height:25px;}
/*地址列表 修改20170617*/
.address_add dl{ /*width:77%; float:left;*/width: 100%; overflow:hidden; padding-left:10px;border-bottom: 1px solid #ccc; }
.address_add dl dt{ width:100%; height:30px;}
.address_add dl dt span,.address_add dl dt em{display:block; font-size:14px; line-height:30px;}
.address_add dl dt span{ float:left; font-weight:bold; width:88px; text-overflow:ellipsis; overflow:hidden; white-space:nowrap}
.address_add dl dt em{ float:right; font-style:normal; margin-right:20px}
.address_add dl dd{line-height: 30px;}
.address_add dl p{padding-left: 10px;}
.Default{ background:#5e6b85; color:#FFF}
.Default a{ background:#5e6b85; color:#FFF}
.addressmone{ width:100%; overflow:hidden; background:#fff;}
.addressmone ul{ width:95%; overflow:hidden; margin:auto}
.addressmone ul li{ width:100%; overflow:hidden; border-bottom:1px solid #CCC;}
.addressmone ul li:last-child{border: 0;}
/*新增地区的操作 默认地址图标 20170608*/
.operation{margin:0 10px;float: left;}
.operationBtn{float: right;font-size: 14px;color: #999;line-height: 45px;cursor: pointer;}
.operationBtn img{vertical-align: text-bottom;}
.operationBtn i{margin:5px;color: #999;}
.addressmone .add_def,.operation .add_def{width: 20px;height: 20px;background-color:#eee;border-radius: 50%;-moz-border-radius:50%;-webkit-border-radius: 50%; vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.addressmone .add_def_on,.operation .add_def_on{background: url(../images/right.png) no-repeat;background-size: cover;}
.addressmone .def,.operation .def{font-size: 12px;color: #999;line-height: 45px;}
.addressmone .red,.operation .red{font-size: 12px;color: #C4182E;line-height: 45px;}
/*新增地区右边的图标 删除20170608*/
/*.addressmone ul li.leftImg{background: url(../images/flow/shop_arrow.png) no-repeat right center;background-size: 11px 20px;}*/
.addressmone ul li span{ display:block; float:left; width:20%; font-size:14px; line-height:45px; color:#000;}
.addressmone ul li input{ display:block; float:left; width:75%;padding-left: 10px; background:none; border:0px; font-size:14px; color:#333; line-height:45px;}
.addressmone ul li select{text-align: center; padding-left: 10px;appearance:none;-moz-appearance:none;-webkit-appearance:none; display:block; float:left;background:none; height:45px; border:0px; font-size:14px; color:#333; line-height:45px; -webkit-appearance: none;width: 20%; overflow: hidden;text-overflow:ellipsis;white-space: nowrap; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; border-radius: 0; -webkit-rtl-ordering: logical; -webkit-user-select: text;}
/*地址管理 地区弹窗 20170509*/
.addressList{height: 200px;overflow: auto;margin: 20px;margin-right: 0;}
.addressList li{cursor: pointer;padding: 5px 0;}
.layermchild .title{position: relative;text-align: center;margin: 0;border-bottom: 1px solid #EEEEEE;}
.layermbox .close{position: absolute;right: 0;top: 0;width: 40px;height: 40px;}
.layermbox .addtit{border-bottom: 1px solid #EEEEEE;padding: 10px 0;}
.layermbox .addtit span{margin-left: 20px;}
.layermbox .addtit span.addtitOn{color: #C4182E;border-bottom: 1px solid #C4182E;padding-bottom: 12px;}
#amend{ position:absolute; width:20px; height:20px; top:41px; right:8px}
.address_save{ display:block; margin:auto; padding-left:15px; padding-right:15px; background:#F60; font-size:16px; height:30px; line-height:30px; text-align:center; color:#FFF; border:0px; margin-top:10px; margin-bottom:10px;}
.submit_btn{ width:80%; height:30px; margin-top:10px; margin-bottom:10px;}
.address_save1{ display:block; float:left; padding-left:15px; padding-right:15px; background:#F60; font-size:16px; height:30px; line-height:30px; text-align:center; color:#FFF; border:0px; margin-top:10px; margin-bottom:10px;}
.address_save2{ display:block; float:right; padding-left:15px; padding-right:15px; background:#666; font-size:16px; height:30px; line-height:30px; text-align:center; color:#FFF; border:0px; margin-top:10px; margin-bottom:10px;}
.dotm_btn{ width:100%; height:50px; background:#fff;position:fixed; margin-top:10px; text-align:center;min-width: 320px; max-width: 720px; }
.dotm_btn2{ display:block; float:left; width:30%; height:20px;line-height:20px;margin-left:3%; background-position:0px 0px; padding-top:25px;font-size:12px; background:url(../images/all.png) no-repeat;background-size: auto 300px; text-align:left; text-indent:3px }
/*地址管理 按钮背景颜色修改 20170323*/
.dotm_btn1{ display:block; float:left; width:94%; height:40px; /*background:#FF3300;*/ background-color: #C4182E; font-size:14px; line-height:40px; color:#FFF; border:0; margin-top:5px;border-radius:3px; margin-left:3%; font-family:"微软雅黑"}
.dotm_btn3{ display:block; float:left; width:30%; height:40px; /*background:#FF3300;*/ background-color: #C4182E; line-height:40px; color:#FFF; border:0;margin-top:5px;border-radius:3px;margin-left:3% }
/*地址管理 按钮背景颜色修改 end*/
.beett{ display:inline; float:inherit; width:60%; margin-left:inherit; padding:0 20px; }
.dotm_btn1_1{ display:block; width:90%; height:40px; background:#FF3300; font-size:14px; line-height:40px; color:#FFF; border:0; margin:auto; margin-top:5px;border-radius:3px; font-family:"微软雅黑"}
/*我的推荐user_affiliate.lbi*/
.tuijian{ width:90%; margin:auto; overflow:hidden; font-size:14px; line-height:150%; color:#333}
.tui_main{ width:100%; overflow:hidden; background:#FFF}
.data_table{font-size:14px; color:#333; margin:auto}
/*我的留言user_message.lbi*/
.liuyan{ width:100%; overflow:hidden; margin-top:10px;}
.liuyan_list{ width:100%; overflow:hidden; background:#FFF;}
.liuyan_list dl{ width:95%; overflow:hidden; margin:auto; border-bottom:1px solid #CCC; margin-bottom:10px;}
.liuyan_list dl dt{ width:100%; height:35px; font-size:16px; color:#333; line-height:35px; margin-bottom:5px;}
/*背景颜色修改 20170324*/
.liuyan_list dl dt .title{ display:inline-block; /*background:#fdae73;*/background-color: #C4182E; font-size:14px; color:#FFF; height:25px; padding-left:5px; padding-right:5px; line-height:25px; margin-right:8px; border-radius:5px; margin-left:0px; }
.liuyan_list dl dd{ width:100%; font-size:14px; color:#333; line-height:150%}
.liuyandom{ width:100%; overflow:hidden; background:#FFF; border-top:1px solid #CCC; padding-top:20px; margin-top:20px;}
.liuyandom h3{ width:100%; height:40px; font-size:16px; color:#333; text-indent:10px; line-height:40px; font-weight:normal}
.form_search{ font-size:14px; line-height:180%; color:#333; width:95%; margin:auto; overflow:hidden}
.form_search span{ font-size:16px; line-height:25px; color:#333}
.field_else{ width:95%; margin:auto; margin-top:10px;}
.field_else span{ font-size:16px; line-height:25px; color:#333}
.field_else input{border: 1px solid #DFDFDF; height: 18px; line-height: 18px; padding-top:5px; padding-bottom:6px; width: 195px; padding-left: 5px; -webkit-appearance: none; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; border-radius: 0; -webkit-rtl-ordering: logical; -webkit-user-select: text; cursor: auto; background-color: white; font-size:14px;}
.field_else textarea{ border:1px solid #DFDFDF; width:100%;text-indent:10px; font-size:14px; line-height:30px; -webkit-appearance: none; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; border-radius: 0; -webkit-rtl-ordering: logical; -webkit-user-select: text; cursor: auto; background-color: white;}
.c_btn_oran{ display:block; width:90%; margin:auto; border:0px; font-size:16px; color:#FFF; background:#FF3300; height:40px; line-height:40px; margin:auto}
.liuyan_list .liuyan_time{ display:block; margin:auto;width:90%; height:30px; text-align:right; line-height:30px; color:#999; font-size:12px;}
/*input按钮样式*/
.anniu{ width:100%; overflow:hidden; margin:auto}
.anniu ul { width:100%;height:50px;}
.anniu ul li { float: left; padding-right:10px;}
.anniu ul li input{ display:none}
.anniu ul li label { padding-left: 22px; display: block; height:50px; line-height:50px; background: url(../images/category/select2.png) 0 17px no-repeat; background-size: 15px 87px; color: #333; font-size:14px;}
.anniu ul li.on label { background-position: 0 -27px; }
/*我的红包*/
.has_tab_box{ width:100%; overflow:hidden; background:#FFF}
.has_tab_box_bonus{ background:none;}
.has_tab_box .user_bonus_wrap{ width:92%; margin:10px auto; position:relative}
.has_tab_box .user_bonus_wrap h2{ width:20px; height:20px; background:#F00; font-size:14px; font-weight:normal; color:#FFF; text-align:center; position:absolute; right:0; top:0; line-height:20px;}
.has_tab_box .user_bonus_box{ overflow:hidden; padding:0 1.5%;background:#fff; border:1px solid #cfcfcf; border-bottom:0;}
.user_bonus_box .bonus_l{ float: left; width: 72%; box-shadow: 2px 2px 4px #f5f5f5; position: relative; padding-bottom: 10px; }
.user_bonus_box .bonus_l .bonus_l_price{ border-bottom: 1px solid #efefef; color: #eb410f; font-size:12px;}
.user_bonus_box .bonus_l .bonus_l_price span{ display: inline-block; padding-bottom: 6px; padding-top: 10px; font-size:28px;}
.user_bonus_box .bonus_l .bonus_l_price i{ font-size:18px;}
.user_bonus_box .bonus_l .bonus_l_con{ font-size: 12px; padding-top: 6px; line-height: 16px; }
.user_bonus_box .bonus_r{ font-size: 13px; float: left; width: 28%; height: 100%; text-align: center;}
.user_bonus_box .bonus_r span{display: block; padding: 0.2em 0; margin: 10px auto 5px; text-align: center; font-family: 'SimHei'; font-size: 16px;color: #eb410f; font-weight: bold;}
.user_bonus_box .bonus_r p{ font-size:13px; width:100%; line-height:20px; color:#666; }
.user_bonus_wrap .user_bonus_border{ width:100%;height:6px;background:url(../images/quan.png) repeat-x center bottom;border-top:2px solid #eb410f;}
.has_tab_box ul li{ width:100%; overflow:hidden; height:20px;}
.has_tab_box ul li span{ display:block; font-size:14px; line-height:20px; color:#666; float:left; width:40%; text-indent:10px}
.has_tab_box ul li em{ display:block; font-size:14px; line-height:25px; color:#666; float:left; font-style:normal}
.pice{ font-weight:bold; font-size:16px;}
.empty{ width:100%; height:20px; font-size:14px; line-height:20px; color:#666; text-align:center; padding-left:20px; padding-bottom:20px; padding-top:20px;}
.innercontent{ width:92%; overflow:hidden; margin-top:5px; padding:10px 4%; border-top:1px solid #CCC}
.innercontent h2{ font-size:16px; color:#000; font-weight:normal; line-height:35px;}
.innercontent .tbl_type,.tbl_type{ display:table; width: 100%;}
.innercontent .tbl_type .tbl_cell,.tbl_type .tbl_cell{display:table-cell; font-size:16px; color:#000;}
.innercontent .tbl_type .tbl_cell input{ width:100%;border:1px solid #dfdfdf;height:34px;line-height:34px;padding:0 2%;-webkit-appearance:none; -webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-rtl-ordering:logical;-webkit-user-select:text;background:#fff;box-sizing:border-box;}
/*资金管理 删除 20170320*/
/*.Funds{ background:#fff; margin:10px 10px 10px; padding:0px 10px 0px; border-left: 1px solid #ccc;}
.Funds ul{ margin:auto; padding-top:8px; padding-bottom:8px;}
.Funds ul .Funds_li{ position: relative; padding: 15px 10px; border-bottom: 1px dotted #ccc;}
.Funds ul .Funds_li .icon{ display:block;width:9px; height:9px; background:#666; position:absolute;top:42%;left:-15px;border-radius:5px;}
.Funds ul .Funds_li .icon.on{ background:#C4182E;}
.Funds ul li strong{ display:inline-block; width:30%;}
.Funds ul li span{ display:block; font-size:14px; color:#666; line-height:24px;}
.Funds ul li span em{ color:#C4182E;}
.funds_dot{ width:100%; padding-top:10px; padding-bottom:10px; font-size:16px; line-height:30px; color:#666; text-align:center}
#OrderList h3 .fr{ padding-right:10px; font-size:12px; float:right;}*/
/*资金明细 新增顶部距离 20170320*/
/*.user_login_title{ width:100%; overflow:hidden; background:#F5F5F5; height:100px; border-bottom:1px solid #ccc;margin-top: 45px;}
.user_login_title h2{ text-align:center; width:90%; margin:auto; overflow:hidden; font-weight:normal}
.user_login_title h2 em{ font-style:normal; font-size:14px; line-height:100px; color:#C4182E}
.user_login_title h2 span{ font-size:34px; color:#C4182E; line-height:100px;}*/
/*资金管理 删除 end*/
/*流动资金明细 新增 20170320*/
.funds p{font-size: 12px;color: #999999;}
.fundsQuery{font-size: 16px;color: #000000;border-bottom: 10px solid #EEEEEE;padding: 10px;}
.fundsQuery input,.fundsQuery select{font-size: 12px;color: #333;background-color:#EEEEEE;border: 1px solid #DADADA;width: 30%;text-align: center;/*padding: 10px 0;*/padding: 5px 0; border-radius:4px ;}
.fundsQuery select{/*padding: 10px;appearance:none; -moz-appearance:none; -webkit-appearance:none;*/ }
.sub-btn { display: block; width: 100%;margin: 20px 0; border-radius:5px; background-color: #C4182E; text-align: center; height:40px; line-height:40px; color: #FFF; font-size: 14px; border: none; font-family:'微软雅黑' }
.sub-btn:hover{color: #fff;}
.fundsTit{font-size: 0;/*text-align: center;*/padding: 10px;border-bottom: 1px solid #e8e8e8;}
.fundsTit span{font-size: 16px;color: #999999;width: 50%; vertical-align: middle; display: inline-block;*display: inline;}
.funds ul{font-size: 16px;color: #000000;}
.funds ul li{border-bottom: 1px solid #E8E8E8;padding:5px 10px;}
.left{width: 60%;overflow: hidden;text-overflow:ellipsis;white-space:nowrap;}
.right{width: 40%;text-align: right;}
.funds ul li .plus{color:#C4182E ;}
.funds ul li .reduce{color: #6fd137;}
.loadBtn{font-size:14px;text-align: center;color:#888;padding: 10px 0;}
/*资金流动明细 end*/
/*收货地址*/
.smart-result table tr.odd {
background: #f6f6f6;
}.smart-result table tr {
width: 100%;
font-weight:normal; font-size:16px;
color: #909090;
}.smart-result table tr.even {
background: #eeeeee;
}.smart-result table tr.odd {
background: #f6f6f6;
}
.smart-result table tr.last-line {
color: #FF6600;
}
.smart-result table td.col1 {
width: 29%; padding-left:1%
}
.smart-result table tr.first-line td.colstatus {
background: url("../images/step_start.png") center center no-repeat;
}
.smart-result table tr td.colstatus {
background: url("../images/step_point.png") center center no-repeat;
}
.smart-result table td.colstatus {
width: 10%;
}
.smart-result table td {
height: 60px;
background: none;
}
.smart-result table td.col2 {
padding: 10px;
width: 60%;
line-height: 24px;
}
.result-date{ font-size:14px;}
.smart-result-comname {
width: 30%;
padding-right: 5%;
background: #ff868f;
}
.smart-result-comname, .smart-result-kuaidinum {
display: inline-block;
height: 35px;
line-height: 35px;
text-align: center;
text-shadow: none;
font-size: 16px;
color: #FFFFFF;
}
.smart-result-comname, .smart-result-kuaidinum {
display: inline-block;
height: 35px;
line-height: 35px;
text-align: center;
text-shadow: none;
font-size: 16px;
color: #FFFFFF;
}
.smart-result-kuaidinum {
width: 60%;
padding-left: 5%;
background: #ff2233;
}
/*物流信息*/
.dingdan_5{background:url(../images/kd.png) no-repeat;background-size: auto 120px;}
.dingdan_5{ width:30px; height:30px; display:block; background-position:0 0px;}
.kd_dingdan{ width:100%; overflow:hidden; padding-top:10px; padding-bottom:10px; background:#FFF; margin-top:10px;}
.kd_dingdan h2{ width:95%; margin:auto; height:50px; font-size:16px; line-height:50px; color:#666; border-bottom:1px solid #eeeeee; font-weight:normal}
.kd_dingdan dl{width:95%; margin:auto; overflow:hidden;border-bottom:1px solid #eeeeee; padding-top:10px; padding-bottom:10px;}
.kd_dingdan dl dt{ width:20%; float:left;}
.kd_dingdan dl dt img{ display:block; width:90%; float:left}
.kd_dingdan dl .name{ width:60%; float:left; overflow:hidden}
.kd_dingdan dl .name strong{ display:block; width:100%; font-size:14px; line-height:120%; color:#333; font-weight:normal}
.kd_dingdan dl .name span{display:block; width:100%; height:15px; line-height:15px; font-size:12px; color:#999; margin-top:5px; overflow:hidden;}
.kd_dingdan dl .pice{ width:20%; float:left; overflow:hidden; font-size:14px; line-height:120%; color:#333; text-align:right}
.kd_dingdan dl .pice em{ display:block; width:100%; font-size:12px; color:#666; line-height:20px; font-style:normal;}
.kd_wl{width:100%; overflow:hidden; padding-top:10px;background:#FFF; margin-top:20px;}
.kd_wl h2{ width:95%; margin:auto; height:50px; font-size:16px; line-height:50px; color:#666; border-bottom:1px solid #eeeeee}
.kd_wl{width:100%;margin:auto; overflow:hidden; margin-top:10px;}
.kd_wl dl{ width:95%;margin:auto; overflow:hidden; position:relative}
.kd_wl dl dt{ position:absolute; top:0px; float:left;width:15px; height:15px; margin-left:2px; background:#25AE5F;border-radius: 50%; }
.kd_wl dl dd{ width:97%; float:right; overflow:hidden; border-left:1px solid #cccccc}
.kd_wl dl dd p{ width:95%;overflow:hidden; float:right; font-size:13px; line-height:150%; color:#52BF7F;}
.kd_wl dl dd strong{ display:block; padding-bottom:10px; width:95%;float:right; font-size:12px; color:#666; line-height:150%; font-weight:normal}
/*储值卡充值*/
.vc_title{ width:95%; height:50px; margin:auto; font-size:14px; line-height:50px; color:#666; text-align:left; border-bottom:1px solid #eeeeee; margin-bottom:10px; font-weight:normal}
.vc_title strong{ font-size:18px; color:#C4182E}
.Top{ width:95%; overflow:hidden; margin:auto}
.Top dl{ width:100%; overflow:hidden;}
.Top dl dt{ width:15%; height:40px; float:left; font-size:14px; line-height:40px; color:#666}
.Top dl dd{ width:85%; float:left; height:40px;}
.Top dl dd font{ line-height:40px;}
.Top dl dd input{border: 1px solid #DFDFDF; height:30px; line-height:30px; width:80%; padding-left: 5px; -webkit-appearance: none; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; border-radius: 0; -webkit-rtl-ordering: logical; -webkit-user-select: text; cursor: auto; background-color: white; font-size:14px; line-height:30px;}
.Top p{ width:90%; margin:auto; height:30px; font-size:14px; line-height:30px; color:#C4182E; text-align:right}
/*晒单*/
.shaidan{ width:95%; margin:auto;overflow:hidden; border-top:1px solid #eeeeee; margin-top:10px; padding-top:20px;}
.shaidan h2{ width:20%; margin:auto; height:40px; font-size:18px; color:#333; line-height:40px; float:left; font-weight:normal}
.shaidan .title{ display:block; width:75%; float:left; margin:auto;-webkit-appearance: none; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; border-radius: 0; -webkit-rtl-ordering: logical; -webkit-user-select: text; border:1px solid #ccc}
.p_main{ width:95%; margin:auto; overflow:hidden}
.p_main h2{ width:100%; margin:auto; height:40px; font-size:18px; color:#333; line-height:40px; float:left; margin-top:10px;font-weight:normal}
.p_main .inputBorder{display:block; width:95%; margin:auto;-webkit-appearance: none; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; border-radius: 0; -webkit-rtl-ordering: logical; -webkit-user-select: text; border:1px solid #ccc}
.file {
position: relative; display: inline-block;
background:url(../images/xiangji.png) no-repeat center center; border: 1px solid #ddd;
border-radius: 4px;padding: 0px 0px;overflow: hidden;color: #1E88C7;
text-decoration: none;text-indent: 0;line-height: 20px;background-size: auto 50px;}
.file input {
position: absolute;
font-size: 100px;
right: 0;
top: 0;
opacity: 0;
}
.file:hover {
background: #fff; border: 1px solid #F00; color: #004974;
text-decoration: none; background:url(../images/xiangji.png) no-repeat center center;background-size: auto 50px;
}
/*积分*/
/*.pbox{ width: 100%;min-width: 320px; max-width: 640px; margin: 0 auto; font-size:14px;}
.il_list>li p,.il_title>li p{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
.il_title{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;
-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;
-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;height:58px;
border-bottom:1px solid #c7c7cc}
.il_list>li,.il_nav{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox}
.il_title>li{-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;
height:40px;text-align:center;border-left:1px solid #c7c7cc;line-height:20px;}
/*修改颜色f22e00更改c4182e 20170327*
.cf22 {color: #c4182e;}
.il_title>li:first-child{border-left:none}
.il_nav{display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;
-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;
-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:15px 10px 15px 10px;
-webkit-border-radius:5px;border-radius:5px;border:1px solid #c4182e}
.il_nav>a{-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1;
text-align:center;display:block;border-left:1px solid #c4182e;height:28px;
line-height:28px;color:#c4182e;-webkit-transition:.18s;-o-transition:.18s;transition:.18s}
.il_nav>a:first-child{border-left:none}
.il_nav .active{color:#fff;background:#c4182e}
/*修改颜色 end*
.il_list>li{line-height:24px;display:flex;height:54px;margin-left:8px;padding-right:4px;
border-bottom:1px solid #c7c7cc;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;
-ms-flex-align:center;align-items:center}
.il_list>li .td_l{color:#3c3c3c;-webkit-box-flex:1;-webkit-flex:1;-moz-box-flex:1;-ms-flex:1;flex:1}
.il_list>li .td_r{margin-left:4px;text-align:right;color:#6c6c6c;font-size:14px;}
.il_list>li .il_money{font-weight:700;font-size:16px;}
.il_list .list_add .il_money{color:#79bc56}
/*.il_list .list_add .il_money:before{content:'+'}*
.il_list .list_remove .il_money{color:#f22e00}
.il_list .list_remove .il_money:before{content:'-'}*/
/*积分 新增 20170417*/
.pa_right{position: absolute;right: 10px;top: 10px;font-size: 14px;}
.totalMoney .sell .r_color{color: #333;margin-top: 10px;}
.totalMoney .sell li div{color: #999999;font-size: 12px;line-height: 15px;}
.integral{margin:20px;}
.integral li{font-size: 18px; color: #FFF; margin:20px 2% 0 0;width: 48%;vertical-align: top;display: inline-block;*display: inline;*zoom: 1;}
.integral li:nth-child(2n){margin-right:0;}
.integral li .f_big{font-size: 28px;}
.integral .jfcz1,.integral .jfcz2,.integral .jfcz3,.integral .jfcz4{text-align:center;padding: 20px 0;background-repeat: no-repeat;background-size:cover;background-position: center center;}
.integral .jfcz1{background: url(../images/user/jfzyc1.png);}
.integral .jfcz2{background: url(../images/user/jfzyc2.png);}
.integral .jfcz3{background: url(../images/user/jfzyc3.png);}
.integral .jfcz4{background: url(../images/user/jfzyc4.png);}
.integral .jfzyc_btn{ background-color: #C4182E;display: inline-block;height: 50px;line-height: 50px; width: 80%;margin: auto;border-radius:4px;text-align: center;}
/*积分 end*/
/*退换货*/
/*删除 20170317*/
/*.main_thh table{border:1px solid #dedede; font-size: 12px;padding: 5px;margin: 0 auto; border-left:0px solid white;border-right:0px solid white;margin-bottom: 36px;border-top: 0px solid white}
.main_thh table tr td{padding: 2px 10px;border-left: 0px solid white;border-right: 0px solid white;border-top: 0;}
.main_thh table tr td:first-child{text-align: right; width: 90px;font-weight: 700;}
.main_thh table tr td:last-child{line-height: 2;}
div.main_thh table tr .check_but_thh{text-align: center;}
.main_thh table tr .check_but_thh div{width: 60%;margin: 0 auto;}
.main_thh table tr .check_but_thh div a{padding: 4px 6px;display: block;background: #FF3300;color: white;margin-top: 10px;margin-bottom: 10px;border-radius: 4px;font-size: 14px;}*/
/*申请售后*/
/*删除 20170317*/
/*.main_sq{font-size: 12px;}
.T_H{text-align: center;}
.T_H div{display: inline-block;text-align: center;line-height: 60px;margin-top: 20px;}
.T_H div a{display: block;padding: 10px;border: 1px solid #dedede;width: 60px; height:60px;border-radius: 50%;margin-left: 10px;margin-right: 10px;font-size: 16px;color: #dedede;}
.T_H a.orange_sq{background: #FF3300;color: #FFF;border: 1px solid #FF3300;}
.ques_desc_sq,.sendssq{width: 95%;margin: 0 auto;margin-top: 20px;}
.ques_sq .textarea_sq{text-align: center;}
.ques_sq .textarea_sq textarea{resize:none;width: 95%;padding: 6px;min-height: 200px;border: 1px solid #dedede;}
.file_sq{width: 95%;margin: 0 auto;}
#files_sq{font-size: 12px;}
#files_sq::-ms-browse, [type='file'] {padding: 0px 10px;line-height: 28px; border: 1px solid #dedede; background: #d8d8d8; color: #FFF;}
#files_sq::-webkit-file-upload-button { padding: 0px 10px;line-height: 28px;border: 1px solid #dedede;background: #d8d8d8; color: #FFF;}
.file_sq_img .fiimgs{width: 80px; height: 80px;border: 1px solid #dedede;display: inline-block;margin-top: 10px;}
.file_sq_img table tr td{text-align: center;padding: 6px 0;}
.file_sq_img table tr td img{width: 58px; height: 58px;border: 1px solid #dedede;}
.max_5x{color: #dedede;}
.submit_sq{margin-top: 20px;}
.submit_sq a{color: #FFF;display: block;text-align: center;background: #FF3300;padding: 4px 6px;}
.touchweb-com_searchListBox li { position: relative; border-bottom: 1px solid #e5e5e5; padding-bottom: 13px;}
.touchweb-com_searchListBox .item {
display: block;
padding: 12px 12px 0px 12px;
position: relative;
z-index: 1;
left: 0;
top: 0;
}
.touchweb-com_searchListBox .item .pic_box {
float: left;
margin-right: 10px;
background-size: cover;
background-position: center;
width: 90px;
height: 90px;
background-color: #fff;
overflow: hidden;
position: relative;
}
.touchweb-com_searchListBox .item .pic_box img {
display: block;
width: 100%;
height: auto;
position: absolute;
}
.touchweb-com_searchListBox .item .title_box {
height: 33px;
overflow: hidden;
color: #005ea7;
font-size: 14px;
line-height: 18px;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
display: -webkit-box;
}
.touchweb-com_searchListBox .item .pic_box:after {
content: '';
padding-top: 100%;
display: block;
width: 100%;
}
.touchweb-com_searchListBox .item:after {
content: "";
display: table;
clear: both;
}*/
/*申请服务详情*/
/*删除 20170317*/
/*.file_sq a div{display: inline-block;margin-top: 10px;}
.file_sq a div img{width: 56px; height: 56px;}*/
/* 退货退款 新增 */
.Refund{font-size: 14px;color: #010101;margin:10px;}
.Refund li{}
.Refund li span{font-size: 14px; color: #999999;}
.refund-box{color: #999999;padding: 10px 0;border: 1px solid #e8e8e8;margin: 10px 0;font-family:"微软雅黑"}
.pl20{padding-left:20px;}
.refund-type{color: #999999;padding: 10px 20px;background: url(../images/flow/c_checkbox_off.png) no-repeat 98% center; background-size: 20px 20px;}
.refund-type:first-child{border-bottom: 1px solid #E8E8E8;}
.Refund .active{background-image:url(../images/flow/c_checkbox_on.png);color: #C4182E;}
/*修改 20170323*/
/*.Refund .Reason{color: #999999;padding: 10px 20px; background: url(../images/category/xiala.png) no-repeat 98% center; background-size: 17px 10px;}*/
.Refund .Reason{font-size: 14px;width: 100%;padding-left:20px ;}
.RefundInput{font-size: 14px;display: block;width:95%;border: 0;}
.voucher{background: url(../images/flow/xiangji.png) no-repeat 10px center;background-size: 35px 35px;text-align: right;padding-right: 20px;}
.btn_big2{background: #C4182E;text-align: center; font-size:16px; line-height:50px;color:#FFF; font-family:"微软雅黑"}
/*上传的图片 修改 20170425*/
.upPic{font-size: 0;margin:20px 10px;}
/*.upPic li{width: 27%;display: inline-block;*display: inline;*zoom: 1;position: relative;margin-right:5%;border: 1px solid #eeeeee;}
.upPic li .close{position: absolute;right: -15px;top:-15px;background: url(../images/flow/close-img.png) no-repeat;background-size: cover; width: 30px;height: 30px;}
.upPic li img{width: 100%;}*/
.upPic a{width: 32%;padding-bottom: 32%; height: 0;margin-right: 1%}
.upPic a:last-child{margin-right: 0;}
.upPic a div{width: 100%;height: 100%;}
/*弹窗*/
.ReasonBox{color: #999999;font-size: 14px;}
.ReasonBox ul{height: 200px;overflow: auto;}
.ReasonBox ul li{background: url(../images/flow/c_checkbox_off.png) no-repeat 10px center; background-size: 20px 20px;padding:10px 10px 10px 50px;}
.ReasonBox .active{background-image: url(../images/flow/c_checkbox_on.png);}
.ReasonBox .tit{font-size: 16px;color: #000000;text-align:center;border-bottom: 1px solid #EEEEEE;background: none;padding:10px 0;}
.ReasonBox .tit:last-child{border-top: 1px solid #EEEEEE;border-bottom:0;}
/*退款中 20170318*/
.bor10{background-color: #eee;border-top: 1px solid #999999;border-bottom: 1px solid #999999;height: 10px;}
.loadingBox{font-size: 14px;color: #333333;margin:10px;}
.loadingBox li{border-bottom: 1px solid #eeeeee;padding: 10px 0;}
.loadingBox li:last-child{border-bottom: 0;}
.returnType{}
.grayRound{vertical-align: middle; display: inline-block;*display: inline;*zoom: 1; width: 45px;height: 45px;border-radius:50% ;background-color: #eeeeee;border: 5px double #FFFFFF;}
.redRound{background-color:#C4182E;}
.transverseG{vertical-align: middle; display: inline-block;*display: inline;*zoom: 1;border-bottom: 1px solid #EEEEEE;width: 20%;}
.transverseR{border-bottom: 1px solid #C4182E;}
.grayTrue{vertical-align: middle; display: inline-block;*display: inline;*zoom: 1;background: url(../images/user/success.png) no-repeat;background-size: cover; width: 74px;height: 74px;}
.redTrue{background-image: url(../images/user/success_on.png);}
.loadingBox .textBox{font-size: 12px;color: #999999;}
.loadingBox .textBox li{border: 0;vertical-align: top; display: inline-block;*display: inline;*zoom: 1;width: 30%;text-align: center;margin: 10px 1%;line-height: 30px;}
.loadingBox .returnefund{padding: 0 20px;}
.loadingBox .returnefund li{display: flex; display: -webkit-flex; flex-wrap: wrap; font-size: 0;border: 0;}
.loadingBox .returnefund li .left{font-size: 14px;color: #000000;width: 28%; /*-webkit-flex: 1;flex: 1; for uc /-webkit-box-flex: 1;-moz-box-flex: 1;-ms-flex: 1;*/}
.loadingBox .returnefund li .right{font-size: 14px;color: #999999;text-align: left;width: 72%;/*-webkit-flex: 2;flex: 2;/* for uc /-webkit-box-flex: 2;-moz-box-flex: 2;-ms-flex: 2;*/}
.loadingBox .returnefund li .right i{vertical-align:top;display: inline-block;*display: inline;*zoom: 1;width: 30%;height: 107px;border: 1px solid #EEEEEE;margin:10px 0 0 2%;}
/*退款中,卖家拒绝原因*/
.reject{font-size: 14px;margin-top:10px ;}
.rejectTit{font-size: 14px;}
.rejectConter{font-size: 14px;color: #999999;line-height: 25px;}
/*退款中,商品的情况*/
.loadingGoods{margin: 10px;border: 1px solid #EEEEEE;}
.loadingGoods li{border-bottom: 1px solid #EEEEEE;padding:5px 10px;font-size: 14px;color: #999999;}
.loadingGoods li span{ vertical-align:middle;display: inline-block;*display: inline;*zoom: 1;color: #333333;margin-left: 10px;overflow: hidden;width: 75%;text-overflow:ellipsis;white-space:nowrap;}
/*新增 退款列表样式 20170425*/
.order .refundBox{padding:0 0 10px 10px;border-bottom: 1px solid #EEEEEE;}
.order .refundBox img{width: 20px;margin-right: 5px;vertical-align: text-bottom;}
.order .refund{font-size: 14px;color: #C4182E;color: #333333;}
/*总资产 新增 20170320*/
/*积分头部样式 有影响*/
.totalMoney{text-align: center;}
.money{background-image:url(../images/user/redbg.jpg);color: #FFFFFF;padding: 20px;font-size: 14px; text-align: left;}
.moneyTit{font-size: 14px;color: #878787; margin: auto;border-bottom: 10px solid #EEEEEE;}
.moneyTit div{width: 49%;vertical-align:top;display: inline-block;*display: inline;*zoom: 1;}
.moneyTit div p{vertical-align:top;display: inline-block;*display: inline;*zoom: 1;width: 90%;padding:5px ;}
.moneyTit div p.on{border-bottom: 3px solid#C4182E;}
/*积分头部样式 end*/
.bor1{border-right:1px solid #eeeeee;}
.totalMoney ul{text-align: left;}
.totalMoney ul li{text-align: left;padding:10px;}
.totalMoney ul li .left{font-size: 14px;color: #000000;}
.totalMoney ul li .right{font-size: 14px;color: #C4182E;}
.totalMoney ul li .right img{width: 6px;height: 12px;}
/*流动资金 新增 20170317*/
.totalMoney .sell li{border-bottom: 1px solid #EEEEEE;}
/*流动资金 新增 end*/
/*预存款 新增 20170320*/
.preDeposit{margin: 10px 0;text-align: center;}
.preDeposit .left{overflow:initial;text-overflow:clip;white-space:inherit;font-size: 16px;color: #FFFFFF;vertical-align: middle;margin-top: 20px;}
.preDeposit .right{text-align: left;font-size: 14px;}
.preDeposit .right .remarks{margin:20px 0 0 15px;}
.preDeposit .right .remarks i{color: #999999;width: 96%;display: block;overflow: hidden;text-overflow:ellipsis;white-space:nowrap;}
.preDeposit .right .remarks i:last-child{border-bottom: 1px solid #d7d7d7;padding-bottom: 10px;}
.preDeposit li{width: 96%; margin: auto;position: relative;margin-top: 10px;padding-bottom: 10px;}
.preDeposit li img{width: 100%;height: 100%; position: absolute;left: 0;top: 0;z-index: -1;}
/*余额-预存款 新增 20170417*/
.distribution li{
border-bottom: 0;
padding: 10px;
}
.zyc_img{
margin: 20px;
border-bottom: 0;
background-repeat: no-repeat;
background-size: 100%;
border-radius:4px ;
}
.zyc1 {
background-color: #fbc8b7;
}
.zyc2 {
background-color: #d2b7fc;
}
.zyc3 {
background-color: #ff7f7f;
}
.zyc4 {
background-color: #86bcff;
}
.quan_tit {
padding: 0 20px;
color: #fff;
font-size: 20px;
height: 50px;
line-height: 50px;
border-bottom: 1px dashed #FFFFFF;
}
.quan_inner {
padding: 20px;
color: #fff;
}
/*余额-预存款 新增 end*/
/*总资产 end*/
/*删除 20170327*/
/*.preDeposit li .greenBg,.preDeposit li .redBg,.preDeposit li .yellowBg,.preDeposit li .blueBg{font-size: 0; height: 178px; background-repeat:no-repeat ;background-size:cover;}
.preDeposit li .greenBg{background-image: url(../images/user/green.png);}
.preDeposit li .redBg{background-image: url(../images/user/red.png);}
.preDeposit li .yellowBg{background-image: url(../images/user/yellow.png);}
.preDeposit li .blueBg{background-image: url(../images/user/blue.png);}*/
.preDeposit .recharge{color: #C4182E;text-align: center;margin:10px;}
/*提现 新增 20170321*/
.withdrawals li{border-bottom: 10px solid #eeeeee;padding: 20px;font-size: 14px;color: #000000;}
.withdrawals li:last-child{border-bottom: 0;}
.withdrawals li .tx_money{border: 0;font-size: 14px;padding:5px 10px; color: #C4182E; font-family: "微软雅黑";display: inline-block;*display: inline;*zoom: 1;width: 85%;border-bottom: 1px solid #EEEEEE;}
.withdrawals li ol li{border-bottom: 1px solid #e8e8e8;padding:10px 0;}
.withdrawals li ol li.bg{background: url(../images/user/leftTip.png) no-repeat 98% 20px;background-size: 13px 23px;}
.withdrawals li ol li .radio{vertical-align: middle;display: inline-block;*display: inline;*zoom: 1; border-radius: 50%;width: 10px;height: 10px;border: 1px solid #C4182E;}
.withdrawals li ol li .radioOn{background-color: #C4182E;border: 3px double #FFFFFF;}
.withdrawals li ol li span{vertical-align: middle;}
.fl{float: left;}
.fr{float: right;}
.withdrawals li ol li .input_info{font-size: 14px;color: #999;border: 0;margin:0 0 5px 10px;width: 70%;}
.withdrawals li ol li input:focus,.withdrawals li ol li input:hover{border: 0;box-shadow:none;}
/*提现项目 新增 20170321*/
.project li{border-bottom: 1px solid #e8e8e8;font-size: 14px;color: #000000;padding: 10px 20px;}
.project li img{float: left;margin:20px 20px 0 0;width: 25px;height: 25px;vertical-align: middle;}
.project li .price{float: right;color: #C4182E;margin-top: 20px;}
/*提现记录 20170506*/
.cashRecord {padding: 10px;}
.cashRecord li{font-size: 0;margin:5px 0;}
.cashRecord li .green{color: #006600;}
.cashRecord li .red{color: #C4182E;}
.cashRecord li span{font-size: 14px;}
.cashRecord li span.left{width: 30%;}
.cashRecord li span.right{width: 70%;}
/*微券*/
.couponsTit{font-size: 14px;border: 1px solid #e03835;background-color: #C4182E;color: #FFFFFF;}
.couponsTit .left{border-right:1px solid #e03835;}
.couponsTit .left,.couponsTit .right{width: 49%;text-align: center;margin: 10px 0;}
.noCoupons{text-align: center;font-size: 16px;color: #666666;margin: 20px;}
.noCoupons p{margin-top: 20px;}
.noCoupons .wq_btn {
background-color: #C4182E;
color: #fff;
font-size: 18px;
height: 50px;
line-height: 50px;
margin: 20px auto;
width: 200px;
}
.coupons{text-align:center;}
.coupons li{margin: 10px auto;width: 80%;max-width: 500px;font-size: 14px;color: #333333;border-bottom: 1px solid #EEEEEE;padding-bottom: 10px;}
.coupons li .numCoupons{font-size: 20px;color: #6fd137;margin: 10px 0;text-align: center;}
/*分销订单*/
.dis_order{}
.dis_order .nav{font-size: 0;color: #333;border-bottom: 1px solid #eee;}
.dis_order .nav li{width: 32%;font-size: 16px;text-align: center; vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.dis_order .nav li span{padding: 10px;vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.dis_order .nav li span:hover{color: #C4182E;}
.dis_order .nav li .on{color: #C4182E;border-bottom: 2px solid #C4182E;padding-bottom: 10px;}
.order_pro{border-bottom: 10px solid #eee;}
.order_pro .title{padding: 10px;border-bottom: 1px solid #eee;margin: 0;}
.order_pro .title img{width: 25px;height: 20px;margin-right: 5px;}
.order_pro .title span{vertical-align: middle;}
.order_pro .goods_info{font-size: 12px; border-bottom: 1px solid #eee;padding: 10px;text-align: center;color: #333;text-align: left;}
.order_pro .goods_info .imgbox,.order_pro .goods_info .info{ vertical-align: top;display: inline-block;*display: inline;*zoom: 1;}
.order_pro .goods_info .imgbox{width: 150px;height:150px;text-align: center;}
.order_pro .goods_info .imgbox img{max-width: 100%;max-height: 100%;}
.order_pro .goods_info .info{width: 63%;margin-left: 2%;text-align: left;}
.order_pro .goods_info .info .tit{font-size: 14px;color: #000;width: 100%;max-height:50px;overflow: hidden; }
.order_pro .goods_info .info div{font-size: 12px;margin-top: 10px;}
.order_pro .goods_info .info div .cr{font-size: 12px;}
.order_pro .goods_info .cr i{font-size: 18px;}
/*排行榜*/
.ranking{}
.ranking .ranking_top{font-size: 0; background-color: #c4182e;padding:20px 10px;text-align: center;}
.ranking .ranking_top .tit{font-size: 14px;color: #fff;margin-right:10px;vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.ranking .ranking_top .tit .f40{font-size:30px;margin:20px auto 10px;text-align: left;}
.ranking .ranking_top .tit p span{font-size: 18px;}
.ranking .ranking_top img{width: 40%;float: right;margin-top: 10px;}
.ranking .ranking_title{background-color: #a5071b;font-size: 0;}
.ranking .ranking_title .commission,.ranking .ranking_title .offline{position: relative; width: 49%;font-size: 14px;color: #fff;text-align: center;padding: 10px 0 15px; vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.ranking .ranking_title .tab_on {color: #fff;font-size: 16px;font-weight: 700;}
.ranking .ranking_title .tab_on div{position: absolute;bottom: 0;left: 50%; margin-left:-5px; width: 0;height: 0;border-left: 10px solid transparent;border-right: 10px solid transparent;border-bottom: 10px solid #fff;}
.ranking_list{}
.ranking_list li{border-bottom: 1px solid #eee;margin:0 10px;padding: 10px 0; font-size: 0;}
a.my_ranking,.my_ranking,.my_ranking:hover{display: block; font-size: 0; padding: 10px; border-bottom: 10px solid #eee; background: url(../images/distribut/left.png) no-repeat;background-position: 95% center;background-size: 11px 20px;}
.rank_top,.rank_img,.rank_text{text-align: center; color: #333; vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.rank_top{width: 15%;max-width:56px;font-size: 20px;}
.rank_top img{width: 100%;}
.rank_img{text-align: center; margin: 0 10px 0 5px; width: 70px;height: 70px;border-radius:50%;-moz-border-radius: 50%;-webkit-border-radius: 50%;border: 1px solid #eee;}
.rank_img img,.teamlist li .imgbox img{max-width: 100%;max-height: 100%;}
.rank_text{font-size: 16px;text-align: left;width: 55%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.rank_text .com_price{font-size: 14px;color: #999999;}
.rank_text .com_price span{color: #C4182E;font-size: 18px;}
/*新手必看*/
.rulebox{position: relative; }
.rulebox p{font-size: 32px;color: #fff;position: absolute;left: 50%;margin-left: -64px;top: 20%;}
.rule_txt{width: 90%;margin-left:5%;font-size: 18px}
.rule_txt p{margin-bottom: 10px;}
/*我的团队*/
.teamlist{padding: 10px;border-bottom: 10px solid #eee;}
.teamlist li{border-bottom: 1px solid #eee;padding: 10px 0;font-size: 0;}
.teamlist li:last-child{border:0 ;}
.teamlist li .left,.teamlist li .right{float: none; width:50%;vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.teamlist li .left .imgbox,.teamlist li .left .info{vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.teamlist li .left .imgbox{width: 50px;height: 50px;margin-right: 8px;}
.teamlist li .left .info{font-size: 14px;color: #333;width: 60%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.teamlist li .left .info .d_time{font-size: 12px;color: #999;}
.teamlist li .right .cr{font-size: 16px;vertical-align: middle;margin-right: 10px;}
/*佣金明细*/
.com_list{}
.com_list li{border-bottom: 10px solid #eee;position: relative;}
.com_list li .tit{font-size: 0;border-bottom: 1px solid #eee;padding: 10px;}
.com_list li .orderno{color: #333;padding: 10px;}
.com_list li .one,.com_list li .two{overflow: hidden;text-overflow: ellipsis;white-space: nowrap; font-size: 14px;color: #000; vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.com_list li .one{width: 70%;}
.com_list li .two{width: 30%;text-align: right;}
.com_list li .disib0{font-size: 0;padding: 10px;}
.com_list li .three{width: 33%;font-size: 14px;vertical-align: middle;display: inline-block;*display: inline;*zoom: 1;}
.nav .arrow_down{width: 0px; height: 0px; font-size: 0; line-height: 0; border-color: #a5a5a5 #fff #fff #fff; border-width: 5px 5px 0px; position: relative; top: 2px; left: 5px; display: inline-block; border-style: solid;}
.nav .arrow_up{ width: 0px; height: 0px; font-size: 0; line-height: 0; border-color: #fff #fff #a5a5a5 #fff; border-width: 0px 5px 5px ; position: relative; top: -6px; left:-1px; display: inline-block; border-style: solid;}
.nav li .arrow_down_on{border-color: #C4182E #fff #fff #fff;}
.nav li .arrow_up_on{border-color: #fff #fff #C4182E #fff;}
/*分别率 20170318*/
@media (max-width:480px ) {
/*个人中心*/
.user-header{top: 17%;}
/*退款中 新增 20170317*/
.loadingBox li{padding: 5px 0;}
.upPic li .close{width: 25px;height: 25px;right: -13px;top:-13px;}
.grayRound{width: 30px;height: 30px;}
.grayTrue{width: 50px;height: 50px;}
.loadingBox .textBox li{line-height: 20px;}
.loadingBox .returnefund li .right i{height: 80px;}
/*评价 新增 20170318*/
.pj dl dt{ width:100px;}
.pj dl dt .imgbox{ width:98px;height: 98px;}
.pj dl dd{ width:60%; }
.pingfen{padding: 10px;}
.htpic{height: 200px;}
.hopic{height: 100px;}
.textBlack{font-size: 18px;}
.startBox ul li {width:30px;height:28.5px;margin: 3px;}
/*流动资金明细 新增 20170320*/
.fundsQuery input{width: 30%;}
/*余额 新增 20170320*/
.totalMoney ul li .left img{margin-right: 10px;}
.totalMoney ul li .right img {margin-left: 10px;}
/*提现 新增 20170321*/
.withdrawals li{padding: 10px 20px;}
.withdrawals li ol li.bg{background-size:10px 17px;}
/*提现项目 新增 20170321*/
.project li{padding: 10px;}
.order_pro .goods_info .info{width: 66%;}
.order_pro .goods_info .imgbox{width: 100px;height: 100px;}
}
@media (max-width:360px ) {
/*个人中心*/
.user-header{top: 12%;}
/*退款中 新增 20170317*/
.w_money.choice-goods{
top:5px;
}
.grayRound{width: 25px;height: 25px;}
.grayTrue{width: 40px;height: 40px;}
.loadingBox .returnefund li .right i{height: 56px;}
/*评价 新增 20170318*/
.pj dl dd{ width:55%; }
/*积分充值*/
.integral li{width: 100%;margin:20px 0;}
.order_pro .goods_info .info{width: 62%;}
}