@charset"UTF-8";

/*css reset*/
html {}
html,body{font-size: 62.5%;}
* { box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -o-box-sizing: border-box;  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { color: #111; font: 14px/20px Arial,"Microsoft Yahei",sans-serif;; word-wrap: break-word; word-break: break-all; }
blockquote, body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, input, legend, li, ol, p, pre, td, textarea, th, ul { margin: 0; padding: 0; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; }
audio, canvas, progress, video { display: inline-block; vertical-align: baseline; }
button, input, select, textarea { color: inherit; font: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: normal; }
ul, dl, ol { list-style: none; padding: 0; }
input, textarea, select, button { border: 0; outline: none; }
img, a img { font-size: 0; border: 0; vertical-align: middle; }
i, em { text-decoration: none; font-style: normal; }
a { text-decoration: none; cursor: pointer; background-color: transparent; }
textarea { overflow: auto; }
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px white inset; }
input { -moz-box-shadow: none; box-shadow: none; -webkit-box-shadow: 0 0 0 1000px white inset; }

body{
	background-color: #f9f9f9;
}
.body-box{
	max-width: 600px;
	margin: 0 auto;
}
a{
	color: #333;
	transition: all .2s;
}
a:hover{
    color: #016CA7;
}

a.blue{
	color: #1184e1;
}
a.blue:hover{
    color: #1184e1;
    text-decoration:underline;
}

/*色调*/
.main-color{
	color: #016CA7;
}
.sec-color{
	color: #41AA49;
}

/*移动菜单按钮*/

.mobile-button {
	display: none;
	float: right;
	position: relative;
	background: transparent;
	cursor: pointer;
	width: 26px;
	height: 16px;
	-webkit-transition: all ease .238s;
	-moz-transition: all ease .238s;
	transition: all ease .238s;
}
.mobile-button:before, .mobile-button:after, .mobile-button span {
	background-color: #fff;
	-webkit-transition: all ease .238s;
	-moz-transition: all ease .238s;
	transition: all ease .238s;
}
.mobile-button:before, .mobile-button:after {
	content: '';
	position: absolute;
	top: 0;
	height: 3px;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}
.mobile-button span {
	position: absolute;
	width: 100%;
	height: 3px;
	left: 0;
	top: 50%;
	overflow: hidden;
	text-indent: 200%;
}
.mobile-button:before {
	-webkit-transform: translate3d(0, -7px, 0);
	-moz-transform: translate3d(0, -7px, 0);
	transform: translate3d(0, -7px, 0);
}
.mobile-button:after {
	-webkit-transform: translate3d(0, 7px, 0);
	-moz-transform: translate3d(0, 7px, 0);
	transform: translate3d(0, 7px, 0);
}
.mobile-button.active span {
	opacity: 0;
}
.mobile-button.active:before {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	-moz-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}
.mobile-button.active:after {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	-moz-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

/*顶部栏目 END*/
.header-div{
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	background: rgba(255,255,255,.9);
	height: 100px;
	box-shadow: 0 2px 3px rgba(0,0,0,0.1);
	transition: all 0.5s;
	z-index: 91;
}
.header-wrap{
	display: flex;
	align-items: center;
	height: 100px;
    width: 80%;
    margin:0 auto;
}
.header-hide{
	top: -120px;
}
.logo-wrap{
	width: 260px;
	height: 100px;
}
.logo-phone{
	display: flex;
	align-items: center;
	background-color: ;
	color: #333;
	text-align: center;
	font-size: 20px;
	margin:0 0 0 30px;
	padding: 10px 20px;
	border:#aaa 1px solid;
	border-radius: 5px;
	text-align: center;
}
.logo-phone img{
	height: 22px;
	margin-right: 10px;
}

/*菜单栏*/
.nav-wrap{
	position: relative;
	flex: 1;
	display: flex;
	justify-content: space-between;
	margin:0 5%;

}
.nav-wrap li{
	flex: 1;
	display: inline-block;
	position: relative;
	background: url(../images/nav_line.png) right center no-repeat;
	text-align: center;
}
.nav-wrap li:last-child{
	background: none;
}
.nav-wrap a.nav-b{
	display: inline-block;
	margin: 0 auto;
	height: 100px;
	line-height: 100px;
	position: relative;
	font-size: 18px;
	color: #333;
}
.nav-wrap a.nav-b:before{
	content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #016CA7;
    height: 2px;
    transition-property: right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.nav-wrap li:hover a.nav-b{
	color: #016CA7;
}
.nav-wrap li:hover a.nav-b:before{
	right: 0;
}

.nav-wrap li ul{
	position:absolute;
	width: 190px;
	left:50%;
	margin-left: -95px;
	top:100px;
	background-color:#fff;
	display:none;
	overflow:hidden;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	z-index: 99999;
}
.nav-wrap li:hover>ul{
	display:block;
}
.nav-wrap li ul a{
	display:block; 
	height:48px;
	line-height:48px;
	font-size:16px;
	font-weight:normal; 
	clear:both; 
	margin:0; 
	clear:both; 
	text-align:center; 
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:nowrap;
}
.nav-wrap li ul a:hover{
	background:none;
}
.nav-wrap li:hover ul a{ 
	background:none; 
	color:#333;
}
.nav-wrap li:hover ul a:hover{
	font-weight: bold;
	color: #fff;
	background-color: #016CA7;
}


/*内页BANNER START*/
.Banner {
    width: 100%;
    overflow: hidden;
    clear: both;
    position: relative;
}
.Banner img{
	max-width: 100%;
}
.Banner-text{
	position: absolute;
	left: 10%;
	top: 50%;
	color: #FFFFFF;
}
.Banner-text p{
	font-size: 2.8rem;
	display: block;
	letter-spacing: 10px;
	padding-bottom: 25px;
}
.Banner-text em{
	display: block;
	font-size: 5rem;
	line-height: 100%;
}
/*内页BANNER END*/

/*分栏*/
.wrap{
	width: 80%;
	margin: 0 auto;
}
.div-body{
	background: rgb(245,245,245);
	padding: 0 0 10px;
}
.div-body-white{
	background: rgb(255,255,255);
	padding: 0 0 30px;
}
.div-wrap{
	width: 80%;
	margin:0 auto;
	overflow: hidden;
}
.sort-title{
	font-size: 4rem;
	padding: 3rem 0 4rem;
}

.float-l{
	float: left;
}
.float-r{
	float: right;
}
.div-w-880{
	width: 100%;
}


/*****面包屑导航 START****/
.breadCrumb{ 
	position: absolute;
	left: 10%;
	bottom: 20px;
	color:#fff; 
	padding:10px 0; 
	clear:both; 
	overflow:hidden;
}
.breadCrumb a{ 
	color:#fff; 
	font-size: 1rem;
	margin:0 6px; 
	text-decoration:none;
}
.breadCrumb a:hover{ 
	color: #F2DE01;
	text-decoration: underline;
}

/*****面包屑导航 END****/



/*栏目分类*/
.product-sort-w{
	background: #fff;
	border-bottom: #ccc 1px solid;
}
.product-sort a{
	display: inline-block;
	font-size: 1.8rem;
	height: 60px;
	line-height: 60px;
	margin: 0 20px;
}
.product-sort a.cur{
	font-weight: 700;
	border-bottom: #016CA7 3px solid;
}
/*子栏目显示 END*/

/*遮罩层*/
.body-mask{
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,.6);
	z-index: 6;
}

/*分页*/
.pages{
	clear: both;
	display: block;
	text-align: center;
}
.pages .pagination{
	padding: 50px 0 30px;
}
.pages li{
	display: inline-block;
}
.pages li.disabled{
	cursor: not-allowed;
}
.pages li span,.pages li a{
	border:#016CA7 1px solid;
	margin: 0 5px;
	color: #016CA7;
	padding: 12px 16px;
	font-size: 1rem;
}
.pages li span{
	border-color: #999;
	color: #999;
}
.pages li a:hover{
	background: #016CA7;
	color: #fff;
}
.pages li.active span{
	font-weight: bold;
	border:#016CA7 1px solid;
	background: #016CA7;
	color: #fff;
}

/*通用遮罩*/
.body-mask{
	position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
}
.body-wrap{
	position: relative;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
}
.body-close{
	position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    color: #999;
    font-size: 24px;
}
.body-close:hover{
	color: #333;
}

/*底部栏目 START*/


.footer_copyright{
	padding: 10px 0 95px;
	color: #999;

	text-align: center;
	overflow: hidden;
}

.bottom-phone-wrap{
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 992;
}
.bottom-phone{
	max-width: 600px;
	padding: 10px 0;
	border-top: #f5f5f5 1px solid;
	background-color: #fff;
	margin: 0 auto;
}
.bottom-phone a{
	display: inline-block;
	width: 42%;
	height: 50px;
	margin: 0 0 0 5%;
	line-height: 50px;
	border: #f00 2px solid;
	color: #f00;
	text-align: center;
	border-radius: 30px;
	font-size: 16px;
	font-weight: bold;
}
.bottom-phone a.on{
	background-color: #f00;
	color: #fff;
}
.bottom-phone a.computer{
	width: 100%;
	margin: 0;
}

/*底部栏目 END*/


/*在线留言*/
.message-wrap{
	color: #222;
}
.message-title{
	font-size: 22px;
	text-align: center;
	padding: 20px 0 0;
}
.message-item{
	padding-top: 20px;
}
.message-item .title{
	padding-bottom: 8px;
}
.message-item .content{
	text-align: center;
}
.message-item .input{
	border: #ddd 1px solid;
	border-radius: 5px;
	padding: 10px 10px;
	width: 400px;
	font-size: 16px;
}
.message-item textarea{
	border: #ddd 1px solid;
}
.message-item .join-but{
	width: 100%;
	background-color: #008CBA;
	border: none;
    color: #FFFFFF;
    padding: 12px 0;
    text-align: center;
    transition-duration: 0.4s;
    text-decoration: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}
.message-tips{
	text-align: center;
	font-size: 12px;
	color: #999;
	padding-top: 8px;
}
/*关于我们*/
.company{

}
.company-l{
	width: 35%;
	font-size: 1.8rem;
	line-height: 180%;
	float: left;
}
.company-l p{
	text-indent: 2em;
	padding-bottom: 10px;
}
.company-r{
	width: 60%;
	float: right;
}
.company img{
	width: 100%;
}

.brand-ys{
	width: 100%;
	background: url(../images/company_b1.jpg) center center no-repeat;
}

/*联系我们*/
.contact{
	width: 100%;
	padding: 30px 0 50px;
	background: #fff;
	overflow: hidden;
}
.contact-d{
    float: left;
    padding-right: 6rem;
}
.contact-d p{
	padding-bottom: 10px;
}
.contact-d img {
    width: 1.8rem;
    margin-right: 0.5rem;
    vertical-align: -3px;
    display: inline-block;
}
.contact-d .phone400{
	padding-left: 2rem;
	font-size: 2.2rem;
	font-weight: 600;
}
.contact-d .fax-eamil{
	font-size: 2.0rem;
	padding-left: 2rem;
	font-weight: 500;
	color: #333;
}
.contact-d .blank-line{
	height: 50px;
}
#allmap{
	width: 100%;
	height: 500px;
}
/*招聘专用 START*/
.jobs-tit{
	background-color: #333;
	overflow: hidden;
	color: #fff;
	padding: 20px 10px;
	font-size: 1.8rem;
}
.jobs-item{
	background-color: #fff;
	color: #666;
	overflow: hidden;
	margin-top: 15px;
	font-size: 1.6rem;
	overflow: hidden;
}
.jobs-item:hover,.jobs-item-on{
	background-color: #016CA7;
	color: #fff;
}
.jobs-content{
	display: none;
	background-color: #fff;
	color: #333;
	box-sizing: border-box;
	padding: 50px;
	clear: both;
}
.jobs-item-tit{
	box-sizing: border-box;
	padding: 10px 10px;
	overflow: hidden;
	cursor: pointer;
}
.w12,.w16{
	height: 40px;
	line-height: 40px;
	float: left;
	display: inline-block;
}
.w12{
	width: 12%;
	text-align: center;
}
.w16{
	width: 16%;
	text-align: center;
}
.job-zw{
	font-size: 1.8rem;
	color: #000;
}
.jobs-item:hover .job-zw,.jobs-item-on .job-zw{
	color: #fff;
}
.job-left{
	text-align: left;
}

.btnBox{
	height: 40px;
    padding: 0;
}
.btn{
	width: 40px;
    height: 40px;
    margin: 0 auto 0 auto;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    background-image: url(../images/recruit8.png);
    background-position: center;
    background-repeat: no-repeat;
}
.jobs-item:hover .btn{
	border-color: #fff;
    background-color: #fff;
}
.jobs-item-on .btn{
	border-color: #fff;
    background-color: #fff;
    background-image: url(../images/recruit9.png);
}
/*招聘专用 END*/


/*企业相册 START*/
/*列表页*/
.photo-list-wrap{
	padding: 10px 30px;
	background: #fff;
	border:#ddd 1px solid;
	overflow: hidden;
}

.photo-list-title{
	padding: 30px 0;
	line-height: 100%;
	border-bottom: #eee 1px solid;
}
.photo-list-title h2{
	font-size: 24px;
	font-weight: 700;
	color: #222;
}

..photo-list-item-wrap{
	width: 100%;
	overflow: hidden;
}
.photo-list-item{
	float: left;
	width: 48%;
	margin-right: 4%;
	text-align: center;
	padding: 30px 0 0;
}
.photo-list-item:nth-child(2n+1){
	margin-right: 0;
}

.phoho-pic{
	width: 100%;
	display: inline-block;
	text-align: center;
}
.phoho-pic:hover{
	border-color: #999;
}
.phoho-pic img{
	vertical-align:middle;
	max-width:100%;
	max-height: 100%;
	transition: all .2s;
}
.phoho-pic img:hover{
	padding:10px;
border:1px solid #000;
-moz-box-shadow:3px 3px 4px #000;
-webkit-box-shadow:3px 3px 4px #000;
box-shadow:3px 3px 4px #000;
background:#fff;
filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4,Direction=135,Color='#000000');
}

