/* css初始化 */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    position: relative;
    font-family: "microsoft yahei", "PingFangSC Regular", "sans-serif";
}

img {
    vertical-align: bottom;
}

ul,
li {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-weight: inherit;
}

button {
    cursor: pointer;
    /* 定义鼠标形状 */
    outline: none;
    border: none;
}

input {
    border: none;
    outline: none;
}

input::-webkit-input-placeholder{color: #ccc;}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}
/* 公共样式 */
.d-box{
	width: 100%;
	position: relative;
	padding: 60px 0;
}
.header,.nav,.banner{
	margin: 0;
}
.box{
	width: 100%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}
.img img{width: 100%;}
.font14{font-size: 14px;}
.font16{font-size: 16px;}
.font20{font-size: 20px;}
.font24{font-size: 24px;}
.font32{font-size: 32px;}

/* 文本限制行数 */
.text1{
	word-break: keep-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.textn{
	text-align: justify;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}


/*滚动条整体样式*/
body::-webkit-scrollbar {
	width: 6px;
	height: 1px;
}


/*滚动条滑块*/
body::-webkit-scrollbar-thumb {
	border-radius: 6px;
	-webkit-box-shadow: inset 0 0 5px rgba(0,140,129,0.2);
	background: linear-gradient(to right, #42b28e,#288f6e);
}


/*滚动条轨道*/
body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0);
	border-radius: 6px;
	background: #fff;
}


/* 头部 */
header{
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.14);
}
header .box{
	display: flex;
	flex-wrap:wrap;
}
.logo,.nav,.dianhua{
	line-height: 80px;
	height: 80px;
}
.logo img,.dianhua img{
	vertical-align: middle;
}
.nav{
	text-align: center;
	font-size: 20px;
	flex: 1;
	display: flex;
	flex-wrap:wrap;
	margin: 0 2% 0 3%;
}
.nav li{
	flex: 1;
}
.nav li a{
	color: #666;
	display: block;
	transition: all .3s;
}
.nav li a::after{
	content: "";
	display: block;
	width: 80%;
	margin: 0 auto;
	height: 2px;
	background-color: #3e8b2a;
	transition: all .3s;
	transform: scaleX(0);
}
.nav li a:hover::after{
	transform: scaleX(1);
}
.nav li a:hover{
	color: #3e8b2a;
}


/* 手机导航 */
.sp_header{
	height:60px;
	overflow:hidden;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.14);
	position:fixed;
	top: 0;
	left: 0;
	z-index:100;
	width:100%;
	display: none;
}
.sp_header_bj{
	height:60px;
	display: none;
}
.sp_logo{
	padding:14px;
	float:left;
	height:100%;
}

