forked from mfoonirlee/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.bak
1035 lines (743 loc) · 30.1 KB
/
index.html.bak
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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="shortcut icon" href="/dedemao/images/logo-ico.png" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<link rel="icon" href="/dedemao/images/logo-ico.png" type="/dedemao/images/png"/>
<link rel="shortcut icon" href="/favicon.ico" />
<title>君禾园</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--常用CSS-->
<link rel="stylesheet" type="text/css" href="/dedemao/css/basic.css">
<link rel="stylesheet" type="text/css" href="/dedemao/css/style.css">
<!--常用CSS end-->
<style type="text/css">
#ie6-warning{background:#FF0; position:absolute; left:150px; top:10px;font-size:12px; line-height:24px; color:#F00; padding:0 10px;}
#ie6-warning a{text-decoration:none;}
#ie6-warning img{float:right; cursor:pointer; margin-top:4px; margin-left:10px;}
</style>
<!--轮播CSS-->
<link rel="stylesheet" type="text/css" href="/dedemao/css/slide/settings.css">
<link rel="stylesheet" type="text/css" href="/dedemao/css/slide/styles.css">
<!--轮播CSS end-->
<!--tel CSS-->
<link rel="stylesheet" type="text/css" href="/dedemao/css/tel/borrar.css">
<link rel="stylesheet" type="text/css" href="/dedemao/css/tel/estilos.css">
<!--tel CSS end-->
<!--轮播JS-->
<script src="/dedemao/js/slide/jquery.js"></script>
<script src="/dedemao/js/slide/jquery.themepunch.plugins.min.js"></script>
<script src="/dedemao/js/slide/jquery.themepunch.revolution.min.js"></script>
<script src="/dedemao/js/slide/jquery.themepunch.showbizpro.min.js"></script>
<script src="/dedemao/js/slide/jquery.fancybox.pack.js"></script>
<script src="/dedemao/js/slide/jquery.isotope.min.js"></script>
<script src="/dedemao/js/slide/scripts.js"></script>
<!--轮播JS end-->
<!--tel JS-->
<script type="text/javascript" src="/dedemao/js/tel.js"></script>
<!--tel JS end-->
<!--首页滚动JS-->
<script type="text/javascript" src="/dedemao/js/index.js"></script>
<!--首页滚动JS end-->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="/dedemao/css/slide/ie8.css" media="all" />
<![endif]-->
<!--[if lt IE 9]>
<script src="/dedemao/js/slide/html5shiv.js"></script>
<![endif]-->
<!--workJS-->
<script type="text/javascript" src="/dedemao/js/work.js"></script>
<script type="text/javascript">
$(function(){
var H=$(window).width()/2-80
if(H)
{
$(".ss-left").css("width",H)
$(".ss-right").css("width",H)
}
})
</script>
<script>
$(window).resize(function(){
var resolutionList="320,400,640,800,1024,1280,1400,1440,1600,1680,1920,2048,2560,3200,3840,";
var resolutionListt="1280,";
var nowwidth=window.screen.width;
var H=$(window).width()/2-80
if(resolutionList.indexOf(nowwidth + ",")==-1 ){
if(H)
{
$(".ss-left").css("width",H)
$(".ss-right").css("width",H)
}
}
else{
if(H)
{
$(".ss-left").css("width",H)
$(".ss-right").css("width",H)
}
}
});
</script>
<!--workJS end-->
<script type="text/javascript" src="/dedemao/js/jquery.SuperSlide.2.1.1.js"></script>
</head>
<!--导航JS-->
<script>
$(document).ready(function() {
$("#menu1 a").each(function() { //For each list item...
var linkText = $(this).find("div").html(); //Find the text inside of the a tag
});
$("#menu1 a").hover(function() { //On hover...
$(this).find("p").stop().animate({
marginTop: "-20" //Find the span tag and move it up 40 pixels
}, 200);
} , function() { //On hover out...
$(this).find("p").stop().animate({
marginTop: "0" //Move the span back to its original state (0px)
}, 200);
});
});
</script>
<script type="text/javascript" src="/dedemao/js/right-nav.js"></script>
<script>
$(window).bind("scroll", function(){
//当滚动条滚动时
var scroll_top = $(document).scrollTop();
if(scroll_top == 0)
{
$(".M-top").removeClass("M-top-show");
$(".M-top").animate({top:'0px'},"slow");
$(".M-top").css("left","0px");
}
if(scroll_top > 0)
{
$(".M-top").addClass("M-top-show");
$(".M-top").css("left","0px");
$(".M-top").css("top","-165px");
}
if(scroll_top <500)
{
$("#nav").hide();
}
if(scroll_top >=400)
{
$("#nav").show();
}
});
$(function(){
$(".M-menu2").click(function(){
$(".M-top").addClass("M-top-show");
$(".M-top").animate({top:'0px'},"slow");
$("#topcontrol").animate({right:'-122px'},"slow");
})
})
</script>
<!--导航JS end-->
<!--new-->
<link rel="stylesheet" type="text/css" href="/dedemao/css/new/new.css">
<link rel="stylesheet" type="text/css" href="/dedemao/css/new/reset.css">
<link rel="stylesheet" type="text/css" href="/dedemao/css/new/style.css">
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="new/css/styleIE.css" />
<![endif]-->
<script type="text/javascript" src="/dedemao/js/new/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="/dedemao/js/new/modernizr.custom.11333.js"></script>
<!--new end-->
<script type="text/javascript">
$(document).ready(
function () {
var m_st, m_po = 230; //滚动到600像素时显示
$(window).scroll(function(){
m_st = Math.max(document.body.scrollTop || document.documentElement.scrollTop);
if (m_st > m_po)
{
$(".M-design").animate({top:'0px'},1000);
$(".Brand").animate({top:'0px'},1500);
$(".move").animate({top:'0px'},2000);
$(".ui").animate({top:'0px'},2500);
}
});
});
</script>
<script>
$(document).keydown(function(event){
var t=$(document).scrollTop();
if(t>=0 & t<=586){
if (event.keyCode == 40){
$("html,body").animate({scrollTop:600},1000);
return false;
}
if (event.keyCode == 38){
$("html,body").animate({scrollTop:0},1000);
return false;
}
}
if(t>=600 & t<=1240){
if (event.keyCode == 40){
$("html,body").animate({scrollTop:1250},1000);
return false;
}
if (event.keyCode == 38){
$("html,body").animate({scrollTop:0},1000);
return false;
}
}
if(t>=1240 & t<=2090){
if (event.keyCode == 40){
$("html,body").animate({scrollTop:2100},1000);
return false;
}
if (event.keyCode == 38){
$("html,body").animate({scrollTop:600},1000);
return false;
}
}
if(t>=2100 & t<=2240){
if (event.keyCode == 40){
$("html,body").animate({scrollTop:2840},1000);
return false;
}
if (event.keyCode == 38){
$("html,body").animate({scrollTop:1250},1000);
return false;
}
}
if(t>=2240){
if (event.keyCode == 38){
$("html,body").animate({scrollTop:2102},1000);
return false;
}
}
if($(document).scrollTop() >= $(document).height() - $(window).height()){
if (event.keyCode == 38){
$("html,body").animate({scrollTop:2100},1000);
return false;
}
}
})
</script>
<body>
<!--[if lte IE 9]>
<div id="ie6-warning">
<img src="images/cha.png" width="16" height="16" onclick="closeme();" alt="关闭提示" />
您正在使用 Internet Explorer 低版本的IE浏览器。为更好的浏览本页,建议您将浏览器升级到
<a href="http://www.microsoft.com/china/windows/internet-explorer/ie8howto.aspx" target="_blank">IE9</a>
或以下浏览器:<a href="http://www.firefox.com.cn/download/">Firefox</a>
/ <a href="http://www.google.cn/chrome"> Chrome</a>
/ <a href="http://www.apple.com.cn/safari/">Safari</a> / <a href="http://www.Opera.com/">Opera</a> </div>
<script type="text/javascript">
togo = 0;
function closeme(){
var div = document.getElementById("ie6-warning");
div.style.display ="none";
};
function position_fixed(el, eltop, elleft){
// check if this is IE6
if(!window.XMLHttpRequest)
window.onscroll = function(){
el.style.top = (document.documentElement.scrollTop + eltop)+"px";
el.style.left = (document.documentElement.scrollLeft + elleft)+"px";
}
else
el.style.position = "fixed";
};
position_fixed(document.getElementById("ie6-warning"),0, 0);
</script>
<![endif]-->
<div id="wrap">
<div id="container">
<div class="section" id="section-1">
<div class="M-top clearfix">
<div class="M-logo fl"> <a href="/"><img src="/dedemao/images/logo.png"></a> </div>
<div class="M-top-right fr clearfix">
<div class="M-nav clearfix fl" id="menu1">
<ul>
<li><a href="/" class=cur>
<div style="margin-top: 0px;">
<p><span>首页</span><font>首页</font></p>
</div>
</a></li>
<li><a href="/expertise/">
<div style="margin-top: 0px;">
<p><span>我的服务</span>SERVICE</p>
</div>
</a></li>
<li><a href="http://shop.dream-gardens.com.cn">
<div style="margin-top: 0px;">
<p><span>我的菜园</span>GARDEN</p>
</div>
</a></li>
<li><a href="/about/">
<div style="margin-top: 0px;">
<p><span>农场故事</span>STORY</p>
</div>
</a></li>
<li><a href="/life/">
<div style="margin-top: 0px;">
<p><span>慢生活</span>LIFE-OF-EASE</p>
</div>
</a></li>
<li><a href="/news/">
<div style="margin-top: 0px;">
<p><span>君禾动态</span>NEWS</p>
</div>
</a></li>
<li><a href="/#contact"><div style="margin-top: 0px;"><p><span>联系我们</span></p><font>CONTACT</font></div></a></li>
</ul>
</div>
<ul id="iconbar" class="fl">
<li> <a href="/#section-5"> <img src="/dedemao/images/tel-icoo.png" alt="" /> <span style="color:white">请拨打:400 821 3860</span></a></li>
<li> <a href="/#section-5"> <img src="/dedemao/images/tel-ico3o.png" alt="" /><span style="color:white">微信搜索:君禾</span></a> </li>
</ul>
</div>
</div>
<div class="body-wrapper">
<div class="box box-border">
<div class="light-wrapper">
<div class="container inner">
<div class="wide-bannercontainer revolution">
<div class="wide-banner">
<ul>
<li data-transition="fade"><img src="/dedemao/images/banner-bj.png" alt="" />
<div class="caption sfl" data-x="center" data-y="42" data-speed="600" data-start="600" data-easing="easeOutSine" style="margin-left:50px;" ><img src="/dedemao/images/banner-logo.png" alt="" /></div>
<div class="caption lfb" data-x="center" data-y="242" data-speed="700" data-start="1000" data-easing="easeOutExpo"><img src="/dedemao/images/banner-text1.png" alt="" /></div>
<div class="caption lfb" data-x="center" data-y="318" data-speed="700" data-start="1200" data-easing="easeOutExpo"><img src="/dedemao/images/banner-text2.png" alt="" /></div>
<div class="caption lfb" data-x="center" data-y="375" data-speed="700" data-start="1300" data-easing="easeOutExpo"><img src="/dedemao/images/banner-text3.png" alt="" /></div>
</li>
<li data-transition="fade"> <img src="/dedemao/images/banner-bj2.jpg" alt="" />
<div class="caption sfl" data-x="610" data-y="255" data-speed="800" data-start="1200" data-easing="easeOutExpo" style="z-index:9000" ><img src="/dedemao/images/phone.png" alt="" /></div>
<div class="caption sfb" data-x="center" data-y="125" data-speed="800" data-start="100" data-easing="easeOutExpo"><img src="/dedemao/images/women.png" alt="" /></div>
<div class="caption sfl" data-x="270" data-y="310" data-spee/cdn.hi-honor.com/d="800" data-start="800" data-easing="easeOutExpo"><img src="/dedemao/images/glb.png" alt="" /></div>
<div class="caption lfr big white" data-x="center" data-y="33" data-speed="600" data-start="1400" data-easing="easeOutExpo"><img src="/dedemao/images/banner-text4.png"></div>
</li>
<li data-transition="fade"> <img src="/dedemao/images/banner-bj3.jpg" alt="" />
<div class="caption sfl" data-x="center" data-y="145" data-spee/cdn.hi-honor.com/d="800" data-start="800" data-easing="easeOutExpo"><img src="/dedemao/images/2-2.png" alt="" /></div>
<div class="caption lfr big white" data-x="center" data-y="33" data-speed="600" data-start="1400" data-easing="easeOutExpo"><img src="/dedemao/images/banner-text5.png"></div>
</li>
</ul>
</div>
<a href="#top1" class="top-ico1"></a> <a href="#section-3" class="top-ico6"></a>
<div id="top1"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="section-2"> </div>
<div class="section section-2">
<div class="M-what-top"> <img src="/dedemao/images/what-title.png"> </div>
<div class="M-bottom-border"></div>
<div class="M-what-title">回归自然的探索之旅</br><font size="3px">Back To Nature</font></div>
<script>
$(function(){
if($.browser.safari && navigator.userAgent.toLowerCase().match(/chrome/) == null) {
$(".M-what").css("height","192px")
}
})
</script>
<div class="M-what clearfix" style=" overflow:hidden !important; height:198px;position:relative">
<a href="http://shop.dream-gardens.com.cn/user.php?act=register">
<div class="Brand fl"> <em class="Brand-ico"></em>
<div class="M-design-bottom">
<div class="M-design-title"> <span>加入会员</span> <font>Join Member</font> </div>
<a href="http://shop.dream-gardens.com.cn/user.php?act=register" target="_blank"><span class="M-btn">查看更多</span></a> </div>
</div>
</a> <a href="/expertise/">
<div class="M-design fl" > <em class="M-design-ico"></em>
<div class="M-design-bottom">
<div class="M-design-title"> <span>会员服务</span> <font>Membership Service</font> </div>
<a href="/expertise/" target="_blank"><span class="M-btn">查看更多</span></a> </div>
</div>
</a> <a href="/expertise/#expertise-content5">
<div class="move fl"> <em class="move-ico"></em>
<div class="M-design-bottom">
<div class="M-design-title"> <span>企业客户</span> <font>Corporate Clients</font> </div>
<a href="/expertise/#expertise-content5" target="_blank"><span class="M-btn M-left">查看更多</span></a> </div>
</div>
</a> <a href="/#contact">
<div class="ui fl"> <em class="ui-ico"></em>
<div class="M-design-bottom">
<div class="M-design-title"> <span>联系我们</span> <font>Contact Us</font> </div>
<a href="/#contact"><span class="M-btn">查看更多</span></a> </div>
</div>
</a> </div>
<a href="#section-3" class="top-ico2"></a> </div>
<div id="section-3"></div>
<div class="section section-3" style="height:807px;">
<div class="M-what-top"> <a href="http://shop.dream-gardens.com.cn/" target="_blank"><img src="/dedemao/images/work.png"></a> </div>
<div class="M-bottom-border2" style="margin-bottom:48px;"></div>
<div class="slideTxtBox">
<script>
$(function(){
$(".item7").hover(
function(){
var that=this;
item7Timer=setTimeout(function(){
$(that).find("div").show();
$(that).find("h2").fadeOut(1);
$(that).find("dl").fadeIn(1);
},100);
},
function(){
var that=this;
clearTimeout(item7Timer);
$(that).find("dl").fadeOut(1);
$(that).find("div").hide();
$(that).find("h2").fadeIn(1);
}
)
})
</script>
<div class="bd">
<ul>
<div class="M-work clearfix"> <a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/dedemao/images/20140313040933297.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd>田园风光</dd>
</dl>
</div>
</div>
</a> <a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/dedemao/images/20140313041119231.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd>辛勤耕作</dd>
</dl>
</div>
</div>
</a> <a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/dedemao/images/20140313040726198.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd>菜园实景</dd>
</dl>
</div>
</div>
</a> <a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/dedemao/images/20140313040637877.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd>收成时刻</dd>
</dl>
</div>
</div>
</a> <a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/dedemao/images/20140313035946919.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd>南瓜满地</dd>
</dl>
</div>
</div>
</a> <a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/dedemao/images/20140313035844595.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd>初出萌芽</dd>
</dl>
</div>
</div>
</a> <a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/dedemao/images/20140313035743346.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd>君禾风光</dd>
</dl>
</div>
</div>
</a> <a href="/about">
<div class="M-work-list">
<div class="item6"> <img src="/dedemao/images/20140314102402931.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd>农场故事</dd>
</dl>
</div>
</div>
</a> </div>
</ul>
<ul>
<div class="M-work clearfix">
<a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/uploads/140323/1-1403231240554Y.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd><font color="#ECE9E7">早春红玉</font></dd>
</dl>
</div>
</div>
</a>
<a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/uploads/140323/1-140323113404Y4.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd><font color="#ECE9E7">结球生菜</font></dd>
</dl>
</div>
</div>
</a>
<a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/uploads/140323/1-140323125413501.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd><font color="#ECE9E7">香酥芋</font></dd>
</dl>
</div>
</div>
</a>
<a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/uploads/140323/1-1403231140061W.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd><font color="#ECE9E7">黄秋葵</font></dd>
</dl>
</div>
</div>
</a>
<a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/uploads/140323/1-140323124200334.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd><font color="#ECE9E7">金瓜</font></dd>
</dl>
</div>
</div>
</a>
<a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/uploads/140323/1-140323114059C8.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd><font color="#ECE9E7">红皮土豆</font></dd>
</dl>
</div>
</div>
</a>
<a href="#">
<div class="M-work-list">
<div class="item6"> <img src="/uploads/140323/1-140323114132K2.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd><font color="#ECE9E7">樱桃番茄</font></dd>
</dl>
</div>
</div>
</a>
<a href="http://shop.dream-gardens.com.cn/">
<div class="M-work-list">
<div class="item6"> <img src="/dedemao/images/work-btn.png" width="205" height="205" />
<div class="cornerCC"> </div>
<dl>
<dd><img src="/dedemao/images/dingzhi.png" style="margin-top:67px;"></dd>
</dl>
</div>
</div>
</a> </div>
</ul>
<!--
-->
</div>
<div class="hd clearfix">
<ul>
<li>风光</li>
<li>展示</li>
</ul>
</div>
</div>
<a href="#section-4" class="top-ico3"></a>
<script>jQuery(".slideTxtBox").slide({trigger:"click"});</script>
</div>
<div id="section-4"></div>
<div class="section section-4" style="height:717px;">
<div class="M-what-top"> <a href="/life/" target="_blank"><img src="/dedemao/images/new.png"></a> </div>
<div class="M-bottom-border" style="margin-bottom:43px;"></div>
<div id="ss-container" class="ss-container">
<div class="ss-row ss-medium">
<div class="ss-left"> <a href="#" class="ss-circle ss-circle-1"><img src="/dedemao/images/new-ico1.png"></a> </div>
<div class="ss-right">
<h3> <span><a href="/life/c1/70.html">【慢生活】——寒露24节气,吃什么</a></span> <a href="/life/c1/70.html">选择应季蔬果,选择正确的食材,让反季节食品无处遁寻,确保吃得正确、吃得健康...</a> </h3>
</div>
</div>
<div class="ss-row ss-large">
<div class="ss-left">
<h3> <span><a href="/life/c1/73.html">【慢生活】——寒露24节气,玩什么</a></span> <a href="/life/c1/73.html">重拾24节气民俗文化,立足现代,回望传统,重拾往日的记忆,体味久远的文化...</a> </h3>
</div>
<div class="ss-right"> <a href="#" class="ss-circle ss-circle-2"><img src="/dedemao/images/new-ico1.png"></a> </div>
</div>
<div class="ss-row ss-medium">
<div class="ss-left"> <a href="#" class="ss-circle ss-circle-1"><img src="/dedemao/images/new-ico1.png"></a> </div>
<div class="ss-right">
<h3> <span><a href="/life/c1/99.html">【慢生活】——寒露24节气,做什么</a></span> <a href="/life/c1/99.html">一菜一汤,为您推荐每个节气的时令菜谱,带来健康滋养...</a> </h3>
</div>
</div>
<div class="ss-row ss-large">
<div class="ss-left">
<h3> <span><a href="/life/c2/74.html">【慢生活】——不时不食</a></span> <a href="/life/c2/74.html">每月时令蔬菜推荐,根据时令安排合理的膳食,一月之内,或一日之内,饮食需适时...</a> </h3>
</div>
<div class="ss-right"> <a href="#" class="ss-circle ss-circle-2"><img src="/dedemao/images/new-ico1.png"></a> </div>
</div>
<div class="ss-row ss-medium">
<div class="ss-left"> <a href="#" class="ss-circle ss-circle-1"><img src="/dedemao/images/new-ico1.png"></a> </div>
<div class="ss-right">
<h3> <span><a href="/life/c3/76.html">【慢生活】——玩转活动</a></span> <a href="/life/c3/76.html">源远流长的中国传统节气及民俗,是一种文化基因和情结,早已植入你我心里,君禾园将沿袭这一传统习俗,将包...</a> </h3>
</div>
</div>
<!--
/news/-->
<a href="/life/" class="M-new-btn">查看更多</a> </div>
<a href="#section-5" class="top-ico4"></a> </div>
<div id="section-5"></div>
<div class="section section-5" style="height:820px; overflow:hidden;" id="contact">
<div class="M-what-top"> <img src="/dedemao/images/contact.png"> </div>
<div class="M-bottom-border"></div>
<div class="M-map">
<iframe src="map.html" id="ifrm" name="ifrm" width="100%" height="100%" frameborder="0" scrolling="no" onload="document.all('ifrm').style.height=ifrm.document.body.scrollHeight+30;"></iframe>
<script>
$(function(){
if($.browser.safari && navigator.userAgent.toLowerCase().match(/chrome/) == null) {
$("#ifrm").remove()
}
})
</script>
</div>
<div class="foot">
<div class="foot-content clearfix"> <span class="fl"><font color="#90">乐享君禾,体验自然</font></span>
<div class="fl clearfix" style="margin-left:47px;">
<a href="javascript:void(0);" class="WX-ico"></a>
<a target="blank" class="QQ-ico" href="/" title="上海君禾园艺有限公司"></a>
<a href="http://weibo.com/dreamgardens" target="_blank" class="WB-ico"></a> </div>
<span class="fr m_wnews clearfix"> <span class="fl"><font color="#90">欢迎拨打: <font color="#aed208">400 821 3860</font></font></span> <span id="miniNewsRegion" class="fl" style="line-height:20px; margin-top:40px;">
</span>
<style>
.tempWrap{ margin-top:40px;}
</style>
</span>
<script type="text/javascript">
jQuery(".m_wnews").slide({ mainCell:"#miniNewsRegion", effect:"topLoop", autoPlay:true});
</script>
</div>
<span class="foot-font2">上海君禾园艺有限公司版权所有 沪ICP备11031278号</span>
<span class="foot-font2"><SCRIPT LANGUAGE="JavaScript" >
document.writeln("<a href='https://www.sgs.gov.cn/lz/licenseLink.do?method=licenceView&entyId=dov73ne26zbqq0ili51qzup34d4fmuekgo'><img src='themes/xm2013/images/icon.gif' border=0></a>")
</SCRIPT>
</span>
</div>
<div>
</div>
</div>
</div>
</div>
<ul id="nav" class="clearfix">
<li class="current"><a href="#section-1">顶部<em class="nav-ico fr"></em></a></li>
<li><a href="#section-2">会员<em class="nav-ico fr"></em></a></li>
<li><a href="#section-3">菜园<em class="nav-ico fr"></em></a></li>
<li><a href="#section-4">生活<em class="nav-ico fr"></em></a></li>
<li><a href="#section-5">联系<em class="nav-ico fr"></em></a></li>
</ul>
<div style="display:none">
</div>
</body>
</html>
<!--左侧导航JS-->
<script type="text/javascript" src="/dedemao/js/left-nav/jquery.nav.js"></script>
<script type="text/javascript" src="/dedemao/js/left-nav/jquery.scrollTo.js"></script>
<!--左侧导航JS-->
<script>
$(document).ready(function() {
$('#nav').onePageNav({
begin: function() {
console.log('start');
},
end: function() {
console.log('stop');
},
scrollOffset: 30
});
});
</script>
<!--what-->
<script>
$(".M-design").hover(function() { //On hover...
$(this).find(".M-design-title").stop().animate({
marginTop: "-43" //Find the span tag and move it up 40 pixels
}, 200);
} , function() { //On hover out...
$(this).find(".M-design-title").stop().animate({
marginTop: "0" //Move the span back to its original state (0px)
}, 200);
});
$(".Brand").hover(function() { //On hover...
$(this).find(".M-design-title").stop().animate({
marginTop: "-43" //Find the span tag and move it up 40 pixels
}, 200);
} , function() { //On hover out...
$(this).find(".M-design-title").stop().animate({
marginTop: "0" //Move the span back to its original state (0px)
}, 200);
});
$(".move").hover(function() { //On hover...
$(this).find(".M-design-title").stop().animate({
marginTop: "-43" //Find the span tag and move it up 40 pixels
}, 200);
} , function() { //On hover out...
$(this).find(".M-design-title").stop().animate({
marginTop: "0" //Move the span back to its original state (0px)
}, 200);
});
$(".ui").hover(function() { //On hover...
$(this).find(".M-design-title").stop().animate({
marginTop: "-43" //Find the span tag and move it up 40 pixels
}, 200);
} , function() { //On hover out...
$(this).find(".M-design-title").stop().animate({
marginTop: "0" //Move the span back to its original state (0px)
}, 200);
});
</script>
<!--login-->
<!-- =========================== END FOOTER ======================== -->
<script>
$(window).load(function(){$('.page_spinner').fadeOut(1000);$('body').css({overflow:'visible'})})
</script>
<script>