.photo-list-item h3{
	padding:20px 0;
}
.photo-list-item h3 a{
	font-size: 1.2rem;
	color: #333;
}
.photo-list-item h3 a:hover{
	color: #1184e1;
}

/*评价页*/
.pingjia-wrap{
	padding-top: 60px;
	min-height: 500px;
}
.pingjia-list-title{
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	width: 100%;
	font-size: 14px;
	padding: 15px 20px;
	border-bottom: #f5f5f5 5px solid;
	background: #fff;
	z-index: 991;
}
.pingjia-list-title-wrap{
	max-width: 600px;
	margin: 0 auto;
}
.pingjia-list-title a{
	display: inline-block;
	padding: 5px 10px;
	background-color: #f5f5f5;
	color: #525252;
	border-radius: 15px;
	margin-right: 4px;
	font-size: 13px;
}
.pingjia-list-title a.on{
		color: #fd503e;
    background-color: #fdefee;
    font-weight: bold;
    font-size: 14px;
}

.pingjia-list-nav{
	text-align: left;
	padding-bottom: 20px;
	color: #999;
}
.pingjia-list-nav strong{
	color: #333;
}

.pingjia-list-item{
	border-radius: 6px;
	background: #fff;
	padding: 16px 10px;
	margin-bottom: 10px;
}
.pingjia-list-item-user{
	overflow: hidden;
}
.pingjia-list-item-user-avatar{
	float: left;
	height: 38px;
	margin-right: 10px;
}
.pingjia-list-item-user-avatar img{
	width: 36px;
	height: 36px;
	border-radius: 100%;
	border: #999 1px solid;
}
.pingjia-list-item-user-name{
	float: left;
}
.pingjia-list-item-user-name em{
	display: block;
	font-size: 16px;
}
.pingjia-list-item-user-name img{
	width: 80px;
}
.pingjia-list-item-user-time{
	float: right;
	line-height: 38px;
}
.pingjia-list-content{
	padding: 10px;
	font-size: 16px;
	line-height: 160%;
}
.pingjia-list-pic{
	width: 100%;
	overflow: hidden;
}
.pingjia-list-pic img{
	width: 49%;
	height: 200px;
}
.pingjia-list-pic img:nth-child(2n-1){
	border-radius: 6px 0  0 6px;
	margin-right: 2%;
}
.pingjia-list-pic img:nth-child(2n){
	border-radius: 0 6px 6px 0;
}
.pingjia-list-reply{
	margin: 10px 0 0;
	border-radius: 10px;
	padding: 10px;
	background-color: #eee;
	color: #888;
}

