女装首页.html 52.8 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>YOHO有货</title>
<meta name="description" content="YOHO有货,中国最大的潮流购物网站,100%正品保证,支持货到付款。汇集了全球流行时尚商品,是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。" />
<meta name="keywords" content="Yoho有货,潮流,时尚,流行,购物,B2C,正品,购物网站,网上购物,货到付款,品牌服饰,男士护肤,黑框眼镜,匡威,板鞋,美特斯邦威,i.t,izzue,李宁,new balance,新百伦,lacoste,melissa,casio,卡西欧手表,舒雅,江南布衣,jasonwood,odm,AAAA,香港购物网站,日本潮流" />
<link href="http://static.yohobuy.com/css/common.css" rel="stylesheet" type="text/css" media="all" />
<link href="http://static.yohobuy.com/css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href="http://static.yohobuy.com/css/common_new.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="http://static.yohobuy.com/js/jquery.min.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/js/global.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/js/yoho_common_index.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/js/jqueryui/jquery-ui-1.8.7.custom.min.js"></script>
<link href="http://static.yohobuy.com/js/jqueryui/themes/ui-lightness/jquery-ui-1.8.7.custom.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>


  <!--页头开始-->
  <div class="yohobuynew-header">

    <div class="logo"><a href="http://www.yohobuy.com" title="YOHO!有货"><img src="http://static.yohobuy.com/images/logo_yohobuy_new.png" alt="YOHO!有货 www.yohobuy.com-全球年轻人流行商品购物平台" /></a></div>
    <div class="right">
      <dl class="login">

<script type="text/javascript">
<!--
$(function(){

$("#myyoho").hover(function(){
$(this).addClass("myyoho_a");
$(this).removeClass("myyoho_b");
$(this).find("ul").fadeIn ()
},
function(){
$(this).addClass("myyoho_b");
$(this).removeClass("myyoho_a");
$(this).find("ul").slideUp ("fast")
});
});


//消息
$(function(){
$("#mymsg").hover(function(){
$(this).addClass("mymsg_a");
$(this).find("ul").css('display', 'block');
},function(){
$(this).removeClass("mymsg_a");
$(this).find("ul").css('display', 'none');
});
$('#mymsgclose').click(function() {
$("#mymsg").removeClass("mymsg_a");
$('#mymsg ul').css('display', 'none');
});

});


//-->
</script>
        <dd>您好,<a href="#">妖艳的兰州拉</a> [ VIP银卡会员 ] <a href="#">退出</a></dd>
        <dd><a href="#">我的订单</a></dd>
        <dt>
          <div id="myyoho">
            <ol>
              <a href="#">个人中心</a>
            </ol>
            <ul>
              <li><a href="#">订单中心</a></li>
              <li><a href="#">潮拍晒物</a></li>
              <li><a href="#">优惠券</a></li>
            </ul>
          </div>
        </dt>
        <dt>
          <div id="mymsg">        
           <ol><a href="#">消息(1)</a></ol>
           <ul>
           <li><a href="#" class="f_e"><strong>2</strong> 个收藏商品降价咯!</a></li>
           <li>您没有新消息哦!</li>
           <li><a href="#" class="f_g">[查看全部消息]</a> <a href="javascript:void(0);" class="f_g" id="mymsgclose">[收起]</a></li>
           </ul>
          </div>
        </dt>
        <dd><a href="#">帮助中心</a></dd> 
      </dl>

<div class="clear"></div>

      <dl class="search">
        <dt>
          <input type="text" class="input_search" value="" />
                    
          <ul id="shelper" style="display:none;">
          <li class="fore1">
          <div class="fore1">手机</div>
          <div class="item2"><strong>手机</strong>分类中搜索</div>
          <div class="item3">
          <span>按网络:</span><a title="手机" href="javascript:void(0);">联通3G(WCDMA)</a><a title="手机" href="javascript:void(0);">电信3G(CDMA2000)</a><a title="手机" href="javascript:void(0);">更多&gt;&gt;</a>
          </div>
          <div class="item3">
          <span>按品牌:</span><a title="手机" href="javascript:void(0);">三星</a><a title="手机" href="javascript:void(0);">摩托罗拉</a><a title="手机" href="javascript:void(0);">苹果</a><a title="手机" href="javascript:void(0);">诺基亚</a><a title="手机" href="javascript:void(0);">联想</a><a title="手机" href="javascript:void(0);">更多&gt;&gt;</a>
          </div>
          <div class="item3"><span>按价格:</span><a title="手机" href="javascript:void(0);">1-499</a><a title="手机" href="javascript:void(0);">500-999</a><a title="手机" href="javascript:void(0);">1000-1999</a><a title="手机" href="javascript:void(0);">2000-2999</a><a title="手机" href="javascript:void(0);">更多&gt;&gt;</a>
          </div>
          <div class="item1"><strong>手机通讯</strong>分类中搜索</div>
          </li>
          <li><div>手表</div></li>
          <li><div>鼠标</div></li>
          <li><div>三星</div></li>
          <li><div>沙发</div></li>
          <li><div></div></li>
          <li><div>散热器</div></li>
          <li><div>双肩包</div></li>
          <li><div>书包</div></li>
          <li><div>收音机</div></li>
          <li class="close">关闭</li>
          </ul>
          
        </dt>
        <dd>
          <input type="button" class="btn_search" />
        </dd>        
      </dl>
  
