@charset "utf-8";
/*公共样式*/
div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,p,body{
	padding:0;
	margin:0;
}
ul,li{
	 list-style:none;
}
img{
	border:0 none;
}
a{ 
	text-decoration:none;
	color:#000;
	transition: all 0.2s;
	-moz-transition: all 0.2s; 
	-webkit-transition: all 0.2s; 
	-o-transition: all 0.2s;
}
a:hover{
	text-decoration: none;
	color: #0061ae;
}
body{
	font-size:14px;
	font-family:"微软雅黑";
	color:#000;
	line-height:24px;
	overflow-x: hidden;
} 
.fl{
	float:left;
	display:inline;
}
.fr{
	float:right;
	display:inline;
}
.clear{
	clear:both;
}
.bg_none{
	background:none !important;	
}
.bd_none{
	border:none !important;	
}
html,body{
      -webkit-text-size-adjust:none;
}
/*头部*/
header{
	position: relative;
	z-index: 22;
	height: 100px;
}
.w {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
  .w {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .w {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .w {
    width: 100%;
    max-width: 1230px;
  }
  .container{
  	width: 100%;
  	max-width: 1230px;
  }
}
.logo{
	float: left;
	padding-top: 12px;
}
.logo>a{
	display: block;
}
.logo>a>img{
	display: block;
	width: 100%;
}
.logo_img{
	float: left;
}
/* 导航 */
.nav{
	float: right;
}
.nav>li{
	float: left;
	position: relative;
}
.nav>li>a{
	display: block;
	height: 100px;
	line-height: 100px;
	padding: 0 18px;
	font-size: 16px;
	color: #333333;
	background: none;
}
.nav>li:first-child{
	margin-left: 0;
}
.nav>li.active>a{
	color: #005daa;
}
.nav>li>a:hover{
	background: none;
	color: #005daa;
}
.sub_dl{
	position: absolute;
	left: 0px;
	top: 72px;
	width: 140px;
	background: rgba(0, 89, 170, 0.8);
	border-radius: 10px;
	display: none;
	z-index: 999;
	padding: 10px 0;
}
.sub_dl_box{
	width: 226px;
}
.sub_dl dd a{
	display: block;
	color: #FFFFFF;
	font-size: 14px;
	height: 28px;
	text-align: center;
	line-height: 28px;
	overflow: hidden;
	border-bottom: 1px solid #ffffff;
	margin: 0 15px;
	transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-webkit-transition: 0.5s all;
}
.sub_dl dd:last-child a{
	border-bottom: none;
}
.sub_dl_box dd a{
	text-align: left;
}
.sub_dl dd a:hover{
	color: #cb363c;
}
@media(max-width: 1210px){
	.nav>li>a{
		padding: 0 12px;
	}
}
@media (max-width: 1199px) {
	.nav>li>a{
		padding: 0 10px;
		font-size: 14px;
		line-height: 70px;
	}
	.sub_dl{
		width: 110px;
		top: 60px;
	}
	.sub_dl_box{
		width: 226px;
	}
	.sub_dl dd a{
		font-size: 12px;
		height: 30px;
		line-height: 30px;
	}
}
@media(max-width: 991px){
	header{
		height: 70px;
		background: rgba(225, 225, 225, 0.1);
	}
	.logo{
		display: block;
		float: left;
		margin-top: 0;
		margin-right: 0;
		padding-top: 0;
	}
	.logo a img{
		display: block;
		height: 60px;
		margin: 5px 0;
	}
	.nav{
		display: none;
	}
}
@media only screen and (max-width:480px ){
	.logo a img{
		width: 200px;
	}
} 

/* 手机按钮  */
#navToggle{
	display: none;
	overflow: hidden;
	position: absolute;
	cursor: pointer;
	box-sizing: border-box;
	width: 70px;
	height: 70px;
	padding: 15px;
	background: #0059ab;
	padding: 0;
	right: 0px;
	top: 0px;
	z-index: 999;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;	
}
#navToggle::before {
    margin-top: -7px;
}
#navToggle::after {
    margin-top: 7px;
}
#navToggle span,
#navToggle::after,
#navToggle::before {
    height: 2px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #000;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
