-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
2045 lines (1887 loc) · 59.4 KB
/
Copy pathsearch.html
File metadata and controls
2045 lines (1887 loc) · 59.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>芬迪_男装,名品【品牌 价格 排行榜 正品行货】-银泰网</title>
<link rel="stylesheet" type="text/css" href="css/base.css"/>
<link rel="stylesheet" type="text/css" href="css/search.css"/>
<link rel="stylesheet" type="text/css" href="css/header.css"/>
<link rel="stylesheet" type="text/css" href="css/footer.css"/>
<link rel="shortcut icon" href="icon/yt.png" />
</head>
<body>
<!--头部登录页面-->
<div id="header">
<div class="top-left">
<ul class="top-entry">
<li class="ytsy"><a href="#">
<s class="ytsy-s"></s>
<p class="shouyt">银泰首页</p></li></a>
<li class="separtor"></li>
<li class="wechat"><a href="#">
<s class="wechat-s"></s>
<p class="shouyep">微信</p>
<b class="wechat-xuan"></b>
</a>
<div class="wechat-green">
<s class="wechat-s-h"></s>
<p class="shouyep-h">微信</p>
</div>
<div class="wechat-erweima">
<img src="img/wechat.png"/>
</div>
</li>
<li class="separtor"></li>
<li class="log-yt-phone"><a href="#">
<s class="phone-s"></s>
<p class="shouyeiphone">手机银泰</p>
<b></b>
</a>
</li>
</ul>
<ul class="top-right">
<li class="welcome">
<span>Hi,欢迎来到银泰网!</span>
<a href="#" class="login">登录</a>
<a href="#" class="reg">注册</a>
</li>
<li class="separtor"></li>
<li class="log-link">
<a href="#" >我的订单</a>
</li>
<li class="separtor"></li>
<li class="home-yintai">
<a href="#" class="login">我的银泰
<b></b>
</a>
</li>
<li class="separtor"></li>
<li class="yintaika">
<a href="#">银泰卡</a>
</li>
<li class="separtor"></li>
<li class="bangzhuzhongxin">
<a href="#">帮助中心</a>
</li>
</ul>
</div>
</div>
<div id="topguanggao">
<a href="#"></a>
</div>
<div id="top-main">
<div class="ilogo">
</div>
<div class="jinian">
<div class="line"></div>
<a href="#" class="jiniangif">
<img src="img/93137a1e-a02b-4855-90c5-463f6616dfb3.gif"/>
</a>
</div>
<div class="icar">
<a href="#">
<span>
购物袋<strong class="icar-count">0</strong>件</span>
</a>
</div>
<div class="isearch">
<div class="searchbox">
<input type="text" placeholder="雾霾无处藏身的秘密"/>
<button class="searchbtn">搜索</button>
</div>
<div class="hotkey">
<a href="#" class="hotword">运动年终79元起</a>
<a href="#" class="hotword">旧衣不过年</a>
<a href="#">婴幼儿服饰</a>
<a href="#">轻复古重文艺</a>
<a href="#">奢品斜挎包</a>
</div>
</div>
</div>
<div class="menu">
<div class="top-memu">
<div class="menu-cate">
<a href="#" class="allfenlei">全部分类</a>
<div class="menuall">
<dl class="dl-12">
<dt>
<a href="#" class="category">
<em></em>名品
</a>
<i></i>
<div class="mingpin-right">
<a href="#" class="hot">秋冬尚新</a>
<span></span>
</div>
</dt>
<dd class="mpdd">
<div class="mpleft-list">
<div class="sorts">
<h3 class="hh3"><a href="#">
男装
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">新品</a>
<a href="#" class="wword">卫衣</a>
<a href="#" class="hotword">针织衫</a>
<a href="#" class="wword">裤装</a>
<a href="#" class="wword">外套</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
女装
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">新品</a>
<a href="#" class="wword">卫衣</a>
<a href="#" class="hotword">针织衫</a>
<a href="#" class="wword">裤装</a>
<a href="#" class="wword">外套</a>
<a href="#" class="wword">裙装</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
鞋靴
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">新品</a>
<a href="#" class="wword">女士单鞋</a>
<a href="#" class="hotword">男鞋</a>
<a href="#" class="wword">靴子</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
女包
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">新品</a>
<a href="#" class="hotword">手提斜跨包</a>
<a href="#" class="wword">单肩包</a>
<a href="#" class="wword">钱夹</a>
<a href="#" class="wword">手拿包</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
男包
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">新品</a>
<a href="#" class="wword">钱包</a>
<a href="#" class="hotword">单肩包</a>
<a href="#" class="wword">手拿包</a>
<a href="#" class="wword">手提包</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
配饰
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">新品</a>
<a href="#" class="hotword">针织衫</a>
<a href="#" class="wword">帽子</a>
<a href="#" class="wword">腰带</a>
</p>
</div>
<div class="sortsnone">
<h3 class="hh3"><a href="#">
婴童
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">童装</a>
<a href="#" class="wword">童鞋</a>
<a href="#" class="wword">婴童配饰</a>
</p>
</div>
</div>
<div class="right-list">
<h3>品牌</h3>
<p>
<a href="#">BURBERRY</a>
<a href="#">FERRAGAMO</a>
<a href="#">GUCCI COACH</a>
<a href="#">ARMANI JEANS</a>
<a href="#">DIESEL VERSACE</a>
<a href="#">MAX&CO</a>
<a href="#">FRED PERRY</a>
<a href="#">CELINE SPORTMAX</a>
<a href="#">MAX MARA</a>
<a href="#">MICHAEL KORS</a>
<a href="#">ZEGNA FENDI</a>
<a href="#">EMPORIO ARMANI</a>
<a href="#">BALLY</a>
<a href="#">ALEXANDER MCQUEEN</a>
</p>
</div>
</dd>
</dl>
<dl class="dl-1">
<dt>
<a href="#" class="category">
<em></em>女装
</a>
<i></i>
<div class="mingpin-right">
<a href="#" class="hot">秋冬上新</a>
<span></span>
</div>
</dt>
<dd class="nzdd">
<div class="nzleft-list">
<div class="sorts29576">
<h3 class="hh3"><a href="#">热门搜索</a></h3>
<p class="hhp">
<a href="#" class="hotword">商城同款</a>
<a href="#" class="wword">打底裤</a>
<a href="#" class="wword">风衣</a>
<a href="#" class="hotword">大衣</a>
<a href="#" class="wword">裤装</a>
<a href="#" class="hotword">羽绒服</a>
<a href="#" class="wword">棉服</a>
<a href="#" class="wword">皮衣/皮草</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">流行元素</a></h3>
<p class="hhp">
<a href="#" class="wword">欧美风</a>
<a href="#" class="wword">英伦风</a>
<a href="#" class="wword">韩范</a>
<a href="#" class="wword">简约风</a>
<a href="#" class="wword">刺绣</a>
<a href="#" class="wword">休闲风</a>
<a href="#" class="wword">纯色</a>
<a href="#" class="wword">森女棉麻</a>
<a href="#" class="wword">打绣花</a>
<a href="#" class="wword">蕾丝衫</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">上装</a></h3>
<p class="hhp">
<a href="#" class="wword">卫衣/绒衣</a>
<a href="#" class="wword">针织衫</a>
<a href="#" class="wword">外套</a>
<a href="#" class="hotword">风衣</a>
<a href="#" class="wword">小西装</a>
<a href="#" class="wword">大衣</a>
<a href="#" class="wword">衬衫</a>
<a href="#" class="wword">吊带/马甲</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">下装</a></h3>
<p class="hhp">
<a href="#" class="hotword">牛仔裤</a>
<a href="#" class="wword">休闲裤</a>
<a href="#" class="wword">连体裤</a>
<a href="#" class="wword">哈伦裤</a>
<a href="#" class="wword">西装裤</a>
<a href="#" class="wword">长裤</a>
<a href="#" class="wword">九分裤</a>
<a href="#" class="wword">七分裤</a>
<a href="#" class="wword">铅笔裤</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
裙装
</a>
</h3>
<p class="hhp">
<a href="#" class="wword">半身裙子</a>
<a href="#" class="wword">长袖裙子</a>
<a href="#" class="wword">牛仔裙</a>
<a href="#" class="hotword">连衣裙</a>
</p>
</div>
<div class="sortsnone">
<h3 class="hh3"><a href="#">
女士内衣
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">文胸</a>
<a href="#" class="hotword">底裤</a>
<a href="#" class="wword">家居服</a>
<a href="#" class="wword">束身衣</a>
<a href="#" class="wword">吊带/背心</a>
<a href="#" class="wword">袜品</a>
<a href="#" class="wword">泳衣</a>
</p>
</div>
</div>
<div class="nzright-list">
<h3>品牌</h3>
<p>
<a href="#">江南布衣</a>
<a href="#">茵man</a>
<a href="#">洛可可</a>
<a href="#">苏安真</a>
<a href="#">颜域</a>
<a href="#">莉莉的</a>
<a href="#">衣之纯</a>
<a href="#">海贝</a>
<a href="#">Miss Lisa</a>
<a href="#">BEAUTY SAID</a>
<a href="#">鸭鸭</a>
<a href="#">欧怀</a>
<a href="#">vanillachocolate</a>
<a href="#">Bees</a>
<a href="#">do</a>
<a href="#">CMYK</a>
<a href="#">初语</a>
<a href="#">axelledesoie</a>
<a href="#">贝瑞英格</a>
<a href="#">艾丽范宁</a>
<a href="#">格子廊</a>
<a href="#">奈希雅</a>
<a href="#">INXX</a>
<a href="#">天谜</a>
</p>
</div>
</dd>
</dl>
<dl class="dl-2">
<dt>
<a href="#" class="category">
<em></em>男装
</a>
<i></i>
<div class="mingpin-right">
<a href="#" class="hot">型男专场</a>
<span></span>
</div>
</dt>
<dd class="mandd">
<div class="manleft-list">
<div class="sorts">
<h3 class="hh3"><a href="#">
热门搜索
</a>
</h3>
<p class="hhp">
<a href="#" class="wword">大衣</a>
<a href="#" class="hotword">T恤</a>
<a href="#" class="wword">卫衣</a>
<a href="#" class="wword">外套</a>
<a href="#" class="wword">休闲裤</a>
<a href="#" class="wword">牛仔裤</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">冬季上新</a></h3>
<p class="hhp">
<a href="#" class="wword">长袖衬衫</a>
<a href="#" class="hotword">长袖POLO</a>
<a href="#" class="wword">羽绒服</a>
<a href="#" class="wword">长袖T恤</a>
<a href="#" class="hotword">针织衫</a>
<a href="#" class="wword">夹克/外套</a>
<a href="#" class="hotword">休闲裤</a>
<a href="#" class="wword">牛仔裤</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">上装</a></h3>
<p class="hhp">
<a href="#" class="wword">衬衫</a>
<a href="#" class="wword">T恤</a>
<a href="#" class="wword">卫衣</a>
<a href="#" class="wword">夹克</a>
<a href="#" class="wword">外套</a>
<a href="#" class="wword">针织衫</a>
<a href="#" class="wword">POLO衫</a>
<a href="#" class="wword">羽绒服</a>
<a href="#" class="wword">大衣</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
下装
</a>
</h3>
<p class="hhp">
<a href="#" class="wword">牛仔裤</a>
<a href="#" class="wword">休闲裤</a>
<a href="#" class="wword">西裤</a>
</p>
</div>
<div class="sortsnone">
<h3 class="hh3"><a href="#">
男士内衣
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">底裤</a>
<a href="#" class="wword">背心/T恤</a>
<a href="#" class="wword">家居服</a>
<a href="#" class="wword">男士袜品</a>
</p>
</div>
</div>
<div class="manright-list">
<h3>品牌</h3>
<p>
<a href="#">美国马球</a>
<a href="#">IZOD</a>
<a href="#">JASONWOOD</a>
<a href="#">华帝卡尼</a>
<a href="#">GENID LaMODE</a>
<a href="#">Facho</a>
<a href="#">左岸</a>
<a href="#">BEE</a>
<a href="#">ARMOR</a>
<a href="#">ANDREW MARC</a>
<a href="#">俞兆林</a>
<a href="#">威秀</a>
<a href="#">Magic power</a>
<a href="#">约翰费雷德</a>
<a href="#">G&G</a>
<a href="#">Avenue</a>
<a href="#">欧林浦</a>
<a href="#">杰帝梵</a>
<a href="#">雅盛莉</a>
<a href="#">战地吉普</a>
<a href="#">ASOBIO</a>
<a href="#">高尔普</a>
<a href="#">卡帝乐鳄鱼</a>
<a href="#">罗朗巴特</a>
<a href="#">COLLEGE HOME</a>
</p>
</div>
</dd>
</dl>
<dl class="dl-5">
<dt>
<a href="#" class="category">
<em></em>鞋靴
</a>
<i></i>
<div class="mingpin-right">
<a href="#" class="hot">时尚鞋品</a>
<span></span>
</div>
</dt>
<dd class="xzdd">
<div class="manleft-list">
<div class="sorts">
<h3 class="hh3"><a href="#">
热门搜索
</a>
</h3>
<p class="hhp">
<a href="#" class="wword">单鞋</a>
<a href="#" class="hotword">粗跟鞋</a>
<a href="#" class="wword">平底鞋</a>
<a href="#" class="wword">上新</a>
<a href="#" class="wword">内增高</a>
<a href="#" class="wword">雪地靴</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">女鞋</a></h3>
<p class="hhp">
<a href="#" class="wword">单鞋</a>
<a href="#" class="hotword">粗跟鞋</a>
<a href="#" class="wword">中跟</a>
<a href="#" class="wword">浅口鞋</a>
<a href="#" class="hotword">尖头鞋</a>
<a href="#" class="wword">乐福鞋</a>
<a href="#" class="hotword">坡跟鞋</a>
<a href="#" class="wword">女鞋出清</a>
</p>
</div>
<div class="sortsnone">
<h3 class="hh3"><a href="#">
男鞋
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">休闲鞋</a>
<a href="#" class="wword">商务鞋</a>
<a href="#" class="wword">帆布鞋</a>
<a href="#" class="wword">单鞋</a>
<a href="#" class="hotword">个性潮鞋</a>
<a href="#" class="hotword">男鞋出清</a>
</p>
</div>
</div>
<div class="xzright-list">
<h3>品牌</h3>
<p>
<a href="#">玖熙</a>
<a href="#">FED</a>
<a href="#">百丽</a>
<a href="#">天美意</a>
<a href="#">茵奈儿</a>
<a href="#">他她</a>
<a href="#">星期六</a>
<a href="#">大洋洲袋鼠</a>
<a href="#">哈森</a>
<a href="#">美国U牌</a>
<a href="#">欧嘉</a>
<a href="#">UZXG</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="#">COZYSTEPS</a>
<a href="#">欧希尔</a>
<a href="#">朵牧</a>
<a href="#">才子</a>
<a href="#">爱乐</a>
<a href="#">帝卡文迪</a>
<a href="#">花花公子</a>
<a href="#">圣大保罗</a>
<a href="#">Palol Conte</a>
</p>
</div>
</dd>
</dl>
<dl class="dl-4">
<dt>
<a href="#" class="category">
<em></em>美妆
</a>
<i></i>
<div class="mingpin-right">
<a href="#" class="hot">护肤套装</a>
<span></span>
</div>
</dt>
<dd class="hzdd">
<div class="manleft-list">
<div class="sorts29576">
<h3 class="hh3"><a href="#">面部保养</a></h3>
<p class="hhp">
<a href="#" class="wword">面膜</a>
<a href="#" class="hotword">护肤套装</a>
<a href="#" class="wword">洁面</a>
<a href="#" class="hotword">爽肤水</a>
<a href="#" class="wword">乳液</a>
<a href="#" class="wword">精华</a>
<a href="#" class="wword">眼霜/啫喱</a>
<a href="#" class="wword">日霜</a>
<a href="#" class="wword">晚霜</a>
<a href="#" class="wword">去角质</a>
<a href="#" class="wword">精油</a>
</p>
</div>
<div class="sorts29596">
<h3 class="hh3"><a href="#">魅力彩妆</a></h3>
<p class="hhp">
<a href="#" class="wword">粉底液/粉底膏</a>
<a href="#" class="wword">BB霜</a>
<a href="#" class="hotword">遮瑕</a>
<a href="#" class="wword">散粉/蜜粉</a>
<a href="#" class="wword">卸妆</a>
<a href="#" class="hotword">睫毛膏</a>
<a href="#" class="hotword">唇膏/口红</a>
<a href="#" class="wword">唇彩/唇蜜</a>
<a href="#" class="wword">彩妆工具</a>
<a href="#" class="wword">美甲</a>
<a href="#" class="wword">彩妆套装</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">香氛洗护</a></h3>
<p class="hhp">
<a href="#" class="wword">女士香水</a>
<a href="#" class="hotword">男士香水</a>
<a href="#" class="wword">其他香氛</a>
<a href="#" class="hotword">洗护套装</a>
<a href="#" class="wword">洗发</a>
<a href="#" class="wword">护发</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">身体护理</a></h3>
<p class="hhp">
<a href="#" class="wword">身体套装</a>
<a href="#" class="wword">沐浴露</a>
<a href="#" class="hotword">身体乳</a>
<a href="#" class="wword">身体清洁</a>
<a href="#" class="wword">丰胸瘦身</a>
<a href="#" class="wword">手足护理</a>
<a href="#" class="wword">个人护理</a>
</p>
</div>
<div class="sortsnone29575">
<h3 class="hh3"><a href="#">
男士护理
</a>
</h3>
<p class="hhp">
<a href="#" class="wword">面部清洁</a>
<a href="#" class="wword">爽肤水/须后水</a>
<a href="#" class="wword">乳液/面霜</a>
<a href="#" class="wword">男士香水</a>
<a href="#" class="wword">洗发水/沐浴露</a>
</p>
</div>
</div>
<div class="hzright-list">
<h3>品牌</h3>
<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="#">YSL</a>
<a href="#">赫莲娜</a>
<a href="#">兰芝</a>
<a href="#">资生堂</a>
<a href="#">雅诗兰黛</a>
<a href="#">悦木之源</a>
<a href="#">BobbiBrown</a>
<a href="#">倩碧</a>
<a href="#">茵芙纱</a>
<a href="#">欧舒丹</a>
<a href="#">贝琳妃</a>
<a href="#">SK-II</a>
<a href="#">Bodo</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="#">GUCCI</a>
<a href="#">菲拉格慕</a>
<a href="#">玛雅科布</a>
<a href="#">宝格丽</a>
<a href="#">Tangle Teezer</a>
</p>
</div>
</dd>
</dl>
<dl class="dl-6">
<dt>
<a href="#" class="category">
<em></em>箱包
</a>
<i></i>
<div class="mingpin-right">
<a href="#" class="hot">女神单肩</a>
<span></span>
</div>
</dt>
<dd class="xbdd">
<div class="manleft-list">
<div class="sorts29576">
<h3 class="hh3"><a href="#">热门搜索</a></h3>
<p class="hhp">
<a href="#" class="wword">女士印花</a>
<a href="#" class="wword">鳄鱼纹</a>
<a href="#" class="wword">男士斜挎包</a>
<a href="#" class="wword">链条包</a>
<a href="#" class="wword">减龄女包</a>
<a href="#" class="wword">女士小资</a>
<a href="#" class="wword">拉杆箱</a>
<a href="#" class="wword">女士双肩</a>
<a href="#" class="wword">海蛇皮</a>
</p>
</div>
<div class="sorts29596">
<h3 class="hh3"><a href="#">时尚女包</a></h3>
<p class="hhp">
<a href="#" class="hotword">外交官</a>
<a href="#" class="hotword">超值推荐</a>
<a href="#" class="wword">单肩包</a>
<a href="#" class="hotword">手提包</a>
<a href="#" class="wword">斜挎包</a>
<a href="#" class="wword">手拿包</a>
<a href="#" class="wword">双肩包</a>
<a href="#" class="hotword">手提/斜跨多用包</a>
<a href="#" class="wword">帆布包</a>
<a href="#" class="wword">杀手包</a>
<a href="#" class="wword">贝壳包</a>
<a href="#" class="hotword">欧美包</a>
<a href="#" class="wword">韩版包</a>
<a href="#" class="hotword">链条包</a>
<a href="#" class="wword">编织包</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">精品男包</a></h3>
<p class="hhp">
<a href="#" class="hotword">双肩包</a>
<a href="#" class="wword">单肩包</a>
<a href="#" class="hotword">手提包</a>
<a href="#" class="wword">斜挎包</a>
<a href="#" class="wword">手拿包</a>
<a href="#" class="wword">手提/斜跨多用包</a>
<a href="#" class="hotword">商务包</a>
<a href="#" class="wword">帆布包</a>
<a href="#" class="wword">休闲包</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">功能包</a></h3>
<p class="hhp">
<a href="#" class="hotword">女士钱包</a>
<a href="#" class="hotword">男士钱包</a>
<a href="#" class="wword">电脑包</a>
<a href="#" class="wword">登山包</a>
<a href="#" class="wword">证件夹</a>
<a href="#" class="wword">个零钱包</a>
<a href="#" class="hotword">卡包</a>
<a href="#" class="wword">防水包</a>
</p>
</div>
<div class="sortsnone">
<h3 class="hh3"><a href="#">
旅行箱包
</a>
</h3>
<p class="hhp">
<a href="#" class="wword">旅行包</a>
<a href="#" class="wword">旅行箱</a>
<a href="#" class="hotword">万向滚轮拉杆箱</a>
</p>
</div>
</div>
<div class="xbright-list">
<h3>品牌</h3>
<p>
<a href="#">BLLE</a>
<a href="#">外交官</a>
<a href="#">阿特密</a>
<a href="#">幸福里</a>
<a href="#">克路驰</a>
<a href="#">琪熙</a>
<a href="#">柒格格</a>
<a href="#">WEEKENDER</a>
<a href="#">佛莱尔唐。阿隆索</a>
<a href="#">JESSIE & JANE</a>
<a href="#">only</a>
<a href="#">纳维奥</a>
<a href="#">那沃</a>
<a href="#">RIMOWA</a>
<a href="#">歌莉娅</a>
<a href="#">伯斯丹顿</a>
<a href="#">海森梅尔</a>
<a href="#">Y6</a>
<a href="#">卓凡尼.华伦天奴</a>
<a href="#">袋妍人</a>
<a href="#">微缇</a>
<a href="#">法国大使</a>
<a href="#">GUCCI</a>
<a href="#">珑骧</a>
<a href="#">OMTO</a>
<a href="#">BABAMA</a>
</p>
</div>
</dd>
</dl>
<dl class="dl-3">
<dt>
<a href="#" class="category">
<em></em>运动
</a>
<i></i>
<div class="mingpin-right">
<a href="#" class="hot">运动鞋服</a>
<span></span>
</div>
</dt>
<dd class="yddd">
<div class="nzleft-list">
<div class="sorts29576">
<h3 class="hh3"><a href="#">运动休闲服</a></h3>
<p class="hhp">
<a href="#" class="wword">运动裤</a>
<a href="#" class="wword">卫衣/连帽衫</a>
<a href="#" class="wword">夹克/外套</a>
<a href="#" class="wword">长袖T恤</a>
<a href="#" class="wword">运动短T</a>
<a href="#" class="wword">休闲裤</a>
<a href="#" class="wword">POLO衫</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
运动鞋
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">跑步鞋</a>
<a href="#" class="hotword">篮球鞋</a>
<a href="#" class="wword">复古鞋</a>
<a href="#" class="hotword">休闲鞋</a>
<a href="#" class="wword">帆布鞋</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
健身运动服
</a>
</h3>
<p class="hhp">
<a href="#" class="wword">瑜伽服</a>
<a href="#" class="wword">女士泳装</a>
<a href="#" class="wword">男士泳装</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
户外鞋
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">徒步鞋</a>
<a href="#" class="wword">休闲鞋</a>
<a href="#" class="wword">登山鞋</a>
<a href="#" class="hotword">越野跑鞋</a>
<a href="#" class="wword">溯溪鞋</a>
</p>
</div>
<div class="sorts29576">
<h3 class="hh3"><a href="#">户外休闲装</a></h3>
<p class="hhp">
<a href="#" class="hotword">运动裤</a>
<a href="#" class="wword">冲锋衣</a>
<a href="#" class="wword">户外短袖</a>
<a href="#" class="hotword">休闲裤</a>
<a href="#" class="wword">外套/夹克</a>
<a href="#" class="wword">长袖T恤</a>
<a href="#" class="wword">皮肤衣</a>
</p>
</div>
<div class="sorts">
<h3 class="hh3"><a href="#">
户外专业服
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">冲锋衣</a>
<a href="#" class="hotword">抓绒衣</a>
<a href="#" class="wword">冲锋裤</a>
<a href="#" class="wword">速干裤</a>
</p>
</div>
<div class="sortsnone">
<h3 class="hh3"><a href="#">
运动户外装备
</a>
</h3>
<p class="hhp">
<a href="#" class="hotword">运动背包</a>
<a href="#" class="wword">户外背包</a>
<a href="#" class="wword">运动配件</a>
<a href="#" class="hotword">户外装备</a>
</p>
</div>
</div>
<div class="ydright-list">
<h3>品牌</h3>
<p>
<a href="#">New Balance</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="#">RAX瑞行</a>
<a href="#">DC</a>