<div class="mycart">      
<div id="cart" onmouseout="hideMenu('cart',999)" onmouseover="showMenu('cart',999)">
      <a href="#" class="btn_mycart">我的购物车<strong>(12)</strong></a>
      
      <div class="mycart-box" id="menu999"> 
      
      <div class="list">  
      <div class="li-t">   
      <a href="#"><img src="http://static.yohobuy.com/images/p_60_60_1.jpg" /></a>
      </div>
      <div class="li-m">
      <strong><a href="#">Outdo Zenith铆钉装饰休闲松糕鞋 黑</a></strong><br />
      颜色:黑 尺码:36码
      </div>
      <div class="li-b">
      <strong>¥2800 × 3</strong><br />
      <a href="#" class="a_e">删除</a>
      </div>
      </div>
      
      <div class="list">  
      <div class="li-t">   
      <a href="#"><img src="http://static.yohobuy.com/images/p_60_60_2.jpg" /></a>
      </div>
      <div class="li-m">
      <strong><a href="#">Outdo Zenith铆钉装饰休闲松糕鞋 黑</a></strong><br />
      颜色:黑 尺码:36码
      </div>
      <div class="li-b">
      <strong>¥2800 × 3</strong><br />
      <a href="#" class="a_e">删除</a>
      </div>
      </div>
      
      <div class="list">  
      <div class="li-t">   
      <a href="#" class="cartnew_mark_zeng"><span>赠品</span><img src="http://static.yohobuy.com/images/p_60_60_3.jpg" /></a>
      </div>
      <div class="li-m">
      <strong><a href="#">Outdo Zenith铆钉装饰休闲松糕鞋 黑</a></strong><br />
      颜色:黑 尺码:36码
      </div>
      <div class="li-b">
      <strong>¥2800 × 3</strong><br />
      <a href="#" class="a_e">删除</a>
      </div>
      </div>

      <div class="list">  
      <div class="li-t">   
      <a href="#" class="cartnew_mark_outlet"><span>OUTLET</span><img src="http://static.yohobuy.com/images/p_60_60_4.jpg" /></a>
      </div>
      <div class="li-m">
      <strong><a href="#">Outdo Zenith铆钉装饰休闲松糕鞋 黑</a></strong><br />
      颜色:黑 尺码:36码
      </div>
      <div class="li-b">
      <strong>¥2800 × 3</strong><br />
      <a href="#" class="a_e">删除</a>
      </div>
      </div>
      
<script type="text/javascript">
$(function(){
    $('#mycartmore').hide();
    $('.mycart_i_down').click(function() {
        $(this).toggleClass("mycart_i_up");
        $('#mycartmore').slideToggle(300);
        return false;
    });

})
</script>

      
      <dl>     
      <dt>活 动</dt>
      <dd><span class="mycart_i_down" title="更多"></span>
      <p><a href="#">满999送手机吊绳+U盘+100元现金券</a></p>
      <div id="mycartmore" style="display:none;">
      <p><a href="#">满999送手机吊绳+U盘+100元现金券</a></p>
      <p><a href="#">满999送手机吊绳+U盘+100元现金券</a></p>
      <p><a href="#">满999送手机吊绳+U盘+100元现金券</a></p>  
      </div>    
      </dd>
      </dl>
      
      <dl>     
      <dt>免运费</dt>
      <dd>全场商品满 <span class="f_rz">399</span> 免运费</dd>
      </dl>
      
      <div class="submit">
      <a href="#" class="btn_cash" title="去购物车结算"></a></span>
      </div>
      
      </div>