#navToggle.show span {
    opacity: 0;
}
#navToggle span, #navToggle::after, #navToggle::before {
    height: 3px;
    width: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    background: #fff;
    position: absolute;
    display: block;
    content: '';
    text-indent: -9999px;
    transition: all 300ms ease-in-out;
}
#navToggle.show::before {
    margin-top: 0;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#navToggle.show::after {
    margin-top: 0;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mask{
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 900;
    left: 0;
    top: 0;
	display:none;
}
#mobileMenu {
    position: fixed;
    right: -250px;
    top: 0;
    margin: 0;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1110;
    background: #fff;
}
#mobileMenu .hello {
    height: 74px;
    background-color: #fff;
    border-bottom: 1px solid #F0F0F0;
	padding-left: 25px;
	position: relative;
	padding-top: 8px;
}
#mobileMenu .hello h3{
	font-size: 20px;
	color: #000;
	font-weight: bold;
	line-height: 54px;
}
#mobileMenu .hello .cha{
	cursor: pointer;
	height: 40px;
	width: 40px;
	position: absolute;
	right: 15px;
	top: 15px;
	background: url(../images/cha.png) no-repeat;
}
#mobileMenu .menu a {
	text-transform: uppercase;
    display: block;
    font-size: 14px;
    padding-left: 25px;
    color: #666;
    line-height: 40px;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
	text-decoration: none;
}
#mobileMenu .menu li>a::after {
	content: "";
	display: block;
	background: url(../images/arrow_icon.png) no-repeat;
	width: 16px;
	height: 9px;
	position: absolute;
	right: 25px;
	top: 18px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
#mobileMenu .menu li>a.dl-none::after {
	display: none;
}
#mobileMenu .menu li.on>a {
	background-color: #0059aa;
	color: #fff;
}
#mobileMenu .menu li.on>a::after {
	transform: rotate(180deg);
}
.sub-dl {
	display: none;
}
.sub-dl dd a {
	height: 40px;
	line-height: 40px;
	padding-left: 40px;
	font-size: 14px;
	color: #666;
	background: #f9f9f9;
	display: block;
	text-transform: none !important;
}
#mobileMenu .menu li.login-li>a::after {
	display: none;
}
#mobileMenu.show {
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
}
#page.show {
    /*-webkit-transform: translateX(200px);
    transform: translateX(200px);*/
    width: 100vw;
    height: 100vh;
}
#page {
    transition: all 0.3s ease-out;
    overflow: hidden;
}
.show {
    display: block !important;
}
html.show, body.show {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    position: fixed;
    -webkit-overflow-scrolling: auto;
    -webkit-transform: translateZ(0px);
}
@media only screen and (max-width:991px ) {
	#navToggle{
		display: block;
	}
	.nav_sou{
		height: 40px;
		border-bottom: 1px solid #E6E6E6;
	}
	.nav_sou .search{
		height: 40px;
		width: 200px;
	}
	.nav_sou .tijiao{
		background: url('../images/sou-bg.png') no-repeat center;
		height: 40px;
		width: 50px;
	}
}

