图瀑首页new2.html
40.7 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>YOHO有货</title>
<meta name="description" content="YOHO有货,中国最大的潮流购物网站,100%正品保证,支持货到付款。汇集了全球流行时尚商品,是国内最大的原创文化商品平台,也是香港,台湾地区流行商品的集中地。同时包含日本、韩国等众多国外潮流品牌,带给您全新潮流购物体验。" />
<meta name="keywords" content="Yoho有货,潮流,时尚,流行,购物,B2C,正品,购物网站,网上购物,货到付款,品牌服饰,男士护肤,黑框眼镜,匡威,板鞋,美特斯邦威,i.t,izzue,李宁,new balance,新百伦,lacoste,melissa,casio,卡西欧手表,舒雅,江南布衣,jasonwood,odm,AAAA,香港购物网站,日本潮流" />
<link href="http://static.yohobuy.com/css/common.css" rel="stylesheet" type="text/css" media="all" />
<link href="http://static.yohobuy.com/css/common_new.css" rel="stylesheet" type="text/css" media="all" />
<link href="http://static.yohobuy.com/css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href="http://static.yohobuy.com/css/photogallery.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="http://static.yohobuy.com/js/global.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/js/jquery.min.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/js/jquery.lazyload.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/js/yoho_dialog.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/js/product/scrolltopcontrol.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/js/yoho_common_new.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/js/jqueryui/jquery-ui-1.8.7.custom.min.js"></script>
<link href="http://static.yohobuy.com/js/jqueryui/themes/ui-lightness/jquery-ui-1.8.7.custom.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<!--页头开始-->
<div class="header">
<div class="logo"><a href="http://buy.yoho.cn"><img src="http://static.yohobuy.com/images/logo_yohobuy.png" alt="YOHO!有货 buy.yoho.cn-全球年轻人流行商品购物平台" /></a></div>
<div class="right">
<dl class="login">
<script type="text/javascript">
<!--
$(function(){
$("#myyoho").hover(function(){
$(this).addClass("myyoho_a");
$(this).removeClass("myyoho_b");
$(this).find("ul").fadeIn ()
},
function(){
$(this).addClass("myyoho_b");
$(this).removeClass("myyoho_a");
$(this).find("ul").slideUp ("fast")
});
});
//-->
</script>
<dd>您好,<a href="#" class="a_rz">妖艳的兰州拉</a> [ VIP银卡会员 ] <a href="#">退出</a></dd>
<dd><a href="#">我的订单</a></dd>
<dt>
<div id="myyoho">
<ol>
<a href="#">个人中心</a>
</ol>
<ul>
<li><a href="#">订单中心</a></li>
<li><a href="#">潮拍晒物</a></li>
<li><a href="#">优惠券</a></li>
</ul>
</div>
</dt>
<dd><a href="http://union.yohobuy.com" target="_blank">有货联盟</a></dd>
<dd><a href="#">帮助中心</a></dd>
</dl>
<div class="clear"></div>
<dl class="search">
<dt>
<input type="text" class="input_search" value="春季新品" onfocus="if(this.value==this.defaultValue){this.value='';this.style.color='#333'}" onblur="if(this.value==''){this.value=this.defaultValue;this.style.color='#999'}" />
</dt>
<dd>
<input type="button" class="btn_search" />
</dd>
<dd class="keywords">热搜:<a href="#">冬季新款</a> <a href="#">打折促销</a> <a href="#">优惠商品</a></dd>
</dl>
<div class="tab"> <a href="#" class="tab_new" title="新品上架">122</a> <a href="#" class="tab_zt" title="潮流专题"> </a> <a href="javascript:void(0);" class="tab_brand" title="所有品牌"> </a> </div>
</div>
<div id="headerbrand">
<div class="list">
<h3>A</h3>
<ul>
<li><a href="#">A.P.C.</a></li>
<li><a href="#">ABAHOUSE</a></li>
<li><a href="#">Abahouse Devinette</a></li>
<li><a href="#">A BATHING APE</a></li>
<li><a href="#">Accessorize</a></li>
<li><a href="#">Adam et Rope'</a></li>
<li><a href="#" class="hot">adidas</a> <span class="i_hot"></span></li>
<li><a href="#">agete</a></li>
<li><a href="#">agnes b.</a></li>
<li><a href="#">AGOSTO SHOP</a></li>
<li><a href="#">AHCAHCUM.muchacha</a></li>
<li><a href="#">alcali</a></li>
<li><a href="#">alfredoBANNISTER</a></li>
<li><a href="#">alternative version WR</a></li>
<li><a href="#">AMERICAN RAG CIE</a></li>
<li><a href="#">And A</a></li>
<li><a href="#">Another Edition</a></li>
<li><a href="#">apart by lowrys</a></li>
</ul>
<h3>B</h3>
<ul>
<li><a href="#">BABYLONE</a></li>
<li><a href="#">Balcony</a></li>
<li><a href="#">Banner Barrett</a></li>
<li><a href="#">BASESTATION</a></li>
<li><a href="#">BEAMS MEN</a></li>
<li><a href="#">BEAMS T</a></li>
<li><a href="#">BEAMS WOMEN</a></li>
<li><a href="#">BENCH AT THE GREENE</a></li>
<li><a href="#">BIRKENSTOCK</a></li>
<li><a href="#">BLACKBARRETT by NEIL BARRETT</a></li>
<li><a href="#">bonjour records</a></li>
<li><a href="#">BOUNTY HUNTER</a></li>
<li><a href="#">Brown Bunny</a></li>
</ul>
</div>
<div class="list">
<h3>G</h3>
<ul>
<li><a href="#">GALLARDAGALANTE</a></li>
<li><a href="#">GDC</a></li>
<li><a href="#">gelato pique</a></li>
<li><a href="#">GLAICE</a></li>
<li><a href="#">gomme</a></li>
<li><a href="#">goocy</a></li>
<li><a href="#">GRACE CONTINENTAL</a></li>
<li><a href="#">grapevine by k3</a></li>
<li><a href="#">green label relaxing</a></li>
<li><a href="#">GREGORY STORE</a></li>
</ul>
<h3>H</h3>
<ul>
<li><a href="#" class="hot">H.L.N.A</a> <span class="i_hot"></span></li>
<li><a href="#">HARE</a></li>
<li><a href="#">Heather</a></li>
<li><a href="#">heliopole</a></li>
<li><a href="#">HYBAA</a></li>
<li><a href="#">HYSTERIC GLAMOUR</a></li>
<li><a href="#">HYSTERIC MINI</a></li>
</ul>
<h3>I</h3>
<ul>
<li><a href="#">Idea Seventh Sense</a></li>
<li><a href="#">IENA</a></li>
<li><a href="#">IRONY</a></li>
</ul>
<h3>J</h3>
<ul>
<li><a href="#">JAM HOME MADE</a></li>
<li><a href="#">JEANASIS</a></li>
<li><a href="#">J'attache organic</a></li>
<li><a href="#">Jewel Changes</a></li>
<li><a href="#">JILLSTUART</a></li>
<li><a href="#">JOEY HYSTERIC</a></li>
</ul>
</div>
<div class="list">
<h3>N</h3>
<ul>
<li><a href="#">n゜11</a></li>
<li><a href="#">n゜4</a></li>
<li><a href="#">nano・universe</a></li>
<li><a href="#">Ne-net</a></li>
<li><a href="#">NIXON</a></li>
<li><a href="#">NOJESS</a></li>
<li><a href="#">note et silence</a></li>
</ul>
<h3>O</h3>
<ul>
<li><a href="#">Odette e Odile</a></li>
<li><a href="#">OPAQUE</a></li>
<li><a href="#">Optitude</a></li>
<li><a href="#">override</a></li>
</ul>
<h3>P</h3>
<ul>
<li><a href="#">Paul Smith JEANS</a></li>
<li><a href="#">PETIT BATEAU</a></li>
<li><a href="#">PHAGGE</a></li>
<li><a href="#">PHENOMENON</a></li>
<li><a href="#">prideglide</a></li>
</ul>
<h3>Q</h3>
<ul>
<li><a href="#">Q</a></li>
<li><a href="#">QUNIEE</a></li>
</ul>
<h3>R</h3>
<ul>
<li><a href="#">R.NEWBOLD</a></li>
<li><a href="#">RAGEBLUE</a></li>
<li><a href="#">Ravijour</a></li>
<li><a href="#">realmadHECTIC</a></li>
<li><a href="#">REBECCA TAYLOR</a></li>
<li><a href="#">REPLAY</a></li>
</ul>
</div>
<div class="list">
<h3>G</h3>
<ul>
<li><a href="#">GALLARDAGALANTE</a></li>
<li><a href="#">GDC</a></li>
<li><a href="#">gelato pique</a></li>
<li><a href="#">GLAICE</a></li>
<li><a href="#">gomme</a></li>
<li><a href="#">goocy</a></li>
<li><a href="#">GRACE CONTINENTAL</a></li>
<li><a href="#">grapevine by k3</a></li>
<li><a href="#">green label relaxing</a></li>
<li><a href="#">GREGORY STORE</a></li>
</ul>
<h3>H</h3>
<ul>
<li><a href="#" class="hot">H.L.N.A</a> <span class="i_hot"></span></li>
<li><a href="#">HARE</a></li>
<li><a href="#">Heather</a></li>
<li><a href="#">heliopole</a></li>
<li><a href="#">HYBAA</a></li>
<li><a href="#">HYSTERIC GLAMOUR</a></li>
<li><a href="#">HYSTERIC MINI</a></li>
</ul>
<h3>I</h3>
<ul>
<li><a href="#">Idea Seventh Sense</a></li>
<li><a href="#">IENA</a></li>
<li><a href="#">IRONY</a></li>
</ul>
<h3>J</h3>
<ul>
<li><a href="#">JAM HOME MADE</a></li>
<li><a href="#">JEANASIS</a></li>
<li><a href="#">J'attache organic</a></li>
<li><a href="#">Jewel Changes</a></li>
<li><a href="#">JILLSTUART</a></li>
<li><a href="#">JOEY HYSTERIC</a></li>
</ul>
</div>
<div class="list">
<h3>N</h3>
<ul>
<li><a href="#">n゜11</a></li>
<li><a href="#">n゜4</a></li>
<li><a href="#">nano・universe</a></li>
<li><a href="#">Ne-net</a></li>
<li><a href="#">NIXON</a></li>
<li><a href="#">NOJESS</a></li>
<li><a href="#">note et silence</a></li>
</ul>
<h3>O</h3>
<ul>
<li><a href="#">Odette e Odile</a></li>
<li><a href="#">OPAQUE</a></li>
<li><a href="#">Optitude</a></li>
<li><a href="#">override</a></li>
</ul>
<h3>P</h3>
<ul>
<li><a href="#">Paul Smith JEANS</a></li>
<li><a href="#">PETIT BATEAU</a></li>
<li><a href="#">PHAGGE</a></li>
<li><a href="#">PHENOMENON</a></li>
<li><a href="#">prideglide</a></li>
</ul>
<h3>Q</h3>
<ul>
<li><a href="#">Q</a></li>
<li><a href="#">QUNIEE</a></li>
</ul>
<h3>R</h3>
<ul>
<li><a href="#">R.NEWBOLD</a></li>
<li><a href="#">RAGEBLUE</a></li>
<li><a href="#">Ravijour</a></li>
<li><a href="#">realmadHECTIC</a></li>
<li><a href="#">REBECCA TAYLOR</a></li>
<li><a href="#">REPLAY</a></li>
</ul>
</div>
<div class="list">
<h3>Y</h3>
<ul>
<li><a href="#">YLANG YLANG</a></li>
</ul>
<h3>Z</h3>
<ul>
<li><a href="#">ZICUE</a></li>
<li><a href="#">ZOZOBAGSHOES</a></li>
<li><a href="#">ZOZOEDGE</a></li>
<li><a href="#">ZOZOEPROZE</a></li>
<li><a href="#">ZOZOGOLF</a></li>
<li><a href="#">ZOZOGRANDH</a></li>
<li><a href="#" class="hot">ZOZOHOME</a> <span class="i_hot"></span></li>
<li><a href="#" class="hot">ZOZOMESSE</a> <span class="i_hot"></span></li>
<li><a href="#">ZOZOSPOT</a></li>
<li><a href="#">ZOZOVIANT</a></li>
<li><a href="#">ZUCCa</a></li>
</ul>
<h3>OTHER</h3>
<ul>
<li><a href="#">1LDK</a></li>
<li><a href="#">31 Sons de mode</a></li>
<li><a href="#">45R</a></li>
<li><a href="#">55DSL</a></li>
<li><a href="#">汉字测试</a></li>
<li><a href="#" class="hot">汉字测试</a> <span class="i_hot"></span></li>
<li><a href="#">中文English组合</a></li>
</ul>
<a href="#" title="查看品牌高级索引" class="btn_ckpp"></a> </div>
<p class="closelink"> <a href="#">[ 收起 ]</a> </p>
</div>
<div class="nav">
<ul>
<li><a href="#" class="n0">首页</a></li>
<li id="n1" onmouseout="hideMenu('n1',1)" onmouseover="showMenu('n1',1)"><a href="#" class="n1">上衣</a>
<div class="nav_sec" id="menu1">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
</li>
<li id="n2" onmouseout="hideMenu('n2',2)" onmouseover="showMenu('n2',2)"><a href="#" class="n2">外套</a>
<div class="nav_sec" id="menu2">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
</li>
<li id="n3" onmouseout="hideMenu('n3',3)" onmouseover="showMenu('n3',3)"><a href="#" class="n3">裤类</a>
<div class="nav_sec" id="menu3">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
</li>
<li id="n4" onmouseout="hideMenu('n4',4)" onmouseover="showMenu('n4',4)"><a href="#" class="n4">裙袜类</a>
<div class="nav_sec" id="menu4">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
</li>
<li id="n5" onmouseout="hideMenu('n5',5)" onmouseover="showMenu('n5',5)"><a href="#" class="n5">内衣/泳衣</a>
<div class="nav_sec" id="menu5">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
</li>
<li id="n6" onmouseout="hideMenu('n6',6)" onmouseover="showMenu('n6',6)"><a href="#" class="n6">鞋</a>
<div class="nav_sec" id="menu6">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
</li>
<li id="n7" onmouseout="hideMenu('n7',7)" onmouseover="showMenu('n7',7)"><a href="#" class="n7">包</a>
<div class="nav_sec" id="menu7">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
</li>
<li id="n8" onmouseout="hideMenu('n8',8)" onmouseover="showMenu('n8',8)"><a href="#" class="n8">配饰</a>
<div class="nav_sec" id="menu8">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
</li>
<li id="nn9" onmouseout="hideMenu('nn9',9)" onmouseover="showMenu('nn9',9)"><a href="#" class="n9">化妆品</a>
<div class="nav_sec" id="menu9">
<div class="nav_sec_left">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
<div class="nav_sec_right">
<h2>推荐品牌:</h2>
<ul>
<li><a href="#">DSMOSIS</a></li>
<li><a href="#">dodo</a></li>
<li><a href="#">凌志效应</a><span class="i_new"></span></li>
<li><a href="#">DEMETER</a></li>
<li><a href="#">glamourflage</a></li>
<li><a href="#">Chetti Rouge</a></li>
</ul>
<h2>促销活动:</h2>
<p> <a href="#">• DEMETER香水全场八折</a><br />
<a href="#">• 凌仕效应新品上架</a> </p>
</div>
</div>
</li>
<li id="n10" onmouseout="hideMenu('n10',10)" onmouseover="showMenu('n10',10)"><a href="#" class="n10">创意生活</a>
<div class="nav_sec" id="menu10">
<dl>
<dt><a href="#">二级大类</a></dt>
<dd><a href="#">分裤短裤</a><a href="#">休闲裤</a><a href="#">牛仔裤</a><a href="#">西裤</a><a href="#">运动裤</a><a href="#" class="end">打底裤</a></dd>
</dl>
<dl>
<dt><a href="#">上衣</a><span class="i_new"></span></dt>
<dd><a href="#">夹克</a><a href="#" class="end">衬衫</a></dd>
</dl>
<dl>
<dt><a href="#">羊毛衫</a></dt>
<dd><a href="#" class="end">拉链衫</a></dd>
</dl>
<dl>
<dt><a href="#">毛衣</a></dt>
<dd><a href="#">风衣</a><a href="#">毛衣裙</a><a href="#" class="end">西服</a></dd>
</dl>
<dl>
<dt><a href="#">运动装</a></dt>
<dd><a href="#">大衣</a><a href="#" class="end">户外</a><span class="i_new"></span></dd>
</dl>
<dl class="end">
<dt><a href="#">内衣</a></dt>
<dd><a href="#" class="end">塑身内衣</a></dd>
</dl>
</div>
</li>
<li id="n11" onmouseout="hideMenu('n11',11)" onmouseover="showMenu('n11',11)"><a href="#" class="n11">OUTLET</a>
<div class="nav_sec" id="menu11">
<div class="nav_outlet_nav">
<dl>
<dt>价格:</dt>
<dd> <a href="#">¥0~100</a> <a href="#">¥100~200</a> <a href="#">¥200~500</a> <a href="#">¥500~1000</a> <a href="#">¥1000 以上</a> </dd>
</dl>
<dl>
<dt>折扣:</dt>
<dd class="ar"> <a href="#">1~3 折</a> <a href="#">4~6 折</a> <a href="#">7~9 折</a> </dd>
</dl>
</div>
<div class="nav_outlet_main">
<h2><a href="#" class="i_more">MORE</a>热门品牌:</h2>
<ul>
<li><a href="#" class="hot">izzue</a><span class="i_new"></span></li>
<li><a href="#">EASTPAK</a></li>
<li><a href="#">K*facto.2y</a></li>
<li><a href="#">5cm</a></li>
<li><a href="#" class="hot">SANKUANZ</a><span class="i_hot"></span></li>
<li><a href="#">Life·After Life</a></li>
<li><a href="#">EASTPAK</a></li>
<li><a href="#">K*facto.2y</a></li>
<li><a href="#">5cm</a></li>
<li><a href="#">SANKUANZ</a></li>
<li><a href="#">Life·After Life</a></li>
</ul>
<h2>热门分类:</h2>
<p> <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> </p>
<p class="keywords"> 热门关键词:<a href="#">卫衣</a> <a href="#">T恤</a> <a href="#">休闲裤</a> <a href="#">双肩包</a>…… </p>
</div>
</div>
</li>
<li id="n12" class="act"><a href="#" class="n12">潮品型录</a></li>
</ul>
<div class="nav-mycart">
<div id="cart" onmouseout="hideMenu('cart',999)" onmouseover="showMenu('cart',999)"> <a href="#" class="btn_mycart"><span>我的购物车(33)</span></a>
<div class="nav-mycart-box" id="menu999">
<div class="list">
<div class="li-t"> <a href="#"><img src="http://static.yohobuy.com/images/p_60_60_1.jpg" /></a> </div>
<div class="li-m"> <strong><a href="#">Outdo Zenith铆钉装饰休闲松糕鞋 黑</a></strong><br />
颜色:黑 尺码:36码 </div>
<div class="li-b"> <strong>¥2800 × 3</strong><br />
<a href="#" class="a_e">删除</a> </div>
</div>
<div class="list">
<div class="li-t"> <a href="#"><img src="http://static.yohobuy.com/images/p_60_60_2.jpg" /></a> </div>
<div class="li-m"> <strong><a href="#">Outdo Zenith铆钉装饰休闲松糕鞋 黑</a></strong><br />
颜色:黑 尺码:36码 </div>
<div class="li-b"> <strong>¥2800 × 3</strong><br />
<a href="#" class="a_e">删除</a> </div>
</div>
<dl>
<dt>活 动</dt>
<dd>满999送手机吊绳+U盘+100元现金券</dd>
</dl>
<dl>
<dt>免运费</dt>
<dd>全场商品满 <span class="f_rz">399</span> 免运费</dd>
</dl>
<div class="submit"> <span class="btn_type6"><a href="#"><span class="font_14">去购物车结算</span></a></span> </div>
</div>
</div>
</div>
</div>
</div>
<!--页头结束-->
<div class="photogallery-banner" style="height:115px;background:url(http://static.yohobuy.com/images/photogallery_banner.png) no-repeat center #fff;">
<a target="_blank" href="http://www.yohobuy.com/gallery">潮品型录</a>
</div>
<script type="text/javascript">
//显示与隐藏
function showop(id,num){
var ids="#"+id;
if(num == 1){
$(ids).show();
}
else{
$(ids).hide();
}
}
</script>
<div class="photogallery-container">
<div id="loader"></div>
<div id="main" role="main">
<ul id="photocontainer">
<li>
<div class="thumb" onmouseover="showop('list001',1);" onmouseout="showop('list001',0);">
<div class="op" id="list001"> <a href="#" class="btn_op_zoom">放大</a><a href="#" class="btn_op_fav">收藏</a><a href="#" class="btn_op_love">喜欢</a> </div>
<a href="javascript:void(0);" onclick="openwin()"><img src="http://static.yohobuy.com/images/p_200_1.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb" onmouseover="showop('list002',1);" onmouseout="showop('list002',0);">
<div class="op" id="list002"> <a href="#" class="btn_op_zoom">放大</a><a href="#" class="btn_op_fav">收藏</a><a href="#" class="btn_op_love">喜欢</a> </div>
<a href="#"><img src="http://static.yohobuy.com/images/p_200_2.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_3.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_4.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_5.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_6.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_7.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_8.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_9.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_1.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_2.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_3.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_4.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_5.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_6.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_7.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_8.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
<li>
<div class="thumb"> <a href="#"><img src="http://static.yohobuy.com/images/p_200_9.jpg" /></a> </div>
<div class="num"> <span class="i_fav">12345</span><span class="i_love">12345</span> </div>
</li>
</ul>
</div>
<div class="clear"></div>
<div class="page"> 共300条结果,1/30页:<a href="#" class="page_pre">上一页</a><a href="#" class="page_home">首页</a><a href="#" class="act"><span>1</span></a><a href="#"><span>2</span></a><a href="#"><span>3</span></a><a href="#"><span>4</span></a><a href="#"><span>5</span></a>...<a href="#"><span>30</span></a><a href="#" class="page_next">下一页</a> </div>
</div>
<script src="http://static.yohobuy.com/js/jquery.wookmark.js"></script>
<script type="text/javascript">
var handler = null;
// Prepare layout options.
var options = {
autoResize: true, // This will auto-update the layout when the browser window is resized.
container: $('#main'), // Optional, used for some extra CSS styling
offset: 5, // Optional, the distance between grid items
itemWidth: 216 // Optional, the width of a grid item
};
/**
* When scrolled all the way to the bottom, add more tiles.
*/
function onScroll(event) {
// Check if we're within 100 pixels of the bottom edge of the broser window.
var closeToBottom = ($(window).scrollTop() + $(window).height() > $(document).height() - 100);
if(closeToBottom) {
// Get the first then items from the grid, clone them, and add them to the bottom of the grid.
var items = $('#photocontainer li');
var firstTen = items.slice(0, 10);
$('#photocontainer').append(firstTen.clone());
// Clear our previous layout handler.
if(handler) handler.wookmarkClear();
// Create a new layout handler.
handler = $('#photocontainer li');
handler.wookmark(options);
}
};
$(document).ready(new function() {
// Capture scroll event.
//$(document).bind('scroll', onScroll);
$(window).bind('scroll', onScroll);
// Call the layout function.
handler = $('#photocontainer li');
handler.wookmark(options);
});
</script>
<div id="dialogid" style="display:none;">
<div class="photogallery-box">
<div class="pre"> <a href="#" class="btn_pre" title="向前"></a> </div>
<div class="photobox">
<div class="pic">
<div class="jTagContainer">
<div class="jTagArea" style="background: url(http://static.yohobuy.com/images/p_450_640_1.jpg) no-repeat; width: 450px; height: 640px;">
<div class="jTagOverlay">
<div onmouseout="taglist(1,0)" onmouseover="taglist(1,1)" style="width: 230px; height: 250px; top: 130px; left: 100px;" id="tag1" class="jTagTag">
<div style="width: 100%; height: 100%;"><a class="num" href="#">1</a></div>
</div>
<div onmouseout="taglist(2,0)" onmouseover="taglist(2,1)" style="width: 50px; height: 200px; top: 160px; left: 190px;" id="tag2" class="jTagTag">
<div style="width: 100%; height: 100%;"><a class="num" href="#">2</a></div>
</div>
<div onmouseout="taglist(3,0)" onmouseover="taglist(3,1)" style="width: 180px; height: 220px; top: 410px; left: 100px;" id="tag3" class="jTagTag">
<div style="width: 100%; height: 100%;"><a class="num" href="#">3</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="info"> <span>http://www.yohobuy.com</span>
<h2>PHOTO GALLERY!</h2>
<p>2012.12.12 23:56</p>
</div>
</div>
<div class="photoright">
<div class="photoop">
<div class="li-1"> <a href="#" class="btn_love">喜欢</a> </div>
<div class="li-2"> <a href="#" class="btn_fav">收藏</a> </div>
<div class="li-3 act"> <a href="#" class="btn_share">分享</a> </div>
<div class="dialogclose"> <a href="javascript:void(0);" title="关闭" class="btn_close">关闭</a> </div>
</div>
<div class="share"> <a class="stico_tsina" title="分享到新浪" onclick="return share_to('tsina');"></a> <a class="stico_kaixin001" title="分享到开心网" onclick="return share_to('kaixin001');"></a> <a class="stico_renren" title="分享到人人网" onclick="return share_to('renren');"></a> <a class="stico_douban" title="分享到豆瓣" onclick="return share_to('douban');"></a> <a class="stico_tqq" title="分享到腾讯微博" onclick="return share_to('tqq');"></a> <a class="stico_yoyo" title="分享到YOHO!" onclick="return share_to('yohocn');"></a> </div>
<div class="photolist">
<ul>
<li>
<div class="list" id="tag_list_1">
<div class="num">1</div>
<div class="thumb"><a href="#"><img src="http://static.yohobuy.com/images/p_100_100_1.jpg" /></a></div>
<div class="txt">
<div class="name"><a href="#">
<h3>004 SLOGAN TEE 系列外套</h3>
</a></div>
<div class="price"><del>¥1980.00</del> ¥980.00</div>
<div class="stat"><a href="#" class="btn_view_s" title="查看详情"></a></div>
</div>
</div>
</li>
<li>
<div class="list" id="tag_list_2">
<div class="num">2</div>
<div class="thumb"><a href="#"><img src="http://static.yohobuy.com/images/p_100_100_2.jpg" /></a></div>
<div class="txt">
<div class="name"><a href="#">
<h3>004 SLOGAN TEE 系列外套</h3>
</a></div>
<div class="price"><del>¥1980.00</del> ¥980.00</div>
<div class="stat"><a href="#" class="btn_sellout_s" title="已售罄"></a></div>
</div>
</div>
</li>
<li>
<div class="list" id="tag_list_3">
<div class="num">3</div>
<div class="thumb"><a href="#"><img src="http://static.yohobuy.com/images/p_100_100_3.jpg" /></a></div>
<div class="txt">
<div class="name"><a href="#">
<h3>004 SLOGAN TEE 系列外套</h3>
</a></div>
<div class="price"><del>¥1980.00</del> ¥980.00</div>
<div class="stat"><a href="#" class="btn_view_s" title="查看详情"></a></div>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="next"> <a href="#" class="btn_next" title="向后"></a> </div>
</div>
</div>
<script type="text/javascript">
function openwin(){
dialog("我的标题","dialogid","903px","auto","id");
}
function taglist(id,num){
var ids="#tag_list_"+id;
if(num == 1){
$(ids).addClass("list-over");
}
else{
$(ids).removeClass("list-over");
}
}
</script>
</body>
</html>