shop-list.html 159 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 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846
<!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>列表页</title>
	<script type="text/javascript">
		search_ajaxUrl = 'http://www.nong12.com/tip.html?callback=jQuery18304425293356180191_1413859900213&key=a&_=1413859908376'
	</script>
	<script type="text/javascript" src="http://static.nong12.com/static/source/components/js/base/jquery-1.8.2.min.js"></script>
	<script type="text/javascript" src="http://static.nong12.com/static/source/components/js/base/sea.js"></script>
    <link rel="stylesheet" type="text/css" href="../newstyle/topmenu.css">
	<link rel="stylesheet" type="text/css" href="../newstyle/shop-list.css">
	<script type="text/javascript" src="../js/javascript/common/config.js"></script>

</head>

<body>

<!-- loading -->
<div id="s-page-loading"></div>
<!-- loading end-->	
<!-- header-->
<div class="pnr-top">
	<div class="nav"><div class="info clearfix"><em>欢迎您来到农丰网!</em><div class="islogin"><a href="https://passport.nong12.com/uc/login.aspx?ReturnUrl=http://www.nong12.com/" class="hover-color-green">登录</a> <a href="https://passport.nong12.com/regedit/regedit.aspx" class="hover-color-green">免费注册</a></div> <div class="im" onclick="javascript:IM.openWindow('农丰客服', '农丰客服', '0', '', '' , '1');$('#total').text(0);$('.noti.new-msg-icon').remove();"> <a class="h-user-msg" href="javascript:void(0)" id="notify"><div class="text" onclick="javascript:IM.openWindow('农丰客服', '农丰客服', '0', '', '' , '1');$('#total').text(0);$('.noti.new-msg-icon').remove();">消息<b style="display:none"></b><span id="total">0</span></div></a><div class="im-msgs"><div class="on-msg">暂无更多消息</div><div class="im-list"><ul><li><a href="#">海州海参</a><span>29</span></li></ul> </div> </div> </div> </div> <div class="menu"><ul><li><a href="http://user.nong12.com/account/security.html">账户中心</a></li><li class="more"><a href="http://user.nong12.com/purchase/my_buy_center.html">我的农丰<b class="icon-direction"></b></a><div class="menu-list"><div class="menu-list-panel"><a href="http://user.nong12.com/purchase/order.html">已买到的商品</a><a href="http://user.nong12.com/purchase/favorite/product.html">我的收藏</a><a href="http://user.nong12.com/purchase/history.html">我的浏览</a></div></div></li><li class="more"><a href="http://shop.nong12.com/order/list.html">销售中心<b class="icon-direction"></b></a><div class="menu-list"><div class="menu-list-panel"><a href="http://shop.nong12.com/open/shop.html">我的店铺</a> <a href="http://shop.nong12.com/order/list.html">已卖出的商品</a><a href="http://shop.nong12.com/seller/product/list/onsale.html">出售中的商品</a><a href="http://shop.nong12.com/seller/product/showCategory.html">免费发布商品</a></div></div></li><li><a href="http://www.nong12.com/purchase_list.html">进货单<span class="color-green">(<span class="cart-num">0</span>)</span></a></li><li><a href="javascript:void(0);" onclick="IM.openWindow('农丰客服','农丰客服', '', '', '' , '1');">客服服务</a></li><li><a href="http://www.nong12.com/helpcenter.html">帮助中心</a></li></ul></div></div>
