﻿@charset "utf-8";
/*公共样式*/
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,p,body{
	padding:0;
	margin:0;
}
ul,li{
	 list-style:none;
}
img{
	border:0 none;
}
input,textarea {
	outline: none;
}
a{ 
	text-decoration:none;
	color:#666;
	transition: all 0.3s;
	-moz-transition: all 0.3s; 
	-webkit-transition: all 0.3s; 
	-o-transition: all 0.3s;
}
a:hover{
	text-decoration: none;
	color: #04923e;
}
@media only screen and (min-width:1400px ) {
	.container {
		width: 1280px;
	}
}
@media only screen and (max-width:1199px ) {
	body {
		font-size: 14px;
		line-height: 24px;
	}
}
.fl{
	float:left;
	display:inline;
}
.fr{
	float:right;
	display:inline;
}
.clear{
	clear:both;
}
.bg_none{
	background:none !important;	
}
.bd_none{
	border:none !important;	
}
html,body{
      -webkit-text-size-adjust:none;
}
/*头部*/
header{	
	position: relative;
	z-index: 30;
	height: 100px;
	width: 100%;
	background: #fff;
}
header .container {
	height: 100px;
	position: relative;
	padding: 0;
	overflow: hidden;
}
.container {
	padding: 0;
}
.logo{
	margin: 9px 0 0 0;
	float: left;
}
.logo img{
	display: block;
}
.top-phone {
	float: right;
	line-height: 30px;
	margin-top: 35px;
}
.phone-list {
	float: left;
	margin-left: 40px;
}
.phone-list span {
	font-size: 18px;
	color: #000;
	font-weight: bold;
	vertical-align: middle;
	margin-right: 5px;
}
.phone-list em {
	font-size: 24px;
	color: #da251e;
	font-weight: bold;
	font-style: normal;
	vertical-align: middle;
}
@media only screen and (max-width:1199px ) {
	.phone-list {
		float: none;
	}
	.top-phone {
		margin-top: 20px;
	}
}
@media only screen and (max-width:991px ) {
	.top-phone {
		display: none;
	}
}
.nav-wrap {
	height: 50px;
	background: #04923E;
	width: 100%;
	box-shadow: 0 3px 3px rgba(0,0,0,.15);
	position: relative;
	z-index: 10;
}
.nav>li{
	float: left;
	position: relative;
	margin-right: 20px;
}
.nav>li:last-child {
	margin-right: 0;
}
.nav>li>a{
	display: block;
	width: 140px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 16px;
	color:#fff;
	padding: 0;
}
.nav>li:hover>a,
.nav>li:focus>a{
	background: #DA251E;
	color: #fff;
}
.nav>li.active>a{
	background: #DA251E;
	color: #fff;
}
.nav-dl {
	display: none;
	position: absolute;
	left: 0;
	top: 50px;
	width: 100%;
	text-align: center;
	background: none;
	box-shadow: 0 5px 5px rgba(0,0,0,.15);
	z-index: 100;
}
.nav-dl dd {
	background: #fff;
	padding: 0 5px;
	margin-top: 2px;
}
.nav-dl dd a{
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: #333;
	display: block;
	text-align: center;
	margin-bottom: ;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.nav-dl dd a:hover {
	color: #04923e;
}
.products-dl {
	width: 180px;
	text-align: left;
}
@media only screen and (max-width:1399px ) {
	.nav>li {
	    margin-right: 6px;
	}
}
@media only screen and (max-width:1199px ) {
	.nav>li {
	    margin-right: 0px;
	}
	.nav>li>a{
		width: 120px;
	}
	.nav-dl dd a {
		font-size: 14px;
	}
}
@media only screen and (max-width:991px ) {
	.nav-wrap {
		display: none;
	}
}


#navToggle{
	display: none;
	overflow: hidden;
	position: absolute;
	cursor: pointer;
	box-sizing: border-box;
	width: 70px;
	height: 70px;
	padding: 15px;
	background: none;
	padding: 0;
	right: 0px;
	top: 0px;
	z-index: 999;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;	
}
#navToggle::before {
    margin-top: -7px;
}
#navToggle::after {
    margin-top: 7px;
}
#navToggle span,
#navToggle::after,
#navToggle::before {
    height: 2px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #000;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