.sp_logo img{
	margin:auto;
	max-height:100%;
}
.sp_nav{
	width:60px;
	float:right;
	position:relative;
	cursor:pointer;
	height:30px;
	margin-top:20px;
}
.sp_nav span{
	display:block;
	background:#333;
	width:28px;
	height:4px;
	border-radius: 4px;
	position:absolute;
	left:10px;
	transition:all ease 0.35s;
}
.sp_nav span:nth-of-type(1){top:0px}
.sp_nav span:nth-of-type(2){top:10px}
.sp_nav span:nth-of-type(3){top:20px}
.sp_nav_se span:nth-of-type(1){top:10px;transform:rotate(45deg)}
.sp_nav_se span:nth-of-type(2){width:0}
.sp_nav_se span:nth-of-type(3){top:10px;transform:rotate(-45deg)}
.sjj_nav{
	position:fixed;
	z-index:1000;
	background:#eee;
	width:50%;
	min-width: 300px;
	height:calc(100% - 60px);
	font-size:14px;
	line-height:40px;
	top:60px;
	right:-100%;
	overflow:auto;
	overflow-x:hidden;
	transition:top ease 0.35s;
}
.nav_show{right:0;}
.sjj_nav>ul>li:first-child{overflow:hidden;border-top:0}
.sjj_nav>ul>li:first-child>a{float:left;width:calc(100% - 70px)}
.sjj_nav>ul>li:first-child .language{float:right;width:70px;overflow:hidden;line-height:30px;margin-top:5px}
.sjj_nav>ul>li:first-child .language a{width:35px;float:left;border-left:1px #ddd solid;text-align:center;color:#999;}
.sjj_nav ul li i{position:absolute;top:5px;right:0px;border-left:1px #ddd solid;height:30px;padding:0px 7px 0 7px;}
.sjj_nav ul li i svg{transform:rotate(-90deg);transition:all ease 0.35s}
.sjj_nav ul li .sjj_nav_i_se svg{transform:rotate(0deg)}
.sjj_nav ul li{border-top:1px #ddd solid;margin-left:20px;position:relative;line-height:40px;font-size:14px}
.sjj_nav>ul >li:last-child{border-bottom:1px #ddd solid;}
.sjj_nav ul li ul{display:none}
.sjj_nav ul li a{color:#666;width:80%}
.sjj_nav ul li ul li a{color:#999;display:block;text-align:left;}
.sjj_nav ul li i svg{width:20px;height:20px;fill:#555;}
.sjj_nav ul li .sjj_nav_i_se svg{fill:#0071ed}
.sjj_nav ul li ul li>ul{margin-left:10px}



/* banner */
.banner{
	width: 100%;
}
.banner img{
	width: 100%;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
	margin: 0 6px;
}
.swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 0.5;
}
.swiper-pagination-bullet-active{
	background-color: #3e8b2a;
	opacity: 1;
}


/* 简介 */
.lm-bt{
	text-align: center;
}
.lm-bt h3{
	color: #3e8b2a;
}
.lm-bt h3::after{
	content: "";
	display: block;
	position: relative;
	left: 0;
	top: 17px;
	z-index: -1;
	border-bottom: 1px solid #e1e4df;
}
.lm-bt span{
	color: #666;
	line-height: 2;
	background-color: #fff;
	padding: 0 20px;
	display: inline-block;
}
.lm-bt span::after{
	content: "";
	display: block;
	width: 11px;
	height: 11px;
	margin: 5px auto;
	background-image: url(../images/ico001.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}

.sy-jj{
	text-align: center;
	line-height: 2;
	color: #666;
	padding-top: 30px;
}
.sy-jj p{
	text-align: center;
	-webkit-line-clamp: 5;
}
.sy-jj a{
	margin-top: 30px;
	display: inline-block;
	background-color: #3e8b2a;
	color: #fff;
	padding: 3px 24px;
}


/* 项目概况 */
.sy-xm-box{
	background-image: url(../images/xm-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 150px 0;
}
.sy-xm{
	float: right;
	width: 60%;
	background-color: rgba(255,255,255,0.85);
	min-width: 800px;
}

.sy-xm-jianjie{
	padding: 40px 0 40px 50px;
	position: relative;
	z-index: 1;
	width: 780px;
}

.sy-xm-jianjie .sy-xm-bt{
	background-image: url(../images/jt.png);
	background-position: center left;
	background-repeat: no-repeat;
	padding:5px 0 5px 84px;
	line-height: 1.2;
}
.sy-xm-jianjie .sy-xm-bt h3{
	color: #3e8b2a;
	width: 60%;
}
.sy-xm-jianjie .sy-xm-bt span{
	color: #999;
}
.sy-xm-jianjie .sy-xm-xq{
	color: #666;
	line-height: 2;
	text-indent: 2em;
	margin-top: 10px;
}
.sy-xm-jianjie .sy-xm-xq a{
	color: #3e8b2a;
}
.sy-xm-banner{
	padding: 16px 25px;
	position: relative;
}
.sy-xm-banner .swiper-button-next2:after,.sy-xm-banner .swiper-button-prev2:after{
	font-size: 28px;
	color: #3e8b2a;
}
.sy-xm-banner .swiper-button-prev2{
    left: 0px;
    right: auto;
}
.sy-xm-banner .swiper-button-next2{
	right: 0px;
	left: auto;
}

.sy-xm-sj{
	display: flex;
	flex-flow: row nowrap;
	text-align: center;
	color: #333;
	padding-top: 10px;
}
.sy-xm-sj li{
	flex: 1;
	border-left: solid 1px #cbc8c6;
}
.sy-xm-sj li:nth-child(1){
	border-left: none;
}

.sy-xm-sj li p span{
	font-size: 40px;
	color: #3E8B2A;
	margin-right: 2px;
	
}


/* 新闻资讯 */
.sy-xinwen-list{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin-top: 40px;
}

.sy-xinwen-list li{
	width: calc(50% - 10px);
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: dotted 1px #999999;
}
.sy-xinwen-list li a{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}
.sy-xinwen-list a .riqi{
	width: 80px;
	height: 80px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	color: #999;
	border: solid 1px #999;
	margin-right: 20px;
	line-height: 1.7;
	transition: all 0.3s;
}
.sy-xinwen-list a .riqi span:nth-child(1){
	border-bottom: solid 1px #999999;
}

.sy-xinwen-list a .title{
	flex: 1;
	color: #666;
	line-height: 1.7;
	width: 0;
}
.sy-xinwen-list a .title h3{
	color: #333;
	font-weight: 700;
	transition: all 0.3s;
}
.sy-xinwen-list a:hover .riqi{
	background-color: rgba(255,255,255,0.8);
}
.sy-xinwen-list a:hover .title h3{
	color: #3E8B2A;
}









/* 预约 */
.yuyue{
	background-image: url(../images/yuyue-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 110px 0;
}
.yuyue .box{
	display: flex;
	flex-wrap: wrap;
}
.yuyue-bt{
	width: 280px;
	height: 280px;
}
.form{
	flex: 1;
	padding: 30px 0 30px 40px;
	display: flex;
	flex-wrap: wrap;
}
.form .anniu{
	width: 180px;
	background-color: #3e8b2a;
	color: #fff;
}
.form-nr{
	flex: 1;
	padding-right: 40px;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}
.form-nr input{
	width: 100%;
	height: 60px;
	border: 1px solid #999;
	background-color: #fff;
	color: #666;
	background-position: 24px center;
	background-repeat: no-repeat;
	padding-left: 60px;
}
.form-nr .name{
	background-image: url(../images/ico10.png);
}
.form-nr .phone{
	background-image: url(../images/ico9.png);
}
.form-nr .problem{
	background-image: url(../images/ico8.png);
}
.form .anniu:hover{
	background-color: #7c9a60;
}

/* 联系方式 */
.lianxi{
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.map{
	margin-right: 30px;
	width: 60%;
}
#dituContent{
	width: 100%;
	height: 400px;
}
.dizhi{
	flex: 1;
	margin-top: 30px;
	color: #333;
	line-height: 2;
}
.dizhi h2{
	font-weight: 700;
}


/* 页脚 */
.footer{
	background-color: #7c9a60;
	color: #fff;
	text-align: center;
	padding: 30px 0!important;
}
.footer a{
	color: #fff;
	margin-left: 20px;
}


/* 内页通用 */
.ny-lujing-box{
	background-color: rgba(230,230,230,0.7);
	padding: 12px 0!important;
}
.ny-lujing{
	color: #333;
}
.ny-lujing a{
	color: #666;
}
.ny-neirong{
	padding: 30px 0!important;
	margin-bottom: 30px;
}
.ny-lm-bt{
	text-align: center;
	margin-bottom: 30px;
	padding: 0 20px;
}
.ny-lm-bt::after{
	content: "";
	display: block;
	margin: 10px auto;
	width: 30px;
	height: 3px;
	border-radius: 4px;
	background-color: #3E8B2A;
}

/* 文章列表 */
.wen-lins li a{
	display: flex;
	align-content: center;
	flex-flow: row nowrap;
	color: #333;
	background-color: #fff;
	width: 100%;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all .3s;
	overflow: hidden;
}
.wen-lins li a img{
	max-width: 200px;
	max-height: 200px;
	border-radius: 6px;
	margin-right: 20px;
}
.wen-lins li a .title{
	flex: 1;
	margin: auto;
}
.wen-lins .title span{
	color: #999;
	margin-bottom: 12px;
	display: block;
}
.wen-lins .title p{
	color: #333;
}
.wen-lins li a:hover{
	transform: scale(1.015);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* 详情页 */
.ny-xp-sj{
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}
.ny-xp-sj span{
	margin-right: 5px;
}
.ny-xp-sj br{
	display: none;
}
.ny-xp{
	background-color: rgba(255,255,255,0.7);
	padding: 20px;
	border: solid 1px #e5e5e5;
	border-top: none;
}
.ny-xp img{
	max-width: 100%;
}

.xiangguan-yuedu{
	margin-top: 40px;
}
.xiangguan-yuedu h3{
	margin-bottom: 12px;
	color: #3E8B2A;
}
.xiangguan-yuedu p{
	margin-bottom: 4px;
}
.xiangguan-yuedu p a{
	color: #333;
}
.xiangguan-yuedu p a:hover{
	color: #3E8B2A;
}

.ny-xp .trailer{
    width: 600px;
	max-width: 100%;
	display: block;
	margin: 0 auto;
}




