myyoho.css
71.5 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
/*我的有货*/
.usercenter-nav{width:182px;height:auto;background:url(http://static.yohobuy.com/images/usercenter_left_bg.png) repeat-y;margin-bottom:10px;}
.usercenter-nav .title{height:40px;background:url(http://static.yohobuy.com/images/usercenter_left_t.png) no-repeat; text-indent:-999em;}
.usercenter-nav .main{height:auto;padding:0px 3px 10px 1px;background:url(http://static.yohobuy.com/images/usercenter_left_b.png) no-repeat bottom;zoom:1;}
.usercenter-nav .main:after{content: ""; display: block; clear: both; height: 0px;}
.usercenter-nav .userhead{text-align:center;padding:20px 0px;}
.usercenter-nav .userhead img{width:100px;height:100px;padding:5px 7px 7px 5px;background:url(http://static.yohobuy.com/images/usercenter_userhead_bg.png) no-repeat;}
.usercenter-nav .usernav h2{height:37px;padding:0px 0px 0px 35px;line-height:37px;font-family:Arial,helvetica,sans-serif;font-size:14px;color:#333;background:url(http://static.yohobuy.com/images/usercenter_nav_lan.png) no-repeat;border-top:1px #ccc solid;border-bottom:1px #ccc solid;}
.usercenter-nav .usernav li{height:38px;line-height:38px;border-bottom:1px #e2e2e2 solid;}
.usercenter-nav .usernav li a{height:38px;line-height:38px;padding:0px 0px 0px 35px;font-family:Arial,helvetica,sans-serif;font-size:12px;color:#666;display:block;}
.usercenter-nav .usernav li a:hover{background:url(http://static.yohobuy.com/images/i_ar_c.png) no-repeat 135px 12px #fff; color:#000;text-decoration:none;}
.usercenter-nav .usernav li a span{color:#e8044f;font-weight:bold;}
.usercenter-nav .usernav .act a{background:#636363;color:#fff;}
.usercenter-nav .usernav .act a:hover{background:#636363;color:#fff;}
.usercenter-nav .usernav .end{border:0px;}
.usercenter-nav .userinfo{width:163px;padding:0px 5px 10px 10px;background:#efefef;float:left;}
.usercenter-nav .userinfo dl{width:163px;padding-top:8px;float:left;}
.usercenter-nav .userinfo dt{width:56px;height:50px;float:left;}
.usercenter-nav .userinfo dt img{width:50px;height:50px;}
.usercenter-nav .userinfo dd{width:107px;padding:5px 0px 0px 0px;color:#999;float:left;}
.usercenter-nav .userinfo dd strong{color:#e8044f;}
.usercenter-nav .userstat{width:178px;padding:0px 0px 10px 0px;float:left;}
.usercenter-nav .userstat .li-1{width:75px;height:35px;padding:10px 0px 0px 10px;color:#999;border-top:1px #e6e6e6 solid;border-right:1px #e6e6e6 solid;border-bottom:1px #e6e6e6 solid;background:#f5f5f5;line-height:15px;float:left;}
.usercenter-nav .userstat .li-2{width:81px;height:35px;padding:10px 0px 0px 10px;color:#999;border-top:1px #e6e6e6 solid;border-bottom:1px #e6e6e6 solid;background:#f5f5f5;line-height:15px;float:left;}
.usercenter-nav .userstat .li-3{width:75px;height:35px;padding:10px 0px 0px 10px;color:#999;border-right:1px #e6e6e6 solid;border-bottom:1px #e6e6e6 solid;background:#f5f5f5;line-height:15px;float:left;}
.usercenter-nav .userstat .li-4{width:81px;height:35px;padding:10px 0px 0px 10px;color:#999;border-bottom:1px #e6e6e6 solid;background:#f5f5f5;line-height:15px;float:left;}
.usercenter-nav .userstat strong{color:#000;font-size:14px;}
.usercenter-nav .upgrade{width:160px;padding:0px 9px 10px 9px;float:left;}
.usercenter-nav .box{width:178px;float:left;}
.usercenter-nav .box .box-t{width:178px;height:23px;background:url(http://static.yohobuy.com/images/usercenter_left_lan_bg.png) repeat-x;float:left;}
.usercenter-nav .box .box-t h2{width:168px;margin:6px 0px 0px 10px;display:inline; text-indent:-999em;float:left;}
.usercenter-nav .box .t_jygl h2{background:url(http://static.yohobuy.com/images/z_jygl.png) no-repeat;}
.usercenter-nav .box .t_fwzx h2{background:url(http://static.yohobuy.com/images/z_fwzx.png) no-repeat;}
.usercenter-nav .box .t_gryygl h2{background:url(http://static.yohobuy.com/images/z_gryygl.png) no-repeat;}
.usercenter-nav .box .t_grxxgl h2{background:url(http://static.yohobuy.com/images/z_grxxgl.png) no-repeat;}
.usercenter-nav .box ul{width:148px;padding:8px 0px 5px 30px;float:left;font-family:Arial,helvetica,sans-serif;}
.usercenter-nav .box ul li{width:135px;height:22px;padding:0px 0px 0px 13px;line-height:22px;background:url(http://static.yohobuy.com/images/ico_arf.png) no-repeat 0px 6px;float:left; white-space:nowrap;overflow:hidden;}
.usercenter-nav .box ul li a{color:#333;}
.usercenter-nav .box ul li a:hover{color:#468fa2; text-decoration:underline;}
/*消息提示*/
.messagetip{width:780px;height:20px;padding:10px;background:url(http://static.yohobuy.com/images/message_bg.png) no-repeat;margin-bottom:10px;float:left;overflow:hidden;}
.messagetip p{width:760px;height:20px;line-height:20px;float:left;}
.messagetip p strong{color:#333;}
.messagetip p a{color:#468fa2;}
.messagetip p .a_new{color:#e8044f;font-weight:bold;}
.messagetip p b{color:#e8044f;}
.messagetip .xclose{width:10px;height:9px; text-indent:-999em;overflow:hidden;margin-top:5px;background:url(http://static.yohobuy.com/images/message_close.png) no-repeat;float:right;}
/*最近订单*/
.zjdd{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.zjdd .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.zjdd .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.zjdd .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_zjdd.png) no-repeat; text-indent:-999em;float:left;}
.zjdd .title .more{height:22px;margin-top:-2px;overflow:hidden;float:right;}
.zjdd .main .list-t{width:778px;height:22px;padding:8px 10px 0px 10px;text-align:center;line-height:20px;border-bottom:1px #e6e6e6 solid;background:#efefef;float:left;}
.zjdd .main .list-t .li-1{width:330px;padding-left:10px;text-align:left;float:left;}
.zjdd .main .list-t .li-2{width:75px;float:left;}
.zjdd .main .list-t .li-3{width:60px;float:left;}
.zjdd .main .list-t .li-4{width:100px;float:left;}
.zjdd .main .list-t .li-5{width:100px;float:left;}
.zjdd .main .list-t .li-6{width:100px;float:left;}
.zjdd .main .list-m{width:778px;padding:10px 10px 0px 10px;float:left;}
/*喜欢的品牌*/
.xhdpp{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.xhdpp .main{width:788px;padding:10px 1px 11px 11px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.xhdpp .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.xhdpp .title h2{width:210px;height:15px;background:url(http://static.yohobuy.com/images/z_xhdpp.png) no-repeat; text-indent:-999em;float:left;}
.xhdpp .title .more{height:22px;margin-top:-2px;overflow:hidden;float:right;}
.xhdpp .main li{width:122px;height:103px;border:1px #f6f6f6 solid;margin-right:7px;display:inline;float:left;overflow:hidden;}
.xhdpp .main li img{width:80px;height:50px;display:block;margin:15px auto;}
.xhdpp .main li h3{width:114px;height:18px;background:#f4f4f4;color:#333;font-size:12px;text-align:center;margin: 0 auto; white-space:nowrap;overflow:hidden;}
.xhdpp .main li p{width:114px;height:18px;padding-top:10px;line-height:18px;color:#999;font-size:12px;text-align:center;margin: 0 auto; white-space:nowrap;overflow:hidden;}
/*新品上架*/
.xpsj{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.xpsj .main{width:800px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat left bottom;float:left;}
.xpsj .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.xpsj .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_xpsj.png) no-repeat; text-indent:-999em;float:left;}
.xpsj .title .page-r{width:45px;height:22px;line-height:22px;overflow:hidden;float:right;}
.xpsj .title .page-r #album_prevBtn{width:23px;height:22px;float:left;}
.xpsj .title .page-r #album_nextBtn{width:22px;height:22px;float:left;}
.xpsj .main ul{margin:0px;padding:0px;float:left;text-align:left;}
.xpsj .main li{width:800px;height:218px;margin:0px;padding:0px;overflow:hidden;text-align:center;}
.xpsj .main .list{width:101px;height:160px;padding:29px;border-right:1px #e3e3e3 solid;overflow:hidden;float:left; }
.xpsj .main .list dt{width:100px;height:110px;float:left;}
.xpsj .main .list dt img{width:100px;height:100px;}
.xpsj .main .list dd{width:100px;float:left;}
.xpsj .main .list dd h3{height:30px;line-height:15px;font-size:12px;font-weight:normal;overflow:hidden;}
.xpsj .main .list dd h3 a{ text-decoration:underline;}
.xpsj .main .list dd p{height:15px;line-height:15px;font-size:12px;padding-top:10px;font-weight:bold;}
/*订单中心*/
.ddzx{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;}
.ddzx .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;}
.ddzx .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;}
.ddzx .title h2{width:130px;height:15px;background:url(http://static.yohobuy.com/images/z_ddzx.png) no-repeat; text-indent:-999em;float:left;}
.ddzx .main .tab{width:778px;height:25px;background:url(http://static.yohobuy.com/images/tab_lan1.png) repeat-x 0px -25px;margin:10px auto;}
.ddzx .main .tab a{width:88px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan1.png) no-repeat -92px 0px;margin-right:3px;display:inline;color:#333;float:left;}
.ddzx .main .tab a.act{width:88px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan1.png) no-repeat 0px 0px;margin-right:3px;display:inline;color:#333;font-weight:bold;float:left;}
.ddzx .main .list-t{width:776px;height:25px;text-align:center;line-height:25px;border:1px #e6e6e6 solid;background:#efefef;overflow:hidden;margin:0 auto;}
.ddzx .main .list-t .li-1{width:330px;padding-left:10px;text-align:left;float:left;}
.ddzx .main .list-t .li-2{width:75px;float:left;}
.ddzx .main .list-t .li-3{width:60px;float:left;}
.ddzx .main .list-t .li-4{width:100px;float:left;}
.ddzx .main .list-t .li-5{width:100px;float:left;}
.ddzx .main .list-t .li-6{width:100px;float:left;}
.ddzx .main .list-t .li-7{width:98px;float:left;}
.ddzx .main .list-m{width:778px;padding:10px 10px 0px 10px;margin:0 auto;}
.ddzx .main .list-m a{margin:0px;}
.ddzx .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;margin:0 auto;}
.ddzx .main .list-tt{padding:20px 10px;zoom:1;}
.ddzx .main .list-tt:after{content: ""; display: block; clear: both; height: 0px;}
.ddzx .main .list-tt dt{float:left;}
.ddzx .main .list-tt dd{float:right;}
.ddzx .main .list_2w{width:768px;padding:10px 0px 10px 10px;border:1px #e7e7e7 solid;background:#fff;margin:0 auto 20px auto;zoom:1;}
.ddzx .main .list_2w:after{content: ""; display: block; clear: both; height: 0px;}
.ddzx .main .list_2w li{width:232px;padding:10px;float:left;}
.ddzx .main .list_2w li .pic{height:260px;border:1px #e7e7e7 solid;background:#fff;word-break:break-all;overflow:hidden;text-align:center}
.ddzx .main .list_2w li .pic img{width:230px;height:230px;}
.ddzx .main .list_2w li .op{padding:5px 0px;height:30px;text-align:center;}
.ddzx .main .list_2w li .send{height:30px;line-height:30px;padding:0px 10px 0px 10px;border:1px #e7e7e7 solid;background:#fafafa;}
.ddzx .main .list-info{width:758px;padding:10px 10px 10px 10px;border:1px #e7e7e7 solid;background:#fff;margin:0 auto 20px auto;zoom:1;}
.ddzx .main .list-info:after{content: ""; display: block; clear: both; height: 0px;}
.ddzx .main .list-info li{padding:0px 0px 10px 20px;color:#333;line-height:20px;}
.ddzx .main .list-info .i_w{background:url(http://static.yohobuy.com/images/i_wr.png) no-repeat -27px 5px}
.ddzx .main .list-info .i_r{background:url(http://static.yohobuy.com/images/i_wr.png) no-repeat 0px -23px}
.ewm-win{width:280px;padding:20px;color:#333;}
.ewm-win dl{zoom:1;}
.ewm-win dl:after{content: ""; display: block; clear: both; height: 0px;}
.ewm-win dt{width:55px;padding-left:10px;line-height:30px;float:left;}
.ewm-win dd{width:215px;float:left;}
.ewm-win .submit{clear:both;margin:20px 0px 0px 65px;}
.ewm-win-ok{width:200px;padding:20px 60px;color:#333;}
.ewm-win-ok p{padding:0px 0px 10px 30px;font-size:14px;}
.ewm-win-ok strong{color:#e8044f;}
.ewm-win-ok .submit{clear:both;padding:10px 0px 0px 30px;}
.ewm-win-ok .error{min-height:22px;_height:22px;line-height:22px;display:inline-block;background:url(http://static.yohobuy.com/images/ico_i_sf_2.png) no-repeat 0px -22px;padding-left:30px;}
.ewm-win-ok .correct{min-height:22px;_height:22px;line-height:22px;display:inline-block;background:url(http://static.yohobuy.com/images/ico_i_sf_2.png) no-repeat -22px 0px;padding-left:30px;}
/*订单详情*/
.ddxq{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;}
.ddxq .main{padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;}
.ddxq .title{height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;}
.ddxq .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_ddxq.png) no-repeat; text-indent:-999em;float:left;}
.ddxq .main h2{clear:both;height:21px;line-height:21px;padding-left:23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;font-weight:normal;}
.ddxq .main .box{padding:10px 20px 20px 20px;}
.ddxq .main .stat{padding:10px;background:#efefef;border-bottom:1px #e6e6e6 solid;}
.ddxq .main .stat p{margin:5px 0px;}
.ddxq .main .info{padding:10px ;}
.ddxq .main .dd-jd{clear:both;width:552px;height:70px;padding-top:20px;margin:0 auto; position:relative;}
.ddxq .main .dd-jd-box{width:552px;height:12px;overflow:hidden;background:url(http://static.yohobuy.com/images/dd_jd.png) no-repeat 0px 0px;overflow:hidden;}
.ddxq .main .dd-jd-over{width:552px;height:12px;background:url(http://static.yohobuy.com/images/dd_jd.png) no-repeat 0px -12px;}
.ddxq .main .dd-jd dl{width:150px;color:#999;line-height:15px;position:absolute;top:38px;}
.ddxq .main .dd-jd dd{padding-left:12px;font-size:10px;}
.ddxq .main .dd-jd .li-1{left:-20px;}
.ddxq .main .dd-jd .li-2{left:145px;}
.ddxq .main .dd-jd .li-3{left:330px;}
.ddxq .main .dd-jd .li-4{left:515px;}
.ddxq .main .dd-jd .old dt{color:#e9034e;}
.ddxq .main .dd-jd .act dt{color:#e9034e;font-weight:bold;}
.ddxq .main .dd-jd2 .dd-jd-box{width:552px;height:12px;overflow:hidden;background:url(http://static.yohobuy.com/images/dd_jd2.png) no-repeat 0px 0px;overflow:hidden;}
.ddxq .main .dd-jd2 .dd-jd-over{width:552px;height:12px;background:url(http://static.yohobuy.com/images/dd_jd2.png) no-repeat 0px -12px;}
.ddxq .main .dd-jd2 .li-2{left:245px;}
.ddxq .main .dd-jd2 .li-3{left:515px;}
.ddxq .main .submit{text-align:right;padding:0px 20px 50px 20px;}
.ddxq .main a{margin:0px;}
/*短消息*/
.dxx{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.dxx .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.dxx .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.dxx .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_dxx.png) no-repeat; text-indent:-999em;float:left;}
.dxx .title .more{height:22px;margin-top:-2px;overflow:hidden;float:right;}
.dxx .main .list-t{width:798px;height:22px;padding:8px 0px 0px 0px;line-height:20px;border-bottom:1px #e6e6e6 solid;background:#efefef;float:left;}
.dxx .main .list-t .li-1{width:120px;padding-left:48px;float:left;}
.dxx .main .list-t .li-2{width:400px;float:left;}
.dxx .main .list-t .li-3{width:130px;text-align:center;float:left;}
.dxx .main .list-t .li-4{width:90px;text-align:center;float:left;}
.dxx .main .list-m{width:776px;margin:10px;display:inline;border:1px #e6e6e6 solid;float:left;}
.dxx .main .list{width:776px;height:38px;line-height:38px;border-bottom:1px #e6e6e6 solid;float:left;}
.dxx .main .list-new{background:#f0f5f8;border-bottom:1px #becfd3 solid;}
.dxx .main .list-new a{color:#468fa2;}
.dxx .main .list-new .li-2,.dxx .main .list-new .li-3{font-weight:bold;}
.dxx .main .list-over{background:#efefef;}
.dxx .main .list .li-1{width:37px;padding-top:12px;*padding-top:8px;line-height:20px;text-align:center;float:left;}
.dxx .main input,.dxx .main button{ vertical-align:top;margin:0px;padding:0px;}
.dxx .main .list .li-2{width:110px;float:left; white-space:nowrap;overflow:hidden;}
.dxx .main .list .li-3{width:400px;padding-left:10px;float:left; white-space:nowrap;overflow:hidden;}
.dxx .main .list .li-4{width:130px;padding-left:10px;color:#999;float:left;}
.dxx .main .list .li-5{width:70px;text-align:center;float:left;}
.dxx .main .list .li-5 a{color:#468fa2;}
.dxx .main .list-foot{width:776px;height:38px;background:#f8f8f8;float:left;}
.dxx .main .list-foot .li-1{width:37px;padding-top:12px;*padding-top:8px;text-align:center;float:left;}
.dxx .main .list-foot .li-2{width:700px;padding-top:10px;float:left; }
.dxx .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.dxx .main .text{width:758px;padding:20px;float:left;}
.dxx .main .text-title{padding-bottom:10px;background:url(http://static.yohobuy.com/images/line_dot_4.png) repeat-x bottom;}
.dxx .main .text-title h1{font-size:12px;}
.dxx .main .text-title span{color:#999;}
.dxx .main .text-con{padding-top:10px;color:#333;}
.dxx .main .text-con a{color:#468fa2; text-decoration:underline;}
.dxx .main .list-none{clear:both;padding:200px 0px;text-align:center;}
/*修改密码*/
.xgmm{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.xgmm .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.xgmm .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_xgmm.png) no-repeat; text-indent:-999em;float:left;}
.xgmm .main{width:778px;min-height:400px;_height:400px;padding:10px 11px 11px 11px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.xgmm .main dl{width:776px;height:35px;border:1px #fff solid;margin-bottom:5px;float:left;}
.xgmm .main dl dt{width:86px;text-align:right;line-height:35px;float:left;}
.xgmm .main dl dd{width:665px;padding-top:5px;float:left;}
.xgmm .main .submit{clear:both;padding:20px 0px 0px 86px;}
/*个人资料*/
.grzl{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.grzl .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.grzl .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_grzl.png) no-repeat; text-indent:-999em;float:left;}
.grzl .main{width:778px;min-height:400px;_height:400px;padding:10px 11px 11px 11px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.grzl .main h2{clear:both;height:21px;line-height:21px;padding-left:23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;font-weight:normal;cursor:pointer;margin-bottom:2px;}
.grzl .main h2 span{color:#999;}
.grzl .main h2 .more{padding:2px 10px 0px 0px;float:right;}
.grzl .main .box{width:778px;clear:both;padding-top:10px;margin-bottom:10px;float:left;}
.grzl .main .box:after { content:""; display:block; clear:both; height:0; }
.grzl .main .submit{padding:0px 0px 20px 80px;}
.grzl-hyxx .box-info{width:552px;padding-right:38px;float:left;}
.grzl-hyxx .box-info dl{height:30px;border:1px #fff solid;margin-bottom:2px;line-height:22px;font-family:Arial,helvetica,sans-serif;}
.grzl-hyxx .box-info dl dt{width:80px;text-align:right;color:#333;float:left;}
.grzl-hyxx .box-info dl dd{width:470px;padding-bottom:1px;color:#666;float:left;}
.grzl-hyxx .box-pic{width:148px;padding:20px;background:url(http://static.yohobuy.com/images/line_dot_s.png) repeat-y left;text-align:center;float:right;}
.grzl-hyxx .box-pic img{width:100px;height:100px;margin-bottom:10px;}
.grzl-grxg dl{clear:both;width:770px;padding-bottom:5px;float:left;}
.grzl-grxg dl:after { content:""; display:block; clear:both; height:0; }
.grzl-grxg dl dt{width:80px;text-align:right;line-height:25px;float:left;}
.grzl-grxg dl dd{width:690px;float:left;}
.grzl-lxxx dl{clear:both;width:770px;padding-bottom:5px;float:left;}
.grzl-lxxx dl:after { content:""; display:block; clear:both; height:0; }
.grzl-lxxx dl dt{width:80px;text-align:right;line-height:22px;float:left;}
.grzl-lxxx dl dd{width:690px;line-height:22px;float:left;}
.grzl-lxxx a{color:#468fa2; text-decoration:underline;}
.grzl-xapp dl{clear:both;width:730px;padding:0px 20px 5px 20px;float:left;}
.grzl-xapp dl span{color:#999;line-height:25px;display:inline-block;}
.grzl-xapp ul{clear:both;width:750px;padding:0px 20px 20px 0px;float:left;}
.grzl-xapp ul li{height:22px;padding-left:20px;float:left;}
.grzl-xapp .submit{width:690px;padding:0px 0px 0px 80px;}
.grzl-xapp .addbox{width:725px;margin:0px 0px 10px 20px;display:inline;padding:5px 10px 5px 0px;border:1px #ccc solid;background:#f8f8f8;color:#000;}
.grzl-xapp .addbox li{height:22px;line-height:22px;padding:0px 0px 0px 10px;float:left;display:inline-block; white-space:nowrap;}
.grzl-xapp .addbox .btn_del{ vertical-align:middle;}
/*设置头像*/
.sztx{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.sztx .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.sztx .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_sztx.png) no-repeat; text-indent:-999em;float:left;}
.sztx .main{width:798px;min-height:400px;_height:400px;padding:0px 1px 61px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.sztx .main .uploadbox{width:778px;background:#efefef;padding:10px;float:left;}
.sztx .main .uploadbox dt{width:70px;font-weight:bold;float:left;}
.sztx .main .uploadbox dd{width:708px;float:left;}
.sztx .main .uploadbox dd p{padding:0px 0px 15px 8px;line-height:20px;}
.sztx .main .photobox{width:618px;padding:30px 90px;float:left;}
.sztx .main .photobox .photo{width:300px;height:300px;text-align:left;border:1px #000 solid;background:url(http://static.yohobuy.com/images/photobox_bg.png);float:left;}
.sztx .main .photobox ul{padding-left:10px;float:left;}
.sztx .main .photobox ul li{padding-bottom:10px;}
.sztx .main .submit{clear:both;padding-left:80px;}
.sztx .main .submit p{padding:10px;}
/*评价晒物*/
.pjsw{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.pjsw .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.pjsw .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.pjsw .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_pjsw.png) no-repeat; text-indent:-999em;float:left;}
.pjsw .main .tab{width:778px;height:25px;background:url(http://static.yohobuy.com/images/tab_lan2.png) repeat-x 0px -25px;margin:10px 10px 10px 10px;display:inline;float:left;}
.pjsw .main .tab dt a{width:148px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan2.png) no-repeat -151px 0px;margin-right:3px;display:inline;color:#333;float:left;}
.pjsw .main .tab dt a.act{width:148px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan2.png) no-repeat 0px 0px;margin-right:3px;display:inline;color:#333;font-weight:bold;float:left;}
.pjsw .main .tab dd{float:right;}
.pjsw .main .list-m{width:778px;padding:0px 10px 0px 10px;float:left;}
.pjsw .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.pjsw-wypj{width:778px;padding:0px 10px 10px 10px;float:left;}
.pjsw-wypj h2{clear:both;height:19px;line-height:19px;padding:2px 0px 0px 23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;font-weight:normal;}
.pjsw-wypj .box{width:778px;margin-top:10px;background:url(http://static.yohobuy.com/images/line_dot_s.png) repeat-y 190px 0px;float:left;}
.pjsw-wypj .box .pic{width:180px;text-align:center;padding-right:20px;float:left;}
.pjsw-wypj .box .pic img{width:180px;height:240px;margin-bottom:10px;}
.pjsw-wypj .box .pic .oldprice{text-decoration:line-through;}
.pjsw-wypj .box .pic .newprice{color:#e8044f;font-weight:bold;}
.pjsw-wypj .box .info{width:578px;padding:10px 0px;float:left;}
.pjsw-wypj .box .info dl{width:578px;margin-bottom:10px;float:left;}
.pjsw-wypj .box .info dl dt{width:78px;text-align:right;float:left;}
.pjsw-wypj .box .info dl dd{width:500px;float:left;}
.pjsw-wypj .box .info .submit{width:500px;padding-left:78px;float:left;}
.zhiin {background: url(http://static.yohobuy.com/images/iconshow.png) 46px -23px no-repeat;width: 15px;height: 20px;position: absolute;z-index: 99;left: 2px;bottom: 2px;}
.zhiin3{background: url(http://static.yohobuy.com/images/iconshow.png) 44px -105px no-repeat;width: 15px;height: 20px;position: absolute;z-index: 99;left: 2px;bottom: 2px;}
/*YOHO币*/
.yohob{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.yohob .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.yohob .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.yohob .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_yohob.png) no-repeat; text-indent:-999em;float:left;}
.yohob .main .list-t{width:776px;height:25px;margin:0px 10px;display:inline;line-height:25px;border:1px #e6e6e6 solid;background:#efefef;float:left;}
.yohob .main .list-t .li-1{width:380px;padding:0px 10px;float:left; white-space:nowrap;overflow:hidden;}
.yohob .main .list-t .li-2{width:176px;float:left;}
.yohob .main .list-t .li-3{width:200px;float:left;}
.yohob .main .list-m{width:776px;margin:10px;display:inline;border:1px #e6e6e6 solid;border-bottom:0px;float:left;}
.yohob .main .list{width:776px;height:38px;line-height:38px;border-bottom:1px #e6e6e6 solid;float:left;}
.yohob .main .list-over{background:#efefef;}
.yohob .main .list .li-1{width:380px;padding:0px 10px;float:left; white-space:nowrap;overflow:hidden;}
.yohob .main .list .li-2{width:176px;float:left;}
.yohob .main .list .li-3{width:200px;float:left;}
.yohob .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.yohob .main h2{width:753px;margin:10px;display:inline;float:left;height:19px;line-height:19px;padding:2px 0px 0px 23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;font-weight:normal;}
.yohob .main .tips{width:758px;height:30px;line-height:30px;padding:0px 10px;margin:10px 10px 0px 10px;display:inline;background:url(http://static.yohobuy.com/images/tips_bg_778.png) no-repeat;font-weight:bold;float:left;overflow:hidden;}
.yohob .main .tips strong{font-size:16px;color:#e9034e;}
/*兑换礼品卡*/
.dhlpk{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.dhlpk .main{width:778px;padding:20px 11px 11px 11px;min-height:400px;_height:400px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.dhlpk .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.dhlpk .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_dhlpk.png) no-repeat; text-indent:-999em;float:left;}
.dhlpk .main dl{padding:0px 0px 20px 10px;}
.dhlpk .main dl .input_1{ vertical-align:middle;}
.dhlpk-ok{padding:50px 250px;}
.dhlpk-ok h3{font-size:18px;height:22px;line-height:25px;padding-left:25px;color:#000;}
.dhlpk-ok .success{background:url(http://static.yohobuy.com/images/ico_i_sf.png) no-repeat;}
.dhlpk-ok .fail{background:url(http://static.yohobuy.com/images/ico_i_sf.png) no-repeat 0px -22px;}
.dhlpk-ok p{padding:28px;}
.dhlpk-ok p strong{color:#e8044f;font-size:14px;}
/*购买咨询*/
.gmzx{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.gmzx .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.gmzx .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.gmzx .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_gmzx.png) no-repeat; text-indent:-999em;float:left;}
.gmzx .main .list-m{width:778px;padding:10px 10px 0px 10px;float:left;}
.gmzx .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.wenda{}
.wenda p{padding-left:20px;margin-top:5px;color:#999;}
.wenda .z-question{background:url(http://static.yohobuy.com/images/ico_wd.png) no-repeat -13px 2px;color:#e9034e;}
.wenda .z-reply{background:url(http://static.yohobuy.com/images/ico_wd.png) no-repeat 0px -25px;color:#339900;}
.gmzx .main .list-none{clear:both;padding:200px 0px;text-align:center;}
/*收藏夹*/
.scj{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.scj .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.scj .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.scj .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_scj.png) no-repeat; text-indent:-999em;float:left;}
.scj .main .tab{width:778px;height:25px;background:url(http://static.yohobuy.com/images/tab_lan2.png) repeat-x 0px -25px;margin:10px 10px 10px 10px;display:inline;float:left;}
.scj .main .tab a{width:98px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan3.png) no-repeat -101px 0px;margin-right:3px;display:inline;color:#333;float:left;}
.scj .main .tab a.act{width:98px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan3.png) no-repeat 0px 0px;margin-right:3px;display:inline;color:#333;font-weight:bold;float:left;}
.scj .main .list-m{width:778px;padding:0px 10px 0px 10px;float:left;}
.scj .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.scj .main h2{clear:both;min-height:21px;_height:21px;line-height:21px;padding-left:23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#ccc;font-weight:normal;margin-bottom:10px;}
.scj .main h2 a{color:#468fa2;display:inline-block;}
.scj .main h2 a.act{color:#e8044f;font-weight:bold;}
.scj .main .list-m table .act{background:#d0dce4;}
.scj .main .list-m .tablein .act{ background:none;}
.scj .main .list-box {width:788px;padding:0px 0px 0px 10px;float:left;}
.scj .main .list-box li{width:122px;height:148px;border:1px #e6e6e6 solid;margin:0px 7px 7px 0px;display:inline;float:left;overflow:hidden; position:relative;}
.scj .main .list-box .act{background:#d0dce4;}
.scj .main .list-box li img{width:80px;height:50px;display:block;margin:15px auto;}
.scj .main .list-box li h3{width:114px;height:18px;background:#f4f4f4;color:#333;font-size:12px;text-align:center;margin: 0 auto; white-space:nowrap;overflow:hidden;}
.scj .main .list-box li p{width:114px;height:18px;padding-top:10px;line-height:18px;color:#999;font-size:12px;text-align:center;margin: 0 auto; white-space:nowrap;overflow:hidden;}
.scj .main .list-box li b{height:20px;display:block;position:absolute;right:5px;bottom:0px;bottom:5px\9;line-height:20px;}
.scj .main .list-foot{width:776px;height:38px;background:#f8f8f8;border:1px #ccc solid;margin:10px;display:inline;float:left;}
.scj .main .list-foot .li-1{width:37px;padding-top:12px;*padding-top:8px;text-align:center;float:left;}
.scj .main .list-foot .li-2{width:500px;padding:10px 0px 1px 0px;float:left; }
.scj .main .list-foot .li-3{width:200px;padding:10px 10px 1px 0px;text-align:right;float:right; }
.scj .main .list-none{clear:both;padding:200px 0px;text-align:center;}
.imgbox{zoom:1; position:relative;}
.imgbox p{height:14px;line-height:14px;font-size:12px;padding:2px 0px 0px 0px\9;background:#e8044f;text-align:center;color:#fff; position:absolute;bottom:0px;left:0px;overflow:hidden;display:block;}
/*我的收藏*/
.wdsc{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;}
.wdsc .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;}
.wdsc .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;}
.wdsc .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_wdsc.png) no-repeat; text-indent:-999em;float:left;}
.wdsc .main .tab{width:768px;height:31px;padding:0px 0px 0px 10px;font-family:Arial,helvetica,sans-serif;background:url(http://static.yohobuy.com/images/tab_lan5.png) repeat-x 0px -31px;margin:10px auto;}
.wdsc .main .tab a{width:104px;height:31px;line-height:30px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan5.png) no-repeat -110px 0px;margin-right:6px;display:inline;color:#333;float:left;}
.wdsc .main .tab a.act{background:url(http://static.yohobuy.com/images/tab_lan5.png) no-repeat 0px 0px;color:#000;font-weight:bold;}
.wdsc .main .list-m{width:778px;padding:0px 0px 20px 0px;margin:0 auto;}
.wdsc .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;}
.wdsc .main .type{clear:both;padding:10px;min-height:20px;_height:20px;line-height:20px;background:#f3f3f3;border:1px #e6e6e6 solid;font-size:12px;color:#ccc;margin-bottom:10px;zoom:1;}
.wdsc .main .type:after{content: ""; display: block; clear: both; height: 0px;}
.wdsc .main .type dt{width:730px;float:left;}
.wdsc .main .type dt .act{height:20px;padding-left:18px;background:url(http://static.yohobuy.com/images/select_act.png) no-repeat left;display:inline-block;}
.wdsc .main .type dt .act span{height:20px;padding-right:5px;line-height:20px;color:#fff;font-weight:bold;background:url(http://static.yohobuy.com/images/select_act.png) no-repeat right;display:inline-block;cursor:pointer;}
.wdsc .main .type dt a{height:20px;line-height:20px;margin-right:10px;display:inline-block;}
.wdsc .main .type dd{width:20px;float:right;}
.wdsc .main .type .btn_down{width:19px;height:19px;background:url(http://static.yohobuy.com/images/btn_updown.png) no-repeat 0px 0px;display:block;}
.wdsc .main .type .btn_up{width:19px;height:19px;background:url(http://static.yohobuy.com/images/btn_updown.png) no-repeat 0px -19px;display:block;}
.wdsc .main .op{height:30px;}
.wdsc .main .op span{float:right;}
.wdsc .main .info{border:1px #e7e7e7 solid;padding:20px;margin-bottom:10px;zoom:1;}
.wdsc .main .info:after{content: ""; display: block; clear: both; height: 0px;}
.wdsc .main .info .txt{width:245px;float:left;}
.wdsc .main .info .txt h2{font-family:Arial,helvetica,sans-serif;color:#000;font-size:14px;}
.wdsc .main .info .txt p{padding:10px 0px 10px 0px;color:#999;}
.wdsc .main .info .pic{width:460px;float:right;}
.wdsc .main .list-b .left{padding:0px 0px 0px 10px;float:left;}
.wdsc .main .list-b .left a{background:none;color:#666;padding:0px;margin:0px;display:inline;}
.wdsc .main .list-b .left a:hover{background:none;color:#468fa2; text-decoration:underline; }
.wdsc .main .list-box{}
.wdsc .main .list-box .list-box-t{height:28px;line-height:28px;background:#efefef;border:1px #e6e6e6 solid;}
.wdsc .main .list-box .list-box-t .li-1{width:390px;padding-left:50px;float:left;}
.wdsc .main .list-box .list-box-t .li-2{width:200px;float:left;}
.wdsc .main .list-box .list-box-t .li-3{width:136px;text-align:center;float:left;}
.wdsc .main .list-box .list{clear:both;padding:10px 0px;border-bottom:1px #e6e6e6 solid;zoom:1;}
.wdsc .main .list-box .list:after{content: ""; display: block; clear: both; height: 0px;}
.wdsc .main .list-box .list .li-1{width:40px;padding:50px 0px 0px 10px;float:left;}
.wdsc .main .list-box .list .li-2{width:110px;padding:10px 0px 0px 0px;float:left;}
.wdsc .main .list-box .list .li-3{width:270px;padding:30px 0px 0px 0px;float:left;}
.wdsc .main .list-box .list .li-4{width:200px;padding:30px 0px 0px 10px;float:left;}
.wdsc .main .list-box .list .li-5{width:136px;padding:30px 0px 0px 0px;text-align:center;float:left;}
.wdsc .main .list-box .list strong{color:#e8044f;font-size:14px;}
.wdsc .main .list-box .list-over{background:#f3f3f3;}
.wdsc .main .list-box .list .li-m{width:616px;float:left;}
.wdsc .main .list-box .list .active{clear:both;padding:7px 0px 0px 0px;background:url(http://static.yohobuy.com/images/i_up_g.png) no-repeat 20px 0px;zoom:1;}
.wdsc .main .list-box .list .active:after{content: ""; display: block; clear: both; height: 0px;}
.wdsc .main .list-box .list .active ul{padding:10px 0px;border-top:1px #ccc dashed;zoom:1;}
.wdsc .main .list-box .list .active ul:after{content: ""; display: block; clear: both; height: 0px;}
.wdsc .main .list-box-none{text-align:center;font-family:Arial,helvetica,sans-serif;font-size:14px;border:1px #e7e7e7 solid;padding:40px;}
.wdsc .main .list-box-brand{}
.wdsc .main .list-box-brand .list-box-t{height:28px;line-height:28px;background:#efefef;border:1px #e6e6e6 solid;}
.wdsc .main .list-box-brand .list-box-t .li-1{width:190px;padding-left:50px;float:left;}
.wdsc .main .list-box-brand .list-box-t .li-2{width:200px;text-align:center;float:left;}
.wdsc .main .list-box-brand .list-box-t .li-3{width:200px;text-align:center;float:left;}
.wdsc .main .list-box-brand .list-box-t .li-4{width:136px;text-align:center;float:left;}
.wdsc .main .list-box-brand .list{clear:both;padding:20px 0px;border-bottom:1px #e6e6e6 solid;zoom:1;}
.wdsc .main .list-box-brand .list:after{content: ""; display: block; clear: both; height: 0px;}
.wdsc .main .list-box-brand .list .li-1{width:40px;padding:40px 0px 0px 10px;float:left;}
.wdsc .main .list-box-brand .list .li-2{width:190px;padding:0px 0px 0px 0px;float:left;}
.wdsc .main .list-box-brand .list .li-2 dl{width:115px;padding:5px;text-align:center;border:1px #f4f4f4 solid;}
.wdsc .main .list-box-brand .list .li-2 dl dt{padding:10px;}
.wdsc .main .list-box-brand .list .li-2 dl dt img{width:80px;height:50px;}
.wdsc .main .list-box-brand .list .li-2 dl dd{background:#f4f4f4;}
.wdsc .main .list-box-brand .list .li-3{width:200px;text-align:center;padding:40px 0px 0px 0px;float:left;}
.wdsc .main .list-box-brand .list .li-4{width:200px;text-align:center;padding:40px 0px 0px 0px;float:left;}
.wdsc .main .list-box-brand .list .li-5{width:136px;padding:35px 0px 0px 0px;text-align:center;float:left;}
.wdsc .main .list-box-brand .list .li-m{width:726px;float:left;}
.wdsc .main .list-box-brand .list .brand-xpdz{clear:both;padding:7px 0px 0px 0px;background:url(http://static.yohobuy.com/images/i_up_g.png) no-repeat 280px 0px;zoom:1;}
.wdsc .main .list-box-brand .list .brand-xpdz:after{content: ""; display: block; clear: both; height: 0px;}
.wdsc .main .list-box-brand .list .brand-xpdz-n{padding:20px 0px 0px 0px;border-top:1px #ccc dashed;zoom:1;}
.wdsc .main .list-box-brand .list .brand-xpdz-n:after{content: ""; display: block; clear: both; height: 0px;}
.wdsc .main .list-box-brand .list .brand-xpdz .pre{width:33px;text-align:left;height:100px;padding-top:40px;float:left;}
.wdsc .main .list-box-brand .list .brand-xpdz .next{width:33px;text-align:right;height:100px;padding-top:40px;float:left;}
.wdsc .main .list-box-brand .list .brand-xpdz ul{width:660px;height:165px;float:left;}
.wdsc .main .list-box-brand .list .brand-xpdz li{width:102px;height:165px;padding:0px 15px;float:left;}
.wdsc .main .list-box-brand .list .brand-xpdz li .thumb{height:110px;overflow:hidden;}
.wdsc .main .list-box-brand .list .brand-xpdz li .thumb img{width:100px;height:100px;border:1px #ccc solid;}
.wdsc .main .list-box-brand .list .brand-xpdz li .name{height:30px;line-height:15px;overflow:hidden;}
.wdsc .main .list-box-brand .list .brand-xpdz li .name h3{font-size:12px;font-weight:normal;}
.wdsc .main .list-box-brand .list .brand-xpdz li .price{height:20px;line-height:20px;}
/*我的信息*/
.wdxx{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;}
.wdxx .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;}
.wdxx .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;}
.wdxx .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_wdxx.png) no-repeat; text-indent:-999em;float:left;}
.wdxx .main .list-m{width:778px;padding:20px 0px 20px 0px;margin:0 auto;}
.wdxx .main .message{border-bottom:1px #ccc dashed;margin-bottom:20px;}
.wdxx .main .message dt{color:#333;padding-bottom:5px;}
.wdxx .main .message dd{color:#999;padding-bottom:10px;}
.wdxx .main .list-box{}
.wdxx .main .list-box-t{height:28px;line-height:28px;background:#efefef;border:1px #e6e6e6 solid;}
.wdxx .main .list-box-t .li-1{width:390px;padding-left:50px;float:left;}
.wdxx .main .list-box-t .li-2{width:200px;float:left;}
.wdxx .main .list-box-t .li-3{width:136px;text-align:center;float:left;}
.wdxx .main .list-box .list{clear:both;padding:10px 0px;border-bottom:1px #e6e6e6 solid;border-left:1px #e6e6e6 solid;border-right:1px #e6e6e6 solid;zoom:1;}
.wdxx .main .list-box .list:after{content: ""; display: block; clear: both; height: 0px;}
.wdxx .main .list-box .list .li-1{width:40px;padding:50px 0px 0px 10px;float:left;}
.wdxx .main .list-box .list .li-2{width:110px;padding:10px 0px 0px 0px;float:left;}
.wdxx .main .list-box .list .li-3{width:270px;padding:30px 0px 0px 0px;float:left;}
.wdxx .main .list-box .list .li-4{width:200px;padding:30px 0px 0px 10px;float:left;}
.wdxx .main .list-box .list .li-5{width:136px;padding:30px 0px 0px 0px;text-align:center;float:left;}
.wdxx .main .list-box .list strong{color:#e8044f;font-size:14px;}
.wdxx .main .list-box .list-over{background:#f3f3f3;}
.wdxx .main .list-box .list .li-m{width:616px;float:left;}
.wdxx .main .list-box .list .active{clear:both;padding:7px 0px 0px 0px;background:url(http://static.yohobuy.com/images/i_up_g.png) no-repeat 20px 0px;zoom:1;}
.wdxx .main .list-box .list .active:after{content: ""; display: block; clear: both; height: 0px;}
.wdxx .main .list-box .list .active ul{padding:10px 0px;border-top:1px #ccc dashed;zoom:1;}
.wdxx .main .list-box .list .active ul:after{content: ""; display: block; clear: both; height: 0px;}
.tz-win{width:280px;padding:20px;color:#333;}
.tz-win p{padding:0px 0px 10px 0px;}
.tz-win dt{width:65px;line-height:30px;float:left;}
.tz-win dd{width:215px;float:left;}
.tz-win .stat{clear:both;padding:10px 0px 0px 65px;}
.tz-win .submit{clear:both;padding:10px 0px 0px 65px;}
.tz-win-ok{width:200px;padding:20px 60px;color:#333;}
.tz-win-ok p{padding:0px 0px 10px 0px;}
.tz-win-ok strong{color:#e20d29;}
.tz-win-ok .submit{clear:both;padding:10px 0px 0px 0px;}
.tz-win-ok .error{min-height:22px;_height:22px;line-height:22px;display:inline-block;background:url(http://static.yohobuy.com/images/ico_i_sf_2.png) no-repeat 0px -22px;padding-left:25px;}
.tz-win-ok .correct{min-height:22px;_height:22px;line-height:22px;display:inline-block;background:url(http://static.yohobuy.com/images/ico_i_sf_2.png) no-repeat -22px 0px;padding-left:25px;}
/*抵金券优惠券*/
.djq{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.djq .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.djq .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.djq .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_djq.png) no-repeat; text-indent:-999em;float:left;}
.djq .main .list-m{width:778px;padding:10px 10px 10px 10px;float:left;}
.djq .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.djq .main .list-m .submit{clear:both;text-align:center;padding:10px 0px; }
.djq .main h3{font-size:14px;height:30px;line-height:30px;font-weight:bold;color:#333;}
/*促销推送*/
.cxts{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.cxts .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.cxts .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_cxts.png) no-repeat; text-indent:-999em;float:left;}
.cxts .main{width:778px;min-height:400px;_height:400px;padding:10px 11px 11px 11px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.cxts .main .tips{border:1px #efdda6 solid;background:#fdfcdd;padding:10px;margin-bottom:10px;}
.cxts .main .tips .input_1{width:200px;height:18px;line-height:18px;font-weight:bold;padding:0px 10px;}
.cxts .main .tips p{padding:5px 0px;}
.cxts .main h2{clear:both;height:21px;line-height:21px;padding-left:23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;font-weight:normal;}
.cxts .main .tips-email{width:758px;padding:10px;float:left;}
.cxts .main .tips-email h3{clear:both;height:30px;line-height:30px;font-size:12px;}
.cxts .main .tips-email dl{width:738px;line-height:20px;clear:both;padding:0px 10px 10px 10px;float:left;}
.cxts .main .tips-email dl dt{width:130px;float:left;}
.cxts .main .tips-email dl dd{width:608px;color:#999;float:left;}
.cxts .main .tips-email .order-email{background:url(http://static.yohobuy.com/images/line_dot_4.png) repeat-x bottom;float:left;}
.cxts .main .submit{clear:both;padding:10px;color:#999;}
/*我的投诉*/
.wdts{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.wdts .main{width:798px;padding:10px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.wdts .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.wdts .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_wdts.png) no-repeat; text-indent:-999em;float:left;}
.wdts .main .list-m{width:778px;padding:10px 10px 0px 10px;float:left;}
.wdts .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.wdts .main .list-t{width:776px;height:25px;margin:0px 10px;display:inline;line-height:25px;border:1px #e6e6e6 solid;background:#efefef;float:left;}
.wdts .main .list-t .li-1{width:286px;padding-left:10px;float:left;}
.wdts .main .list-t .li-2{width:480px;float:left;}
.wdts .main .list{width:756px;padding:10px;border:1px #e6e6e6 solid;margin-bottom:5px;float:left;}
.wdts .main .list .li-1{width:276px;float:left;}
.wdts .main .list .li-2{width:330px;padding-left:10px;float:left;}
.wdts .main .list .li-3{width:130px;padding-left:10px;color:#999;float:left;}
.wdts .main .list .li-2 p{padding-left:20px;margin-top:5px;color:#999;}
.wdts .main .list .li-2 .z-question{background:url(http://static.yohobuy.com/images/ico_sd.png) no-repeat -13px 2px;color:#e9034e;}
.wdts .main .list .li-2 .z-reply{background:url(http://static.yohobuy.com/images/ico_sd.png) no-repeat 0px -25px;color:#339900;}
.wdts .main .list-none{clear:both;padding:100px 0px;text-align:center;}
.wyts-form{width:778px;padding:10px;float:left;}
.wyts-form h2{clear:both;height:21px;line-height:21px;padding-left:23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;font-weight:normal;}
.wyts-form-main{padding:10px 0px;}
.wyts-form-main dl{padding:5px;margin-bottom:5px;}
.wyts-form-main dt{width:75px;color:#333;text-align:right;float:left;}
.wyts-form-submit{padding:0px 0px 10px 80px;}
/*我的退款*/
.wdtk{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.wdtk .main{width:798px;padding:10px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.wdtk .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.wdtk .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_wdtk.png) no-repeat; text-indent:-999em;float:left;}
.wdtk .main .list-m{width:778px;padding:10px 10px 0px 10px;float:left;}
.wdtk-form{width:778px;padding:10px;float:left;}
.wdtk-form h2{clear:both;height:21px;line-height:21px;padding-left:23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;font-weight:normal;}
.wdtk-form-main{padding:10px 0px 0px 0px;}
.wdtk-form-main dl{clear:both;width:766px;padding:5px;margin-bottom:5px;zoom:1;}
.wdtk-form-main dl:after{ content:""; display:block; clear:both; height:0; }
.wdtk-form-main dt{width:85px;color:#333;text-align:right;float:left;}
.wdtk-form-main dd{width:681px;float:left;}
.wdtk-form-submit{clear:both;padding:10px 0px 10px 90px;}
/*我的退换货*/
.wdthh{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.wdthh .main{width:798px;padding:10px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.wdthh .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.wdthh .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_wdthh.png) no-repeat; text-indent:-999em;float:left;}
.wdthh .main .list-m{width:778px;padding:10px 10px 0px 10px;float:left;}
.wdthh-form{width:778px;padding:10px;float:left;overflow:hidden;}
.wdthh-form h2{clear:both;height:21px;line-height:21px;padding-left:23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;font-weight:normal;}
.wdthh-form-main{padding:10px 0px 0px 0px;}
.wdthh-form-main dl{clear:both;width:766px;padding:5px;margin-bottom:5px;zoom:1;}
.wdthh-form-main dl:after{ content:""; display:block; clear:both; height:0; }
.wdthh-form-main dt{width:75px;color:#333;text-align:right;float:left;}
.wdthh-form-main dd{width:691px;float:left;}
.wdthh-form-main dd li{width:310px;height:64px;padding:8px 10px;background:#fff;border:1px #e7e7e7 solid;margin:0px 10px 10px 0px;display:inline;float:left;}
.wdthh-form-main dd .act{background:#faf7d9;border:1px #efdda6 solid;}
.wdthh-form-submit{clear:both;padding:10px 0px 10px 80px;}
.wdthh-form-main .size{display:inline-block; vertical-align:top;line-height:20px;}
.wdthh-form-main .selected-box{width:90px; vertical-align:top;position:relative;z-index:1;display:inline-block;margin:0px 5px 0px 0px;display:inline-block;}
.wdthh-form-main .selected{ position:absolute;top:0px;left:0px;height:18px;line-height:18px; border:1px #999 solid;padding:0px 15px 0px 5px;background:url(http://static.yohobuy.com/images/ico_select_down.png) right 7px no-repeat #fff;color:#666;z-index:3;display:inline-block;cursor:pointer;}
.wdthh-form-main .over{border-bottom:0px;z-index:3;}
.wdthh-form-main .size-box{ position:absolute;width:58px;top:18px;left:0px;border:1px #999 solid;padding:5px;background:#fff;z-index:2;display:none;}
.wdthh-form-main .size-box a{display:block;width:56px;border:1px #eee solid;margin-bottom:5px;text-align:center;cursor:pointer;}
.wdthh-form-main .size-box a:hover{ text-decoration:none;border:1px #ccc solid;}
.wdthh-form-main p{clear:both;}
/*地址管理*/
.dzgl{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.dzgl .main{width:798px;padding:10px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.dzgl .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.dzgl .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_dzgl.png) no-repeat; text-indent:-999em;float:left;}
.dzgl .main .list-m{width:776px;margin:0px 10px;display:inline;border:1px #e6e6e6 solid;border-bottom:0px;float:left;}
.dzgl .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.dzgl .main .list{width:756px;padding:10px;border-bottom:1px #e6e6e6 solid;float:left;}
.dzgl .main .list .li-1{width:596px;float:left;}
.dzgl .main .list .li-2{width:150px;padding:10px 0px 10px 10px;text-align:center;float:left;}
.dzgl .main .old{background:#fdfcdd;color:#333;}
.dzgl-form{width:778px;padding:10px;float:left;}
.dzgl-form h2{clear:both;height:21px;line-height:21px;padding-left:23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;font-weight:normal;}
.dzgl-form-main{padding:10px 0px;}
.dzgl-form-main dl{padding:5px;margin-bottom:5px;}
.dzgl-form-main dt{width:75px;color:#333;text-align:right;float:left;}
.dzgl-form-submit{padding:0px 0px 10px 80px;}
.dzgl .main .list-none{clear:both;padding:100px 0px;text-align:center;}
/*退货换货*/
.thhh{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.thhh .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.thhh .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.thhh .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_thhh.png) no-repeat; text-indent:-999em;float:left;}
.thhh .main .list-t{width:776px;height:25px;margin:10px 10px 0px 10px;display:inline;text-align:center;line-height:25px;border:1px #e6e6e6 solid;background:#efefef;float:left;}
.thhh .main .list-t .li-1{width:358px;padding-left:10px;text-align:left;float:left;}
.thhh .main .list-t .li-2{width:102px;float:left;}
.thhh .main .list-t .li-3{width:102px;float:left;}
.thhh .main .list-t .li-4{width:102px;float:left;}
.thhh .main .list-t .li-5{width:102px;float:left;}
.thhh .main .list-m{width:778px;padding:10px 10px 0px 10px;float:left;}
.thhh .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.thhh .main .jd-t{background:#efefef;padding:10px;}
.thhh .main .jd-m{width:672px;height:40px;background:url(http://static.yohobuy.com/images/jd_bg.png) no-repeat top center;margin:40px auto;}
.thhh .main .jd-m li{width:112px;padding:20px 0px 0px 0px;text-align:center;float:left;}
.thhh .main .jd-m .act{background:url(http://static.yohobuy.com/images/jd_act.png) no-repeat top center;}
.thhh .main .jd-hh{width:560px;background:url(http://static.yohobuy.com/images/jd_bg2.png) no-repeat top center;}
.thhh .main .jd-b{clear:both;padding:10px;}
.thhh .main .jd-b-title{height:21px;line-height:21px;padding-left:23px;background:url(http://static.yohobuy.com/images/ico_arrow2.png) no-repeat 5px 5px #efefef;border:1px #e6e6e6 solid;font-size:12px;color:#333;margin-bottom:10px;}
.thhh .main .jd-b-tips{color:#999;}
.thhh .main .jd-submit{padding:10px 10px 30px 10px;text-align:center;}
/*栏目说明*/
.lan-info{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.lan-info .main{width:778px;padding:10px 11px 11px 11px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.lan-info .title{width:780px;height:25px;padding:5px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_t.png) no-repeat top;float:left;}
.lan-info .title h2{height:25px;line-height:25px;border-bottom:1px #e3e3e3 solid;font-size:12px;}
/*右侧底部栏目意见*/
.lan-yj{clear:both;margin-bottom:10px;}
.lan-yj:after { content:""; display:block; clear:both; height:0; }
.lan-yj dt{height:20px;line-height:20px;background:url(http://static.yohobuy.com/images/ico_yj.png) no-repeat 2px 3px;padding:0px 0px 0px 20px;float:left;}
.lan-yj dt a{color:#468fa2;}
.lan-yj dd{float:right;}
.cart_zeng{background:#f8f8f8;}
.cart_zeng .cart_tableimg{padding-left:30px;background:url(http://static.yohobuy.com/images/ico_xs.png) 10px 35px no-repeat #f8f8f8;}
/*新增加 标签*/
.box dl.label_new {height: 16px;line-height: 16px;padding-bottom: 6px;}
.box dd .add_label a {background: #E6E6E6;display: block; float: left;margin: 0 5px 0 0;padding: 1px 8px;}
.box dd .label_words {display: block;float: left;margin-left: 10px;margin-top: 1px;}
.box dd .add_label a:hover{padding: 1px 8px; color:#ffffff; background: #E8044F; text-decoration:none;}
.ui-dialog{overflow:visible !important}
/*物流进度提示框*/
.f_logistics{display:inline-block;position:relative;padding:0px 5px;z-index:2;}
.f_logistics .logistics-tips{ position:absolute;left:-435px;top:-20px;color:#666;width:400px;display:block;text-align:left;background:#fff;padding:15px;border:1px #ccc solid;min-height:40px;_height:40px;}
.f_logistics .logistics-tips-ar{position:absolute;right:-8px;top:20px;width:8px;height:13px;background:url(http://static.yohobuy.com/images/logistics_tips_ar.png) no-repeat;overflow:hidden;}
.f_logistics .logistics-tips-x{position:absolute;right:5px;top:5px;width:9px;height:9px;background:url(http://static.yohobuy.com/images/i_x.png) no-repeat;overflow:hidden;}
.f_logistics .logistics-tips-txt{padding:5px 5px 5px 25px;line-height:16px;border:1px #fc0 solid;display:inline-block;background:url(http://static.yohobuy.com/images/i_tips.png) no-repeat 5px 3px #fffbec;margin-bottom:5px;}
.f_logistics .logistics-tips-warn{padding:5px 5px 5px 25px;line-height:16px;border:1px #7dc5fa solid;display:inline-block;background:url(http://static.yohobuy.com/images/i_warn.png) no-repeat 5px 4px #f2f8fe;margin-top:5px;}
.f_logistics .logistics-tips-yzm{clear:both;display:inline-block;margin-top:5px;}
/*取消订单页面css*/
.dialog-order-win{
padding:2px 20px 20px 20px;
}
.dialog-order-win dt{
font-size:14px;
padding:0 0 10px 0;
border-bottom: 1px #a7a7a7 dotted;
color:#000;
}
.dialog-order-win dd{
padding:10px 0 0 25px;
}
.dialog-order-win dd p{
line-height:28px;
height:28px;
}
.dialog-order-win dd p input{
vertical-align:top;
height:13px;
margin-top:7px;
_margin-top:2px;
}
.dialog-order-win dd p label{
padding-left:10px;
}
.dialog-order-win .submit{
padding:15px 0 0 25px;
}
.dialog-order-win .submit span{
}
.dialog-order-win dd p input.other{
width:170px;
padding:6px;
height:12px;
line-height:12px;
vertical-align:middle;
margin-left:15px;
margin-top:0px;
_padding:3px 6px;
border:1px solid #999;
}
.dialog-order-win .btn_type6{
margin-right:15px;
}
.dialog-order-win .btn_type6 a{
padding:0 20px;
font-weight:normal;
}
.btn_type6 a span{
background:none;
padding-right:0;
}
/*我的评论*/
.my_comment{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.my_comment .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.my_comment .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;float:left;}
.my_comment .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/v2/my_comment.png) no-repeat; text-indent:-999em;float:left;}
.my_comment .main .tab{width:778px;height:25px;background:url(http://static.yohobuy.com/images/tab_lan2.png) repeat-x 0px -25px;margin:10px 10px 10px 10px;display:inline;float:left;}
.my_comment .main .tab dt a{width:148px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan2.png) no-repeat -151px 0px;margin-right:3px;display:inline;color:#333;float:left;}
.my_comment .main .tab dt a.act{width:148px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan2.png) no-repeat 0px 0px;margin-right:3px;display:inline;color:#333;font-weight:bold;float:left;}
.my_comment .main .tab dd{float:right;}
.my_comment .main .list-m{width:778px;padding:0px 10px 0px 10px;float:left;}
.my_comment .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;float:left;}
.reply{padding:0px 0px 0px 20px;margin:0px;}
.reply_color{padding:0px 0px 0px 20px;margin:0px;color:#f07100;}
/*评论结束*/
/*我的优惠卷*/
.yhjzx{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;}
.yhjzx .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;}
.yhjzx .title{width:780px;height:28px;padding:12px 10px 0px 10px;background:url(http://static.yohobuy.com/images/k_r_tg2.png) no-repeat top;}
.yhjzx .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_djq.png) no-repeat; text-indent:-999em;float:left;}
.yhjzx .main .tab{width:778px;height:25px;background:url(http://static.yohobuy.com/images/tab_lan1.png) repeat-x 0px -25px;margin:10px auto;}
.yhjzx .main .tab a{width:88px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan1.png) no-repeat -92px 0px;margin-right:3px;display:inline;color:#333;float:left;}
.yhjzx .main .tab a.act{width:88px;height:25px;line-height:25px;text-align:center;background:url(http://static.yohobuy.com/images/tab_lan1.png) no-repeat 0px 0px;margin-right:3px;display:inline;color:#333;font-weight:bold;float:left;}
.yhjzx .main .list-t{width:776px;height:25px;text-align:center;line-height:25px;border:1px #e6e6e6 solid;background:#efefef;overflow:hidden;margin:0 auto;}
.yhjzx .main .list-t .li-1{width:129px;float:left;}
.yhjzx .main .list-t .li-2{width:129px;float:left;}
.yhjzx .main .list-t .li-3{width:129px;float:left;}
.yhjzx .main .list-t .li-4{width:129px;float:left;}
.yhjzx .main .list-t .li-5{width:129px;float:left;}
.yhjzx .main .list-t .li-6{width:129px;float:left;}
.yhjzx .main .list-t .li-7{width:129px;float:left;}
.yhjzx .main .list-t .li-11{width:194px;float:left;}
.yhjzx .main .list-t .li-12{width:194px;float:left;}
.yhjzx .main .list-t .li-13{width:194px;float:left;}
.yhjzx .main .list-t .li-14{width:194px;float:left;}
.yhjzx .main .list-t .li-15{width:194px;float:left;}
.yhjzx .main .list-t .li-16{width:150px;float:left;}
.yhjzx .main .list-m{width:778px;padding:10px 10px 0px 10px;margin:0 auto;}
.yhjzx .main .list-m a{margin:0px;}
.yhjzx .main .list-b{width:798px;padding:0px;background:#f3f3f3;border-top:1px #e3e3e3 solid ;margin:0 auto;}
/*优惠卷结束*/
/*yohood订单*/
.yohood_order{
border:4px solid #000;
}
.yohood_order thead{
background:#000;
color:#fff;
}
.yohood_order .yohood_img{
vertical-align:text-bottom;
margin:0 15px 0 5px;
}
.ddzx .main .list-m .cartnew_mark_pre_sale {
width: 60px;
height: 60px;
display: inline;
float: left;
overflow: hidden;
position: relative;
}
.ddzx .main .list-m .cartnew_mark_pre_sale span {
width: 100%;
height: 15px;
line-height: 15px;
position: absolute;
left: 0px;
bottom: 0px;
text-align: center;
color: #fff;
/*background: #a788c8;*/
background:url(http://static.yohobuy.com/images/v2/common/yohood_goods_icon.png) no-repeat;
display: block;
cursor: pointer;
}
.yohood_order .yohood_tips{
display:inline-block;
width:284px;
height:19px;
text-align:center;
margin-left:50px;
background:url(http://static.yohobuy.com/images/v2/activity/yohood_order_tips.png) no-repeat;
}
/*yohood订单结束*/
/*二维码按钮*/
.btn_2dcode{padding:0px 0px 0px 45px;height:34px;line-height:34px;border:0px;color:#fff;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/v2/common/btn_2dcode_view.png) no-repeat left 0px;display:inline-block;cursor:pointer;}
.btn_2dcode b{padding:0px 25px 0px 0px;height:34px;line-height:34px;color:#fff;text-align:center;font-size:14px;font-weight:bold;background:url(http://static.yohobuy.com/images/v2/common/btn_2dcode_view.png) no-repeat right 0px;display:inline-block;cursor:pointer;}
.btn_2dcode:hover{color:#fff;text-decoration:none}
/*优惠卷*/
.table1 td {color:#666;text-align: center;}
.f_brz{background: none repeat scroll 0 0 #E8044F;color: #FFFFFF;padding: 3px 10px;}
.f_yred{line-height:15px;color:#E8044F;}
/*退换货 New*/
.re_ex_tips {
padding: 20px;
border: 1px solid #E6E6E6;
margin: -10px 0 10px 0;
line-height: 21px;
color:#333;
}
.re_ex_tips p span{
color:#ff0000;
}
.my_return_tips{
margin:20px 0 0 0;
/*width:756px;*/
line-height:18px;
}
.my_return_tips .return_title{
width:180px;
height:18px;
padding:6px 25px;
margin-bottom:25px;
background:#7b7b7b;
font-size:18px;
color:#fff;
}
.my_return_tips .return_content{
padding:0px;
color:#666;
}
.my_return_tips .return_content img{
border:1px solid #fff;
}
.my_return_tips .right{
width:200px;
}
.my_return_tips .return_content .my_span{
display:block;
margin-top:15px;
}
.wdthh-form .re_ex_done{
border:1px solid #dadada;
background:#f5f5f5;
width:130px;
height:22px;
line-height:22px;
color:#999;
margin-left:30px;
}
.wdthh-form .re_ex_gift{
text-align:left;
width:195px;
margin-left:30px;
}
.wdthh-form .re_ex_select{
margin-left:30px;
}
.wdthh-form .re_ex_sum{
font-family:Microsoft YaHei;
padding-left:5px;
}
.wdthh-form td{
padding:10px 5px;
}
.re_pay_type{
padding:20px 0;
color:#333;
}
.re_pay_type p{
text-align:center;
}
.re_pay_type p input{
vertical-align:middle;
margin:0 5px 0 40px;
}
.re_pay_type .pay_type_switch{
margin-top:25px;
}
.re_pay_type .pay_tips{
margin-top:5px;
height:23px;
padding-top:12px;
color:#666;
}
.re_pay_type .pay_type_yoho .pay_tips{
width:515px;
margin-left:160px;
background:url(http://static.yohobuy.com/images/v2/common/re_ex_tips.png) no-repeat;
}
.re_pay_type .pay_type_bank .pay_tips{
width:290px;
margin-left:260px;
background:url(http://static.yohobuy.com/images/v2/common/re_ex_tips.png) no-repeat 0 -35px;
}
.re_pay_type .pay_type_alipay .pay_tips{
width:290px;
margin-left:260px;
background:url(http://static.yohobuy.com/images/v2/common/re_ex_tips.png) no-repeat 0 -70px;
}
.re_pay_type table{
margin:20px auto 0 auto;
width:100%;
}
.re_pay_type table td{
padding:5px 0 5px 5px;
}
.re_pay_type table .td1{
width:340px;
text-align:right;
}
.re_pay_type table .td2{
}
.re_pay_type table .td2 input{
width:150px;
height:20px;
border:1px solid #ccc;
}
.re_pay_type table .btn_b2{
margin-top:20px;
}
.re_pay_type .pay_type_yoho table .btn_b2{
margin-top:0px;
}
.re_pay_type table .pay_tips_bank{
margin-left:5px;
padding-left:15px;
color:#666;
background:url(http://static.yohobuy.com/images/v2/common/icon_warning_tips.png) no-repeat;
}
/*上传图片*/
.wdthh-form table.picbroder1 td{
border-bottom:none;
}
.wdthh-form table .picbroder2 td{
border-bottom:none;
}
.wdthh-form table .photo-list-container li{
float:left;
width:126px;
height:126px;
border:1px solid #ccc;
padding:2px;
}
.wdthh-form table .photo-list-container li.last{
margin-right:0;
}
.wdthh-form table .photo-list-container{
width: 560px;
height:135px;
background:url(http://static.yohobuy.com/images/v2/common/up_pic_bg1.png) repeat-x;
}
.wdthh-form table .photo-list-container li .btn_del{
right:-2px;
}
.wdthh-form table .photo-list-container li img{
width:126px;
}
.wdthh-form table .re_ex_pic .left_div{
width:80px;
}
.wdthh-form table .re_ex_pic .left .red_icon{
color:red;
}
.wdthh-form table .re_ex_pic .left .text_desc{
width:545px;
height:75px;
padding:5px;
border:1px solid #ccc;
margin-bottom:10px;
}
.wdthh-form table .re_ex_pic .left .re_ex_pic_tips{
background:#f5f5f5;
border:1px solid #ccc;
height:24px;
line-height:24px;
margin-bottom:15px;
padding-left:5px;
}
.wdthh-form table .upload_pic_tr td{
border-bottom:none;
}
.table_ex .ex_tips{
text-align:left;
padding-left:10px;
}
.table_ex .upload_pic_tr2 td{
padding-left:30px;
}
.ex_detail_info{
padding:30px 30px 10px 30px;
color:#333;
}
.ex_detail_info p{
font-weight:bold;
font-size:14px;
color:#333;
margin:10px 0;
}
.ex_detail_info .red_icon{
color:red;
}
.ex_detail_info .input_name{
width:140px;
border:1px solid #ccc;
height:22px;
line-height:22px;
padding:0 5px;
}
.ex_detail_info .input_addr{
width:320px;
border:1px solid #ccc;
height:22px;
line-height:22px;
padding:0 5px;
}
.ex_detail_info .delivery_type{
margin:20px 0 0 0 ;
}
.ex_detail_info .delivery_type input{
margin:0 5px 0 10px;
}
.ex_detail_info .delivery_type .delivery_input2{
margin-left:50px;
}
.ex_detail_info .vip_lever_3{
color:#999;
}
.ex_detail_info .delivery_type i{
color:red;
font-style:normal;
margin-left:20px;
padding-left:18px;
background:url(http://static.yohobuy.com/images/v2/common/icon_warning_tips_red.png) no-repeat;
}
/*我的退换货*/
.my_re_ex .table1{
border:none;
}
.my_re_ex table{
border-spacing:0;
border-collapse:collapse
}
.my_re_ex .table1 td{
padding:0;
}
.my_re_ex .table1 td{
border:none;
}
.my_re_ex .table1 th{
border-bottom:none;
}
.my_re_ex .table1 table td{
border:1px solid #e6e6e6;
}
.my_re_ex .table1 .table_goods td{
border:none;
padding:5px;
}
.my_re_ex .table1 .table_goods tr{
border-top:1px solid #e6e6e6;
}
.my_re_ex .table1 .table_goods tr.first{
border-top:none;
}
.thhh .main .jd-m{
background: url(http://static.yohobuy.com/images/v2/common/jd_bg.png) no-repeat top center;
width:560px;
}
.thhh .main .jd-m4{
background: url(http://static.yohobuy.com/images/v2/common/jd_bg4.png) no-repeat top center;
width:448px;
}
.thhh .main .jd-m3{
background: url(http://static.yohobuy.com/images/v2/common/jd_bg3.png) no-repeat top center;
width:336px;
}
.my_re_ex_detail .table1 td{
text-align:left;
padding:8px 10px;
border:none;
color:#333;
}
.my_re_ex_detail .table1 tr{
border:1px solid #e6e6e6
}
.my_re_ex_detail .delevery_code_input{
margin:60px auto;
text-align:center;
}
.my_re_ex_detail .delevery_code_input input{
height:22px;
width:200px;
padding:0 5px;
margin: 0 10px;
}
.my_re_ex_detail .delevery_code_input button{
padding:5px 15px;
}
.upload_outer .uploadify{
position: relative;
}
.upload_outer .swfupload{
left: 0;
}
/*微信支付提示css*/
.dialog-wx-win{
padding:2px 20px 20px 20px;
}
.dialog-wx-win .notes{
width :320px;
padding-left:80px;
background: url(http://static.yohobuy.com/images/wx_pay_07.png) no-repeat 0 0;
margin:30px auto;
}
.dialog-wx-win .notes dl{
color:#222222;
font-weight:500;
font-family:"黑体";
}
.dialog-wx-win .notes dl dt{
font-size:20px;
}
.dialog-wx-win .notes dl dd{
font-size:16px;
margin-top:10px;
}
.dialog-wx-win p{
text-align:center;
}