</div>       
</div>      
      
      
      <div class="pic"><img src="http://static.yohobuy.com/images/header_adv.png" /></div>

  
    </div>
  </div>
  
  
<div class="yohobuynew-header-nav">    
<div class="inner">
      <ul>

        <li id="n1" onmouseout="hideMenu('n1',1)" onmouseover="showMenu('n1',1)"><a href="#" class="n1">最新</a>
          <div class="nav_sec" id="menu1">
          <ul>
            <li><a href="#">MAN</a></li>
            <li class="end"><a href="#">WOMAN</a></li>
          </ul>
          </div>        
        
        </li>
        <li id="n2" onmouseout="hideMenu('n2',2)" onmouseover="showMenu('n2',2)"><a href="#" class="n2">品牌</a>
          <div class="nav_sec" id="menu2">
          <div class="list">
          <h3>A~E</h3>
          <ul>
            <li><a href="#">izzue</a><span class="i_new"></span></li>
            <li><a href="#">5cm</a></li>
            <li><a href="#">STAYREAL</a></li>
            <li><a href="#">Dickies</a></li>
            <li><a href="#">URSUS THE BEAR</a></li>
            <li><a href="#">木村井泓 MCJH&TWJ</a></li>
            <li><a href="#">九口山</a><span class="i_hot"></span></li>
            <li><a href="#">angs设计小学</a></li>
          </ul>
          </div>
          <div class="list">
          <h3>F~J</h3>
          <ul>
            <li><a href="#">JASONWOOD</a></li>
            <li><a href="#">K*facto.2y</a></li>
            <li><a href="#">LACOSTE</a></li>
            <li><a href="#">Ray-Ban</a><span class="i_new"></span></li>
            <li><a href="#">花笙记</a></li>
            <li><a href="#">HARDLYEVER'S</a></li>
            <li><a href="#">JOSIE CHEN</a></li>
          </ul>
          </div>
          <div class="list">
          <h3>K~M</h3>
          <ul>
            <li><a href="#">KOOMEE</a></li>
            <li><a href="#">Luxottica Group</a></li>
            <li><a href="#">Machi</a></li>
            <li><a href="#">Dickies</a></li>
            <li><a href="#">URSUS THE BEAR</a></li>
            <li><a href="#">MYGESMART</a></li>
            <li><a href="#">NIC IS COMING</a></li>
            <li><a href="#">NIKE</a></li>
          </ul>
          </div>
          <div class="list">
          <h3>N~R</h3>
          <ul>
            <li><a href="#">NEW ERA</a></li>
            <li><a href="#">oasso</a><span class="i_new"></span></li>
            <li><a href="#">Onitsuka Tiger</a><span class="i_hot"></span></li>
            <li><a href="#">OUTDOOR</a></li>
            <li><a href="#">Paul&Reed</a></li>
            <li><a href="#"></a></li>
            <li><a href="#">Pyromaniac</a></li>
          </ul>
          </div>
          <div class="list end">
          <h3>S~Z(0~9)</h3>
          <ul>
            <li><a href="#">Supremebeing</a></li>
            <li><a href="#">U HOME</a></li>
            <li><a href="#">吾笙</a><span class="i_new"></span></li>
            <li><a href="#">Volcom</a></li>
            <li><a href="#">YOHO! </a></li>
            <li><a href="#">ZERONE</a></li>
          </ul>
          </div>          
          
          <a href="#" class="btn_allbrand" title="查看所有品牌"></a>
          
           
          </div>  
        
        </li>
        <li id="n3" onmouseout="hideMenu('n3',3)" onmouseover="showMenu('n3',3)"><a href="#" class="n3">MAN</a>
          <div class="nav_sec" id="menu3">

          <div class="list">
          <h3><a href="#">上装</a></h3>
          <ul>
            <li><a href="#">T 恤</a></li>
            <li><a href="#">衬衫</a></li>
            <li><a href="#">大衣</a></li>
            <li><a href="#">背心/马甲</a></li>
            <li><a href="#">夹克</a></li>
            <li><a href="#">风衣</a></li>
            <li><a href="#">棉衣</a></li>
            <li><a href="#">皮衣</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">下装</a></h3>
          <ul>
            <li><a href="#">短裤</a></li>
            <li><a href="#">牛仔裤</a></li>
            <li><a href="#">休闲裤</a></li>
            <li><a href="#">打底裤</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">男包</a></h3>
          <ul>
            <li><a href="#">双肩包</a></li>
            <li><a href="#">单肩包</a></li>
            <li><a href="#">储物包</a></li>
            <li><a href="#">手拿包</a></li>
            <li><a href="#">钱包/卡套</a></li>
            <li><a href="#">旅行包</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">男鞋</a></h3>
          <ul>
            <li><a href="#">单鞋</a></li>
            <li><a href="#">靴子</a></li>
            <li><a href="#">休闲鞋</a></li>
            <li><a href="#">凉鞋/凉拖</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">配饰</a></h3>
          <ul>
            <li><a href="#">首饰</a></li>
            <li><a href="#">围巾/披肩/手套</a></li>
            <li><a href="#">眼镜/太阳镜<span class="i_new"></span></a></li>
            <li><a href="#">手表</a></li>
            <li><a href="#">帽子</a></li>
            <li><a href="#">服装配饰</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">化妆品</a></h3>
          <ul>
            <li><a href="#">彩妆<span class="i_new"></span></a></li>
            <li><a href="#">护理品</a></li>
            <li><a href="#">香水</a></li>
          </ul>
          </div>
          <div class="list end">
          <h3><a href="#">家居生活</a></h3>
          <ul>
            <li><a href="#">文具</a></li>
            <li><a href="#">生活用品</a></li>
            <li><a href="#">储物收纳</a></li>
            <li><a href="#">内衣/居家服</a></li>
            <li><a href="#">数码影音<span class="i_hot"></span></a></li>
          </ul>
          </div>

          <div class="right">
          <h3><a href="#">最新</a></h3>
          <h3><a href="#">OUTLET</a></h3>
          <h3>热门品牌:</h3>
          <ul>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
          </ul>
          
          </div>
          </div> 
        </li>
        <li id="n4" onmouseout="hideMenu('n4',4)" onmouseover="showMenu('n4',4)"><a href="#" class="n4">WOMAN</a>
          <div class="nav_sec" id="menu4">
 
 
          <div class="list">
          <h3><a href="#">上装</a></h3>
          <ul>
            <li><a href="#">T 恤</a></li>
            <li><a href="#">衬衫</a></li>
            <li><a href="#">大衣</a></li>
            <li><a href="#">背心/马甲</a></li>
            <li><a href="#">夹克</a></li>
            <li><a href="#">风衣</a></li>
            <li><a href="#">棉衣</a></li>
            <li><a href="#">皮衣</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">下装</a></h3>
          <ul>
            <li><a href="#">短裤</a></li>
            <li><a href="#">牛仔裤</a></li>
            <li><a href="#">休闲裤</a></li>
            <li><a href="#">打底裤</a></li>
          </ul>
           <h3><a href="#">裙装</a></h3>
          <ul>
            <li><a href="#">半身裙</a></li>
            <li><a href="#">连衣裙</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">女包</a></h3>
          <ul>
            <li><a href="#">双肩包</a></li>
            <li><a href="#">单肩包</a></li>
            <li><a href="#">储物包</a></li>
            <li><a href="#">手拿包</a></li>
            <li><a href="#">钱包/卡套</a></li>
            <li><a href="#">旅行包</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">女鞋</a></h3>
          <ul>
            <li><a href="#">单鞋</a></li>
            <li><a href="#">靴子</a></li>
            <li><a href="#">休闲鞋</a></li>
            <li><a href="#">凉鞋/凉拖</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">配饰</a></h3>
          <ul>
            <li><a href="#">首饰</a></li>
            <li><a href="#">围巾/披肩/手套</a></li>
            <li><a href="#">眼镜/太阳镜<span class="i_new"></span></a></a></li>
            <li><a href="#">手表</a></li>
            <li><a href="#">帽子</a></li>
            <li><a href="#">服装配饰</a></li>
          </ul>
          </div>
          <div class="list">
          <h3><a href="#">化妆品</a></h3>
          <ul>
            <li><a href="#">彩妆<span class="i_new"></span></a></a></li>
            <li><a href="#">护理品</a></li>
            <li><a href="#">香水</a></li>
          </ul>
          </div>
          <div class="list end">
          <h3><a href="#">家居生活</a></h3>
          <ul>
            <li><a href="#">文具</a></li>
            <li><a href="#">生活用品</a></li>
            <li><a href="#">储物收纳</a></li>
            <li><a href="#">内衣/居家服</a></li>
            <li><a href="#">数码影音<span class="i_hot"></span></a></li>
          </ul>
          </div>

          <div class="right">
          <h3><a href="#">最新</a></h3>
          <h3><a href="#">OUTLET</a></h3>
          <h3>热门品牌:</h3>
          <ul>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
            <li><a href="#"><img src="http://static.yohobuy.com/images/p_brand.jpg" /></a></li>
          </ul>
          
          </div>          
          </div>           
        </li>
        <li id="n5"><a href="#" class="n5">潮品型录</a></li>
        <li id="n6"><a href="#" class="n6">OUTLET</a></li>
        <li id="n7"><a href="#" class="n7">潮流专题</a></li>
      </ul>
      
       
