-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·3664 lines (3559 loc) · 237 KB
/
index.html
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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>「魅力惠MEI.COM」奢品线上平台,专业买手精选国际品牌授权合作,100%正品保证,所见即品位!</title>
<link href="css/master.css" rel="stylesheet" type="text/css">
<style>
.img_big { z-index:0; position:absolute;}
.img_small { position:absolute; top:0; left:0; z-index:2;background-color:#0066cc}
.weekSelected{border-bottom: 3px solid black;}
.trip_mas { display: none;top: 2px;margin-left:30px;height:22px; line-height:22px; color:#F00; position:absolute; z-index:1; background-color:#FFF; border:1px #a7a7a7 solid; width:138px; font-size:12px; text-align:center;}
.trip_mas s { width:16px; height:8px; position:absolute; z-index:1; background:url(img/ccc_03.png) no-repeat; top:22px; left:61px;}
#pop_img_hide
{
background-image:url('img/iea.gif');
}
#pop_img_register
{
background-image:url('img/iea.gif');
}
</style>
</head>
<body>
<div>
<div class="returnTop">
<div class="top"><span>100%</span><br>正品保证</div>
<div class="erweima">
<span>下载APP</span>
<img src="img/qr_code.png" width="75" height="75">
<span>微信公众号</span>
<img src="img/wechat-2dcode.png" width="75" height="75">
</div>
<div class="clickOn" style="display: none"><a href="#topDiv">返回顶部</a></div>
</div>
</div>
<div class="wrapper homePage" id="topDiv">
<link href="css/base.css" rel="stylesheet" type="text/css">
<link href="css/silonavbar.css" rel="stylesheet" type="text/css">
<style type="text/css">
a.myMlh:hover{color:red}
</style>
<meta http-equiv="x-ua-compatible" content="IE=EmulateIE7" >
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
<div class="header_container" name="header_container" id="header_container">
<div class="header">
<div class="quick_access">
<div class="quick_access_left">
<ul id="ul_header" data-spm="2028457">
<li class="theLi">
<img class="youli" src="img/zhuceyouli.gif" />
<a href="#" style="color: red;">注册有礼</a>
</li>
<li class="theLi"><span>|</span></li>
<li class="theLi">
<a href ="html/login.html"onclick="toLogin()">登录</a>
</li>
<li class="theLi"><span>|</span></li>
<li class="theLi">
<div class="pop_up">
<div id="collect_tag_dialog" class="pop_up_box6" style="display:none;">
<div class="box_top">
<div class="top_img">
</div>
</div>
<div class="box_content">收藏成功!</div>
</div>
</div>
<a href="#user/tologinpage">收藏</a>
</li>
</ul>
</div>
<div class="quick_access_right">
<ul>
<li><span onclick="javascript:NTKF.im_openInPageChat();goldlog.record('/mei.3.2','','','H1703622');" title="在线咨询" class="buybtn" style="cursor:pointer;">在线咨询</span></li>
<li>|</li>
<li>
<div class="pop_up" id="mobilePop" style="display:none;">
<div class="pop_up_app" >
<img src="img/qr_code.png">
<p>扫码下载APP</p>
</div>
</div>
<a href="#" onmouseover="$('#mobilePop').show();" onmouseout="$('#mobilePop').hide();">手机版</a>
</li>
<li>|</li>
<li><a style="margin-left:10px;" class="imglink_weibo" href="#ttp://weibo.com/glamoursaleschina" onclick="clicksina();">新浪微博</a></li>
</ul>
</div>
</div>
<div class="branding">
<a href="index.html" class="logo" title="魅力惠MEI.COM 时尚奢品 限时折扣">魅力惠</a>
<a class="logo_slogan" style="cursor: default;">时尚奢品 限时折扣</a>
</div>
</div>
<!--导航栏-->
<div class="nav_container" id="navBarId">
<div class="nav">
<div class="shopping_bag" onclick="shoppingSkipBag();" onmouseenter="showSmallBag();" onmouseleave="hideSmallBag();" >
<ul>
<li class="shopping_quantity" id="shopping_quantity">0</li>
<li>|</li>
<li id="shopping_amount">¥0.00</li>
</ul>
</div>
<div class="pop_up_shopping" id="pop_up_shopping" onmouseover="alwaysShow()" onmouseleave="hideSmallBag();">
</div>
<div class="header_menu" id="header_menu">
<input type="hidden" id="selectedSilo" value="">
<ul>
<li class="nav-li">
<!--弹出二级菜单-->
<a class="theNav" style="color: red;" id="2013000100000000008" href="#index.html" >首页</a>
</li>
<li class="nav-li">
<!--弹出二级菜单-->
<div class="pop_up" style="display: block;">
<div class="pop_up_menu">
<div class="submenu">
<p class="title">热门活动</p>
<ul>
<li><a href="list.html"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">IGER & MR MRS ITALY 秋冬魅鞋美包</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">STUART WEITZMAN 鞋履美包</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">TOD'S & HOGAN 女士经典鞋履</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">MSGM,CESARE CASADEI 等精选大牌女鞋</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">STUART WEITZMAN 2017秋冬新品仙履</a></li>
<li><a href="#" style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">GEGINA 意式时尚 臻爱女装</a></li>
<li><a href="#" style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">RAPIDO 女装 引领都市运动新时尚(满减)</a></li>
<li><a href="#" style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">LISA ZHOU 唯美设计 优雅礼服</a></li>
</ul>
<p class="more"><a href="#" >查看所有活动</a></p>
</div>
<div class="submenu">
<p class="title">商品分类</p>
<ul class="submenu_ul">
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">鞋履</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">服装</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">包袋</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">手表&首饰</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">配饰</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">内衣</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">眼镜</a></li>
</ul>
</div>
</div>
</div>
<a class="theNav" href="#" >女士</a>
</li>
<li class="nav-li">
<!--弹出二级菜单-->
<div class="pop_up" style="display: block;">
<div class="pop_up_menu">
<div class="submenu">
<p class="title">热门活动</p>
<ul>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">TOD'S & HOGAN 男士经典鞋履</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">JOHN GALLIANO,ROBERTO CAVALLI 等精选大牌男鞋</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">CALVIN KLEIN COLLECTION 男鞋专场(满减)</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">RAPIDO 男装 引领都市运动新时尚(满减)</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">EMPORIO ARMANI 城市精英秋季男士风尚</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">ARMANI EXCHANGE & ARMANI JEANS 活力秋冬男士</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">VIVIENNE WESTWOOD 男装</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">INITIAL 轻剪裁男装及配饰</a></li>
</ul>
<p class="more"><a href="#" >查看所有活动</a></p>
</div>
<div class="submenu">
<p class="title">商品分类</p>
<ul class="submenu_ul">
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">鞋履</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">服装</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">配饰</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">包袋钱包</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">手表&首饰</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">内衣</a></li>
</ul>
</div>
</div>
</div>
<a class="theNav" id="2013000100000000002" href="#silo/men.html" >男士</a>
</li>
<li class="nav-li">
<div class="pop_up" style="display: block;">
<div class="pop_up_menu">
<div class="submenu">
<p class="title">热门活动</p>
<ul>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">秋季焕肤保湿 赶走干燥肌</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">BEAUTY BOX 旅行必备小美盒</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">LA MER 海蓝之谜 源自深海的愈颜奇迹</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">CPB 开启肌肤无瑕光源</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">超值组套专场 整套买更划算</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">LANCOME兰蔻 法国经典护肤彩妆甄选</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">SK-II 开启肌肤晶莹之旅</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">ESTEE LAUDER雅诗兰黛 修护法宝 定格年轻美肌</a></li>
</ul>
<p class="more"><a href="#" >查看所有活动</a></p>
</div>
<div class="submenu">
<p class="title">商品分类</p>
<ul class="submenu_ul">
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">护肤</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">彩妆</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">香氛</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">美体</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">男士</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">保健</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">面膜</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">美容仪</a></li>
</ul>
<ul class="submenu_ul">
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">美发</a></li>
</ul>
</div>
</div>
</div>
<a class="theNav" href="#" >美妆</a>
</li>
<li class="nav-li">
<!--弹出二级菜单-->
<div class="pop_up" style="display: block;">
<div class="pop_up_menu">
<div class="submenu">
<p class="title">热门活动</p>
<ul>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">和蓝 & THERMATEC 日本瓷器&砂锅</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">FRETTE 意大利皇室家居(满3000-300)</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">高品质 生活小家电专场</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">TEMPUR 美国航天局认证记忆枕</a></li>
<li><a href="#" style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">WOOLTARA 澳洲羊毛家居(补货上新)</a></li>
<li><a href="#" style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">万圣节 魔幻厨房美食派对</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">DOWNESSA 澳洲手工地毯(满减)</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">ZWILLING 双立人厨具</a></li>
</ul>
<p class="more"><a href="#" >查看所有活动</a></p>
</div>
<div class="submenu">
<p class="title">商品分类</p>
<ul class="submenu_ul">
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">床品</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">卫浴</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">厨具</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">摆件</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">食品</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">家电</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">旅游</a></li>
</ul>
</div>
</div>
</div>
<a class="theNav" href="#silo/lifestyle.html" >家居</a>
</li>
<li class="nav-li">
<!--弹出二级菜单-->
<div class="pop_up" style="display: block;">
<div class="pop_up_menu">
<div class="submenu">
<p class="title">热门活动</p>
<ul>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">FENDI 意大利大牌童装男童秋冬精选</a></li>
<li><a href="#" style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">FENDI 意大利大牌童装女童秋冬精选</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">TRUSSARDI 意大利童装秋冬上新(首次上线)</a></li>
<li><a href="#" style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">REIMA 芬兰功能性童装鞋靴配饰专场</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">SCHWARTZ 法国轻奢童装男童精选(满减)</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">SCHWARTZ 法国轻奢童装女童精选(满减)</a></li>
<li><a href="#" style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">PAUL SMITH 英伦风童装</a></li>
<li><a href="#" style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">DAVID CHARLES 英国皇室男女童优雅礼服</a></li>
</ul>
<p class="more"><a href="#" >查看所有活动</a></p>
</div>
<div class="submenu">
<p class="title">商品分类</p>
<ul class="submenu_ul">
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">服装</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">鞋履</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">玩具</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">母婴</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">配饰</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">其它</a></li>
</ul>
</div>
</div>
</div>
<a class="theNav" id="2013000100000000005" href="#silo/kids.html" >婴童</a>
</li>
<li class="nav-li">
<!--弹出二级菜单-->
<div class="crossIcon"></div><!-- 海外icon -->
<div class="pop_up" style="display: block;">
<div class="pop_up_menu1">
<div class="submenu">
<p class="title">热门活动</p>
<ul>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">ALEXANDER MCQUEEN 潮流轻奢 男女围巾鞋履</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">PRADA 意式风尚 时尚男女鞋</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">ADIDAS 潮搭型走 男女运动鞋</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">NIKE 型动集结 男女运动跑鞋</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">DUVETICA & PINKO等 都市知性女装专场</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">HUGO BOSS & ARMANI JEANS等 暖秋男士服饰专场</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">BURBERRY 英伦甄选 女士服装</a></li>
<li><a href="#"style="color:#666;" onmouseover="this.style.cssText='color:#db2726;'" onmouseout="this.style.cssText='color:#666;'">BURBERRY 英伦甄选 男士服装</a></li>
</ul>
<p class="more"><a href="#" >查看所有活动</a></p>
</div>
</div>
</div>
<a class="theNav"href="#" >海外</a>
</li>
<li class="nav-li">
<!--弹出二级菜单-->
<a class="theNav"href="#" >即将推出</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--页面顶部1 end-->
<script>
$(document).ready(function(){
var $selectedSilo = $("#selectedSilo");
if(typeof($selectedSilo) != "undefined"
&& $selectedSilo != null && $selectedSilo!= ""){
var $a = $selectedSilo.val();
if($a != "" && $a != null){
$("#header_menu .theNav").css("color","white");
if($a != "abc"){
$("#"+$a).css("color","red");
}
}
}
/**
* 鼠标悬停导航栏事件
*/
$("#header_menu ul li").hover(
function(){
var $pop = $(this).children(".pop_up").children(".pop_up_menu");
// alert($pop.html());
if($pop.length < 1){
$pop = $(this).children(".pop_up").children(".pop_up_menu1");
}
$pop.show();
},
function(){
var $pop = $(this).children(".pop_up").children(".pop_up_menu");
if(typeof($pop) == "undefined" ||
(typeof($pop) != "undefined" && typeof($pop.html()) == "undefined")){
$pop = $(this).children(".pop_up").children(".pop_up_menu1");
}
$pop.hide();
}
);
/**
* 加载时看是否是点即将开始的活动进来的
*/
});
function categoryClick(silo_name_en,id,name) {
var url = "/silo/"+silo_name_en+"/"+id+"-"+name+".html";
window.open(url,"_blank","");
// document.location.href="#productList/list/"+sid+"_"+id+".html";
}
function eventClick(code,urlKey,silo_name_en) {
var url = "/silo/"+silo_name_en+"/"+code+"-"+urlKey+"-event.html";
window.open(url,"_blank","");
//document.location.href="#event/list/"+id+"_"+urlKey+".html";
}
/**
* 即将开始silo点击事件
*/
function upComingAnchor(div_id,code) {
if(code == 6){
var $div = $("#"+div_id);
if(null != $div && typeof($div) != "undefined" ){
var t = $div.offset().top;
var h= t-60;
$("html,body").scrollTop(h);
}
}else{
window.location.href="#index.html?siloFlag=1";
}
}
</script>
<!-----------bigBanner------------->
<input type="hidden" id="bigbannerSize" value="1">
<div class="bigBanner" id="bigBannerDiv" data-spm="2018994">
<div id="bannerImgDiv" style="width:100%; height:100%; position: relative;z-index: auto;">
<ul id="bannerUl" style="position: absolute;overflow: hidden;left:0">
<li style="float:left;position: relative;width: 1800px;height: 524px;" class="https://cdn12.mei.com/category/20171026/20171026191650356.jpg@1800w_524h_2e_80q" >
<img id="2120003900000000002banner"src="img/20171026191650356.jpg@1800w_524h_2e_80q" alt="bigbanner" style="width: 1800px;cursor: pointer;" onclick="bigBannerClick('','http://a.mei.com/wow/meilihui/act/1126shoes','2','','')"/>
<map name="bigBannerMap2120003900000000002"id="bigBannerMap2120003900000000002">
</map>
</li>
</ul>
</div>
</div>
<!--bigBannerr end-->
<!--首页内容-->
<div class="content_bg">
<div class="bg_left ie6png_compatible"></div>
<div class="bg_right ie6png_compatible"></div>
<div class="bg_shadow">
<div class="content_container">
<!--event列表 今日上新-->
<div class="eventList" data-spm="2028030">
<h3><span class="spanLeft"></span><span class="spanTitle" id="todayUp" name="todayUp">今日上新</span><span class="spanRight"></span></h3>
<a href="liebiao.html" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171025193319945.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">IGER & MR MRS ITALY 秋冬魅鞋美包</span>
<p><span>1.5</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171025193351930.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">STUART WEITZMAN 鞋履美包</span>
<p><span>2</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171010163404352.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">TOD'S & HOGAN 女士经典鞋履</span>
<p><span>2.3</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171010163420686.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">TOD'S & HOGAN 男士经典鞋履</span>
<p><span>2.8</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
4天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171023112538730.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">JOHN GALLIANO,ROBERTO CAVALLI 等精选大牌男鞋</span>
<p><span>2.3</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
4天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171023112520297.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">MSGM,CESARE CASADEI 等精选大牌女鞋</span>
<p><span>0.6</span>折起</p>
</div>
</div>
</a>
<a href="#silo/men/28756-2042204290000003700-event-event.html" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
<p>
购满799元,减100元;以此类推,上不封顶<br>
</p>
4天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171025202819722.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">CALVIN KLEIN COLLECTION 男鞋专场(满减)</span>
<p><span>4.1</span>折起</p>
</div>
</div>
</a>
<a href="#silo/women/25932-2040204090000003279-event-event.html" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
1天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20170919165127461.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">STUART WEITZMAN 2017秋冬新品仙履</span>
<p><span>7</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171024233937281.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="new-label">海外直发</span>
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">PRADA 意式风尚 时尚男女鞋</span>
<p><span>3.4</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171025180227626.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="new-label">海外直发</span>
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">ALEXANDER MCQUEEN 潮流轻奢 男女围巾鞋履</span>
<p><span>7</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
6天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171023191318173.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">GEGINA 意式时尚 臻爱女装</span>
<p><span>1</span>折起</p>
</div>
</div>
</a>
<a href="#silo/women/28284-2040204090000004069-event-event.html" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
<p>
购满599元,减50元;满899元,减100元;满1699元,减200元<br>
</p>
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20170930165916708.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">RAPIDO 女装 引领都市运动新时尚(满减)</span>
<p><span>3.5</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
<p>
购满599元,减50元;满899元,减100元;满1699元,减200元<br>
</p>
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20170930165824326.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">RAPIDO 男装 引领都市运动新时尚(满减)</span>
<p><span>4.5</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171024153602139.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">LISA ZHOU 唯美设计 优雅礼服</span>
<p><span>2</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
5天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171025203053800.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">FENDI, ELIE SAAB, VALENTINO等 大牌围巾专场</span>
<p><span>5</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171024232224165.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="new-label">海外直发</span>
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">ADIDAS 潮搭型走 男女运动鞋</span>
<p><span>6</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171025155201550.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="new-label">海外直发</span>
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">NIKE 型动集结 男女运动跑鞋</span>
<p><span>5.5</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171013154841030.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">大牌眼镜 时髦专属 出街必备</span>
<p><span>3</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
3天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171020192649209.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">秋季焕肤保湿 赶走干燥肌</span>
<p><span>3.8</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
5天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171012173947433.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">FENDI 意大利大牌童装男童秋冬精选</span>
<p><span>3.6</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
5天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171017164409952.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">FENDI 意大利大牌童装女童秋冬精选</span>
<p><span>3.6</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
7天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20171019162850579.png@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">和蓝 & THERMATEC 日本瓷器&砂锅</span>
<p><span>3.5</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>
<td style="padding:0px 30px; height:190px; text-align:center; line-height:22px; width:260px;">
1天后活动结束
</td>
</tr>
</table>
</div>
</div>
<div class="DivImg">
<img src='img/20170926144452153.jpg@320w_192h_2e_80q' /> </div>
</div>
<div class="theEventIntroduction">
<span class="theEventTitle" style="display: block; width:180px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; text-overflow: ellipsis;">BEAUTY BOX 旅行必备小美盒</span>
<p><span>1.5</span>折起</p>
</div>
</div>
</a>
<a href="#" style="text-decoration:none;color:#000;">
<div class="theEvent" >
<div class="theEventImg">
<div class="theMask"></div>
<div class="text">
<div class="box" style="width:320px; height:190px; border:1px #999999 solid; position:relative">
<table cellpadding="0" cellspacing="0" style="border-collapse:collapse;">
<tr>