/*详细页*/

.photo-nothing{
	text-align: center;
	padding: 100px 0;
	color: #999;
}

.photo-detail-wrap{
	padding: 30px;
	border: #ddd 1px solid;
	background: #fff;
}
.photo-detail-wrap h2{
	font-size: 26px;
	margin-bottom: 30px;
	text-align: center;
	padding: 20px 0 30px;
	border-bottom: #eee 1px dashed;
}
.photo-detail-pic{
	text-align: center;
}
.photo-detail-pic img{
	max-width: 100%;
	margin-bottom: 10px;
}

.photo-detail-content{
	padding: 30px 0;
	font-size: 16px;
	line-height: 180%;
}
.photo-detail-content p{
	text-indent: 2em;
	padding-bottom: 15px;
}
.photo-detail-content img{
	max-width: 100%;
}
/*企业相册 END*/








/*产品中心 START*/
/*详细页*/
.view-wrap{
	background: #fff;
	padding: 30px;
}

.view-info{
	background: #ddd;
	padding: 15px 20px;
}
.view-info i{
	color: #666;
}
.view-info em{
	display: inline-block;
	width: 90px;
}
.view-info a{
	float: right;
	margin-top: -7px;
	display: inline-block;
	width: 110px;
	height: 34px;
	line-height: 34px;
	background: #1184e1;
	color: #fff;
	text-align: center;
}

.view-title{
	padding: 30px 0;
	text-align: center;
}
.view-title h1{
	font-size: 30px;
	font-weight: 700;
	line-height: 160%;
}

.view-content{
	line-height: 200%;
	font-size: 16px;
}
.view-content p{
	padding-bottom: 15px;
	text-indent: 2em;
}


/*列表页*/
.product-list-wrap{
	margin-top: 60px;
	
	
	overflow: hidden;
}


.product-list-item-wrap{
	width: 100%;
	overflow: hidden;
}
.product-list-item{
	float: left;
	background: #fff;
	border-radius: 8px;
	width: 48.5%;
	margin-right: 3%;
	margin-bottom:20px;
	padding-bottom: 20px;
}

.product-list-item:nth-child(2n){
	margin-right: 0;
}

