/**-----重置-----**/
html, body, div, span, applet, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
a, abbr, acronym, address, big, cite, code, 
del, dfn, em, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, 
b, u, i, center, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, 
time, mark, audio, video ,input,textarea{
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}


/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section img {
	display: block;
}

body {
	color: rgb(51, 51, 51);
	font: 14px Helvetica Neue, Helvetica, PingFang SC, \5FAE\8F6F\96C5\9ED1, Tahoma, Arial, sans-serif;
	font-family: "microsoft yahei";
	min-width: 1200px;
	overflow-x: hidden;
}

input,textarea{
	font-family: "microsoft yahei";
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
	color: #333333;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}


/*主体宽度*/
.inner-auto {
	width: 1200px;
	margin: 0 auto;
}


/*盒子模型*/
.box {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}


/*弹性布局*/
.flex,
.ali-c,
.flexc,
.jus-c,
.jus-b,
.flex1,
.jus-r {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}


/*	jus-c 水平居中
 * 	flexc 水平垂直居中
 * */
.jus-c,
.flexc {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}


/*ali-c 竖直居中*/
.ali-c,
.flexc {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}


/*两端对齐*/
.jus-b {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-around;
	-ms-flex-pack: justify;
	justify-content: space-between;
}


/*自动填充*/
.flex1 {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}


/*jus-r 右对齐*/
.jus-r {
	-webkit-box-pack: justify;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: justify;
	justify-content: flex-end;
}


/*左浮动*/
.fl {
	float: left;
}


/*右浮动*/
.fr {
	float: right;
}


/*清除浮动*/
.clear {
	zoom: 1;
}
.clear:after {
	display: block;
	content: "";
	clear: both;
	height: 0;
	visibility: hidden;
	line-height: 0;
}


/*文字一行溢出*/
.oneline {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}


/*文字两行溢出*/
.twoline {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/*文字5行溢出*/
.line5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}
/*隐藏*/
.hide {
	display: none;
}
/*显示*/
.show {
	display: block;
}


/*首页*/
.heade{
	height: 110px;
}
.logo{
	width: 448px;
	height: auto;
	line-height: 110px;
}
.navigation{
	margin-top: 42px;
}
.navigation ul{
	position: relative;
}
.navigation li{
	float: left;
	margin-left: 52px;
	font-size: 16px;
	overflow: hidden;
}
.navigation li p{
	position: relative;
	left: -9px;
	font-size: 6px;
	color: #999;
	 -webkit-transform: scale(0.7);
	 transform: scale(0.7);
}
.navigation li.new::after{
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.navigation li.new div{
	color: #D2292E;
}
.navigation li::after{
	display: block;
	content: '';
	width: 25px;
	height: 2px;
	margin-top: 1px;
	border-bottom: 1px solid #D2292E;
	-ms-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.navigation li:hover::after{
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.navigation li:hover div{
	color: #D2292E;
}

.banner{
	width: 100%;
	height: 430px;
}
.banner img{
	width: 100%;
	height: auto;
}
.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.banner div.swiper-button-next{
	right: 40px;
}
.banner div.swiper-button-prev{
	left: 40px;
}


.shop{
	padding: 72px 0 75px;
}

.title li{
	float: left;
	width: 280px;
	height: 99px;
	padding: 24px;
	margin-right: 26px;
	font-size: 23px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: url(../images/navbg.jpg) no-repeat center;
	cursor: pointer;
	overflow: hidden;
	transition: .2s all;
}
.title li:last-child{
	margin-right: 0;
}
.title li p{
	margin-top: 6px;
	font-size: 13px;
	color: #7a7a7a;
}
.title li.new{
	background-image: url(../images/navbg-on.jpg);
}
.title li.new p{
	color: #fff;
}

.shop-list{
	margin-top: 86px;	
	text-align: center;
}
.shop-list li{
	float: left;
	width: 271px;
	margin: 0 38px 32px 0;
	font-size: 16px;
	color: #999;
}
.shop-list li:nth-child(4n){
	margin-right: 0;
}
.shop-list li p{
	color: #999;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.shop-list li:hover p{
	color: #c0372d;
}
.shop-list li:hover .list-img{
	border: 1px solid rgba(201, 50, 41, 0.6);
}
.list-img{
	width: 271px;
	height: 269px;
	margin-bottom: 12px;
	text-align: center;
	line-height: 269px;
	border: 1px solid #e1e1e1;
	border-radius: 7px;
	overflow: hidden;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.list-img img{
	width: 219px;
	height: auto;
}
.shop-list .more{
	position: relative;
	display: inline-block;
	width: 181px;
	height: 39px;
	margin-top: 16px;
	color: #999;
	text-align: center;
	line-height: 39px;
	border: 1px solid #dee0df;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.shop-list .more span{
	position: relative;
	right: 0;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.shop-list .more::after{
	content: '»';
	position: absolute;
	top: -1.6px;
	right: 48px;
	font-size: 22px;
	opacity: 0;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.shop-list .more:hover::after{
	opacity: 1;
	right: 53px;
	color: #c0372d;
}
.shop-list .more:hover span{
	right: 5px;
	color: #c0372d;
}
.shop-list .more:hover{
	
	border: 1px solid #c0372d;
}

.market-use{
	width: 100%;
	height: 256px;
	padding-top: 58px;
	color: #fff;
	font-style: oblique;
	background: url(../images/middlebg.jpg) no-repeat center;
}
.use-left .use-title{
	font-size: 48px;
	font-weight: bold;
}
.use-left p{
	margin: 7px 0 12px;
	font-size: 24px;
}
.use-lower{
	width: 57px;
	border-top: 6px solid #fff;
}
.use-right ul{
	width: 676px;
	padding: 18px 70px 0 0;
}
.use-right li{
	float: left;
	font-size: 26px;
}
.use-right li span{
	font-size: 34px;
}
.use-right li:nth-child(3n) span{
	visibility:hidden
}
.use-right li a{
	display: inline-block;
	margin: 8px 26px;
	font-size: 30px;
	color: #ededed;
}

.index-news{
	padding: 80px 0;
}
.news-top{
	margin-bottom: 42px;
}
.news-top a{
	font-size: 16px;
	color: #999;
}
.news-top a:hover{
	color: #c0372d;
}
.news-title{
	font-size: 22px;
}
.news-Eng{
	display: inline-block;
	margin-left: 10px;
	font-size: 12px;
	color: #999;
}

.list-news{
	width: 581px;
	height: 94px;
	padding: 14px 0;
	margin-bottom: 31px;
	background-color: #f6f6f6;
	cursor: pointer;
}
.line-time{
	margin: 17px 0;
	padding: 0 20px;
	text-align: center;
	font-size: 12px;	
	color: #b4b4b4;
}
.line-time p{
	font-size: 16px;
}
.list-news .wire{
	width: 2px;
	height: 100%;
	border-left: 1px solid #dcdcdc;
}
.line-right{
	width: 422px;
	padding: 14px 0 14px 22px;
	line-height: 20px;
}
.line-right p{
	font-size: 14px;
	font-weight: bold;
}
.line-right span{
	font-size: 12px;
	color: #999;;
}
.list-news{
	-ms-transition: 0.5s all;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
}

.news-bottom .list-news:hover{
	color: #fff;
	background-color: #c0372d;
	box-shadow: 0px 2px 7px rgba(226, 67, 56, 0.6);
}
.news-bottom .list-news:hover p{
	color: #fff;
}
.news-bottom .list-news:hover span{
	color: #fff;
}
.news-bottom .list-news:hover .wire{
	border-left: 1px solid #fff;
}

.news-bottom .list-news.new{
	color: #fff;
	background-color: #c0372d;
	box-shadow: 0px 2px 7px rgba(226, 67, 56, 0.6);
}

.news-bottom .new p{
	color: #fff;
}
.news-bottom .new span{
	color: #fff;
}
.news-bottom .new .wire{
	border-left: 1px solid #fff;
}

.innews-right{
	width: 581px;
	height: 469px;
	background-color: #f6f6f6;
}
.innews-right .list-news:hover{
	color: #c0372d;
}
.neri-img{
	padding: 30px 28px 0;
}
.neri-img img{
	width: 513px;
	height: auto;
}

.index-about{
	width: 100%;
	height: 456px;
	margin-bottom: 150px;
	background: url(../images/bg.jpg) no-repeat center;
}
.inab-center{
	position: relative;
}
.inab-center .red-bg{
	position: relative;
	top: 140px;
	z-index: 2;
	width: 557px;
	height: 378px;
	background-color: #c0372d;
}
.up-center{
	position: absolute;
	left: 0;
	right: 0;
	top: 96px;
	z-index: 4;
	margin: 0 auto;
	width: 1133px;
	height: 360px;
	background-color: rgba(255, 255, 255, 0.85);
	box-shadow: 0px 0px 28px 2px rgba(212, 130, 130, 0.35);
}
.up-center .upce-img img{
	width: 549px;
	height: 360px;
}
.up-center .upce-center{
	width: 583px;
	padding: 66px 40px 0;
}
.upce-center .title{
	font-size: 19px;
	font-weight: bold;
	text-align: center;
}
.upce-center p{
	font-size: 10px;
	color: #999;
	text-align: center;
}
.upce-center span{
	margin: 12px 0 22px;
	font-size: 14px;
	line-height: 30px;
	color: #999;
}
.upce-center .more{
	text-align: center;
}
.upce-center .more a{
	display: inline-block;
	width: 144px;
	height: 39px;
	color: #999;
	font-size: 15px;
	text-align: center;
	line-height: 39px;
	border: 1px solid #e6e6e6;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.upce-center .more a:hover{
	color: #c0372d;
	border: 1px solid #c0372d;
}

.foot-top{
	/*height: 50px;*/
	line-height: 50px;
	color: #adadad;
	background-color: #28282a;
}
.foot-top a{
	display: inline-block;
	margin: 0 10px;
	color: #adadad;
}
.foot{
	width: 100%;
	height: 102px;
	text-align: center;
	color: #adadad;
	line-height: 26px;
	background-color: #1a1a1a;
}
.foot-bott{
	padding-top: 30px;
}
.foot-bott a{
	color: #adadad;
}

.service-center{
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 99;
	width: 201px;
	height: 212px;
	margin: auto 0;
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: 0.4s all;
	-ms-transition:  0.4s all;
	transition: 0.4s all;
}
.on-service{
	position: absolute;
	left: -28px;
	width: 28px;
	height: 112px;
	padding: 14px 4px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	border-bottom-left-radius: 6px;
	border-top-left-radius: 6px;
	background-color: #28afed;
	overflow: hidden;
	cursor: pointer;
}
.service-rigth{
	width: 201px;
	height: 100%;
	/*border: 1px solid #e1e6ec;*/
}
.ser-top{
	/*height: 159px;*/
	padding: 16px 20px 0;
	font-size: 12px;
	border: 1px solid #e1e6ec;
	border-bottom: 0;
	background-color: #f6f8fb;
}
.ser-top p{
	margin-bottom: 18px;
	padding-left: 14px;
	color: #9aa8c2;
	background: url(../images/Icon.png) no-repeat left 3px;
}
.ser-top a{
	display: inline-block;
	width: 100%;
	height: 38px;
	margin-bottom: 15px;
	line-height: 38px;
	text-align: center;
	font-size: 14px;
	color: #FFFF;
	border-radius: 50px;
	background-color: #28afed;
}
.ser-tel{
	width: 100%;
	height: 51px;
	line-height: 51px;
	text-align: center;
	border: 1px solid #e1e6ec;
	background-color: #fff;
}
.service-center:hover{
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0);
}


/*类页框架*/
.frame{
	padding: 31px 0 100px;
}
.frame-left{
	width: 230px;
	margin-left: 99px;
}
.frame-left .title{
	width: 100%;
	height: 86px;
	padding-top: 20px;
	text-align: center;
	color: #fff;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	background-color: #c93229;
	overflow: hidden;
}
.frame-left .title h2{
	font-size: 24px;
	font-weight: normal;
}
.frame-left .title p{
	font-size: 14px;
}
.frft-butt{
	padding: 0 12px;
	border: 1px solid #ccc;
	border-top: 0;
}
.frft-butt .head{
	position: relative;
	width: 100%;
	height: 56px;
	line-height: 56px;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	border-top: 1px dashed #d2d2d2;
	cursor: pointer;
}
.frft-butt .head a::after{
	position: absolute;
	top: 21px;
	right: 20px;
	display: block;
	content: '';
	width: 14px;
	height: 14px;
	background: url(../images/arrow-blek.png) no-repeat center;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.frft-butt ul a{
	display: block;
    width: 100%;
    height: 100%;
}
.frft-butt .on a{
	color: #c93229;
}
.frft-butt .on a::after{
	background: url(../images/arrow.png) no-repeat center;
}
.frft-butt .new::after{
	transform:rotate(90deg);
	-ms-transform:rotate(90deg); 	/* IE 9 */
	-moz-transform:rotate(90deg); 	/* Firefox */
	-webkit-transform:rotate(90deg); /* Safari 和 Chrome */
}
.frft-butt>ul>li:first-child .head{
	border-top: 0;
}
.frft-butt ul li ul{
	display: none;
}
.frft-butt ul li ul.hide{
	display: block;
}
.frft-butt ul ul li{
	height: 41px;
	text-align: center;
	line-height: 41px;
	font-size: 16px;
	border-top: 1px dashed #d2d2d2;
}
.frft-butt ul ul li.on{
	background-color: #c93229;
}
.frft-butt ul ul li.on a{
	color: #fff;
}
.frft-butt ul ul li:hover a{
	color: #fff;
}
.frft-butt ul ul li:hover{
	background-color: #c93229;
}
.frame-right{
	position: relative;
	width: 740px;
	margin-left: 30px;
}
.frame-right .frht-top{
	height: 40px;
	margin-bottom: 38px;
	line-height: 40px;
	border-bottom: 1px solid #ccc;
}
.frht-top .upright{
	width: 4px;
	height: 16px;
	margin: 13px 8px 0 0;
	border-left: 4px solid #c93229;
}
.frht-top .ht-title{
	font-size: 16px;
	color: #c93229;
}
.frht-top .ht-nav a:hover{
	color: #c93229;
}
.frame-right .about-center{
	line-height: 30px;
}

/*关于我们页面*/
.about-banner img{
	width: 100%;
	height: auto;
}


/*产品中心页面*/
.product{
	
}
.product li{
	float: left;
	width: 240px;
	margin: 0 10px 35px 0;
}
.product li:nth-child(3n){
	margin-right: 0;
}
.prod-img{
	width: 240px;
	height: 240px;
	margin-bottom: 10px;
	text-align: center;
	line-height: 240px;
	border: 1px solid #dcdcdc;
	overflow: hidden;
}
.prod-img img{
	width: 186px;
	height: auto;
}
.product li p{
	text-align: center;
}
.product li:hover p{
	color: #c93229;
}


/*分页*/
.paging{
	margin-top: 20px;
	    line-height: 34px;
}
.paging .link{
	margin: 0 8px;
}
.paging li a.first{
	width: auto;
	height: 34px;
	padding: 0 10px;
	text-align: center;
	line-height: 34px;
	border: 1px solid #c9c9c9;
	cursor: pointer;
}
.paging li a.end{
	width: auto;
	height: 34px;
	padding: 0 10px;
	text-align: center;
	line-height: 34px;
	border: 1px solid #c9c9c9;
	cursor: pointer;
}
.paging li a.prev{
	width: auto;
	height: 34px;
	padding: 0 10px;
	text-align: center;
	line-height: 34px;
	border: 1px solid #c9c9c9;
	cursor: pointer;
}
.paging li a.next{
	width: auto;
	height: 34px;
	padding: 0 10px;
	text-align: center;
	line-height: 34px;
	border: 1px solid #c9c9c9;
	cursor: pointer;
}
.paging span span{
	color: #c93229;
	font-weight: bold;
}
.paging li a.next:hover{
	color: #fff;
	background-color: #c93229;
}
.paging li a.prev:hover{
	color: #fff;
	background-color: #c93229;
}
.paging li a.end:hover{
	color: #fff;
	background-color: #c93229;
}
.paging li a.first:hover{
	color: #fff;
	background-color: #c93229;
}
.paging li{
	list-style: none;
}
.paging li a{
	display: inline-block;
	width: 34px;
	height: 34px;
	margin: 0 2px;
	font-size: 16px;
	text-align: center;
	line-height: 34px;
	border: 1px solid #c9c9c9;
	cursor: pointer;
}
.paging li a:hover{
	color: #fff;
	background-color: #c93229;
}
.paging li a.active{
	color: #fff;
	background-color: #c93229;
}



/*产品详情*/
#details_top{
	width: 1200px;
	margin: 0 auto;
	margin-bottom: 70px;
}
#details_top .zoomBox {
	width: 360px;
	position: relative;
}
#details_top .zoom {
	width: 360px;
	height: 360px;
	margin-bottom: 24px;
	border: 1px solid #dbdbdb;
	border-radius: 8px;
	overflow: hidden;
}
#details_top .zoom img {
	width: 100%;
	height: 100%;
}
#details_top .zoomBig {
	position: absolute;
	overflow: hidden;
	left: 412px;
	top: 0;
	box-shadow: 0 0 6px #eee;
	-webkit-box-shadow: 0 0 6px #eee;
	-moz-box-shadow: 0 0 6px #eee;
	display: none;
	z-index: 999;
	border: 1px solid rgb(201, 50, 41, 0.4);
}
#details_top .zoomBig img {
	position: absolute;
	max-width: inherit;
}
#details_top .zoom_hover {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9999;
	cursor: all-scroll;
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	display: none;
}