</div>
<div class="header">
    	<div class="logo-view">
	     <div class="responsive clearfix">
	         <a href="http://www.nong12.com" class="logo"><img src="http://static.nong12.com/static/newStatic/pnr/dist/images/logo.png" alt=""></a>
	         <div class="search-bar">
	             <form class="searchForm" action="http://www.nong12.com/search.html">
	                 <div class="cat">
	                     <p>产品 <span class="icon-more"></span></p>
	                     <ul>
	                     		                     		<li data-text="产品"><span>产品</span></li>
	                         	<li data-text="店铺" class="more"><span>店铺</span></li>
	                     		                         
	                     </ul>
	                 </div>
	                 <input maxlength="50" class="search-key" name="key" type="text" x-webkit-speech="" value="" placeholder="搜“四川”试试,保证多快好省" autocomplete="off"><div class="ep_qsearch" style="display:none;"></div>
	                 <input class="goods" type="hidden" name="goods">
	                 <button class="submitBtn">搜索</button>
	             </form>
	         </div>
            <a href="http://shop.nong12.com/seller/product/showCategory.html" class="submitBtn orangeBtn">免费发布商品</a>
	     </div>
	 </div>	<div class="menu">

        <div class="responsive">
            <div class="menu-nav clearfix">
                            <div class="multistage-menu selected">
                                <div class="nav-title">
						                        <h2 class="col-fff">全部商品分类</h2>
						                        <span class="icon-menu"></span>
                    </div>
                    <div class="menu-list">
                        <ul class="clearfix" id="menu-box">
                       																                        	<li class="">
                                <div class="menu-title clearfix">
                                    <span class="menu-icon ll">
                                        <img src="http://img4.nong12.com/images/cms/315d66c5e29a46a5b8f8680c04936bb3.png" isoriginal="true">
                                    </span>
                                    <div class="titles">
                                        <a target="_blank" href="javascript:void(0);" class="b-title">优品推荐</a>
                                        <p>
                                        		                                        		                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=8
	">叶菜类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=887
	">瓜果类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=9
	">花菜类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=181
	">猕猴桃</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=148
	">芒果</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=146
	">葡萄</a>
	                                            	                                            	<a target="_blank" href="javascript:void(0);">其他</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">苹果</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">梨 </a>
	                                                                                                                                </p>
                                    </div>
                                    <span class="icon-arrow"></span>
                                </div>
                                
                                <div class="menu-lists">
                                		                                			                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=8
	">叶菜类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=42
	">生菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=50
	">甘蓝</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=65
	">芹菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=66
	">白菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=67
	">油菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=68
	">菠菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=69
	">香菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=70
	">茼蒿</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=71
	">苦菊</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=72
	">蒜苗</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=73
	">蒜黄</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=74
	">韭菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=267
	">韭黄</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=887
	">瓜果类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=25
	">大黄瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=26
	">小黄瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=28
	">黄金瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=31
	">大冬瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=32
	">小冬瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=33
	">佛手瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=34
	">西葫芦</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=35
	">瓠子</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=48
	">丝瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=49
	">苦瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=52
	">南瓜</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=9
	">花菜类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=51
	">白菜花</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=103
	">西兰花</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=281
	">菜花</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=283
	">有机菜花</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=181
	">猕猴桃</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=532
	">黄心奇异果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=534
	">红心奇异果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=703
	">金心猕猴桃</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=148
	">芒果</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=520
	">澳芒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=522
	">大台</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=523
	">小台</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=525
	">大金龙</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=526
	">小金龙</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=527
	">苹果芒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=529
	">台牙</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=530
	">香芒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=531
	">小尖椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=697
	">普通芒果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1017
	">水仙芒</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=146
	">葡萄</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=492
	">青提</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=493
	">红提</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1015
	">黑提</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=501
	">巨峰</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1026
	">辽峰</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1034
	">藤稔</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=498
	">龙眼</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1041
	">极品香</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=502
	">玫瑰香</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=490
	">黑加仑</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="javascript:void(0);">其他</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=140
	">榴莲</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=180
	">牛油果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1012
	">加力果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=297
	">法香</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=40
	">牛蒡</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=83
	">上海青</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=94
	">茭白</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">苹果</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=312
	">国光</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=313
	">富士</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=316
	">黄元帅</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=321
	">红伽俐</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1018
	">青苹果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=323
	">红玫瑰</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=324
	">蛇果</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">梨 </a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=404
	">皇冠梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=395
	">红啤梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1025
	">青啤梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=396
	">丰水梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=401
	">香梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=403
	">大头梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=406
	">贵妃梨</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                                                                                        </div>
                            </li>
                                                        								                        	<li class="">
                                <div class="menu-title clearfix">
                                    <span class="menu-icon ll">
                                        <img src="http://img6.nong12.com/images/cms/c4a36136070f420789a91b74202703db.png" isoriginal="true">
                                    </span>
                                    <div class="titles">
                                        <a target="_blank" href="javascript:void(0);" class="b-title">当季热销</a>
                                        <p>
                                        		                                        		                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=14
	">根茎类</a>
	                                            	                                            	<a target="_blank" href="http://www.dili7.com/search.html?category=21
	">辣椒类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=13
	">菌菇类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=138
	">瓜果</a>
	                                            	                                            	<a target="_blank" href="  http://www.nong12.com/search.html?category=146
	">葡萄</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=150
	">桃子</a>
	                                            	                                            	<a target="_blank" href="javascript:void(0);">其他</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">橙子</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">山竹</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">芒果</a>
	                                                                                                                                </p>
                                    </div>
                                    <span class="icon-arrow"></span>
                                </div>
                                
                                <div class="menu-lists">
                                		                                			                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=14
	">根茎类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=14
	">胡萝卜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=15
	">青萝卜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=16
	">白萝卜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=17
	">红萝卜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=18
	">樱桃萝卜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=19
	">心里美</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=38
	"></a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=39
	"></a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=41
	">茴香球</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=54
	">甘薯</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=56
	">芋头</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=57
	">土豆</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=58
	">洋葱</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=59
	"></a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=61
	">蒜苔</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=62
	">韭苔</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=63
	">大葱</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=64
	">莴苣</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.dili7.com/search.html?category=21
	">辣椒类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=21
	">尖椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=22
	">圆椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=23
	">方椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=23
	">方椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=24
	">五彩椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=104
	">泡椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=105
	">麻椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=106
	">线椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=107
	">螺丝椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=107
	">螺丝椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=108
	">辣妹子</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=109
	">航椒</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=13
	">菌菇类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=44
	">香菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=45
	">杏鲍菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=46
	">金针菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=196
	">木耳</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=197
	">白玉菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=272
	">平菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=274
	">茶树菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=274
	">茶树菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=275
	">蟹味菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=277
	">口蘑菇</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=138
	">瓜果</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=151
	">香瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=152
	">哈密瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=158
	">西瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=166
	">白兰瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=167
	">甜王西瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=168
	">木瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=177
	">沙白瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=363
	">瓦丝蜜瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=364
	">网纹瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=366
	">玫红瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=369
	">状元瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=372
	">地雷西瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=373
	">红玉西瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=374
	">黑美人西瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=375
	">小凤西瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=376
	">麒麟西瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1019
	">蜜瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1050
	">甜瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=377
	">无籽西瓜</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="  http://www.nong12.com/search.html?category=146
	">葡萄</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=492
	">青提</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=493
	">红提</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1015
	">黑提</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=498
	">龙眼</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=501
	">巨峰</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1026
	">辽峰</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1034
	">藤稔</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1041
	">极品香</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=502
	">玫瑰香</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=490
	">黑加仑</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=150
	">桃子</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=428
	">鲜桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=430
	">蟠桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=431
	">毛桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=164
	">油桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=436
	">黄桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=434
	">水蜜桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=432
	">艳红桃</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="javascript:void(0);">其他</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=468
	">草莓</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=557
	">释迦</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=558
	">莲雾</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=560
	">芭乐</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=175
	">菠萝蜜</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">橙子</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=421
	">脐橙</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=425
	">鸭血橙</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=426
	">纽荷尔</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1038
	">埃及橙</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1039
	">手掰橙</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">山竹</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=469
	">麻竹</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=470
	">油竹</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=471
	">花竹</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=472
	">河沙竹</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">芒果</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=522
	">大台</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=523
	">小台</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=520
	">澳芒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=529
	">台牙</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=530
	">香芒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=525
	">大金龙</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=526
	">小金龙</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=527
	">苹果芒</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                                                                                        </div>
                            </li>
                                                        								                        	<li class="">
                                <div class="menu-title clearfix">
                                    <span class="menu-icon ll">
                                        <img src="http://img7.nong12.com/images/cms/bac4aeed673c41bb81cbc0c537481440.png" isoriginal="true">
                                    </span>
                                    <div class="titles">
                                        <a target="_blank" href="javascript:void(0);" class="b-title">时令蔬菜</a>
                                        <p>
                                        		                                        		                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=8
	">叶菜类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=13
	">菌菇类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=7
	">根茎类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=11
	">菜豆类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=887
	">瓜果类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=866
	">辣椒类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=9
	">花菜类</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=12
	">精品菜</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=10
	">茄果类</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">豆腐类</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">豆角类</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">白菜类</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">山药类</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">装饰用类</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">葡萄</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">菠萝</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">苹果</a>
	                                            	                                            	<a target="_blank" href="$category.content
	">其他</a>
	                                                                                                                                </p>
                                    </div>
                                    <span class="icon-arrow"></span>
                                </div>
                                
                                <div class="menu-lists">
                                		                                			                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=8
	">叶菜类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=42
	">生菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=50
	">甘蓝</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=65
	">芹菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=69
	">香菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=297
	">法香</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=71
	">苦菊</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=72
	">蒜苗</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=74
	">韭菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=267
	">韭黄</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=66
	">白菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=67
	">油菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=68
	">菠菜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=70
	">茼蒿</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=13
	">菌菇类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=44
	">香菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=45
	">杏鲍菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=46
	">金针菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=196
	">木耳</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=274
	">茶树菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=275
	">蟹味菇</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=277
	">口蘑菇</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=7
	">根茎类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=15
	">青萝卜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=16
	">白萝卜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=38
	"></a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=39
	"></a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=41
	">茴香球</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=43
	">花生</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=54
	">甘薯</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=56
	">芋头</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=57
	">土豆</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=58
	">洋葱</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=59
	"></a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=61
	">蒜苔</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=63
	">大葱</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=64
	">莴笋</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=14
	">胡萝卜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=55
	">山药</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=11
	">菜豆类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=75
	">架豆</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=77
	">芸豆</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=78
	">四季豆</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=79
	">豌豆</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=80
	">荷兰豆</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=81
	">扁豆</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=285
	">豆角</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=286
	">蚕豆</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=887
	">瓜果类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=233
	">黄瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=234
	">冬瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=33
	">佛手瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=34
	">西葫芦</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=48
	">丝瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=49
	">苦瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=52
	">南瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=53
	">玉米</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=265
	">吊瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=271
	">地瓜</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=866
	">辣椒类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=21
	">尖椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=22
	">圆椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=23
	">方椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=24
	">五彩椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=104
	">泡椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=106
	">线椒</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=108
	">辣妹子</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=109
	">杭椒</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=9
	">花菜类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=51
	">白菜花</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=103
	">西兰花</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=281
	">菜花</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=283
	">有机菜花</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=12
	">精品菜</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=40
	">牛蒡</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=83
	">上海青</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=87
	">芥蓝</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=94
	">茭白</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=10
	">茄果类</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=20
	">西红柿</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=29
	">长茄</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=30
	">圆茄</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">豆腐类</a></dt>
		                                        <dd>
		                                        			                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">豆角类</a></dt>
		                                        <dd>
		                                        			                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">白菜类</a></dt>
		                                        <dd>
		                                        			                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">山药类</a></dt>
		                                        <dd>
		                                        			                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">装饰用类</a></dt>
		                                        <dd>
		                                        			                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">葡萄</a></dt>
		                                        <dd>
		                                        			                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">菠萝</a></dt>
		                                        <dd>
		                                        			                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">苹果</a></dt>
		                                        <dd>
		                                        			                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="$category.content
	">其他</a></dt>
		                                        <dd>
		                                        			                                        </dd>
		                                    </dl>
	                                                                                                        </div>
                            </li>
                                                        								                        	<li>
                                <div class="menu-title clearfix">
                                    <span class="menu-icon ll">
                                        <img src="http://img9.nong12.com/images/cms/1fd3859045e44f478474c40043d52367.png" isoriginal="true">
                                    </span>
                                    <div class="titles">
                                        <a target="_blank" href="javascript:void(0);" class="b-title">新鲜水果</a>
                                        <p>
                                        		                                        		                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=153
	">梨 </a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=145
	">苹果</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=137
	">柑橘</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=174
	">菠萝</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=146
	">葡萄</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=150
	">桃子</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=138
	">瓜果</a>
	                                            	                                            	<a target="_blank" href="javascript:void(0);">其他</a>
	                                                                                                                                </p>
                                    </div>
                                    <span class="icon-arrow"></span>
                                </div>
                                
                                <div class="menu-lists">
                                		                                			                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=153
	">梨 </a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=394
	">啤梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=395
	">红啤梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=396
	">丰水梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=401
	">香梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=403
	">大头梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=404
	">皇冠梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=406
	">贵妃梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=408
	">雪花梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=409
	">水晶梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=415
	">苹果梨</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=145
	">苹果</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=312
	">国光</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=313
	">富士</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=315
	">花牛</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=316
	">黄元帅</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=317
	">冰糖果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=318
	">乔纳金</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=319
	">嘎啦果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=320
	">伏苹果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=321
	">红咖俐</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=322
	">青咖俐</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=323
	">红玫瑰</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=324
	">蛇果</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=137
	">柑橘</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=157
	">柑橘</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=334
	">蜜桔</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=335
	">桔子</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=337
	">叶桔</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=343
	">沙糖桔</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=344
	">金钱橘</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=345
	">丑柑</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=174
	">菠萝</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=328
	">进口菠萝</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=330
	">都乐菠萝</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=329
	">香水菠萝</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=331
	">凤梨</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=146
	">葡萄</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=490
	">黑加仑</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=491
	">美人指</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=492
	">青提</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=493
	">红提</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=150
	">桃子</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=428
	">鲜桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=164
	">油桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=431
	">毛桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=432
	">艳红桃</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=138
	">瓜果</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=151
	">香瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=152
	">哈密瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=158
	">西瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=168
	">木瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=177
	">沙白瓜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=360
	">西红宝</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="javascript:void(0);">其他</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=144
	">柠檬</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=163
	">柿子</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=140
	">榴莲</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=143
	">石榴</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=141
	">桂圆</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=147
	">火龙果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=146
	">葡萄</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=154
	">草莓</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=149
	">山竹</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=142
	">柚子</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=148
	">芒果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=165
	">香蕉</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=159
	">荔枝</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=174
	">菠萝</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=161
	">李子</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=302
	">杏类</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=181
	">猕猴桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=162
	">樱桃</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=173
	">橄榄</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=304
	">甘蔗</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=419
	">橙子</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=710
	">皇帝蕉</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=387
	">进口香蕉</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                                                                                        </div>
                            </li>
                                                        								                        	<li class="">
                                <div class="menu-title clearfix">
                                    <span class="menu-icon ll">
                                        <img src="http://img0.nong12.com/images/cms/f418bddc4f3f460f990c7c125a7c63df.png" isoriginal="true">
                                    </span>
                                    <div class="titles">
                                        <a target="_blank" href="javascript:void(0);" class="b-title">产地直供</a>
                                        <p>
                                        		                                        		                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=162
	">樱桃</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=149
	">山竹</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=174
	">菠萝</a>
	                                            	                                            	<a target="_blank" href="javascript:void(0);">其他</a>
	                                                                                                                                </p>
                                    </div>
                                    <span class="icon-arrow"></span>
                                </div>
                                
                                <div class="menu-lists">
                                		                                			                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=162
	">樱桃</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=473
	">红灯</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=176
	">车厘子</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=481
	">美早</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=149
	">山竹</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=470
	">油竹</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=471
	">花竹</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?category=174
	">菠萝</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=331
	">凤梨</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=330
	">都乐菠萝</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=329
	">香水菠萝</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="javascript:void(0);">其他</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=557
	">释迦</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=558
	">莲雾</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=560
	">芭乐</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=175
	">菠萝蜜</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=185
	">蛇皮果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=180
	">牛油果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1012
	">加力果</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=1031
	">火参果</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                                                                                        </div>
                            </li>
                                                        								                        	<li>
                                <div class="menu-title clearfix">
                                    <span class="menu-icon ll">
                                        <img src="http://img2.nong12.com/images/cms/636b79be0da44cc3bfb0ae0b6c964f8b.jpg" isoriginal="true">
                                    </span>
                                    <div class="titles">
                                        <a target="_blank" href="http://www.nong12.com/search.html?key=%E5%9C%9F%E8%B1%86
	" class="b-title">生猛海鲜123</a>
                                        <p>
                                        		                                        		                                            	<a target="_blank" href="http://www.nong12.com/search.html?key=%E8%A5%BF%E7%93%9C
	">爬爬虾</a>
	                                            	                                            	<a target="_blank" href="http://www.nong12.com/search.html?key=%E5%9C%9F%E8%B1%86
	">圣子皇</a>
	                                                                                                                                </p>
                                    </div>
                                    <span class="icon-arrow"></span>
                                </div>
                                
                                <div class="menu-lists">
                                		                                			                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?key=%E8%A5%BF%E7%93%9C
	">爬爬虾</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?key=%E8%99%BE
	">小爬爬虾</a>
				                                            				                                            				                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=629
	">中爬爬虾</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                    		                                    <dl>
		                                        <dt><a target="_blank" href="http://www.nong12.com/search.html?key=%E5%9C%9F%E8%B1%86
	">圣子皇</a></dt>
		                                        <dd>
		                                        				                                        					                                        							                                            	<a target="_blank" href="http://www.nong12.com/search.html?category=
	">大圣子皇</a>
				                                            				                                            		                                            		                                        </dd>
		                                    </dl>
	                                                                                                        </div>
                            </li>
                                                                                                         </ul>
                    </div>
                </div>
                <div class="navigation clearfix">
                    <ul id="navigationli">
	                		                				                				                    	<li><a target="_blank" href="http://www.nong12.com/articles/index.html?type=scdt" class="a-first">市场动态</a></li>
	                    		                    				                				                    	<li><a target="_blank" href="http://www.nong12.com/articles/index.html?type=hyzx" class="a-first">行业咨询</a></li>
	                    		                    		                    	                    </ul>
                </div>
                <div class="top-search rr" id="navRight">
                	<span id="navRightTitle">热门</span>
                	                	                    	<a target="_blank" href="http://www.nong12.com/search.html?category=146">葡萄</a>
                                        	<a target="_blank" href="http://www.nong12.com/search.html?category=151">香瓜</a>
                                        	<a target="_blank" href="http://www.nong12.com/search.html?category=162">樱桃</a>
                                        	<a target="_blank" href="http://www.nong12.com/search.html?category=159">荔枝</a>
                                        	<a target="_blank" href="http://www.nong12.com/search.html?category=150">桃子</a>
                                    </div>
            </div>
            
        </div>
    </div>
   </div>