</div>

      </div>   
  <!--页头结束--> 


  
  <!--页头推荐类别开始-->
  <div class="yohobuynew-topwrap">
    <ul>
      <li><a href="#">长袖衬衫</a></li>
      <li><a href="#">短袖T恤</a></li>
      <li><a href="#">牛仔裤</a></li>
      <li><a href="#">超短裙</a></li>
      <li><a href="#">休闲鞋</a></li>
      <li><a href="#">手表</a></li>
      <li><a href="#">拖鞋</a></li>
      <li class="end"><a href="#">内衣</a><span class="i_hot"></span></li>
    </ul>
  </div>
  <!--页头推荐类别结束-->

  
  
<div class="yohobuynew-index-focus">
<div class="pic">
<img src="http://static.yohobuy.com/images/f_p_1.jpg" />
</div>
<ul>
<li class="act"><a href="#"><img src="http://static.yohobuy.com/images/f_ps_1.jpg" /><span>zzue/5cm3折起</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/f_ps_2.jpg" /><span>zzue/5cm3折起</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/f_ps_3.jpg" /><span>zzue/5cm3折起</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/f_ps_4.jpg" /><span>zzue/5cm3折起</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/f_ps_5.jpg" /><span>zzue/5cm3折起</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/f_ps_6.jpg" /><span>zzue/5cm3折起</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/f_ps_7.jpg" /><span>zzue/5cm3折起</span></a></li>
</ul>
</div> 
  