.about-top .small{
	text-align: center;
}
.about-top .small span{
	display: inline-block;
	width: 61px;
	height: 61px;
	margin-right: 15px;
	text-align: center;
	line-height: 61px;
	border: 1px solid #e6e6e6;
	border-radius: 6px;
	vertical-align: middle;
	overflow: hidden;
	cursor: pointer;
}
.about-top .small span:last-child{
	margin-right: 0;
}
.about-top .small span.new{
	border-color: rgb(201, 50, 41, 0.6);
}
.about-top .small span img{
	width: 48px;
	height: auto;
}

.about-title{
	width: 375px;
	padding-left: 43px;
}
.about-title h2{
	font-size: 18px;
}
.pro-details{
	margin-top: 55px;
}
.deta-info{
	margin-bottom: 20px;
	border-bottom: 1px solid #e6e6e6;
}
.deta-info p{
	display: inline-block;
	height: 31px;
	line-height: 31px;
	padding: 0 15px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	background-color: #e6e6e6;
}

.nextPage{
	margin-top: 65px;
	text-align: center;
}
.nextPage img{
	position: relative;
	left: 0;
	transition: 0.2s all;
}
.nextPage a{
	display: inline-block;
	width: 240px;
	height: 48px;
	margin: 0 35px;
	color: #c93229;
	text-align: center;
	line-height: 48px;
	border: 1px solid #c93229;
}
.nextPage .fist:hover img{
	left: -4px;
}
.nextPage .last:hover img{
	left: 4px;
}