/*banner*/
.fullwidthbanner-container {
	width: 100% !important;
	position: relative;
	padding: 0;
	max-height: 840px !important;
	overflow: hidden;
	top: -100px;
	margin-bottom: -100px;
}
.fullwidthbanner-container .fullwidthabnner {
	width: 100% !important;
	max-height: 840px !important;
	position: relative;
}
@media(max-width: 991px){
	.fullwidthbanner-container{
		top: 0px;
		margin-bottom: 0px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
	.banner,
	.bannercontainer {
		width: 768px;
		height: 309px;
	}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.banner,
	.bannercontainer {
		width: 480px;
		height: 193px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
	.banner,
	.bannercontainer {
		width: 320px;
		height: 129px;
	}
}
@media only screen and (max-width: 319px) {
	.banner,
	.bannercontainer {
		width: 240px;
		height: 97px;
	}
}
.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected {
	background: #005aa9 !important;
}
/** BULLETS **/
.tp-bullets {
	z-index: 1001;
	position: absolute;
	bottom: 30px !important;
}
.tp-bullets.simplebullets.round .bullet {
	cursor: pointer;
	position: relative;
	background: #ffffff !important;
	width: 14px;
	height: 14px;
	float: left;
	margin: 0 8px;
	border-radius: 50%;
	-webkit-transition: background 0.1s linear;
	-moz-transition: color, background 0.1s linear;
	-o-transition: color, background 0.1s linear;
	transition: color, background 0.1s linear;
}
.tp-leftarrow.large {
	z-index: 100;
	cursor: pointer;
	position: relative;
	background:url(../images/jt_left.png) no-Repeat;
	width: 98px;
	height: 89px;
	margin-left: 0px;
	margin-top: -26px;
	-webkit-transition: background 0.1s linear;
	-moz-transition: color, background 0.1s linear;
	-o-transition: color, background 0.1s linear;
	transition: color, background 0.1s linear;
	top: 50% !important;
}
.tp-rightarrow.large {
	z-index: 100;
	cursor: pointer;
	position: relative;
	background: url(../images/jt_right.png) no-Repeat;
	width: 98px;
	height: 89px;
	margin-left: 0;
	margin-top: -26px;
	-webkit-transition: background 0.1s linear;
	-moz-transition: color, background 0.1s linear;
	-o-transition: color, background 0.1s linear;
	transition: color, background 0.1s linear;
	top: 50% !important;
}
.tp-leftarrow.large:hover{
	background: url(../images/jt_left2.png) no-repeat ;
}
.tp-rightarrow.large:hover{
	background: url(../images/jt_right2.png) no-repeat;
}
@media(max-width: 991px){
	.tp-leftarrow.large,.tp-rightarrow.large{
		height: 36px;
		width: 40px;
		margin-top: -20px;
		background-size: 100% 100%;
	}
	.tp-leftarrow.large:hover{
		background: url(../images/jt_left3.png) no-repeat;
	}
	.tp-rightarrow.large:hover{
		background: url(../images/jt_right3.png) no-repeat;
	}
}
.tp-bullets.tp-thumbs {
	z-index: 100;
	position: absolute;
	padding: 3px;
	background-color: #fff;
	width: 500px;
	height: 50px;
	margin-top: -50px;
}
.fullwidthbanner-container .tp-thumbs {
	padding: 3px;
}
.tp-bullets.tp-thumbs .tp-mask {
	width: 500px;
	height: 50px;
	overflow: hidden;
	position: relative;
}
.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer {
	width: 5000px;
	position: absolute;
}
.tp-bullets.tp-thumbs .bullet {
	width: 100px;
	height: 50px;
	cursor: pointer;
	overflow: hidden;
	background: none;
	margin: 0;
	float: left;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	/*filter: alpha(opacity=50);	*/
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
}
.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}
.tp-thumbs img {
	width: 100%;
}
.tp-bannertimer {
	width: 100%;
	height: 10px;
	position: absolute;
	z-index: 200;
	z-index: 5000;
}
.tp-bannertimer.tp-bottom {
	bottom: 0px !important;
	height: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
	
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.responsive .tp-bullets.tp-thumbs {
		width: 300px !important;
		height: 30px !important;
	}
	.responsive .tp-bullets.tp-thumbs .tp-mask {
		width: 300px !important;
		height: 30px !important;
	}
	.responsive .tp-bullets.tp-thumbs .bullet {
		width: 60px !important;
		height: 30px !important;
	}
}
@media only screen and (min-width: 0px) and (max-width: 479px) {
	.responsive .tp-bullets {
		display: none;
	}
	.responsive .tparrows {
		display: none;
	}
}
.tp-simpleresponsive img {
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}
.tp-simpleresponsive a {
	text-decoration: none;
}
.tp-simpleresponsive ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tp-simpleresponsive>ul>li {
	list-style: none;
	position: absolute;
	visibility: hidden;
}
.caption.slidelink a div,
.tp-caption.slidelink a div {
	width: 10000px;
	height: 10000px;
}
.tp-loader {
	background: url(../images/loader.gif) no-repeat 10px 10px;
	background-color: #fff;
	margin: -22px -22px;
	top: 50%;
	left: 50%;
	z-index: 10000;
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

/* 首页展示 */
.index_con{
	margin-top: 100px;
	margin-bottom: 93px;
}
.index_ul li{
	padding: 0 10px;
}
.index_ul li a{
	display: block;
}
.index_ul li a .index_img{
	overflow: hidden;
}
.index_ul li a .index_img img{
	display: block;
	width: 100%;
	transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-webkit-transition: 0.5s all;
}
.index_ul li a:hover .index_img img{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.index_ul li a p{
	font-size: 24px;
	margin: 29px auto 15px;
	color: #000000;
}
.index_ul li a:hover p{
	color: #005daa;
}
.index_ul li a span{
	display: block;
	font-size: 16px;
	color: #666666;
}
@media(max-width: 1199px){
	.index_con{
		margin: 50px auto 50px;
	}
	.index_ul li a p{
		font-size: 20px;
	}
	.index_ul li a span{
		font-size: 14px;
	}
}
@media(max-width: 991px){
	.index_con{
		margin: 30px auto 30px;
	}
	.index_ul li a p{
		font-size: 18px;
		line-height: 30px;
		margin: 0;
	}
	.index_ul li a span{
		line-height: 30px;
	}
}

/* 工程案例 */
.case_left{
	width: 50%;

	float: left;
	position: relative;
}
.case_right{
	width: 50%;
	height: auto !important;
	float: right;
	background: #f5f5f5;
}
.case_left>img{
	display: block;
	width: 100%;
	height: 693px;
}
.case_box{
	width: 600px;
	height: 693px;
	float: left;
	text-align: center;
	padding: 118px 60px 0px 60px;
}
.case_right .case_box>img{
	display: block;
	margin: 0 auto 38px;
}
.case_right .case_box h3{
	font-size: 20px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 31px;
}
.case_right .case_box .case_more{
	font-size: 16px;
	line-height: 30px;
	color: #666666;
	margin-bottom: 93px;
}
.case_right .case_box .case_link{
	display: block;
	width: 160px;
	height: 42px;
	line-height: 42px;
	color: #ffffff;
	text-align: center;
	margin: 0 auto;
	background: #005daa;
}
.case-scroll .owl-buttons{
	width: 1200px;
	height: 60px;
	margin-top: -60px;
	text-align: center;
}
.case-scroll .owl-buttons .owl-prev{
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -60px;
	width: 60px;
	height: 60px;
	background: url('../images/prev-1.png') no-repeat;
}
.case-scroll .owl-buttons .owl-next{
	position: absolute;
	right: 50%;
	bottom: 0;
	margin-right: -60px;
	width: 60px;
	height: 60px;
	overflow: hidden;
	background: url('../images/next-1.png') no-repeat;
}
.case-scroll .owl-buttons .owl-prev:hover{
	background: url('../images/prev-2.png') no-repeat;
}
.case-scroll .owl-buttons .owl-next:hover{
	background: url('../images/next-2.png') no-repeat;
}
@media(max-width: 1199px){
	.case_left>img{
		height: 500px;
	}
	.case_box{
		height: 500px;
		padding: 20px;
		width: 100%;
	}
	.case_right .case_box .case_more{
		padding: 0 10px;
	}
}
@media(max-width: 991px){
	.case_left{
		width: 100%;
	}
	.case_left>img{
		height: auto;
	}
	.case_right{
		width: 100%;
	}
	.case_right .case_box .case_more{
		margin-bottom: 10px;
	}
	.case_right .case_box .case_link{
		margin-bottom: 60px;
	}
	.case_box{
		height: auto;
		padding: 10px 15px;
	}
	.case_right .case_box>img{
		margin-bottom: 10px;
	}
	.case_right .case_box h3{
		margin-bottom: 10px;
		font-size: 16px;
	}
	.case_right .case_box .case_more{
		font-size: 14px;
		line-height: 24px;
	}
	.case_right .case_box .case_link{
		width: 130px;
		height: 32px;
		line-height: 32px;
	}
	.case-scroll .owl-buttons .owl-prev,.case-scroll .owl-buttons .owl-next{
		width: 30px;
		height: 30px;
	}
	.case-scroll .owl-buttons .owl-prev{
		margin-left: -30px;
	}
	.case-scroll .owl-buttons .owl-next{
		margin-right: -30px;
	}
	.case-scroll .owl-buttons .owl-prev{
		background: url(../images/prev-3.png) no-repeat;
	}
	.case-scroll .owl-buttons .owl-next{
		background: url(../images/next-3.png) no-repeat;
	}
	.case-scroll .owl-buttons .owl-prev:hover{
		background: url(../images/prev-4.png) no-repeat;
	}
	.case-scroll .owl-buttons .owl-next:hover{
		background: url(../images/next-4.png) no-repeat;
	}
}
@media(max-width: 767px){
	
}

/* 新闻 */
.index_news{
	margin-bottom: 70px;
}
.index_news_ul{
	overflow: hidden;
}
.index_news_ul li{
	padding: 0 14px;
}
.index_news_ul li a{
	display: block;
}
.index_news_ul li a .index_news_img{
	overflow: hidden;
	position: relative;
}
.index_news_ul li a .index_news_img img{
	display: block;
	width: 100%;
	transition: 0.6s all;
	-webkit-transition: 0.6s all;
	-moz-transition: 0.6s all;
	-ms-transition: 0.6s all;
}
.index_news_ul li a:hover .index_news_img img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.index_news_text{
	text-align: left;
}
.index_news_text h4{
	font-size: 16px;
	height: 18px;
	margin: 28px auto 8px;
	color: #333333;
	overflow: hidden;
}
.index_news_text span{
	display: block;
	color: #999999;
}
.index_news_ul li a:hover .index_news_text h4{
	color: #005daa;
}
.index_news_ms{
	font-size: 14px;
	color: #666666;
	height: 48px;
	overflow: hidden;
	padding-bottom: 14px;
	box-sizing: content-box;
	border-bottom: 1px solid #dcdcdc;
	transition: 0.6s all;
	-webkit-transition: 0.6s all;
	-moz-transition: 0.6s all;
	-ms-transition: 0.6s all;
}
.index_news_ul li a:hover .index_news_ms{
	border-bottom: 1px solid #005daa;
	width: 100%;
}
@media only screen and (max-width:1199px ){
	.index_news{
		margin-bottom: 50px;
	}
	.index_news .index_title,.index_about .index_title{
		padding: 42px 0 25px;
		margin: 0;
	}
}
@media only screen and (max-width: 991px){
	.index_news_text h4{
		margin: 18px auto 5px;
	}
	.index_news_ms{
		height: 38px;
	}
}
@media only screen and (max-width: 767px){
	.index_news{
		margin-bottom: 15px;
	}
	.index_news .index_title,.index_about .index_title{
		padding: 22px 0 15px;
		margin: 0;
	}
	.index_news_ul li{
		margin-bottom: 15px;
	}
}

/* 产品展示 */
.index_pro{
	margin-bottom: 100px;
}
.index_pro_ul{
	overflow: hidden;
}
.index_title{
	text-align: center;
	margin: 97px auto 46px;
}
.index_title h3{
	color: #000000;
	font-size: 36px;
	font-weight: normal;
	padding-bottom: 17px;
}
.index_title>p{
	font-size: 16px;
	color: #666666;
}
.index_pro_ul li{
	padding: 0;
}
.index_pro_ul li a{
	display: block;
}
.index_pro_ul li a .pro_img{
	overflow: hidden;
	position: relative;
}
.index_pro_ul li a .pro_img img{
	display: block;
	width: 100%;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
.index_pro_ul li a:hover .pro_img img{
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}
.index_pro_ul li a p{
	display: block;
	height: 50px;
	overflow: hidden;
	width: 100%;
	line-height: 50px;
	background: rgba(0, 0, 0, 0.5);
	color: #ffffff;
	font-size: 16px;
	text-align: center;
	position: absolute;
	bottom: 0;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
.index_pro_ul li a:hover p{
	background: #005daa;
}
@media(max-width: 1199px){
	.index_pro{
		margin-bottom: 70px;
	}
	.index_title{
		margin: 50px auto 30px;
	}
	.index_title h3{
		font-size: 28px;
	}
}
@media(max-width: 991px){
	.index_pro{
		margin-bottom: 42px;
	}
	.index_title h3{
		font-size: 25px;
	}
	.index_title>p{
		font-size: 14px;
	}
	.index_pro_ul li a p{
		font-size: 14px;
		height: 40px;
		line-height: 40px;
	}
}
@media(max-width: 767px){
	.index_pro{
		margin-bottom: 22px;
	}
	.index_title{
		margin: 22px 0 20px;
	}
	.index_title h3{
		font-size: 20px;
	}
}

/* 关于我们 */
.index_about{
	padding-bottom: 45px;
}
.index_about .index_title{
	margin-bottom: 27px;
}
.about_box{
	text-align: center;
	font-size: 14px;
	line-height: 30px;
	color: #666666;
	padding: 0 15px;
}
.about_list{
	overflow: hidden;
}
.about_list li{
	padding: 0 10px;
	text-align: left;
}
.about_list li a{
	display: block;
}
.about_list li a .about_img{
	overflow: hidden;
}
.about_list li a .about_img img{
	display: block;
	width: 100%;
	transition: 0.6s all;
	-webkit-transition: 0.6s all;
	-moz-transition: 0.6s all;
	-ms-transition: 0.6s all;
}
.about_list li a:hover .about_img img{
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}
.about_list li a p{
	color: #000000;
	margin: 19px auto 16px;
	font-size: 24px;
}
.about_list li a span{
	display: block;
	font-size: 16px;
	color: #666666;
	margin-bottom: 50px;
}
@media(max-width: 1199px){
	.index_about{
		padding-bottom: 25px;
	}
	.about_list li a p{
		font-size: 20px;
	}
	.about_list li a span{
		margin-bottom: 25px;
	}
}
@media(max-width: 991px){
	.about_list li a p{
		font-size: 18px;
	}
	.about_list li a span{
		font-size: 14px;
	}
}
/* 底部内容 */
footer{
	width: 100%;
	position: relative;
	background: #161616;
}
.footer{
	overflow: hidden;
	position: relative;
	padding-top: 36px;
}
.footer_dl{
	width: 13%;
	float: left;
}
.footer_dl dt{
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 10px;
	font-weight: normal;
}
.ewm{
	float: right;
	width: 108px !important;
	text-align: center;
}
.footer_dl dt a{
	font-size: 16px;
	color: #ffffff;
	display: block;
	margin-bottom: 10px;
}
.footer_dl dd a{
	line-height: 30px;
	color: #bfbfbf;
}
.footer_dl>p{
	color: #bfbfbf;
}
.copyright{
	text-align: center;
	padding: 13px 0;
	color: #bfbfbf;
	margin-top: 32px;
	border-top: 1px solid #ffffff;
}
@media(max-width: 1250px){
	.footer_dl{
		width: 12%;
	}
}
@media(max-width: 1199px){
	
}
@media(max-width: 991px){
	.footer_dl:nth-child(1),.footer_dl:nth-child(2),.footer_dl:nth-child(3){
		display: none;
	}
	.footer_dl:nth-child(4),.footer_dl:nth-child(5),.footer_dl:nth-child(6),.footer_dl:nth-child(7){
		width: 20%;
	}
}
@media(max-width: 767px){
	.footer{
		padding-top: 0;
	}
	.footer_dl{
		display: none;
	}
	.copyright{
		margin-top: 0;
		border-top: none;
	}
}

/*内页样式*/
.inside_banner{
	width: 100%;
	top: -100px;
	margin-bottom: -100px;
	position: relative;
}
.inside_banner img{
	display: block;
	width: 100%;
}
@media(max-width: 991px){
	.inside_banner{
		top: -0px;
		margin-bottom: 0px;
	}
}
.main{
	padding: 80px 15px 40px;
	overflow: hidden;
}
/*左侧*/
.main_left{
	float: left;
	width: 250px;
	position: relative;
}
.left_title{
	color: #fff;
	background: url('../images/left_title.png') no-repeat;
	text-align: center;
	padding: 30px 0 37px;
}
.left_title h3{
	font-size: 36px;
	margin-bottom: 9px;
}
.left_title h4{
	color: #a7b6d6;
	font-size: 14px;
	text-transform: uppercase;
}
.left_title #navToggle{
	width: 56px;
	height: 56px;
}
.left_ul{
	border: 1px solid #005daa;
}
.left_ul li a{
	display: block;
	height: 60px;
	line-height: 60px;
	text-align: left;
	color: #333333;
	font-size: 16px;
	padding-left: 35px;
	margin: 0 16px;
	border-bottom: 1px solid #e5e5e5;
	background: url('../images/left-a.png') no-repeat 15px;
}
.left_ul li:last-child a{
	border-bottom: 0;
}
.left_ul li:hover{
	background: #005daa;
}
.left_ul li:hover a{
	color: #ffffff;
	border-bottom: 1px solid #005daa;
	background: url('../images/left-a2.png') no-repeat 15px;
}
.left_ul li.active{
	background: #005daa;
}
.left_ul li.active a{
	color: #ffffff;
	border-bottom: 1px solid #005daa;
	background: url('../images/left-a2.png') no-repeat 15px;
}
.left_contact{
	background: url('../images/left-contact.png') no-repeat;
	width: 250px;
	height: 130px;
	color: #ffffff;
	padding: 35px 0 0 64px;
	margin-top: -1px;
}
.left_contact>span{
	display: block;
	font-size: 20px;
	margin-bottom: 8px;
}
@font-face{
	font-family: FandolHei-Bold;
	src: url('../font/FandolHei-Bold.otf');
}
.left_contact>p{
	font-size: 30px;
	font-family: FandolHei-Bold;
}

/* 右侧 */
.main_right{
	float: right;
	width: calc(100% - 284px);
	width: -webkit-calc(100% - 284px);
	width: -moz-calc(100% - 284px);
}
.inside_nav{
	height: 40px;
	line-height: 40px;
	padding-top: 3px;
	background: url('../images/wz.png') no-repeat 10px;
	padding-left: 34px;
	color: #666666;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
}
.inside_nav>a{
	padding: 0 5px;
	display: inline-block;
	color: #666666;
}
.main_right>.index_pro_ul{
	margin-bottom: -13px;
}
.main_right>.index_pro_ul li{
	padding: 0 6px;
	margin-bottom: 13px;
}
.main_right>.index_pro_ul li a p{
	line-height: 32px;
	height: 32px;
	overflow: hidden;
	font-size: 14px;
}
@media (max-width: 991px){
	.main{
		padding: 60px 15px 30px;
	}
	.left_title{
		height: 56px;
		line-height: 56px;
		font-size: 18px;
		padding: 0;
		background: #005daa;
	}
	.left_title h3{
		font-weight: normal;
		font-size: 20px;
		text-align: left;
		line-height: 56px;
		padding: 0 0 0 15px;
	}
	.left_title h4{
		display: none;
	}
	.left_contact{
		display: none;
	}
	.main_left{
		width: 100%;
		float: none;
	}
	.left_ul{
		display: none;
		margin-top: 10px;
	}
	.left_ul li a{
		height: 40px;
		line-height: 40px;
		font-size: 15px;
	}
	.main_right{
		width: 100%;
		float: none;
	}
	.inside_nav{
		margin-bottom: 25px;
	}
}
@media(max-width: 767px){
	.main{
		padding: 30px 15px 30px;
	}
}
@media(max-width: 560px){
	.inside_nav>span{
		display: none;
	}
}
/* 产品内页标题 */
.main_box{
	overflow: hidden;
}
.inside_title{
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 25px;
	font-family: "Roboto-Regular";
}

/* 新闻  */
.main_right>.index_news_ul li{
	padding: 0;
}
.main_right>.index_news_ul .index_news_text h4{
	margin: 18px auto 10px;
	color: #000000;
}
.main_right>.index_news_ul li:first-child .index_news_text h4{
	margin-top: 0;
}

/* 新闻内页 */
.news_title{
	line-height:30px;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	color:#181616;
	margin-bottom: 8px;
}
.inside_date{
	text-align: center;
	font-size: 14px;
	margin-bottom: 25px;
}
.inside_date>p{
	display: inline-block;
}
.inside_date>span{
	display: inline-block;
	padding-left: 20px;
}
.inside_content{
	margin: 20px 0px;
	font-size: 14px;
	min-height: 200px;
}

/* 内页分页 */
.page_box{
	text-align: center;
	margin-top: 40px;
}
.page_box a{
	display: inline-block;
	height: 32px;
	border: 1px solid #DFDFDF;
	line-height: 32px;
	padding: 0px 12px;
	color: #969696;
	margin: 0 3px;
}
.page_box a.on{
	color:#fff;
	background:#cb363c;
	border: 1px solid #cb363c;
}

/* 内页详情分页 */
.inside_page{
	width:100%; 
	line-height:30px; 
	text-align:left; 
	margin-top:20px; 
	border-top:solid 1px #CCCCCC;	
	padding-top:5px;
	font-size: 16px;
}
@media only screen and (max-width:1199px ) {
	.inside_content img{
		display: block;
		width: 100%;
	}
	.main_content img{
		display: block;
		width: 100%;
	}
	.page_box{
		margin-top: 15px;
		margin-bottom: 0px;
	}
}

/* 小屏幕显示 */
@media (max-width: 480px) {
	.col-xss-12{
		width: 100%;
	}
}
