-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1184 lines (1163 loc) · 63 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 charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>易易商城-首页</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/css.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/slick.css"/>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="http://apps.bdimg.com/libs/html5shiv/3.7/html5shiv.min.js"></script>
<script src="http://apps.bdimg.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<body>
<!-- <div class="fix_top">
<div class="inner">
<div class="site_name">易易商城</div>
<div class="search_input">
<input type="search" name="" value="" placeholder="输入你要查找的内容">
<a href="#" class="search_button">
<img src="images/icon-search.png" height="24" width="24" alt=""></a>
</div>
</div>
<div class="fix_top_mask"></div>
</div> -->
<div class="conteniner">
<div class="top_box">
<div class="top_center clearfix">
<div class="top_left">
<span class="home">你好,欢迎来到易易商城!</span>
<a href="login.html">[登陆]</a>
<a href="register.html">[免费注册]</a>
<span class="iphone">客服电话:400088888888</span>
</div>
<div class="top_right">
<ul>
<li>
<a href="#" title="">我的账号</a>
|
</li>
<li>
<a href="#" title="">易易世界</a>
|
</li>
<li>
<a href="#" title="">帮助中心</a>
|
</li>
<li>
<a href="#" title="">关于我们</a>
|
</li>
<li class="iPhone_html">
<img src="images/icon-iPhone6.png" height="23" width="24" alt="">手机版</li>
<li class="shequ">
<img src="images/icon-weibo.png" height="23" width="23" alt=""></li>
<li class="shequ">
<img src="images/icon-weixin.png" height="23" width="23" alt=""></li>
</ul>
</div>
</div>
</div>
<!-- end top_box -->
<div class="logo_box">
<div class="logo_conter clearfix">
<div class="logo">
<a href="#">
<img src="images/h-logo.png" alt=""></a>
</div>
<!-- <div class="logo_search">
<div class="search_input">
<input type="search" name="" value="" placeholder="输入你要查找的内容">
<a href="#" class="search_button">
<img src="images/icon-search.png" height="24" width="24" alt=""></a>
</div>
<div class="search_txet">
<ul>
<li>
<a href="#" title="">女装</a>
</li>
<li>
<a href="#" title="">内衣</a>
</li>
<li>
<a href="#" title="">牛仔</a>
</li>
<li>
<a href="#" title="">鞋包</a>
</li>
<li>
<a href="#" title="">中餐</a>
</li>
<li>
<a href="#" title="">火锅</a>
</li>
<li>
<a href="#" title="">烤肉</a>
</li>
<li>
<a href="#" title="">瓦罐</a>
</li>
<li>
<a href="#" title="">烧烤</a>
</li>
</ul>
</div>
</div> -->
<div class="logo_banner">
<img src="images/h-banner.png" height="83" width="206" alt=""></div>
</div>
</div>
<div class="header_box clearfix">
<div class="nav">
<ul>
<li>
<a href="index_yyt.html" title="">官网首页</a>
</li>
<li>
<a href="index.html" class="nav_h" title="">联盟首页</a>
</li>
<li>
<a href="article_list.html" title="">加入联盟</a>
</li>
<li>
<a href="article_list.html" title="">帮助中心</a>
</li>
<li>
<a href="download.html" title="">资料下载</a>
</li>
<li>
<a href="referral.html" title="">招贤纳士</a>
</li>
<li>
<a href="referral.html" title="">会员俱乐部</a>
</li>
<li>
<a href="referral.html" title="">关于我们</a>
</li>
<!-- <div class="nav_banner">
<img src="images/icon-nvajob.png" height="59" width="195" alt="百万重金猎人才"></div> -->
</ul>
</div>
</div>
<div class="banner_box clearfix">
<div class="banner_left">
<!-- <span class="banner_list list_bg1">招商引资</span> -->
<div id="slidershow" class="carousel slide">
<!-- 设置轮播图片 -->
<div class="carousel-inner">
<div class="item active">
<a href="##">
<img src="word/banner01.jpg" height="476" width="464" alt="">
</a>
<div class="banner_text">
<p>好友一年内加盟行为均可产生奖励,通过个人邀请成功邀请5名好友加盟,即可申请开通黄金vip</p>
</div>
</div>
<div class="item">
<a href="##"><img src="word/banner02.jpg" height="476" width="464" alt=""></a>
<div class="banner_text">
<p>好友一年内加盟行为均可产生奖励,通过个人邀请成功邀请5名好友加盟,即可申请开通黄金vip</p>
</div>
</div>
<div class="item">
<a href="##"><img src="word/banner03.jpg" height="476" width="464" alt="">
</a>
<div class="banner_text">
<p>好友一年内加盟行为均可产生奖励,通过个人邀请成功邀请5名好友加盟,即可申请开通黄金vip</p>
</div>
</div>
</div>
<a class="left carousel-control a_bg" onclick="slidershow" href="##" role="button">
<span class="banner_page"></span>
</a>
<a class="right carousel-control a_bg" onclick="slidershow" href="##" role="button">
<span class="banner_next"></span>
</a>
</div>
</div>
<div class="banner_conter">
<div class="banner_conter_top">
<a href="" title="">
<img src="word/banner04.jpg" height="231" width="391" alt="">
<p class="banner_text">
帝王蟹是熟冻的,在远洋捕捞捕上船时候就蒸熟冷冻,然后再运到国内的。很大程度保持了鲜度,外壳会含有薄薄的一层冰衣,主要是为了保鲜,退冰后的误差在10%左右
</p>
<!-- <span class="banner_list list_bg2">易易商城</span> -->
</a>
</div>
<div class="banner_conter_bottom">
<a href="" title="">
<img src="word/banner05.jpg" height="231" width="391" alt="">
<p class="banner_text">
标志设计说明: 主题图案采用抽象的”云朵“造型,提取了它的流畅线条。“云纹”素有“和谐、吉祥、 完满、如意、生生不息”的寓
</p>
<!-- <sapn class="banner_list list_bg3">最新动态</sapn> -->
</a>
</div>
</div>
<div class="banner_right">
<a href="" title="">
<img src="word/banner06.jpg" height="474" width="291" alt="">
<p class="banner_text">
快节奏的生活,需要加快你忙碌的步伐,想要在最短的时间内获得较高的收益吗? 加入我们吧!易易商城,一个为你搭建平台助你成功的企业! 在这里寻找属于你自己的舞台。
</p>
<!-- <span class="banner_list list_bg4">招贤纳士</span> -->
</a>
</div>
</div>
<!-- end banner_box -->
<div class="notice_box clearfix">
<div class="notice_info easing" id="breakingnews3">
<div class="bn-title"></div>
<ul>
<li><a href="#">易易商城召集令正式开始啦!推荐奖励一整年,名额有限,还不快行动起来</a></li>
<li><a href="#">j易易商城召集令正式开始啦!推荐奖励一整年,名额有限,还不快行动起来</a></li>
<li><a href="#">f易易商城召集令正式开始啦!推荐奖励一整年,名额有限,还不快行动起来</a></li>
<li><a href="#">o易易商城召集令正式开始啦!推荐奖励一整年,名额有限,还不快行动起来</a></li>
<li><a href="#">l易易商城召集令正式开始啦!推荐奖励一整年,名额有限,还不快行动起来</a></li>
<li><a href="#">s易易商城召集令正式开始啦!推荐奖励一整年,名额有限,还不快行动起来</a></li>
</ul>
<div class="bn-arrows"><span class="bn-arrows-left"></span><span class="bn-arrows-right"></span></div>
</div>
</div>
<div class="top_list clearfix">
<div class="slider one-time top_list_icon">
<div class="icon">
<a href="#">
<img src="images/icon-list-cy.png" height="58" width="58" alt="分类图标">
<p class="top_list_tit">餐饮美食</p>
<p class="number">986</p>
</a>
</div>
<div class="icon">
<a href="#">
<img src="images/icon-list-mr.png" height="58" width="58" alt="分类图标">
<p class="top_list_tit">美容养生</p>
<p class="number">622</p>
</a>
</div>
<div class="icon">
<a href="#">
<img src="images/icon-list-xb.png" height="58" width="58" alt="分类图标">
<p class="top_list_tit">服饰鞋包</p>
<p class="number">431</p>
</a>
</div>
<div class="icon">
<a href="#">
<img src="images/icon-list-zs.png" height="58" width="58" alt="分类图标">
<p class="top_list_tit">饰品玩具</p>
<p class="number">961</p>
</a>
</div>
<div class="icon">
<a href="#">
<img src="images/icon-list-jj.png" height="58" width="58" alt="分类图标">
<p class="top_list_tit">家具装饰</p>
<p class="number">223</p>
</a>
</div>
<div class="icon">
<a href="#">
<img src="images/icon-list-jn.png" height="58" width="58" alt="分类图标">
<p class="top_list_tit">节能环保</p>
<p class="number">189</p>
</a>
</div>
<div class="icon">
<a href="#">
<img src="images/icon-list-zs.png" height="58" width="58" alt="分类图标">
<p class="top_list_tit">饰品玩具</p>
<p class="number">961</p>
</a>
</div>
<div class="icon">
<a href="#">
<img src="images/icon-list-jj.png" height="58" width="58" alt="分类图标">
<p class="top_list_tit">家具装饰</p>
<p class="number">223</p>
</a>
</div>
<div class="icon">
<a href="#">
<img src="images/icon-list-jn.png" height="58" width="58" alt="分类图标">
<p class="top_list_tit">节能环保</p>
<p class="number">189</p>
</a>
</div>
</div>
</div>
<div class="content clearfix">
<div class="content_letf">
<div class="content_f1 c_f1" id="F1">
<H1 class="last_tit">餐饮美食</H1>
<div class="f1_hot clearfix">
<ul>
<li>
<a href="" title="">
<img src="word/f1-word01.jpg" height="270" width="366" alt="">
<p class="banner_text">
石锅曾经是中国历史上广泛使用的炊具,后来随着冶金技术的发展才逐渐淡出人们的生活。用生态石锅打造而成的美味,不仅在外观上富有一种原生态的美感,给人强烈的视觉刺激。
</p>
</a>
</li>
<li>
<img src="word/f1-word02.jpg" height="271" width="369" alt="">
<p class="banner_text">
石锅曾经是中国历史上广泛使用的炊具,后来随着冶金技术的发展才逐渐淡出人们的生活。用生态石锅打造而成的美味,不仅在外观上富有一种原生态的美感,给人强烈的视觉刺激。
</p>
</li>
</ul>
</div>
<!-- end f1_hot -->
<div class="f1_list clearfix">
<ul>
<li>
<a href="" title="">
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具有百年传统工艺,秉承港式甜品的精髓。精优质,保证所有产……</p>
<p class="shop_bottom clearfix">
<span class="list list_f1">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</a>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f1">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具年传统工艺,秉承港式甜品的精髓。精挑细材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f1">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选食材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f1">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="content_f2 c_f2" id="F2">
<H1 class="last_tit">服装鞋包</H1>
<div class="f2_hot clearfix">
<ul>
<li class="f2_one">
<img src="word/f2-word01.jpg" height="207" width="287" alt="">
</li>
<li class="f2_two" >
<h2 class="f2_hot_tit">亚洲潮牌“ H&F.LOVE( 槿爱 ) ”潮流女装</h2>
<p class="f2_hot_time clearfix">
<span class="user">懂爱女装</span>
<span class="time">2015-4-29</span>
</p>
<p class="f2_hot_text">
亚洲潮牌“ H&F.LOVE( 槿爱 ) ”来自于国际时尚之都韩国。引导潮流,提倡简约风尚,是槿爱品牌一直固有的一种文化和内含!人们对生活水平,生活品味渐进提高同时,对于时尚,潮流更加关注,更加追求! 对时尚,潮流的嗅觉越来越敏感,喜欢有新鲜感的东西,爱玩,敢穿,”潮”应运而生!“潮”已渐渐成为一种文化,一种精神,一种代表年轻,自由,街头东西。没有人不喜欢这样的美好!
</p>
</li>
</ul>
</div>
<!-- end f1_hot -->
<div class="f2_list clearfix">
<ul>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具有百年传统工艺,秉承港式甜品的精髓。精优质,保证所有产……</p>
<p class="shop_bottom clearfix">
<span class="list list_f2">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f2">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具年传统工艺,秉承港式甜品的精髓。精挑细材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f2">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选食材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f2">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="content_f3 c_f3 clearfix" id="F3">
<H1 class="last_tit">美容养生</H1>
<div class="f3_hot ">
<ul>
<li class="f3_one">
<img src="word/f3-word01.jpg" height="166" width="350" alt="">
</li>
<li class="f3_two">
<h2 class="f3_hot_tit">亚洲潮牌“ H&F.LOVE( 槿爱 ) ”潮流女装</h2>
<p class="f3_hot_time clearfix">
<span class="user">懂爱女装</span>
<span class="time">2015-4-29</span>
</p>
<p class="f3_hot_text">
亚洲潮牌“ H&F.LOVE( 槿爱 ) ”来自于国际时尚之都韩国。引导潮流,提倡简约风尚,是槿爱品牌一直固有的一种文化和内含!人们对生活水平,生活品味渐进提高同时,对于时尚,潮流更加关注,更加追求! 对时尚,潮流的嗅觉越来越敏感,喜欢有新鲜感的东西,爱玩,敢穿,”潮”应运而生!“潮”已渐渐成为一种文化,一种精神,一种代表年轻,自由,街头东西。没有人不喜欢这样的美好!
</p>
</li>
</ul>
</div>
<!-- end f1_hot -->
<div class="f3_list">
<ul>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具有百年传统工艺,秉承港式甜品的精髓。精优质,保证所有产……</p>
<p class="shop_bottom clearfix">
<span class="list list_f3">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f3">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具年传统工艺,秉承港式甜品的精髓。精挑细材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f3">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选食材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f3">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="content_f1 c_f4" id="F4">
<H1 class="last_tit">餐饮美食</H1>
<div class="f1_hot clearfix">
<ul>
<li>
<img src="word/f1-word01.jpg" height="270" width="366" alt="">
<p class="banner_text">
石锅曾经是中国历史上广泛使用的炊具,后来随着冶金技术的发展才逐渐淡出人们的生活。用生态石锅打造而成的美味,不仅在外观上富有一种原生态的美感,给人强烈的视觉刺激。
</p>
</li>
<li>
<img src="word/f1-word02.jpg" height="271" width="369" alt="">
<p class="banner_text">
石锅曾经是中国历史上广泛使用的炊具,后来随着冶金技术的发展才逐渐淡出人们的生活。用生态石锅打造而成的美味,不仅在外观上富有一种原生态的美感,给人强烈的视觉刺激。
</p>
</li>
</ul>
</div>
<!-- end f1_hot -->
<div class="f1_list clearfix">
<ul>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具有百年传统工艺,秉承港式甜品的精髓。精优质,保证所有产……</p>
<p class="shop_bottom clearfix">
<span class="list list_f4">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f4">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具年传统工艺,秉承港式甜品的精髓。精挑细材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f4">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选食材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f4">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="content_f2 c_f5" id="F5">
<H1 class="last_tit">服装鞋包</H1>
<div class="f2_hot clearfix">
<ul>
<li class="f2_one">
<img src="word/f2-word01.jpg" height="207" width="287" alt="">
</li>
<li class="f2_two" >
<h2 class="f2_hot_tit">亚洲潮牌“ H&F.LOVE( 槿爱 ) ”潮流女装</h2>
<p class="f2_hot_time clearfix">
<span class="user">懂爱女装</span>
<span class="time">2015-4-29</span>
</p>
<p class="f2_hot_text">
亚洲潮牌“ H&F.LOVE( 槿爱 ) ”来自于国际时尚之都韩国。引导潮流,提倡简约风尚,是槿爱品牌一直固有的一种文化和内含!人们对生活水平,生活品味渐进提高同时,对于时尚,潮流更加关注,更加追求! 对时尚,潮流的嗅觉越来越敏感,喜欢有新鲜感的东西,爱玩,敢穿,”潮”应运而生!“潮”已渐渐成为一种文化,一种精神,一种代表年轻,自由,街头东西。没有人不喜欢这样的美好!
</p>
</li>
</ul>
</div>
<!-- end f1_hot -->
<div class="f2_list clearfix">
<ul>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具有百年传统工艺,秉承港式甜品的精髓。精优质,保证所有产……</p>
<p class="shop_bottom clearfix">
<span class="list list_f5">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f5">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具年传统工艺,秉承港式甜品的精髓。精挑细材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f5">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选食材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f5">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="content_f3 c_f6 clearfix" id="F6">
<H1 class="last_tit">美容养生</H1>
<div class="f3_hot ">
<ul>
<li class="f3_one">
<img src="word/f3-word01.jpg" height="166" width="350" alt="">
</li>
<li class="f3_two">
<h2 class="f3_hot_tit">亚洲潮牌“ H&F.LOVE( 槿爱 ) ”潮流女装</h2>
<p class="f3_hot_time clearfix">
<span class="user">懂爱女装</span>
<span class="time">2015-4-29</span>
</p>
<p class="f3_hot_text">
亚洲潮牌“ H&F.LOVE( 槿爱 ) ”来自于国际时尚之都韩国。引导潮流,提倡简约风尚,是槿爱品牌一直固有的一种文化和内含!人们对生活水平,生活品味渐进提高同时,对于时尚,潮流更加关注,更加追求! 对时尚,潮流的嗅觉越来越敏感,喜欢有新鲜感的东西,爱玩,敢穿,”潮”应运而生!“潮”已渐渐成为一种文化,一种精神,一种代表年轻,自由,街头东西。没有人不喜欢这样的美好!
</p>
</li>
</ul>
</div>
<!-- end f1_hot -->
<div class="f3_list">
<ul>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具有百年传统工艺,秉承港式甜品的精髓。精优质,保证所有产……</p>
<p class="shop_bottom clearfix">
<span class="list list_f6">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f6">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具年传统工艺,秉承港式甜品的精髓。精挑细材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f6">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选食材,保证所有产……</p>
<p class="shop_bottom">
<span class="list list_f6">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
</ul>
</div>
</div>
</div><!-- end content_letf -->
<div class="content_right">
<div class="roll_ad">
<div id="ad_show" class="ad_carousel1 slide">
<!-- 设置轮播图片 -->
<div class="carousel-inner">
<div class="item active">
<a href="##">
<img src="word/ad-top-imges.jpg" height="340" width="370" alt="">
</a>
</div>
<div class="item">
<a href="##">
<img src="word/ad-top-imges.jpg" height="340" width="370" alt="">
</a>
</div>
<div class="item">
<a href="##">
<img src="word/ad-top-imges.jpg" height="340" width="370" alt="">
</a>
</div>
</div>
<a class="left carousel-control a_bg" onclick="ad_show" href="##" role="button">
<span class="banner_page"></span>
</a>
<a class="right carousel-control a_bg" onclick="ad_show" href="##" role="button">
<span class="banner_next"></span>
</a>
</div>
</div>
<div class="lottery">
<img src="word/right-word01.jpg" height="194" width="371" alt="">
</div>
<div class="member clearfix">
<h1 class="last_tit">返现会员</h1>
<p class="member_list">
<span class="member_list_h">vip通道</span>
<span class="member_list_h">银卡通道</span>
<span class="member_list_h">金卡通道</span>
</p>
<div id="wrap7" class="wrap">
<ul>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎1</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎2</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎3</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎4</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎5</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎6</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎7</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎8</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎9</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
</ul>
</div>
<div id="wrap8" class="wrap">
<ul>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎1</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎2</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎3</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎4</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎5</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎6</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎7</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎8</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎9</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
</ul>
</div>
<div id="wrap9" class="wrap">
<ul>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎1</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎2</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎3</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎4</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎5</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎6</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎7</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎8</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎9</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
</ul>
</div>
<!-- <marquee direction=up scrollAmount=2 width=120 height=290 onmouseover=stop() onmouseout=start()>
<ul>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎1</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎2</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎3</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
<li>
<img src="word/right-word02.jpg" height="62" width="102" alt="">
<p class="name">张莎莎4</p>
<p class="time">2015-4-30</p>
<p class="maney">¥:122</p>
</li>
</ul>
</marquee> -->
</div>
<div class="recommend">
<h1 class="last_tit">精品推荐</h1>
<div class="recommend_top" style="position: relative">
<img src="word/right-word03.jpg" height="251" width="372" alt="">
<p class="banner_text">石锅曾经是中国历史上广泛使用的炊具,后来随着冶金技术的发展才逐渐淡出人们的生活。用生态石锅打造而成的美味,不仅在外观上富有一种原生态的美感,给人强烈的视觉刺激。</p>
</div>
<div class="f3_list">
<ul>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具有百年传统工艺,秉承港式甜品的精髓。精优质,保证所有产……</p>
<p class="shop_bottom clearfix">
<span class="list">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>
<img class="shop_img" src="word/f1-word03.jpg" height="86" width="107" alt="">
<div class="shop_info">
<h1 class="tit">铭记甜品</h1>
<p class="info">茗记甜品,具传统工艺,秉承港式甜品的精髓。精挑细选材,保证所有产……</p>
<p class="shop_bottom">
<span class="list">甜品</span>
<span class="time">2015-4-29</span>
</p>
</div>
</li>
<li>