.product-list-item img{
	width: 100%;
	border-radius: 6px;
}
.product-list-item h4{
	text-align: center;
	height: 60px;
	line-height: 60px;
	width: 100%;
	font-size: 16px;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.product-list-item em{
	display: inline-block;
	padding: 0 5px;
	font-size: 12px;
	border: #aaa 1px solid;
	color: #999;
	border-radius: 20px;
	margin-left: 6px;
}




.product-nothing{
	text-align: center;
	padding: 100px 0;
	color: #999;
}

.product-detail-img{
	width: 100%;
}
.product-detail-img img{
	width: 100%;
}

.product-detail-wrap{
	padding: 10px 20px;
	background: #fff;
	border-radius: 10px;
	margin: 10px 0 0 0;
}

.product-detail-info{
	width: 100%;
	overflow: hidden;
}
.product-detail-info-left{
	float: left;
	padding: 0 0 16px 0;
}
.product-detail-info-left p{
	font-size: 20px;
	padding: 16px 0;
	font-weight: bold;
}
.product-detail-info-left em{
	display: inline-block;
	border-radius: 20px;
	font-size: 12px;
	border:  #ddd 1px solid ;
	padding: 3px 10px;
	color: #888;
	margin-right: 5px;
}
.product-detail-info-left em.on{
	color: #fd503e;
  background-color: #fdefee;
  border:  #fdefee 1px solid ;
}
.product-detail-info-right{
	float: right;
}

.product-detail-shop{
	overflow: hidden;
}
.product-detail-shop-logo{
	float: left;
	margin-right: 15px;
}
.product-detail-shop-logo img{
	width: 60px;
	height: 60px;
}
.product-detail-shop-name{
	float: left;
	height: 60px;
	line-height: 60px;
	font-size: 22px;
	font-weight: bold;
}
.product-detail-shop-name img{
	height: 26px;
}
.product-detail-shop-phone{
	float: right;
	margin-top: 7px;
}
.product-detail-shop-phone a{
	display: block;
	color: #fff;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	font-size: 12px;
	background: #fd503e;
	text-align: center;
}
.product-detail-shop-phone img{
	height: 22px;
	margin-top: 3px;
}
.product-detail-shop-phone em{
	display: block;
}

.product-detail-con-title{
	margin-top: 20px;
}
.product-detail-con-title em{
	display:block;
	text-align: center;
	color: #fd503e;
	font-size: 20px;
	font-weight: bold;
}

.product-detail-content{
	padding: 30px 20px;
	font-size: 16px;
	line-height: 180%;
}
.product-detail-content p{
	/*text-indent: 2em;*/
	padding-bottom: 10px;
	max-width: 100%;
	padding-top: 10px;
}

.product-detail-img{
	max-width: 100%;
	text-indent: 0;
}


/*产品中心 END*/





/*新闻中心 START*/
.news-list-wrap{
	overflow: hidden;
	min-height: 600px;
}

.news-list-title{
	padding: 30px 0;

	line-height: 100%;
	border-bottom: #eee 1px solid;
}
.news-list-title h2{
	font-size: 24px;
	font-weight: 700;
	color: #222;
}

..news-list-item-wrap{
	width: 100%;
	overflow: hidden;
}
.news-list-item{
	display: flex;
	margin: 20px 0;
	background-color: #fff;
}
.news-list-item .new-img{
	width: 30%;
}
.news-list-item img{
	width: 100%;
}
.news-list-item span{
	flex: 1;
	margin:0 30px;
	position: relative;
}
.news-list-item h3{
	padding:45px 0 15px;
}
.news-list-item h3 a{
	font-size: 2.4rem;
	color: #333;
}
.news-list-item h3 a:hover{
	text-decoration: underline;
}
.news-list-item p{
	color: #999;
	font-size: 0.9rem;
	line-height: 180%;
}
.news-list-item em{
	position: absolute;
	bottom: 20px;
}
.news-list-item em a{
	display: block;
	width: 120px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	background-color: #016CA7;
	color: #fff;
}


.news-nothing{
	text-align: center;
	padding: 100px 0;
	color: #999;
}

.news-detail-wrap{
	padding: 30px;
	background: #fff;
}
.news-detail-wrap h2{
	font-size: 3.6rem;
	line-height: 1;
	padding: 20px 0;
	text-align: center;
	border-bottom: #ddd 1px dashed;
}
.news-detail-info{
	padding: 10px 0 30px;
	color: #999;
	text-align: center;
}
.news-detail-info span{
	padding: 0 10px;
}
.news-detail-content{
	padding: 30px 0;
	font-size: 16px;
	line-height: 180%;
}
.news-detail-content p{
	text-indent: 2em;
	padding-bottom: 15px;
}
.news-detail-content img{
	max-width: 100%;
}

.news-detail-keyword{
	padding: 16px 0;
	border-top: #eee 1px solid;
	color: #999;
}
.news-detail-keyword a{
	margin-right: 10px;
	color: #999;
}
.news-detail-keyword a:hover{
	text-decoration: underline;
}

.news-more{
	margin-bottom: 30px;
}
.news-more-tit{
	font-size: 18px;
	border-bottom: #eee 1px solid;
	padding: 10px 0;
}
.news-more-list{
	padding-top: 20px;
}
.news-more-list li{
	padding: 8px 0;
	font-size: 16px;
}
/*新闻中心 END*/


/*首页CSS*/


.index-top-video-wrap{
	position: relative;
	z-index: 80;
}
.index-top-video{

}
.index-top-video-player{
	width: 100%;
	height: 100%;
}
.index-top-video-button-pause{
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	width: 80px;
	height: 80px;
	background: url(../../images/button_video_pause.png);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 98;
}

.index-top-video-bg{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url(../../images/index-top-video-bg.jpg);
	background-repeat: repeat;
    background-position: 50%;
    background-color: #000;
    background-size: contain;
	z-index: 101;
}
.index-top-video-button-play{
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	width: 80px;
	height: 80px;
	background: url(../../images/button_video.png);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 102;
}

.index-shop-wrap{
	position: relative;
	width: 94%;
	margin: -20px auto 0;
	background-color: #fff;
	background-image: url(../../images/pinZhiJingXuan.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	border-radius: 16px;
	z-index: 200;
	overflow: hidden;
}

.index-shop-pzjx-wrap{
	height: 60px;
	padding: 15px 15px;
	overflow: hidden;
}
.index-shop-pzjx{
	float: left;
	height: 30px;
	z-index: 6;
}
.index-shop-pzjx img{
	height: 20px;
}
.index-shop-jingxuan{
	float: right;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	text-align: right;
	color: #b16a00;
}

.index-shop-div{
	width: 100%;
	padding: 10px 0;
	border-radius: 10px;
	background-color: #fff;
}

.index-shop-shop{
	overflow: hidden;
}
.index-shop-shop-logo{
	float: left;
	margin-right: 15px;
	margin-left: 20px;
}
.index-shop-shop-logo img{
	width: 80px;
	height: 80px;
}
.index-shop-shop-name{
	float: left;
	height: 80px;
	line-height: 80px;
	font-size: 24px;
	font-weight: bold;
}
.index-shop-shop-name img{
	height: 26px;
	margin-left: 6px;
}
.index-shop-shop-pf{
	float: right;
	padding-right: 20px;
	padding-top: 20px;
	text-align: center;
	color: #999;
}
.index-shop-shop-pf strong{
	font-size: 16px;
	color: #333;
}

.index-shop-bangdan{
	margin: 20px 20px 0;
	border-radius: 20px;
	padding: 8px 0;
	background-image: url(../../images/bangdan_bg.jpg);
	background-repeat: no-repeat;
	background-position: right 50%;
	background-color: #fff;
	border: rgba(121, 86, 56, 0.4) 1px solid;
}
.index-shop-bangdan img{
	height: 14px;
	margin-left: 10px;
}
.index-shop-bangdan em{
	display: inline-block;
	float: right;
	color: #8a5221;
	line-height: 24px;
	padding-right: 10px;
}

.index-shop-shop-nav{
	padding: 20px 0 20px 20px;
}
.index-shop-shop-nav em{
	display: inline-block;
    border-radius: 10px;
    font-size: 14px;
    border: #999 1px solid;
    padding: 3px 10px;
    color: #666;
    margin-right: 5px;
}
.index-shop-shop-nav em.on {
    color: #36f;
    background-color: #fff;
    border: #36f6 1px solid;
}

.index-shop-shop-opentime{
	position: relative;
	font-size: 16px;
	margin: 0 20px;
	background-image: url(../../images/sanjiao.png);
	background-position: right 50%;
	background-size: auto 14px;
	background-repeat:  no-repeat;
}
.index-shop-shop-opentime .yyz{
	color: #fd503e;
	font-weight: bold;
}

.index-shop-info-wrap{
	margin: 0 20px;
}
.index-shop-info-tit{
	font-size: 16px;
	padding: 10px 0;
}
.index-shop-info{
	overflow: hidden;
}
.index-shop-info-left{
	float: left;
	width: 40%;
}
.index-shop-info-left img{
	max-width: 100%;
}
.index-shop-info-right{
	float: left;
	width: 55%;
	margin-left: 5%;
	font-size: 16px;
	line-height: 160%;
}

.index-shop-bz{
	line-height: 20px;
	margin: 0 20px;
	padding: 10px 0;
	background-image: url(../../images/sanjiao.png);
	background-position: right 50%;
	background-size: auto 14px;
	background-repeat:  no-repeat;
}
.index-shop-bz img{
	height: 20px;
}

.index-shop-banner{
	width: 94%;
	margin: 10px auto;
	border-radius: 12px;
	overflow: hidden;
}
.index-shop-banner img{
	width: 100%;
}

.index-fgline{
	margin: 10px 20px;
	height: 1px;
	background-color: #eee;
}

.index-nav{
	margin: 30px 20px 10px;
}
.index-nav a{
	display: inline-block;
	font-size: 20px;
	padding-bottom: 9px;
	margin-right: 20px;
}
.index-nav a.on{
	font-weight: bold;
	background-image: url(../../images/nav_bg.png);
	background-position:50% bottom;
	background-size: 20px auto;
	background-repeat: no-repeat;
}
.index-nav a sup{
	font-size: 12px;
}

/*首页滚动图*/
#index_banner{ background-color:#fff; margin:0 auto; margin-top:0px; overflow:hidden; clear:both;}
#index_banner img{
	max-width: 100%;
}

/*首页标题*/
.index-title{
	font-size: 20px;
	font-weight: bold;
	padding: 20px 20px;
}


/*首页产品 START*/
.index-product-c{
	width: 94%;
	margin: 10px auto;
	padding: 0 0 20px;
	background: #fff;
	border-radius: 20px;
}
.index-product{
	width: 100%;
	margin: 0 auto;
}
.index-product-nav{
	margin: 0 20px;
	overflow: hidden;
}
.index-product-nav a{
	display: inline-block;
	padding: 9px 15px;
	font-size: 16px;
	margin-right: 6px;
	background-color: #f5f5f5;
	border-radius: 20px;
}
.index-product-nav a.on{
	background-color: rgba(253, 80, 62, 0.1);
	color: #fd503e;
}

.index-product-list{
	margin-top: 20px;
	overflow: hidden;
}

.product-list-right{
	width: 95%;
	margin: 0 auto;
}
.product-list-right li{
	float: left;
	    width: 49%;
	    list-style: none;
	    border-radius: 10px;
	    overflow: hidden;
}
.product-list-right li a{
	display: block;
}
.product-list-right li p{
    height: 230px;
    display: block;
    overflow: hidden;
     width: 100%;
	 height: auto;
}
.product-list-right li img{
	width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.product-list-right li h4{
	display: block;
	width: 100%;
	height: 50px;
	line-height: 40px;
	font-size: 16px;
	text-align: center;
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:nowrap;
}

	.product-list-right li:nth-child(2n) {
		margin-left:2%;
	}
/*首页产品 END*/


.index-liucheng{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}
.index-liucheng .liucheng-item{
	text-align: center;
	font-size: 16px;
}
.index-liucheng .liucheng-item img{
	width: 36px;
	height: 36px;
	margin-bottom: 10px;
}
.index-liucheng .liucheng-arrow{
	width: 20px;
	height: 20px;
	background-image: url(../../images/sanjiao.png);
    background-position: right 50%;
    background-size: auto 14px;
    background-repeat: no-repeat;
}

.index-pingjia{

}
.index-pingjia-nav{
	padding-left: 10px;
}
.index-pingjia-nav a{
	display: inline-block;
	padding: 5px 10px;
	background-color: #f5f5f5;
	color: #525252;
	border-radius: 15px;
	margin-right: 4px;
	font-size: 13px;
}
.index-pingjia-nav a.on{
		color: #fd503e;
    background-color: #fdefee;
    font-weight: bold;
    font-size: 14px;
}


/*首页服务 START*/
.index-service-wrap{
	width: 100%;
	height: 700px;
	background: url(../images/i/fuwu_bg.jpg) center top no-repeat;
}
.index-service-title{
	text-align: center;
	color: #fff;
	padding: 100px 0 50px;
}
.index-service-title h3{
	font-size: 36px;
	padding-bottom: 30px;
	border-bottom: rgba(255,255,255,.6) 1px solid;
	position: relative;
}
.index-service-title h3:after{
	position: absolute;
	content: "";
	width: 60px;
	height: 3px;
	background: #fff;
	left: 50%;
	bottom: 0;
	margin-left: -30px;
}
.index-service-title span{
	display: block;
	padding-top:18px;
	font-size: 18px;
}
.index-service{
	width: 1200px;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
}
.index-service li{
	list-style: none;
	width: 380px;
	height: 400px;
	padding: 10px;
	background: #fff;
	text-align: center;
}
.index-service li em{
	display: block;
	font-size: 24px;
    line-height: 62px;
    color: #252525;
    height: 62px;
    border-bottom: solid 1px #ddd;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 7px;
}
.index-service li p{
	font-size: 16px;
	color: #666;
	line-height: 26px;
}
/*首页服务 END*/


/*公司介绍 START*/
.index_about{
	width:1200px;
	padding:30px 0 80px;
	margin:0 auto;
	overflow:hidden;
}
.index_about_nav{
	width: 720px;
	margin:0 auto 40px;
	display: flex;
}
.index_about_nav a{
	flex: 1;
	height: 53px;
	line-height: 53px;
	font-size: 18px;
	background: #eee;
	text-align: center;
	margin-right: 1px;
}
.index_about_nav a:hover,.index_about_nav a.cur{
	background: #016CA7;
	color: #fff;
}

.index_about_con{
	width:100%;
	height: 450px;
	background: #efefef;
	overflow:hidden;
}
.index_about_p{
	float:left;
	width:600px;
	height: 450px;
	overflow:hidden;
}
.index_about_p img{
	width:600px;
	transition: .5s;
}
.index_about_p:hover img{
	transform: scale(1.1);
}
.index_about_c{
	float:right;
	width:600px;
	padding: 20px 50px;
	height: 450px;
	color:#666;
	overflow-y: auto;
}
.index_about_c h4{
	position: relative;
	padding-top: 30px;
	color: #333333;
    font-size: 18px;
    padding-bottom: 13px;
    margin-bottom: 30px;
}
.index_about_c h4:after{
	content:"";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 30px;
	background: #999;
}
.index_about_c h4 span{
	display: block;
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
}
.index_about_c p{
	text-indent: 2em;
	padding-bottom: 10px;
}
.index_about_c a{
	margin-top: 20px;
	display: inline-block;
	padding: 6px 20px;
	border: #016CA7 1px solid;
	border-radius: 20px;
	background: #fff;
	color: #016CA7;
}
.index_about_c a:hover{
	background: #016CA7;
	color: #fff;
}
/*公司介绍 END*/


/*****新闻资讯****/
.index-news-c{
	padding: 40px 0 80px;
    background: #f2f2f2;
}
.index-news{
	width:1200px; 
	padding:10px 0; 
	margin:0 auto; 
	margin-top:20px; 
	overflow:hidden; 
	clear:both;
}

.index-news-title{
	font-size: 24px;
	height: 40px;
}


.index-c-news{
	float: left;
	width:560px;
}
.index-c-news li{
	float: left;
	list-style: none;
	width: 560px;
}
.index-c-news li i{
	width: 560px;
	height: 320px;
	overflow: hidden;
}
.index-c-news li i img{
	width: 560px;
	height: 320px;
	transition: 0.6s;
}
.index-c-news li i img:hover{
	transform: scale(1.1);
}
.index-c-news li em{
	display: block;
	background: #fff;
	padding: 20px 10px 20px 128px;
	position: relative;
}

.index-c-news li em span{
	position: absolute;
	left: 10px;
	top: 20px;
	line-height: 32px;
	font-size: 24px;
	color: #666;
}
.index-c-news li em span strong{
	float: left;
	font-size: 56px;
	line-height: 56px;
	color: #016CA7;
	padding-right: 5px;
}
.index-c-news li em a{
	display: block;
	color: #016CA7;
	font-size: 20px;
	height: 40px;
	overflow: hidden;
	font-weight: bold;
	line-height: 40px;
}
.index-c-news li p{
	font-size: 16px;
	line-height: 26px;
}


.index-answer{ 
	float: right;
	width:580px; 
}
.index-answer-p{
	padding-bottom: 25px;
	overflow: hidden;
}
.index-answer-p span{
	display: block;
	float: left;
	width: 230px;
	height: 130px;
	overflow: hidden;
}
.index-answer-p span img{
	width: 230px;
	height: 130px;
	transition: 0.6s;
}
.index-answer-p span img:hover{
	transform: scale(1.1);
}
.index-answer-p em{
	display: block;
	float: right;
	width: 330px;
	height: 130px;
}
.index-answer-p em h4{
	width: 100%;
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	font-weight: bold;
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:nowrap;
}
.index-answer-p em p{
	font-size: 16px;
	line-height: 24px;
	color: #999;
}

.index-answer-l{
	border-top: #ccc 1px solid;
	padding-top: 10px;
}
.index-answer-l li{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 0;
}
.index-answer-l li h4{
	flex: 1;
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:nowrap;
}
.index-answer-l li a{
	
	font-size: 16px;
	
}
.index-answer-l li em{
	color: #666;
	margin-left: 10px;
}

/*客户案例*/
.index-case{
	width: 100%;
}
.index-case-c{
	width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 30px;
}
.index-case-c ul li{
	float: left;
	width: 31%;
	margin:0 1% 1%;
	text-align: center;
}
.index-case-c ul li img{
	width: 100%;
	border-radius: 6px;
}
.index-case-c ul li p{
	font-size: 16px;
	padding: 15px 0;
}

/*友情链接*/
.link-wrap{
	padding: 10px 0;
	width: 1200px;
	margin:10px auto;
	color: #999;
}
.link-wrap a{
	margin:0 5px;
}








@media only screen and (min-width: 768px) {
	.container {
		width: 750px;
	}
}
@media only screen and (min-width: 992px) {
	.container {
		width: 970px;
	}
	.nav-wrap{
		display: flex;
		margin:0;
	}
	
	.tool-wrap{
		display: none;
	}

	.mobile-tool{
		display: none;
	}
}
@media only screen and (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}

@media only screen and (max-width: 767px) {
	html{
		font-size: 14px;
	}
	.container {
		width: 100%;
	}
	.logo-text{
		display: none;
	}

	.logo-pic{
		max-width: 70%;
	}

	.index-title h2{
		font-size: 1.6rem;
		line-height: 120%;
	}


	.footer_copyright{
		font-size: 12px;
	}



}
@media only screen and (max-width: 991px){
	html{
	    font-size:10px !important;
	}
	.mobile-button {
	    display: block;
	    margin-right: 20px;
	}

	.header-wrap {
	    position: relative;
	    justify-content: space-between;
    	align-items: center;
    	background: #DDD;
    	height: 80px;
    	width: 100%;
	}

	.logo-wrap {
		width: auto;
	    max-width: 70%;
	    height: 100%;
	}
	.logo-wrap img {
	    max-width: 100%;
	    height: 100%;
	}
	.nav-wrap li{
		background: none;
	}
	.header-hide{
		top: 0;
	}


	
	.Banner {
	    margin-top: 80px;
	}
	.Banner-text {
	    top: 30%;
	}
	.Banner-text p {
	    font-size: 2rem;
	    padding-bottom: 5px;
	}
	.Banner-text em {
	    font-size: 1rem;
	    line-height: 100%;
	}
	.breadCrumb{
		display: none;
	}

	.wrap{
		width: 94%;
	}

	.sort-title {
	    font-size: 3rem;
	    padding: 3rem 0 4rem;
	}
	
	.contact {
	    padding: 20px 0 10px;
	}
	.contact-d {
	    padding-bottom: 20px;
	    padding-right: 0rem;
	}
	.contact-d .phone400 {
	    font-size: 3rem;
	    font-weight: 600;
	}
	.contact-d .blank-line {
	    height: 20px;
	}
	#allmap {
	    height: 300px;
	}


	.div-wrap {
	    width: 94%;
	}

	.div-body{
		background-color: #f5f5f5;
	}
	.float-l,.float-r{
		float: none;
	}
	.div-w-300{
		width: 95%;
		margin:0 auto;
	}
	.div-w-880{
		width: 100%;
	}
	.nav_sort_title{
		margin-bottom: 
	}
	.nav_sort_title em{
		display: block;
	}
	.nav_sort_updown{
		display: none;

	}
	.div-w-880{
		margin-top:15px;
	}

	.product-sort a {
	    font-size: 1.4rem;
	    height: 60px;
	    line-height: 60px;
	}
	

	.product-more-title {
	    height: 36px;
	    line-height: 36px;
	    border-bottom: 2px solid #dfdfdf;
	    margin-bottom: 20px;
	    padding-top: 16px;
	    box-sizing: content-box;
	}
	.product-more-title em {
	    font-size: 16px;
	}
	.product-more-title i {
	    margin-left: 10px;
	    font-size: 14px;
	    font-family: Arial;
	    color: #c2c2c1;
	    text-transform: uppercase;
	}
	.product-more-list li em {
	    font-size: 14px;
	}

	.jobs-tit {
	    padding: 12px 6px;
	    font-size: 1.2rem;
	}
	.jobs-item {
	    margin-top: 10px;
	    font-size: 1.2rem;
	}
	.job-zw {
	    font-size: 1.4rem;
	}
	.btnBox {
	    height: 40px;
	    padding: 0;
	}
	.btn {
	    width: 26px;
	    height: 26px;
	    margin: 0 auto;
	    margin-top:6px;
	    border-radius: 50%;
	    border: 1px solid #eaeaea;
	    background-image: url(../images/recruit8.png);
	    background-position: center;
	    background-repeat: no-repeat;
	}
	.jobs-content {
	    padding: 20px 10px;
	}

	.news-list-wrap {
	    padding: 0;
	    border: none;
	}
	.news-list-item .new-img {
	    width: 40%;
	}
	.news-list-item span {
	    margin: 0 0 0 20px;
	}
	.news-list-item h3 {
	    padding: 0 0 15px;
	}
	.news-list-item h3 a {
	    font-size: 1.6rem;
	}
	.news-list-item em {
	    display: none;
	}

	.news-detail-wrap {
	    padding: 0;
	    border: none;
	}
	.news-detail-wrap h2{
	    font-size: 22px;
	    padding: 12px 0;
	    line-height: 160%;
	}
	.news-detail-info {
	    font-size: 12px;
	    padding: 6px 0 20px;
	}
	.news-detail-content {
	    padding:0 0 30px;
	    font-size: 16px;
	    line-height: 180%;
	}
	.news-more-tit {
	    font-size: 16px;
	}


	.photo-list-wrap {
	    padding: 0;
	    border: none;
	}
	.photo-list-title {
	    padding: 20px 0;
	    line-height: 100%;
	    border-bottom: #eee 1px solid;
	}
	.photo-list-title h2 {
	    font-size: 20px;
	    font-weight: 500;
	    color: #222;
	}
	.photo-list-item {
	    float: left;
	    width: 48%;
	    margin:0 1%;
	    text-align: center;
	    padding: 20px 0 0;
	}
	.phoho-pic {
	    width: 100%;
	    height: 150px;
	    line-height: 100%;
	    border: #ddd 1px solid;
	    display: inline-block;
	    text-align: center;
	}
	.photo-list-item h3 {
	    padding: 10px 0;
	}
	.photo-detail-wrap {
	    padding: 0;
	    border: none;
	    background: #fff;
	}
	
	.flexslider .slides li{
		background-size: 100% 100%;
	 width:100%; height:388px; text-align:center; overflow:hidden; overflow:hidden;}
	.flexslider .slides li img{ border:none;}
	.flexslider .slides li a{
		display:block; height:388px;
		text-indent: -9999px;
	}

	
	
	.shuju-wrap {
	    width: 94%;
	    padding: 20px 0;
	    margin: 0 auto;
	    overflow: hidden;
	}
	.shuju-left {
	    float: none;
	    width: 100%;
	}
	.shuju-left h3 {
	    height: 50px;
	    font-size: 22px;
	    line-height: 42px;
	    color: #222;
	    font-weight: bold;
	}
	.shuju-left p {
	    font-size: 14px;
	}
	.shuju-left ul li {
	    font-size: 14px;
	}
	.shuju-left ul li em span {
	    font-size: 22px;
	}
	.shuju-right {
	    float: none;
	    width: 100%;
	    height: auto;
	    padding-top: 60px;
	    overflow: auto;
	}
	.shuju-right img {
	    width: 100%;
	}
	.index-video-1 {
	    margin-right: 0;
	}
	.shuju-right p {
	    font-size: 18px;
	    text-align: center;
	    height: 50px;
	    line-height: 50px;
	    margin-top: 30px;
	}
	
	.index-title {
	    margin: 20px 0 10px;
	}
	.index-title-b i {
	    width: 40px;
	}
	.index-title-b h3 {
	    font-size: 22px;
	    margin: 0 30px;
	}
	.index-title span {
	    font-size: 14px;
	}

	.index-banner-text{
		display: none;
	}
	.i-sort-all{
		display: none;
	}


	

.index-service-wrap {
    width: 100%;
    padding-bottom:30px;
    height: auto;
}
.index-service-title {
    padding: 40px 0 20px;
}
.index-service-title h3 {
    font-size: 22px;
    padding-bottom: 30px;
    border-bottom: rgba(255,255,255,.6) 1px solid;
    position: relative;
}
.index-service-title span {
    padding-top: 15px;
    font-size: 14px;
}
.index-service {
    width: 94%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.index-service li {
    list-style: none;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 7rem;
    display: flex;
    align-items: center;
}
.index-service li img {
    width: 12rem;
    height: 12rem;
    border-radius: 100%;
    border: #fff 0.3rem solid;
}
.index-service li span {
    flex: 1;
    text-align: left;
    margin-left: 3rem;
}
.index-service li em {
    font-size: 20px;
    font-weight: 700;
    line-height: 52px;
    height: 52px;
}

.index_about {
    width: 100%;
    padding: 20px 0 50px;
    margin: 0 auto;
    overflow: hidden;
}
.index_about_nav {
    width: 90%;
    margin: 20px auto 40px;
    display: flex;
}
.index_about_nav a {
    height: 46px;
    line-height: 46px;
    font-size: 14px;
}
.index_about_con {
    width: 100%;
    height: auto;
}
.index_about_p {
    float: none;
    width: 100%;
    height: auto;
}
.index_about_p img {
    width: 100%;
}
.index_about_c {
    float: none;
    width: 100%;
    padding: 20px 3% 40px;
    height: auto;
}
	
.index-news-c {
    padding: 20px 0 40px;
    background: #f2f2f2;
}
.index-news {
    width: 100%;
}
.index-c-news {
    float: none;
    width: 100%;
    margin-bottom:20px;
}
.index-answer {
    float: none;
    width: 100%;
}

.index-news-title {
	display: none;
	text-indent: 20px;
    font-size: 20px;
    height: 40px;
}
.index-c-news li i img {
    width: 100%;
    height: auto;
    transition: 0.6s;
}
.index-c-news li em span strong {
    font-size: 36px;
    line-height: 36px;
}
.index-c-news li em a {
    display: block;
    color: #016CA7;
    font-size: 20px;
    height: 40px;
    overflow: hidden;
    font-weight: bold;
    line-height: 40px;
}
.index-c-news li p {
    font-size: 14px;
    line-height: 26px;
}
.index-answer-p {
	padding: 0 3% 20px;
    padding-bottom: 20px;
    overflow: hidden;
}
.index-answer-p span {
    display: block;
    float: left;
    width: 40%;
    height: auto;
    overflow: hidden;
}
.index-answer-p em {
    display: block;
    float: right;
    width: 55%;
    height: auto;
}
.index-answer-p em h4 {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
}
.index-answer-p em p {
    font-size: 14px;
}

.index-answer-l {
    border-top: #ccc 1px solid;
    padding-top: 10px;
    padding: 10px 3% 0;
}
.index-answer-l li a{
	
}

.index-case-c{
	width: 100%;
}
.index-case-c ul li {
    float: left;
    width: 46%;
    margin: 0 2% 1%;
    text-align: center;
}

	.pages {
	    padding: 40px 0 10px;
	}
	.pages .pagination li{
		display: none;
	}
	.pages .pagination li:first-child,.pages .pagination li:last-child{
		display: inline-block;
	}
	.pages li span, .pages li a {
	    margin: 0 5px;
	    padding: 12px 25px;
	}

	.side-contact-title,.side-contact{
		display: none;
	}

	.nav_sort{
		margin: 15px 0;
	}
	.nav_sort a{
		font-size: 14px;
	}
	
	
	.page-wrap {
	    padding: 20px 0;
	    margin: 0 auto;
	}
	.page-wrap-left{
		display: none;
	}
	.page-wrap-content{
		font-size: 14px;
	}

	.nav-con{
		/*display: none;*/
	}

	.logo-phone{
		display: none;
	}
	.logo-weixin{
		display: none;
	}

	.link-wrap{
		display: none;
	}
	.baoming-wrap{
		display: none;
	}


	#index_banner{
		padding-top: 80px;
	}

	.header-div {
		height: 80px;
	    box-shadow: 0 0 0 rgb(0 0 0 / 10%);
	}

	.nav-wrap{
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		display: none;
		background-color: #222;
		margin:0;
		z-index: 9911;
	}
	.nav-wrap li{
		float: none;
		display: block;
		border-bottom: rgba(255,255,255,.1) 1px solid;
	}
	.nav-wrap a.nav-b{
		display: block;
	    height: 46px;
	    line-height: 46px;
	    position: relative;
	    font-size: 16px;
	    font-weight: 500;
	    padding: 0 0;
	    text-align: center;
	    color: #fff;
	}
	.nav-wrap li:hover>ul{ display:none;}

	.company-r {
	    width: 100%;
	    float: none;
	}
	.company-l {
	    width: 100%;
	    font-size: 1.6rem;
	    line-height: 180%;
	    float: none;
	    padding-top: 30px;
	}

}