#navToggle.show span {
    opacity: 0;
}
#navToggle span, #navToggle::after, #navToggle::before {
    height: 3px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #333;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
#navToggle.show::before {
    margin-top: 0;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#navToggle.show::after {
    margin-top: 0;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mask{
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
	display:none;
}
#mobileMenu {
    position: fixed;
    right: -250px;
    top: 0;
    margin: 0;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1110;
    background: #fff;
}
#mobileMenu .hello {
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #F0F0F0;
	padding-left: 25px;
	position: relative;
	padding-top: 8px;
}
#mobileMenu .hello h3{
	font-size: 20px;
	color: #000;
	font-weight: bold;
	line-height: 54px;
}
#mobileMenu .hello .cha{
	cursor: pointer;
	height: 40px;
	width: 40px;
	position: absolute;
	right: 15px;
	top: 15px;
	background: url(../images/cha.png) no-repeat;
}
#mobileMenu .menu li>a {
    display: block;
    font-size: 14px;
    padding-left: 25px;
    color: #666;
    line-height: 45px;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
}
#mobileMenu .menu li.sub>a::after {
	content: "";
	display: block;
	background: url(../images/arrow_icon.png) no-repeat;
	width: 16px;
	height: 9px;
	position: absolute;
	right: 25px;
	top: 18px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.sub-dl {
	display: none;
}
.sub-dl dd a {
	height: 40px;
	line-height: 40px;
	padding-left: 40px;
	font-size: 14px;
	color: #666;
	background: #f9f9f9;
	display: block;
}
#mobileMenu .menu li.active>a {
	background-color: #04923E;
    text-decoration: none;
    color:#fff;
}
#mobileMenu .menu li.on>a {
	background-color: #04923E;
	color: #fff;
}
#mobileMenu .menu li.on>a::after {
	transform: rotate(180deg);
}
.mobile_search{
	border-bottom: 1px solid #e6e6e6;
}
#mobileMenu .menu li.login-li>a::after {
	display: none;
}

#mobileMenu.show {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
}
#page.show {
    /*-webkit-transform: translateX(200px);
    transform: translateX(200px);*/
    width: 100vw;
    height: 100vh;
}
#page {
    transition: all 0.3s ease-out;
    overflow: hidden;
}
.show {
    display: block !important;
}
html.show, body.show {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    position: fixed;
    -webkit-overflow-scrolling: auto;
    -webkit-transform: translateZ(0px);
}

@media only screen and (max-width:991px ) {
	header{
		height: 70px;
	}
	.search-icon {
		display: none;
	}
	header .nav{
		display: none;
	}
	#navToggle{
		display: block;
	}
	header .container {
		width: 100%;
		padding: 0 15px;
		height: 70px;
	}
	.header-icon {
		display: none;
	}
	.logo {
		margin-top: 15px;
		height: 40px;
	}
	.logo img {
		height: 40px;
	}
	.container {
		padding: 0 15px;
	}
}

/*banner*/
#banner .swiper-pagination-bullet {
	height: 4px;
	width: 50px;
	background: #fff;
	opacity: 1;
	border-radius: 0;
}