<!-- header end -->

<!-- main-->
<div class="main auto-1200">
    <div class="clearfix">
    	<div class="bread-line ll">
            <a href="#" title="">首页</a>

            <div class="sea-wrap">
                <form>
                    <input class="sea-list" placeholder="关键字">
                    <button type="submit" class="sea-btn"></button>
                </form>
            </div>
        </div>
        <span class="data-num rr">共找到<b>355</b>条相关产品</span>
    </div>
	<!-- 条件筛选开始 -->
	<div class="conditions">
    	<dl class="clearfix">
    		<dt>商品分类:</dt>
    		<dd class="conditions-list">
    			<a href="#">仁果类</a>   			
    			<a href="#" class="on">核果类</a>   			
    			<a href="#">柑橘类</a>   			
    			<a href="#">瓜果类</a>    			
    			<a href="#">什果类</a>
    			<a href="#">坚果类</a>
				<a href="#">仁果类</a>   			
    			<a href="#">核果类</a>   			
    			<a href="#">柑橘类</a>   			
    			<a href="#">瓜果类</a>    			
    			<a href="#">什果类</a>
    			<a href="#">坚果类</a>  				
				<a href="#">仁果类</a>   			
    			<a href="#">核果类</a>   			
    			<a href="#">柑橘类</a>   			
    			<a href="#">瓜果类</a>    			
    			<a href="#">什果类</a>
    			<a href="#">坚果类</a> 
                <a href="#">瓜果类</a>             
                <a href="#">什果类</a>
                <a href="#">坚果类</a>
                <a href="#">仁果类</a>             
                <a href="#">核果类</a>             
                <a href="#">柑橘类</a>             
                <a href="#">瓜果类</a>             
                <a href="#">什果类</a>
                <a href="#">坚果类</a>                 
                <a href="#">仁果类</a>             
                <a href="#">核果类</a>             
                <a href="#">柑橘类</a>             
                <a href="#">瓜果类</a>             
                <a href="#">什果类</a>
                <a href="#">坚果类</a>   
                <span class="list-more">更多<i></i></span>
    		</dd>
    	</dl>
    	<dl class="clearfix">
    		<dt>商品产地:</dt>
    		<dd class="conditions-list">
    			<a href="#">四川</a>   			
    			<a href="#">黑龙江</a>   			
    			<a href="#">河南</a>   			
    			<a href="#">广东</a>    			
    			<a href="#">浙江</a>  
                <span class="list-more">更多<i></i></span> 			
    		</dd>
    	</dl>
    </div>
	<!-- 条件筛选结束-->
	
	<!-- 显示列表开始 -->
	<div class="show-list-area clearfix">
		
		<div class="another-side">
			<div class="hot-item">
				<h5>热销店铺</h5>
                <div class="hot-show">
				<ul>
					<li>
						<a href="#" class="goods-img">
							<img src="../upload/list-s.jpg">
						</a>
            <p>
              <span class="mini-im"></span>
              <span class="shopname">寿光</span>
            </p>
					</li>
					<li>
						<a href="#" class="goods-img">
							<img src="../upload/list-s.jpg">
						</a>
            <p>
              <span class="mini-im"></span>
              <span class="shopname">寿光</span>
            </p>
					</li>
				</ul>
                </div>
			</div>
		</div>
        <div class="ll">
            <!-- 排序价格筛选 -->
            <div class="filter-order clearfix">
                <div class="filter">
                    <div class="sort clearfix">
                        <a href="#" title="">综合排序</a>
                        <a href="#" title="" class="on">销量</a>
                        <a href="#" title="">价格</a>
                    </div>
                </div>

            </div>

            <!-- 列表显示 -->
            <div class="goods-list-box justify">
                <ul class="clearfix">
                  <li class="clearfix">
                    <div class="inner">
                        <div class="shop-img">
                            <a href="#"><img src="../upload/list-s.jpg"></a>
                            <span class="dili-im"><i></i>联系我们</span>
                        </div>
                        <dl class="shop-info">
                            <dt class="slk"><a href="#">老四川水果店</a></dt>
                            <dd class="stg">
                              <img src="../images/verifyimg/verify_realdest.png" alt=""/>
                              <img src="../images/verifyimg/verify_gold.png" alt=""/>
                              <img src="../images/verifyimg/verify_bad.png" alt=""/>
                            </dd>
                            <dd calss="ssr"><span>卖  家:</span><a href="#" class="a-link">老四川水果老四川水果老四川</a></dd>
                            <dd class="sct"><span>联 系 人:</span>李勇</dd>
                            <dd class="spe"><span>联系电话:</span>15888888888</dd>
                            <dd calss="scy"><span>经营类目:</span>水果</dd>
                            <dd class="svy"><span>经营品种:</span>李子,桃子,葡萄</dd>
                        </dl>
                        <p class="onlinetrade">
                          <span class="online">
                            <span>在线商品:</span>
                            20个
                          </span>
                          <span class="trade">
                            <span>交 易 量:</span>
                            2000笔
                          </span>
                        </p>
                    </div>
                  </li>
                  <li class="clearfix">
                    <div class="inner">
                        <div class="shop-img">
                            <a href="#"><img src="../upload/list-s.jpg"></a>
                            <span class="dili-im"><i></i>联系我们</span>
                        </div>
                        <dl class="shop-info">
                            <dt class="slk"><a href="#">老四川水果店</a></dt>
                            <dd class="stg">
                              <img src="../images/verifyimg/verify_realdest.png" alt=""/>
                              <img src="../images/verifyimg/verify_gold.png" alt=""/>
                              <img src="../images/verifyimg/verify_bad.png" alt=""/>
                            </dd>
                            <dd calss="ssr"><span>卖  家:</span><a href="#" class="a-link">老四川水果老四川水果老四川</a></dd>
                            <dd class="sct"><span>联 系 人:</span>李勇</dd>
                            <dd class="spe"><span>联系电话:</span>15888888888</dd>
                            <dd calss="scy"><span>经营类目:</span>水果</dd>
                            <dd class="svy"><span>经营品种:</span>李子,桃子,葡萄</dd>
                        </dl>
                        <p class="onlinetrade">
                          <span class="online">
                            <span>在线商品:</span>
                            20个
                          </span>
                          <span class="trade">
                            <span>交 易 量:</span>
                            2000笔
                          </span>
                        </p>
                    </div>
                  </li>
                  <li class="justify-tags"></li>
                  <li class="justify-tags"></li>
                </ul>
            </div>
            <div class="page">
                <a href="#" class="prev">上一页</a><a href="#">1</a><b>2</b><a href="#">3</a><a href="#">4</a><a href="#">5</a><span>...</span><a href="#">30</a><a href="#" class="next">下一页</a>
            </div>
        </div>
	</div>
	<!-- 显示列表结束 -->

	<!-- 搜索空返回 开始 -->
  <div class="empty">
    <div class="empty-body">
      <img src="../images/baby-dili.png" alt="">
      <div class="empty-words">
				  <span>抱歉,</span>
          没有找到与 “地皮错” 相关的商品
				<i></i>
				<em></em>
				<b></b>
			</div>
    </div>
  </div>
	<!-- 搜索空返回 结束 -->

	<!-- 空返回推荐 开始 -->
  <div class="hotlists">
    <h2 class="hothead">店铺推荐</h2>
    <div class="hotbody">
      <ul class="hotul clearfix">
        <li>
          <a href="#"><img src="../upload/img-1-7.png" alt="" class="hotshop"/></a>
          <p><a href="#">成都果业集团</a></p>
          <p><span class="dili-im"><i></i>联系我们</span></p>
          <p>
            <span>交 易 量:</span>
            231笔
          </p>
          <p>
            <span>在售商品:</span>
            300件
          </p>
        </li>
        <li>
          <a href="#"><img src="../upload/img-1-7.png" alt="" class="hotshop"/></a>
          <p><a href="#">成都果业集团</a></p>
          <p><span class="dili-im"><i></i>联系我们</span></p>
          <p>
            <span>交 易 量:</span>
            231笔
          </p>
          <p>
            <span>在售商品:</span>
            300件
          </p>
        </li>
        <li>
          <a href="#"><img src="../upload/img-1-7.png" alt="" class="hotshop"/></a>
          <p><a href="#">成都果业集团</a></p>
          <p><span class="dili-im"><i></i>联系我们</span></p>
          <p>
            <span>交 易 量:</span>
            231笔
          </p>
          <p>
            <span>在售商品:</span>
            300件
          </p>
        </li>
        <li>
          <a href="#"><img src="../upload/img-1-7.png" alt="" class="hotshop"/></a>
          <p><a href="#">成都果业集团</a></p>
          <p><span class="dili-im"><i></i>联系我们</span></p>
          <p>
            <span>交 易 量:</span>
            231笔
          </p>
          <p>
            <span>在售商品:</span>
            300件
          </p>
        </li>
      </ul>
    </div>
  </div>
	<!-- 空返回推荐 开始 -->