<div class="yohobuynew-index-trend"> 
<div class="title">
<h2>潮牌搭配</h2>
<ul>
<li class="act"><a href="#">izzue</a></li>
<li><a href="#">YUZUKI.S</a></li>
<li><a href="#">K*facto.2y</a></li>
<li><a href="#">NICE CLAUP</a></li>
<li><a href="#">HOLYMOLY</a></li>
<li><a href="#">STAYREAL</a></li>
<li><a href="#">TEEN TEAM</a></li>
</ul>
</div>
<div class="main">


<ul>
<li onmouseover="document.getElementById('float1').style.display='block';" onmouseout="document.getElementById('float1').style.display='none';"><a href="#"><img src="http://static.yohobuy.com/images/pn_208_329_1.jpg" /></a>

<div class="floatbox" id="float1" style="display:none;">
<div class="floatboxinner">
<div class="floatboxtitle"></div>
<div class="floatboxmain">

<dl>
<dt><a href="#"><img src="http://static.yohobuy.com/images/ps1.jpg" /></a></dt>
<dd>
<strong><a href="#">Merry名字名字名字</a></strong><br />
<a href="#">Merry品牌品牌品牌</a><br />
<del>¥980.00</del> ¥980.00
</dd>
</dl>

<dl>
<dt><a href="#"><img src="http://static.yohobuy.com/images/ps2.jpg" /></a></dt>
<dd>
<strong><a href="#">Merry名字名字名字</a></strong><br />
<a href="#">Merry品牌品牌品牌</a><br />
<del>¥980.00</del> ¥980.00
</dd>
</dl>

<dl>
<dt><a href="#"><img src="http://static.yohobuy.com/images/ps3.jpg" /></a></dt>
<dd>
<strong><a href="#">Merry名字名字名字</a></strong><br />
<a href="#">Merry品牌品牌品牌</a><br />
<del>¥980.00</del> ¥980.00
</dd>
</dl>


</div>
</div>
</div>

</li>
<li><a href="#"><img src="http://static.yohobuy.com/images/pn_208_329_2.jpg" /></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/pn_208_329_3.jpg" /></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/pn_208_329_4.jpg" /></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/pn_208_329_5.jpg" /></a></li>
</ul>
</div>
</div>


