common.css
130 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
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
@charset "utf-8";
body,div,ul,ol,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,input,p,blockquote,th,td,button,blockquote{ margin:0; padding:0;}
body{ font-family:Arial,helvetica,sans-serif;font-size:12px;background:#fff; margin:0; color:#666;text-align:left;line-height:150%; }
img {border:0; vertical-align:middle;}
input, textarea, select {vertical-align:middle; font-size:12px; color:#333; }
iframe{ border:none;}
dl,ul,li,ol{ list-style:none; padding:0; margin:0;}
button{ cursor:pointer;vertical-align:middle;}
cite{font-style:normal;}
form{display:inline;}
a{color: #666;text-decoration: none;}
a:hover{ color:#468fa2; text-decoration:underline;}
.clear {clear:both;height:0px; margin:0px;font-size:0px;line-height:0px;overflow:hidden;height:0px !important; overflow:hidden !important; float:none !important; line-height:0px !important; padding:0 !important; margin:0 !important; border:none !important; }
.hidden{ display:none;}
.show{ display:block;}
/*----- clearfix -----*/
.cf:after{content: ""; display: block; clear: both; height: 0px;}
.cf{/display: inline-block;}
.kuang{/display:inline-block;position:relative;margin:0 auto;}
.pagebody{min-width:990px;max-width:1600px;margin:0 auto;}
.pagebody-1{width:1572px;_width:1573px;}
.pagebody-1 .pr-listbox li{width:222px;}
.pagebody-2{width:1410px;_width:1411px;}
.pagebody-2 .pr-listbox li{width:234px;}
.pagebody-3{width:1252px;_width:1253px;}
.pagebody-3 .pr-listbox li{width:253px;}
.pagebody-4{width:990px;_width:991px;}
.pagebody-4 .pr-listbox li{width:250px;}
blockquote {quotes: none;}
blockquote:before, blockquote:after {content: '';content: none;}
del {text-decoration: line-through;}
small{font-size:12px;}
.font_blue{color:#468fa2;}
.font_green{color:#57AA0A;}
.font_red{color:#e8044f;}
.font_f60{color:#f60;}
.font_333{color:#333;}
.font_666{color:#666;}
.font_999{color:#999;}
.font_12{font-size:12px;}
.font_14{font-size:14px;}
.font_16{font-size:16px;}
.font_18{font-size:18px;}
.font_24{font-size:24px;}
.font_yahei{font-family:arial,Microsoft yahei;}
.font_slim{font-weight:normal;}
.underline{text-decoration:underline !important; cursor:pointer;}
.left{float:left;}
.right{float:right;}
.bdrnone{border-right:none !important;}
.bdlnone{border-left:none !important;}
.bdnone{border:none !important;}
.alright{text-align:right !important;}
.alleft{text-align:left !important;}
.none{display:none !important;}
#wrapper{width:1240px;min-width:990px;overflow: hidden;}
.liquidFix{display: block;margin:0 auto;min-width:990px;max-width:1270px;}
.liquidFix:after{content: ""; display: block; clear: both; height: 0px;}
.liquidFix{/display: inline-block;}
/*头文件*/
.header{position:relative;z-index:99;clear:both;margin:0 auto;min-width:990px;zoom:1;}
.header:after{content: ""; display: block; clear: both; height: 0px;}
.header .logo{width:261px;height:75px;padding:15px 0px 0px 19px;float:left;position:relative;z-index:10001;overflow:hidden;}
.header .right{height:90px;padding:0px;margin:0px 0px 0px -280px;width:100%;float:left; }
.header .search{width:300px;padding:10px 0px 0px 0px;margin-left:280px;display:inline;float:left;}
.header .search dt{width:225px;height:30px;padding:5px 5px 0px 5px;background:url(http://static.yohobuy.com/images/header_search_new.png) no-repeat 0px 0px;float:left; position:relative;z-index:9999;}
#shelper{color:#333;overflow:hidden;position:absolute;top:33px;left:0;width:234px;border:1px solid #ddd;background:#fff;-moz-box-shadow:0 0 5px #ddd;-webkit-box-shadow:0 0 5px #ddd;box-shadow:0 0 5px #ddd;}
#shelper li{overflow:hidden;padding:1px 6px;line-height:22px;cursor:pointer;}
#shelper .close{border-top:1px solid #efefef;text-align:right;}
#shelper .item3{cursor:default;}
#shelper .item3 a{float:left;margin-right:10px;white-space:nowrap;}
#shelper li.fore1{width:100%;padding:0;border-bottom:1px solid #ddd;}
#shelper li.fore1 div{float:none;width:auto;height:22px;padding:1px 2px 1px 20px;overflow:hidden;zoom:1;}
#shelper li.fore1 div.fore1{padding-left:6px;}
#shelper li.fore1 strong{color:#e8044f;}
#shelper li.fore1 .fore1 strong{color:#333;}
#shelper li.fore1 .item1{float:none;width:auto;padding:1px 2px 1px 20px;}
#shelper li.fore1 .item2{float:none;width:auto;padding:1px 2px 1px 20px;}
#shelper li.fore1 .item3{float:none;width:auto;color:#9C9A9C;}
#shelper li.fore1 span{float:left;}
#shelper li:hover{background:#eee;}
#shelper li.fore1:hover,#shelper li.close:hover{background:none;}
#shelper li.fore1 div:hover{background:#eee;}
.header .search dd{padding-right:10px;float:left;white-space:nowrap;overflow:hidden;}
.header .search .keywords{display:none;}
.input_search{width:225px;height:25px;line-height:25px;border:0px; vertical-align:top;background:none;color:#999;}
.btn_search{width:53px;height:35px;background:url(http://static.yohobuy.com/images/header_search_new.png) no-repeat -235px 0px;border:0px;cursor:pointer; vertical-align:top;}
.btn_search:hover{background:url(http://static.yohobuy.com/images/header_search_new.png) no-repeat -235px -35px;}
.header .login{height:23px;line-height:22px;padding:10px 115px 0px 0px;background:url(http://static.yohobuy.com/images/header_tel_new.png) no-repeat right 13px ;font-family:Arial,helvetica,sans-serif;float:right;}
.header .login dt{width:75px;height:23px;background:url(http://static.yohobuy.com/images/line_dot_lan.png) no-repeat right;float:left;}
#myyoho{width:75px;text-align:left;background:url(http://static.yohobuy.com/images/myyoho_ar.png) no-repeat right;position:relative;z-index:10001;}
#myyoho ol{padding-left:12px;height:22px;line-height:22px;}
#myyoho li{height:22px;line-height:22px;border-bottom:1px #ccc solid;border-top:0px;overflow:hidden;text-align:center;}
#myyoho a {color:#666;line-height:22px;}
#myyoho a:hover {color:#468fa2; text-decoration:none;}
#myyoho ul {display:none;width:73px;height:auto;position:absolute;top:23px;left:0;border-left:1px #ccc solid;border-right:1px #ccc solid;background:#f8f8f8;z-index:10003;}
.myyoho_b {background:url(http://static.yohobuy.com/images/myyoho_ar.png) no-repeat right!important;}
.myyoho_a {width:75px!important;border-top:0px;background:#f8f8f8!important;}
.myyoho_a ol{padding-left:11px!important;border-left:1px #ccc solid;border-right:1px #ccc solid;border-bottom:1px #f00 solid;}
.myyoho_a ol:hover,.myyoho_a li:hover{background:#fff;}
#mymsg{width:75px;text-align:left;position:relative;z-index:10001;}
#mymsg ol{text-align:center;height:22px;line-height:22px;}
#mymsg ol a{line-height:22px;}
#mymsg ul {display:none;width:210px;height:auto;padding:5px 15px;position:absolute;top:21px;left:0;border:1px #ccc solid;background:#f8f8f8;z-index:10003;}
#mymsg li{height:22px;line-height:22px;overflow:hidden;color:#333;}
.mymsg_a ol{width:73px;height:22px;border:1px #ccc solid;border-bottom:0px;background:#f8f8f8;position:absolute;top:-1px;left:0;z-index:10004;}
#mymsg .f_g{color:#999;}
#mymsg .f_e{color:#468fa2;}
#mymsg strong{color:#e8044f;}
.header .login dd{padding:0px 9px;_padding:3px 9px;_line-height:16px;background:url(http://static.yohobuy.com/images/line_dot_lan.png) no-repeat right;float:left;}
.header .login .a_rz{color:#e8044f;text-decoration:none;}
.header .login .a_rz:hover{color:#e8044f; text-decoration:underline;}
.header .login a {color:#666;line-height:22px;_line-height:16px;}
.header .login a:hover {color:#468fa2; text-decoration:underline;}
.header .login .vip{padding-right:23px;height:22px;font-family:arial;color:#e8044f;font-weight:bold;background:url(http://static.yohobuy.com/images/ico_hot_2.png) no-repeat right; _background:url(http://static.yohobuy.com/images/ico_hot_2.png) no-repeat 2px right;display:inline-block; vertical-align:middle;}
.header .tab{text-align:right;padding-top:9px;float:right;}
.header .tab a{margin:0px 0px 0px 5px;height:37px;display:inline;overflow:hidden;float:left;overflow:hidden;}
.header .tab .tab_new{width:46px;height:20px;padding:17px 0px 0px 101px;text-align:center;color:#fff;line-height:18px;font-size:14px;font-weight:bold;font-family:arial;background:url(http://static.yohobuy.com/images/header_btn_pics_new.png) no-repeat 0px 0px;overflow:hidden;}
.header .tab .tab_new:hover{background:url(http://static.yohobuy.com/images/header_btn_pics_new.png) no-repeat 0px -37px;}
.header .tab .tab_brand{width:121px;background:url(http://static.yohobuy.com/images/header_btn_pics_new.png) no-repeat -278px 0px;}
.header .tab .tab_brand:hover{background:url(http://static.yohobuy.com/images/header_btn_pics_new.png) no-repeat -278px -37px;}
.header .tab .tab_brand_act,.header .tab .tab_brand_act:hover{background:url(http://static.yohobuy.com/images/header_btn_pics_new.png) no-repeat -278px -74px;}
.header .tab .tab_zt{width:121px;background:url(http://static.yohobuy.com/images/header_btn_pics_new.png) no-repeat -152px 0px;}
.header .tab .tab_zt:hover{background:url(http://static.yohobuy.com/images/header_btn_pics_new.png) no-repeat -152px -37px;}
.header .tab a:hover{ text-decoration:none;}
#headerbrand{clear:both;background:#efefef;border-top:1px #ccc solid;display:none;min-width:990px;}
#headerbrand a{color:#333;}
#headerbrand a:hover{ color:#468fa2; text-decoration:underline;}
#headerbrand .hot{color:#e8044f;}
#headerbrand .hot:hover{color:#e8044f;text-decoration:underline;}
#headerbrand .i_hot{margin:0px 0px 0px 5px; margin:2px 0px 0px 5px\9;margin:-1px 0px 0px 5px\0;vertical-align:middle;}
#headerbrand .list{width:16.6%;/width: 16.3%;min-width:165px;padding:5px 0px 0px 0px;float:left;}
#headerbrand .list h3 {padding:20px 0px 5px 20px;color:#000;font-family: arial,sans-serif;font-size: 20px;font-weight: bold;}
#headerbrand ul{padding-left:20px;color:#000;}
#headerbrand ul li{ white-space:nowrap;overflow:hidden;}
#headerbrand p{clear:both;text-align:right;padding:0px 10px 10px 10px;font-family:宋体;}
.header .nav{clear:both;min-width:990px;height:34px;background:url(http://static.yohobuy.com/images/header_nav_bg.png);}
.header .nav ul{padding:0px 0px 0px 5px;float:left;}
.header .nav li{float:left;position:relative;z-index:9998;}
.header .nav li .nav_sec{position:absolute;top:34px;left:0px;display:none;z-index:9999;height:auto!important;min-height:10px;_height:10px;padding:10px 15px 5px 15px;background:#fff;border:2px #000 solid;border-top:0px;}
.header .nav li .nav_sec dl{width:100px;padding:5px 0px;line-height:20px;clear:both;background:url(http://static.yohobuy.com/images/line_dot_3.png) repeat-x bottom;color:#ccc;float:left;font-family:宋体;}
.header .nav li .nav_sec .end{background:none;}
.header .nav li .nav_sec dt{width:65px;color:#e8044f;float:left;}
.header .nav li .nav_sec dt a{color:#e8044f;}
.header .nav li .nav_sec dd{width:35px;min-height:20px;_height:20px;float:left;padding:0px;}
.header .nav li .nav_sec a{text-indent:0px;float:none;color:#333; cursor:pointer;}
.header .nav li .nav_sec dd a{height:20px;padding:0px 5px;line-height:20px;display:inline-block;background:url(http://static.yohobuy.com/images/line_s.png) no-repeat right;vertical-align: top;}
.header .nav li .nav_sec dd .end{background:none;}
.header .nav li .nav_sec dd .i_new{ vertical-align:top;margin-top:5px;}
#n6 dl {width:100px;}
#n6 dt{width:95px;}
#n6 dd{width:5px;}
#n7 dl {width:295px;}
#n7 dt{width:95px;}
#n7 dd{width:200px;}
#n8 dl{width:300px;}
#n8 dt{width:85px;}
#n8 dd{width:215px;}
#n9 dl{width:300px;}
#n9 dt{width:80px;}
#n9 dd{width:220px;}
#n10 dl{width:300px;}
#n10 dt{width:60px;}
#n10 dd{width:240px;}
#n11 .nav_sec{width:600px;left:-520px;}
#n11 .nav_outlet_nav{width:85px;padding-right:25px;float:left;}
#n11 .nav_outlet_main{width:465px;padding-left:24px;border-left:1px #ccc dashed;min-height:250px;_height:250px;float:left;}
#n11 .nav_outlet_nav dl{float:none;width:auto;padding:0px 0px 20px 0px;background:none;}
#n11 .nav_outlet_nav dt{float:none;width:auto;height:20px;border-bottom:1px #ccc dashed;padding:0px;background:none;color:#000;font-weight:bold;}
#n11 .nav_outlet_nav dd{float:none;width:auto;padding:10px 0px 0px 0px;background:none;}
#n11 .nav_outlet_nav dd a{background:none;display:block;padding:0px;height:20px;line-height:20px;}
#n11 .nav_outlet_nav .ar a{background:url(http://static.yohobuy.com/images/i_ar.png) no-repeat 0px 5px;padding:0px 0px 0px 10px;}
#n11 .nav_outlet_main h2{clear:both;height:20px;border-bottom:1px #ccc dashed;font-size:12px;color:#000;}
#n11 .nav_outlet_main h2 .i_more{height:15px;padding:0px 0px 0px 10px;background:url(http://static.yohobuy.com/images/i_ar.png) no-repeat 0px 5px;font-weight:normal;float:right;}
#n11 .nav_outlet_main ul{clear:both;padding:10px 0px;}
#n11 .nav_outlet_main li{ width:155px;height:20px;float:left;position:static;}
#n11 .nav_outlet_main .i_new,#n11 .nav_outlet_main .i_hot{ vertical-align:middle;}
#n11 .nav_outlet_main .hot{color:#e8044f;}
#n11 .nav_outlet_main p{padding:10px 0px 0px 0px;}
#n11 .nav_outlet_main .keywords{color:#999;}
#n11 .nav_outlet_main .keywords a{color:#999;}
#nn9 .nav_sec{width:580px;padding:0px;}
#nn9 dl{width:280px;}
#nn9 dt{width:80px;}
#nn9 dd{width:200px;}
#nn9 .nav_sec_left{width:280px;padding:10px 15px 10px 15px;float:left;}
#nn9 .nav_sec_right{width:250px;height:210px;padding:10px 0px 0px 20px;background:url(http://static.yohobuy.com/images/nav_line.png) repeat-y #f8f8f8;float:left;}
#nn9 .nav_sec_right h2{clear:both;height:20px;line-height:20px;color:#e8044f;font-size:12px;}
#nn9 .nav_sec_right ul{clear:both;padding:0px 0px 20px 0px;zoom:1;}
#nn9 .nav_sec_right ul:after{content: ""; display: block; clear: both; height: 0px;}
#nn9 .nav_sec_right ul li{width:125px;height:20px;line-height:20px;float:left;}
#nn9 .nav_sec_right p{clear:both;padding:0px 0px 10px 0px;line-height:20px;zoom:1;}
#nn9 .nav_sec_right p:after{content: ""; display: block; clear: both; height: 0px;}
#nn9 .nav_sec_right .i_new{ vertical-align:middle;}
.header .nav li a{height:34px;text-indent:-999px;overflow:hidden;float:left;}
.header .nav .n0{width:59px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat 0px 0px;}
.header .nav .n0:hover{background:url(http://static.yohobuy.com/images/nav.png) no-repeat 0px -34px;}
.header .nav .n1{width:59px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -59px 0px;}
.header .nav .n1:hover,.header .over .n1,.header .act .n1{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -59px -34px;}
.header .nav .n2{width:59px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -118px 0px;}
.header .nav .n2:hover,.header .over .n2,.header .act .n2{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -118px -34px;}
.header .nav .n3{width:59px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -177px 0px;}
.header .nav .n3:hover,.header .over .n3,.header .act .n3{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -177px -34px;}
.header .nav .n4{width:59px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -236px 0px;}
.header .nav .n4:hover,.header .over .n4,.header .act .n4{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -236px -34px;}
.header .nav .n5{width:59px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -295px 0px;}
.header .nav .n5:hover,.header .over .n5,.header .act .n5{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -295px -34px;}
.header .nav .n6{width:48px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -354px 0px;}
.header .nav .n6:hover,.header .over .n6,.header .act .n6{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -354px -34px;}
.header .nav .n7{width:48px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -402px 0px;}
.header .nav .n7:hover,.header .over .n7,.header .act .n7{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -402px -34px;}
.header .nav .n8{width:59px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -450px 0px;}
.header .nav .n8:hover,.header .over .n8,.header .act .n8{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -450px -34px;}
.header .nav .n9{width:74px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -509px 0px;}
.header .nav .n9:hover,.header .over .n9,.header .act .n9{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -509px -34px;}
.header .nav .n10{width:85px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -583px 0px;}
.header .nav .n10:hover,.header .over .n10,.header .act .n10{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -583px -34px;}
.header .nav .n11{width:85px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -668px 0px;}
.header .nav .act .n11{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -668px -68px;}
.header .nav .n11:hover,.header .nav .act .n11:hover,.header .nav .over .n11{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -668px -34px;}
.header .nav .n12{width:85px;background:url(http://static.yohobuy.com/images/nav.png) no-repeat -753px 0px;}
.header .nav .n12:hover,.header .over .n12{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -753px -34px;}
.header .nav .act .n12{background:url(http://static.yohobuy.com/images/nav.png) no-repeat -753px -68px;}
.header .nav .btn_mycart{width:115px;height:34px;padding-left:30px;line-height:34px;color:#fff;background:url(http://static.yohobuy.com/images/header_btn_mycart_new.png) no-repeat;float:right;}
.header .nav .btn_mycart span{height:34px;line-height:36px;color:#fff;padding:0px 15px 0px 0px;background:url(http://static.yohobuy.com/images/header_btn_mycart_more.png) no-repeat right 0px;display:inline-block;font-family:Arial,helvetica,sans-serif;cursor:pointer; white-space:nowrap;overflow:hidden;}
.nav-mycart .over .btn_mycart{color:#000;background:url(http://static.yohobuy.com/images/header_btn_mycart_new.png) no-repeat 0px -34px;}
.nav-mycart .over .btn_mycart span{color:#000;background:url(http://static.yohobuy.com/images/header_btn_mycart_more.png) no-repeat right -34px;}
.nav-mycart{float:right; position:relative;}
.nav-mycart .nav-mycart-box{ position:absolute;top:34px;right:0px;width:390px;padding:10px 15px 10px 15px;background:#fff;border:2px #000 solid;border-top:0px;display:none;}
.nav-mycart .nav-mycart-box .list{height:70px;border-bottom:1px #ccc dashed;margin-bottom:8px;}
.nav-mycart .nav-mycart-box .list .li-t{width:75px;height:65px;float:left;}
.nav-mycart .nav-mycart-box .list .li-m{width:205px;padding:8px 0px 0px 0px;color:#999; white-space:nowrap;overflow:hidden;float:left;}
.nav-mycart .nav-mycart-box .list .li-m strong{color:#000;}
.nav-mycart .nav-mycart-box .list .li-m strong a{color:#000;}
.nav-mycart .nav-mycart-box .list .li-m strong a:hover{color:#468fa2; text-decoration:underline;}
.nav-mycart .nav-mycart-box .list .li-b{width:100px;padding:8px 0px 0px 0px;text-align:right;color:#e8044f;float:left;}
.nav-mycart .nav-mycart-box dl{_height:20px;min-height:20px;line-height:18px;color:#000;clear:both;zoom:1;}
.nav-mycart .nav-mycart-box dl:after{content: ""; display: block; clear: both; height: 0px;}
.nav-mycart .nav-mycart-box dl dt{width:45px;height:18px;background:#333;color:#fff;text-align:center;float:left;}
.nav-mycart .nav-mycart-box dl dd{width:335px;padding:0px 0px 0px 10px;float:left;}
.nav-mycart .nav-mycart-box dl dd .mycart_i_down{width:17px;height:17px;background:url(http://static.yohobuy.com/images/i_mycartupdown.png) no-repeat 0px 0px;float:right;cursor:pointer;}
.nav-mycart .nav-mycart-box dl dd .mycart_i_up{width:17px;height:17px;background:url(http://static.yohobuy.com/images/i_mycartupdown.png) no-repeat 0px -17px;float:right;cursor:pointer;}
.nav-mycart .nav-mycart-box dl a{color:#000;}
.nav-mycart .nav-mycart-box dl a:hover{color:#468fa2; text-decoration:underline;}
.nav-mycart .nav-mycart-box .submit{padding:10px 0px 0px 0px;text-align:right;}
.nav-mycart .nav-mycart-box .btn_type6 a{padding:0px 20px;}
.header-min{height:90px;min-width:990px;border-bottom:10px #000 solid;}
.header-min-inner{width:990px;margin:0 auto;}
.header-min-inner .logo{padding:20px 0px 0px 0px;height:65px;}
.header-min-inner .right{width:auto;margin:0px;padding:50px 0px 0px 0px;height:30px;float:right;}
.topwrap{height:31px;background:url(http://static.yohobuy.com/images/topwrap_bg.png) repeat-x;overflow:hidden;min-width:990px;}
.topwrap ul{padding:0px 10px;}
.topwrap li{height:12px;line-height:12px;padding:9px 10px;float:left;font-family:Arial,helvetica,sans-serif;background:url(http://static.yohobuy.com/images/line_dot_lan.png) no-repeat right;}
.topwrap li .i_hot{width:23px;height:12px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_hot_2.png) no-repeat; display:inline-block; vertical-align:top;}
.topwrap li a{color:#333;}
.topwrap .end{background:none;}
.helpinfo{clear:both;min-width:990px;background:#efefef;border-top:1px #ccc solid;overflow:hidden;font-family:宋体;}
.helpinfo ul{padding-top:20px;}
.helpinfo li{width:16%;float:left;display:inline;zoom:1;}
.helpinfo .begin,.helpinfo .end{width:17%;}
.helpinfo dl{width:150px;margin:0 auto;}
.helpinfo dl dt{height:25px;line-height:25px;padding:0px 0px 0px 25px;border-bottom:1px #d7d7d7 solid;margin-bottom:10px;font-weight:bold;color:#333;}
.helpinfo dl dd{height:20px;line-height:18px;padding:0px 0px 0px 15px;margin-left:10px;background:url(http://static.yohobuy.com/images/ico_arrow.png) no-repeat 0px 3px;}
.helpinfo .li-1 dt{background:url(http://static.yohobuy.com/images/help_ico.png) no-repeat 0px 0px;}
.helpinfo .li-2 dt{background:url(http://static.yohobuy.com/images/help_ico.png) no-repeat 0px -25px;}
.helpinfo .li-3 dt{background:url(http://static.yohobuy.com/images/help_ico.png) no-repeat 0px -50px;}
.helpinfo .li-4 dt{background:url(http://static.yohobuy.com/images/help_ico.png) no-repeat 0px -75px;}
.helpinfo .li-5 dt{background:url(http://static.yohobuy.com/images/help_ico.png) no-repeat 0px -100px;}
.helpinfo .li-6 dt{background:url(http://static.yohobuy.com/images/help_ico.png) no-repeat 0px -125px;}
.helpinfo a{position:relative;z-index:2;}
.help-footer{width:881px;height:99px;background:url(http://static.yohobuy.com/images/help_footer.png) no-repeat; margin:20px auto 0px auto;}
.footer{clear:both;min-width:990px;height:40px;background:#000;color:#fff;line-height:40px;}
.footer dl{padding:0px 15px;}
.footer dt{float:left;}
.footer dd{text-align:right;font-size:10px;float:right;}
.footer a{color:#fff;position:relative;z-index:1;}
.daohang{height:40px;padding-left:25px;line-height:40px;color:#ccc;background:url(http://static.yohobuy.com/images/ico_home.png) no-repeat 0px 12px;margin-left:20px;}
.daohang span{font-weight:bold;color:#666;}
.daohang .searchresult{padding-right:25px;color:#666;float:right;}
.daohang .searchresult strong{color:#e8044f;}
.daohang-min{width:965px;margin:0px auto;}
.container{width:990px;padding:0px 0px 10px 0px;height:auto!important;min-height:300px;_height:300px;margin:0 auto;zoom:1;}
.container:after{content: ""; display: block; clear: both; height: 0px;}
.container .daohang{margin-left:0px;min-width:900px;}
.con-left{width:190px;float:left;}
.con-right{width:800px;float:left;}
.wrapper-container{padding:0px 20px 10px 20px;min-width:950px;}
.wrapper-container .con-left{width:200px;float:left;}
.wrapper-container .con-right{margin-left:-200px;width:100%;float:right;}
.wrapper-container .con-right-box{margin-left:200px;}
.pr-container{padding:0px 20px 10px 20px;height:auto!important;min-height:100px;_height:100px;}
.pr-container:after { content:""; display:block; clear:both; height:0; }
.pr-container .con-right{width:180px;float:right;position:relative;z-index:3;}
.pr-container .con-left{margin-right:-200px;width:100%;float:left; position:relative;z-index:2;}
.pr-container .con-left-box{margin-right:200px;}
.wrapper-n-container{padding:0px 20px 10px 20px;}
.wrapper-n-container .con-right{width:180px;float:right;}
.wrapper-n-container .con-left{margin-right:-200px;width:100%;float:left;}
.wrapper-n-container .con-left-box{margin-right:200px;}
.wrapper-n-article{width:990px;margin: 0 auto;}
.wrapper-n-article .wrapper-n-container{padding:0px 0px 10px 0px;}
/*广告*/
.adv{clear:both;margin-bottom:10px;}
.banner{clear:both;margin-bottom:10px;}
/***************************************************************/
/*表格*/
.table1 {border-collapse:collapse;border:1px solid #e6e6e6; margin-bottom:10px;}
.table1 thead {height:18px;line-height:18px;text-align:left;background:#efefef;padding:2px 5px; color:#333;}
.table1 td,.table1 th {border:1px solid #e6e6e6;padding:5px; font-weight:normal;}
.table1 td {color:#666;text-align: left;}
.table1 tfoot {text-align:center;font-weight:bold;}
.table1 .trbg{background:#f8f8f8;}
.table2 {border-collapse:collapse;border:1px solid #e6e6e6; margin-bottom:10px;}
.table2 thead {height:18px;line-height:18px;text-align:left;background:#efefef;padding:2px 5px; color:#333;}
.table2 td,.table2 th {border-bottom:1px solid #e6e6e6;padding:5px; font-weight:normal;}
.table2 td {color:#666;text-align: left;}
.table2 tfoot {text-align:center;font-weight:bold;background:#f8f8f8;}
.table3 {border-collapse:collapse;border:0px solid #e6e6e6; margin-bottom:10px;}
.table3 thead {height:25px;line-height:25px;text-align:left;background:#000;padding:2px 5px; color:#fff;}
.table3 th {padding:5px; font-weight:normal;}
.table3 td {border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;padding:5px; font-weight:normal;}
.table3 tfoot {text-align:right;}
.table3 .end{border-right:0px;}
.table4 {border-collapse:collapse;border:0px solid #fff; margin-bottom:10px;}
.table4 thead {height:18px;line-height:18px;text-align:left;background:#e5e5e5;padding:2px 5px; }
.table4 td {border:1px solid #fff;padding:3px; font-weight:normal;background:#e5e5e5;}
.table4 th {border:1px solid #fff;padding:3px; font-weight:normal;background:#ccc;}
.table4 td {color:#333;}
.tablein{ border:none; margin:0;border-collapse:collapse;}
.tablein,.tablein td,.tablein th{ border:none;}
.list-none{clear:both;padding:200px 0px;text-align:center;overflow:hidden;}
.list-none a{color:#468fa2; text-decoration:underline;}
/*提示表单*/
.tips-right{margin-left:10px;padding:0px 0px 0px 20px;line-height:19px;background:url(http://static.yohobuy.com/images/ico_tip_right.png) no-repeat 0px 3px;display:inline-block;color:#008000;font-size:12px;vertical-align:top;}
.tips-error{margin-left:10px;padding:0px 0px 0px 20px;line-height:19px;background:url(http://static.yohobuy.com/images/ico_tip_error.png) no-repeat 0px 3px;display:inline-block;color:#e8044f;font-size:12px;vertical-align:top;}
.tips-text{margin-left:10px;color:#999;display:inline-block;}
.tips-right a,.tips-error a,.tips-text a{color:#468fa2; text-decoration:underline;}
.tips-p{margin-left:10px;color:#999;display:inline-block;}
.tips-box-error{}
.tips-box-text{}
.tips-box-error .input_1{border:1px #e8044f solid;}
.tips-box{width:958px;border:1px #efdda6 solid;padding:5px 10px;background:#fbf9db;margin:20px auto 0px auto;}
.tips-box a{color:#468fa2; text-decoration:underline;}
.tips-box .xclose{width:10px;height:9px; text-indent:-999em;overflow:hidden;margin-top:5px;background:url(http://static.yohobuy.com/images/message_close.png) no-repeat;float:right;}
.tips-box strong{color:#e8044f;}
.tips-box p{text-align:center;}
.f_g{color:#999;}
.f_gr{color:#008000;}
.f_rz{color:#e8044f;}
.f_e{color:#468fa2;}
.f_or{color:#f60}
.f_outlet{background:#f50;color:#fff;height:15px;line-height:15px;font-size:12px;font-family:arial;padding:0px 5px;display:inline-block;font-weight:bold;}
.f_over{font-size:14px;color:#000;font-weight:bold;font-family:Arial,helvetica,sans-serif;}
.hot{color:#e8044f;}
.hot:hover{color:#e8044f;text-decoration:underline;}
.a_new{color:#e8044f;}
.a_new:hover{color:#e8044f;text-decoration:underline;}
.a_e{color:#468fa2; text-decoration:none;}
.a_e:hover{color:#468fa2; text-decoration:underline;}
.a_eu{color:#468fa2; text-decoration:underline;}
.a_eu:hover{color:#468fa2; text-decoration:underline;}
.a_g{color:#999; text-decoration:none;}
.a_g:hover{color:#468fa2; text-decoration:underline;}
.a_gu{color:#999; text-decoration:underline;}
.a_gu:hover{color:#468fa2; text-decoration:underline;}
.a_rz{color:#e8044f;text-decoration:none;}
.a_rz:hover{color:#e8044f; text-decoration:underline;}
.a_rzu{color:#e8044f;text-decoration:underline;}
.a_rzu:hover{color:#e8044f; text-decoration:underline;}
.input_1{height:20px;line-height:20px;color:#333;border:1px #c9c9c9 solid;background:url(http://static.yohobuy.com/images/input_1.png) repeat-x #fff;vertical-align:top;}
.input_2{height:18px;line-height:18px;color:#333;border:1px #c9c9c9 solid;background:url(http://static.yohobuy.com/images/input_2.png) repeat-x #fff;}
.input_3{height:22px;line-height:22px;border:1px #ccc solid;}
.input_b{height:30px;line-height:30px;color:#333;padding:0px 5px;font-size:14px;border:1px #bebebe solid;background:url(http://static.yohobuy.com/images/input_b.png) no-repeat;}
.input_error{border:2px #e8044f solid;height:28px;line-height:28px;}
.input-box{display:inline-block; position:relative;}
.input-box .input_x{width:15px;height:15px;background:url(http://static.yohobuy.com/images/input_x.png) no-repeat; position:absolute;right:5px;top:10px; cursor:pointer;}
.textarea_1{color:#333;border:1px #c9c9c9 solid;background:url(http://static.yohobuy.com/images/input_1.png) repeat-x #fff;vertical-align:top;overflow:auto;}
.loading{height:20px;line-height:20px;border:0px;padding-left:15px;background:url(http://static.yohobuy.com/images/loading.gif) no-repeat 0px 5px;color:#999;display:inline-block;overflow:hidden;text-decoration:none;vertical-align:top;}
.loading-s{background:#fff;border:1px solid #999;text-align:center;padding:5px 0;color:#666;width:120px;position:fixed;_position:absolute;left:50%;top:50%;margin-left:-60px;margin-top:-8px;z-index:9999;}
.loading-s span{width:16px;height:18px;background:url(http://static.yohobuy.com/images/loading_s.gif) no-repeat;margin-right:5px;vertical-align:middle;display:inline-block;}
.loading-s b{height:18px;line-height:18px;font-weight:normal;}
.ico_tips{width:12px;height:12px;background:url(http://static.yohobuy.com/images/ico_tips.png) no-repeat;display:inline-block; overflow:hidden; cursor:pointer; vertical-align:middle;}
.btn_tips{ cursor:pointer;}
.stat_ok{height:22px;line-height:22px;padding-left:25px;margin:5px 0px;background:url(http://static.yohobuy.com/images/ico_ok.png) no-repeat;display:inline-block;}
.stat_cancel{height:22px;line-height:22px;padding-left:25px;margin:5px 0px;background:url(http://static.yohobuy.com/images/ico_cancel.png) no-repeat;display:inline-block;}
.btn_add{height:20px;line-height:20px;border:0px;padding-left:18px;background:url(http://static.yohobuy.com/images/ico_add.png) no-repeat 0px 2px;color:#468fa2;display:inline-block;overflow:hidden;text-decoration:none;vertical-align:top}
.btn_del{height:20px;line-height:20px;border:0px;padding-left:18px;background:url(http://static.yohobuy.com/images/ico_del.png) no-repeat 0px 2px;color:#468fa2;display:inline-block;overflow:hidden;text-decoration:none;vertical-align:top}
.level_vip_s1{width:50px;height:18px;background:url(http://static.yohobuy.com/images/vip_s1.png) no-repeat;display:inline-block;overflow:hidden;}
.level_vip_s2{width:50px;height:18px;background:url(http://static.yohobuy.com/images/vip_s2.png) no-repeat;display:inline-block;overflow:hidden;}
.level_vip_s3{width:50px;height:18px;background:url(http://static.yohobuy.com/images/vip_s3.png) no-repeat;display:inline-block;overflow:hidden;}
.level_vip_sh{width:160px;height:22px;background:url(http://static.yohobuy.com/images/vip_sh.png) no-repeat;display:inline-block;overflow:hidden;}
.level_vip_b1{width:140px;height:34px;background:url(http://static.yohobuy.com/images/vip_b1.png) no-repeat;display:inline-block;overflow:hidden;}
.level_vip_b2{width:140px;height:34px;background:url(http://static.yohobuy.com/images/vip_b2.png) no-repeat;display:inline-block;overflow:hidden;}
.level_vip_b3{width:140px;height:34px;background:url(http://static.yohobuy.com/images/vip_b3.png) no-repeat;display:inline-block;overflow:hidden;}
.btn_gl{width:80px;height:24px;line-height:24px;border:0px;padding-left:24px;background:url(http://static.yohobuy.com/images/btn_gl.png) no-repeat;color:#333;display:inline-block;overflow:hidden;text-decoration:none;}
.btn_ggtx{width:90px;height:25px;background:url(http://static.yohobuy.com/images/btn_ggtx.png) no-repeat; text-indent:-999em;display:inline-block;overflow:hidden;border:0px;}
.btn_xzzp{width:80px;height:22px;line-height:21px;padding-left:26px;background:url(http://static.yohobuy.com/images/btn_xzzp.png) no-repeat 0px 0px; color:#666;display:inline-block;overflow:hidden;border:0px;font-size:12px;}
.btn_xzzp2{width:78px;height:20px;line-height:21px;padding-left:26px;background:url(http://static.yohobuy.com/images/btn_xzzp.png) no-repeat 0px -22px; color:#fff;display:inline-block;overflow:hidden;border:0px;}
.btn_xzzp2:hover{color:#fff; text-decoration:none;}
.btn_fhpp{width:162px;height:27px;background:url(http://static.yohobuy.com/images/btn_fhpp.png) no-repeat; display:inline-block;overflow:hidden;border:0px;}
.btn_fhxq{width:162px;height:27px;background:url(http://static.yohobuy.com/images/btn_fhxq.png) no-repeat; display:inline-block;overflow:hidden;border:0px;}
.btn_swdzp{width:120px;height:28px;background:url(http://static.yohobuy.com/images/btn_swdzp.png) no-repeat; display:inline-block;overflow:hidden;border:0px; vertical-align:middle;}
.btn_wyzx{width:120px;height:28px;background:url(http://static.yohobuy.com/images/btn_wyzx.png) no-repeat; display:inline-block;overflow:hidden;border:0px; vertical-align:middle;}
.btn_wypl{width:120px;height:28px;background:url(http://static.yohobuy.com/images/btn_wypl.png) no-repeat; display:inline-block;overflow:hidden;border:0px; vertical-align:middle;}
.btn_ckpp{width:135px;height:27px;background:url(http://static.yohobuy.com/images/btn_ckpp.png) no-repeat; display:inline-block;overflow:hidden;border:0px; vertical-align:middle;margin:10px 0px 10px 20px;}
.btn_ljgm{width:200px;height:38px;background:url(http://static.yohobuy.com/images/btn_ljgm.png) no-repeat; display:inline-block;overflow:hidden;border:0px;}
.btn_zxzx{width:120px;height:20px;background:url(http://static.yohobuy.com/images/btn_zxzx.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_select_zp{width:118px;height:33px;background:url(http://static.yohobuy.com/images/btn_select_zp.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_sellout_m{width:118px;height:33px;background:url(http://static.yohobuy.com/images/btn_sellout_m.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_order{width:118px;height:33px;background:url(http://static.yohobuy.com/images/btn_order.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_addcart{width:225px;height:45px;background:url(http://static.yohobuy.com/images/btn_b_add.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_addcart_s{width:100px;height:22px;background:url(http://static.yohobuy.com/images/btn_addcart_s.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_addcart_m{width:128px;height:33px;background:url(http://static.yohobuy.com/images/btn_addcart_m.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_nosale{width:225px;height:45px;background:url(http://static.yohobuy.com/images/btn_b_nosale.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_sellout{width:225px;height:45px;background:url(http://static.yohobuy.com/images/btn_b_sellout.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_addfav{width:225px;height:30px;background:url(http://static.yohobuy.com/images/btn_b_sc.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_message{width:225px;height:30px;background:url(http://static.yohobuy.com/images/btn_b_tz.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;margin-bottom:5px;}
.btn_b_order{width:225px;height:45px;background:url(http://static.yohobuy.com/images/btn_b_order.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_b_order_h{width:225px;height:45px;background:url(http://static.yohobuy.com/images/btn_b_order_h.png) no-repeat; display:inline-block;overflow:hidden;border:0px;cursor:pointer;}
.btn_view_s{width:100px;height:22px;background:url(http://static.yohobuy.com/images/btn_view_s.png) no-repeat;display:inline-block;border:0px;}
.btn_sellout_s{width:100px;height:22px;background:url(http://static.yohobuy.com/images/btn_sellout_s.png) no-repeat;display:inline-block;border:0px;}
.btn_edit{width:37px;height:17px;background:url(http://static.yohobuy.com/images/btn_edit.png) no-repeat; display:inline-block;overflow:hidden;border:0px;}
.btn_help{height:18px;padding-left:20px;background:url(http://static.yohobuy.com/images/btn_help.png) no-repeat; display:inline-block;}
.btn_help span{padding-right:10px;height:18px;line-height:18px;color:#fff; text-decoration:none;background:url(http://static.yohobuy.com/images/btn_help.png) no-repeat right; display:inline-block;cursor:pointer;font-family:宋体;overflow:hidden;}
.btn_help:hover{ text-decoration:none;}
.btn_h{height:22px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat left 0px;padding-left:8px;display:inline-block;}
.btn_h span{height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat right 0px;padding-right:10px;display:inline-block;cursor:pointer;color:#666;}
.btn_h:hover{color:#666; text-decoration:none;}
.btn_c1{height:22px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat left -22px;padding-left:8px;border:0px;color:#fff;display:inline-block;text-decoration:none;}
.btn_c1 span{height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat right -22px;padding-right:10px;display:inline-block;cursor:pointer;color:#fff;text-decoration:none;}
.btn_c1:hover{color:#fff; text-decoration:none;}
.btn_c2{height:22px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat left -44px;padding-left:8px;display:inline-block;}
.btn_c2 span{height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat right -44px;padding-right:10px;display:inline-block;cursor:pointer;color:#b3b3b3;}
.btn_c2:hover{color:#b3b3b3; text-decoration:none;}
.btn_c3{height:22px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat left -66px;padding-left:8px;display:inline-block;}
.btn_c3 span{height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat right -66px;padding-right:10px;display:inline-block;cursor:pointer;color:#fff;}
.btn_c3:hover{color:#fff; text-decoration:none;}
.btn_c4{height:22px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat left -88px;padding-left:8px;display:inline-block;}
.btn_c4 span{height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat right -88px;padding-right:10px;display:inline-block;cursor:pointer;color:#fff;}
.btn_c4:hover{color:#fff; text-decoration:none;}
.btn_c5{height:22px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat left -110px;padding-left:18px;display:inline-block;}
.btn_c5 span{height:22px;line-height:21px;background:url(http://static.yohobuy.com/images/btn_hs.png) no-repeat right -110px;padding-right:10px;display:inline-block;cursor:pointer;color:#666;}
.btn_c5:hover{color:#666; text-decoration:none;}
.btn_tag{height:20px;background:url(http://static.yohobuy.com/images/btn_tag.png) no-repeat left;padding-left:10px;margin-right:5px;display:inline-block;}
.btn_tag span{height:20px;line-height:20px;background:url(http://static.yohobuy.com/images/btn_tag.png) no-repeat right;padding-right:10px;display:inline-block;cursor:pointer;color:#999;font-family:宋体;}
.btn_tag:hover{color:#999; text-decoration:none;}
.btn_top{width:66px;height:22px;padding-left:10px;line-height:21px;border:0px;text-align:center;background:url(http://static.yohobuy.com/images/btn_top.png) no-repeat;color:#666;font-size:12px;cursor:pointer;display:inline-block;}
.btn_top:hover{color:#666;text-decoration:none;}
.btn_ok{width:53px;height:26px;line-height:26px;border:0px;text-align:center;background:url(http://static.yohobuy.com/images/btn_ok.png) no-repeat;color:#333;font-size:12px;cursor:pointer;display:inline-block;}
.btn_ok_4{width:66px;height:26px;line-height:26px;border:0px;text-align:center;background:url(http://static.yohobuy.com/images/btn_ok_4.png) no-repeat;color:#333;font-size:12px;cursor:pointer;display:inline-block;}
.btn_login{width:135px;height:35px;border:0px;background:url(http://static.yohobuy.com/images/btn_login.png) no-repeat;cursor:pointer;display:inline-block;}
.btn_login2{width:135px;height:35px;line-height:35px;font-family:宋体;border:0px;font-size:14px;font-weight:bold;color:#fff;background:url(http://static.yohobuy.com/images/btn_login2.png) no-repeat;cursor:pointer;display:inline-block;}
.btn_reg{width:145px;height:35px;line-height:35px;font-family:宋体;border:0px;font-size:14px;font-weight:bold;color:#fff;background:url(http://static.yohobuy.com/images/btn_reg2.png) no-repeat;cursor:pointer;display:inline-block;}
.btn_s1{width:62px;height:20px;line-height:21px;text-align:center;border:0px;background:url(http://static.yohobuy.com/images/btn_pics.png) no-repeat 0px 0px;color:#fff;display:inline-block;overflow:hidden;text-decoration:none;}
.btn_s2{width:62px;height:20px;line-height:21px;text-align:center;border:0px;background:url(http://static.yohobuy.com/images/btn_pics.png) no-repeat 0px -20px;color:#fff;display:inline-block;overflow:hidden;text-decoration:none;}
.btn_s1:hover,.btn_s2:hover{color:#fff;text-decoration:none;}
.btn_bb1{width:92px;height:30px;line-height:30px;border:0px;background:url(http://static.yohobuy.com/images/btn_pics_b.png) no-repeat 0px 0px;color:#fff;font-size:14px;text-align:center;cursor:pointer;display:inline-block;}
.btn_bb2{width:92px;height:30px;line-height:30px;border:0px;background:url(http://static.yohobuy.com/images/btn_pics_b.png) no-repeat 0px -30px;color:#fff;font-size:14px;text-align:center;cursor:pointer;display:inline-block;}
.btn_bb3{width:92px;height:30px;line-height:30px;border:0px;background:url(http://static.yohobuy.com/images/btn_pics_b.png) no-repeat 0px -60px;color:#666;font-size:14px;text-align:center;cursor:pointer;display:inline-block;}
.btn_bb1:hover,.btn_bb2:hover{color:#fff;text-decoration:none;}
.btn_bb3:hover{color:#666;text-decoration:none;}
.btn_s1_z2{width:56px;height:20px;border:0px;font-size:12px;color:#fff;line-height:20px;padding:0px;margin:0px;background:url(http://static.yohobuy.com/images/btn_s1_z2.png) repeat-x;text-align:center;display:inline-block;cursor:pointer;}
.btn_s1_z7{width:102px;height:20px;border:0px;font-size:12px;color:#fff;line-height:20px;padding:0px;margin:0px;background:url(http://static.yohobuy.com/images/btn_s1_z7.png) repeat-x;text-align:center;display:inline-block;cursor:pointer;}
.btn_s2_z5{width:78px;height:20px;border:0px;font-size:12px;color:#b3b3b3;line-height:20px;padding:0px;margin:0px;background:url(http://static.yohobuy.com/images/btn_s2_z5.png) repeat-x;text-align:center;display:inline-block;cursor:pointer;}
.btn_s3_z7{width:102px;height:20px;border:0px;font-size:12px;color:#fff;line-height:20px;padding:0px;margin:0px;background:url(http://static.yohobuy.com/images/btn_s3_z7.png) repeat-x;text-align:center;display:inline-block;cursor:pointer;}
.btn_b1{width:118px;height:34px;line-height:34px;border:0px;background:url(http://static.yohobuy.com/images/btn_b1.png) no-repeat;color:#fff;font-size:14px;font-weight:bold;padding-right:10px;cursor:pointer;display:inline-block;}
.btn_b2{width:138px;height:34px;line-height:34px;border:0px;background:url(http://static.yohobuy.com/images/btn_b2.png) no-repeat;color:#fff;font-size:14px;font-weight:bold;padding-right:20px;cursor:pointer;display:inline-block;}
.btn_b3{width:122px;height:35px;line-height:35px;border:0px;background:url(http://static.yohobuy.com/images/btn_b3.png) no-repeat;color:#fff;font-size:14px;font-weight:bold;text-align:center;cursor:pointer;display:inline-block;}
.btn_bbb1{width:216px;height:34px;line-height:34px;border:0px;background:url(http://static.yohobuy.com/images/btn_bbb1.png) no-repeat;color:#fff;font-size:14px;font-weight:bold;text-align:center;cursor:pointer;display:inline-block;}
.btn_bbb1:hover{color:#fff; text-decoration:none;}
.btn_b_gr{width:135px;height:35px;line-height:32px;text-align:center;font-size:14px;color:#fff;font-weight:bold; background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat 0px 0px;display:inline-block;border:0px; cursor:pointer;}
.btn_b_gr:hover{background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat 0px -35px;color:#fff; text-decoration:none;}
.btn_b_ar_gr{height:35px;padding:0px 0px 0px 50px;line-height:32px;text-align:center;font-size:14px;color:#fff;font-weight:bold; background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat left -140px;display:inline-block;border:0px; cursor:pointer;}
.btn_b_ar_gr b{height:35px;padding:0px 50px 0px 0px;line-height:32px;text-align:center;font-size:14px;color:#fff;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat right -140px;display:inline-block;border:0px; cursor:pointer;}
.btn_b_ar_gr:hover{background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat left -175px;color:#fff; text-decoration:none;}
.btn_b_ar_gr:hover b{background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat right -175px;color:#fff; text-decoration:none;}
.btn_b_ar_r{height:35px;padding:0px 0px 0px 50px;line-height:32px;text-align:center;font-size:14px;color:#fff;font-weight:bold; background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat left -280px;display:inline-block;border:0px; cursor:pointer;}
.btn_b_ar_r b{height:35px;padding:0px 50px 0px 0px;line-height:32px;text-align:center;font-size:14px;color:#fff;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat right -280px;display:inline-block;border:0px; cursor:pointer;}
.btn_b_ar_r:hover{background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat left -315px;color:#fff; text-decoration:none;}
.btn_b_ar_r:hover b{background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat right -315px;color:#fff; text-decoration:none;}
.btn_b_ar_r1{height:35px;padding:0px 50px 0px 40px;*padding:0px 30px 0px 20px;line-height:32px;text-align:center;font-size:14px;color:#fff;font-weight:bold; background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat left -244px;display:inline-block;border:0px; cursor:pointer;}
.btn_b_h{width:135px;height:35px;line-height:32px;text-align:center;font-size:14px;color:#333;font-weight:bold; background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat 0px -350px;display:inline-block;border:0px; cursor:pointer;}
.btn_b_h:hover{background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat 0px -385px;color:#000; text-decoration:none;}
.btn_b_login{width:135px;height:35px;line-height:32px;text-align:center;font-size:14px;color:#fff;font-weight:bold; background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat 0px -210px;display:inline-block;border:0px; cursor:pointer;}
.btn_b_login:hover{background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat 0px -245px;color:#fff; text-decoration:none;}
.btn_b_reg{width:135px;height:35px;line-height:32px;text-align:center;font-size:14px;color:#fff;font-weight:bold; background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat 0px -70px;display:inline-block;border:0px; cursor:pointer;}
.btn_b_reg:hover{background:url(http://static.yohobuy.com/images/btn_b.png) no-repeat 0px -105px;color:#fff; text-decoration:none;}
.btn_retry{width:135px;height:34px;border:0px;line-height:34px;font-size:14px;color:#999;background:url(http://static.yohobuy.com/images/btn_retry.png) no-repeat;text-align:center;display:inline-block; vertical-align:middle;}
.btn_b1_backlist{ width:133px;height:33px; background:url(http://static.yohobuy.com/images/btn_b1_backlist.png) no-repeat;display:inline-block;border:0px; cursor:pointer; }
.btn_favbrand{width:180px;height:30px;background:url(http://static.yohobuy.com/images/btn_favbrand.png) no-repeat;display:inline-block;border:0px; cursor:pointer;}
.i_stat_down{width:11px;height:11px;background:url(http://static.yohobuy.com/images/i_stat_down.png) no-repeat;display:inline-block;}
.btn_s{width:37px;height:15px;line-height:15px;text-align:center;font-size:12px;color:#fff;background:url(http://static.yohobuy.com/images/btn_s.png) no-repeat;display:inline-block;}
.btn_m1{width:82px;height:34px;line-height:32px;border:0px;text-align:center;font-size:14px;color:#fff;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_m.png) no-repeat 0px 0px;display:inline-block; cursor:pointer;}
.btn_m2{width:82px;height:34px;line-height:32px;border:0px;text-align:center;font-size:14px;color:#fff;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_m.png) no-repeat 0px -35px;display:inline-block; cursor:pointer;}
.btn_m3{width:68px;height:34px;line-height:32px;border:0px;text-align:center;font-size:14px;color:#333;font-weight:bold;background:url(http://static.yohobuy.com/images/btn_m.png) no-repeat 0px -70px;display:inline-block; cursor:pointer;}
.btn_b{padding:0px 10px;height:27px;line-height:27px;color:#fff;border:1px #ad0b3d solid;background:#de104f;text-align:center;display:inline-block;}
.btn_b:hover{color:#fff; text-decoration:none;}
.btn_sh{width:72px;height:19px;line-height:19px;text-align:center;font-size:12px;color:#fff;background:url(http://static.yohobuy.com/images/btn_sh.png) no-repeat;display:inline-block;}
.btn_ck2w{width:90px;height:30px;padding:0px 0px 0px 46px;line-height:32px;text-align:left;font-size:14px;color:#fff;background:url(http://static.yohobuy.com/images/btn_ck2w.png) no-repeat;display:inline-block;overflow:hidden;}
.btn_ck2w:hover{color:#fff;}
.amount_wrapper{width:70px; height:20px; display:inline-block;}
.amount_wrapper input{width:35px; height:18px;line-height:18px; border:#c4c4c4 solid 1px; text-align:center; overflow:hidden; float:left;}
.amount_wrapper .amount_add{width:11px; height:11px;margin:5px 0px 0px 5px;display:inline; background:url(http://static.yohobuy.com/images/ico_jj.png) -11px 0px no-repeat;overflow:hidden; cursor:pointer; border:0px;float:left;}
.amount_wrapper .amount_cut{width:11px; height:11px;margin:5px 5px 0px 0px;display:inline; background:url(http://static.yohobuy.com/images/ico_jj.png) 0px 0px no-repeat; overflow:hidden; cursor:pointer; border:0px;float:left;}
.amount_tips{width:70px;height:18px;line-height:18px;margin:5px 0px;color:#fff;text-align:center;background:#e8044f;display:inline-block;}
.a_b2{width:118px;height:34px;line-height:34px;border:0px;background:url(http://static.yohobuy.com/images/btn_b2.png) no-repeat;color:#fff;font-size:14px;font-weight:bold;padding-right:20px;cursor:pointer;display:inline-block;}
.a_b2:hover{color:#fff;}
.a_b_reg{width:175px;height:35px;border:0px;background:url(http://static.yohobuy.com/images/btn_reg.png) no-repeat;cursor:pointer;display:inline-block;}
.a_b_login{width:135px;height:35px;border:0px;background:url(http://static.yohobuy.com/images/btn_login.png) no-repeat;cursor:pointer;display:inline-block;}
.a_more{width:56px;height:22px;padding-left:20px;line-height:21px;border:0px;text-align:left;background:url(http://static.yohobuy.com/images/btn_moreclose.png) no-repeat 0px 0px;color:#666;font-size:12px;cursor:pointer;display:inline-block;}
.a_more:hover{color:#666;text-decoration:none;}
.a_more2{width:63px;height:21px;padding:1px 8px 0px 0px;line-height:21px;border:0px;text-align:center;background:url(http://static.yohobuy.com/images/btn_more2.png) no-repeat;color:#fdfdfd;font-size:12px;cursor:pointer;display:inline-block;}
.a_more2:hover{color:#fff;text-decoration:none;}
.a_more3{height:20px;padding:0px 0px 0px 10px;line-height:20px;border:0px;background:url(http://static.yohobuy.com/images/btn_more3.png) no-repeat 0px 5px;color:#468fa2;font-size:12px;cursor:pointer;display:inline-block; text-decoration:underline;}
.a_more3:hover{color:#468fa2;text-decoration:underline;}
.a_more4{width:68px;height:22px;padding:0px 8px 0px 0px;line-height:22px;border:0px;text-align:center;background:url(http://static.yohobuy.com/images/btn_more4.png) no-repeat;color:#333;font-size:12px;cursor:pointer;display:inline-block;font-family:宋体;}
.a_more4:hover{color:#333;text-decoration:none;}
.a_more5{height:15px;padding:0px 15px 0px 0px;line-height:15px;border:0px;background:url(http://static.yohobuy.com/images/btn_more5.png) no-repeat right;color:#333;font-size:12px;cursor:pointer;display:inline-block;font-family:宋体;}
.a_more5:hover{color:#468fa2; text-decoration:underline;}
.a_close{width:70px;height:22px !important;padding-left:6px;line-height:22px !important;border:0px;text-align:center;background:url(http://static.yohobuy.com/images/btn_moreclose.png) no-repeat 0px -22px;color:#666;font-size:12px;cursor:pointer;display:inline-block;}
.a_close:hover{color:#666;text-decoration:none;}
.n_up{width:60px;height:22px;line-height:21px;padding-right:15px;text-align:center;color:#666;background:url(http://static.yohobuy.com/images/updown.png) no-repeat 0px 0px;display:inline-block;margin-right:2px;}
.n_up:hover{color:#666; text-decoration:none;}
.n_up_act{width:60px;height:22px;line-height:21px;padding-right:15px;text-align:center;color:#fff;background:url(http://static.yohobuy.com/images/updown.png) no-repeat 0px -22px;display:inline-block;margin-right:2px;}
.n_up_act:hover{color:#fff; text-decoration:none;}
.n_down{width:60px;height:22px;line-height:21px;padding-right:15px;text-align:center;color:#666;background:url(http://static.yohobuy.com/images/updown.png) no-repeat -185px 0px;display:inline-block;margin-right:2px;}
.n_down:hover{color:#666; text-decoration:none;}
.n_down_act{width:60px;height:22px;line-height:21px;padding-right:15px;text-align:center;color:#fff;background:url(http://static.yohobuy.com/images/updown.png) no-repeat -185px -22px;display:inline-block;margin-right:2px;}
.n_down_act:hover{color:#fff; text-decoration:none;}
.p_up{width:40px;height:22px;line-height:21px;padding-right:14px;text-align:center;color:#666;background:url(http://static.yohobuy.com/images/updown.png) no-repeat -77px 0px;display:inline-block;margin-left:1px;}
.p_up:hover{color:#666; text-decoration:none;}
.p_up_act{width:40px;height:22px;line-height:21px;padding-right:14px;text-align:center;color:#fff;background:url(http://static.yohobuy.com/images/updown.png) no-repeat -77px -22px;display:inline-block;margin-left:1px;}
.p_up_act:hover{color:#fff; text-decoration:none;}
.p_down{width:40px;height:22px;line-height:21px;padding-right:14px;text-align:center;color:#666;background:url(http://static.yohobuy.com/images/updown.png) no-repeat -131px 0px;display:inline-block;margin-left:1px;}
.p_down:hover{color:#666; text-decoration:none;}
.p_down_act{width:40px;height:22px;line-height:21px;padding-right:14px;text-align:center;color:#fff;background:url(http://static.yohobuy.com/images/updown.png) no-repeat -131px -22px;display:inline-block;margin-left:1px;}
.p_down_act:hover{color:#fff; text-decoration:none;}
.pr_by{width:120px;display:inline-block;margin:1px 2px; position:relative;z-index:2;vertical-align:top;}
.pr_by_t{width:118px;padding:0px 1px;height:20px;line-height:20px;_line-height:22px;background:url(http://static.yohobuy.com/images/pr_by.png) no-repeat 0px 0px;display:inline-block; vertical-align:top;font-family:宋体;position:absolute;top:0px;left:0px;}
.pr_by .pr_by_t a{border-bottom:0px;}
.pr_by .pr_by_t a:hover{background:none;color:#666; text-decoration:none;}
.pr_by .pr_by_t .pr_up:hover{background:url(http://static.yohobuy.com/images/pr_by.png) no-repeat 0px -20px;color:#666; text-decoration:none;}
.pr_by .pr_by_t .pr_down:hover{background:url(http://static.yohobuy.com/images/pr_by.png) no-repeat 0px -60px;color:#666; text-decoration:none;}
.pr_by_m{width:118px;display:inline-block; position:absolute;top:19px;left:0px;background:#fff;border:1px #a6a6a6 solid;border-bottom:0px;z-index:999;display:none;}
.pr_by a{width:98px;border-bottom:1px #ccc solid;padding-left:20px;height:20px;line-height:20px;_line-height:22px;display:inline-block; vertical-align:top;font-family:宋体;}
.pr_by a:hover{background:#343434;color:#fff; text-decoration:none;}
.pr_by .pr_up{background:url(http://static.yohobuy.com/images/pr_by.png) no-repeat 0px -20px;}
.pr_by .pr_up:hover{background:url(http://static.yohobuy.com/images/pr_by.png) no-repeat 0px -40px #343434;color:#fff; text-decoration:none;}
.pr_by .pr_down{background:url(http://static.yohobuy.com/images/pr_by.png) no-repeat 0px -60px;}
.pr_by .pr_down:hover{background:url(http://static.yohobuy.com/images/pr_by.png) no-repeat 0px -80px #343434;color:#fff; text-decoration:none;}
.p_pre{width:23px;height:22px;overflow:hidden;background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -106px; text-indent:-999em;float:left;}
.p_next{width:22px;height:22px;overflow:hidden;background:url(http://static.yohobuy.com/images/page.png) no-repeat -30px -106px;text-indent:-999em;float:left;}
.pp_pre{width:23px;height:22px;overflow:hidden;background:url(http://static.yohobuy.com/images/pp_pre.png) no-repeat; text-indent:-999em;float:left;}
.pp_next{width:22px;height:22px;overflow:hidden;background:url(http://static.yohobuy.com/images/pp_next.png) no-repeat;text-indent:-999em;float:left;}
.p_pre2{width:56px;height:22px;text-align:center;padding-left:10px;line-height:21px;background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -40px;color:#666;float:left;}
.p_pre2:hover{color:#666; text-decoration:none;}
.p_next2{width:54px;height:22px;text-align:center;padding-right:12px;line-height:21px;background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -62px;color:#666;float:left;}
.p_next2:hover{color:#666; text-decoration:none;}
.pb_pre{width:28px;height:28px;overflow:hidden;background:url(http://static.yohobuy.com/images/pb_pre.png) no-repeat; display:inline-block;}
.pb_next{width:28px;height:28px;overflow:hidden;background:url(http://static.yohobuy.com/images/pb_next.png) no-repeat;display:inline-block;}
.pc_pre{width:28px;height:20px;overflow:hidden;background:url(http://static.yohobuy.com/images/pc_prenext.png) no-repeat 0px 0px; display:inline-block;}
.pc_next{width:28px;height:20px;overflow:hidden;background:url(http://static.yohobuy.com/images/pc_prenext.png) no-repeat 0px -20px;display:inline-block;}
.p_more{width:46px;height:22px;text-align:center;padding-right:10px;line-height:21px;background:url(http://static.yohobuy.com/images/page_more.png) no-repeat;color:#666;display:inline-block;}
.p_more:hover{color:#666; text-decoration:none;}
.btn_pre{width:59px;height:59px;background:url(http://static.yohobuy.com/images/btn_prenext.png) no-repeat 0px 0px;display:inline-block;}
.btn_pre:hover{width:59px;height:59px;background:url(http://static.yohobuy.com/images/btn_prenext.png) no-repeat 0px -118px;display:inline-block;}
.btn_next{width:59px;height:59px;background:url(http://static.yohobuy.com/images/btn_prenext.png) no-repeat 0px -59px;display:inline-block;}
.btn_next:hover{width:59px;height:59px;background:url(http://static.yohobuy.com/images/btn_prenext.png) no-repeat 0px -177px;display:inline-block;}
.btn_pre_s{width:33px;height:33px;background:url(http://static.yohobuy.com/images/btn_prenext_s.png) no-repeat 0px 0px;display:inline-block;}
.btn_next_s{width:33px;height:33px;background:url(http://static.yohobuy.com/images/btn_prenext_s.png) no-repeat -33px 0px;display:inline-block;}
/*图标*/
.p_zoom{width:27px;height:27px;overflow:hidden;background:url(http://static.yohobuy.com/images/btn_zoom.png) no-repeat; display:inline-block;}
.i_next{width:60px;height:60px;overflow:hidden;background:url(http://static.yohobuy.com/images/btn_i_next.png) no-repeat; display:inline-block;}
.i_hot{width:22px;height:10px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_hot.png) no-repeat; display:inline-block;}
.i_new{width:23px;height:11px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_new.png) no-repeat; display:inline-block;}
.i_cx_1{width:42px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px 0px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_2{width:54px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -14px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_3{width:65px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -28px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_4{width:54px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -42px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_5{width:65px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -56px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_6{width:54px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -70px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_Changeshippingfee{width:42px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px 0px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_Cashreduce{width:54px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -14px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_Discount{width:54px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -70px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_Gift{width:54px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -42px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_Needpaygift{width:54px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -42px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_Givecoupon{width:65px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -28px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.i_cx_Degressdiscount{width:54px;height:14px;overflow:hidden;background:url(http://static.yohobuy.com/images/ico_cx.png) no-repeat 0px -70px; display:inline-block; vertical-align:middle;margin-right:5px;overflow:hidden;}
.help_input{width:110px;height:18px;line-height:18px;border:0px;color:#999;vertical-align:top;}
.btn_i_search{width:31px;height:22px;overflow:hidden;background:url(http://static.yohobuy.com/images/help_search.png) no-repeat -134px 0px; display:inline-block;border:0px;cursor:pointer;vertical-align:top;}
/*等级*/
.levelstars-0{width:60px;height:10px;margin-top:2px !important;#margin-top:0px;overflow:hidden;background:url(http://static.yohobuy.com/images/level_stars.png) no-repeat 0px 0px;display:inline-block; vertical-align:top;}
.levelstars-1{width:60px;height:10px;margin-top:2px !important;#margin-top:0px;overflow:hidden;background:url(http://static.yohobuy.com/images/level_stars.png) no-repeat 0px -10px;display:inline-block; vertical-align:top;}
.levelstars-2{width:60px;height:10px;margin-top:2px !important;#margin-top:0px;overflow:hidden;background:url(http://static.yohobuy.com/images/level_stars.png) no-repeat 0px -20px;display:inline-block; vertical-align:top;}
.levelstars-3{width:60px;height:10px;margin-top:2px !important;#margin-top:0px;overflow:hidden;background:url(http://static.yohobuy.com/images/level_stars.png) no-repeat 0px -30px;display:inline-block; vertical-align:top;}
.levelstars-4{width:60px;height:10px;margin-top:2px !important;#margin-top:0px;overflow:hidden;background:url(http://static.yohobuy.com/images/level_stars.png) no-repeat 0px -40px;display:inline-block; vertical-align:top;}
.levelstars-5{width:60px;height:10px;margin-top:2px !important;#margin-top:0px;overflow:hidden;background:url(http://static.yohobuy.com/images/level_stars.png) no-repeat 0px -50px;display:inline-block; vertical-align:top;}
.levelbox{width:190px;height:18px;margin-top:0px;padding:0px 0px 0px 5px;display:inline-block; position:relative;}
.levelbox .slider{width:85px;height:15px;overflow:hidden;float:left;}
.levelbox img{margin:2px 2px 0px 0px;display:inline-block; vertical-align:top;}
.levelbox .tips{ width:100px;height:16px;line-height:16px;text-align:center;border:1px #efdda6 solid;background:#fbf8db;position:absolute;left:95px;top:0px;display:block;font-family:宋体;}
.level{padding-bottom:10px;font-weight:bold;font-family:Arial,helvetica,sans-serif;line-height:20px;}
.level b{color:#333;font-size:16px;display:inline-block;}
.level .level1{width:92px;height:16px;padding:0px 10px 0px 0px;background:url(http://static.yohobuy.com/images/level_star.png) no-repeat;display:inline-block;}
.level .grades{font-size:18px;color:#ff6600;display:inline-block;}
.oldprice b{text-decoration:line-through;}
.newprice{color:#e8044f;}
.newprice b{font-size:18px;}
/*翻页*/
.page{ text-align:right; padding:10px;font-size:12px; color:#666;}
.page a{ background:url(http://static.yohobuy.com/images/page.png) no-repeat left 0px; font-size:12px; color:#666; margin:0 2px;padding-left:7px;text-decoration:none;height:20px;line-height:20px;display:inline-block;}
.page a span{ background:url(http://static.yohobuy.com/images/page.png) no-repeat right 0px; font-size:12px; color:#666; padding-right:7px;text-decoration:none;height:20px;line-height:20px;display:inline-block;cursor:pointer;}
.page a:hover {background:url(http://static.yohobuy.com/images/page.png) no-repeat left -20px;color:#fff;text-decoration:none;}
.page a:hover span{background:url(http://static.yohobuy.com/images/page.png) no-repeat right -20px ;cursor:pointer;color:#fff;}
.page a.act{ background:url(http://static.yohobuy.com/images/page.png) no-repeat left -20px;font-size:12px; color:#fff; margin:0 2px;padding-left:7px;text-decoration:none;height:20px;line-height:20px;display:inline-block;font-weight:bold;}
.page a.act span{ background:url(http://static.yohobuy.com/images/page.png) no-repeat right -20px; font-size:12px; color:#fff; padding-right:7px;text-decoration:none;height:20px;line-height:20px;display:inline-block;cursor:pointer;}
.page a.page_home{width:52px;height:22px;line-height:21px;text-align:center;background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -84px;color:#666;font-size:12px;cursor:pointer;display:inline-block;padding:0px;margin:0px 1px 0px 0px;}
.page a.page_home:hover{background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -84px;color:#666;text-decoration:none;}
.page a.page_pre{width:56px;height:22px;line-height:21px;text-align:center;background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -40px;color:#666;font-size:12px;cursor:pointer;display:inline-block;padding-left:10px;margin:0px 1px 0px 0px;}
.page a.page_pre:hover{background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -40px;color:#666;text-decoration:none;}
.page a.page_next{width:56px;height:22px;line-height:21px;text-align:center;background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -62px;color:#666;font-size:12px;cursor:pointer;display:inline-block;padding:0px 10px 0px 0px;margin:0px 0px 0px 2px;}
.page a.page_next:hover{background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -62px;color:#666; text-decoration:none;}
/*翻页简单*/
.page-sim{ text-align:left; padding:10px 0px;font-size:12px; color:#666;}
.page-sim span{padding:0px 10px;line-height:20px;float:left;}
.page-sim a.page_pre{width:23px;height:22px;overflow:hidden;background:url(http://static.yohobuy.com/images/page.png) no-repeat 0px -106px; text-indent:-999em;float:left;}
.page-sim a.page_next{width:22px;height:22px;overflow:hidden;background:url(http://static.yohobuy.com/images/page.png) no-repeat -30px -106px;text-indent:-999em;float:left;}
/*商品详细浮动层*/
.pr-win{width:610px;min-height:340px;_height:340px;float:left;}
.pr-win .bigpic{width:270px;padding:0px 0px 0px 20px;float:left;}
.pr-win .bigpic ol{width:250px;height:250px;overflow:hidden;}
.pr-win .bigpic ul{padding-top:10px;}
.pr-win .bigpic li{width:64px;height:64px;float:left;}
.pr-win .bigpic li img{width:55px;height:55px;border:1px #ccc solid;}
.pr-win .bigpic .act img{width:55px;height:55px;border:1px #333 solid;}
.pr-win .info{width:300px;float:left;}
.pr-win .info .brand{color:#468fa2;line-height:120%;}
.pr-win .info .number{color:#999;line-height:120%;}
.pr-win .info .title{padding:5px 0px;border-bottom:1px #333 solid;}
.pr-win .info h2{color:#333;font-size:15px;font-weight:bold;}
.pr-win .info h3{color:#ff6600;font-size:12px;font-weight:bold;}
.pr-win .info .price{padding:10px 0px;line-height:120%;}
.pr-win .info .text{color:#999;height:90px;padding-bottom:10px;line-height:18px;overflow:hidden;}
.btn_view{width:152px;height:39px;background:url(http://static.yohobuy.com/images/btn_view.png) no-repeat;display:inline-block;border:0px;}
/*加入购物车层*/
.addtocart-win{width:600px;min-height:400px;_height:400px;padding:0px 20px;color:#333;float:left;}
.addtocart-win .bigpic{width:265px;float:left;}
.addtocart-win .bigpic ol{width:265px;height:255px;overflow:hidden;}
.addtocart-win .bigpic ol img{width:250px;height:250px;}
.addtocart-win .bigpic ul{}
.addtocart-win .bigpic li{width:64px;height:64px;float:left;}
.addtocart-win .bigpic li img{width:55px;height:55px;border:1px #ccc solid;vertical-align:top;}
.addtocart-win .bigpic .act img{width:55px;height:55px;border:1px #333 solid;vertical-align:top;}
.addtocart-win .info{width:335px;float:left;}
.addtocart-win .info .brand{color:#468fa2;line-height:120%;}
.addtocart-win .info .number{color:#999;line-height:120%;}
.addtocart-win .info .title{padding:5px 0px;border-bottom:1px #333 solid;}
.addtocart-win .info h2{color:#333;font-size:16px;font-weight:bold;}
.addtocart-win .info h3{color:#ff6600;font-size:12px;font-weight:bold;}
.addtocart-win .info .price{padding:15px 0px 15px 0px;line-height:120%;border-bottom:1px #333 solid;}
.addtocart-win .info .order{padding:10px 0px;}
.addtocart-win .info .order h4{height:25px;font-size:12px;}
.addtocart-win .info .order dl{clear:both;}
.addtocart-win .info .order dt{width:55px;float:left;}
.addtocart-win .info .order dd{width:250px;padding-bottom:5px;float:left;}
.addtocart-win .info .order .color dt{line-height:45px;}
.addtocart-win .info .order .color a{width:40px;height:40px;border:1px #ccc solid;margin:1px 5px 5px 1px;display:inline;float:left;}
.addtocart-win .info .order .color img{width:40px;height:40px; vertical-align:top;}
.addtocart-win .info .order .color .act{width:40px;height:40px;border:2px #e8044f solid;margin:0px 4px 4px 0px;display:inline;float:left; position:relative;}
.addtocart-win .info .order .size a{height:17px;padding:0px 10px;line-height:17px;border:1px #ccc solid;margin:1px 5px 5px 1px;display:inline;float:left;}
.addtocart-win .info .order .size .act{height:17px;border:2px #e8044f solid;margin:0px 4px 4px 0px;display:inline;float:left; position:relative;}
.addtocart-win .info .order .act .mark{ width:11px;height:11px;overflow:hidden;line-height:0px;position:absolute;right:0px;bottom:0px;background:url(http://static.yohobuy.com/images/ico_r_act.png) no-repeat;}
.addtocart-win .info .submit{clear:both;padding-top:10px;}
.addtocart-win .info .submit .btn_type6 a{padding:0 15px;}
.addtocart-win .info .submit .btn_type6 a span{display:inline-block; height:35px; background:url(http://static.yohobuy.com/images/icons01.gif) 0 -268px; padding-left:18px; color:#fff;}
/*注册登录层*/
.sign-win{width:430px;min-height:250px;_height:250px;padding:10px;margin-top:-5px;float:left;}
.sign-win .title{border-bottom:#000 solid 1px; height:34px; line-height:34px; font-weight:bold; font-size:14px; margin-bottom:10px;}
.sign-win .main{}
.sign-win .main dl{width:430px;padding:5px 0px;float:left;}
.sign-win .main dl dt{width:60px;text-align:right;float:left;}
.sign-win .main dl dd{width:370px;float:left;}
.sign-win .main .stat{width:370px;padding:10px 0px 0px 60px;float:left;}
.sign-win .main .submit{width:370px;padding:10px 0px 0px 60px;float:left;}
.h2_signin,.h2_signup{display:block; float:left; margin-right:2px;}
.input_email,.input_pw,.rec_input{height:22px; line-height:22px; width:170px; border:#ccc solid 1px; background:url(http://static.yohobuy.com/images/inputbg.gif) -1px -1px no-repeat; vertical-align:middle;}
.input_check{height:22px; line-height:22px; width:60px; border:#ccc solid 1px; background:url(http://static.yohobuy.com/images/inputbg.gif) -1px -1px no-repeat; vertical-align:middle;}
/*晒物继续上传*/
.sw-win{width:578px;padding:0px 0px 20px 20px;min-height:400px;_height:400px;float:left;}
.sw-win dl{width:578px;margin-bottom:10px;float:left;}
.sw-win dl dt{width:78px;text-align:right;float:left;}
.sw-win dl dd{width:500px;float:left;}
.sw-win .submit{width:500px;padding-left:78px;float:left;}
/*购物弹出*/
.buy-win{padding:0px 20px;}
.buy-win p{padding:0px 0px 10px 30px;}
.buy-win .title{_height:22px;min-height:22px;line-height:22px;font-size:14px;font-weight:bold;color:#333;background:url(http://static.yohobuy.com/images/ico_ok.png) no-repeat;}
.buy-win strong{color:#e8044f;}
.buy-win .submit{padding:10px 0px 10px 30px;}
.buy-win .submit input{ vertical-align:top;}
.buy-win .submit span{ vertical-align:top;}
/*咨询弹出*/
.zx-win{padding:0px 20px;}
.zx-win dl{padding-bottom:10px;}
.zx-win dt{font-weight:bold;}
.zx-win .submit{padding-top:10px;height:35px;text-align:right;}
.zx-win .submit input{ vertical-align:top;}
/*帮助弹出*/
.help-win{padding:0px 20px;_height:200px;}
.help-win .list{height:auto !important;min-height:20px;_height:20px;clear:both;padding:10px;}
.help-win .list:after { content:""; display:block; clear:both; height:0; }
.help-win .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 -27px 3px;}
.help-win .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;}
/*评论弹出*/
.pl-win{padding:0px 20px;}
.pl-win dl{width:478px;clear:both;padding-bottom:10px;float:left;}
.pl-win dl dt{width:78px;text-align:right;float:left;}
.pl-win dl dd{width:400px;float:left;}
.pl-win .submit{padding:10px 0px 0px 0px;height:35px;text-align:right;}
.pl-win .submit input{ vertical-align:top;}
/*提示对话框弹出*/
.dialog-win{padding:20px 10px 0px 10px;}
.dialog-win p{padding:0px 0px 10px 0px ;text-align:center;color:#000;font-size:14px;}
.dialog-win p .error{min-height:22px;_height:22px;line-height:22px;display:inline-block;background:url(http://static.yohobuy.com/images/ico_i_sf_2.png) no-repeat 0px -22px;padding-left:25px;}
.dialog-win p .correct{min-height:22px;_height:22px;line-height:22px;display:inline-block;background:url(http://static.yohobuy.com/images/ico_i_sf_2.png) no-repeat -22px 0px;padding-left:25px;}
.dialog-win strong{color:#e8044f;}
.dialog-win .submit{padding:10px 0px 10px 0px;text-align:center;}
/*通用杂项*/
.photo-list-container{margin-bottom:10px;width:100%;overflow:hidden; position:relative; z-index:1;}
.photo-list-container ul{display:inline-block;#display:inline;#zoom:1;vertical-align:bottom; }
.photo-list-container li{display:inline-block;#display:inline;#zoom:1;vertical-align:bottom;padding:10px 0px 0px 0px;margin:0 10px 0 0;text-align:center; position:relative; z-index:1;}
.photo-list-container li .btn_del{ position:absolute;right:-10px;top:0px; z-index:5;}
.photo-list-container img{vertical-align:top;position:relative; z-index:1; }
.photo-list-container .last-num{display:inline-block;#display:inline;#zoom:1;vertical-align:bottom;}
/*404错误页*/
.error-container{height:auto!important;min-height:350px;_height:350px;background:url(http://static.yohobuy.com/images/error_404_bg.png) repeat-x top #fff;/display: inline-block;position:relative;padding-top:100px;}
.error-404{width:390px;height:auto;padding:15px 0px 30px 80px;background:url(http://static.yohobuy.com/images/error_404_ico.png) no-repeat;margin:0px auto 0px auto;}
.error-404 strong{color:#000;font-size:18px;font-family:Arial,helvetica,sans-serif;display:block;border-bottom:1px #333 solid;padding:0px 0px 10px 10px;}
.error-404 p{padding:10px 0px 0px 10px;}
.error-404 ul{padding:10px;border:1px #e5e5e5 solid;background:#f6f6f6;line-height:20px;margin:10px 0px 0px 10px;}
.error-404 ul a{color:#468fa2; text-decoration:none; display:inline-block;}
.error-404 ul a:hover{text-decoration: underline;}
/*会员vip*/
.hyvip{width:800px;height:auto;background:url(http://static.yohobuy.com/images/k_r_m.png) repeat-y;margin-bottom:10px;float:left;}
.hyvip .main{width:798px;padding:0px 1px 1px 1px;background:url(http://static.yohobuy.com/images/k_r_b.png) no-repeat bottom;float:left;}
.hyvip .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;}
.hyvip .title h2{width:175px;height:15px;background:url(http://static.yohobuy.com/images/z_vip.png) no-repeat; text-indent:-999em;float:left;}
.hyvip-con-1{background:#faf5ed;padding:10px;border-bottom:1px #eee5d6 solid;font-size:14px;color:#333;}
.hyvip-con-2{background:#f8f8f8;padding:10px;border-bottom:1px #ddd solid;font-size:14px;color:#333;}
.hyvip ul{clear:both;}
.hyvip li{width:130px;height:30px;line-height:30px;font-size:14px;color:#333;text-align:center;background:url(http://static.yohobuy.com/images/vip_li_bg.png) no-repeat;margin:0px 3px 3px 0px;display:inline;float:left;}
.hyvip .new{background:url(http://static.yohobuy.com/images/vip_li_new.png) no-repeat; position:relative;}
.hyvip .new span{width:19px;height:11px;position:absolute;right:5px;top:-5px;display:block;background:url(http://static.yohobuy.com/images/ico_new2.png) no-repeat;}
.hyvip-con-1 .upgrade{width:300px;padding:0px 0px 15px 0px}
.hyvip-con-3{margin:10px 5px;padding:0px 0px 20px 0px;}
.hyvip-con-3 .pic{text-align:center;padding:10px 0px;}
.hyvip-con-3 h3{font-size:14px;color:#333;}
.hyvip-con-3 p{padding:10px 0px;}
.hyvip-con-3 h2{font-size:24px !important;color:#333;border-bottom:2px #eee solid!important;padding:10px 0px!important;margin:10px 0px;font-family:Arial,helvetica,sans-serif;font-weight:normal;}
.hyvip-con-3 h5{font-size:18px!important;color:#333;border-top:2px #eee solid!important;padding:10px 0px!important;margin:10px 0px 0px 0px;font-family:Arial,helvetica,sans-serif;font-weight:normal;}
.hyvip-con-3 .f_zhe{font-size:18px;font-family:黑体;color:#333;line-height:1.2;}
.hyvip-con-3 .f_zhe b{font-size:44px;font-family:arial; font-style:italic;}
.hyvip-con-3 .vip-p{padding:10px 0px 10px 20px;color:#333;}
.hyvip-con-3 strong{color:#333;}
.hyvip-con-3 .f_big{font-size:24px;font-weight:bold;font-family:黑体;line-height:1.5;color:#333;}
.hyvip-con-3 .f_b{font-size:18px;font-weight:bold;font-style:italic;line-height:1.5;color:#333;}
.hyvip-con-3 .vip-submit{text-align:center;padding:40px 0px 30px 0px;}
.hyvip-con-3 .help{padding:10px 0px;font-size:14px;}
.hyvip-con-3 .help span{float:right;}
.hyvip-con-3 .help strong{color:#E8044F;}
.hyvip-con-3 .help a{ text-decoration:underline;}
.upgrade h4{font-size:12px;font-weight:normal;margin-bottom:5px;}
.upgrade .slider{height:12px;border:1px #c1c1c1 solid;background:url(http://static.yohobuy.com/images/vip_slider.png);margin:0px 0px 5px 0px;position:relative;}
.upgrade .slider span{ width:100%;height:12px;line-height:12px;font-family:宋体;color:#666;font-weight:bold;position:absolute;top:0px;left:0px;text-align:center;display:block;font-size:12px;color:#715a26;}
.upgrade .slider-over{height:12px;background:url(http://static.yohobuy.com/images/vip_slider_over.png);line-height:12px;overflow:hidden;}
.upgrade dl{height:22px;background:url(http://static.yohobuy.com/images/vip_slider_bg.png) repeat-x 0px 6px;}
.upgrade dl dt{float:left;}
.upgrade dl dd{float:right;}
.upgrade .end{background:none;}
.upgrade .info{line-height:15px;padding-top:8px;font-size:12px;}
/*vip状态*/
.vip-stat{height:180px;border-bottom:2px #eee solid;}
.vip-stat .jindu{widht:756px;height:170px;background:url(http://static.yohobuy.com/images/vip_stat_bg.png) no-repeat 0px 65px;}
.vip-stat .jindu .th{width:130px;padding:80px 15px 0px 0px;line-height:37px;font-size:14px;color:#fff;text-align:center;float:left;}
.vip-stat .jindu .tb{width:525px;float:left;}
.vip-stat .jindu .tf{width:80px;padding:5px 0px 0px 5px;float:left;}
.vip-stat .jindu .li-t{height:130px;background:url(http://static.yohobuy.com/images/vip_stat_t.png) no-repeat 2px 80px;float:left;overflow:hidden;}
.vip-stat .jindu .li-t span{height:120px;padding:5px 10px;display:block;background:url(http://static.yohobuy.com/images/vip_stat_linedot.png) repeat-y left;}
.vip-stat .jindu .li-m{height:170px;float:left;overflow:hidden; position:relative;background:url(http://static.yohobuy.com/images/vip_stat_m.png) no-repeat 0px 80px;}
.vip-stat .jindu .stat{width:100%;position:absolute;bottom:10px;}
.vip-stat .jindu .upgrade{ padding:0px 10px;}
.vip-stat .jindu .upgrade .info{padding-top:0px;}
.vip-stat .jindu strong{font-size:14px;font-weight:bold;color:#333;}
.vip-stat .jindu .begin{height:170px;position:absolute;left:0px;top:0px;padding:5px 10px;background:url(http://static.yohobuy.com/images/vip_stat_linedot.png) repeat-y left;}
.vip-stat .jindu .end{height:170px;text-align:right;background:url(http://static.yohobuy.com/images/vip_stat_linedot.png) repeat-y right;position:absolute;right:0px;top:0px;padding:5px 10px;}
.vip-stat .jindu .today{height:80px;position:absolute;left:0px;top:80px;}
.vip-stat .jindu .today .clock{clear:both;width:100%;height:37px;background:url(http://static.yohobuy.com/images/vip_stat_over.png) no-repeat 0px 0px #9b6c35;}
.vip-stat .jindu .today .clock b{width:100%;height:37px;background:url(http://static.yohobuy.com/images/vip_stat_over.png) no-repeat right -37px;float:right;}
.vip-stat .jindu .time{width:100%;height:20px;position:absolute;left:0px;top:90px;text-align:center;font-size:14px;color:#fff;overflow:hidden;}
/*liu*/
.is0{ margin-top:5px;background:url( http://static.yohobuy.com/images/progressImg1.png) no-repeat 0 0;width:138px;height:7px;overflow:hidden;line-height:7px;font-size:0px;}
.is10{background-position:0 -7px;}
.is20{background-position:0 -14px;}
.is30{background-position:0 -21px;}
.is40{background-position:0 -28px;}
.is50{background-position:0 -35px;}
.is60{background-position:0 -42px;}
.is70{background-position:0 -49px;}
.is80{background-position:0 -56px;}
.is90{background-position:0 -63px;}
.is100{background-position:0 -70px;}
/*tan common*/
.btn_type1{display:inline-block; height:22px; background:url(http://static.yohobuy.com/images/icons02.png) 0 0 no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type1 input{display:inline-block; height:22px; padding:0 10px; background:url(http://static.yohobuy.com/images/icons02.png) right 0 no-repeat; border:none; _overflow:visible;cursor:pointer; margin:0; color:#666; *width:1%; vertical-align:top;}
.btn_type1 a{display:inline-block; height:22px; padding:0 10px; background:url(http://static.yohobuy.com/images/icons02.png) right 0 no-repeat; border:none; overflow:visible; cursor:pointer; margin:0; color:#666;}
.btn_type1 a span{display:inline-block; height:22px; line-height:22px; font-weight:normal; color:#666;}
.btn_type1 a:hover,.btn_type1 a:hover span{text-decoration:none !important;}
.btn_type2{display:inline-block; height:22px; background:url(http://static.yohobuy.com/images/icons02.png) 0 -22px no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type2 input{display:inline-block; height:22px; padding:0 10px; background:url(http://static.yohobuy.com/images/icons02.png) right -22px no-repeat; border:none; _overflow:visible; cursor:not-allowed; margin:0; color:#b3b3b3; *width:1%;vertical-align:top;}
.btn_type2 a{display:inline-block; height:22px; padding:0 10px; background:url(http://static.yohobuy.com/images/icons02.png) right -22px no-repeat; border:none; overflow:visible; cursor:not-allowed; margin:0; color:#666;}
.btn_type2 a span{display:inline-block; height:22px; line-height:22px; font-weight:normal; color:#666;}
.btn_type2 a:hover,.btn_type1 a:hover span{text-decoration:none !important;}
.btn_type3{display:inline-block; height:20px; background:url(http://static.yohobuy.com/images/icons02.png) 0 -44px no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type3 input{display:inline-block; height:20px; padding:0 10px; background:url(http://static.yohobuy.com/images/icons02.png) right -44px no-repeat; border:none; _overflow:visible; cursor:pointer; margin:0; color:#e8044f; *width:1%;vertical-align:top;}
.btn_type4{display:inline-block; height:20px; background:url(http://static.yohobuy.com/images/icons02.png) 0 -64px no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type4 input{display:inline-block; height:20px; padding:0 10px; background:url(http://static.yohobuy.com/images/icons02.png) right -64px no-repeat; border:none; _overflow:visible; cursor:pointer; margin:0; color:#fff; *width:1%;vertical-align:top;}
.btn_type5{display:inline-block; height:35px; background:url(http://static.yohobuy.com/images/icons02.png) 0 -84px no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type5 a{display:inline-block; height:35px; line-height:32px; padding:0 20px; background:url(http://static.yohobuy.com/images/icons02.png) right -84px no-repeat; border:none; overflow:visible; cursor:pointer; margin:0; color:#666;}
.btn_type5 a span{display:inline-block; height:35px; background:url(http://static.yohobuy.com/images/icons01.gif) 0 -305px; padding-left:10px; color:#666;}
.btn_type5 a:hover,.btn_type5 a:hover span{text-decoration:none !important;color:#666;}
.btn_type6{display:inline-block; height:35px; background:url(http://static.yohobuy.com/images/icons02.png) 0 -119px no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type6 a{display:inline-block; height:35px; line-height:32px; font-weight:bold; padding:0 40px; background:url(http://static.yohobuy.com/images/icons02.png) right -119px no-repeat; border:none; overflow:visible; cursor:pointer; margin:0; color:#fff;}
.btn_type6 a span{display:inline-block; height:35px; background:url(http://static.yohobuy.com/images/icons01.gif) right -436px; padding-right:10px; color:#fff;}
.btn_type6 a:hover,.btn_type6 a:hover span{text-decoration:none !important;color:#fff;}
.btn_type7{display:inline-block; height:35px; background:url(http://static.yohobuy.com/images/icons02.png) 0 -154px no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type7 a{display:inline-block; height:35px; line-height:32px; font-weight:bold; padding:0 40px; background:url(http://static.yohobuy.com/images/icons02.png) right -154px no-repeat; border:none; overflow:visible; cursor:pointer; margin:0; color:#fff;}
.btn_type7 a span{display:inline-block; height:35px; background:url(http://static.yohobuy.com/images/icons01.gif) right -436px; padding-right:10px; color:#fff;}
.btn_type7 a:hover,.btn_type7 a:hover span{text-decoration:none !important;}
.btn_type8{display:inline-block; height:34px; background:url(http://static.yohobuy.com/images/icons02.png) 0 -190px no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type8 span{display:inline-block; height:34px; line-height:34px; padding:0 20px; background:url(http://static.yohobuy.com/images/icons02.png) right -190px no-repeat; border:none; overflow:visible; cursor:pointer; margin:0; color:#666; color:#fff;}
.btn_type9{display:inline-block; height:34px; background:url(http://static.yohobuy.com/images/icons02.png) 0 -224px no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type9 span{display:inline-block; height:34px; line-height:34px; padding:0 20px; background:url(http://static.yohobuy.com/images/icons02.png) right -224px no-repeat; border:none; overflow:visible; cursor:pointer; margin:0; color:#666; color:#333;}
.btn_type10{display:inline-block; height:30px; background:url(http://static.yohobuy.com/images/icons02.png) 0 -258px no-repeat; padding:0 0 0 2px; overflow:hidden; }
.btn_type10 a{display:inline-block; height:30px; line-height:27px; font-weight:bold; padding:0 10px; background:url(http://static.yohobuy.com/images/icons02.png) right -258px no-repeat; border:none; overflow:visible; cursor:pointer; margin:0; color:#468fa2;}
.btn_type10 a span{display:inline-block; height:30px; background:url(http://static.yohobuy.com/images/icons01.gif) 0 -588px; padding-left:18px; color:#468fa2;}
.cart_discount{border:#e3c877 solid 2px; width:auto !important; padding:0px!important;position:relative; float:left;}
.cart_discount img{width:58px;height:58px;margin:0; vertical-align:top;}
.cd_icon{width:28px; height:28px; display:block; background:url(http://static.yohobuy.com/images/icons01.gif) 0 -404px no-repeat; position:absolute; left:0; bottom:0;}
.cd_zeng{width:28px; height:28px; display:block; background:url(http://static.yohobuy.com/images/ico_zeng.png) no-repeat; position:absolute; left:0; bottom:0;}
.single_wrongalert{border:#e3b3b3 solid 1px;background:url(http://static.yohobuy.com/images/icons01.gif) no-repeat 10px -531px #ffeaf2; padding:5px 5px 5px 26px; color:#e8044f; display:inline-block;}
/*邀请页*/
.defaultpage .toppic{width:460px;height:60px;background:url(http://static.yohobuy.com/images/logo_yohobuy.png) no-repeat;margin:50px auto 10px auto;}
.defaultpage .box{width:460px;height:200px;padding:30px 20px 0px 20px;background:url(http://static.yohobuy.com/images/defaultpage.png) no-repeat;margin:0px auto 30px auto;}
.defaultpage h2{width:455px;height:30px;padding-left:5px;line-height:30px;font-size:16px;color:#333;border-bottom:1px #e7e7e7 solid;float:left;}
.defaultpage .main{width:460px;padding:25px 0px;float:left;}
.defaultpage .main dl{clear:both;width:460px;margin-bottom:20px;height:auto !important;min-height:22px;_height:22px;overflow:hidden;float:left;line-height:22px;font-family:宋体;}
.defaultpage .main dl:after { content:""; display:block; clear:both; height:0; }
.defaultpage .main dl dt{width:150px;text-align:right;font-size:14px;float:left;}
.defaultpage .main dl dd{width:300px;color:#999;float:left;}
.defaultpage .main dl dd input{float:left;}
.defaultpage .main .submit{padding:0px 0px 20px 150px;}
/*在线客服*/
.kf-win{width:802px;margin:20px auto;}
.kf-win .title{height:63px;background:url(http://static.yohobuy.com/images/kf_win_t.png) no-repeat;}
.kf-win .title h2{width:525px; text-indent:-999em;overflow:hidden;float:left;}
.kf-win .title .time{width:230px;padding:25px 0px 0px 0px;line-height:20px;color:#333;float:left;}
.kf-win .title .close{width:21px;height:21px;margin:25px 25px 0px 0px;background:url(http://static.yohobuy.com/images/kf_win_close.png) no-repeat;float:right; cursor:pointer;}
.kf-win .main{height:540px;background:url(http://static.yohobuy.com/images/kf_win_m.png) no-repeat;}
.kf-win .textbox{width:550px;height:538px;overflow:hidden;background:#fff;border:1px #ccc solid;margin:0px 22px;display:inline;float:left;}
.kf-win .textbox .noline{height:30px;line-height:30px;color:#fff;text-align:center;background:#dd2326;}
.kf-win .textbox .noline a{color:#fff; text-decoration:underline;}
.kf-win .infobox{float:left;}
.kf-win .infobox img{width:180px;border:1px #ccc solid;margin-bottom:10px;}
.kf-win .infobox li{width:180px; white-space:nowrap;overflow:hidden;color:#333;}
.kf-win .infobox h3{font-size:12px;display:inline;}
.kf-win .infobox .oldprice{color:#999;}
.kf-win .infobox .newprice{color:#e8044f;}
.kf-win .bottom{height:50px;background:url(http://static.yohobuy.com/images/kf_win_b.png) no-repeat;}
.kf-win .bottom dl{width:555px;padding:10px 0px 0px 20px;float:left;}
.kf-win .bottom dt{float:left;}
.kf-win .bottom dd{float:right;}
.kf-win .bottom .logo{padding:0px 20px 0px 0px;float:right;}
.photo-list-container li .font_red{ background:url(http://static.yohobuy.com/images/ico_tips2.png) no-repeat 37px 1px; padding-right:20px;}
.photo-list-container li .photo_fail{ width:150px; height:40px; background:#CCC;}
.add_zhu{ color:#999999; display:block; margin-top:-8px; margin-bottom:10px;}
/*新增注册登录商品详情弹层*/
.openbox{width:370px;border:1px #9a9a9a solid;background:#f4f4f4 !important;}
.openbox .openbox-title{height:15px;line-height:15px;background:#333;color:#fff;padding:8px;}
.openbox .openbox-title h2{height:15px;line-height:15px;font-size:14px;font-family:Arial,helvetica,sans-serif;float:left;}
.openbox .openbox-title .close_x{width:15px;height:15px;background:url(http://static.yohobuy.com/images/dialog_x.png) no-repeat;float:right;}
.openbox .hz{border-top:1px #dfdfdf solid;margin:0px 20px;padding:10px;}
.openbox .hz h3{height:30px;font-size:12px;}
.dialog-login{width:370px;padding:0px 0px 10px 0px;zoom:1;margin:0 auto;}
.dialog-login:after { content:""; display:block; clear:both; height:0; }
.dialog-login .tab{height:48px;background:url(http://static.yohobuy.com/images/reg_tab_new.png) no-repeat;}
.dialog-login .tab a{width:185px;height:48px;line-height:48px;font-size:14px;font-family:Arial,helvetica,sans-serif;color:#000;text-align:center;float:left;}
.dialog-login .tab-reg{ background-position:0px -48px;}
.dialog-login .tab-login{ background-position:0px 0px;}
.dialog-login .form{padding:30px 0px 0px 0px;}
.dialog-login .form dl{clear:both;height:65px;zoom:1;}
.dialog-login .form dl:after { content:""; display:block; clear:both; height:0; }
.dialog-login .form dl dt{width:100px;min-height:30px;_height:30px;text-align:right;font-size:14px;line-height:30px;color:#000;float:left;}
.dialog-login .form dl dd{width:250px;float:left;}
.dialog-login .form dl dd .img{width:90px;height:30px;overflow:hidden;display:inline-block; vertical-align:middle;}
.dialog-login .form dl dd .txt{height:30px;padding:0px 0px 0px 5px;line-height:15px;display:inline-block; vertical-align:middle;}
.dialog-login .form .input_b{width:200px;}
.dialog-login .form .stat{clear:both;height:55px;padding:0px 0px 0px 95px;color:#999;}
.dialog-login .form .stat a:hover{color:#468fa2;}
.dialog-login .form .yzm{clear:both;padding:0px 0px 10px 95px;}
.dialog-login .form .submit{clear:both;padding:0px 0px 20px 95px;}
.dialog-login .hz{border-top:1px #dfdfdf solid;margin:0px 20px;padding:10px;}
.dialog-login .hz h3{height:30px;font-size:12px;}
.dialog-login .hz p{color:#ccc;}
.dialog-reg{width:340px;padding:20px 0px;margin:0 auto;zoom:1;}
.dialog-reg:after { content:""; display:block; clear:both; height:0; }
.dialog-reg .dialog-reg-flow{clear:both;height:45px;padding:45px 0px 0px 0px;background:url(http://static.yohobuy.com/images/dialog_reg_flow.png) no-repeat center 30px;}
.dialog-reg .dialog-reg-flow li{width:113px;text-align:center;color:#999;float:left;}
.dialog-reg .dialog-reg-flow .li-1{ width:105px;padding:0px 0px 0px 8px;color:#000;text-align:left;}
.dialog-reg .dialog-reg-flow .li-2{ text-align:center;color:#000;}
.dialog-reg .dialog-reg-flow .li-3{ width:95px;text-align:right;}
.dialog-reg .text{clear:both;border-top:1px #dfdfdf solid;padding:20px;zoom:1;}
.dialog-reg .text:after{content: ""; display: block; clear: both; height: 0px;}
.dialog-reg .text strong{font-size:18px;color:#000;font-family:Arial,helvetica,sans-serif;}
.dialog-reg .text strong a{font-size:12px;font-weight:normal;}
.dialog-reg .text p{padding:20px 0px;}
.dialog-reg .text dt{width:60px;color:#000;font-weight:bold;line-height:32px;float:left;}
.dialog-reg .text dd{width:240px;float:left;}
.dialog-reg .text .input_b{width:60px;margin:0px 5px 0px 0px;}
.dialog-reg .text .f_g{padding:5px 0px 0px 0px;display:block;}
.dialog-reg .submit{clear:both;margin:0px 0px 20px 80px;}
.dialog-reg-ok{width:280px;padding:80px 0px;margin:0 auto;}
.dialog-reg-ok h2{height:35px;line-height:28px;padding:0px 0px 20px 40px;margin:0px 0px 0px 55px;color:#090;font-size:24px;font-family:Arial,helvetica,sans-serif;background:url(http://static.yohobuy.com/images/i_ok_b.png) no-repeat;}
.dialog-reg-ok p{color:#000;padding:0px 0px 20px 0px;}
.dialog-reg-ok .time{color:#999;}
.dialog-reg-ok .time strong{color:#090;}
.dialog-goods{width:610px;padding:15px;margin:0 auto;}
.dialog-goods:after{content: ""; display: block; clear: both; height: 0px;}
.dialog-goods .bigpic{width:290px;padding-bottom:15px;float:left;}
.dialog-goods .bigpic ol{height:290px;text-align:center;}
.dialog-goods .bigpic ol img{width:210px;height:280px;}
.dialog-goods .bigpic .piclist{height:65px;}
.dialog-goods .bigpic .piclist .pre{width:15px;float:left;}
.dialog-goods .bigpic .piclist_pre{width:10px;height:60px;background:url(http://static.yohobuy.com/images/prenext_btn_s.png) no-repeat 0px 0px;float:left;}
.dialog-goods .bigpic .piclist .next{width:15px;float:left;}
.dialog-goods .bigpic .piclist_next{width:10px;height:60px;background:url(http://static.yohobuy.com/images/prenext_btn_s.png) no-repeat 0px -60px;float:right;}
.dialog-goods .bigpic .piclist .con{width:260px;height:65px;overflow:hidden;float:left;}
.dialog-goods .bigpic li{width:65px;height:65px;overflow:hidden;text-align:center;float:left;}
.dialog-goods .bigpic li img{width:58px;height:58px;border:1px #ccc solid;margin:1px;vertical-align:top;}
.dialog-goods .bigpic .act img{width:58px;height:58px;border:2px #333 solid;margin:0px; vertical-align:top;}
.dialog-goods .bigpic li:hover img{filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8;}
.dialog-goods .info{width:300px;padding-bottom:15px;float:right;}
.dialog-goods .info .title{padding:5px 0px;}
.dialog-goods .info h2{width:300px;color:#000;font-size:12px;font-weight:normal; white-space:nowrap;overflow:hidden;}
.dialog-goods .info h3{color:#999;font-size:12px;font-weight:normal;}
.dialog-goods .info .type{padding:0px 0px 10px 0px;}
.dialog-goods .info .type_s{background:#ccc;padding:0px 5px;padding:3px 5px 0px 5px\9;color:#fff;font-size:12px;height:15px;line-height:15px;display:inline-block; }
.dialog-goods .info .price{padding:0px 0px 10px 0px;margin-bottom:10px;border-bottom:1px #000 solid;}
.dialog-goods .info .oldprice{color:#999;font-size:14px;font-weight:bold;display:block;padding:0px 0px 5px 0px;}
.dialog-goods .info .newprice{color:#000;font-size:14px;font-weight:bold;display:block;height:30px;line-height:30px;padding:0px 0px 5px 0px;}
.dialog-goods .info .newprice b{font-size:22px;font-family:arial;}
.dialog-goods .info .vipprice{color:#000;display:block;}
.dialog-goods .info .actprice{color:#e8044f;font-size:14px;font-weight:bold;display:block;height:30px;line-height:30px;padding:0px 0px 5px 0px;}
.dialog-goods .info .actprice b{font-size:22px;font-family:arial;}
.dialog-goods .info .order{padding:0px 0px 10px 0px;color:#000;}
.dialog-goods .info .order dl{clear:both;padding-top:0px;height:auto !important;min-height:20px;_height:20px;}
.dialog-goods .info .order dl:after{content: ""; display: block; clear: both; height: 0px;}
.dialog-goods .info .order dt{width:55px;float:left;}
.dialog-goods .info .order dd{width:245px;padding-bottom:10px;float:left;}
.dialog-goods .info .order .color dt{line-height:45px;}
.dialog-goods .info .order .color li{width:44px;height:65px;text-align:center;margin-right:4px;display:inline;float:left;}
.dialog-goods .info .order .color a{width:40px;height:40px;border:1px #ccc solid;margin:1px;display:inline-block; vertical-align:top;}
.dialog-goods .info .order .color img{width:40px;height:40px; vertical-align:top;}
.dialog-goods .info .order .color img:hover{filter: alpha(opacity=80); -moz-opacity:0.8; opacity:0.8;}
.dialog-goods .info .order .color .act{width:40px;height:40px;border:2px #e8044f solid;margin:0px;display:inline-block; position:relative;}
.dialog-goods .info .order .color .act_none{}
.dialog-goods .info .order .color .act_none img{filter: alpha(opacity=30); -moz-opacity:0.3; opacity:0.3;}
.dialog-goods .info .order .color .act_h{width:40px;height:40px;border:2px #ccc solid;margin:0px;display:inline-block; position:relative;}
.dialog-goods .info .order .color .act_h .mark{ width:11px;height:11px;overflow:hidden;line-height:0px;position:absolute;right:0px;bottom:0px;_bottom:-1px;background:url(http://static.yohobuy.com/images/ico_r_act_h.png) no-repeat;}
.dialog-goods .info .order .color .act_h img{filter: alpha(opacity=30); -moz-opacity:0.3; opacity:0.3;}
.dialog-goods .info .order .size a{height:17px;padding:0px 10px;line-height:17px;border:1px #ccc solid;margin:1px 5px 5px 1px;display:inline;float:left;overflow:hidden;}
.dialog-goods .info .order .size .act{height:17px;border:2px #e8044f solid;margin:0px 4px 4px 0px;display:inline;float:left; position:relative;}
.dialog-goods .info .order .size .act_h{height:17px;color:#ccc;border:2px #ccc solid;margin:0px 4px 4px 0px;display:inline;float:left; position:relative;}
.dialog-goods .info .order .size .act_h .mark{ width:11px;height:11px;overflow:hidden;line-height:0px;position:absolute;right:0px;bottom:0px;_bottom:-1px;background:url(http://static.yohobuy.com/images/ico_r_act_h.png) no-repeat;}
.dialog-goods .info .order .size .act_none{color:#ccc;}
.dialog-goods .info .order .size .size-tips{clear:both;height:20px;line-height:20px;display:block;}
.dialog-goods .info .order .size .size-tips a{display:inline;float:none;border:0px;padding:0px;margin:0px;}
.dialog-goods .info .order .act .mark{ width:11px;height:11px;overflow:hidden;line-height:0px;position:absolute;right:0px;bottom:0px;_bottom:-1px;background:url(http://static.yohobuy.com/images/ico_r_act.png) no-repeat;}
.dialog-goods .info .order .num {height:20px;}
.dialog-goods .goods-size{clear:both;border-top:1px #ccc dashed;}
.dialog-goods .goods-size h3{height:35px;line-height:35px;font-size:14px;}
.dialog-goods .goods-size h3 span{font-size:12px;}
.dialog-goods .goods-size table {width:100%;border:1px solid #ccc;text-align:center; margin-bottom:5px;}
.dialog-goods .goods-size table thead {height:18px;line-height:18px;background:#f4f4f4;padding:2px 5px; }
.dialog-goods .goods-size table td {border:1px solid #fff;padding:3px; font-weight:normal;background:#fbfbfb;}
.dialog-goods .goods-size table th {border:1px solid #fff;padding:3px; font-weight:weight;background:#f4f4f4;}
.dialog-goods .goods-size table td {color:#333;}
.dialog-goods .goods-size table .tr_bg td{background:#f4f4f4;}
.dialog-goods .goods-size table .t_t1{background:#e7e7e7 !important;}
.dialog-goods .goods-size table .t_t2{background:#efefef !important;}
.dialog-goods .goods-size .size-info{color:#999;}
/*购物返邮费*/
.dialog-cartfree{width:450px;padding:10px 20px 20px 20px;}
.dialog-cartfree h2{height:40px;line-height:40px;font-size:28px;font-family:Arial,helvetica,sans-serif;color:#129f46;border-bottom:5px #129f46 solid;}
.dialog-cartfree p{padding:20px 0px 0px 0px;line-height:20px;font-size:14px;color:#129f46;}
/*浮层*/
#dialogBoxBg{display:none;width:100%;height:100%;background:#fff;position:absolute;top:0;left:0;z-index:998;}
.dialogBox{width:300px;position:absolute;top:50px;left:40%;z-index:999;border:1px #9a9a9a solid;background:#fff;}
.dialogBox .dialogtitle{ height:15px;line-height:15px;background:#333;color:#fff;padding:8px;}
.dialogBox .dialogtitle h4{height:15px;line-height:15px;font-size:14px;font-family:Arial,helvetica,sans-serif;float:left;}
.dialogBox .dialogtitle .dialogclose{width:15px;height:15px;background:url(http://static.yohobuy.com/images/dialog_x.png) no-repeat;float:right;cursor:pointer;}
.dialogtBox .dialogcontent{}
/*赠品、outlet标识*/
.cartnew_mark_outlet{width:60px;height:60px;border:2px #f50 solid;margin-right:10px;display:inline;float:left;overflow:hidden; position:relative;}
.cartnew_mark_outlet span{width:100%;height:15px;line-height:15px; position:absolute;left:0px;bottom:0px;text-align:center;color:#fff;background:#f50;display:block; cursor:pointer;}
.cartnew_mark_outlet:hover{ text-decoration:none;}
.cartnew_mark_zeng{width:60px;height:60px;border:2px #9c3 solid;margin-right:10px;display:inline;float:left;overflow:hidden; position:relative;}
.cartnew_mark_zeng span{width:100%;height:15px;line-height:15px; position:absolute;left:0px;bottom:0px;text-align:center;color:#fff;background:#9c3;display:block; cursor:pointer;}
.cartnew_mark_zeng:hover{ text-decoration:none;}
.cartnew_mark_addpay{width:60px;height:60px;border:2px #f74a87 solid;margin-right:10px;display:inline;float:left;overflow:hidden; position:relative;}
.cartnew_mark_addpay span{width:100%;height:15px;line-height:15px; position:absolute;left:0px;bottom:0px;text-align:center;color:#fff;background:#f74a87;display:block; cursor:pointer;}
.cartnew_mark_addpay:hover{ text-decoration:none;}
.cartnew_mark_virtual{width:60px;height:60px;border:2px #333 solid;margin-right:10px;display:inline;float:left;overflow:hidden; position:relative;}
.cartnew_mark_virtual span{width:100%;height:15px;line-height:15px; position:absolute;left:0px;bottom:0px;text-align:center;color:#fff;background:#333;display:block; cursor:pointer;}
.cartnew_mark_virtual:hover{ text-decoration:none;}
/*输入框样式*/
.f_onShow
{
background:url(../images/formvalidator/onShow.png) no-repeat 5px 9px #e8f0ff;
padding-left:25px;
font-size: 12px;
line-height:30px;
height:30px;
display:inline-block;
color:#999;
}
.f_onFocus
{
background:#E9F0FF url(../images/formvalidator/onFocus.png) no-repeat 5px 9px;
padding-left:25px;
font-size: 12px;
line-height:30px;
height:30px;
display:inline-block;
color:#666;
}
.f_onError
{
background:url(../images/formvalidator/onError.png) no-repeat 5px 9px #fff2e8;
padding-left:25px;
font-size: 12px;
line-height:30px;
height:30px;
display:inline-block;
color:#e8044f;
}
.f_onCorrect
{
background:url(../images/formvalidator/onCorrect.png) no-repeat 5px 9px;
padding-left:25px;
font-size: 12px;
line-height:30px;
height:30px;
display:inline-block;
color:#008000;
}
.ui-autocomplete{border:1px #ddd solid !important;border-radius:0px!important;height:200px;overflow:auto;-moz-box-shadow:0 0 5px #ddd;-webkit-box-shadow:0 0 5px #ddd;box-shadow:0 0 5px #ddd;}
.ui-autocomplete a{border-radius:0px!important; cursor:pointer;}
.ui-autocomplete .ui-state-hover{background:#eee!important;border:1px #fff solid!important;color:#000!important;}
/***2012-01-17***/
.yohobuynew-header{width:1240px;height:83px;margin:0 auto;}
.yohobuynew-header .logo{width:240px;height:57px;padding:23px 0px 0px 0px;float:left;}
.yohobuynew-header .right{width:1000px;height:80px;float:right; }
.yohobuynew-header .login{height:23px;line-height:22px;padding:10px 115px 0px 0px;background:url(http://static.yohobuy.com/images/header_tel_new.png) no-repeat right 13px ;font-family:Arial,helvetica,sans-serif;float:right;}
.yohobuynew-header .login dt{width:75px;height:23px;background:url(http://static.yohobuy.com/images/line_dot_lan.png) no-repeat right;float:left;}
.yohobuynew-header .login dd{padding:0px 9px;_padding:3px 9px;_line-height:16px;background:url(http://static.yohobuy.com/images/line_dot_lan.png) no-repeat right;float:left;}
.yohobuynew-header .login a {color:#666;line-height:22px;_line-height:16px;}
.yohobuynew-header .login a:hover {color:#468fa2; text-decoration:underline;}
.yohobuynew-header .search{width:300px;padding:5px 0px 0px 0px;float:left;}
.yohobuynew-header .search dt{width:225px;height:30px;padding:5px 5px 0px 5px;background:url(http://static.yohobuy.com/images/header_search_new.png) no-repeat 0px 0px;float:left; position:relative;z-index:9999;}
.yohobuynew-header .search dd{padding-right:10px;float:left;white-space:nowrap;overflow:hidden;}
.yohobuynew-header .input_search{width:225px;height:25px;line-height:25px;border:0px; vertical-align:top;background:none;color:#999;}
.yohobuynew-header .btn_search{width:53px;height:35px;background:url(http://static.yohobuy.com/images/header_search_new.png) no-repeat -235px 0px;border:0px;cursor:pointer; vertical-align:top;}
.yohobuynew-header .btn_search:hover{background:url(http://static.yohobuy.com/images/header_search_new.png) no-repeat -235px -35px;}
.yohobuynew-header .pic{padding:18px 5px 0px 0px;height:22px;overflow:hidden;float:right;}
.yohobuynew-header .mycart{width:145px;padding:5px 0px 0px 0px;float:right; position:relative;z-index:9999;}
.yohobuynew-header .btn_mycart{width:95px;height:35px;line-height:35px;text-align:center;padding:0px 25px;background:url(http://static.yohobuy.com/images/btn_f_cart.png) no-repeat 0px 0px;display:block;}
.yohobuynew-header .btn_mycart strong{color:#ed1c24;font-weight:normal;}
.yohobuynew-header .mycart .over .btn_mycart{background:url(http://static.yohobuy.com/images/btn_f_cart.png) no-repeat 0px -35px;position:absolute;top:5px;right:0px;z-index:2;}
.yohobuynew-header .mycart-box{ position:absolute;top:35px;right:0px;width:390px;padding:10px 15px 10px 15px;background:#fff;border:2px #000 solid;display:none;z-index:1;}
.yohobuynew-header .mycart-box .list{height:70px;border-bottom:1px #ccc dashed;margin-bottom:8px;}
.yohobuynew-header .mycart-box .list .li-t{width:75px;height:65px;float:left;}
.yohobuynew-header .mycart-box .list .li-m{width:205px;padding:8px 0px 0px 0px;color:#999; white-space:nowrap;overflow:hidden;float:left;}
.yohobuynew-header .mycart-box .list .li-m strong{color:#000;}
.yohobuynew-header .mycart-box .list .li-m strong a{color:#000;}
.yohobuynew-header .mycart-box .list .li-m strong a:hover{color:#468fa2; text-decoration:underline;}
.yohobuynew-header .mycart-box .list .li-b{width:100px;padding:8px 0px 0px 0px;text-align:right;color:#e8044f;float:left;}
.yohobuynew-header .mycart-box dl{_height:20px;min-height:20px;line-height:18px;color:#000;clear:both;zoom:1;}
.yohobuynew-header .mycart-box dl:after{content: ""; display: block; clear: both; height: 0px;}
.yohobuynew-header .mycart-box dl dt{width:45px;height:18px;background:#333;color:#fff;text-align:center;float:left;}
.yohobuynew-header .mycart-box dl dd{width:335px;padding:0px 0px 0px 10px;float:left;}
.yohobuynew-header .mycart-box dl dd .mycart_i_down{width:17px;height:17px;background:url(http://static.yohobuy.com/images/i_mycartupdown.png) no-repeat 0px 0px;float:right;cursor:pointer;}
.yohobuynew-header .mycart-box dl dd .mycart_i_up{width:17px;height:17px;background:url(http://static.yohobuy.com/images/i_mycartupdown.png) no-repeat 0px -17px;float:right;cursor:pointer;}
.yohobuynew-header .mycart-box dl a{color:#000;}
.yohobuynew-header .mycart-box dl a:hover{color:#468fa2; text-decoration:underline;}
.yohobuynew-header .mycart-box .submit{padding:10px 0px 0px 0px;text-align:right;}
.yohobuynew-header .mycart-box .btn_cash {width:134px;height:33px;background:url(http://static.yohobuy.com/images/btn_cash.png) no-repeat;border:0px;display:inline-block;}
.yohobuynew-header-nav{clear:both;min-width:990px;height:37px;background:url(http://static.yohobuy.com/images/yohobuynew_header_nav_bg.png);}
.yohobuynew-header-nav .inner{width:1240px;height:37px;margin:0 auto;}
.yohobuynew-header-nav li{width:126px;height:34px;float:left;position:relative;z-index:9998;}
.yohobuynew-header-nav .nav_sec{position:absolute;top:34px;left:0px;display:none;z-index:9999;padding:5px 15px 5px 15px;background:#fff;border:2px #333 solid;border-top:0px;}
.yohobuynew-header-nav li a{width:126px;height:34px;text-indent:-999px;overflow:hidden;float:left;}
.yohobuynew-header-nav .n1{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat 0px 0px;}
.yohobuynew-header-nav .n1:hover,.yohobuynew-header-nav .over .n1{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat 0px -76px !important;}
.yohobuynew-header-nav .act .n1{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat 0px -37px;}
.yohobuynew-header-nav .n2{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -126px 0px;}
.yohobuynew-header-nav .n2:hover,.yohobuynew-header-nav .over .n2{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -126px -76px !important;}
.yohobuynew-header-nav .act .n2{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -126px -37px;}
.yohobuynew-header-nav .n3{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -252px 0px;}
.yohobuynew-header-nav .n3:hover,.yohobuynew-header-nav .over .n3{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -252px -76px !important;}
.yohobuynew-header-nav .act .n3{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -252px -37px;}
.yohobuynew-header-nav .n4{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -378px 0px;}
.yohobuynew-header-nav .n4:hover,.yohobuynew-header-nav .over .n4{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -378px -76px !important;}
.yohobuynew-header-nav .act .n4{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -378px -37px;}
.yohobuynew-header-nav .n5{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -504px 0px;}
.yohobuynew-header-nav .n5:hover,.yohobuynew-header-nav .over .n5{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -504px -76px !important;}
.yohobuynew-header-nav .act .n5{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -504px -37px;}
.yohobuynew-header-nav .n6{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -630px 0px;}
.yohobuynew-header-nav .n6:hover,.yohobuynew-header-nav .over .n6{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -630px -76px !important;}
.yohobuynew-header-nav .act .n6{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -630px -37px;}
.yohobuynew-header-nav .n7{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -756px 0px;}
.yohobuynew-header-nav .n7:hover,.yohobuynew-header-nav .over .n7{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -756px -76px !important;}
.yohobuynew-header-nav .act .n7{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -756px -37px;}
.yohobuynew-header-nav #n1 .nav_sec{padding:5px 15px 10px 15px;}
.yohobuynew-header-nav #n1 .nav_sec li{width:92px;height:30px;line-height:30px;border-bottom:1px #e5e5e5 dashed;float:left;}
.yohobuynew-header-nav #n1 .nav_sec li a{width:74px;height:14px;line-height:14px;padding:5px 0px 5px 5px;border:1px #fff solid;text-indent:0px;font-family:Arial,helvetica,sans-serif;float:left;overflow:hidden;}
.yohobuynew-header-nav #n1 .nav_sec li a:hover{background:#f1f1f1;border:1px #ccc solid; text-decoration:none;color:#666666;}
.yohobuynew-header-nav #n1 .nav_sec .end{border:0px;}
.yohobuynew-header-nav #n2 .nav_sec{width:870px;padding:20px 0px;}
.yohobuynew-header-nav #n2 .list{width:153px;height:270px;padding:0px 0px 0px 20px;border-right:1px #e5e5e5 dashed; float:left;}
.yohobuynew-header-nav #n2 .end{border:0px;}
.yohobuynew-header-nav #n2 .list li{width:153px;border:0px;height:30px;line-height:30px;float:left;overflow:hidden;}
.yohobuynew-header-nav #n2 .list li a{width:135px;height:14px;line-height:14px;padding:5px 0px 5px 5px;border:1px #fff solid;text-indent:0px;font-family:Arial,helvetica,sans-serif;float:left;overflow:hidden;}
.yohobuynew-header-nav #n2 .list li a:hover{background:#f1f1f1;border:1px #ccc solid; text-decoration:none;color:#666666;}
.yohobuynew-header-nav #n2 .list li span{ vertical-align:middle;}
.yohobuynew-header-nav #n2 .list h3{width:153px;clear:both;height:30px;line-height:30px;font-size:12px;color:#000000;padding:0px 0px 0px 5px;}
.yohobuynew-header-nav #n2 .list h3 a{width:135px;height:14px;line-height:14px;padding:5px 0px 5px 5px;border:1px #fff solid;text-indent:0px;color:#cf0041;font-family:Arial,helvetica,sans-serif;float:left;overflow:hidden;}
.yohobuynew-header-nav #n2 .list h3 a:hover{background:#f1f1f1;border:1px #ccc solid; text-decoration:none;color:#cf0041}
.yohobuynew-header-nav .btn_allbrand{width:135px;height:27px;background:url(http://static.yohobuy.com/images/btn_allbrand.png) no-repeat;display:inline-block; position:absolute;bottom:20px;right:20px;}
.yohobuynew-header-nav #n3 .nav_sec{width:990px;height:300px;padding:0px;left:-252px;}
.yohobuynew-header-nav #n3 .list{width:106px;height:270px;padding:0px 2px 0px 8px;border-right:1px #e5e5e5 dashed;margin:20px 0px 0px 0px; float:left;}
.yohobuynew-header-nav #n3 .end{border:0px;}
.yohobuynew-header-nav #n3 .list li{width:105px;border:0px;height:30px;line-height:30px;float:left;overflow:hidden;}
.yohobuynew-header-nav #n3 .list li a{width:93px;height:14px;line-height:14px;padding:5px 0px 5px 5px;border:1px #fff solid;text-indent:0px;font-family:Arial,helvetica,sans-serif;float:left;overflow:hidden;}
.yohobuynew-header-nav #n3 .list li a:hover{background:#f1f1f1;border:1px #ccc solid; text-decoration:none;color:#666666;}
.yohobuynew-header-nav #n3 .list li span{ vertical-align:middle;}
.yohobuynew-header-nav #n3 .list h3{width:105px;clear:both;height:30px;line-height:30px;font-size:12px;color:#cf0041;}
.yohobuynew-header-nav #n3 .list h3 a{width:93px;height:14px;line-height:14px;padding:5px 0px 5px 5px;border:1px #fff solid;text-indent:0px;color:#cf0041;font-family:Arial,helvetica,sans-serif;float:left;overflow:hidden;}
.yohobuynew-header-nav #n3 .list h3 a:hover{background:#f1f1f1;border:1px #ccc solid; text-decoration:none;color:#cf0041}
.yohobuynew-header-nav #n3 .right{width:150px;height:280px;padding:10px;background:#1e1e1e;float:right;}
.yohobuynew-header-nav #n3 .right h3{height:22px;line-height:22px;font-size:12px;color:#fff;font-family:Arial,helvetica,sans-serif;padding:0px 10px;}
.yohobuynew-header-nav #n3 .right h3 a{width:auto;height:22px;line-height:22px;padding:0px;text-indent:0px;color:#fff;font-family:Arial,helvetica,sans-serif;float:left;overflow:hidden;}
.yohobuynew-header-nav #n3 .right ul{padding:10px 0px 0px 0px;zoom:1;}
.yohobuynew-header-nav #n3 .right ul:after{content: ""; display: block; clear: both; height: 0px;}
.yohobuynew-header-nav #n3 .right li{width:75px;height:45px;padding-top:5px;text-align:center;float:left;}
.yohobuynew-header-nav #n3 .right li a{ width:auto;height:auto;text-indent:0px;padding:0px;display:inline;float:none;}
.yohobuynew-header-nav #n4 .nav_sec{width:990px;height:300px;padding:0px;left:-378px;}
.yohobuynew-header-nav #n4 .list{width:106px;height:270px;padding:0px 2px 0px 8px;border-right:1px #e5e5e5 dashed;margin:20px 0px 0px 0px; float:left;}
.yohobuynew-header-nav #n4 .end{border:0px;}
.yohobuynew-header-nav #n4 .list li{width:105px;border:0px;height:30px;line-height:30px;float:left;overflow:hidden;}
.yohobuynew-header-nav #n4 .list li a{width:93px;height:14px;line-height:14px;padding:5px 0px 5px 5px;border:1px #fff solid;text-indent:0px;font-family:Arial,helvetica,sans-serif;float:left;overflow:hidden;}
.yohobuynew-header-nav #n4 .list li a:hover{background:#f1f1f1;border:1px #ccc solid; text-decoration:none;color:#666666;}
.yohobuynew-header-nav #n4 .list li span{ vertical-align:middle;}
.yohobuynew-header-nav #n4 .list h3{width:105px;clear:both;height:30px;line-height:30px;font-size:12px;color:#cf0041;}
.yohobuynew-header-nav #n4 .list h3 a{width:93px;height:14px;line-height:14px;padding:5px 0px 5px 5px;border:1px #fff solid;text-indent:0px;color:#cf0041;font-family:Arial,helvetica,sans-serif;float:left;overflow:hidden;}
.yohobuynew-header-nav #n4 .list h3 a:hover{background:#f1f1f1;border:1px #ccc solid; text-decoration:none;color:#cf0041}
.yohobuynew-header-nav #n4 .right{width:150px;height:280px;padding:10px;background:#1e1e1e;float:right;}
.yohobuynew-header-nav #n4 .right h3{height:22px;line-height:22px;font-size:12px;color:#fff;font-family:Arial,helvetica,sans-serif;padding:0px 10px;}
.yohobuynew-header-nav #n4 .right h3 a{width:auto;height:22px;line-height:22px;padding:0px;text-indent:0px;color:#fff;font-family:Arial,helvetica,sans-serif;float:left;overflow:hidden;}
.yohobuynew-header-nav #n4 .right ul{padding:10px 0px 0px 0px;zoom:1;}
.yohobuynew-header-nav #n4 .right ul:after{content: ""; display: block; clear: both; height: 0px;}
.yohobuynew-header-nav #n4 .right li{width:75px;height:45px;padding-top:5px;text-align:center;float:left;}
.yohobuynew-header-nav #n4 .right li a{ width:auto;height:auto;text-indent:0px;padding:0px;display:inline;float:none;}
.yohobuynew-header-nav .list .recommend a{color:#E8044F}
.yohobuynew-header-nav .list .recommend a:hover{color:#E8044F !important}
.yohobuynew-header-nav .list .parent{padding:5px 0px;height:22px;line-height:22px;font-size:12px;font-weight:bold;}
.yohobuynew-header-nav .list .parent a{color:#cf0041;font-family:Arial,helvetica,sans-serif;}
.yohobuynew-header-nav .list .parent a:hover{color:#cf0041 !important}
/*990*/
.body990 .yohobuynew-header{width:990px;}
.body990 .yohobuynew-header .right{width:750px;}
.body990 .yohobuynew-header-nav .inner{width:990px;}
.body990 .yohobuynew-topwrap{width:988px;}
.body990 .yohobuynew-index-trend{width:990px;}
.body990 .yohobuynew-index-trend .main{width:808px;padding:0px 0px 0px 2px;overflow:hidden;}
.body990 .yohobuynew-index-trend .main li{width:198px;}
.body990 .yohobuynew-index-brands{width:990px;}
.body990 .yohobuynew-index-brands .con{width:910px;padding:0px 5px;}
.body990 .yohobuynew-index-container{width:990px;}
.body990 .yohobuynew-index-container .con-mid{width:590px;}
.body990 .yohobuynew-index-container .con-mid .main li{width:33.3%;}
.body990 .yohobuynew-index-outlet .title{width:990px;}
.body990 .yohobuynew-index-outlet .main{width:990px;}
.body990 .yohobuynew-index-outlet .main li {width:12.5%;_width:12.4%;}
.body990 .yohobuynew-index-outlet p{width:990px;}
.body990 .yohobuynew-helpinfo{min-width:990px;}
.body990 .yohobuynew-helpinfo ul {width:990px;}
.body990 .brandbanner{width:990px;}
.body990 .liquidFix{width:990px;}
.body990 .brandbanner{width:990px;}
.body990 .yohobuynew-footer dl{width:960px;}
#mymsg{width:75px;text-align:left;position:relative;z-index:10001;}
#mymsg ol{text-align:center;height:22px;line-height:22px;}
#mymsg ol a{line-height:22px;}
#mymsg ul {display:none;width:210px;height:auto;padding:5px 15px;position:absolute;top:21px;left:0;border:1px #ccc solid;background:#f8f8f8;z-index:10003;}
#mymsg li{height:22px;line-height:22px;overflow:hidden;color:#333;}
.mymsg_a ol{width:73px;height:22px;border:1px #ccc solid;border-bottom:0px;background:#f8f8f8;position:absolute;top:-1px;left:0;z-index:10004;}
#mymsg .f_g{color:#999;}
#mymsg .f_e{color:#468fa2;}
#mymsg strong{color:#e8044f;}
/** 2012-11-05 **/
/*2012-12-14 by csj*/
.header-min-inner .logo_new{padding:30px 0px 0px 0px;height:50px;}
/*2012-12-21 by csj Merry Chirstmas*/
/*.yohobuynew-header-nav {background:url(http://static.yohobuy.com/images/v2/activity/header_nav_bg_chirst.png);}
.yohobuynew-header-nav .n1{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat 0px 0px;}
.yohobuynew-header-nav .n1:hover,.yohobuynew-header-nav .over .n1{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat 0px -76px !important;}
.yohobuynew-header-nav .act .n1{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat 0px -37px;}
.yohobuynew-header-nav .n2{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -126px 0px;}
.yohobuynew-header-nav .n2:hover,.yohobuynew-header-nav .over .n2{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -126px -76px !important;}
.yohobuynew-header-nav .act .n2{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -126px -37px;}
.yohobuynew-header-nav .n3{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -252px 0px;}
.yohobuynew-header-nav .n3:hover,.yohobuynew-header-nav .over .n3{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -252px -76px !important;}
.yohobuynew-header-nav .act .n3{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -252px -37px;}
.yohobuynew-header-nav .n4{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -378px 0px;}
.yohobuynew-header-nav .n4:hover,.yohobuynew-header-nav .over .n4{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -378px -76px !important;}
.yohobuynew-header-nav .act .n4{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -378px -37px;}
.yohobuynew-header-nav .n5{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -504px 0px;}
.yohobuynew-header-nav .n5:hover,.yohobuynew-header-nav .over .n5{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -504px -76px !important;}
.yohobuynew-header-nav .act .n5{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -504px -37px;}
.yohobuynew-header-nav .n6{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -630px 0px;}
.yohobuynew-header-nav .n6:hover,.yohobuynew-header-nav .over .n6{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -630px -76px !important;}
.yohobuynew-header-nav .act .n6{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -630px -37px;}
.yohobuynew-header-nav .n7{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -756px 0px;}
.yohobuynew-header-nav .n7:hover,.yohobuynew-header-nav .over .n7{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -756px -76px !important;}
.yohobuynew-header-nav .act .n7{background:url(http://static.yohobuy.com/images/v2/common/header_nav_banner_v2.png) no-repeat -756px -37px;}
.index-container .index-left{height:622px;}*/
/*add by only at 20130116*/
.clearfix:after {
content: ".";
display: block;
height: 0;
visibility: hidden;
overflow:hidden;
clear: both;
}
.clearfix {zoom: 1;} /* IE < 8 */
.yohobuynew-header .header_app_down{
float:right;
padding:5px 5px 0 0;
position:relative;
/*z-index:9999;*/
}
.yohobuynew-header .header_app_down .icon_apple a{
display:block;
width:35px;
height:35px;
margin-left:5px;
background:url(http://static.yohobuy.com/images/v2/common/icon_app_download.jpg) no-repeat;
}
.yohobuynew-header .header_app_down .icon_apple .hover{
background:url(http://static.yohobuy.com/images/v2/common/icon_app_download.jpg) 35px 0;
}
.yohobuynew-header .header_app_down .icon_android a{
display:block;
width:35px;
height:35px;
margin-right:10px;
background:url(http://static.yohobuy.com/images/v2/common/icon_app_download.jpg) 0 -35px;
}
.yohobuynew-header .header_app_down .icon_android .hover{
background:url(http://static.yohobuy.com/images/v2/common/icon_app_download.jpg) 35px -35px;
}
.yohobuynew-header .header_app_down .app_layer{
z-index:100;
width:202px;
height:333px;
padding-top:0px;
line-height:12px;
position:absolute;
/*top:40px;*/
left:-75px;
display:none;
background:url(http://static.yohobuy.com/images/v2/common/app_down_bg24.png) no-repeat 0 15px;
_background:url(http://static.yohobuy.com/images/v2/common/app_down_bg8.png) no-repeat 0 15px;
}
.yohobuynew-header .header_app_down .layer_android{
left:-80px;
}
.yohobuynew-header .header_app_down .app_layer p.ptitle{
font-family:Microsoft Yahei;
font-size:14px;
line-height:14px;
width:194px;
text-align:center;
margin-top:40px;
}
.yohobuynew-header .header_app_down .app_layer div{
margin:30px 0 0 38px;
}
.yohobuynew-header .header_app_down .app_layer div img{
margin:25px 0 35px 15px;
}
.yohobuynew-header .header_app_down .app_layer div a img{
margin:10px auto;
}
.yohobuynew-helpinfo .footer_help_info{
width:1240px;
text-align:center;
margin:20px auto;
}
.yohobuynew-helpinfo .footer_help_info img{
margin-right:8px;
}
.yohobuynew-helpinfo .footer_help_info img.last{
margin-right:0px;
}
.body990 .yohobuynew-helpinfo .footer_help_info{
width:990px;
}
.body990 .yohobuynew-footer dl{
width:990px;
padding:0;
}
/*调整在990下分类下拉宽度超出的问题*/
.body990 .yohobuynew-header-nav #n2 .nav_sec{width:860px;}
.body990 .yohobuynew-header-nav #n2 .list{width:151px;}
.body990 .yohobuynew-header-nav #n3 .nav_sec{width:986px;}
.body990 .yohobuynew-header-nav #n3 div.list{width:105px;}
.body990 .yohobuynew-header-nav #n4 .nav_sec{width:986px;}
.body990 .yohobuynew-header-nav #n4 div.list{width:105px;}
/*调整在990下头部宽度不够的问题*/
.body990 .yohobuynew-header .logo{width:230px;}
.body990 .yohobuynew-header .right{width:760px;}
.body990 .yohobuynew-header .search{width:280px;}
.body990 .yohobuynew-header .search dt {width: 205px;}
.body990 .yohobuynew-header .input_search {width: 205px;}
.yohobuynew-header{
padding-top:0px;
_height:88px;
}
.yohobuynew-header .login{
background:none;
padding-right:0px;
}
.yohobuynew-header .login a{
padding:4px 0;
}
.yohobuynew-header .login .add_to_favorite a{
background:url(http://static.yohobuy.com/images/v2/common/icon_favorite8.png) no-repeat;
padding-left:23px;
padding-top:2px\0;
}
.yohobuynew-header .login .follow_us_weibo{background:none; width:65px; padding-right:0; _padding:0 0 0 9px;}
.yohobuynew-header .login .follow_us_weibo a{
padding:0;
}
.yohobuynew-header .follow_us_weibo .WB_follow_ex .status_followed .follow_text{
padding-top:0;
}
/*
.yohobuynew-header .login .follow_us_weibo a{
background:url(http://static.yohobuy.com/images/i_hz_sina.png) no-repeat;
padding-left:23px;
}*/
.yohobuynew-header-nav #n2 .list h3{
width:148px;
}
.yohobuynew-header-nav #n2 .list li{
width:148px;
}
.body990 .yohobuynew-header-nav #n2 .list h3{
width:146px;
}
.body990 .yohobuynew-header-nav #n2 .list li{
width:146px;
}
.yohobuynew-header-nav #n2 .nav_sec{
left:-126px;
}
/*返回顶部*/
.return_fixed_div{
width:1px;
height:1px;
position:fixed;
_position:absolute;
top:100%;
left:50%;
}
.return_fixed_div a{
display:block;
width:22px;
height:80px;
position:absolute;
margin-left:622px;/*1240*2+2*/
margin-top:-124px;
outline:none;
opacity:0;
filter:alpha(opacity=0);
}
.body990 .return_fixed_div a{
margin-left:497px;/*990*2+2*/
}
html{
_background-image:url(about:blank);
_background-attachment:fixed;
}
/*消息下拉框层级*/
.yohobuynew-header #mymsg{
/*z-index:10011;*/
}
/*通用弹出层层级*/
/*可能会引起其他问题*/
/*
div.ui-dialog{ z-index:20001 !important;}
div.ui-widget-overlay{z-index:20000 !important;}
*/
div.ui-widget-overlay{ background:#000; opacity:0.2;filter:Alpha(Opacity=50);}
.yohobuynew-header .mycart{
/*z-index:10001;*/
z-index:auto;
}
.yohobuynew-header-nav li{
z-index:10;
}
.yohobuynew-header .search dt{
z-index:auto;
}
.yohobuynew-header .mycart .over .btn_mycart{
z-index:101;
}
.yohobuynew-header .mycart-box{
z-index:100;
}
.yohobuynew-header .header_app_down{
z-index:20;
/*z-index:auto; 有问题*/
}
.return_fixed_div{
z-index:100;
}
/*page css*/
/*
.liquidFix{
width:1240px !important;
}
.body990 .liquidFix{
width:990px !important;
}
.liquidFix .index-container{
margin:0 !important;
}
*/