</div>
<!-- main end -->
<script type="text/javascript">
	
    var product_ajax = '../price.json?'; //获取数据路径设置
	seajs.use([ '../js/javascript/common/common.js',
	'../js/javascript/header/header.js', 
	'../js/javascript/uibar/uibar.js',
	'../js/javascript/list/new-list.js']);
	
</script>
<!-- footer-->
<div class="footer">
    <div class="bg-F9">
        <div class="footer-view clearfix">
            <div class="left">
                <ul>
                    <li>
                        <span class="icon-we"></span>
                        <p>关于我们</p>
                        <div class="f-list">
                            <a href="#">关于地利</a>
                            <a href="#">诚聘英才</a>
                            <a href="#">联系我们</a>
                            <a href="#">地利服务</a>
                        </div>
                    </li>
                    <li>
                        <span class="icon-aftersales"></span>
                        <p>售后服务</p>
                        <div class="f-list">
                            <a href="#">纠纷处理</a>
                            <a href="#">退款流程</a>
                            <a href="#">退款政策</a>
                        </div>
                    </li>
                    <li>
                        <span class="icon-shopping"></span>
                        <p>购物指南</p>
                        <div class="f-list">
                            <a href="#">交易规则</a>
                            <a href="#">购物流程</a>
                            <a href="#">订单结算</a>
                            <a href="#">支付方式</a>
                        </div>
                    </li>
                    <li>
                        <span class="icon-identity"></span>
                        <p>身份认证</p>
                        <div class="f-list">
                            <a href="#">邮箱验证</a>
                            <a href="#">企业验证</a>
                            <a href="#">实名认证</a>
                            <a href="#">密码找回</a>
                        </div>
                    </li>
                    <li>
                        <span class="icon-novice"></span>
                        <p>新手指南</p>
                        <div class="f-list">
                            <a href="#">个人注册</a>
                            <a href="#">企业注册</a>
                            <a href="#">会员须知</a>
                            <a href="#">会员登陆</a>
                        </div>
                    </li>
                </ul>
            </div>
            <div class="right">
                <span class="icon-shield"></span>
                <ul class="clearfix">
                    <li><span class="icon-f-phone"></span><p>服务热线:<span class="text-phone">400-888-6666</span></p></li>
                    <li><span class="icon-f-customerservice"></span><p>服务时间:<span class="text-time">上午9:00 - 晚上21:00</span></p></li>
                    <li><span class="icon-f-im"></span><p class="dili-im" href="#"><i></i>联系我们</p></li>
                </ul>
            </div>
        </div>
    </div>
    <div class="footer-end">
         <p>
             <a href="#">关于我们</a> |
             <a href="#">联系我们</a> |
             <a href="#">人才招聘</a> |
             <a href="#">地利服务</a> |
             <a href="#">帮助中心</a>
         </p>
        <p class="col-999"> Copyright © 2013-2014 nong12.com,All Rights Reserved 陕ICP备14002958号</p>
        <p class="col-999">版权所有 地利网络农业有限公司</p>
    </div>