#banner .swiper-pagination-bullet-active {
	background: #FAA93E;
}
#banner .swiper-slide img {
    width: 100%;
    display: block;
    min-height: 200px;
}
#banner .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 15px;
}
@media only screen and (max-width:991px ) {
	#banner {
		margin-top: 0;
	}	
}
@media only screen and (max-width:767px ) {
	#banner .swiper-pagination-bullet {
		width: 30px;
	}
	#banner .swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 8px;
	}
}
/*首页产品中心*/
.products {
	margin: 70px auto 60px;
}
.pro-title {
	margin-bottom: 45px;
	overflow: hidden;
	position: relative;
}
.pro-title h3 {
	float: left;
}
.pro-title h3 span {
	line-height: 55px;
	font-size: 36px;
	color: #333333;
	font-weight: bold;
}
.pro-title h3 em {
	line-height: 35px;
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	font-style: normal;
}
.pro-title h4 {
	position: absolute;
	right: 0;
	bottom: 0;
	overflow: hidden;
	line-height: 35px;
}
.pro-title h4 a {
	padding-right: 35px;
	font-size: 16px;
	color: #333;
	background: url(../images/pro_list_bg.png) no-repeat calc(100% - 10px) center;
}
.pro-title h4 a:hover {
	color: #04923e;
}
.pro-title h4 a:last-child {
	padding-right: 0;
	background: none;
}
.pro-ul {
	width: calc(100% + 26px);
}
.pro-ul li {
	width: calc(25% - 26px);
	margin-right: 26px;
	float: left;
}
.pro-a {
	display: block;
	/*max-width: 300px;*/
	margin: 0 auto;
}
.pro-img {
	overflow: hidden;
}
.pro-img img {
	display: block;
	width: 100%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.pro-a p {
	overflow: hidden;
	height: 50px;
	line-height: 50px;
	color: #333;
	text-align: center;
}
.pro-a:hover p {
	color: #04923e;
}
.pro-a:hover .pro-img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
@media only screen and (max-width:1199px ) {
	.pro-title h3 {
		float: none;
	}
	.pro-title h3 span {
		font-size: 30px;
	}
	.pro-title h4 {
		position: relative;
		left: 0;
		top: 0;
		bottom: auto;
	}
}
@media only screen and (max-width:991px ) {
	.products {
		margin: 45px auto;
	}
	.pro-title {
		margin-bottom: 20px;
	}
	.pro-title h4 a {
		display: block;
		float: left;
		padding: 0;
		margin-right: 20px;
		background: none;
	}
	.pro-ul li {
	    width: calc(33.33% - 26px);
	}
}
@media only screen and (max-width:767px ) {
	.products {
		margin: 30px auto;
	}
	.pro-title {
		margin-bottom: 15px;
	}
	.pro-title h3 span {
	    font-size: 25px;
	}
	.pro-title h4 a {
	    font-size: 14px;
	}
	.pro-ul li {
	    width: calc(50% - 26px);
	}
}
@media only screen and (max-width:450px ) {
	.pro-ul {
		width: 100%;
	}
	.pro-ul li {
	    width: 100%;
	    float: none;
	}
	.pro-title h4 a {
		line-height: 24px;
	}
}

/*公司简介 厂房设备*/
.about-wrap {
	overflow: hidden;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}
.about-box {
	width: 50%;
	float: left;
	position: relative;
}
.about-box>img {
	display: block;
	width: 100%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.about-box:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.about-box-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.3);
	/*opacity: 0;
	-webkit-transition: opacity .3s; 
	-moz-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;*/
}
.about-box-content {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-width: 600px;
	width: calc(100% - 60px);
	color: #fff;
	height: 320px;
}
.about-box-content h4 {
	line-height: 50px;
	font-size: 36px;
	color: #fff;
	margin-bottom: 45px;
	text-align: center;
}
.about-nr {
	max-height: 90px;
	overflow: hidden;
	margin-bottom: 70px;
	color: #fff;
}
.more-a {
	display: block;
	margin: 0 auto;
	width: 136px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background: #04923E;
	color: #fff !important;
}
/*.about-box:hover .about-box-wrap {
	opacity: 1;
}*/
.eq-box {
	float: left;
	width: 50%;
}
.eq-box a {
	display: block;
	overflow: hidden;
}
.eq-box a img {
	display: block;
	width: 100%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.eq-box a:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
@media only screen and (max-width:1199px ) {
	.about-box-content h4 {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.about-box-content {
		height: 210px;
	}
	.about-nr {
		margin-bottom: 20px;
	}
}
@media only screen and (max-width:991px ) {
	.about-box {
		width: 100%;
		float: none;
		max-width: 600px;
		margin: 0 auto 20px;
	}
	.eq-box {
		float: none;
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}
}
@media only screen and (max-width:767px ) {
	.about-box-content {
		height: 180px;
	}
	.about-box-content h4 {
		font-size: 25px;
		line-height: 40px;
		margin-bottom: 10px;
	}
	.about-nr {
		max-height: 92px;
	}
}

/*新闻中心*/
.index-news {
	margin: 65px auto 80px;
}
.index-title {
	text-align: center;
	margin-bottom: 40px;
}
.index-title h3 {
	line-height: 55px;
	font-size: 36px;
	color: #333;
	font-weight: bold;
}
.index-title p {
	line-height: 35px;
	height: 35px;
}


@media only screen and (max-width:991px ) {
	.index-title h3 {
		line-height: 50px;
		font-size: 30px;
	}
	.index-news {
		margin: 45px auto;
	}	
}
@media only screen and (max-width:767px ) {
	.index-title {
		margin-bottom: 15px;
	}
	.index-title h3 {
		line-height: 40px;
		font-size: 25px;
	}
	.index-news {
		margin: 30px auto;
	}
}
.news-scroll .item {
	padding: 0 14px;
}
.news-list {
	max-width: 408px;
	width: 100%;
	margin: 0 auto;
}
.news-list-img a {
	display: block;
	overflow: hidden;
}
.news-list-img a img {
	display: block;
	width: 100%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.news-list-img a:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.news-list-bottom {
	background: #EFEFEF;
	height: 227px;
	padding: 25px 30px 0;
}
.news-list-bottom h4 {
	line-height: 30px;
	font-size: 14px;
}
.news-list-bottom h3 {
	line-height: 35px;
	height: 35px;
	overflow: hidden;
}
.news-list-bottom h3 a {
	font-size: 20px;
	color: #333;
}
.news-list-bottom h3 a:hover {
	color: #04923E;
}
.news-list-ms {
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	margin: 10px 0 15px;
}
.news-list-more {
	display: block;
	margin: 0 auto;
	width: 136px;
	height: 36px;
	line-height: 34px;
	border: 1px solid #D2D2D2;
	text-align: center;
	color: #999;
}
.news-list-more:hover {
	color: #fff;
	background: #04923E;
	border: 1px solid #04923E;
}
@media only screen and (max-width:991px ) {
	.news-list-bottom {
		padding: 15px 15px 0;
	}
	.news-list-bottom h3 {
		line-height: 30px;
		height: 30px;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.news-list-bottom h3 a {
		font-size: 18px;
	}
	.news-list-ms {
		margin: 5px 0 10px;
	}
	.news-list-bottom {
		height: 190px;
	}
}
@media only screen and (max-width:479px ) {
	.news-scroll .item {
		padding: 0;
	}
}

/*加入我们*/
.join {
	height: 500px;
	background: url(../images/join_bg.jpg) no-repeat center;
	background-size: cover;
	padding-top: 175px;
}
.join h4 {
	text-align: center;
	color: #fff;
	line-height: 50px;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 45px;
}
@media only screen and (max-width:991px ) {
	.join {
		height: 300px;
		padding-top: 75px;
	}
	.join h4 {
		font-size: 30px;
	}
}
@media only screen and (max-width:767px ) {
	.join {
		height: 240px;
		padding-top: 60px;
	}
	.join h4 {
		font-size: 20px;
		margin-bottom: 20px;
	}
}

/*栏目列表*/
.column {
	margin: 80px auto;
}
.column-ul {
	width: calc(100% + 28px);
}
.column-ul li {
	float: left;
	width: calc(25% - 28px);
	margin-right: 28px;
}
.column-a {
	display: block;
	width: 100%;
	background: #EEEEEE;
	height: 372px;
	padding: 45px 20px 0;
}
.column-icon {
	height: 100px;
	width: 100%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.column-a:hover .column-icon {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.column-ul li:nth-child(1) .column-icon {
	background: url(../images/menu_icon1.png) no-repeat center;
}
.column-ul li:nth-child(1) .column-a:hover .column-icon {
	background: url(../images/menu_icon1a.png) no-repeat center;
}
.column-ul li:nth-child(2) .column-icon {
	background: url(../images/menu_icon2.png) no-repeat center;
}
.column-ul li:nth-child(2) .column-a:hover .column-icon {
	background: url(../images/menu_icon2a.png) no-repeat center;
}
.column-ul li:nth-child(3) .column-icon {
	background: url(../images/menu_icon3.png) no-repeat center;
}
.column-ul li:nth-child(3) .column-a:hover .column-icon {
	background: url(../images/menu_icon3a.png) no-repeat center;
}
.column-ul li:nth-child(4) .column-icon {
	background: url(../images/menu_icon4.png) no-repeat center;
}
.column-ul li:nth-child(4) .column-a:hover .column-icon {
	background: url(../images/menu_icon4a.png) no-repeat center;
}
.column-title {
	text-align: center;
}
.column-title h3 {
	line-height: 32px;
	font-size: 20px;
	color: #333;
}
.column-title h4 {
	line-height: 26px;
	color: #999;
	text-transform: uppercase;
	padding-bottom: 10px;
	background: url(../images/column_line.png) no-repeat center bottom;
}
.column-ms {
	margin-top: 12px;
	color: #666;
	text-align: center;
}
@media only screen and (max-width:991px ) {
	.column {
		margin: 45px auto;
	}
	.column-ul li {
		float: left;
		width: calc(50% - 28px);
		margin-right: 28px;
		margin-bottom: 28px;
	}
	.column-a {
		padding: 20px;
		height: 280px;
	}
	.column-ms {
		max-height: 68px;
		overflow: hidden;
	}
	
}
@media only screen and (max-width:767px ) {
	.column-title h4 {
		font-size: 16px;
	}
	.column {
	    margin: 30px auto 10px;
	}
}
@media only screen and (max-width:449px ) {
	.column-ul {
		width: 100%;
	}
	.column-ul li {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 28px;
	}
	.column-a {
		padding: 15px;
		height: auto;
	}
	.column-icon {
		height: 80px;
	}
}

/*底部内容*/
footer {
	color: #fff;
	background: #2D2D2D;
}
footer a {
	color: #fff !important;
}
.footer-content {
	overflow: hidden;
	padding: 50px 0 45px;
}
.footer-ul {
	float: left;
	overflow: hidden;
}
.footer-ul li {
	float: left;
	margin-right: 110px;
}
.footer-ul li:last-child {
	margin-right: 0;
}
.footer-ul li dl dt {
	line-height: 35px;
	margin-bottom: 15px;
}
.footer-ul li dl dt a {
	font-size: 20px;
}
.footer-ul li dl dd {
	line-height: 30px;
}
.footer-ul li dl dd a {
	color: #c9c9c9;
}
.footer-ul li dl dd a:hover {
	color: #fff;
}
.ewm-box {
	position: relative;
	float: right;
	overflow: hidden;
}
.ewm-title {
	line-height: 35px;
	margin-bottom: 15px;
	font-size: 20px;
}
.ewm-list {
	float: left;
	margin-right: 20px;
}
.ewm-list:last-child {
	margin-right: 0;
}
.ewm-list img {
	display: block;
	width: 134px;
}
.ewm-list p {
	text-align: center;
	line-height: 35px;
	color: #c9c9c9;
}
.copyright {
	line-height: 30px;
	padding: 25px 0;
	border-top: 1px solid #C9C9C9;
	text-align: center;
	color: #c9c9c9;
}
.copyright>span:first-child {
	float: left;
}
.copyright>span:last-child {
	float: right;
}
@media only screen and (max-width:1399px ) {
	.footer-ul li {
		margin-right: 86px;
	}
}
@media only screen and (max-width:1199px ) {
	.footer-ul li dl dt a {
		font-size: 18px;
	}
	.footer-ul li {
		margin-right: 50px;
	}
}

@media only screen and (max-width:991px ) {
	.footer-ul {
		display: none;
	}
	.ewm-box {
		border: none;
		width: 290px;
		margin: 0 auto;
		float: none;
	}
	.ewm-title {
		text-align: center;
	}
	.footer-content {
		padding: 30px 0;
	}
	.copyright {
		padding: 15px 0;
	}
}
@media only screen and (max-width:767px ) {
	.copyright {
		padding: 15px;
	}
	.copyright>span {
		display: block;
		float: none !important;
	}
	.ewm-list img {
		width: 110px;
	}
	.ewm-box {
		width: 242px;
	}
	.footer-content {
		padding: 15px 0;
	}
	.copyright>span {
		line-height: 24px;
	}
}


/*内页样式*/
.inside-banner{
	width: 100%;
}
.inside-banner img{
	display: block;
	width: 100%;
	min-height: 150px;
}
.sub-nav-wrap {
	width: 100%;
	background: #EFEFEF;
}
.sub-nav-wrap .container {
	overflow: hidden;
}
.sub-nav-wrap .container a {
	display: block;
	float: left;
	width: 140px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-right: 1px solid #d2d2d2;
	color: #333;
}
.sub-nav-wrap .container a:hover {
	background: #04923E;
	color: #fff;
}
.sub-nav-wrap .container a.active {
	background: #04923E;
	color: #fff;
}
.main {
	overflow: hidden;
	margin: 80px auto;
}
.main-box {
	min-height: 300px;
}
.main-box>img {
	width: 100%;
}
.main-box>p>img,
.main-box>div>img {
	width: 100%;
}
@media only screen and (max-width:991px ) {
	.main {
		margin: 45px auto;
	}
	.sub-nav-wrap .container a {
		width: 120px;
	}
}
@media only screen and (max-width:767px ) {
	.main {
		margin: 30px auto;
	}
	.sub-nav-wrap.pro-nav-wrap {
		display: none;
	}
	.sub-nav-wrap .container {
		padding: 0;
	}
	.sub-nav-wrap .container a {
		width: 100px;
		height: 40px;
		line-height: 40px;
	}
}



/*新闻*/
.first-news {
	overflow: hidden;
}
.news-left {
	float: left;
	width: 50%;
	padding-right: 27px;
}
.news-left a {
	display: block;
	overflow: hidden;
}
.news-left a img {
	display: block;
	width: 100%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.news-left a:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.news-right {
	float: right;
	padding-left: 27px;
	width: 50%;
	padding-top: 50px;
}
.news-right h3 {
	line-height: 45px;
	height: 45px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.news-right h4 {
	font-size: 16px;
}
.news-right h3 a {
	font-size: 24px;
	color: #333;
	font-weight: bold;
	
}
.news-right h3 a:hover {
	color: #04923e;
}
.news-right h4 {
	color: #999;
	margin-top: 15px;
}
.news-ms {
	margin: 15px 0 30px;
	overflow: hidden;
}
.news-right a {
	color: #04923e;
}
.news-ul {
	margin-top: 55px;
}
.news-ul li {
	overflow: hidden;
	margin-bottom: 28px;
}
.news-ul li a {
	display: block;
	padding: 25px 35px 30px;
	background: #EFEFEF;
}
.news-ul li a h3 {
	font-size: 24px;
	color: #333;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.news-ul li a:hover h3 {
	color: #04923e;
}
.news-ul li a h4 {
	font-size: 16px;
	color: #999;
	margin: 10px 0;
}
.news-ul li a p {
	height: 60px;
	overflow: hidden;
	color: #666;
}
@media only screen and (max-width:1199px ) {
	.news-right {
		padding-top: 10px;
	}
	.news-ms {
		max-height: 120px;
	}
	.news-ul li a p {
		height: 48px;
	}
}
@media only screen and (max-width:991px ) {
	.news-left,
	.news-right {
		width: 100%;
		float: none;
		padding: 0;
		max-width: 600px;
		margin: 0 auto;
	}
	.news-right {
		margin-top: 20px;
	}
	.news-right h3 {
	    line-height: 30px;
	    height: 30px;
	}
	.news-right h3 a {
		font-size: 20px;
		line-height: 30px;
	}
	.news-right h4 {
		font-size: 16px;
		margin-top: 10px;
	}
	.news-ms {
		margin: 10px 0;
	}
	.news-ul li {
		margin-bottom: 20px;
	}
	.news-ul li a {
		padding: 20px;
	}
	.news-ul li a h3 {
		height: 30px;
		line-height: 30px;
		font-size: 20px;
	}
	.news-ul {
	    margin-top: 40px;
	}
}
@media only screen and (max-width:767px ) {
	.news-ul {
	    margin-top: 25px;
	}
	.news-right h3 a {
	    font-size: 18px;
	}
	.news-ul li a h3 {
		font-size: 18px;
	}
	.news-right h4,
	.news-ul li a h4 {
		font-size: 14px;
	}
	.news-ul li a {
		padding: 15px;
	}
}




.news-title{
	line-height:30px;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	margin-bottom:20px;	
	color:#111;
}
.news-content{
	/*margin: 20px 0px;*/
	min-height: 200px;
}
@media only screen and (max-width:767px ) {
	.news-content img {
		width: 100%;
	}
}
.inside-page{
	width:100%; 
	line-height:30px; 
	text-align:left; 
	margin-top:20px; 
	border-top:solid 1px #CCCCCC;	
	padding-top:5px;
}

@media (max-width: 449px) {
	.col-xss-12{
		width: 100%;
	}
}
.page-box{
	height: 32px;
	text-align: center;
	margin-top: 30px;
	font-size: 0;
}
.page-box a{
	display: inline-block;
	height: 32px;
	border: 1px solid #DFDFDF;
	line-height: 30px;
	padding: 0px 12px;
	color: #969696;
	margin:0px 3.5px;
	font-size: 14px;
}
.page-box span{
	display: inline-block;
	height: 32px;
	line-height: 30px;
	padding: 0px 12px;
	margin:0px 3.5px;
	font-size: 14px;
	color:#fff;
	background: #04923E;
	border: 1px solid #04923E;
}
@media (max-width: 991px) {
	.page-box{
		margin-top: 20px;
	}
}
@media only screen and (max-width:767px ) {
	.page-box{
		height: 25px;
	}
	.page-box a{
		height: 25px;
		line-height: 23px;
		padding: 0px 8px;
	}
}
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden; 
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* 联系我们 */
.contact_left{
	background: #f3f3f3;
	padding: 61px 54px;
	margin-bottom: 20px;
	width: 50%;
	float: left;
}
.contact_left>h3{
	font-size: 24px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 25px;
}
.contact_left>p{
	font-size: 16px;
	line-height: 30px;
}
.contact_right{
	width: 48%;
	float: right;
}
.contact_right>img{
	display: block;
	width: 100%;
}
@media(min-width: 1199px){
	.contact_right>img{
		height: 293px;
	}
}
.map>img{
	display: block;
	width: 100%;
	padding-bottom: 20px;
}
@media(max-width: 1199px){
	.contact_left,.contact_right{
		width: 100%;
		float: none;
	}
	.contact_right>img{
		margin-bottom: 20px;
	}
}
@media(max-width: 767px){
	.contact_left{
		padding: 15px;
	}
	.contact_left>h3{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.contact_left > p{
		font-size: 14px;
		line-height: 24px;
	}
}