<div class="yohobuynew-index-brands">
<div class="pre"><a href="#" class="btn_f_pre" title="向前"></a></div>
<div class="con">
<ul>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_1.jpg" /><span>TYAKASA</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_2.jpg" /><span>汉字测试</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_3.jpg" /><span>English组合</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_4.jpg" /><span>长长的文字测试</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_5.jpg" /><span>TYAKASA</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_6.jpg" /><span>汉字测试</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_7.jpg" /><span>English组合</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_8.jpg" /><span>长长的文字测试</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_9.jpg" /><span>TYAKASA</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_10.jpg" /><span>汉字测试</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_11.jpg" /><span>English组合</span></a></li>
<li><a href="#"><img src="http://static.yohobuy.com/images/p_80_50_12.jpg" /><span>长长的文字测试</span></a></li>
</ul>
</div>
<div class="next"><a href="#" class="btn_f_next" title="向后"></a></div>
</div>




<div class="yohobuynew-index-container">
  
    <div class="con-left">
    
        <div class="topic">
          <h2>TOPIC专题推荐</h2>
          <div class="main">
            <dl>
              <dt><a href="#"><img src="http://static.yohobuy.com/images/p_190_95_1.jpg" /></a></dt>
              <dd>
                <p><a href="#">EBLIS HUNGI人质拎包</a><br />
                  <span>02.12.2011</span><br />
                  这一季将传统而又严肃主题的中国元素注入设计概念 ...</p>
              </dd>
            </dl>
            <dl>
              <dt><a href="#"><img src="http://static.yohobuy.com/images/p_190_95_2.jpg" /></a></dt>
              <dd>
                <p><a href="#">可穿着情侣款Te正开售</a><br />
                  <span>02.12.2011</span><br />
                  来自上海,充满创意元素来自上海,充满创意元素的来自上海,充满创意元到... </p>
              </dd>
            </dl>
            <dl>
              <dt><a href="#"><img src="http://static.yohobuy.com/images/p_190_95_3.jpg" /></a></dt>
              <dd>
                <p><a href="#">PIP 春夏TEE打造潮流</a><br />
                  <span>02.12.2011</span><br />
                  台湾著名潮牌之一的OVERKILL登临有货,为潮流街区...</p>
              </dd>
            </dl>
          </div>
          <div class="more">
          <span class="pagenum"><a href="#" class="act">1</a><a href="#">2</a><a href="#">3</a></span><a href="#" class="a_more4">查看更多</a>          
          </div>
        </div>
       
    </div>
    
    <div class="con-mid">

          <div class="title" style="background:url(http://static.yohobuy.com/images/index_m_tt6.png) no-repeat #232323;">
            <h2>SHORT PANTS 流行短裤</h2>
            <span><a href="#">汉字测试</a> | <a href="#">English组合</a> | <a href="#">Holymoly</a> | <a href="#">MORE></a></span> </div>
          <div class="main">
            <ul>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_1.jpg" alt="商品名称" /></a></div>
                  
                  <div class="name"><a href="#">
                    <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
                    <strong>特价促销中仅限今日</strong>
                    </a></div>
                  <div class="price"><del>¥980.00</del><br />¥880.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_2.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English Name Test</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_3.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>汉字名称测试</h3>
                    </a></div>
                  <div class="price"><del>¥1980.00</del><br />¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_4.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English汉字组合测试</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_5.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_6.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English Name Test</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_7.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>汉字名称测试</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_8.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English汉字组合测试</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
            </ul>
          </div>
    </div>

    <div class="con-right">

<div class="adv"> <a href="#" target="_blank"></a><img src="http://static.yohobuy.com/images/adv_180_p1.jpg"></a> </div>
<div class="adv"> <a href="#" target="_blank"></a><img src="http://static.yohobuy.com/images/adv_180_p2.jpg"></a> </div> 


    </div>   
    

  </div>






  
  
 
 
<div class="yohobuynew-index-container">
  
    <div class="con-left">
    