</div>
<!-- footer end -->

<!-- 迷你窗口开始  -->
<!-- <div class="hover-range" id="price-html">
	<div class="hover-frame">
        <div class="hover-content clearfix">
        </div>
    </div>
	<i></i>
	<em></em>
	<i class="shadow-arrow"></i>
</div> -->
<!-- 迷你窗口结束  -->

<!-- mini bar -->
<div class="mui-bar">
    <div class="soll-top">
        <div class="a-block">
            <div class="show-bar-text">
                <span class="icon-top"></span>
                <p>顶部</p>
            </div>
        </div>
    </div>

    <div class="bar-menu">
        <span class="icon-menu-more"></span>
        <p>隐藏</p>
    </div>
    <div class="receipt">
        <div class="show">
            <span class="icon-receipt"></span>
            <p>进货单</p>
            <i>99</i>
        </div>



        <div class="floatinglayer f-receipt">
            <div class="triangle"></div>
            

            <div class="hover-micat">
                <div class="micat-on clearfix"><i class="u-con-no"></i>进货单中还没有商品</div>
                <div class="til"><p>进货单</p></div>
                <ul>
                    <li> 
                        <a href="#">
                            <img class="img" src="../upload/img-1-2.png" width="40" height="40" />
                        </a>
                        <div class="cont">
                            <div class="cont-head">
                                <p><a href="#">口源兰州鲜百合150g肉厚香甜 出口级</a></p>
                                
                            </div>
                            <p class="shop-title">店铺:<a href="">成都聚合市场</a></p>
                            <p>
                                <span>3.5元/斤 x100</span>
                                <span class="price">999999元</span>
                            </p>
                            <p class="del"><span></span></p>
                        </div>
                    </li>
                    <li> 
                        <a href="#">
                            <img class="img" src="../upload/img-1-2.png" width="40" height="40" />
                        </a>
                        <div class="cont">
                            <div class="cont-head">
                                <p><a href="#">口源兰州鲜百合150g肉厚香甜 出口级</a></p>
                                
                            </div>
                            <p class="shop-title">店铺:<a href="">成都聚合市场</a></p>
                            <p>
                                <span>3.5元/斤 x100</span>
                                <span class="price">999999元</span>
                            </p>
                            <p class="del"><span></span></p>
                        </div>
                    </li>
                    <li> 
                        <a href="#">
                            <img class="img" src="../upload/img-1-2.png" width="40" height="40" />
                        </a>
                        <div class="cont">
                            <div class="cont-head">
                                <p><a href="#">口源兰州鲜百合150g肉厚香甜 出口级</a></p>
                                
                            </div>
                            <p class="shop-title">店铺:<a href="">成都聚合市场</a></p>
                            <p>
                                <span>3.5元/斤 x100</span>
                                <span class="price">999999元</span>
                            </p>
                            <p class="del"><span></span></p>
                        </div>
                    </li>
                    <li> 
                        <a href="#">
                            <img class="img" src="../upload/img-1-2.png" width="40" height="40" />
                        </a>
                        <div class="cont">
                            <div class="cont-head">
                                <p><a href="#">口源兰州鲜百合150g肉厚香甜 出口级</a></p>
                                
                            </div>
                            <p class="shop-title">店铺:<a href="">成都聚合市场</a></p>
                            <p>
                                <span>3.5元/斤 x100</span>
                                <span class="price">999999元</span>
                            </p>
                            <p class="del"><span></span></p>
                        </div>
                    </li>
                </ul>
                <div class="tab-xd clear">
                    <div class="tab-txt">
                        总计:
                        <span>¥7800.00</span>
                    </div>
                    <a href="#" class="btn-big-r">去结算</a>
                </div>
            </div>

        </div>
    </div>
    <div class="user">
        <ul class="clearfix">
            <li>
                <div class="a-block">
                    <div class="show-bar-text">
                        <a href="#">
                            <span class="icon-user"></span>
                            <p></p>
                        </a>
                    </div>
                </div>
                <div class="floatinglayer f-login">
                    <div class="triangle"></div>
                    
                   
                    <iframe frameborder="0" scrolling="no" class="login-frame" src="./login-frame.html"></iframe>
                    <div class="state-success">
                        <div class="state-head">
                            <img src="../images/baby-dili-3.png" alt="" />
                            <span>
                                <a href="#" class="a-link">陈舜羽</a>
                                <p>
                                    欢迎回到地利批发!
                                </p>
                            </span>
                        </div>
                        <ul>
                            <li class="order">
                                <i ></i>
                                <p>采购单</p>
                            </li>
                            <li class="quote">
                                <i></i>
                                <p>收到询价</p>
                            </li>
                            <li class="supply">
                                <i></i>
                                <p>我的供应</p>
                            </li>
                            <li class="purchase">
                                <i></i>
                                <p>我的求购</p>
                            </li>
                        </ul>
                    </div>
                </div>
            </li>
            <li>
                <div class="a-block">
                    <div class="show-bar-text">
                        <a href="#">
                            <span class="icon-collection"></span>
                            <p>收藏</p>
                        </a>
                    </div>
                </div>
                <div class="floatinglayer default-text">
                    <div class="triangle"></div>
                    <a href="#">我的收藏</a>
                </div>
            </li>
            <li>
                <div class="a-block">
                    <div class="show-bar-text">
                        <a href="#">
                            <span class="icon-history"></span>
                            <p>历史</p>
                        </a>
                    </div>
                </div>
                <div class="floatinglayer default-text">
                    <div class="triangle"></div>
                    <a href="#">浏览历史</a>
                </div>
            </li>
            <li>
                <div class="a-block">
                    <div class="show-bar-text">
                        <a href="#">
                            <span class="icon-client"></span>
                            <p>下载</p>
                        </a>
                    </div>
                </div>
                <div class="floatinglayer phone-bar">
                    <div class="triangle"></div>
                    
                    <div class="phone-bar-up">
                        <span class="icon-app-phone"></span>
                        <h5>地利批发</h5>
                        <h5>手机客户端</h5>
                    </div>
                    <div class="phone-bar-bottom">
                        <span class="icon-qrcode"></span>
                        <h5>扫描二维码 下载客户端</h5>
                        <a href="#"><span class="icon-android"></span></a>
                        <a href="#"><span class="icon-ios"></span></a>
                    </div>
                </div>
            </li>
            <li class="ui-im">
                <div class="a-block">
                    <div class="show-bar-text">
                        <a href="#">
                            <span class="icon-b-im"></span>
                            <p>消息</p>
                            <em></em>
                        </a>
                    </div>
                </div>
                <div class="floatinglayer default-text">
                    <div class="triangle"></div>
                    <a href="#">我的消息</a>
                </div>
            </li>
        </ul>
    </div>
</div>

</body>
</html>