/*新闻资讯页面*/
.news li{
	padding: 22px 0 16px 32px;
	border-bottom: 1px solid #e6e6e6;
	overflow: hidden;
	zoom: 1;
}
.news .news-left{
	width: 122px;
	padding: 34px 0;
	text-align: center;
}
.news .news-left p{
	font-size: 36px;
}
.news .news-left span{
	font-size: 16px;
	color: #a0a0a0;
}
.news .news-right{
	width: 580px;
}
.news-right h2{
	margin-bottom: 10px;
	font-size: 16px;
}
.news-right span{
	line-height: 24px;
}
.news-right a{
	display: inline-block;
	width: 110px;
	height: 32px;
	margin-top: 12px;
	text-align: center;
	line-height: 32px;
	color: #c93229;
	border: 1px solid #c93229;
	border-radius: 8px;
}
.about-center .mt7{
	margin-top: 70px;
}
.news-right .more{
	position: relative;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.news-right .more span{
	position: relative;
	right: 0;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.news-right .more::after{
	content: '»';
	position: absolute;
	top: -1.6px;
	right: 12px;
	font-size: 22px;
	opacity: 0;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.news-right .more:hover::after{
	opacity: 1;
	right: 17px;
	color: #c0372d;
}
.news-right .more:hover span{
	right: 5px;
	color: #c0372d;
}
.news-right .more:hover{
	
	border: 1px solid #c0372d;
}



/*新闻详情页面*/
.news-detail h3{
	text-align: center;
	font-size: 18px;
}
.news-detail p{
	margin-bottom: 20px;
	text-align: center;
	font-size: 12px;
	color: #999;
}



/*营销网络*/
.sales{
	text-align: center;
}



/*联系我们*/
.contact{
	line-height: 30px;
}
.contact .title{
	margin-bottom: 10px;
	color: #0069ad;
	font-size: 18px;
}
.map{
	width: 100%;
	height: 380px;
	margin-top: 30px;
	border: 4px solid #e2e2e2;
}



/*在线留言页面*/
.language{
	line-height: 30px;
}
.language .input{
	margin-bottom: 16px;
}
.language input{
	width: 231px;
	height: 32px;
	padding-left: 3px;
	margin: 0 5px 0 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
}
.language .input textarea{
	width: 421px;
	height: 120px;
	padding: 3px;
	margin-left: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	outline: none;
	resize: none;
}
.language .input .toast{
	color: #c93229;
}

.submit{
	width: 121px;
	height: 32px;
	margin: 10px 0 0 84px;
	font-size: 14px;
	color: #fff;
	background-color: #c93229;
	border-radius: 4px;
	border: 0;
	outline: none;
	cursor: pointer;
}



/*资质荣誉*/
.about-honor li{
	float: left;
	margin-right: 10px;
	margin-bottom: 15px;
	text-align: center;
	cursor: pointer;
}
.about-honor li:nth-child(3n){
	margin-right: 0;
}
.about-honor li .honor{
	width: 240px;
	height: 240px;
	margin-bottom: 10px;
	text-align: center;
	line-height: 240px;
	border: 1px solid #dcdcdc;
	overflow: hidden;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.about-honor li p{
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.about-honor li .honor img{
	width: 148px;
	height: auto;
}
.about-honor li:hover .honor{
	border: 1px solid rgba(201, 50, 41, 0.6);
}
.about-honor li:hover p{
	color: #c93229;
}
