style.css
103 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
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
/******************************************************************/
.select-news{width:188px;font-family:Arial,helvetica,sans-serif;float:left;}
.select-news .gender{width:188px; bottom repeat-x;float:left;font-family:Arial,helvetica,sans-serif;font-size:10px;padding-bottom:5px;}
.select-news .gender a{width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png);margin-bottom:3px;display:inline;text-align:center}
.select-news .gender .all{color:#666; width:57px;height:24px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png) no-repeat 0px 0px;margin-right:3px;display:inline;float:left;text-align:center}
.select-news .gender .all:hover{color:#666;}
.select-news .gender .all-act{color:#fff; width:57px;height:24px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png) no-repeat 0px -28px;margin-right:3px;display:inline;float:left;}
.select-news .gender .all-act:hover{color:#fff;}
.select-news .gender .all-none{color:#b5b5b5; width:50px;height:24px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png) no-repeat 0px -44px;margin-right:3px;display:inline;float:left;cursor:default;}
.select-news .gender .all-none:hover{color:#b5b5b5;}
.select-news .gender .boy{color:#666;width:57px;height:24px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png) no-repeat -66px 0px;margin-right:3px;display:inline;float:left;}
.select-news .gender .boy:hover{color:#666;}
.select-news .gender .boy-act{color:#fff;width:57px; height:24px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png) no-repeat -66px -28px;margin-right:3px;display:inline;float:left;}
.select-news .gender .boy-act:hover{color:#fff;}
.select-news .gender .boy-none{color:#b5b5b5; width:57px;height:24px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png) no-repeat -64px -28px;margin-right:3px;display:inline;float:left;cursor:default;}
.select-news .gender .boy-none:hover{color:#b5b5b5;}
.select-news .gender .girl{color:#666;width:57px;height:24px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png) no-repeat -132px 0px;display:inline;float:left;}
.select-news .gender .girl:hover{color:#666;}
.select-news .gender .girl-act{color:#fff;width:57px;height:24px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png) no-repeat -132px -28px;display:inline;float:left;}
.select-news .gender .girl-act:hover{color:#fff;}
.select-news .gender .girl-none{color:#b5b5b5;width:57px;height:24px;line-height:21px;background:url(http://static.yohobuy.com/images/outlet_gender_new.png) no-repeat -132px -28px;display:inline;float:left;cursor:default;}
.select-news .gender .girl-none:hover{color:#b5b5b5;}
.select-news .gender a:hover{ text-decoration:none;}
/*边选类别选择*/
.select-box{width:160px;padding:10px;background:#eee;margin-bottom:10px;font-family:Arial,helvetica,sans-serif;float:left;}
.select-box .title{width:160px;height:22px;font-weight:bold;color:#333;line-height:120%;margin-bottom:8px;float:left;}
.select-box .gender-title{background:url(http://static.yohobuy.com/images/ez_gender.png) no-repeat left bottom;}
.select-box .series-title{background:url(http://static.yohobuy.com/images/ez_series.png) no-repeat left bottom;}
.select-box .category-title{background:url(http://static.yohobuy.com/images/ez_category.png) no-repeat left bottom;}
.select-box .gender{width:160px;padding-bottom:10px;margin-bottom:10px;background:url(http://static.yohobuy.com/images/line_dot_4.png) bottom repeat-x;float:left;font-family:Arial,helvetica,sans-serif;font-size:10px;text-align:center}
.select-box .gender a{width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png);margin-bottom:3px;display:inline;font-align:center;}
.select-box .gender .all{color:#666; width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png) no-repeat 0px 0px;margin-right:3px;display:inline;float:left;}
.select-box .gender .all:hover{color:#666;}
.select-box .gender .all-act{color:#fff; width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png) no-repeat 0px -22px;margin-right:3px;display:inline;float:left;}
.select-box .gender .all-act:hover{color:#fff;}
.select-box .gender .all-none{color:#b5b5b5; width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png) no-repeat 0px -44px;margin-right:3px;display:inline;float:left;cursor:default;}
.select-box .gender .all-none:hover{color:#b5b5b5;}
.select-box .gender .boy{color:#666; width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png) no-repeat -54px 0px;margin-right:3px;display:inline;float:left;}
.select-box .gender .boy:hover{color:#666;}
.select-box .gender .boy-act{color:#fff;width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png) no-repeat -54px -22px;margin-right:3px;display:inline;float:left;}
.select-box .gender .boy-act:hover{color:#fff;}
.select-box .gender .boy-none{color:#b5b5b5;width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png) no-repeat -54px -44px;margin-right:3px;display:inline;float:left;cursor:default;}
.select-box .gender .boy-none:hover{color:#b5b5b5;}
.select-box .gender .girl{color:#666; margin:0px;width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png) no-repeat -108px 0px;margin-right:3px;display:inline;float:left;}
.select-box .gender .girl:hover{color:#666;}
.select-box .gender .girl-act{color:#fff; margin:0px;width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png) no-repeat -108px -22px;margin-right:3px;display:inline;float:left;}
.select-box .gender .girl-act:hover{color:#fff;}
.select-box .gender .girl-none{color:#b5b5b5; margin:0px;width:50px;height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/gender.png) no-repeat -108px -44px;margin-right:3px;display:inline;float:left;cursor:default;}
.select-box .gender .girl-none:hover{color:#b5b5b5;}
.select-box .gender a:hover{ text-decoration:none;}
.select-box .category{width:160px;padding-bottom:10px;margin-bottom:10px;background:url(http://static.yohobuy.com/images/line_dot_4.png) bottom repeat-x;float:left;}
.select-box .category ul li{width:160px;height:auto;line-height:0px;cursor:pointer;float:left;}
.select-box .category ul li span{cursor:pointer;}
.select-box .category .a1{width:140px;height:18px;line-height:18px;padding:2px 0px 0px 20px;margin-top:3px;background:url(http://static.yohobuy.com/images/category_li.png) no-repeat;color:#000;float:left;overflow:hidden;}
.select-box .category .act .a1{background:url(http://static.yohobuy.com/images/category_li.png) no-repeat 0px -20px;color:#fff;}
.select-box .category .u1{width:160px;padding:0px;float:left;}
.select-box .category .u1 li a{ width:130px;height:18px;line-height:18px;padding:2px 0px 0px 30px;background:url(http://static.yohobuy.com/images/category_li.png) no-repeat 0px -40px;color:#333;margin-top:1px;float:left;white-space:nowrap;overflow:hidden;}
.select-box .category .u1 li .act{ width:130px;height:18px;line-height:18px;padding:2px 0px 0px 30px;background:url(http://static.yohobuy.com/images/category_li.png) no-repeat 0px -60px;color:#fff;margin-top:1px;float:left;}
.select-box .category .u1 li .act:hover{text-decoration:none;}
.select-box .category .u1 li .a2{ width:130px;height:18px;line-height:18px;padding:2px 0px 0px 30px;background:url(http://static.yohobuy.com/images/category_li.png) no-repeat 0px -40px;text-decoration:none;color:#333;margin-top:1px;float:left;white-space:nowrap;overflow:hidden;}
.select-box .category .u1 li .act .a2{ background:url(http://static.yohobuy.com/images/category_li.png) no-repeat 0px -60px;text-decoration:none;color:#fff;font-weight:bold;margin-top:1px;}
.select-box .category .u1 li .a2:hover{text-decoration:underline;}
.select-box .category .u2{width:160px;padding:0px;float:left;}
.select-box .category .u2 li a{ width:115px;height:18px;line-height:18px;padding:2px 0px 0px 45px;background:url(http://static.yohobuy.com/images/category_li.png) no-repeat 0px -80px;text-decoration:none;margin-top:1px;float:left;white-space:nowrap;overflow:hidden;}
.select-box .category .u2 li a:hover{text-decoration:underline;}
.select-box .category .u2 li .act{ width:115px;height:18px;line-height:18px;padding:2px 0px 0px 45px;background:url(http://static.yohobuy.com/images/category_li.png) no-repeat 0px -100px;text-decoration:none;color:#fff;font-weight:bold;margin-top:1px;}
.select-box .category .u1 .collapsable .a2{font-weight:bold;}
.select-box .category .u2 li .a_more,.select-box .category .u2 li .a_more:hover{margin:3px 0px 0px 47px;display:inline;width:56px;height:20px;padding:2px 0px 0px 20px;line-height:18px;border:0px;text-align:left;background:url(http://static.yohobuy.com/images/btn_more.png) no-repeat;color:#666;font-size:12px;cursor:pointer;float:left;font-weight:normal; text-decoration:none;}
.select-box .category a:hover .a1,.select-box .category a:hover .a2,.select-box .category .a1:hover,.select-box .category .a2:hover,.select-box .category .hover{ text-decoration:underline;}
.select-box .category .act:hover span{text-decoration:none;}
.select-box .category .expandable{background:url(http://static.yohobuy.com/images/tree_expandable2.png) no-repeat top right;}
.select-box .category .collapsable{background:url(http://static.yohobuy.com/images/tree_collapsable2.png) no-repeat top right;}
.select-box .category .u1 .expandable{background:url(http://static.yohobuy.com/images/tree_expandable2.png) no-repeat -2px right;}
.select-box .category .u1 .collapsable{background:url(http://static.yohobuy.com/images/tree_collapsable2.png) no-repeat -2px right;}
.select-box a{color:#666;text-decoration:none;}
.select-box a:hover{color:#666;text-decoration:underline;}
.select-box .end{background:none;padding-bottom:10px;margin-bottom:0px;}
/*小框架*/
.ks-box{width:180px;height:auto;background:url(http://static.yohobuy.com/images/ks_m.png) repeat-y;margin-bottom:10px;float:left;}
.ks-box-m{width:180px;background:url(http://static.yohobuy.com/images/ks_b.png) no-repeat bottom;float:left;}
.ks-box-n{width:176px;height:auto;background:url(http://static.yohobuy.com/images/ks_t.png) no-repeat top;padding:2px;float:left;}
/*右侧大框架*/
.k-box{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.k-box .k-m{width:800px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.k-box .k-m .k-n{width:798px;background:url(http://static.yohobuy.com/images/k_r_t.png) no-repeat top;padding:1px;float:left;}
/*品牌推荐*/
.brand-tj{width:176px;float:left;}
.brand-tj .title{width:176px;text-align:center;padding:10px 0px;border-bottom:2px #e3e3e3 solid;float:left;}
.brand-tj .title h2{display:none;}
.brand-tj .select-box{width:160px;padding:8px;background:#fff;margin-bottom:10px;float:left;}
.brand-tj .select-box .category{background:none;padding-bottom:0px;margin-bottom:0px;}
.brand-tj p{text-align:center;padding:10px 0px;}
.brand-tj .main{width:176px;border-top:2px #e3e3e3 solid;float:left;}
.brand-tj .main ul{padding:0px 8px;}
.brand-tj .main ul li{width:160px;height:auto;line-height:0px;border-bottom:1px #ccc dotted;cursor:pointer;}
.brand-tj .main ul li a{width:160px;height:28px;line-height:28px;background:url(http://static.yohobuy.com/images/ico_ar_right.png) no-repeat 150px 10px;text-decoration:none;color:#666;overflow:hidden;display:block;}
.brand-tj .main li a:hover{color:#468fa2; text-decoration:underline;}
/*品牌相关*/
.brand-xg{width:160px;padding:8px 8px 15px 8px;border-top:2px #e3e3e3 solid;float:left;}
.brand-xg .title{width:160px;height:30px;float:left;}
.brand-xg .title h2{width:160px;height:24px;background:url(http://static.yohobuy.com/images/z_xgpp.png) no-repeat; text-indent:-999em;float:left;}
.brand-xg li{width:140px;height:24px;line-height:24px;padding-left:20px;background:url(http://static.yohobuy.com/images/ico_arf.png) no-repeat 3px 8px;float:left; white-space:nowrap;overflow:hidden;}
/*浏览其他*/
.llqt{width:160px;padding:8px 8px 15px 8px;float:left;}
.llqt .title{width:160px;height:30px;float:left;}
.llqt .title h2{width:160px;height:24px;background:url(http://static.yohobuy.com/images/z_llqt.png) no-repeat; text-indent:-999em;float:left;}
.llqt .main{width:160px;float:left;}
.llqt li{}
.llqt .list{width:150px;height:250px;padding:5px;overflow:hidden;text-align:center;margin:0 auto;}
.llqt .list .thumb{height:210px;}
.llqt .list .thumb img{width:150px;height:200px;}
.llqt .list .name{height:15px; white-space:nowrap;overflow:hidden;}
.llqt .list .name h3{height:15px;line-height:15px;font-size:12px;font-weight:normal;color:#bababa;}
.llqt .list .name a{color:#bababa;text-decoration:none;}
.llqt .list .price{color:#333;height:15px;line-height:15px;font-weight:bold; white-space:nowrap;overflow:hidden;}
.llqt .list .price del{color:#999;}
/*搜索条件*/
.search-condition{color:#333;margin-bottom:20px;}
.search-condition table{border-collapse:collapse;width:100%;}
.search-condition .dt{width:60px;line-height:20px;font-weight:bold; vertical-align:top;}
.search-condition .all{width:70px;vertical-align:top;}
.search-condition .all .act{font-weight:bold;color:#000;background:none;padding:0px;}
.search-condition .all .act span{background:none;color:#000;padding:0px;}
.search-condition .act{height:20px;padding-left:18px;background:url(http://static.yohobuy.com/images/search_select.png) no-repeat left;display:inline-block;}
.search-condition .act span{height:20px;padding-right:5px;line-height:20px;color:#fff;font-weight:bold;background:url(http://static.yohobuy.com/images/search_select.png) no-repeat right;display:inline-block;cursor:pointer;}
.search-condition a{height:20px;margin-right:10px;display:inline-block;}
.search-condition .act:hover{ text-decoration:none;}
.search-condition dl{clear:both;height:auto !important;min-height:22px;_height:20px;margin-top:5px;padding:0px 0px 5px 0px;background:url(http://static.yohobuy.com/images/line_dot.png) repeat-x bottom;}
.search-condition dl:after{content: ""; display: block; clear: both; height: 0px;}
.search-condition .brand-title{width:40px;font-weight:bold;vertical-align:top;}
.search-condition .color-box{overflow:hidden;}
.search-condition .color-box a{width:18px;height:18px;border:1px #aeaeae solid;margin:0px;float:left;overflow:hidden;}
.search-condition .color-box a:hover{border:1px #333 solid;}
.search-condition .color-box .act{width:12px;height:12px;border:2px #333 solid;padding:2px;background:#fff;overflow:hidden;}
.search-condition .color-box .act a{width:12px;height:12px;border:0px;overflow:hidden;}
.search-condition .color-box .act a:hover{border:0px;}
.search-condition .color-box li{width:20px;height:20px;margin:0px 4px 4px 0px;display:inline;overflow:hidden;float:left;}
.search-condition .price-box{height:26px;height:26px!important;}
.search-condition .price-box .tt{line-height:26px;}
.search-condition .price-box table{border-collapse:collapse;width:100%;}
.search-condition .price-range{width:300px;height:20px;padding:5px 20px 0px 20px;float:left;}
.search-condition .tt{ width:45px;font-weight:bold;float:left;}
.search-condition .con{text-align:left;float:left;}
.search-condition .price-submit{width:200px;padding-left:10px;float:left;}
.search-condition .price-submit span{color:#999;}
.search-condition .more{ width:78px; text-align:right;float:right;}
.search-condition .a_close{margin:0px;}
.search-condition .a_more{margin:0px;}
/*商品列表*/
.pr-listbox{clear:both;border:0px #ccc solid;margin-bottom:10px;}
.pr-listbox .title{height:30px;padding:9px 10px 0px 10px;background:#efefef;color:#333;line-height:22px;border:1px #ccc solid; margin:0px -1px -1px 0px;_margin:0px;}
.pr-listbox .title h2{font-size:18px;}
.pr-listbox .title .page-r{height:22px;line-height:22px;overflow:hidden;float:right;}
.pr-listbox .main{border-right:1px #ccc solid;margin:0px -1px 0px 0px;_margin:0px;height:auto!important;min-height:275px;_height:275px;}
.pr-listbox .main:after { content:""; display:block; clear:both; height:0; }
.pr-listbox ul{display:block;height:auto !important;min-height:290px;_height:290px;}
.pr-listbox li{width:200px;float:left;}
.pr-listbox .list{height:330px;padding:0px;border:1px #ccc solid;margin:0px -1px -1px 0px; position:relative;z-index:1;}
.pr-listbox .stock{width:100%;height:auto;position:absolute;bottom:80px;left:0px;}
.stock span{width:180px;height:16px;background:url(http://static.yohobuy.com/images/v2/common/i_status.png) no-repeat;margin:0 auto;display:block; text-indent:-999px;overflow:hidden;}
.stock .i_1{background-position:0px 0px;}
.stock .i_2{background-position:0px -16px;}
.stock .i_3{background-position:0px -32px;}
.stock .i_4{background-position:0px -48px;}
.stock .i_5{background-position:0px -64px;}
.stock .i_6{background-position:0px -80px;}
.stock .i_7{background-position:0px -96px;}
.pr-listbox .thumb{height:250px;padding-top:10px;text-align:center;}
.pr-listbox .thumb img{width:180px;height:240px; vertical-align:top;}
.pr-listbox .name{width:180px;height:30px;line-height:15px;overflow:hidden;margin:0 auto;cursor:pointer;}
.pr-listbox .name h3{font-size:12px;font-weight:normal;display:inline;}
.pr-listbox .name strong{display:inline;}
.pr-listbox .price{width:180px;height:15px;line-height:15px;font-weight:bold;overflow:hidden;margin:0 auto;}
.pr-listbox .price del{color:#999;}
.pr-listbox .list:hover img{filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8;}
.pr-listbox .page{height:23px;background:#efefef;border:1px #ccc solid;margin:0px -1px -1px 0px;_margin:0px; }
.pr-listbox .list .colorList{display:none;}
.pr-listbox .list-none {clear:both;padding:150px 0;text-align: center;border-left:1px #ccc solid;}
.pr-listbox .list-none strong{color:#e8044f;}
#colorPopBox{display: none;position: absolute;z-index: 15;background-color:#fff;padding:10px;margin: -10px 0px 0px -10px;border: 1px solid #888;}
#colorPopBox .innerDetail{float:left;position: relative;border-right: 1px #ccc solid;}
#colorPopBox .colorList{float:left;background-color: #fff;padding: 9px 0px 0px 15px;overflow: hidden;}
#colorPopBox .colorList li{width:60px;padding-bottom:5px;}
.colorpop a:hover img{filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8;}
.colorpop:after{content: ""; display: block; clear: both; height: 0px;}
.colorpop{/display: inline-block;}
.tjgoodslist{display:block;}
.tjgoodslist li{width: 16.6%;float:left;}
.tjgoodslist .tj-list{width:110px;height:155px;padding:15px 0px 0px 0px;overflow:hidden;text-align:center;margin:0 auto;}
.tjgoodslist .tj-list .thumb{height:110px;}
.tjgoodslist .tj-list .thumb img{width:100px;height:100px;}
.tjgoodslist .tj-list .name{height:15px; white-space:nowrap;overflow:hidden;}
.tjgoodslist .tj-list .name h3{height:15px;line-height:15px;font-size:12px;font-weight:normal;color:#bababa;}
.tjgoodslist .tj-list .name a{color:#bababa;text-decoration:none;}
.tjgoodslist .tj-list .price{color:#333;height:15px;line-height:15px;font-weight:bold; white-space:nowrap;overflow:hidden;}
.tjgoodslist .tj-list .price del{color:#999;}
.tjgoodslist .tj-list .f_outlet{display:block;}
/*热销推荐*/
.rxtj{height:220px;border:1px #ccc solid;margin-bottom:10px;overflow:hidden;}
.rxtj:after { content:""; display:block; clear:both; height:0; }
.rxtj .main{}
.rxtj .title{height:29px;padding:10px 10px 0px 10px;background:#efefef;border-bottom:1px #ccc solid;}
.rxtj .title h2{width:126px;height:15px;background:url(http://static.yohobuy.com/images/z_rxtj.png) no-repeat; text-indent:-999em;float:left;}
.rxtj .title .page-r{width:45px;height:22px;line-height:22px;overflow:hidden;float:right;}
.rxtj .title .page-r .pre{width:23px;height:22px;float:left;}
.rxtj .title .page-r .next{width:22px;height:22px;float:left;}
/*最近浏览*/
.zjll{height:220px;border:1px #ccc solid;margin-bottom:10px;overflow:hidden;}
.zjll .main{}
.zjll .title{height:29px;padding:10px 10px 0px 10px;background:#efefef;border-bottom:1px #ccc solid;}
.zjll .title h2{width:315px;height:15px;background:url(http://static.yohobuy.com/images/z_zjll.png) no-repeat; text-indent:-999em;float:left;}
.zjll-gm .title h2{background:url(http://static.yohobuy.com/images/z_gmggsp.png) no-repeat;}
.zjll .title .page-r{width:45px;height:22px;line-height:22px;overflow:hidden;float:right;}
.zjll .title .page-r .pre{width:23px;height:22px;float:left;}
.zjll .title .page-r .next{width:22px;height:22px;float:left;}
.buycart{left:450px;top:-520px;clear:both;padding-top:10px; position:relative;z-index:98; margin-left:20px;}
.buycart .buy-win{position:relative;left:-70px;width:320px;background:#fff;border:2px #ccc solid;}
.buycart .buy-win .title {border:0px;}
.buycart .buy-win p {padding: 0 0 10px 30px;}
.buycart .buy-win .btn_type6 a{padding:0 20px;}
/*指数*/
.exp{padding:10px 0 5px 0;z-index:2}
.exp dl{height:20px;line-height:20px;clear:both;}
.exp dt{width:65px;height:20px;color:#333;float:left;}
.exp dd{width:95px;height:17px;margin-top:3px;float:left;}
.exp dd b{width:12px;height:12px;margin-right:5px;display:inline;float:left;overflow:hidden;}
.exp dd i{width:12px;height:12px;background:url(http://static.yohobuy.com/images/exp_0.png) no-repeat;margin-right:5px;display:inline;float:left;overflow:hidden;}
.exp dl .val{width:20px;height:20px;margin-top:0px;font-weight:bold;font-size:14px;float:left;}
.exp .exp_1 b{background:url(http://static.yohobuy.com/images/exp_1.png) no-repeat;}
.exp .exp_2 b{background:url(http://static.yohobuy.com/images/exp_2.png) no-repeat;}
.exp .exp_3 b{background:url(http://static.yohobuy.com/images/exp_3.png) no-repeat;}
.exp .exp_1 .val{color:#f6b417;}
.exp .exp_2 .val{color:#add010;}
.exp .exp_3 .val{color:#10c9df;}
/*分享到*/
.fenxiang{height:15px; border-top:1px dotted #CCCCCC;}
.fenxiang p{ float:left; margin-top:5px;}
.fenxiang a{ margin-left:8px; width:16px; height:16px; display:block; cursor:pointer; float:left; margin-top:5px;}
.stico_renren{background:url(http://static.yohobuy.com/images/shangpin/c20_014.png) no-repeat;}
.stico_tsina{background:url(http://static.yohobuy.com/images/shangpin/c20_018.png) no-repeat;}
.stico_douban{background:url(http://static.yohobuy.com/images/shangpin/c20_005.png) no-repeat;}
.stico_kaixin001{background:url(http://static.yohobuy.com/images/shangpin/c20_009.png) no-repeat;}
.stico_tqq{ background:url(http://static.yohobuy.com/images/shangpin/c20_012.png) no-repeat; }
.stico_yoyo {background:url(http://static.yoho.cn/yohobuy/images/yoyo_btn.jpg) no-repeat scroll 0 0 transparent;}
/****************************************************************************/
/*自拍图片list*/
.zppiclist{padding-bottom:6px;}
.zppiclist .title{height:22px;padding:5px 0px 5px 10px;border-bottom:1px #ccc solid;color:#333;line-height:22px;}
.zppiclist .title .page-r{height:22px;line-height:22px;overflow:hidden;float:right;}
.zppiclist .page{padding-right:0px;}
.zppiclist .main{margin-top:10px;padding:0px 0px 10px 0px;border-bottom:1px #ccc solid;color:#333;}
.zppiclist .main li{padding:5px 5px 5px 5px;float:left;}
.zppiclist .main li img{width:150px;}
.zppiclist .main ul{width:160px;float:left;}
/*自拍详情*/
.zpdetail{ position:relative;height:auto !important;min-height:300px;_height:300px;}
.zpdetail .zp-left{width:642px;padding:0px 28px 0px 20px;float:left;}
.zpdetail .zp-right{width:300px;float:left;}
.zpdetail .zp-left .pic ol{overflow:hidden;width:640px;height:420px;display:block;border:1px #ccc solid;background:#f8f8f8;}
.zpdetail .zp-left .pic ol span{width:640px;height:420px;line-height:420px;display:table-cell;vertical-align:middle;text-align:center;*display:block;*font-size:367px;*font-family:Arial,helvetica,sans-serif;}
.zpdetail .zp-left .pic ul{clear:both;padding-top:10px;}
.zpdetail .zp-left .pic ul li{width:107px;padding:0px 0px 10px 0px;text-align:center;float:left;}
.zpdetail .zp-left .pic ul li img{width:100px;height:75px;border:1px #999 solid;}
.zpdetail .zp-left .pic ul .act img{border:2px #000 solid;}
.zpdetail .zp-left .pic ul li:hover img{filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8;}
.zpdetail .zp-left .pic p{padding:0px 0px 10px 0px;clear:both;}
.zpdetail .zp-right .info dt{width:70px;float:left;}
.zpdetail .zp-right .info dt img{width:60px;height:60px; vertical-align:top;border:1px #999 solid;}
.zpdetail .zp-right .info dd{width:140px;line-height:17px;float:left; white-space:nowrap;overflow:hidden;}
.zpdetail .zp-right .info .btn_h{margin-top:5px;}
.zpdetail .zp-right .info p{padding:5px 0px;clear:both;}
.zpdetail .zp-right .pic{clear:both;margin:5px 0px 15px 0px;}
.zpdetail .zp-right .pic:after { content:""; display:block; clear:both; height:0; }
.zpdetail .zp-right .pic h3{line-height:30px;font-size:12px;color:#333;}
.zpdetail .zp-right .pic ul li{padding:0px 10px 0px 0px;float:left;}
.zpdetail .zp-right .pic ul li img{width:100px;height:75px;border:1px #999 solid;}
.zpdetail .next{ position:absolute;right:20px;top:180px;width:60px;height:60px;}
/*自拍详情评论*/
.pl{}
.pl .title{line-height:30px;font-weight:bold;color:#333;border-bottom:1px #ccc solid;}
.pl .main{padding:10px 0px 0px 0px;}
.pl .main .list{padding:10px 0px 5px 0px;background:url(http://static.yohobuy.com/images/line_dot_4.png) repeat-x bottom;}
.pl .main .list dt{width:60px;float:left;}
.pl .main .list dt img{width:48px;height:48px; vertical-align:top;border:1px #999 solid;}
.pl .main .list dd{line-height:20px;padding-top:5px;float:left;}
.pl .main .list dd span{color:#999}
.pl .main .list dd a{color:#468fa2; text-decoration:underline;}
.pl .main .list p{padding:5px 0px;clear:both;}
.pl .main .list-b{padding:10px 0px;background:url(http://static.yohobuy.com/images/line_dot_4.png) repeat-x bottom;}
.pl .main .list-form{margin:10px 0px;}
.pl .main .list-form:after { content:""; display:block; clear:both; height:0; }
.pl .main .list-form dt{float:left;}
.pl .main .list-form dd{clear:both;padding:10px 0px 10px 0px;float:left;}
.pl .main .list-none{padding:50px 0px;}
/************************************************************/
/*中框架*/
.kc-box{width:990px;height:auto;background:url(http://static.yohobuy.com/images/kc_m.png) repeat-y;margin:20px auto 30px auto;}
.kc-box .kc-m{width:990px;background:url(http://static.yohobuy.com/images/kc_b.png) no-repeat bottom;padding-bottom:4px;}
.kc-box .kc-n{width:990px;height:auto!important;min-height:300px;_height:300px;background:url(http://static.yohobuy.com/images/kc_t.png) no-repeat top;padding-top:3px;}
.kc-box .kc-n:after { content:""; display:block; clear:both; height:0; }
/*登录*/
.login-box{padding:20px;float:left;}
.login-box .login-form{width:590px;padding:5px 20px 0px 0px;float:left;}
.login-box .login-form h2{width:585px;height:30px;padding-left:5px;line-height:30px;font-size:16px;color:#333;border-bottom:1px #e7e7e7 solid;float:left;}
.login-box .login-form .main{width:590px;padding:25px 0px;float:left;}
.login-box .login-form .main dl{clear:both;width:590px;margin-bottom:20px;height:auto !important;min-height:22px;_height:22px;overflow:hidden;line-height:22px;font-family:Arial,helvetica,sans-serif;zoom:1;}
.login-box .login-form .main dl:after { content:""; display:block; clear:both; height:0; }
.login-box .login-form .main dl dt{width:75px;text-align:right;font-size:14px;float:left;}
.login-box .login-form .main dl dd{width:500px;color:#999;_height:60px;float:left;}
.login-box .login-form .main dl dd input{float:left;}
.login-box .login-form .main dl dd span{float:left;}
.login-box .login-form .main .stat{clear:both;padding:0px 0px 20px 75px;color:#999;}
.login-box .login-form .main .submit{padding:0px 0px 20px 75px;}
.login-box .login-form .zfb{clear:both; padding:20px 0px 20px 0px; border-top:1px #e7e7e7 solid; overflow:hidden;text-align:center;}
.login-box .login-form .zfb a{ margin-right:10px; display:inline-block;}
.login-box .login-form .zfb img{vertical-align:top;}
.login-box .login-form .hz{clear:both; padding:10px 0px 20px 50px; border-top:1px #e7e7e7 dashed; overflow:hidden;}
.login-box .login-form .hz h3{height:25px;font-size:12px;font-weight:normal;}
.login-box .login-info{width:289px;height:280px;padding:50px 0px 0px 30px;border-left:1px #e7e7e7 solid;float:left;}
.login-box .login-info h3{font-size:14px;color:#333;}
.login-box .login-info p{padding:20px 0px;}
.login-box .login-info .submit{height:50px; position:relative;}
.login-box .login-info .submit span{width:173px;height:20px;line-height:20px;padding-top:5px;text-align:center;background:url(http://static.yohobuy.com/images/reg_tips.png) no-repeat;display:block; position:absolute;top:45px;left:0px;}
/*注册*/
.reg-top-tips{font-size:14px;padding:20px 0px 0px 10px;color:#333;margin-bottom:-15px;}
.reg-box{padding:20px;float:left;}
.reg-box .reg-form{width:590px;padding:5px 0px 0px 20px;border-left:1px #e7e7e7 solid;float:left;}
.reg-box .reg-form h2{height:30px;padding-left:5px;line-height:30px;font-size:16px;color:#333;border-bottom:1px #e7e7e7 solid;}
.reg-box .reg-form .main{padding:25px 0px 10px 0px;float:left;}
.reg-box .reg-form .main dl{width:590px;padding-bottom:15px;float:left;}
.reg-box .reg-form .main dl dt{width:85px;line-height:22px;text-align:right;font-size:14px;float:left;}
.reg-box .reg-form .main dl dd{width:500px;color:#999;float:left;}
.reg-box .reg-form .main dl dd p{padding-top:5px;}
.reg-box .reg-form .main .stat{padding:0px 0px 20px 85px;color:#999;}
.reg-box .reg-form .main .submit{padding:0px 0px 20px 85px;}
.reg-box .reg-info{width:289px;height:220px;padding:130px 20px 0px 10px;float:left;}
.reg-box .reg-info h3{font-size:14px;color:#333;text-align:center;}
.reg-box .reg-info .submit{height:50px;padding-top:10px;text-align:center;}
.reg-box .reg-login-form{width:289px;padding:5px 20px 0px 10px;float:left;}
.reg-box .reg-login-form h2{height:30px;padding-left:5px;line-height:30px;font-size:16px;color:#333;border-bottom:1px #e7e7e7 solid;}
.reg-box .reg-login-form .main{padding:25px 0px;float:left;}
.reg-box .reg-login-form .main dl{width:289px;padding-bottom:20px;float:left;}
.reg-box .reg-login-form .main dl dt{width:75px;text-align:right;font-size:14px;float:left;}
.reg-box .reg-login-form .main dl dd{width:210px;color:#999;float:left;}
.reg-box .reg-login-form .main .stat{padding:0px 0px 20px 75px;color:#999;}
.reg-box .reg-login-form .main .submit{padding:0px 0px 20px 75px;}
/*找回密码*/
.pass-box{padding:30px;}
.pass-box h2{height:30px;padding-left:240px;line-height:30px;font-size:16px;color:#333;border-bottom:1px #e7e7e7 solid;}
.pass-box .main{padding:20px 0px 20px 240px;}
.pass-box .main p{padding:0px 0px 10px 0px;}
.pass-box .main dl{margin-bottom:10px;clear:both;min-height:20px;_height:20px;}
.pass-box .main dl:after { content:""; display:block; clear:both; height:0; }
.pass-box .main dl dt{width:50px;line-height:22px;font-size:14px;float:left;}
.pass-box .main dl dd{width:500px;float:left;}
.pass-box .main .submit{padding:20px 0px 20px 50px;}
.pass-box .main .tiptext{width:450px;padding:10px;border-top:1px #e7e7e7 dashed;}
.pass-box .main-2{padding:50px 0px 20px 240px;}
.pass-box .main-2 p{font-size:14px;color:#333;}
.pass-box .main-2 .noemail{font-size:12px;color:#999;padding:10px 0px;}
.pass-box .main-2 .submit{padding:20px 140px 20px 50px;text-align:right;}
.pass-box .main-3{padding:30px 0px 20px 240px;}
.pass-box .main-3 p{padding:0px 0px 20px 0px;font-size:14px;color:#333;}
.pass-box .main-3 dl{margin-bottom:10px;clear:both;min-height:20px;_height:20px;}
.pass-box .main-3 dl:after { content:""; display:block; clear:both; height:0; }
.pass-box .main-3 dl dt{width:85px;padding-right:5px;line-height:22px;font-size:14px;text-align:right;float:left;}
.pass-box .main-3 dl dd{width:500px;float:left;}
.pass-box .main-3 .submit{padding:20px 0px 20px 90px;}
/*新注册*/
.regnew-ok{width:370px;padding:150px 0px;margin:0 auto;}
.regnew-ok h2{height:35px;line-height:35px;padding:0px 0px 20px 45px;color:#090;font-size:30px;font-family:Arial,helvetica,sans-serif;background:url(http://static.yohobuy.com/images/i_ok_bb.png) no-repeat;}
.regnew-ok p{color:#000;padding:0px 0px 20px 0px;}
.regnew-ok .time{color:#999;}
.regnew-ok .time strong{color:#090;}
/*新登录*/
.loginnew-box{padding:50px 20px;zoom:1;}
.loginnew-box:after{content: ""; display: block; clear: both; height: 0px;}
.loginnew-box .login-form{width:590px;padding:5px 20px 0px 0px;float:left;}
.loginnew-box .login-form h2{height:30px;padding-left:5px;line-height:30px;font-family:Arial,helvetica,sans-serif;font-size:16px;color:#333;border-bottom:1px #e7e7e7 dashed;}
.loginnew-box .login-form .z_zchy{ text-indent:-999em;background:url(http://static.yohobuy.com/images/z_zchy.png) no-repeat 5px 5px;}
.loginnew-box .login-form .z_hydl{ text-indent:-999em;background:url(http://static.yohobuy.com/images/z_hydl.png) no-repeat 5px 5px;}
.loginnew-box .login-form .main{padding:25px 0px;float:left;}
.loginnew-box .login-form .main dl{clear:both;margin-bottom:20px;zoom:1;}
.loginnew-box .login-form .main dl:after { content:""; display:block; clear:both; height:0; }
.loginnew-box .login-form .main dl dt{width:75px;min-height:32px;_height:32px;text-align:right;font-size:14px;line-height:32px;color:#000;float:left;}
.loginnew-box .login-form .main dl dd{width:500px;min-height:32px;_height:32px;color:#999;float:left;}
.loginnew-box .login-form .main dl dd .txt{height:30px;padding:0px 0px 0px 5px;line-height:15px;display:inline-block; vertical-align:middle;}
.loginnew-box .login-form .main .stat{clear:both;padding:0px 0px 20px 75px;color:#999;}
.loginnew-box .login-form .main .submit{padding:0px 0px 20px 75px;}
.loginnew-box .login-form .hz{clear:both; padding:10px 0px 20px 0px; border-top:1px #e7e7e7 dashed; overflow:hidden;}
.loginnew-box .login-form .hz h3{height:25px;font-size:12px;font-weight:normal;}
.loginnew-box .login-info{width:280px;height:280px;padding:100px 0px 0px 58px;margin-top:35px;float:right;border-left:1px #e7e7e7 dashed;}
.loginnew-box .login-info h3{height:40px;font-size:14px;color:#333;}
.loginnew-box .login-info p{padding:20px 0px;}
.loginnew-box .login-info .submit{height:50px; position:relative;}
.loginnew-box .login-info .submit span{width:173px;height:20px;line-height:20px;padding-top:5px;text-align:center;background:url(http://static.yohobuy.com/images/reg_tips.png) no-repeat;display:block; position:absolute;top:45px;left:0px;}
.reg-flow-box{width:520px;padding:80px 0px;margin:0 auto;}
.reg-flow-box .reg-flow{height:45px;margin-top:20px;padding:15px 0px 0px 0px;background:url(http://static.yohobuy.com/images/reg_jd.png) no-repeat center top;}
.reg-flow-box .reg-flow li{width:113px;text-align:center;color:#999;float:left;}
.reg-flow-box .reg-flow .li-1{ width:190px;padding:0px 0px 0px 8px;color:#000;text-align:left;}
.reg-flow-box .reg-flow .li-2{ text-align:center;color:#000;}
.reg-flow-box .reg-flow .li-3{ width:190px;text-align:right;}
.reg-flow-box .text{clear:both;padding:20px 0px 20px 20px;zoom:1;}
.reg-flow-box .text:after{content: ""; display: block; clear: both; height: 0px;}
.reg-flow-box .text strong{font-size:24px;color:#000;font-family:Arial,helvetica,sans-serif;}
.reg-flow-box .text strong a{font-size:12px;font-weight:normal;}
.reg-flow-box .text p{padding:20px 0px;}
.reg-flow-box .text dt{width:60px;color:#000;font-weight:bold;line-height:32px;float:left;}
.reg-flow-box .text dd{width:430px;float:left;}
.reg-flow-box .text .input_b{width:60px;margin:0px 5px 0px 0px;}
.reg-flow-box .text .f_g{padding:5px 0px 0px 10px;display:inline-block;}
.reg-flow-box .submit{clear:both;margin:0px 0px 20px 80px;}
/*新重置密码*/
.resetpass-box{padding:50px 20px;zoom:1;}
.resetpass-box:after{content: ""; display: block; clear: both; height: 0px;}
.resetpass-box .form{width:700px;margin:0 auto;}
.resetpass-box .form h2{height:30px;padding-left:5px;line-height:30px;font-family:Arial,helvetica,sans-serif;font-size:16px;color:#333;border-bottom:1px #e7e7e7 dashed;}
.resetpass-box .form .z_csmm{ text-indent:-999em;background:url(http://static.yohobuy.com/images/z_csmm.png) no-repeat 5px 5px;}
.resetpass-box .form p{height:40px;padding:0px 0px 0px 20px;}
.resetpass-box .form .main{padding:25px 0px;}
.resetpass-box .form .main dl{clear:both;margin-bottom:20px;zoom:1;}
.resetpass-box .form .main dl:after { content:""; display:block; clear:both; height:0; }
.resetpass-box .form .main dl dt{width:75px;min-height:32px;_height:32px;text-align:right;font-size:14px;line-height:32px;color:#000;float:left;}
.resetpass-box .form .main dl dd{width:600px;min-height:32px;_height:32px;color:#999;float:left;}
.resetpass-box .form .main .submit{padding:0px 0px 20px 75px;}
/*找回密码*/
.getpass-box{padding:50px 20px;zoom:1;}
.getpass-box:after{content: ""; display: block; clear: both; height: 0px;}
.getpass-box .form{width:700px;margin:0 auto;}
.getpass-box .form h2{height:30px;padding-left:5px;line-height:30px;font-family:Arial,helvetica,sans-serif;font-size:16px;color:#333;border-bottom:1px #e7e7e7 dashed;}
.getpass-box .form .z_zhmm{ text-indent:-999em;background:url(http://static.yohobuy.com/images/z_zhmm.png) no-repeat 5px 5px;}
.getpass-box .form .main{padding:25px 0px;zoom:1;}
.getpass-box .form .main:after{content: ""; display: block; clear: both; height: 0px;}
.getpass-box .form .main .left{width:255px;float:left;}
.getpass-box .form .main .left li{margin-bottom:25px;}
.getpass-box .form .main .left a{width:180px;padding:0px 0px 0px 50px;height:40px;line-height:40px;font-family:Arial,helvetica,sans-serif;font-size:14px;display:inline-block;}
.getpass-box .form .main .left a span{width:170px;padding:0px 0px 0px 10px;height:40px;background:#fff;display:inline-block;cursor:pointer;}
.getpass-box .form .main .left .i_mob {border:1px #ccc solid;color:#999;background:url(http://static.yohobuy.com/images/reg_pass.png) no-repeat 0px 0px #ccc;display:inline-block;}
.getpass-box .form .main .left .act .i_mob {border:1px #ea222d solid;color:#ea222d;background:url(http://static.yohobuy.com/images/reg_pass.png) no-repeat 0px 0px #ea222d;display:inline-block;}
.getpass-box .form .main .left .i_email {border:1px #ccc solid;color:#999;background:url(http://static.yohobuy.com/images/reg_pass.png) no-repeat 0px -40px #ccc;display:inline-block;}
.getpass-box .form .main .left .act .i_email {border:1px #ea222d solid;color:#ea222d;background:url(http://static.yohobuy.com/images/reg_pass.png) no-repeat 0px -40px #ea222d;display:inline-block;}
.getpass-box .form .main .right{width:420px;padding:0px 0px 0px 24px;border-left:1px #e7e7e7 solid;float:left;}
.getpass-box .form .main p{padding:0px 20px 20px 0px;color:#333;}
.getpass-box .form .main p.txt{padding:0px 20px 20px 75px;}
.getpass-box .form .main dl{clear:both;margin-bottom:20px;zoom:1;}
.getpass-box .form .main dl:after { content:""; display:block; clear:both; height:0; }
.getpass-box .form .main dl dt{width:70px;min-height:32px;_height:32px;text-align:right;font-size:14px;line-height:32px;color:#000;float:left;}
.getpass-box .form .main dl dd{width:350px;min-height:32px;_height:32px;color:#999;float:left;}
.getpass-box .form .main .submit{padding:0px 0px 20px 75px;}
.getpass-box .form .main .txt p{font-size:14px;padding:20px 0px 0px 5px;color:#333;}
.getpass-box .form .main .txt .f_g{font-size:12px;color:#999;}
.getpass-box .form .main .txt .submit{padding:40px 0px 20px 5px;}
/*分类一览*/
.categorylists{padding:10px 20px 20px 20px;}
.categorylists .title{height:38px;border-bottom:2px #000 solid;background:url(http://static.yohobuy.com/images/z_b_flyl.png) no-repeat; text-indent:-999px;}
.categorylists .main{padding:10px 0px;}
.categorylists .main .nav{padding:10px;border:1px #ccc solid;background:#efefef;margin-bottom:10px;}
.categorylists .list-t{clear:both;height:20px;padding:20px 0px 10px 0px;overflow:hidden;}
.categorylists .list-t img{ vertical-align:top;}
.categorylists h2{display:none;}
.categorylists ul{clear:both;}
.categorylists li{width:100px;height:140px;padding:15px 0px 0px 0px;margin-right:5px;display:inline;text-align:center;background:url(http://static.yohobuy.com/images/cate_li_bg.png) no-repeat;float:left;}
.categorylists li img{width:70px;height:100px;margin-bottom:5px;}
/*品牌一览*/
.brandlists{width:990px;maring:0 auto;}
.brandlists .nav{height:47px;}
.brandlists .nav li{float:left;}
.brandlists .nav a{width:71px;height:35px;padding-top:8px;line-height:15px;color:#666;background:#f8f8f8;margin-right:2px;display:inline;border:1px #ccc solid;text-align:center;float:left;}
.brandlists .nav a:hover{color:#666; text-decoration:none;}
.brandlists .nav .all a{width:86px;height:43px;padding-top:0px;line-height:43px;font-size:14px;font-weight:bold;}
.brandlists .nav .act{background:#000;color:#fff;border:1px #000 solid;}
.brandlists .nav .act:hover{color:#fff;}
.brandlists .nav span{color:#999;}
.brandlists .subnav{height:24px;background:#000;}
.brandlists .subnav li{float:left;}
.brandlists .subnav a{width:24px;height:24px;line-height:24px;font-weight:bold;color:#fff;text-align:center;float:left;}
.brandlists .subnav a:hover,.brandlists .subnav .act{background:#e7054f; text-decoration:none;}
.brandlists .subnav .right{float:right;}
.brandlists .subnav .right a{width:30px;padding:0px 5px 0px 10px;background:url(http://static.yohobuy.com/images/ico_arrow_top.png) no-repeat 0px 7px;float:right;}
.brandlists .main{padding:30px 0px;float:left;}
.brandlists .main h3{width:970px;padding:0px 10px;height:40px;line-height:40px;color:#333;font-size:16px;background:#eee;margin:0px;float:left;}
.brandlists .main h3 span{color:#999;font-family:Arial,helvetica,sans-serif;font-size:12px;}
.brandlists .main ol{width:990px;padding-bottom:30px;float:left;}
.brandlists .main dl{width:215px;height:50px;padding:10px 0px;margin:20px 30px 0px 0px;display:inline;background:url(http://static.yohobuy.com/images/brand_li_bg.png) repeat-x bottom;float:left;}
.brandlists .main dl dt{width:90px;height:50px;background:url(http://static.yohobuy.com/images/line_dot_s.png) repeat-y right;float:left;}
.brandlists .main dl dt img{width:80px;height:50px;}
.brandlists .main dl dd{width:115px;padding:5px 0px 0px 10px;color:#999;float:left; white-space:nowrap;overflow:hidden;}
.brandlists .main dl dd h2{font-size:14px;color:#333;}
.brandlists .main dl dd a:hover h2{color:#468fa2; text-decoration:underline;}
/*首页*/
.index-flash{height:295px;border-bottom:1px #ccc solid;text-align:center;overflow:hidden;position:relative;min-width:990px;z-index:0;}
.index-flash img{height:295px;vertical-align:top;}
.index-flash .pics{width:1150px;height:295px;margin:0 auto;text-align:left; position:relative;z-index:1;}
.index-flash .pics .fx_btn{top:270px;left:50%;}
.index-flash .pics .fx_a{width:25px;height:25px;line-height:25px;text-align:center;font-size:14px;color:#000;background:#fff;border:1px #999 solid;float:left; text-decoration:none;cursor:pointer;font-family:Arial,helvetica,sans-serif;font-weight:bold;}
.index-category{width:158px;padding:5px 10px;background:#f8f8f8;border:1px #d7d7d7 solid;margin-bottom:10px;}
.index-category ul li{height:auto;padding:5px 0px 5px 0px;background:url(http://static.yohobuy.com/images/line_dot_3.png) repeat-x bottom;}
.index-category ul .end{background:none;}
.index-category ul li img{width:158px;height:66px;}
.index-brands{clear:both;width:180px;background:#eee;padding:10px 0px 15px 0px;margin-bottom:10px;overflow:hidden;}
.index-brands h2{width:160px;margin:0px 10px;display:inline;height:23px;background:url(http://static.yohobuy.com/images/z_pptj.png) no-repeat; text-indent:-999em;border-bottom:1px #a7a7a7 dotted;float:left;}
.index-brands ul{width:170px;padding:10px 0px 0px 10px;float:left;}
.index-brands ul li{width:85px;height:80px;float:left; white-space:nowrap;overflow:hidden;}
.index-brands ul li img{width:72px;height:48px;border:1px #ddd solid;margin-bottom:2px;display:block;}
.index-brands .a_li{padding:0px 0px 0px 10px;line-height:22px;background:url(http://static.yohobuy.com/images/ico_ar_li.png) no-repeat 0px 9px;display:inline-block;color:#333;}
.index-brands ol{width:160px;margin:0px 10px 0px 10px;display:inline;padding:10px 0px 0px 0px;border-top:1px #a7a7a7 dotted;float:left;}
.index-brands .a_more4{margin-top:10px;}
.index-category,.index-brands{margin-bottom:0px !important;}
.index-zttj{clear:both;width:180px;background:#eee;padding:10px 0px;margin-bottom:10px;overflow:hidden;}
.index-zttj h2{width:160px;margin:0px 10px;display:inline;height:20px;background:url(http://static.yohobuy.com/images/z_zttj3.png) no-repeat; text-indent:-999em;border-bottom:1px #a7a7a7 dotted;float:left;}
.index-zttj .main{width:160px;padding:10px 10px 0px 10px;float:left;}
.index-zttj .main dl{border-bottom:1px #a7a7a7 dashed;margin-bottom:15px;}
.index-zttj .main dt{padding-bottom:5px;}
.index-zttj .main dt img{width:160px;height:80px;}
.index-zttj .main dd{line-height:15px;color:#999;}
.index-zttj .main dd p{height:75px;margin-bottom:10px;overflow:hidden;}
.index-zttj .main dd span{color:#ccc;font-size:11px;}
.index-zttj .main dd a{color:#6b6b6b;text-decoration:underline;}
.index-zttj .more{clear:both;padding:0px 10px 0px 10px;}
.index-zttj .more .pagenum{padding:2px 0px 0px 0px;float:left;}
.index-zttj .more .pagenum a{width:14px;height:14px;margin-right:5px;display:inline;text-align:center;color:#000;font-size:10px;line-height:14px;border:1px #000 solid;background:#ccc;float:left;}
.index-zttj .more .pagenum .act{color:#fff;background:#666; text-decoration:none;}
.index-zttj .more .a_more4{float:right;}
.index-xptj{}
.index-xptj .title{height:38px;overflow:hidden;}
.index-xptj .title h2{width:100px;height:38px; text-indent:-999em;float:left;}
.index-xptj .title span{padding-right:10px;color:#fff;line-height:38px;float:right;}
.index-xptj .title span a{color:#fff; text-decoration:none;}
.index-xptj .title ul{float:right;}
.index-xptj .title li{width:70px;height:38px;border-left:1px #4f4f4f solid;line-height:38px;text-align:center;color:#fff;font-size:14px;font-family:Arial,helvetica,sans-serif;float:left; cursor:pointer;}
.index-xptj .title li a{color:#fff; text-decoration:none;}
.index-xptj .title .act{background:url(http://static.yohobuy.com/images/index_lan_act.png) no-repeat bottom center #000;}
.index-xptj .t1{background:url(http://static.yohobuy.com/images/index_m_tt1.png) no-repeat #232323;}
.index-xptj .t2{background:url(http://static.yohobuy.com/images/index_m_tt2.png) no-repeat #232323;}
.index-xptj .t3{background:url(http://static.yohobuy.com/images/index_m_tt3.png) no-repeat #232323;}
.index-xptj .t4{background:url(http://static.yohobuy.com/images/index_m_tt4.png) no-repeat #232323;}
.index-xptj .t5{background:url(http://static.yohobuy.com/images/index_m_tt5.png) no-repeat #232323;}
.index-xptj .t6{background:url(http://static.yohobuy.com/images/index_m_tt6.png) no-repeat #232323;}
.index-xptj .t7{background:url(http://static.yohobuy.com/images/index_m_tt7.png) no-repeat #232323;}
.index-xptj .t8{background:url(http://static.yohobuy.com/images/index_m_tt8.png) no-repeat #232323;}
.index-xptj .t9{background:url(http://static.yohobuy.com/images/index_m_tt9.png) no-repeat #232323;}
.index-xptj .main{margin:15px 0px 0px 0px;height:580px;overflow:hidden;position:relative;}
.index-xptj .main li{width:25%;float:left;}
.index-xptj .list{width:180px;height:280px;padding:5px 0px;overflow:hidden;text-align:center;margin:0 auto; position:relative;}
.index-xptj .list .thumb{height:245px;text-align:center;}
.index-xptj .list .thumb img{width:180px;height:240px; vertical-align:top;}
.index-xptj .list .name{width:130px;height:30px; text-align:left;overflow:hidden; position:absolute;top:250px;left:0px; white-space:nowrap;cursor:pointer;}
.index-xptj .list .name h3{height:15px;line-height:15px;font-size:12px;font-weight:normal;color:#555;cursor:pointer;}
.index-xptj .list .name h3 strong{height:15px;line-height:15px;}
.index-xptj .list .name a{color:#555;text-decoration:none;}
.index-xptj .list .fav{height:30px; text-align:left;background:url(http://static.yohobuy.com/images/ico_fav.png) no-repeat 0px 1px;padding-left:18px;white-space:nowrap;overflow:hidden; position:absolute;top:250px;left:0px;cursor:pointer;}
.index-xptj .list .fav h3{height:15px;line-height:15px;font-size:12px;font-weight:normal;color:#555;}
.index-xptj .list .fav h3 strong{height:15px;line-height:15px;}
.index-xptj .list .fav a{color:#555;text-decoration:none;}
.index-xptj .list .price{color:#000;height:30px;line-height:15px;font-weight:bold; white-space:nowrap;overflow:hidden;position:absolute;top:250px;right:0px;background:#fff;padding-left:10px;font-size:10px;font-weight:bold;}
.index-xptj .list .price del{color:#999;font-weight:normal;}
.index-xptj .list .stock{width:100%;height:auto;position:absolute;bottom:45px;left:0px}
/*首页*/
.index-container{margin:20px 15px 0px 15px !important;zoom:1;}
.index-container:after{content: ""; display: block; clear: both; height: 0px;}
.index-mid{display:inline;margin:0px\0;display:inline-block\0;*display:inline;width:100%;margin:0px -200px;padding:0px;position:relative;z-index:1;}
.index-mid .inner{margin:0px 200px;}
.index-left{width:180px;padding-right:20px;height:auto;min-height:20px;_height:20px;float:left; position:relative;z-index:2;}
.index-right{width:180px;height:auto;min-height:20px;_height:20px;float:right;position:relative;z-index:2;}
.index-adv{margin-bottom:20px;clear:both;zoom:1;}
.index-adv:after{content: ""; display: block; clear: both; height: 0px;}
.index-adv img{ vertical-align:top;}
.index-pictxt dl{clear:both;width:100%;height:70px;padding:0px 0px 10px 0px;border-bottom:1px #a7a7a7 dotted;margin-bottom:10px;}
.index-pictxt dl dt{padding-right:10px;float:left;}
.index-pictxt dl dt img{width:68px;height:68px;border:1px #cbcbcb solid ; vertical-align:top;}
.index-pictxt dl dd{ white-space:nowrap;overflow:hidden;padding:5px 0px 0px 0px;color:#333;line-height:15px;float:left;}
.index-pictxt dl dd .a_more3{margin-top:15px;}
.index-pictxt .end{border:0px;}
/*==首页分享动态==*/
.index-share{clear: both;margin-bottom: 10px;overflow: hidden;}
.index-share h2{height:20px;border-bottom: 1px dotted #A7A7A7;background:url(http://static.yohobuy.com/images/z_fxdt.png) no-repeat;text-indent: -999em;}
.index-share .main{padding:15px 0px 0px 0px;}
.index-share .main .list{height:110px;}
.index-share .main .list .li-t{height:70px;padding:1px 1px 4px 1px;background:url(http://static.yohobuy.com/images/index_share_list.png) no-repeat;}
.index-share .main .list .li-t .pic{width:60px;height:60px;padding:5px;float:left;overflow:hidden;}
.index-share .main .list .li-t .pic img{width:60px;height:60px; vertical-align:top;}
.index-share .main .list .li-t .txt{width:100px;height:54px;padding:8px 0px 0px 0px;line-height:18px;overflow:hidden;color:#000;float:left;}
.index-share .main .list .li-b{height:20px;line-height:20px;color:#999;}
.index-share .main .list .li-b a{color:#999;}
.index-share .main .list .li-b .name{width:120px;float:left;overflow:hidden;}
.index-share .main .list .li-b .name img{width:16px;height:16px;margin-right:5px;}
.index-share .main .list .li-b .time{width:60px; text-align:right;float:left;overflow:hidden;}
.index-share .more{height:30px;padding:10px 0px 0px 0px;border-top:1px dotted #A7A7A7;}
/*==首页打折推荐==*/
.index-outlet{clear:both;padding:20px 0px 0px 0px;/display: inline-block;position:relative;min-width:990px;}
.index-outlet .title{height:31px;background:url(http://static.yohobuy.com/images/index_outlet_tab_bg.png) repeat-x bottom;padding:0px 30px;}
.index-outlet .title ul{float:left;}
.index-outlet .title ul li{width:95px;height:31px;text-align:center;line-height:30px;overflow:hidden;font-family:Arial,helvetica,sans-serif;font-size:14px;color:#fff;font-weight:bold;background:url(http://static.yohobuy.com/images/index_outlet_tab.png) no-repeat 0px -31px;margin-right:10px;display:inline;float:left; cursor:pointer;}
.index-outlet .title ul .act{background:url(http://static.yohobuy.com/images/index_outlet_tab.png) no-repeat 0px 0px;color:#000;}
.index-outlet .title span{color:#999;line-height:30px;float:right;}
.index-outlet p{clear:both;text-align:center;padding:0px 0px 30px 0px;background:#f8f8f8;}
.index-outlet .main{padding:20px 30px;height:155px;text-align:center;background:#f8f8f8;}
.index-outlet .main ul{height:150px;overflow:hidden;}
.index-outlet .main li{width:10%;float:left;overflow:hidden;}
.index-outlet .list{width:102px;height:145px;padding:5px 5px 0px 5px;overflow:hidden;text-align:center;margin:0 auto;}
.index-outlet .list .thumb{height:110px;}
.index-outlet .list .thumb img{width:100px;height:100px;border:1px #f2f2f2 solid;}
.index-outlet .list .name{height:15px; white-space:nowrap;overflow:hidden;}
.index-outlet .list .name h3{height:15px;line-height:15px;font-size:12px;font-weight:normal;color:#bababa;cursor:pointer;}
.index-outlet .list .name a{color:#bababa;text-decoration:none;}
.index-outlet .list .price{color:#333;height:15px;line-height:15px;font-weight:bold; white-space:nowrap;overflow:hidden;}
.index-outlet .list .price del{color:#999;}
/*品牌*/
.brand-banner{clear:both; /display: inline-block;position:relative;overflow:hidden;min-width:990px;margin-top:-4px;}
.brand-banner .liquidFix{max-width:100%;}
.brand-banner img{ vertical-align:top;}
.brand-container{padding:0px 20px;}
.brand-container .con-left{width:200px;float:left;position:relative;z-index:2;}
.brand-container .con-right{margin-left:-200px;width:100%;float:right;}
.brand-container .con-right-box{margin-left:200px;}
.brand-fav{padding-bottom:10px;}
.brand-listbox {}
.brand-listbox .title{height:22px;padding:5px 0px 5px 10px;border-bottom:1px #ccc solid;color:#333;line-height:22px;}
.brand-listbox .title .page-r{height:22px;line-height:22px;overflow:hidden;float:right;}
.brand-listbox .main{padding:15px 0px 10px 0px;height:auto!important;min-height:275px;_height:275px;border-bottom:1px #ccc solid;color:#333;}
.brand-listbox .main:after { content:""; display:block; clear:both; height:0; }
.brand-listbox ul{display:block;height:auto !important;min-height:225px;_height:225px;}
.brand-listbox li{width:200px;float:left;}
.brand-listbox .list{height:300px;border:1px #fff solid;margin:0px -1px -1px 0px; position:relative;z-index:1;}
.brand-listbox .stock{width:100%;height:auto;position:absolute;bottom:50px;left:0px}
.brand-listbox .thumb{height:250px;padding-top:10px;text-align:center;}
.brand-listbox .thumb img{ vertical-align:top;}
.brand-listbox .name{text-align:center;height:15px;line-height:15px;overflow:hidden;cursor:pointer;}
.brand-listbox .name h3{font-size:12px;font-weight:normal;display:inline;}
.brand-listbox .name strong{display:inline;}
.brand-listbox .price{text-align:center;height:15px;line-height:15px;font-weight:bold; overflow:hidden;}
.brand-listbox .price del{color:#999;}
.brand-listbox .list:hover img{filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8;}
.brand-listbox .page{height:35px;}
.brand-listbox .list .colorList{display:none;}
.brand-info{clear:both;border-top:1px #e5e5e5 solid;padding:20px 0px 40px 0px;background:#f8f8f8;min-width:990px;}
/*品牌介绍*/
.ppjs{width:250px;padding:0px 30px 0px 20px;float:left;position:relative;z-index:2; position:static/8;}
.ppjs .title{height:22px;border-bottom:1px #ccc solid;}
.ppjs .title h2{width:140px;height:15px;background:url(http://static.yohobuy.com/images/z_ppjs.png) no-repeat; text-indent:-999em;float:left;}
.ppjs .title span{float:right;}
.ppjs .title span a{color:#468fa2;}
.ppjs .main{padding-top:15px;color:#333;line-height:1.5;}
.ppjs .main img{width:80px;height:50px;border:1px #ccc solid;margin:5px 10px 5px 0px;display:inline;float:left;}
.ppjs .main strong{font-weight:bold;font-size:14px;line-height:30px;}
.ppjs .main h1{font-weight:bold;font-size:14px;display:inline;}
/*专题推荐*/
.zttj{width:100%;margin-left:-300px;float:right; position:relative;z-index:1;position:static/8;}
.zttj .inner{margin-left:300px;}
.zttj .title{height:22px;border-bottom:1px #ccc solid;}
.zttj .title h2{width:140px;height:15px;background:url(http://static.yohobuy.com/images/z_zttj.png) no-repeat; text-indent:-999em;float:left;}
.zttj .title span{float:right;}
.zttj .title span a{color:#468fa2;}
.zttj .main{margin-top:20px;height:150px;overflow:hidden;}
.zttj .main dl{width:335px;padding-bottom:20px;float:left;}
.zttj .main dl dt{width:140px;float:left;}
.zttj .main dl dt img{width:130px;height:65px;}
.zttj .main dl dd{width:180px;height:60px;line-height:15px;color:#999;overflow:hidden;float:left;}
.zttj .main dl dd p{margin:0px 10px 0px 0px;float:left;display:inline;}
.zttj .main dl dd span{color:#ccc;font-size:11px;}
.zttj .main dl dd a{color:#468fa2;text-decoration:underline;}
/*品牌-品牌介绍*/
.brandinfo-container{padding:20px 0px 50px 0px;margin:0px 20px 0px 20px;height:auto !important;min-height:20px;_height:20px;border-top:1px #000 solid;}
.brandinfo-container:after{content: ""; display: block; clear: both; height: 0px;}
.brandinfo-text h1{font-size:26px;color:#000;font-family:Arial,helvetica,sans-serif;}
.brandinfo-text h2{height:22px;font-size:16px;color:#000;font-family:Arial,helvetica,sans-serif;padding:0px 0px 10px 0px;}
.brandinfo-text p{color:#333;padding:0px 0px 20px 0px;line-height:180%;}
.brandinfo-text .text{color:#333;line-height:180%;padding:20px 0px 20px 0px;font-size:14px;}
.brandinfo-container .pic{width:320px;float:left;position:relative;z-index:2;}
.brandinfo-container .info{margin-left:-320px;width:100%;float:left;}
.brandinfo-container .info .inner{margin-left:320px;}
.brandinfo-container .info h1{font-size:24px;color:#000;font-family:Arial,helvetica,sans-serif;}
.brandinfo-container .info h2{height:22px;font-size:14px;color:#000;font-family:Arial,helvetica,sans-serif;border-bottom:1px #000 solid;}
.brandinfo-container .info p{color:#333;padding:15px 0px 20px 0px;line-height:180%;}
.brandinfo-container .info img{margin-right:10px;}
/*打折商品outlet*/
.outlets-title{clear:both;height:40px;border-bottom:1px #000 solid;margin:15px 0px;background:url(http://static.yohobuy.com/images/z_b_outlets.png) no-repeat;}
.outlets-title h2{display:none;}
.outlets-select {margin-bottom:7px;}
.outlets-select li{padding-bottom:3px;}
.outlets-select span{width:180px;height:30px;display:block; text-indent:-999px;overflow:hidden;cursor:pointer;}
.outlets-select .zhe_1{background:url(http://static.yohobuy.com/images/zhe_1.png) no-repeat;}
.outlets-select .zhe_2{background:url(http://static.yohobuy.com/images/zhe_2.png) no-repeat;}
.outlets-select .zhe_3{background:url(http://static.yohobuy.com/images/zhe_3.png) no-repeat;}
.outlets-select .zhe_4{background:url(http://static.yohobuy.com/images/zhe_4.png) no-repeat;}
.outlets-select .zhe_5{background:url(http://static.yohobuy.com/images/zhe_5.png) no-repeat;}
.outlets-select .act .zhe_1{background:url(http://static.yohobuy.com/images/zhe_1_act.png) no-repeat;}
.outlets-select .act .zhe_2{background:url(http://static.yohobuy.com/images/zhe_2_act.png) no-repeat;}
.outlets-select .act .zhe_3{background:url(http://static.yohobuy.com/images/zhe_3_act.png) no-repeat;}
.outlets-select .act .zhe_4{background:url(http://static.yohobuy.com/images/zhe_4_act.png) no-repeat;}
.outlets-select .act .zhe_5{background:url(http://static.yohobuy.com/images/zhe_5_act.png) no-repeat;}
/*特价商品*/
.onsale-title{clear:both;height:40px;border-bottom:1px #000 solid;margin:15px 0px;background:url(http://static.yohobuy.com/images/z_b_onsale.png) no-repeat;}
.onsale-title h2{display:none;}
/*促销活动*/
.promotion-title{clear:both;height:40px;border-bottom:1px #000 solid;margin:15px 0px;background:url(http://static.yohobuy.com/images/z_b_promotion.png) no-repeat;}
.promotion-title h2{display:none;}
.promotion-nav{width:186px;margin-bottom:10px;}
.promotion-nav:after { content:""; display:block; clear:both; height:0; }
.promotion-nav li{width:186px;height:28px;overflow:hidden;float:left;}
.promotion-nav li a{width:150px;height:25px;line-height:25px;padding:0px 12px 0px 24px;background:url(http://static.yohobuy.com/images/cx_li.png) no-repeat;color:#666;float:left; white-space:nowrap;overflow:hidden;}
.promotion-nav .act,.promotion-nav a:hover{background:url(http://static.yohobuy.com/images/cx_li_act.png) no-repeat;color:#fff; text-decoration:none;}
.promotion-list{width:740px;float:left;}
.promotion-list .list{clear:both;margin-bottom:25px;}
.promotion-list .pic{margin-bottom:10px;}
.promotion-list .title{height:20px;}
.promotion-list h3{font-size:14px;float:left;}
.promotion-list .time{float:right;}
.promotion-list p{clear:both;}
.promotion-view{width:740px;margin-bottom:20px;float:left;}
.promotion-view .pic{margin-bottom:10px;}
.promotion-view .box{border:1px #ccc solid;background:#f1f1f1;padding:10px;}
.promotion-view h1{font-size:20px;color:#000; font-family: "微软雅黑";height:30px;line-height:30px;}
.promotion-view .time{height:20px;color:#6e6e6e;}
.promotion-view p{clear:both;font-size:12px;color:#6e6e6e;}
/*相关商品*/
.xgsp{clear:both;width:738px;height:220px;border:1px #ccc solid;margin-bottom:10px;overflow:hidden;}
.xgsp:after { content:""; display:block; clear:both; height:0; }
.xgsp .main{}
.xgsp .title{height:29px;padding:10px 10px 0px 10px;background:#efefef;border-bottom:1px #ccc solid;}
.xgsp .title h2{width:126px;height:15px;background:url(http://static.yohobuy.com/images/z_xgsp.png) no-repeat; text-indent:-999em;float:left;}
.xgsp .title .page-r{width:45px;height:22px;line-height:22px;overflow:hidden;float:right;}
.xgsp .title .page-r .pre{width:23px;height:22px;float:left;}
.xgsp .title .page-r .next{width:22px;height:22px;float:left;}
/*新品上架*/
.new-title{clear:both;height:40px;border-bottom:1px #000 solid;margin:15px 0px;background:url(http://static.yohobuy.com/images/z_b_new.png) no-repeat; position:relative;}
.new-title h2{display:none;}
.new-title a{ display:block; cursor:pointer; position:absolute; width:167px; height:40px;}
.new-select {margin-bottom:7px;}
.new-select li{height:30px;padding-bottom:3px;overflow:hidden;}
.new-select li a{ width:185px;height:30px;text-decoration:none;display:block;overflow:hidden;}
.new-select li a:hover{text-decoration:none;}
.new-select span{width:170px;height:30px;padding-left:10px;display:block; color:#fff;font-weight:bold;line-height:30px;overflow:hidden;cursor:pointer;background:url(http://static.yohobuy.com/images/ico_arw.png) no-repeat 165px 11px;}
.new-select .new_1{ background-color:#a7df11;}
.new-select .new_2{ background-color:#68a508;}
.new-select .new_3{ background-color:#366205;}
.new-select .new_4{ background-color:#244103;}
.new-select .act .new_1{ background:url(http://static.yohobuy.com/images/latestarrival_100.png) no-repeat; width:185px; height:30px;}
.new-select .act .new_2{background:url(http://static.yohobuy.com/images/latestarrival_200.png) no-repeat; width:185px; height:30px;}
.new-select .act .new_3{background:url(http://static.yohobuy.com/images/latestarrival_300.png) no-repeat; width:185px; height:30px;}
.new-select .act .new_4{background:url(http://static.yohobuy.com/images/latestarrival_400.png) no-repeat; width:185px; height:30px;}
.new-select-date{margin-bottom:10px;}
.new-select-date .ui-widget-content {border:1px #ccc solid;}
/*频道页边栏*/
.side-box {width:180px;height:auto;float:left;}
.side-box p{margin-bottom:10px;}
.side-box dl{clear:both;width:100%;height:70px;padding:0px 0px 10px 0px;border-bottom:1px #a7a7a7 dotted;margin-bottom:10px;}
.side-box dl dt{width:70px;padding-right:10px;float:left;}
.side-box dl dt img{width:68px;height:68px;border:1px #cbcbcb solid ; vertical-align:top;}
.side-box dl dd{ width:100px;white-space:nowrap;overflow:hidden;padding:5px 0px 0px 0px;color:#333;line-height:15px;float:left;}
.side-box dl dd .a_more3{margin-top:15px;}
.side-box .end{border:0px;}
.pd-title{border-bottom:2px #000 solid;padding:5px 0px;margin-bottom:10px;}
.pd-title h2{display:none;}
.con-ad{height:330px;overflow:hidden;margin-bottom:15px;}
.con-ad img{margin-right:0px;display:inline;float:left;}
/*频道推荐*/
.pdtj{height:360px;border:1px #ccc solid;overflow:hidden;margin: 0 -1px 10px -1px;_margin:0px -1px 10px 0px;}
.pdtj:after { content:""; display:block; clear:both; height:0; }
.pdtj .title{height:29px;padding:10px 10px 0px 10px;background:#efefef;border-bottom:1px #ccc solid;}
.pdtj .title h2{width:300px;height:15px; font-size:14px;color:#000;float:left;}
.pdtj .title .page-r{width:100px;height:22px;line-height:22px;overflow:hidden;text-align:right;float:right;}
.pdtj .main{}
.pdtj .main ul{display:block;height:auto !important;min-height:320px;_height:320px;}
.pdtj .main li{width:200px;float:left;}
.pdtj .main .list{height:320px;border-right:1px #ccc solid;margin:0px -1px -1px 0px;_margin:0px;}
.pdtj .thumb{height:250px;padding-top:10px;text-align:center;}
.pdtj .thumb img{width:180px;height:240px; vertical-align:top;}
.pdtj .name{width:180px;height:30px;line-height:15px;overflow:hidden;margin:0 auto;cursor:pointer;}
.pdtj .name h3{font-size:12px;font-weight:normal;display:inline;}
.pdtj .name strong{display:inline;}
.pdtj .price{width:180px;height:15px;line-height:15px;font-weight:bold;overflow:hidden;margin:0 auto;}
.pdtj .price del{color:#999;}
.pdtj .main .list:hover img{filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8;}
/*文章内容*/
.article-box{border:1px #ccc solid;margin-bottom:10px;}
.article-box .article-t{height:39px;padding:0px 10px;background:#efefef;border-bottom:1px #ccc solid;}
.article-box .article-t dt{line-height:39px;float:left;}
.article-box .article-t dd{padding-top:10px;float:right;}
.article-box .article-b{height:22px;padding:10px;background:#efefef;border-top:1px #ccc solid; text-align:right;}
.article-box .title{padding:15px 25px;background:#f8f8f8;border-bottom:1px #ccc solid;}
.article-box .title h1{font-size:24px;color:#000;font-family:Arial,helvetica,sans-serif;line-height:1.5;padding:0px 0px 10px 0px;}
.article-box .title p{line-height:20px;color:#999;padding-bottom:5px;}
.article-box .main{padding:25px;font-size:14px;line-height:1.8;color:#333;}
.article-box .main a{color:#cc0000;}
.article-box .main p{margin-bottom:20px;}
/*相关专题*/
.xgzt{height:350px;border:1px #ccc solid;overflow:hidden;margin: 0 -1px 10px -1px;_margin:0px 0px 10px 0px;}
.xgzt:after { content:""; display:block; clear:both; height:0; }
.xgzt .main{}
.xgzt .title{height:29px;padding:10px 10px 0px 10px;background:#efefef;border-bottom:1px #ccc solid;}
.xgzt .title h2{width:315px;height:15px;background:url(http://static.yohobuy.com/images/z_xgzt.png) no-repeat; text-indent:-999em;float:left;}
.xgzt .title .page-r{width:45px;height:22px;line-height:22px;overflow:hidden;float:right;}
.xgzt .title .page-r .pre{width:23px;height:22px;float:left;}
.xgzt .title .page-r .next{width:22px;height:22px;float:left;}
.xgzt .main ul{display:block;height:auto !important;min-height:310px;_height:310px;}
.xgzt .main li{width:263px;float:left;}
.xgzt .main .zt-list{height:290px;padding:10px 0px;border:0px;border-right:1px #ccc solid;margin:0px -1px -1px 0px;_margin:0px;}
/*专题列表*/
.zt-listbox{clear:both;border:0px #ccc solid;margin-bottom:10px;}
.zt-listbox .title{height:30px;padding:9px 10px 0px 10px;background:#efefef;color:#333;line-height:22px;border:1px #ccc solid; margin:0px -1px -1px 0px;_margin:0px;}
.zt-listbox .title h2{width:315px;height:20px;background:url(http://static.yohobuy.com/images/z_clzt.png) no-repeat; text-indent:-999em;float:left;}
.zt-listbox .title .page-r{height:22px;line-height:22px;overflow:hidden;float:right;}
.zt-listbox .main{border-right:1px #ccc solid;margin:0px -1px 0px 0px;_margin:0px;height:auto!important;min-height:275px;_height:275px;}
.zt-listbox .main:after { content:""; display:block; clear:both; height:0; }
.zt-listbox .main ul{display:block;height:auto !important;min-height:310px;_height:310px;}
.zt-listbox .main li{width:200px;float:left;}
.zt-listbox .page{height:23px;background:#efefef;border:1px #ccc solid;margin:0px -1px -1px 0px;_margin:0px; }
.zt-list{height:290px;padding:10px 5px;overflow:hidden;border:1px #ccc solid;margin:0px -1px -1px 0px;_margin:0px;}
.zt-list:hover img{filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8;}
.zt-list .pic{width:190px;height:150px;line-height:1.2;margin:0 auto;}
.zt-list .pic img{width:190px;height:95px;margin-bottom:10px;}
.zt-list .pic h3{font-size:14px;height:20px;line-height:20px;overflow:hidden;cursor:pointer;}
.zt-list .text{width:190px;height:120px;color:#999;line-height:18px;margin:0 auto;}
.zt-list .more{width:190px;height:20px;color:#999;text-align:right;margin:0 auto;}
/*品牌专题*/
.brandzt{width:160px;padding:10px;margin-bottom:10px;background:#eee;font-family:Arial,helvetica,sans-serif;float:left;}
.brandzt .title{height:25px;line-height:20px;font-size:14px;font-weight:bold;color:#000;}
.brandzt ul li{width:160px;height:auto;line-height:0px;cursor:pointer;float:left;}
.brandzt ul li span{cursor:pointer;}
.brandzt .a1{width:140px;height:20px;line-height:20px;padding:0px 0px 0px 20px;margin-top:1px;background:url(http://static.yohobuy.com/images/brandzt_li.png) no-repeat 0px 0px;color:#333;float:left;overflow:hidden;font-weight:bold;font-family:Arial,helvetica,sans-serif;}
.brandzt .act .a1{background:url(http://static.yohobuy.com/images/brandzt_li.png) no-repeat 0px 0px;color:#000;}
.brandzt .u1{width:160px;padding:5px 0px;float:left;}
.brandzt .u1 li a{ width:130px;height:20px;line-height:20px;padding:0px 0px 0px 30px;background:url(http://static.yohobuy.com/images/brandzt_li.png) no-repeat 0px -20px;color:#666;margin-top:0px;float:left;white-space:nowrap;overflow:hidden;}
.brandzt .u1 li .act{ width:130px;height:20px;line-height:20px;padding:0px 0px 0px 30px;background:url(http://static.yohobuy.com/images/brandzt_li.png) no-repeat 0px -40px;color:#fff;margin-top:0px;float:left;}
.brandzt .u1 li .act:hover{text-decoration:none;}
.brandzt a:hover .a1,.brandzt .a1:hover,.brandzt .hover{ text-decoration:underline;}
.brandzt .act:hover span{text-decoration:none;}
/*帮助中心*/
.help-nav{width:182px;height:auto;background:url(http://static.yohobuy.com/images/usercenter_left_bg.png) repeat-y;margin-bottom:10px;float:left;}
.help-nav .title{width:182px;height:40px;background:url(http://static.yohobuy.com/images/help_t_bzzx.png) no-repeat; text-indent:-999em;float:left;}
.help-nav .main{width:178px;height:auto;padding:0px 3px 10px 1px;background:url(http://static.yohobuy.com/images/usercenter_left_b.png) no-repeat bottom;float:left;}
.help-nav dl{width:164px;background:#efefef;padding:10px 7px;border-bottom:1px #e6e6e6 solid;float:left;}
.help-nav dl dt{width:113px;height:18px;padding:2px 10px;background:url(http://static.yohobuy.com/images/help_search.png) no-repeat 0px 0px;overflow:hidden;float:left;}
.help-nav dl dd{width:31px;float:left;}
.help-nav ul{width:154px;padding:8px 12px 0px 12px;float:left;}
.help-nav li{height:20px;font-family:Arial,helvetica,sans-serif;padding-left:20px;margin-bottom:5px;line-height:20px;color:#333;background:url(http://static.yohobuy.com/images/help_nav_li.png) no-repeat 0px 0px;}
.help-nav .act{color:#fff;background:url(http://static.yohobuy.com/images/help_nav_li.png) no-repeat 0px -20px;}
.help-nav li a{color:#333;}
.help-nav .act a{color:#fff;}
.help-kf{width:182px;height:auto;background:url(http://static.yohobuy.com/images/usercenter_left_bg.png) repeat-y;margin-bottom:10px;float:left;}
.help-kf .title{width:182px;height:40px;background:url(http://static.yohobuy.com/images/help_t_yhkf.png) no-repeat; text-indent:-999em;float:left;}
.help-kf .main{width:158px;height:auto;padding:10px 13px 15px 11px;background:url(http://static.yohobuy.com/images/usercenter_left_b.png) no-repeat bottom;float:left;}
.help-kf li{padding:0px 0px 5px 0px;}
.help-kf p{padding:5px 0px 0px 0px;line-height:15px;}
.help-kf strong{color:#000;font-size:18px;font-family:Arial,helvetica,sans-serif;}
.help-con{height:auto;padding:15px;}
.help-con h2{border-bottom:2px #eee solid;font-size:14px;color:#333;height:20px;line-height:20px;padding-top:10px;}
.help-con h5{border-bottom:2px #eee solid;font-size:14px;color:#333;height:20px;line-height:20px;padding-top:10px;}
.help-con p{padding:10px 0px;}
.help-con a{color:#468fa2; text-decoration:underline;}
.help-faq{height:auto;padding:15px;}
.help-faq h2{border-bottom:2px #eee solid;font-size:14px;color:#333;height:20px;line-height:20px;padding-top:10px;}
.help-faq ul{margin:10px 0px;display:block;height:auto !important;min-height:20px;_height:20px;}
.help-faq ul:after { content:""; display:block; clear:both; height:0; }
.help-faq li{width:345px;height:20px;line-height:20px;padding:0px 0px 0px 20px;margin:0px 15px 5px 0px;display:inline;background:url(http://static.yohobuy.com/images/ico_zx.png) no-repeat -26px 3px;float:left;overflow:hidden;font-family:Arial,helvetica,sans-serif;}
.help-faq .list-m{padding-top:10px;}
.help-faq .list{height:auto !important;min-height:20px;_height:20px;clear:both;padding:10px;}
.help-faq .list:after { content:""; display:block; clear:both; height:0; }
.help-faq .list-s{border:1px #fbf0d5 solid;background:#fefaf0;}
.help-faq .list .ask{clear:both;height:auto !important;min-height:10px;_height:10px;padding:0px 0px 10px 20px;background:url(http://static.yohobuy.com/images/ico_zx.png) no-repeat -26px 3px;}
.help-faq .list .reply{clear:both;background:url(http://static.yohobuy.com/images/ico_zx.png) no-repeat 0px -25px;padding:0px 0px 0px 20px;margin:0px;color:#f07100;}
.help-faq .list-b{clear:both;text-align:right;}
.faq-search{clear:both;height:22px;line-height:22px;font-size:14px;color:#333;font-weight:bold;padding:10px;background:url(http://static.yohobuy.com/images/faq_search.png) no-repeat;}
.faq-search .li-t{width:330px;float:left;}
.faq-search .li-m{width:250px;float:left;}
.faq-search dl dt{width:183px;height:18px;line-height:18px;padding:2px 10px;background:url(http://static.yohobuy.com/images/help_search.png) no-repeat 0px -22px;overflow:hidden;float:left;}
.faq-search dl dd{width:31px;float:left;}
.faq-search .li-b{width:45px;float:left;}
.faq-search .li-r{width:120px;float:left;}
/*专题页*/
.zt-container{background:url(http://static.yohobuy.com/images/zt_bg.png) repeat-x #fff;}
.zt-container-n{width:990px;background:#fff;padding:0px 0px 10px 0px;height:auto!important;min-height:400px;_height:400px;margin:0 auto;}
.zt-header{height:485px;background:url(http://static.yohobuy.com/images/zt_header.jpg) no-repeat; position:relative;margin-bottom:10px;}
.zt-header .newinfo{width:510px;height:80px; position:absolute;top:390px;left:62px;overflow:hidden;}
.zt-header .newinfo h2{height:32px;line-height:25px;font-size:16px;font-family:Arial,helvetica,sans-serif;}
.zt-header .newinfo p{line-height:16px;}
.zt-header .oldinfo{width:180px;height:80px; position:absolute;top:390px;left:735px;overflow:hidden;}
.zt-header .oldinfo h2{height:32px;line-height:25px;font-size:16px;font-family:Arial,helvetica,sans-serif;}
.zt-header .oldinfo p{line-height:20px;}
.zt-header .oldinfo p strong{font-size:20px;font-family:Arial,helvetica,sans-serif;color:#503b3d;line-height:20px;}
.zt-nav{margin-bottom:20px;}
.zt-nav ul{height:99px;}
.zt-nav li{width:90px;height:99px;float:left;text-align:center; position:relative;}
.zt-nav li a{width:87px;height:99px;margin:0 auto; text-indent:-999px;overflow:hidden;display:block;}
.zt-nav .n1{background:url(http://static.yohobuy.com/images/zt_cate_1.png) no-repeat;}
.zt-nav .n2{background:url(http://static.yohobuy.com/images/zt_cate_2.png) no-repeat;}
.zt-nav .n3{background:url(http://static.yohobuy.com/images/zt_cate_3.png) no-repeat;}
.zt-nav .n4{background:url(http://static.yohobuy.com/images/zt_cate_4.png) no-repeat;}
.zt-nav .n5{background:url(http://static.yohobuy.com/images/zt_cate_5.png) no-repeat;}
.zt-nav .n6{background:url(http://static.yohobuy.com/images/zt_cate_6.png) no-repeat;}
.zt-nav .n7{background:url(http://static.yohobuy.com/images/zt_cate_7.png) no-repeat;}
.zt-nav .n8{background:url(http://static.yohobuy.com/images/zt_cate_8.png) no-repeat;}
.zt-nav .n9{background:url(http://static.yohobuy.com/images/zt_cate_9.png) no-repeat;}
.zt-nav .n10{background:url(http://static.yohobuy.com/images/zt_cate_10.png) no-repeat;}
.zt-nav .n11{background:url(http://static.yohobuy.com/images/zt_cate_11.png) no-repeat;}
.zt-nav ul .act span{width:11px;height:9px;background:url(http://static.yohobuy.com/images/zt_cate_act.png) no-repeat;position:absolute;top:93px;left:40px;display:block;}
.zt-nav p{height:20px;line-height:20px;background:#efefef;margin:3px 2px 3px 1px;padding:5px 10px;}
.zt-nav p .act{height:20px;padding-left:18px;background:url(http://static.yohobuy.com/images/search_select.png) no-repeat left;display:inline-block;}
.zt-nav p .act span{height:20px;padding-right:5px;line-height:20px;color:#fff;font-weight:bold;background:url(http://static.yohobuy.com/images/search_select.png) no-repeat right;display:inline-block;cursor:pointer;}
.zt-reg{border:1px #ccc solid;height:auto !important;min-height:40px;_height:40px;margin-bottom:10px;}
.zt-reg:after { content:""; display:block; clear:both; height:0; }
.zt-reg .title{height:34px;line-height:34px;padding:0px 10px;font-weight:bold;font-size:14px;background:#eee;border-bottom:1px #ccc solid;}
.zt-reg .main{padding:10px;height:auto !important;min-height:40px;_height:40px;}
.zt-reg .main:after { content:""; display:block; clear:both; height:0; }
.zt-reg-info{width:670px;padding:10px;float:left;}
.zt-reg-info img{margin-bottom:10px;}
.zt-reg-info p{margin-bottom:10px;}
.zt-reg-box{width:185px;border:1px #e8e7e7 solid;background:#fafafa;padding:15px 20px;float:right;}
.zt-reg-box h2{ height:50px;background:url(http://static.yohobuy.com/images/zt_reg.png) no-repeat;text-indent:-999px;overflow:hidden;}
.zt-reg-box dl{margin-bottom:15px;}
.zt-reg-box dt{height:15px;line-height:15px;}
.zt-reg-box dd{height:22px;}
.zt-reg-box .submit{clear:both;padding:5px 0px 15px 0px;}
.zt_btn_reg{width:185px;height:25px;background:url(http://static.yohobuy.com/images/zt_btn_reg.png) no-repeat;border:0px;cursor:pointer;}
.zt-ad{clear:both;padding:0px;}
.zt-ad li{width:250px;height:130px;float:left;}
.zt-ad .end{width:240px;}
.modbox{padding:50px;}
/*首页浮动*/
.stayreal{width:129px; height:190px; position:fixed; right:0px; bottom:0px; z-index:10000;}
.stayrealclose{ background:url(http://static.yohobuy.com/images/close_02.png) no-repeat; float:right; cursor:pointer; border:none; width:16px; height:20px;}
.stayrealclose:hover{ background:url(http://static.yohobuy.com/images/close_01.png) no-repeat; float:right; cursor:pointer; border:none; width:16px; height:20px;}
/*折扣专区*/
.discount_0{background:url(http://static.yohobuy.com/images/zkzq.png) no-repeat; width:187px; height:62px; cursor:pointer; margin-bottom:3px; display:block;}
.new-select .discount_1{ background-color:#ff6600;}
.new-select .discount_1 img{ margin-left:5px;}
.new-select .discount_2{ background-color:#ff8a00;}
.new-select .discount_3{ background-color:#ffb400;}
.new-select .discount_act .discount_1{background:url(http://static.yohobuy.com/images/zkk_06.png) no-repeat; width:185px; height:30px;}
.new-select .discount_act .discount_2{background:url(http://static.yohobuy.com/images/zkk_09.png) no-repeat; width:185px; height:30px;}
.new-select .discount_act .discount_3{background:url(http://static.yohobuy.com/images/zkk_11.png) no-repeat; width:185px; height:30px;}
.discountred .pr-listbox .price{color:#e72a43;}
/*感恩节专题*/
.header_explain{ width:1021px; height:100px; background:url(http://static.yohobuy.com/images/vip_read.jpg) no-repeat; margin:0px auto; margin-bottom:7px;}
.summer_left_b{ background:#000; margin: 0 0 10px; overflow: hidden; width: 180px;}
.pr-listbox .summer_price{font-size: 12px;font-weight: normal; line-height: 18px;margin: 0 auto;overflow: hidden;width: 180px;}
.pr-listbox .summer_price del {color: #999;}
.pr-listbox .summer_price span.vip_title{ color:#fff; font-weight:bold; background:#ff0066; font-size:11px; height:9px; width:20px; display:block; line-height:9px; float:left; padding:2px 2px; }
.pr-listbox .summer_price span.vip_price{ display:block; line-height:14px; float:left; height:11px; padding-left:4px; color:#ff0066;}
/*邮件退订*/
.give_box{ width:600px; margin:0 auto; color:#000000; font-family:Arial,helvetica,sans-serif; margin-top:20px; }
.kc-box .kc-n h1.give_box_t{ font-size:22px; padding:50px 0 20px; background:none; color:#000000; }
.give_box_line{ height:1px; background:#000; margin:0 0px 10px; margin-bottom:15px; width:600px; overflow:hidden;}
.box_select label{ font-size:13px; line-height:23px; text-align:left; }
.box_select label input{ float:left; height:23px; padding-right:5px;}
.box_select label h3{font-size:16px; line-height:23px; text-align:left; float:left; margin-left:5px;}
.add_btn{ margin-right:5px; }
.give_sure{ text-align:center; width:800px;}
.give_sure a{ color:#fff; font-size:15px; line-height:28px; height:28px; text-decoration:none;}
.give_sure .btn_sure, .give_sure .btn_give{ background:url(http://static.yohobuy.com/images/search_btn2.png) no-repeat scroll ;border: 0 ;cursor: pointer;height: 28px;vertical-align: top;width: 80px; display:block; float:left; margin-right:20px; margin-top:15px;}
/*新品上架新*/
.pr-listbox .list_title {background: #EFEFEF;border: 1px solid #ccc;color: #333;position:relative;line-height: 22px;margin: 0 -1px -1px 0;padding: 8px 10px 2px;*padding:5px 10px;overflow:hidden;height:auto;zoom:1;}
.pr-listbox .list_title:after{content: ""; display: block; clear: both; height: 0px;}
/*新品上架 NEW */
.list_band_show{ line-height:21px; }
.list_band_show h3{ width:114px;font-size:12px;float:left;position:relative;z-index:2;}
.list_band_show h3 a .all_last{ color:#333;}
.list_band_show h3 a:hover{text-decoration:none;}
.list_band_show .list_band_main{margin:0px -100px 0px -114px;width:100%;float:left;position:relative;z-index:1;}
.list_band_show .list_band_main_inner{margin:0px 100px 0px 114px;}
.list_band_show .last_next{ width:92px;height:22px;padding-left:8px;float:right;position:relative;z-index:2;}
.list_title .brands{float:left; padding-left:3px;}
.list_title .band_all{ padding:0 7px; float:left; cursor:pointer;}
.list_title .more_band{ float:right; position:absolute; top:0px; right:100px;}
.list_band_none{ line-height:21px; }
.list_title .all_brand{ }
.list_title .band_up{ float:right;}
.all_line{ width:30px;}
.list_title .act span {background: url("http://static.yohobuy.com/images/search_select.png") no-repeat scroll right center transparent;color: #fff;cursor: pointer;display: inline-block;font-weight: bold;height: 21px;line-height: 21px;padding-right: 5px;}
.list_title .act {background: url("http://static.yohobuy.com/images/search_select.png") no-repeat scroll left center transparent;display: inline-block;height: 21px;padding-left: 18px;}
.list_title a {display: inline-block;height: 21px;}
.list_title .act span {background: url("http://static.yohobuy.com/images/search_select.png") no-repeat scroll right center transparent;color: #fff;cursor: pointer;display: inline-block;font-weight: bold;height: 21px;line-height: 21px;padding-right: 5px;}
.all_act .act {background: none repeat scroll 0 0 transparent;color: #000;font-weight: bold;}
.all_act .act span {background: none repeat scroll 0 0 transparent;color: #000;}
/*邮件退订 页面*/
.giveup_left{ padding:32px 0px 0px 30px; float:left; font-family:Arial,helvetica,sans-serif; color:#000000;}
.giveup_left h3{ font-size:18px; font-weight:normal; border-bottom:1px solid #bababa; height:32px; width:710px;}
.kc-m .kc-n .giveup_left h1{ font-size:24px; color:#080808; padding:23px 0px 18px 0; background:none;}
.giveup_left h4{ font-size:14px; font-weight:normal;}
.giveup_left h4 span{ color:#e72a43; font-weight:bold;}
.giveup_left h2{ font-size:18px; font-weight:normal; padding:25px 0 15px 0; }
.giveup_left span.giveup_intro{ display:block; font-size:15px; padding:5px 0;}
.giveup_left span.giveup_intro input{ margin-right:6px; margin-bottom:1px;}
.giveup_left .sure_btn_01{background:url(http://static.yohobuy.com/images/giveup_mail/giveup_btn_1.png) no-repeat scroll 0 0 transparent;}
.giveup_left .sure_btn_02{background:url(http://static.yohobuy.com/images/giveup_mail/giveup_btn_2.png) no-repeat scroll 0 0 transparent;}
.giveup_left .sure_btn_02, .giveup_left .sure_btn_01{ border: 0;cursor: pointer;display: inline-block;height: 35px;width: 72px;text-align:center; line-height:32px; color:#fff; font-size:16px;margin:20px 8px 40px 0;}
.giveup_right{ float:left; padding:63px 30px 0 33px;}
.giveup_list{ width:980px; margin:0 auto 20px;}
.giveup_list h3{ font-size:17px; color:#fff; background:#bddc41; height:27px; width:951px; padding-left:29px; margin-bottom:10px; line-height:27px; font-family:Arial,helvetica,sans-serif;}
.giveup_list ul{ border:1px solid #cdcdcd; width:978px; height:93px; background:#f8f8f8; }
.giveup_list ul li{ border-right:1px solid #cdcdcd; width:195px; float:left; height:84px; text-align:center; padding-top:9px;}
.giveup_list ul li.set_width{ width:194px;}
.giveup_list ul li.give_list_last{ border-right:none;}
.textarea_1_new {background: url("http://static.yohobuy.com/images/input_1.png") repeat-x scroll 0 0 #FFFFFF;border: 1px solid #C9C9C9;color: #333; overflow: auto; margin-top:10px; _margin-left:2px;}
/*邮件退订登录页面*/
.kc-box_sign {background:url(http://static.yohobuy.com/images/giveup_mail/kc_m_sign.png) repeat-y scroll 0 0 transparent;height: auto;margin: 20px auto 30px;width: 760px;}
.kc-box_sign .kc-m_sign {background:url(http://static.yohobuy.com/images/giveup_mail/kc_b_sign.png) no-repeat scroll center bottom transparent;padding-bottom: 4px;width: 760px;}
.kc-box_sign .kc-n_sign:after {clear: both;content: "";display: block;height: 0;}
.kc-box_sign .kc-n_sign {background:url(http://static.yohobuy.com/images/giveup_mail/kc_t_sign.png) no-repeat scroll center top transparent;height: auto !important;min-height: 300px;padding-top: 3px;width: 760px;}
.login-box_sign {padding: 20px 0 20px 20px;}
.login-box_sign .login-form {padding: 5px 20px 0 0;width: 700px;margin:0 auto;}
.login-box_sign .login-form h2 {border-bottom: 1px solid #E7E7E7;color: #333;float: left;font-size: 16px;height: 30px;line-height: 30px;padding-left: 5px;width: 585px;}
.login-box_sign .login-form .main { clear:both;padding: 25px 0 25px 89px;width: 440px;}
.login-box_sign .login-form .main dl:after {clear: both;content: "";display: block;height: 0;}
.login-box_sign .login-form .main dl {clear: both;float: left;font-family: 宋体;height: auto !important;line-height: 22px;margin-bottom: 20px;min-height: 22px;overflow: hidden;width: 590px;}
.login-box_sign .login-form .main dl dt {float: left;font-size: 14px;text-align: right;width: 75px;}
.login-box_sign .login-form .main dl dd {color: #999;float: left;width: 500px;}
.login-box_sign .login-form .main dl dd input {float: left;background: url("http://static.yohobuy.com/images/input_1.png") repeat-x scroll 0 0 #FFFFFF; border: 1px solid #C9C9C9;color: #333;height: 20px;line-height: 20px;vertical-align: top;}
.login-box_sign .login-form .main dl dd span {float: left;}
.login-box_sign .login-form .main .stat {color: #999;padding: 0 0 20px 75px;}
.login-box_sign .login-form .main .submit {padding: 0 0 20px 75px;}
/*yoho app*/
.main_app{width: 960px; margin: 120px auto 0px auto;}
.yedown{ margin:25px 0px;}
.yelogo_title{font-family: 微软雅黑 黑体;font-size: 26px;left: 16px;position: relative;top: 220px;}
.yeintro{ margin:30px 0px; padding:10px;}
.yeintro li{background:url(point.png) no-repeat; margin:6px 0px;}
.yeintro li span{ margin-left:14px; color:#777777; font-size:12px; line-height:16px;}
.ibtn_iphone{cursor:pointer; display:inline; float:left; margin-left:18px; background:url(http://static.yohobuy.com/images/yohoapp/1_09.png) no-repeat; height:54px; width:135px;}
.ibtn_iphone_on{ cursor:pointer; display:inline; float:left; margin-left:18px;background:url(http://static.yohobuy.com/images/yohoapp/1_0.png) no-repeat; height:54px; width:135px;}
.ibtn_android{ cursor:pointer; display:inline;margin:0px 32px; float:left;background:url(http://static.yohobuy.com/images/yohoapp/1_11.png) no-repeat; height:54px; width:135px;}
.ibtn_android_on{ cursor:pointer; display:inline;margin:0px 32px; float:left;background:url(http://static.yohobuy.com/images/yohoapp/1.png) no-repeat; height:54px; width:135px;}
.ibtn_iphone_bt{cursor:pointer; display:inline; float:left; margin-left:18px; background:url(http://static.yohobuy.com/images/yohoapp/d_03.png) no-repeat; height:55px; width:163px;}
.ibtn_iphone_bt_on{cursor:pointer; display:inline; float:left; margin-left:18px; background:url(http://static.yohobuy.com/images/yohoapp/fg_03.png) no-repeat; height:55px; width:163px;}
.yeback{ background:url(http://static.yohobuy.com/images/yohoapp/android-jt.png) no-repeat; height:30px; margin:0px 0px 10px 18px;}
/*评论*/
.detail_comment{ color: #999;font-weight: normal; float:right; margin-right:10px;}
.detail_con{background: none repeat scroll 0 0 #F8F8F8;color: #999;height: auto !important;margin-bottom: 5px;min-height: 20px;}
/*vip sale*/
.pr-listbox .vip_sale_price {font-size: 12px;font-weight: normal;line-height:20px;margin: 0 auto;overflow: hidden;background:url(http://static.yohobuy.com/images/vip_sale_btn.png) no-repeat left top; width: 150px;height:20px;padding-left:30px;}
.pr-listbox .vip_sale_price .vvip_price{ font-size: 12px;font-weight: normal;line-height: 30px;color:#ff0000;}
.pr-listbox .salenew_price{font-size: 12px;font-weight: normal;line-height: 17px;margin: 0 auto;overflow: hidden;width: 180px;}
.pr-listbox .salenew_price del {color: #999;}
.pr-listbox .salenew_thumb {height: 247px;padding-top: 10px;text-align: center;}
/*成功注册*/
.kc-box .kc-n .register_succ{ width:410px; margin:0 auto; text-align:left; padding-top:80px; }
.kc-box .kc-n h1{ font-size:28px; font-family:"微软雅黑"; color:#008000; background:url(http://static.yohobuy.com/images/regist_successbtn.png) no-repeat; height:36px; padding-left:60px; line-height:31px; }
.kc-n .register_succ p{ color:#575757; font-size:10px; padding-left:60px; margin-top:-7px;}
.kc-n .register_succ h4{ font-size:12px; color:#8a8a8a; font-family:"微软雅黑"; font-weight:normal; padding:14px 0 14px 60px;}
.kc-n .register_succ h5{ color:#bababa; padding-left:60px; font-size:12px; font-weight:normal; font-family:"微软雅黑";}
/*我的退货申请 YOHO币*/
.wdthh_tui{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.wdthh_tui .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_tui .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_tui .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/back_re_btn.png) no-repeat; text-indent:-999em;float:left;}
.wdthh_tui .main .list-m{width:778px;padding:10px 10px 0px 10px;float:left;}
.cart_flow_new {width: 290px;height: 32px;position: relative;margin:10px 40px 10px 0;}
.words001 { bottom: 0; left: 0; margin-left: -30px; position: absolute;}
.words002 { bottom: 0; left: 50%; margin-left: -34px; position: absolute;}
.words003 { bottom: 0; position: absolute;margin-right:-30px; right: 0;}
.wdthh_tui .main .tuikuan_mon{ float:left; margin:22px 0 0 10px; color:#e8044f; display:inline;}
.table_tui{ margin:18px 0 ; padding-top:0;}
.choose_payfor{ padding:20px 20px 0 10px; min-height:20px; line-height:20px; clear:both; }
.choose_payfor span.yobi, .choose_payfor span.yo_bank, .choose_payfor span.yo_paybank{ padding:0 20px 0 0; color:#333; display:block; float:left; }
.choose_payfor .in_yobi{ margin-right:5px;}
.choose_payfor .yohobi_exan{ clear:both;color:#999; padding-top:15px; float:left; width:720px; }
.pay_money_exa{ padding:10px; border:1px solid #E6E6E6; margin:30px 0 0px; line-height:21px;}
.pay_money_exa .expla_tui, .pay_money_huan .expla_tui{ text-indent:2em;}
.wdthh-form-submit_bac {clear: both;width:775px;text-align:center;margin:20px 0 10px;}
.btn_b1_back, .btn_b1_pay_next, .btn_b1_last{ border: 0; color: #fff; cursor: pointer;display: inline-block;font-size: 14px;font-weight: bold; height: 35px;line-height: 35px;padding-right: 10px;width: 118px;}
.btn_b1_back{ background:url(http://static.yohobuy.com/images/tui_back_btn.jpg) no-repeat scroll 0 0 transparent; margin-right:25px;}
.btn_b1_pay_next{ background:url(http://static.yohobuy.com/images/tui_back_next.jpg) no-repeat scroll 0 0 transparent;}
.btn_b1_last{ background:url(http://static.yohobuy.com/images/que_btn_last.jpg) no-repeat scroll 0 0 transparent; margin-right:25px;}
/*银行卡*/
.yohobank{ color:#999; padding:14px 0 0 4px; width:720px;}
.yohobank dl {padding: 6px;}
dt.yohobank_them{color: #333;float: left;text-align: right;width:134px;}
.onShow_new {background:url(http://static.yohobuy.com/images/onShow.png) no-repeat scroll 5px 5px transparent;color: #999;display: inline-block; font-size: 12px;height: 22px;line-height: 22px;padding-left: 25px;float:left;}
.yohobank .input_1 {float:left;}
/*支付宝*/
.yohobank .tishi_pay{ clear:both; padding-left:140px; color:#e8044f; padding-top:15px; display:inline-block; float:left;}
/*退款信息确认*/
.wdthh_tui .main .list-t {background: none repeat scroll 0 0 #EFEFEF;border: 1px solid #E6E6E6;display: inline;float: left;height: 25px;line-height: 25px;text-align: center;width: 776px;}
.wdthh_tui .main .list-t .li-11 {float: left;padding-left: 10px;text-align: left;width: 140px;}
.wdthh_tui .main .list-t .li-22 {float: left;padding-left: 10px;text-align: left;width: 146px;}
.wdthh_tui .main .list-t .li-33 {float: left;padding-left: 10px;text-align: left;}
.tablequeren td{ padding-left:10px; text-align:left;}
.onShow_new_pay{ background:url(http://static.yohobuy.com/images/onShow.png) no-repeat scroll 5px 5px transparent;color: #999;display: inline-block; font-size: 12px; height: 22px;line-height: 22px;padding-left: 25px;margin-left:15px;}
/*退货审核*/
.repe_ing{ width:420px; margin:0 auto; font-family:"微软雅黑"; padding:130px 0 190px;}
.repe_ing h1{ font-size:30px; color:#99cc00; margin-bottom:20px; font-weight:bold;}
.repe_ing p, .repe_succe p, .repe_succe_new p, .repe_succe_xinx p{ color:#333;}
.btn_b1_back-center{ border: 0 ; cursor: pointer;display: inline-block; height: 35px;line-height: 35px;padding-right: 10px; width: 176px; background:url(http://static.yohobuy.com/images/backtoc_btn.png) no-repeat; margin-top:25px;}
/*退货success*/
.repe_succe{ width:527px; margin:0 auto; font-family:"微软雅黑"; padding:75px 0 190px;}
.repe_succe h1, .repe_succe_new h1, .repe_succe_xinx h1{ font-size:30px; color:#99cc00; margin-bottom:20px; font-weight:bold; background:url(http://static.yohobuy.com/images/tuihuosucc_btn.png) no-repeat;cursor: pointer;display: inline-block; height: 31px;line-height: 31px;padding-left:45px; }
.repe_succe p, .repe_succe_new p, .repe_succe_xinx p{ line-height:23px;}
/*换货申请通过*/
.cart_flow_new_huan {height: 32px; margin: 10px 34px 10px 0;_margin: 10px 20px 10px 0; position: relative; width: 360px;}
.dot001 {display: block;height: 12px;left: 0; position: absolute;top: 0;width: 12px;}
.dot002 {display: block;height: 12px;left: 33%; margin-left: -6px; position: absolute; top: 0; width: 12px;}
.dot003 {display: block;height: 12px;left: 66%; margin-left: -6px; position: absolute; top: 0; width: 12px;}
.dot004 {display: block;height: 12px;position: absolute;right: 0;top: 0;width: 12px;}
.dot002 {display: block;height: 12px;left: 33%;margin-left: -6px;position: absolute;top: 0;width: 12px;}
.words0002 {bottom: 0;left: 33%;margin-left: -34px;position: absolute;}
.words0003 {bottom: 0;left: 66%;margin-left: -22px; position: absolute;}
.words0004{bottom: 0;margin-right: -22px;position: absolute;right: 0;}
.repe_succe_new{width:560px; margin:0 auto; font-family:"微软雅黑"; padding:75px 0 190px;}
.repe_succe_xinx{width:420px; margin:0 auto; font-family:"微软雅黑"; padding:75px 0 190px;}
/*换货信息填写*/
.wdthh_tui .title h2.hh_re {background:url(http://static.yohobuy.com/images/hyuanhuoshenq.png) no-repeat;float: left;height: 15px;text-indent: -999em;width: 241px;}
.list_t_huan{ margin-top:18px;}
.wdthh_tui .main .list-t .li-111 {float: left;padding-left: 10px;text-align:center;width:350px;}
.wdthh_tui .main .list-t .li-222 {float: left;padding-left: 10px;text-align:center;width:184px;}
.wdthh_tui .main .list-t .li-333 {padding-left: 10px;text-align:center;}
.selec_kua p{ line-height:29px;}
.selec_kua{ width:175px; margin:0 auto; }
.selec_kua .sel_color{ width:85px;}
.onShow_new_wu {background:url(http://static.yohobuy.com/images/wu_btn.png) no-repeat scroll 5px 5px transparent;color: #e8044f;display: inline-block;font-size: 12px;height: 22px;line-height: 22px;padding-left: 25px;}
.passager{ margin-bottom:25px; margin-top:-4px;}
.ds_single_new{width: 756px;padding:10px;margin: 10px auto;background: #FDFCDD;border: #EFDDA6 solid 1px;}
.ds_single_new h3 {font-size: 12px;}
.ds_single_new p {line-height: 24px;margin-left: 10px;}
.ds_single_new span.jihui{ padding-right:30px;}
.ds_single_new span.shangm{ padding-right:7px;}
.pay_money_huan{ padding:10px; border:1px solid #E6E6E6; margin:10px 0 0px; line-height:21px;}
/*换货信息确认*/
.table_huan{ margin-bottom:10px;}
.table_huan td{ padding:3px 3px 3px 20px; }
.table_huan th{ padding:10px 0 0px 20px; color:#000; font-weight:normal;}
.table_huan td li {background: none repeat scroll 0 0 #FFFFFF;border: 1px solid #E7E7E7;display: inline;float: left;height: 64px; padding: 8px 10px;width: 280px;}
.address_huan{ padding:35px 0 70px 50px;}
.add_tab td{ padding:5px; color:#333;}
.rec_choose_new {border-bottom: 1px dotted #C9C9C9;padding: 10px 0;}
.rec_choose_new p.on {background: none repeat scroll 0 0 #F0F5F8;font-weight: bold;height: 14px;line-height: 14px;padding: 12px 10px 18px;}
.rec_choose_new p {display: block;height: 12px;line-height: 12px;padding: 9px 10px;}
.rec_choose_new p input {margin-right: 5px;vertical-align: text-bottom;}
h2.buy_title {background: none repeat scroll 0 0 #000000;color: #fff;font-weight: bold;}
.cart_bigbtns_new {height: 35px;margin: 20px auto;text-align: right;}
/*升级大促第三波*/
.pr-listbox .big_sale_price{background: url(http://static.yohobuy.com/images/yellow_bag.png) no-repeat scroll left top transparent;font-size: 12px;font-weight: normal;height: 20px;line-height: 20px;margin: 0 auto;overflow: hidden;padding-left: 30px;width: 150px;}
.pr-listbox .big_sale_price .yellbig_price {color: #e1bb00;font-size: 12px;font-weight: normal;line-height: 30px;}
/*金色首页*/
.titlt_inner{ background:url(http://static.yohobuy.com/images/nav_line_yellow.jpg) no-repeat; height:42px; }
/*outlets*/
.outlets-banner{min-width:990px; text-indent:-999em;overflow:hidden;margin-top:-3px;}
.outlets-brand{clear:both;height:105px;overflow:hidden;border-bottom:1px #dfdfdf solid;margin-bottom:10px; zoom:1;}
.outlets-brand:after{content: ""; display: block; clear: both; height: 0px;}
.outlets-brand li{width:102px;height:105px;margin-right:10px;display:inline; white-space:nowrap;overflow:hidden;text-align:center;float:left;}
.outlets-brand li img{width:80px;height:50px;padding:10px;border:1px #ccc solid;display:block;margin-bottom:5px;}
.outlets-brand li span{color:#999;}
.outlets-brand li a{color:#f60;}
.pr-listbox .outlets_sale{font-size: 12px;font-weight: normal;height: 20px;line-height: 20px;margin: 0 auto;overflow: hidden;width: 180px;}
.pr-listbox .outlets_sale .outlets_price {color: #d12c25;font-size: 12px;font-weight: normal;}
.select-box-outlet{background:#fff;padding:9px;border:1px #ccc solid;}
.select-box-outlet .list-box{width:160px;padding-bottom:10px;margin-bottom:10px;background:url(http://static.yohobuy.com/images/line_dot_4.png) bottom repeat-x;color:#000;font-family:Arial,helvetica,sans-serif;float:left;}
.select-box-outlet .end{background:none;margin-bottom:0px;}
.select-box-outlet .list-box h2{font-size:12px;font-weight:normal;}
.select-box-outlet .list-box li a{ width:130px;height:18px;line-height:18px;padding:2px 0px 0px 30px;background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -40px;color:#333;margin-top:1px;float:left;white-space:nowrap;overflow:hidden;}
.select-box-outlet .list-box li .act{ width:130px;height:18px;line-height:18px;padding:2px 0px 0px 30px;background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -60px;color:#fff;margin-top:1px;float:left;}
.select-box-outlet .list-box li .act:hover{text-decoration:none;}
.select-box-outlet .list-box h2 a{width:140px;height:18px;line-height:18px;padding:2px 0px 0px 20px;background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat;color:#f50;float:left;overflow:hidden;}
.select-box-outlet .list-box h2 .act{background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -20px;color:#fff;}
.select-box-outlet .gender .all-act{background:url(http://static.yohobuy.com/images/outlet_gender.png) no-repeat 0px -22px;}
.select-box-outlet .gender .boy-act{background:url(http://static.yohobuy.com/images/outlet_gender.png) no-repeat -54px -22px;}
.select-box-outlet .gender .girl-act{background:url(http://static.yohobuy.com/images/outlet_gender.png) no-repeat -108px -22px;}
.select-box-outlet .category .a1{background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat;}
.select-box-outlet .category .act .a1{background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -20px;color:#fff;}
.select-box-outlet .category .u1 li a{background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -40px;color:#333;}
.select-box-outlet .category .u1 li .act{background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -60px;color:#fff;}
.select-box-outlet .category .u1 li .a2{background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -40px;}
.select-box-outlet .category .u1 li .act .a2{background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -60px;color:#fff;}
.select-box-outlet .category .u2 li a{background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -80px;}
.select-box-outlet .category .u2 li .act{background:url(http://static.yohobuy.com/images/outlet_category_li.png) no-repeat 0px -100px;color:#fff;}
.search-condition-outlet .act{background:url(http://static.yohobuy.com/images/outlet_search_select.png) no-repeat left;}
.search-condition-outlet .act span{background:url(http://static.yohobuy.com/images/outlet_search_select.png) no-repeat right;}
/*2012-7-2左侧栏*/
.index-category_new, .index-brands {margin-bottom: 0px !important;}
.index-category_new {width: 158px;padding: 5px 10px;background: #fff;border: 1px #ff8a00 solid;margin-bottom: 10px;}
.index-left .index_7-2_top{ width:180px; height:60px;background:url(http://static.yohobuy.com/images/index/left_head.jpg) left top; }
.index-category_new ul .end {background: none;}
.index-category_new ul li {height: auto;padding: 5px 0px 5px 0px;background:url(http://static.yohobuy.com/images/index/line_dot.png) repeat-x bottom;}
.index_7-2_bottom{background:url(http://static.yohobuy.com/images/index/left_foot.jpg) left bottom; width:180px; height:29px; }
/** 焦点图 **/
.yohobuynew-index-focus{width:1240px;height:404px;border-bottom:1px #ccc solid;margin:0 auto 30px auto;overflow:hidden;}
.yohobuynew-index-focus ul{height:74px;border-left:1px #ccc solid;}
.yohobuynew-index-focus li{width:176px;height:60px;padding:7px 0px 0px 0px;border-right:1px #ccc solid;text-align:center;float:left;}
.yohobuynew-index-focus li img{width:148px;height:54px;display:block;margin:0 auto;filter: alpha(opacity=50); -moz-opacity:0.5; opacity:0.5;}
.yohobuynew-index-focus li a{height:56px;color:#999;font-weight:bold;font-family:Arial,helvetica,sans-serif;display:block; }
.yohobuynew-index-focus li a:hover{text-decoration:none;color:#000;border-bottom:6px #000 solid}
.yohobuynew-index-focus li a:hover img{filter: alpha(opacity=100); -moz-opacity:1; opacity:1;}
.yohobuynew-index-focus .act img{filter: alpha(opacity=100); -moz-opacity:1; opacity:1;}
.yohobuynew-index-focus .act a{color:#000;border-bottom:6px #000 solid}
.yohobuynew-index-focus .pic{height:333px;border:1px #ccc solid;overflow:hidden;}
.yohobuynew-index-focus .pic ul{width:100%;border:0px !important;}
.yohobuynew-index-focus .pic .list_img{height:333px;overflow:hidden;}
.yohobuynew-index-focus .pic li{width:100%;height:333px;border:0px !important;padding:0px;}
.yohobuynew-index-focus .pic li img{width:100%;height:336px;filter: alpha(opacity=100); -moz-opacity:1; opacity:1;}
.body990 .yohobuynew-index-focus{width:990px;}
.body990 .yohobuynew-index-focus ul{padding:0 1px;}
.body990 .list_num{width:987px;}
.body990 .list_num li{width:140px;}
.body990 .list_num li img{width:120px;}
.body990 .list_num .end{width:142px;}
.body990 .yohobuynew-index-focus .pic{width:987px;padding:0px;}