<div class="adv"> <a href="http://www.yoho.cn" target="_blank"><img src="http://static.yohobuy.com/images/cn.jpg"></a> </div>
<div class="adv"> <a href="http://www.yohobuy.com/apps" target="_blank"><img src="http://static.yohobuy.com/images/yohoapp/app_new.jpg"></a>  </div> 
       
    </div>
    
    <div class="con-mid">

          <div class="title" style="background:url(http://static.yohobuy.com/images/index_m_tt7.png) no-repeat #232323;">
            <h2>SHORT PANTS 流行短裤</h2>
            <span><a href="#">汉字测试</a> | <a href="#">English组合</a> | <a href="#">Holymoly</a> | <a href="#">MORE></a></span> </div>
          <div class="main">
            <ul>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_9.jpg" alt="商品名称" /></a></div>
                  
                  <div class="name"><a href="#">
                    <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
                    <strong>特价促销中仅限今日</strong>
                    </a></div>
                  <div class="price"><del>¥980.00</del><br />¥880.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_10.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English Name Test</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_11.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>汉字名称测试</h3>
                    </a></div>
                  <div class="price"><del>¥1980.00</del><br />¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_12.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English汉字组合测试</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_13.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_14.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English Name Test</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_15.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>汉字名称测试</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_16.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English汉字组合测试</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
            </ul>
          </div>
    </div>

    <div class="con-right">

<div class="adv"> <a href="#" target="_blank"></a><img src="http://static.yohobuy.com/images/adv_180_p3.jpg"></a> </div>
<div class="adv"> <a href="#" target="_blank"></a><img src="http://static.yohobuy.com/images/adv_180_p4.jpg"></a> </div> 


    </div>   
    

  </div> 
 
 
 
 
  

<div class="yohobuynew-index-container">
  
    <div class="con-left">
    
<div class="adv"> <a href="http://weibo.com/yohoyouhuo" target="_blank"></a><img src="http://static.yohobuy.com/images/p_yoho_sinawb.png"></a> </div>
<div class="adv"> <a href="http://t.qq.com/yohobuy" target="_blank"></a><img src="http://static.yohobuy.com/images/p_yoho_qqwb.png"></a> </div> 
       
    </div>
    
    <div class="con-mid">

          <div class="title" style="background:url(http://static.yohobuy.com/images/index_m_tt8.png) no-repeat #232323;">
            <h2>SHORT PANTS 流行短裤</h2>
            <span><a href="#">汉字测试</a> | <a href="#">English组合</a> | <a href="#">Holymoly</a> | <a href="#">MORE></a></span> </div>
          <div class="main">
            <ul>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_17.jpg" alt="商品名称" /></a></div>
                  
                  <div class="name"><a href="#">
                    <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
                    <strong>特价促销中仅限今日</strong>
                    </a></div>
                  <div class="price"><del>¥980.00</del><br />¥880.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_18.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English Name Test</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_19.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>汉字名称测试</h3>
                    </a></div>
                  <div class="price"><del>¥1980.00</del><br />¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_20.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English汉字组合测试</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_21.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_22.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English Name Test</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_23.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>汉字名称测试</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
              <li>
                <div class="list">
                  <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/pn_180_240_24.jpg" alt="商品名称" /></a></div>
                  <div class="name"><a href="#">
                    <h3>English汉字组合测试</h3>
                    </a></div>
                  <div class="price">¥980.00</div>
                </div>
              </li>
            </ul>
          </div>
    </div>

    <div class="con-right">

<div class="adv"> <a href="#" target="_blank"></a><img src="http://static.yohobuy.com/images/adv_180_p5.jpg"></a> </div>
<div class="adv"> <a href="#" target="_blank"></a><img src="http://static.yohobuy.com/images/adv_180_p6.jpg"></a> </div> 


    </div>   
    

  </div>

  
  
  
  
  <div class="yohobuynew-index-outlet">    
<script type="text/javascript">	
			function showsub_b(id)
			{
				for (i = 0;i<2;i++)
				{
					document.getElementById("tab_b"+i).className = "";
					document.getElementById("sub_t"+i).style.display = "none";
					document.getElementById("sub_b"+i).style.display = "none";
				}
				document.getElementById("tab_b"+id).className = "act";
				document.getElementById("sub_t"+id).style.display = "";
				document.getElementById("sub_b"+id).style.display = "";
			}		
</script>  
   
    <div class="title">       
      <ul>
      <li id="tab_b0" class="act" onclick="showsub_b(0)">打折推荐</li>
      <li id="tab_b1" onclick="showsub_b(1)">OUTLET</li>
      </ul>
      <span id="sub_t0">打折商品分类:<a href="#">休闲鞋</a> | <a href="#">运动鞋</a> | <a href="#">皮鞋</a> | <a href="#">MORE ></a></span>
      <span id="sub_t1" style="display:none;">OUTLET分类:<a href="#">休闲鞋</a> | <a href="#">运动鞋</a> | <a href="#">皮鞋</a> | <a href="#">MORE ></a></span>
    </div>
    <div class="main">
     
