﻿@charset "UTF-8";
/*  */
* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body,
html {
	background: #ffffff;
	font-family: 微软雅黑;
}

img {
	border-width: 0;
	border: none;
	display: block;
	margin: 0 auto;
}

input:not([type="radio"]),
input:not([type="file"]),
button,
textarea {
	outline: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
}

ul,
ol,
li,
dl,
dt,
dd {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-moz-user-select: none;

}
/*banner背景图片动画*/
@-webkit-keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
@keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
/*banner */
.index_main{
	background: #f7f7f7;
}
.index_main .section1{
	position: relative;
}
.index_main .section1 .index_banner .item{
	background-size: cover;
	-webkit-background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	height:600px;
	position: relative;
}
.index_main .section1 .index_banner .item.slick-current .scaleBg{
	visibility: visible;
	-webkit-animation:scale-bg 6s linear forwards;
	animation:scale-bg 6s linear forwards;
}
.index_main .section1 .index_banner .items{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.index_main .section1 .index_banner .items:after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0);
}
.index_main .section1 .index_banner .item .inner .block_txt{
	position: absolute;
	top: 44%;
	right: 10px;
	left:10px;
	opacity: 0;
	transform: translateY(40px);
	-webkit-transform: translateY(40px);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.index_main .section1 .index_banner .item.active .inner .block_txt{
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 100ms;
	transition-delay: 100ms;
}
.index_main .section1 .index_banner .item .inner .block_txt h4{
	font-size: 30px;
	color: #fff;
	text-align: center;
	font-family: 'COCO';
}
.index_main .section1 .index_banner .item .inner .block_txt h2{
	color: #fff;
	font-size: 70px;
	font-weight: bold;
	text-align:center;
	letter-spacing:5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h2 span{
	color: #f5c920;
	display: inline-block;
	letter-spacing: 5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h3{
	color: #fff;
	font-size: 22px;
	text-align:center;
	margin-top: 10px;
	letter-spacing: 3px;
}
.index_main .section1 .slick_txt{
	width:30%;
	height: 100%;
	background-color: transparent;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	font-size: 0;
	outline: none;
	border:0;
}
.index_main .section1 .left{
	left: 0;
}
.index_main .section1 .right{
	right:0;
}
.index_main .section1 .slick_txt:hover .slick_arrow{
	opacity: 1;
	visibility: visible;
}
.index_main .section1 .slick_txt .slick_arrow{
	width: 20px;
	height: 36px;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: -18px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
	opacity: 0;
	visibility: hidden;
}
.index_main .section1 .slick_txt .prev{
	background-image:url(../image/ban_prev.png);
	left:60px;
}
.index_main .section1 .slick_txt .next{
	background-image:url(../image/ban_next.png);
	right:60px;
}
.index_main .section1 .slick_txt .prev:hover{
	background-image:url(../image/ban_prev_hover.png);
}
.index_main .section1 .slick_txt .next:hover{
	background-image:url(../image/ban_next_hover.png);
}
.index_main .section1 .number{
	position: absolute;
	bottom:4%;
	left: 50%;
	padding-bottom: 5px;
	/*border-bottom: 1px solid rgba(255,255,255,0.2);*/
	display: table;
	padding: 0 20px;
	width: auto;
	text-align: center;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
.index_main .section1 .number span{
	font-family: "Myriad Pro","Microsoft YaHei";
	font-size: 14px;
	color: #fff;
	margin-right:20px;
	display: inline-block;
	cursor: pointer;
	position: relative;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	border-radius: 5px;
}
.index_main .section1 .number span.active{
	background: #dec335;
	border: 2px solid #dec335;
	padding-bottom: 8px;
}


/*关于我们*/
.index_main .section2{
	background: #fff;
	height: 432px;
}
.index_main .section2 .inner{
	width: 76%;
	margin: 0 auto;
	padding-top: 80px;
}
.index_main .section2 .inner .sec02left{
	width: 48%;
	float: left;
}
.index_main .section2 .inner .sec02left .lefttit{
	font-size: 24px;
	color: #c0a264;
	text-align: center;
}
.index_main .section2 .inner .sec02left .leftright{
	/*font-size: 14px;*/
	font-size: 16px;
	/*color: #666;*/
	color: #333;
	margin-top: 15px;
	/*text-indent: 28px;*/
	line-height: 28px;
}
.index_main .section2 .inner .sec02left .more{
	width: 150px;
	height: 50px;
	border: 1px solid #316032;
	color: #316032;
	border-radius: 25px;
	text-align: center;
	line-height: 50px;
	margin-top: 25px;
}
.index_main .section2 .inner .sec02right{
	width: 49%;
	float: right;
}
.index_main .section2 .inner .sec02right ul{
	width: 100%;
}
.index_main .section2 .inner .sec02right ul li{
	width: 33%;
	height: 135px;
	float: left;
	background: #d4c29e;
	color: #fff;
}
.index_main .section2 .inner .sec02right ul li:hover{
	background: #316032;
}
.index_main .section2 .inner .sec02right ul li a{
	color: #fff;
	text-decoration:none;
}
.index_main .section2 .inner .sec02right ul li img{
	width: 100%;
	height: 100%;

}
.index_main .section2 .inner .sec02right ul li a .img1{
	width: 30px;height:27px;margin-left: 43%
}
.index_main .section2 .inner .sec02right ul li p{
	font-size: 17px;
	margin: 0;
	margin-top: 36px;
	text-align: center;
}



/*nav详情*/
.index_main .section3{
	width: 100%;
	height: 240px;
	background: url(../image/nav.jpg) no-repeat;
	background-size: 100% 100%;
}
.index_main .section3 .inner{
	width: 76%;
	margin: 0 auto;
	padding-top: 60px;
}
.index_main .section3 .inner .sec03left{
	width: 28%;
	float: left;
}
.index_main .section3 .inner .sec03left p{
	width: 100%;
	font-size: 40px;
	color: #fff;
	font-weight: bold;
	background: url("../image/navb.png") no-repeat;
	background-size: 100% 50%;
	background-position: bottom;
}
.index_main .section3 .inner .sec03right{
	width: 64%;
	float: right;
}
.index_main .section3 .inner .sec03right ul{
	width: 100%;
	margin-top: 15px;
}
.index_main .section3 .inner .sec03right ul li{
	width: 33%;
	float: left;
}
.index_main .section3 .inner .sec03right ul li p{
	font-size: 24px;
	color: #fff;
}
.index_main .section3 .inner .sec03right ul li p span{
	font-size: 35px;color: #c0a264;font-weight: bold
}

/*产品中心*/
.index_main .section4{
	width: 100%;
	height: 600px;
	background: #fff;
}
.index_main .section4 p{
    margin: 0 ;
}
.index_main .section4 .inner{
	width: 76%;
	margin: 0 auto;
	padding-top: 40px;
}
.index_main .section4 .inner .ces04tit{
    width: 100%;
    height: 100px;
}
.index_main .section4 .inner .ces04tit .titleft{
    width: 30%;
    float: left;
}
.index_main .section4 .inner .ces04tit .titleft p{
    font-size: 30px;
    color: #000;
}
.index_main .section4 .inner .ces04tit .titright{
    width: 70%;
    float: right;
}
.index_main .section4 .inner .ces04tit .titright .rigleft{
    width: 76%;
    float: left;
}
.index_main .section4 .inner .ces04tit .titright .rigleft p{
    text-align: right;
    font-size: 22px;
    color: #aaaaaa;
}
.index_main .section4 .inner .ces04tit .titright .rigleft .p2{
	font-size: 14px;
}
.index_main .section4 .inner .ces04tit .titright .rigright{
    width: 20%;
    height: 50px;
    float: right;
    border: 1px solid #c0a264;
    font-size: 14px;
    color: #c0a264;
    line-height: 50px;
    border-radius: 25px;
}
.index_main .section4 .inner .ces04con{}
.index_main .section4 .inner .ces04con ul{}
.index_main .section4 .inner .ces04con ul li{
    width: 24%;
    height: 550px;
    float: left;
    position: relative;
}
.index_main .section4 .inner .ces04con ul li a:hover{
	text-decoration:none;
}
.index_main .section4 .inner .ces04con ul .li01{
    background: url(../image/pro01.png) no-repeat;
    background-size: 100%;
}
.index_main .section4 .inner .ces04con ul .li02{
    margin-left: 1.33%;
    background: url(../image/pro02.png) no-repeat;
    background-size: 100%;
}
.index_main .section4 .inner .ces04con ul .li03{
    margin-left: 1.33%;
    background: url(../image/pro03.png) no-repeat;
    background-size: 100%;
}
.index_main .section4 .inner .ces04con ul .li04{
	margin-left: 1.33%;
	background: url(../image/pro04.jpg) no-repeat;
	background-size: 100%;
}
.index_main .section4 .inner .ces04con ul li .licon{
    width: 80%;
    height: 238px;
    margin: 0 auto;
    background: #f0f0f0;
    margin-top: 190px;
    position: relative;
    z-index: 999;
}
.index_main .section4 .inner .ces04con ul li .licon .biao{
    width: 60px;
    height: 60px;
    background: #c0a264;
    border-radius: 50%;
    position: absolute;
    margin-top: -30px;
    margin-left: 38%;
}
.index_main .section4 .inner .ces04con ul li .licon .biao img{
    padding-top: 8px;
}
.index_main .section4 .inner .ces04con ul li .licon .litit{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding-top: 50px;
}
.index_main .section4 .inner .ces04con ul li .licon .licont{
    font-size: 14px;
    padding: 20px 10% 0 10%;
    text-align: left;
}
.index_main .section4 .inner .ces04con ul li .licon .licont a{
	text-indent: 28px;
}
.index_main .section4 .inner .ces04con ul li .licon .licont a:hover{
    color: #c0a264;
    text-decoration:none;
}
.index_main .section4 .inner .ces04con ul li .licon .jia{
    margin-top: 10px;
}
.index_main .section4 .inner .ces04con ul li .yin{
    width: 100%;
    height: 64%;
    background: rgba(0,0,0,0.6);
    position: absolute;
    z-index: 99;
    margin-top: -430px;
    display: none;
}


/*新闻中心*/
.index_main .section5{
	width: 100%;
	height: 500px;
	background: #fff;
}
.index_main .section5 p{
	margin: 0 ;
}
.index_main .section5 .inner{
	width: 76%;
	margin: 0 auto;
	padding-top: 40px;
}
.index_main .section5 .inner .ces04tit{
	width: 100%;
	height: 100px;
}
.index_main .section5 .inner .ces04tit .titleft{
	width: 50%;
	float: left;
}
.index_main .section5 .inner .ces04tit .titleft .leftleft{
	width: 24%;
	float: left;
}
.index_main .section5 .inner .ces04tit .titleft p{
	font-size: 30px;
	color: #000;
}
.index_main .section5 .inner .ces04tit .titleft .leftright{
	width: 76%;
	float: left;
}
.index_main .section5 .inner .ces04tit .titleft .leftright li{
	width: 160px;
	height: 50px;
	color: #316032;
	background: #f0f0f0;
	font-size: 16px;
	line-height: 50px;
	text-align: center;
	float: left;
	margin-top: 5px;
	margin-left: 20px;
}
.index_main .section5 .inner .ces04tit .titleft .leftright li:hover{
	color: #fff;
	background: #316032;
}
.index_main .section5 .inner .ces04tit .titright{
	width: 50%;
	float: right;
}
.index_main .section5 .inner .ces04tit .titright .rigright{
	width: 27%;
	height: 50px;
	float: right;
	border: 1px solid #c0a264;
	font-size: 14px;
	color: #c0a264;
	line-height: 50px;
	border-radius: 25px;
}
.index_main .section5 .inner .sec05con{
	width: 100%;
	margin-top: 30px;
}
.index_main .section5 .inner .sec05con ul{
	width: 100%;
}
.index_main .section5 .inner .sec05con ul li{
	width: 49%;
	float: left;
	height: 260px;
	background: #f5f5f5;
}
.index_main .section5 .inner .sec05con ul li .lileft{
	width: 38%;
	height: 160px;
	margin-top: 30px;
	margin-left: 30px;
	float: left;
}
.index_main .section5 .inner .sec05con ul li .lileft img{
	width: 100%;
}
.index_main .section5 .inner .sec05con ul li .liright{
	width: 52%;
	float: right;
	margin-top: 30px;
	margin-right: 2%;
	margin-bottom: 70px;
}
.index_main .section5 .inner .sec05con ul li .liright .tit{
	font-size: 18px;
	color: #333;
	font-weight: bold;

}
.index_main .section5 .inner .sec05con ul li .liright .time{
	font-size: 14px;
	color: #9b9b9b;
	margin-top: 8px;
}
.index_main .section5 .inner .sec05con ul li .liright .con{
	font-size: 14px;
	color: #666666;
	margin-top: 15px;
}
.index_main .section5 .inner .sec05con ul li .liright .xiang{
	width: 100px;
	height: 30px;
	background: #c0a264;
	color: #fff;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	margin-top: 15px;
}


/*友情链接*/
.index_main .section6{
	width: 100%;
	height: 146px;
	background: #f3f4f6;
}
.rollBox{width:100%;overflow:hidden; margin:0 auto; padding-top:20px;}
.rollBox .LeftBotton{
	width:11%; height:101px;
	overflow:hidden; float:left; display:inline; cursor:pointer;
	background: #fff;
}
.rollBox .LeftBotton img{
	margin-top: 40px;
}
.rollBox .RightBotton{
	width:11%; height:101px;
	overflow:hidden; float:left; display:inline; cursor:pointer;
	background: #fff;
}
.rollBox .RightBotton img{
	margin-top: 40px;
}
.rollBox .Cont{width:76%;margin-left: 1%;margin-right: 1%;overflow:hidden; float:left; font-size:12px;}
.rollBox .ScrCont{width:1000000px;}
.rollBox .Cont .pic{
	width:205px;
	float:left; text-align:center;
}
.rollBox .Cont .pic img{padding-bottom:0px; display:block; margin:0 auto 4px auto; }
.rollBox .Cont a{color:#666; text-decoration:none;}
.rollBox .Cont a:hover{color:#f00; text-decoration:underline;}
.rollBox #List1,.rollBox #List2{float:left;}

/*插图*/
.index_main .cha{
	width: 100%;
	height: 170px;
	background: url("../image/fotnav.jpg") no-repeat;
	background-size: 100% 100%;
}
/*底部导航*/
.index_main .fotnav{
	width: 100%;
	height: 350px;
	background: #333333;
}
.index_main .fotnav .inner{
	width:76%;
	margin: 0 auto;
}
.index_main .fotnav .inner .fotnavleft{
	width: 84%;
	float: left;
}
.index_main .fotnav .inner .fotnavleft .left01{
	width: 100%;
	padding-top: 50px;
}
.index_main .fotnav .inner .fotnavleft .left01 .left01left{
	width: 20%;
	float: left;
	color: #e5e5e5;
}
.index_main .fotnav .inner .fotnavleft .left01 .left01left .p1{
	font-size:18px;
	font-weight: bold;
	float: left;
}
.index_main .fotnav .inner .fotnavleft .left01 .left01left img{
	float: left;
	margin-left: 10px;
	margin-top: 5px;
}
.index_main .fotnav .inner .fotnavleft .left01 .left01left .p2{

}
.index_main .fotnav .inner .fotnavleft .left01 .left01right{
	width: 80%;
	float: right;
	margin-top: 10px;
}
.index_main .fotnav .inner .fotnavleft .left01 .left01right a{
	color: #e5e5e5;
}
.index_main .fotnav .inner .fotnavleft .left01 .left01right a:hover{
	color: #e5e5e5;
	text-decoration:none;
}
.index_main .fotnav .inner .fotnavleft .left01 .left01right a li{
	width: 16.66%;
	height: 50px;
	float: left;
	text-align: right;
	line-height: 50px;
}
.index_main .fotnav .inner .fotnavleft .left01 hr{
	border: 1px solid #5c5c5c;
	margin: 0;
}
.index_main .fotnav .inner .fotnavright{
	width: 13%;
	float: right;
}
.index_main .fotnav .inner .fotnavright img{
	width: 154px;
	margin-top: 110px;
}
.index_main .fotnav .inner .fotnavright p{
	font-size: 14px;
	color: #c0a264;
	text-align: center;
	margin-top: 10px;
}

.index_main .fotnav .inner .fotnavleft .left02{
	width: 100%;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01left{
	width: 35%;
	float: left;
	color: #e5e5e5;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01left p{
	margin: 0;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01left .p1{
	font-size:18px;
	margin-top: 28px;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01left .p2{
	font-size:22px;
	color: #c0a264;
	font-weight: bold;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01left .p3{
	font-size: 14px;
	color: #888888;
	margin-top: 15px;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01left .p4{
	font-size: 14px;
	color: #888888;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01left .p5{
	font-size: 14px;
	color: #888888;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01right{
	width: 55%;
	float: left;
	margin-top: 10px;
	margin-left: 7%;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01right a{
	color: #888888;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01right a:hover{
	color: #c0a264;
	text-decoration:none;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01right li{
	width: 24%;
	height: 100px;
	float: left;
	text-align: left;
	line-height: 50px;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01right li .lizi{
	width: 100%;
	height: 100px;
}
.index_main .fotnav .inner .fotnavleft .left02 .left01right li .lizi li{
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: left;
}
.index_main .fotnav .inner .fotnavleft .left02 hr{
	border: 1px solid #5c5c5c;
	margin: 0;
	margin-top: 62px;
}


/*底部备案*/
.index_main .foot{
	width: 100%;
	height: 50px;
	background: #333333;
}
.index_main .foot p{
	margin: 0;
}
.index_main .foot .inner{
	width:76%;
	margin: 0 auto;
}
.index_main .foot .inner .p{
	color: #bbbbbb;
	font-size: 14px;
	text-align: center;
	line-height: 50px;
}



/*关于我们页面*/
.er_container{
    width: 100%;
}
.er_container .er_containertit{
    width: 100%;
    height: 60px;
    background: #eeeeee;
}
.er_container .er_containertit .iner{
    width:76%;
    margin: 0 auto;
}
.er_container .er_containertit .iner .lu{
    width: 56%;
    float: left;
}
.er_container .er_containertit .iner .lu a div{
    width: 16%;
    height: 60px;
    float: left;
    font-size: 16px;
    color: #333333;
    line-height: 60px;
    text-align: center;
}
.er_container .er_containertit .iner .tit1{
    width: 40%;
    float: right;
}
.er_container .er_containertit .iner .tit1 img{
    float: right;
    margin-top: 23px;
    padding: 0 5px;
}
.er_container .er_containertit .iner .tit1 p{
    float: right;
    line-height: 60px;
    color: #888888;
}
.er_container .inner{
    width: 100%;
}
.er_container .inner .h1{
    font-size: 26px;
    color: #333333;
    text-align: center;
    margin-top: 30px;
}
.er_container .inner .er_pec_container{
    width: 76%;
    margin: 0 auto;
    margin-top: 30px;
}
.er_container .inner .er_pec_container .con ul{
	list-style: disc;
}
.er_container .inner .er_pec_container .con ul li{
	list-style: disc;
}
.er_container .inner .er_pec_container .img{
    width: 45%;
    float: right;
}
.er_container .inner .er_pec_container .con{
    width: 50%;
	margin: 0 auto;
    color: #666666;
    font-size: 14px;
    line-height: 22px;
	margin-bottom:20px;
	float: left;

}
.er_container .inner .er_pec_container .con .tit{
    font-size: 24px;
    color: #c0a264;
	text-indent: 0;
}

/*产品列表*/
.er_container .inner .er_pec_container .pro{
	width: 100%;
	height: 300px;
}
.er_container .inner .er_pec_container .pro .proinner{
	width: 76%;
	margin: 0 auto;
}
.er_container .inner .er_pec_container .pro .proinner .img{
	width: 20%;
	float: right;
	margin-top: 50px;
}
.er_container .inner .er_pec_container .pro .proinner .con{
	width: 76%;
	float: left;
	margin-top: 50px;
}
.er_container .inner .er_pec_container .pro .proinner .con a:hover{
	color: #333;
	text-decoration:none;
}
.er_container .inner .er_pec_container .pro .proinner .con .tit{
	font-size: 18px;
	color: #000;
	font-weight: bold;
	text-indent: 0;
}
.er_container .inner .er_pec_container .pro .proinner .con .bich{
	text-indent: 28px;
	line-height: 28px;
	margin-top: 20px;
}


.er_container .inner .er_pro_container{
    width: 100%;
    height: 575px;
    background: #f6f6f6;
    margin-top: 40px;
}
.er_container .inner .er_pro_container .h1{
    font-size: 26px;
    color: #333333;
    text-align: center;
    margin: 0;
    padding-top: 30px;
}
.er_container .inner .er_pro_container .porcon{
    width: 76%;
    margin: 0 auto;
    margin-top: 25px;
}
.er_container .inner .er_pro_container .porcon .pro_con_list1{
    width: 24%;
    height: 220px;
    float: left;
    margin-top: 20px;
}
.er_container .inner .er_pro_container .porcon .pro_con_list1 a:hover{
    color: #333;
    text-decoration:none;
}
.er_container .inner .er_pro_container .porcon .pro_con_list1 .pro_con_to1{
    width: 100%;
    height: 180px;
    background: #dcdcdc;
}
.er_container .inner .er_pro_container .porcon .pro_con_list1 .pro_con_to1 img{
    max-width: 90%;
    max-height: 90%;
    padding-top: 5%;
}
.er_container .inner .er_pro_container .porcon .pro_con_list1 .pro_con_bot1{
    height: 40px;
    color: #333333;
    line-height: 40px;
}
.er_about_container{
	margin-top: 50px;
	text-align: center;
}
.er_about_container a{
	background-color: #eaeaea;
	margin-left: 5px;
	padding: 5px;
	padding-left: 15px;
	padding-right: 15px;
	line-height: 40px;
}
.er_about_container a:hover{
	color: #333;
	text-decoration:none;
}
.er_pec_container p{
	text-indent: 28px
}

/*产品详情页*/
.er_pec_container h1{
	font-size: 26px;
	color: #333;
}
.er_pec_container h3{
	text-align: center;
	font-size: 14px;
	color: #888888;
}
.er_pec_container div{
	font-size: 14px;
	color: #333333;
}

/*新闻列表页*/
.inside_fr{
	width: 100%;
	margin: 0 auto;
    /*height: 1300px;*/
    background: #fff;
    margin-bottom: 50px;
}
.inside_fr h1{
    font-size: 26px;
    color: #333;
    text-align: center;
    padding: 30px 0 10px 0;
}
.inside_fr .sec05con{
	width: 76%;
	margin: 0 auto;
}
.inside_fr .sec05con ul{
	width: 100%;
}
.inside_fr .sec05con ul li{
	width: 49%;
	float: left;
	height: 260px;
	background: #f5f5f5;
    margin-top: 30px;
}
.inside_fr .sec05con ul li .lileft{
	width: 38%;
	height: 160px;
	margin-top: 30px;
	margin-left: 30px;
	float: left;
}
.inside_fr .sec05con ul li .lileft img{
	width: 100%;
}
.inside_fr .sec05con ul li .liright{
	width: 52%;
	float: right;
	margin-top: 30px;
	margin-right: 2%;
	margin-bottom: 70px;
}
.inside_fr .sec05con ul li .liright .tit{
	font-size: 18px;
	color: #333;
	font-weight: bold;

}
.inside_fr .sec05con ul li .liright .time{
	font-size: 14px;
	color: #9b9b9b;
	margin-top: 8px;
}
.inside_fr .sec05con ul li .liright .con{
	font-size: 14px;
	color: #666666;
	margin-top: 15px;
}
.inside_fr .sec05con ul li .liright .xiang{
	width: 100px;
	height: 30px;
	background: #c0a264;
	color: #fff;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	margin-top: 15px;
}

/*加入我们页面*/
.er_job_container{
	width: 100%;
}
.er_job_container .porcon{
	width: 100%;
}
.er_job_container .porcon .pro_con_list1{
	width: 100%;
	/*height: 360px;*/
	padding-bottom: 50px;
}
.er_job_container .porcon .pro_con_list1 .a{
	width: 76%;
	margin: 0 auto;
}
.er_job_container .porcon .pro_con_list1 .a .pro_con_bot1{
	width: 100%;
}
.er_job_container .porcon .pro_con_list1 .a .pro_con_bot1 .tit{
	color: #000000;
	font-size: 24px;
	font-weight: bold;
	margin-top: 40px;
	float: left;
}
.er_job_container .porcon .pro_con_list1 .a .pro_con_bot1 .key{
	font-size: 14px;
	color: #316032;
	float: left;
	margin-top: 52px;
	margin-left: 20px;
}
.er_job_container .porcon .pro_con_list1 .a .pro_con_bot2{
	color: #000000;
	font-size: 14px;
}
.er_job_container .porcon .pro_con_list1 .a .pro_con_con{
	font-size: 14px;
	color: #666666;
}
.er_job_container .porcon .pro_con_list1 .a .pro_con_con p{
	/*color: #333333;
	font-size: 18px;
	font-weight: bold;*/
}
.er_job_container .porcon .pro_con_list1 .a .pro_con_con .conp1{
	color: #333333;
	font-size: 18px;
	font-weight: bold;
}
.er_job_container .porcon .pro_con_list1 .a button{
	width: 150px;
	height: 35px;
	background: #316032;
	color: #fff;
	font-size: 18px;
	text-align: center;
	line-height: 35px;
	border-radius: 20px;
	font-weight: bold;
	margin-top: 15px;
}
/*加入提交*/
.er_jiaru_container{
	width: 100%;
	height: 400px;
}
.er_jiaru_container h1{
	color: #333333;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-top: 40px;
}
.er_jiaru_container .form_wrap1{
	width: 76%;
	margin: 0 auto;
}
.er_jiaru_container .form_wrap1 .itemleft{
	width: 49%;
	float: left;
}
.er_jiaru_container .form_wrap1 .itemleft input{
	width: 100%;
	height: 60px;
	border: 1px solid #e7e7e7;
	margin-top: 10px;
	padding: 0 5%;
}
.er_jiaru_container .form_wrap1 .itemright{
	width: 49%;
	float: right;
}
.er_jiaru_container .form_wrap1 .itemright textarea{
	width: 100%;
	height: 130px;
	border: 1px solid #e7e7e7;
	margin-top: 10px;
	padding: 2% 5%;
}
.er_jiaru_container .form_wrap1 .itemright button{
	width: 100%;
	height: 60px;
	background: #c0a264;
	margin-top: 5px;
	color: #fff;
	text-align: center;
	line-height: 60px;
	font-size: 24px;
}
/*联系我们*/
.er_our_container{
	width: 70%;
	margin: 0 auto;
	margin-top: 40px;
}
.er_our_container .our_left{
	width: 48%;
	float: left;
}
.er_our_container .our_left .tit{
	width: 100%;
}
.er_our_container .our_left .tit .eng{
	font-size: 24px;
	color: #333333;
}
.er_our_container .our_left .tit .ou{
	font-size: 30px;
	color: #333333;
	font-weight: bold;
}
.er_our_container .our_left .tit .adr{
	font-size: 14px;
	color: #333;
	font-weight: bold;
}
.er_our_container .our_left .tit hr{
	border: 1px solid #eeeeee;
}
.er_our_container .our_left .con{
	width: 100%;
	margin-top: 20px;
}
.er_our_container .our_left .con li{
	width: 100%;
	height: 60px;
}
.er_our_container .our_left .con li img{
	width: 44px;
	float: left;
}
.er_our_container .our_left .con li .rig{
	width: 60%;
	float: left;
	margin-left: 10px;
}
.er_our_container .our_left .con li .rig p{
	margin: 0;
}
.er_our_container .our_left .con li .rig .p1{
	font-size: 14px;
	color: #888888;
}
.er_our_container .our_left .con li .rig .p2{
	font-size: 16px;
	color: #000;
	font-weight: bold;
}
.er_our_container .our_left .erwei{
	width: 150px;
	height: 150px;
	border: 1px solid #e4e4e4;
}
.er_our_container .our_left .erwei img{
	width: 96%;
}
.er_our_container .our_right{
	width: 49%;
	float: right;
}
.er_our_container .our_right h1{
	color: #333333;
	font-size: 24px;
	font-weight: bold;
	margin-top: 40px;
}
.er_our_container .our_right .form_wrap1{
	width: 100%;
}
.er_our_container .our_right .form_wrap1 input{
	width: 100%;
	height: 60px;
	padding: 0 5%;
	border: 1px solid #e4e4e4;
	margin-top: 10px;
}
.er_our_container .our_right .form_wrap1 textarea{
	width: 100%;
	height: 120px;
	padding: 2% 5%;
	border: 1px solid #e4e4e4;
	margin-top: 10px;
}
.er_our_container .our_right .form_wrap1 button{
	width: 100%;
	height: 60px;
	background: #c0a264;
	color: #fff;
	font-size: 24px;
	text-align: center;
	line-height: 60px;
	margin-top: 10px;
}
.ditu{
	width: 76%;
	margin: 0 auto;
}
.ditu img{
	width: 100%;
}
/*手机端底部导航*/
.phonefoot{
	width: 100%;
	height: 100px;
	background: #316032;
	display: none;
}
.phonefoot ul{
	width: 92%;
	margin: 0 auto;
}
.phonefoot ul li{
	width: 25%;
	float: left;
	padding-top: 10px;
}
.phonefoot ul li img{
	width: 61px;
}
.phonefoot ul li p{
	font-size: 16px;
	color: #fff;
	text-align: center;
}

/*手机端轮播*/
#mob{
	display: none;
}
#newphone{
	display: none;
}
#aboutmoblie{
	display: none;
}
#newmod{
	display: none;
}
#prolistmob{
	display: none;
}
#youmob{
	display: none;
}


@media only screen and (max-width: 1600px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 28px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 60px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 20px;
	}


	/*调整*/
	.header .headrleft{
		width: 470px;
	}
	.index_main .section4 .inner .ces04con ul li{
		height: 500px;
	}
	.index_main .section4 .inner .ces04con ul li .licon{
		margin-top: 160px;
	}
	.index_main .section4 .inner .ces04con ul li .yin{
		margin-top: -390px;
	}
}
@media only screen and (max-width: 1500px){
	.header .headrleft{
		width: 400px;
	}
	.index_main .section3 .inner .sec03left p{
		font-size: 30px;
	}
	.index_main .section3 .inner .sec03right ul{
		margin-top: 0;
	}
	.index_main .section3 .inner .sec03right ul li p{
		font-size: 20px;
	}
	.index_main .fotnav .inner .fotnavleft .left02 .left01left .p5{
		font-size: 12px;
	}

}
@media only screen and (max-width: 1440px){
	/*调整*/
	.container{
		width: 850px;
	}


	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 24px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 40px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 18px;
		margin-top: 5px;
	}
}
@media only screen and (max-width: 1366px){
	/*调整*/
	.index_main .fotnav .inner .fotnavleft .left02 .left01right{
		margin-left: 5%;
	}
	.container{
		width: 750px;
	}
	.header .headrleft{
		width: 300px;
	}
	.header .navbar_nav li img{
		display: none;
	}
	.index_main .section3 .inner .sec03right ul li p span{
		font-size: 28px;
	}
	.er_container .inner .er_pro_container .porcon .pro_con_list1 .pro_con_bot1{
		font-size: 12px;
		overflow: hidden;
	}
	.index_main .section4 .inner .ces04con ul li{
		height: 410px;
	}
	.index_main .section4 .inner .ces04con ul li .licon{
		margin-top: 170px;
	}
	.index_main .section4 .inner .ces04con ul li .yin{
		margin-top: -400px;
	}




	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 20px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 26px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 16px;
	}
	.index_main .section1 .index_banner .slick-arrow{
		background-size: auto 30px;
	}
}
@media only screen and (max-width: 1300px){
	.index_main .fotnav .inner .fotnavleft .left02 .left01right{
		margin-left: 4%;
	}
	.index_main .section5 .inner .ces04tit .titleft{
		width: 70%;
	}
	.index_main .section5 .inner .ces04tit .titright{
		width: 30%;
	}
	.index_main .section5 .inner .ces04tit .titright .rigright{
		width: 54%;
	}
	.index_main .fotnav{
		height: 400px;
	}
}
@media only screen and (max-width: 1199px){
	/*调整*/
	.index_main .section4 .inner .ces04con ul li{
		height: 360px;
	}
	.index_main .section3 .inner .sec03left p{
		font-size: 24px;
	}
	.index_main .section3 .inner .sec03right ul li p{
		font-size: 18px;
	}
	.index_main .section3 .inner .sec03right ul li p span{
		font-size: 22px;
	}



	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 18px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 22px;
		}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 14px;
	}
}
@media only screen and (max-width: 1050px){
	.container {
		width: 674px;
	}
	.header .headrleft {
		width: 270px;
		margin-top: 22px;
	}
	.index_main .section3 .inner .sec03right ul li p{
		font-size: 16px;
	}
	.er_job_container .porcon .pro_con_list1 .a .pro_con_bot1 .key{
		margin-top: 44px;
	}
}
@media only screen and (max-width: 992px){
	.index_main .section1 .index_banner .item .inner .block_txt{
		left: 0;
		right:0;
		margin: 0 auto;
		padding: 0 20px;
		top: 42%;
	}
	.index_main .section1 .index_banner .slick-arrow{
		display: none !important;
	}
    .index_main .section1 .index_banner .slick-dots{
    	position: absolute;
    	bottom: 12px;
    }
    .index_main .section1 .index_banner .slick-dots li{
    	width: 12px;
    	height: 12px;
    	border-radius: 50%;
    	border:2px solid #fff;
    }
    .index_main .section1 .index_banner .slick-dots li button{
    	display: none;
    }
    .index_main .section1 .index_banner .slick-dots li.slick-active{
    	background: #fff;
    }
	.index_main .section1 .number{
		bottom: 12%;
		display: none;
	}
	.index_main .section1 .number span{
		margin-right: 22px;
	}
	.index_main .section1 .number span:after{
		bottom: -14px;
	}

	/*调整*/
	.header{
		height: 60px;
		padding: 0 30px;
	}
	#pc{
		display: none;
	}
	#mob{
		display: block;
	}
	.header .headrleft{
		margin-top: 10px;
	}
	.index_main .section1 .index_banner .item{
		height: 360px;
	}
	.container {
		width: 200px;
	}
	/*关于我们*/
	.index_main .section2{
		height: 700px;
	}
	.index_main .section2 .inner{
		width: 92%;
	}
	.index_main .section2 .inner .sec02left{
		width: 100%;
	}
	.index_main .section2 .inner .sec02right{
		width: 100%;
		margin-top: 30px;
	}
	/*nav详情*/
	.index_main .section3{
		background: url("../image/navphone.png");
		height: 150px;
	}
	.index_main .section3 .inner{
		width: 92%;
		padding-top: 36px;
	}
	/*产品中心*/
	.index_main .section4 .inner{
		width: 92%;
	}
	.index_main .section4 .inner .ces04tit .titleft{
		width: 25%;
	}
	.index_main .section4 .inner .ces04tit .titright{
		width: 75%;
	}
	.index_main .section4 .inner .ces04con ul li .licon .biao{
		margin-left: 36%;
	}
	/*新闻中心*/
	.index_main .section5{
		height: 850px;
	}
	.index_main .section5 .inner{
		width: 92%;
	}
	.index_main .section5 .inner .sec05con ul li{
		width: 100%;
		float: none;
		height: 300px;
		clear: both;
		margin-top: 30px;
	}
	#newmob{
		display: none;
	}
	#newphone{
		display: block;
	}
	/*手机端底部*/
	.phonefoot{
		display: block;
	}
	/*插图*/
	.cha{
		display: none;
	}
	.fotnav{
		display: none;
	}
	.foot{
		display: none;
	}
	/*产品列表页*/
	.er_container .er_containertit .iner{
		width: 92%;
	}
	.er_container .er_containertit .iner .lu{
		width: 70%;
	}
	.er_container .er_containertit .iner .tit1{
		width: 30%;
	}
	.er_container .inner .er_pec_container .pro .proinner{
		width: 92%;
	}
	.er_container .inner .er_pec_container{
		width: 92%;
	}
	.er_container .inner .er_pec_container .con{
		width: 100%;
	}
	.er_container .inner .er_pec_container .img{
		width: 100%;
	}
	.er_container .inner .er_pro_container{
		height: 1100px;
	}
	.er_container .inner .er_pro_container .porcon{
		width: 92%;
	}

	.er_container .inner .er_pro_container .porcon .pro_con_list1{
		width: 49%;
	}
	.er_container .inner .er_pro_container .porcon .pro_con_list1 .pro_con_to1{
		height: 200px;
	}
	#aboutpc{
		display: none;
	}
	#aboutmoblie{
		display: block;
	}
	/*新闻列表页*/
	.inside_fr .sec05con{
		width: 92%;
	}
	.inside_fr .sec05con ul li{
		width: 100%;
	}
	.inside_fr .sec05con ul li{
		height: 290px;
	}
	#newpc{
		display: none;
	}
	#newmod{
		display: block;
	}
	/*加入我们*/
	.er_job_container .porcon .pro_con_list1 .a{
		width: 92%;
	}
	.er_jiaru_container .form_wrap1{
		width: 92%;
	}
	/*联系我们*/
	.er_our_container{
		width: 92%;
	}
	.er_our_container .our_left{
		width: 100%;
	}
	.er_our_container .our_right{
		width: 100%;
	}
}
@media only screen and (max-width: 769px){
	.index_main .section1 .index_banner .item{
		height: 360px;
	}
	.er_container .er_containertit .iner .lu{
		width: 50%;
	}
	.er_container .er_containertit .iner .tit1{
		width: 50%;
	}
	.er_container .er_containertit .iner .lu a div{
		width: 25%;
	}
	.index_main .section3 .inner .sec03left p{
		font-size: 20px;
	}
	.index_main .section3 .inner .sec03right ul li{
		margin-top: 8px;
	}
	.index_main .section3 .inner .sec03right ul li p{
		font-size: 14px;
	}
	.index_main .section3 .inner .sec03right ul li p span{
		font-size: 18px;
	}
	.index_main .section4 .inner .ces04con ul li .licon .biao{
		margin-left: 36%;
	}
	.index_main .section4 .inner .ces04con ul li{
		height: 262px;
	}
	.index_main .section4 .inner .ces04con ul li .licon{
		margin-top: 112px;
	}
	.index_main .section4 .inner .ces04con ul li .yin{
		margin-top: -342px;
	}
	.index_main .section5 .inner .sec05con ul li{
		height: 240px;
	}
	.index_main .section5 .inner .ces04tit .titleft .leftright{
		width: 82%;
		margin-left: -4%;
		margin-top: 10px;
	}
	.index_main .section5 .inner .ces04tit .titleft .leftleft{
		width: 38%;
	}
	.index_main .section5 .inner .ces04tit .titright .rigright{
		width: 78%;
	}
	.inside_fr .sec05con ul li{
		height: 240px;
	}
	.index_main .section4 .inner .ces04con ul li .licon .licont a{
		font-size: 12px;
	}
	.index_main .section4 .inner .ces04con ul li .licon .licont{
		height: 96px;
		overflow: hidden;
	}
	.er_container .inner .er_pec_container .pro{
		height: 200px;
	}
	.index_main .section4 .inner .ces04tit .titright .rigleft{
		display: none;
	}
	.index_main .section4 .inner .ces04tit .titright .rigleft .p2{
		font-size: 12px;
	}
	.index_main .section4 .inner .ces04tit .titright .rigright{
		width: 34%;
	}
}
@media only screen and (max-width: 600px){
	.container {
		width: 100px;
	}
	.index_main .section3 .inner .sec03left{
		display: none;
	}
	.index_main .section3 .inner .sec03right{
		width: 100%;
	}
	.er_job_container .porcon .pro_con_list1 .a .pro_con_bot1 .key{
		margin-top: 0px;
		margin-left: 0px;
	}
}
@media only screen and (max-width: 500px){
	.header{
		padding: 0 10px;
	}
	.container{
		width: 50px;
	}
	.index_main .section1 .index_banner .item{
		height: 192px;
	}
	.index_main .section2 .inner{
		padding-top: 25px;
	}
	.index_main .section2 .inner .sec02right ul li{
		height: 96px;
	}
	.index_main .section2 .inner .sec02right ul li p{
		margin-top: 22px;
	}
	.index_main .section2 .inner .sec02right ul li a .img1{
		margin-left: 36%;
	}
	.index_main .section2{
		height: 650px;
	}
	.index_main .section2 .inner .sec02left .more{
		margin-top: 25px;
	}
	.index_main .section3 .inner .sec03left{
		display: none;
	}
	.index_main .section3 .inner .sec03right{
		width: 100%;
	}
	.index_main .section3 .inner .sec03right ul li p{
		font-size: 12px;
	}
	.index_main .section3 .inner .sec03right ul li p span{
		font-size: 14px;
	}
	.index_main .section4 .inner .ces04tit .titleft{
		width: 40%;
	}
	.index_main .section4 .inner .ces04tit .titright{
		width: 58%;
	}
	.index_main .section4 .inner .ces04tit .titright .rigright{
		width: 66%;
	}
	.index_main .section4 .inner .ces04con ul li{
		width: 49%;
		height: 298px;
	}
	.index_main .section4 .inner .ces04con ul .li02{
		margin-left: 2%;
	}
	.index_main .section4 .inner .ces04con ul .li03{
		margin-left: 0;
	}
	.index_main .section4 .inner .ces04con ul .li04{
		margin-left: 2%;
	}
	.index_main .section4 .inner .ces04con ul li .licon{
		width: 96%;
		margin-top: 86px;
		height: 198px;
	}
	.index_main .section4 .inner .ces04con ul li .licon .biao{
		width: 50px;
		height: 50px;
	}
	.index_main .section4 .inner .ces04con ul li .licon .biao img{
		width: 65%;
	}
	.index_main .section4 .inner .ces04con ul li .licon .litit{
		font-size: 16px;
	}
	.index_main .section4 .inner .ces04con ul li .licon .litit{
		padding-top: 32px;
	}
	.index_main .section4 .inner .ces04con ul li .licon .licont{
		font-size: 12px;
		padding: 10px 10% 0 10%;
	}
	.index_main .section4 .inner .ces04tit{
		height: 72px;
	}
	.index_main .section4{
		height: 425px;
	}
	.index_main .section5 .inner .ces04tit .titleft .leftleft{
		width: 60%;
	}
	.index_main .section5 .inner .ces04tit .titleft{
		width: 60%;
	}
	.index_main .section5 .inner .ces04tit .titright{
		width: 38%;
	}
	.index_main .section5 .inner .ces04tit .titright .rigright{
		width: 92%;
	}
	.index_main .section5 .inner .ces04tit .titleft .leftright{
		display: none;
	}
	.index_main .section5 .inner .sec05con ul li .liright .tit{
		font-size: 14px;
		height: 18px;
		overflow: hidden;
	}
	.index_main .section5 .inner .sec05con ul li .lileft{
		margin-left: 15px;
	}
	.index_main .section5 .inner .sec05con ul li{
		height: 225px;
	}
	.index_main .section5 .inner .ces04tit{
		height: 64px;
	}
	.index_main .section2 .inner .sec02left .leftright{
		margin-top: 20px;
	}
	.index_main .section5{
		height: 670px;
	}
	.phonefoot ul li img{
		width: 45px;
	}
	.phonefoot{
		height: 85px;
	}
	.er_container .er_containertit .iner .tit1{
		display: none;
	}
	.er_container .er_containertit .iner .lu{
		width: 100%;
	}
	.er_container .inner .er_pec_container .pro .proinner .con .tit{
		font-size: 14px;
	}
	.er_container .inner .er_pec_container .con{
		font-size: 12px;
	}
	.inside_fr .sec05con ul li .lileft{
		margin-left: 15px;
	}
	.inside_fr .sec05con ul li .liright .tit{
		font-size: 14px;
		height: 18px;
		overflow: hidden;
	}
	.inside_fr .sec05con ul li .liright .con{
		font-size: 12px;
		margin-top: 4px;
	}
	.inside_fr .sec05con ul li .liright .time{
		margin: 0;
		margin-top: 3px;
	}
	.inside_fr .sec05con ul li .liright .xiang{
		margin-top: 8px;
	}
	.inside_fr .sec05con ul li{
		height: 170px;
	}
	.er_our_container .our_left .con li .rig{
		width: 80%;
	}
	.ditu{
		width: 92%;
	}
	.index_main .section5 .inner .sec05con ul li .liright .con{
		margin-top: 4px;
	}
	.index_main .section5 .inner .sec05con ul li .liright .xiang{
		margin-top: 5px;
	}
	.index_main .section5 .inner .sec05con ul li{
		height: 165px;
	}
	.index_main .section5{
		height: 530px;
	}
	#prolistpc{
		display: none;
	}
	#prolistmob{
		display: block;
	}
	.index_main .section4 .inner .ces04con ul li .yin{
		margin-top: -316px;
	}
	.er_pec_container div img{
		width: 100%;
	}
	.er_container .inner .er_pro_container .porcon .pro_con_list1 .pro_con_to1{
		height: 145px;
	}
	.er_container .inner .er_pro_container .porcon .pro_con_list1{
		height: 175px;
	}
	.er_container .inner .er_pro_container{
		height: 910px;
	}
	.er_job_container .porcon .pro_con_list1 .a .pro_con_bot1 .key{
		margin: 0;
		font-size: 12px;
	}
	.er_job_container .porcon .pro_con_list1 .a .pro_con_bot2{
		font-size: 12px;
		margin-top: 8px;
	}
	.phonefoot ul{
		width: 98%;
	}
	#youpc{
		display: none;
	}
	#youmob{
		display: block;
	}
	.rollBox .LeftBotton{
		height: 60px;
	}
	.rollBox .RightBotton{
		height: 60px;
	}
	.rollBox .LeftBotton img{
		margin-top: 18px;
	}
	.rollBox .RightBotton img{
		margin-top: 18px;
	}
	.rollBox .Cont .pic{
		width: 110px;
	}
	.index_main .section6{
		height: 110px;
	}
	.index_main .section5 .inner .ces04tit .titleft p{
		font-size: 28px;
	}
}
@media only screen and (max-width: 340px){
	.index_main .section5 .inner .ces04tit .titleft p{
		font-size: 24px;
	}
}
@media only screen and (max-width: 320px){
	.index_main .section5 .inner .ces04tit .titleft p{
		font-size: 24px;
	}
}