<div id="sub_b0">      
      <ul>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_15.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_16.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>Yingwende</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_17.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>English汉字混排的</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_18.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_19.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>Yingwende</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_20.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>English汉字混排的</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_21.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_22.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>Yingwende</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_23.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>English汉字混排的</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_24.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
      </ul>
</div>


<div id="sub_b1" style="display:none;">    
      <ul>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_1.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_2.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>Yingwende</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_3.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>English汉字混排的</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_4.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_5.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>Yingwende</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_6.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>English汉字混排的</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_7.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_8.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>Yingwende</h3>
              </a></div>
            <div class="price"><del>¥1980.00</del> ¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_9.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>English汉字混排的</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
        <li>
          <div class="list">
            <div class="thumb"><a href="#" title="商品名称"><img src="http://static.yohobuy.com/images/p_100_100_10.jpg" alt="商品名称" /></a></div>
            <div class="name"><a href="#">
              <h3>黑色男款潮流拼接低帮休闲潮鞋</h3>
              </a></div>
            <div class="price">¥980.00</div>
          </div>
        </li>
      </ul>   
</div> 


   
    
</div>
 
    
    <p><a href="#"><img src="http://static.yohobuy.com/images/p_footer_banner.jpg" /></a></p>

  </div>
  

  
  <!--页尾帮助开始-->
  <div class="yohobuynew-helpinfo">
    
    <ul>
      <li class="begin">
        <dl class="li-1">
          <dt>新手指南</dt>
          <dd><a href="http://www.yohobuy.com/help/?category_id=7#help_b00reg" target="_blank">新用户注册</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=11" target="_blank">会员登录</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=10" target="_blank">订购流程</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=8" target="_blank">交易须知</a></dd>
        </dl>
      </li>
      <li>
        <dl class="li-2">
          <dt>付款方式</dt>
          <dd><a href="http://www.yohobuy.com/help/?category_id=43" target="_blank">支付方式</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=56" target="_blank">常见支付问题</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=46" target="_blank">如何办理退款</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=47" target="_blank">发票制度说明</a></dd>
        </dl>
      </li>
      <li>
        <dl class="li-3">
          <dt>配送方式</dt>
          <dd><a href="http://www.yohobuy.com/help/?category_id=48" target="_blank">配送时间及范围</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=50" target="_blank">订单的拆分</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=51" target="_blank">商品验收与签收</a></dd>
        </dl>
      </li>
      <li>
        <dl class="li-4">
          <dt>售后服务</dt>
          <dd><a href="http://www.yohobuy.com/help/?category_id=54" target="_blank">如何办理退换货</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=53" target="_blank">退换货政策</a></dd>
        </dl>
      </li>
      <li>
        <dl class="li-5">
          <dt>帮助中心</dt>
          <dd><a href="http://www.yohobuy.com/help/?category_id=57" target="_blank">找回密码</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=37" target="_blank">常见问题</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=58" target="_blank"><span>谨防诈骗</span></a></dd>
        </dl>
      </li>
      <li class="end">
        <dl class="li-6">
          <dt>优惠政策</dt>
          <dd><a href="http://www.yohobuy.com/help/?category_id=60" target="_blank">VIP会员制度说明</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=34" target="_blank">YOHO币</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=39" target="_blank">优惠券</a></dd>
          <dd><a href="http://www.yohobuy.com/help/?category_id=40" target="_blank">兑换礼品卡</a></dd>
        </dl>
      </li>
    </ul>
    
    <div class="clear"></div>
    <div class="help-footer"></div>
  </div>
  <!--页尾帮助结束--> 
  <!--页尾开始-->
  <div class="yohobuynew-footer">
    <dl>
      <dt><a href="http://www.yohobuy.com">返回首页</a> <a href="http://www.yohobuy.com/yohobuy.html">YOHO!有货</a> <a href="http://www.yohobuy.com/newpower.html">新力传媒</a> <a href="http://www.yohobuy.com/contact.html">联系我们</a> <a href="http://www.yohobuy.com/privacy.html">隐私条款</a> <a href="http://www.yohobuy.com/link.html">友情链接</a></dt>
      <dd> CopyRight © 2007-2016 南京新与力文化传播有限公司北京分公司 <a href="http://www.miit.gov.cn/" target="_blank">苏ICP备09011225号</a> NewPower Co. All Right </dd>
    </dl>
  </div>
  <!--页尾结束--> 

</body>
</html>