@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: #0191da;
}
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: 30;
	height: 152px;
	background: url(../images/header.png) no-repeat center;
}
@media only screen and (max-width:991px ) {
	header{
		height: 70px;
	}
}
.header_left{
	float: left;
	margin-top: 20px;
}
.logo{
	display: block;
	float: left;
}
.logo img{
	transition: all 0.3s linear;
	width: 100%;
	display: block;
}

.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 only screen and (min-width:1200px ) {
	.w{
		width: 100%;
		max-width: 1520px;
	}
}
.nav{
	border-top: 1px solid #FFFFFF;
	margin-top: 20px;
}
.nav ul>li{
	float: left;
	position: relative;
}
.nav ul>li>a{
	display: block;
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	color:#ffffff;
	padding: 0 28px;
}
.nav ul>li:first-child a{
	padding: 0 40px;
}
.nav ul>li>a:hover{
	background: url(../images/hover.png) no-repeat center;
	color: #000000;
}
.nav ul>li.active>a{
	background: url(../images/hover.png) no-repeat center;
	color: #000000;
}
.sub_dl{
	position: absolute;
	left: 0px;
	top: 48px;
	width: 100%;
	display: none;
	z-index: 999;
}
.sub_dl2{
	left: -40px;
	width: 210px;
}
.sub_dl2 dd a{
	background: #ffffff !important;
	border-radius: 8px !important;
}
.sub_dl2 dd a:hover{
	background: #0f3c86 !important;
}
.sub_dl dd{
	text-align: center;
}
.sub_dl dd a{
	font-size: 15px;
	display: block;
	/*width: 104px;*/
	left: 10px;
	height: 30px;
	line-height: 30px;
	margin: 6px auto;
	color: #000000;
	background: url(../images/hover.png) no-repeat center;
	/*box-shadow: 2px 5px 14px 2px #EFEEEE;
	border-radius: 14px;*/
}
.sub_dl dd a:hover{
	background: url(../images/hover2.png) no-repeat center;
	color: #FFFFFF;
}
.header_right{
	float: right;
	margin-top: 20px;
}
.header_right p{
	font-size: 24px;
	color: #f70a04;
	font-weight: bold;
	height: 57px;
	line-height: 57px;
	padding-left: 65px;
	background: url(../images/dh.png) no-repeat left;
}
.header_right h4{
	font-size: 30px;
	color: #82bf34;
}
@media (max-width: 1199px) {
	.nav ul>li>a{
		padding: 0px 30px;
		font-size: 14px;
	}
	.heaer_left{
		margin-right: 20px;
	}
}
@media (max-width: 991px) {
	.header_right{
		display: none;
	}
}

/* 手机导航 */
#navToggle{
	display: none;
	overflow: hidden;
	position: absolute;
	cursor: pointer;
	box-sizing: border-box;
	width: 70px;
	height: 70px;
	padding: 15px;
	background: #666666;
	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 {
    display: block;
    font-size: 14px;
    padding-left: 25px;
    color: #666;
    line-height: 50px;
    border-bottom: 1px solid #E6E6E6;
}
#mobileMenu .menu a:hover{
	background-color: #0f3c86;
    text-decoration: none;
    color:#fff;
}

#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(max-width: 991px){
	header .nav{
		display: none;
	}
	.logo img{
		width: 270px;
	}
	#navToggle{
		display: block;
	}
	.nav_wrap{
		border-top: none;
	}
}
@media only screen and (max-width:991px ) {
	header.container{
		width: 100%;
	}
}


/*banner*/
.fullwidthbanner-container {
	width: 100% !important;
	position: relative;
	padding: 0;
	max-height: 795px !important;
	overflow: hidden;
}
.fullwidthbanner-container .fullwidthabnner {
	width: 100% !important;
	max-height:795px !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: #0f3c86 !important;
}

/** BULLETS **/
.tp-bullets {
	z-index: 1001;
	position: absolute;
	bottom: 25px !important;
}
.tp-bullets.simplebullets.round .bullet {
	cursor: pointer;
	position: relative;
	background: rgba(239,237,238,0.3);
	width: 15px;
	height: 15px;
	border-radius: 50%;
	float: left;
	margin: 0px 8px;
	-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: 52px;
	height: 52px;
	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: 52px;
	height: 52px;
	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;
}
@media(max-width: 991px){
	.tp-leftarrow.large,.tp-rightarrow.large{
		height: 40px;
		width: 40px;
		margin-top: -20px;
		background-size: 100% 100%;
	}
}
.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-stye: 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;
}

.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden; 
	position: relative;
	width: 100%;
	padding-bottom: 45px;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-align: right;
}

/* 关于我们  */
.contact{
	padding: 58px 15px;
	overflow: hidden;
}
.index_title{
	text-align: center;
	margin-bottom: 58px;
}
.index_title h3{
	font-size: 36px;
	line-height: 36px;
	font-weight: normal;
	color: #333333;
	padding-bottom: 21px;
	background: url(../images/h3.png) no-repeat center bottom;
}
.index_title p{
	text-transform: uppercase;
	font-size: 48px;
	line-height: 42px;
	color: #bfbfbf;
	font-weight: bold;
}
.contact_left{
	width: 50%;
	float: left;
	padding-right: 20px;
}
.contact_left>a{
	display: block;
	overflow: hidden;
}
.contact_left>a>img{
	display: block;
	width: 100%;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
}
.contact_left>a:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.contact_right{
	width: 50%;
	float: left;
	padding-left: 20px;
}
.contact_text h3{
	font-size: 24px;
	color: #333333;
	font-weight: bold;
	margin: 20px 0px 0px;
}
.contact_text>p{
	font-size: 10px;
	color: #666666;
}
.contact_ms{
	margin-top: 12px;
	font-size: 14px;
	color: #666666;
}
.contact_list ul{
	overflow: hidden;
	display: table;
	text-align: center;
	margin: 56px auto 0px;
}
.contact_list ul li{
	float: left;
	margin: 0 33px;
}
.contact_list ul li a{
	display: block;
}
.contact_list ul li a img{
	display: block;
}
.contact_list ul li a p{
	font-size: 16px;
	color: #000000;
	font-weight: bold;
	margin-top: 5px;
}
.contact_list ul li a .list_img1{
	background: url(../images/contact-1.png) no-repeat center;
	width: 122px;
	height: 122px;
}
.contact_list ul li a .list_img2{
	background: url(../images/contact-2.png) no-repeat center;
	width: 122px;
	height: 122px;
}
.contact_list ul li a .list_img3{
	background: url(../images/contact-3.png) no-repeat center;
	width: 122px;
	height: 122px;
}
.contact_list ul li a:hover .list_img1{
	background: url(../images/contact-4.png) no-repeat;
}
.contact_list ul li a:hover .list_img2{
	background: url(../images/contact-5.png) no-repeat;
}
.contact_list ul li a:hover .list_img3{
	background: url(../images/contact-6.png) no-repeat;
}
@media only screen and (max-width:1199px ) {
	.contact_list ul{
		margin-top: 10px;
	}
	.contact_list ul li{
		margin: 0 5px;
	}
}
@media only screen and (max-width:991px ) {
	.contact{
		padding: 38px 15px;
	}
	.contact_left{
		width: 100%;
		float: none;
		padding-right: 0;
	}
	.contact_right{
		width: 100%;
		float: none;
		padding-left: 0;
	}
	.contact_list ul li{
		margin: 0 16px;
	}
}
@media only screen and (max-width:480px ) {
	.contact{
		padding: 18px 15px;
	}
	.contact_list ul li{
		float: none;
		text-align: center;
		margin: 0 3px;
	}
	.contact_text h3{
		font-size: 18px;
	}
}

/* 产品展示 */
#pro_wrap{
	background: url(../images/pro-wrap.jpg) no-repeat center;
	padding: 58px 0px;
}
.pro_content .index_title{
	margin-bottom: 47px;
}
.pro_content .index_title p{
	color: #aeadad;
}
.pro_sort ul{
	overflow: hidden;
	text-align: center;
	display: table;
	margin: 0 auto 58px;
}
.pro_sort ul li{
	float: left;
	margin-bottom: 5px;
}
.pro_sort ul li a{
	display: block;
	height: 34px;
	line-height: 34px;
	border: 1px solid #0f3c86;
	padding: 0 18px;
	margin: 0 15px;
	font-size: 14px;
	color: #000000;
}
.pro_sort ul li a:hover{
	background: #f20b07;
	border: 1px solid #f20b07;
	color: #FFFFFF;
}
#pro_scroll .item{
	margin: 0 4px;
}
.products_list{
	margin-bottom: 7px;
	border: 1px solid #999999;
}
.products_list .list_a{
	display: block;
}
.pro_img{
	overflow: hidden;
	position: relative;
}
.pro_img img{
	display: block;
	width: 100%;
}
.pro_img .a_hover{
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	opacity: 0;
	transition: 1s all;
	-moz-transition: 1s all;
	-webkit-transition: 1s all;
}
.pro_img .a_hover:hover{
	opacity: 1;
}
.pro_img .a_hover:hover .fd{
	top: 50%;
}
.fd{
	width: 36px;
	height: 36px;
	position: absolute;
	top: 40%;
	left: 50%;
	margin-top: -18px;
	margin-left: -18px;
	background: url(../images/fd.png) no-repeat;
	transition: 1s all;
	-moz-transition: 1s all;
	-webkit-transition: 1s all;
}
.products_list .list_a>p{
	height: 54px;
	line-height: 54px;
	text-align: center;
	background: #0f3c86;
	color: #FFFFFF;
	font-size: 16px;
}
.index_link{
	display: block;
	text-align: center;
	width: 117px;
	height: 36px;
	line-height: 36px;
	margin: 0 auto;
	background: #f70a04;
	color: #FFFFFF !important;
}
@media only screen and (max-width:1199px ) {
	.pro_sort ul li a{
		margin-bottom: 10px;
	}
}
@media only screen and (max-width:991px ) {
	#pro_wrap{
		padding: 28px 0px;
	}
	.pro_content .index_title{
		margin-bottom: 27px;
	}
	.pro_sort ul{
		margin-bottom: 38px;
	}
	.pro_sort ul li a{
		margin: 0 10px 15px;
	}
	.products_list .list_a>p{
		font-size: 14px;
		overflow: hidden;
	}
}
@media only screen and (max-width:767px ) {
	.pro_sort ul{
		margin-bottom: 20px;
	}
	.pro_sort ul li a{
		margin: 0 8px 10px;
	}
	.owl-carousel .owl-wrapper-outer{
		padding-bottom: 25px;
	}
}
@media only screen and (max-width:480px ) {
	.pro_sort ul{
		margin-bottom: 18px;
	}
	.pro_sort ul li{
		float: none;
		text-align: center;
	}
	.pro_sort ul li a{
		overflow: hidden;
		line-height: 34px;
		margin: 0 5px 5px;
	}
}

/* 新闻中心 */
.index_news{
	padding: 57px 15px;
	overflow: hidden;
}
.news_left{
	width: 49%;
	float: left;
	padding-right: 21px;
	
}
.news_left>a{
	display: block;
	position: relative;
	overflow: hidden;
}
.news_left>a>img{
	display: block;
	width: 100%;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
}
.news_left>a:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.news_left>a .news_left_ms{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 96px;
	background: rgba(0,0,0,0.5);
	color: #FFFFFF;
	padding: 16px 156px 0px 23px;
}
.news_left>a .news_left_ms h3{
	font-size: 16px;
	height: 16px;
	overflow: hidden;
	font-weight: normal;
	margin-bottom: 5px;
}
.news_left>a .news_left_ms .news_left_xq{
	max-height: 48px;
	overflow: hidden;
	font-size: 14px;
}
.news_right{
	width: 51%;
	float: left;
	padding-left: 21px;
}
.news_right ul li{
	border: 1px solid #dcdcdc;
	margin-bottom: 15px;
}
.news_right ul li a{
	display: block;
	overflow: hidden;
}
.news_right ul li a .date{
	width: 103px;
	height: 88px;
	float: left;
	text-align: center;
	background: url(../images/date.png) no-repeat right;
}
.news_right ul li a .date h3{
	padding-top: 15px;
	padding-bottom: 3px;
	font-size: 30px;
	font-weight: normal;
	color: #333333;
}
.news_right ul li a .date h4{
	font-weight: normal;
	color: #666666;
	font-size: 14px;
}
.news_list{
	float: right;
	width: calc(100% - 126px);
	width: -webkit-calc(100% - 126px);
	width: -moz-calc(100% - 126px);
	padding: 13px 10px 0px 0px;
}
.news_list h5{
	font-size: 15px;
	height: 16px;
	overflow: hidden;
	color: #333333;
	font-weight: bold;
	margin-bottom: 5px;
}
.news_list>span{
	display: none;
}
.news_list .news_right_ms{
	font-size: 14px;
	color: #666666;
	line-height: 23px;
	max-height: 46px;
	overflow: hidden;
}
.news_right ul li:hover{
	background: #0f3c86;
}
.news_right ul li:hover a .date{
	background: url(../images/date2.png) no-repeat right;
}
.news_right ul li:hover a .date h3,.news_right ul li:hover a .date h4,
.news_right ul li:hover a .news_list h5,.news_right ul li:hover a .news_list .news_right_ms{
	color: #FFFFFF;
}
@media only screen and (max-width:1199px ) {
	.index_news{
		padding: 47px 15px;
	}
	.news_left>a .news_left_ms{
		padding: 15px;
	}
}
@media only screen and (max-width:991px ) {
	.index_news{
		padding: 37px 15px;
	}
	.news_left{
		width: 100%;
		padding-right: 0;
		float: none;
	}
	.news_right{
		float: none;
		width: 100%;
		margin-top: 20px;
		padding-left: 0;
	}
}
@media only screen and (max-width:767px ) {
	.index_news{
		padding: 27px 15px;
	}
	.news_right ul li a .date{
		display: none;
	}
	.news_list{
		width: 100%;
		padding: 15px;
	}
	.news_list>span{
		display: block;
		color: #000000;
	}
	.news_right ul li a:hover span{
		color: #FFFFFF;
	}
}
@media only screen and (max-width:480px ){
	.index_news{
		padding: 15px;
	}
	.news_right ul li:last-child{
		margin-bottom: 0;
	}
	.news_left>a .news_left_ms{
		height: 56px;
	}
	.news_left>a .news_left_ms .news_left_xq{
		display: none;
	}
}

/* 业绩案例 */
#case_wrap{
	background: url(../images/case_wrap.jpg) no-repeat center;
	padding: 58px 0px 40px;
}
#case_wrap .index_title{
	margin-bottom: 56px;
}
.case_content ul{
	overflow: hidden;
	padding-bottom: 58px;
}
.case_content ul li{
	padding: 0 4px;
}
.case_content ul li a{
	display: block;
}
.case_content ul li a .case_img{
	overflow: hidden;
}
.case_content ul li a .case_img img{
	display: block;
	width: 100%;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition:0.5s all;
}
.case_content ul li a:hover .case_img img{
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.case_content ul li a p{
	height: 48px;
	line-height: 48px;
	background: #0f3c86;
	text-align: center;
	color: #FFFFFF;
	font-size: 17px;
}
@media only screen and (max-width:991px ) {
	#case_wrap{
		background: none;
		padding: 10px 0px 30px;
	}
	.index_title{
		margin-bottom: 38px;
	}
	.index_title p{
		font-size: 38px;
	}
	.case_content ul{
		padding-bottom: 38px;
	}
	.case_content ul li{
		margin-bottom: 10px;
	}
}
@media only screen and (max-width:767px ) {
	.case_content ul li{
		padding: 0 15px;
		max-width: 371px;
		margin: 0 auto 10px;
	}
}
@media only screen and (max-width:480px ) {
	.index_title{
		margin-bottom: 18px !important;
	}
	.index_title h3{
		font-size: 26px;
	}
	.index_title p{
		font-size: 28px;
		line-height:28px;
	}
}

/*底部内容*/
footer{
	width: 100%;
	background: #0f3c86;
	color: #FFFFFF;
	padding-top: 20px;
}
.footer{
	overflow: hidden;
}
.footer_logo{
	width: 340px;
	float: left;
	margin-right: 15px;
}
.footer_logo>a{
	display: block;
}
.footer_logo>a>img{
	display: block;
	width: 100%;
}
.dl_list{
	width: 10%;
	padding-left: 18px;
	height: 220px;
	float: left;
	background: url(../images/dl_list.png) no-repeat right;
}
.dl_list dt>a{
	font-size: 16px;
	color: #FFFFFF;
	display: block;
	padding-bottom: 12px;
}
.dl_list dd>a{
	font-size: 13.5px;
	color: #FFFFFF;
	display: block;
	line-height: 24px;
}
.dl_list2{
	width: 18%;
	float: left;
	padding-left: 18px;
}
.dl_list2>a{
	display: block;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: bold;
}
.copyright{
	text-align: center;
	padding: 10px 0px 10px;
	border-top: 1px solid #FFFFFF;
	margin-top: 40px;
}
@media only screen and (max-width:1199px ){
	footer{
		padding-top: 0;
	}
	.footer_logo{
		width: 290px;
		display: none;
	}
	.dl_list{
		width: 15%;
		text-align: center;
		padding-left: 0;
		margin-bottom: 10px;
		display: none;
	}
	.dl_list2{
		width: 28%;
		display: none;
	}
	.copyright{
		padding: 15px 0px 15px;
		margin-top: 0;
		border-top: none;
	}
} 
@media only screen and (max-width:991px ) {
	.dl_list{
		width: 20%;
	}
	.dl_list2{
		width: 30%;
		font-size: 13px;
	}
}
@media only screen and (max-width:767px ){
	.footer_logo{
		display: none;
	}
	.dl_list{
		width: 25%;
	}
	.dl_list2{
		width: 40%;
	}
}
@media only screen and (max-width:480px ){
	.dl_list{
		width: 32%;
		display: none;
	}
	.dl_list dd>a{
		font-size: 12px;
	}
	.dl_list2{
		width: 100%;
		margin: 0 auto;
	}
	.col-xss-12{
		width: 100%;
	}
}


/*内页样式*/
.inside_banner{
	width: 100%;
}
.inside_banner img{
	display: block;
	width: 100%;
}
#main{
	margin: 0 auto;
	padding: 57px 15px;
	overflow: hidden;
}
@media(max-width: 991px){
	#main{
		margin: 0px auto 25px;
		padding: 30px 15px 0px;
	}
}
.inside{
	padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media(min-width: 1200px){
	.inside{
		width: 100%;
		max-width: 1230px;
		overflow: hidden;
	}
}

/* 产品分类 */

/*左侧*/
.main_left{
	float: left;
	width: 241px;
}
.left_title{
	color: #fff;
	background: #0f3c86;
	position: relative;
	text-align: center;
	padding: 14px 10px;
	box-shadow: 3px 3px 0px 0px #f20b07;
}
.left_title h3{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
.left_title h4{
	font-size: 20px;
	text-transform: uppercase;
}
.left_title #navToggle{
	width: 56px;
	height: 56px;
}
@media only screen and (max-width:991px ) {
	.left_title h3{
		font-weight: normal;
		font-size: 20px;
		text-align: left;
	}
	.left_title h4{
		display: none;
	}
}
.left_ul{
	margin-top: 12px;
}
.left_ul li{
	margin-bottom: 5px;
}
.left_ul li a{
	padding-left: 10px;
	display: block;
	height: 39px;
	line-height: 39px;
	text-align: left;
	color: #fff;
	background: url(../images/left_ul-a2.png) no-repeat calc(100% - 18px) #0f3c86;
	background: url(../images/left_ul-a2.png) no-repeat -webkit-calc(100% - 18px) #0f3c86;
	background: url(../images/left_ul-a2.png) no-repeat -moz-calc(100% - 18px) #0f3c86;
	font-size: 16px;
}
.left_ul li.producttype1sel a{
	background: url(../images/left_ul-a.png) no-repeat calc(100% - 18px) #f20b07;
	background: url(../images/left_ul-a.png) no-repeat -webkit-calc(100% - 18px) #f20b07;
	background: url(../images/left_ul-a.png) no-repeat -moz-calc(100% - 18px) #f20b07;
}
.left_ul li a:hover{
	background: url(../images/left_ul-a.png) no-repeat calc(100% - 18px) #f20b07;
	background: url(../images/left_ul-a.png) no-repeat -webkit-calc(100% - 18px) #f20b07;
	background: url(../images/left_ul-a.png) no-repeat -moz-calc(100% - 18px) #f20b07;
}
.left_contact{
	padding-top: 30px;
}
@font-face {
	font-family:tahoma;
	src: url(../font/tahoma.ttf);
}
.left_contact p{
	font-size: 20px;
	color: #f20b07;
	font-weight: bold;
	font-family:tahoma;
	height: 49px;
	line-height: 49px;
	padding-left: 81px;
	background: url(../images/dh2.png) no-repeat left;
}
.left_contact a{
	display: block;
	padding-left: 22px;
	margin-top: 15px;
	color: #FFFFFF;
	background: url(../images/left-dh.png) no-repeat left;
}
@media (max-width: 991px){
	.main_left{
		width: 100%;
		float: none;
		margin-top: 10px;
	}
	.left_title{
		height: 56px;
		line-height: 56px;
	}
	.left_ul{
		display: none;
		margin-top: 10px;
	}
	.left_contact{
		display: none;
	}
	.main_right{
		width: 100%;
		float: none;
		margin-top: 20px;
	}
	.left_title{
		padding:0px 0px 0px 20px;
		font-size: 18px;
	}
	.left_title h3{
		line-height: 56px;
	}
	.left_ul li{
		margin-bottom: 5px;
	}
	.left_ul li a{
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}
}
@media (max-width: 767px){
	.left_ul li a{
		height: 40px;
		line-height: 40px;
		padding-left: 20px;
		font-size: 15px;
		text-align: left;
	}
	.left_title h3{
		font-size: 18px;
	}
}

/* 右侧 */
.main_right{
	float: right;
	width: calc(100% - 278px);
	width: -webkit-calc(100% - 278px);
	width: -moz-calc(100% - 278px);
	border: 1px solid #eeeeee;
	box-shadow: 2px 2px 2px #d6d6d6;
	padding: 19px 17px 19px 19px;
}
/* 右侧导航 */
.main_nav{
	font-size: 14px;
	color: #000;
	border-bottom: 1px solid #eeeeee;
	background: url(../images/main_nav.png) no-repeat left 4px;
	padding-left: 25px;
	padding-bottom: 10px;
}
.main_nav>a{
	display: inline-block;
	font-size: 14px;
	color: #000;
}
.main_con{
	font-size: 14px;
	color: #000;
	margin-top: 25px;
	margin-bottom: 25px;
}


.main_ul ul li{
	border-bottom: 2px solid #e5e5e5;
	padding-bottom: 19px;
	margin-bottom: 19px;
	height: auto;
}
.main_ul ul li:last-child{
	margin-bottom: 0;
}
.main_ul ul li a{
	display: block;
	overflow: hidden;
}
.main_ul ul li a .main_img{
	overflow: hidden;
	float: left;
	width: 221px;
	height: 166px;
}
.main_ul ul li a .main_img img{
	display: block;
	width: 100%;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5 all;
}
.main_ul ul li a:hover .main_img img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.main_list{
	float: right;
	width: calc(100% - 240px);
	width: -moz-calc(100% - 240px);
	width: -webkit-calc(100% - 240px);
}
.main_list h3{
	margin-top: 23px;
	font-size: 16px;
	height: 18px;
	overflow: hidden;
	color: #000000;
	font-weight: bold;
}
.main_ul ul li a:hover .main_list h3{
	text-decoration: underline;
}
.main_text{
	padding-top: 16px;
	font-size: 14px;
	color: #666666;
	max-height: 112px;
	overflow: hidden;
}
@media only screen and (max-width:991px ) {
	.main_right{
		float: none;
		width: 100%;
	}
}
@media only screen and (max-width:679px ) {
	.main_ul ul li a .main_img,.main_list{
		width: 100%;
		height: auto;  	
	} 
}
@media only screen and (max-width:480px ) {
	/*.main_ul ul li a .main_img img{
		max-width: 221px;
		margin: 0 auto;
	}*/
}

.main_right .main_ul ul li a h3{
	font-size: 16px !important;
	color: #000000 !important;
    font-weight: bold !important;
}

/* 产品分页 */
.page_box{
	text-align: center;
	margin-top: 55px;
}
.page_box a{
	display: inline-block;
	height: 32px;
	border: 1px solid #DFDFDF;
	line-height: 32px;
	padding: 0px 10px;
	color: #969696;
	margin:0px 3.5px;
}
.page_box a.on{
	color:#fff;
	background:#0f3c86;
	border: 1px solid #0f3c86;
}

/* 产品内页 */
.pro_title h3{
	font-size: 24px;
	font-weight: bold;
	color: #000000;
	margin: 20px 0px 25px;
}
.pro_box{
	font-size: 14px;
	color: #333333;
	height: 700px;
	overflow-x: auto;
}
.case_img_box{
	margin-top: 38px;
	overflow: hidden;
}
.case_img_box a{
	display: block;
}
.case_img_box a img{
	display: block;
	width: 100% !important;
}
.case_img_box a p{
	text-align: center;
	color: #333333;
	margin-top: 20px;
}
#hot_scroll .item{
	margin: 0 auto;
	max-width: 570px;
}
#hot_scroll .item a{
	display: block;
}
#hot_scroll .item a p{
	text-align: center;
	font-size: 26px;
	line-height: 26px;
	height: 26px;
	overflow: hidden;
	font-weight: bold;
	color: #000000;
	margin-bottom: 40px;
}
#hot_scroll .item a img{
	display: block;
	width: 100%;
}
#hot_scroll .owl-controls .owl-page{
	display:inline-block;
	width: 16px;
	height: 15px;
	line-height: 15px;
	margin: 0px 4px;
	text-align: center;
	font-size: 14px;
}
#hot_scroll .owl-page.active{
	background: #f20b07;
	color: #FFFFFF;
}
.hot-carousel .owl-wrapper-outer{
	padding-bottom: 0;
}
@media only screen and (max-width:1199px ) {
	.owl-controls{
		text-align: center;
	}
}
@media only screen and (max-width:991 ) {
	#hot_scroll .item a p{
		font-size: 24px;
		margin-bottom: 30px;
	}
	.pro_title h3{
		font-size: 20px;
	}
}
@media only screen and (max-width:767px ){
	#hot_scroll .item a p{
		font-size: 20px;
		margin-bottom: 20px;
	}
	.pro_title h3{
		font-size: 18px;
	}
}
/* 产品分页 */
.pro_page{
	margin-top: 20px;
	padding-bottom: 8px;
}
.pro_page>a{
	color: #333333;
}

/* 新闻内页 */
.news_title {
    line-height: 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
    color: #181616;
    margin-top: 20px;
}
.news_box span{
	text-align: center;
	display: block;
}
.news_content{
    margin: 20px 0px;
    font-size: 14px;
    min-height: 150px;
}

/* 新闻内页分页 */
.inside_page{
	width:100%; 
	line-height:30px; 
	text-align:left; 
	margin-top:20px; 
	border-top:solid 1px #CCCCCC;	
	padding-top:5px;
	font-size: 16px;
	overflow: hidden;
}
.inside_page>a{
	color: #000000;
}
@media only screen and (max-width:991px ) {
	.news_content img{
		display: block;
		width: 100%;
	}
}

/* 关于我们 */
.about_img{
	overflow: hidden;
	padding-bottom: 28px;
}
.main_box img{
	display: block;
	width: 100%;
}
@media only screen and (max-width:1199px ) {
	.main_box img{
		display: block;
		width: 100%;
		max-width: 932px;
	}
}


/* 代理商 */
.agent_box{
	padding: 0 19px;
}
.agent_box h3{
	width: 558px;
	margin: 0 auto;
	text-align: center;
	padding: 69px 0px 63px;
}
.agent_box h3 img{
	display: block;
	width: 100%;
	margin: 0 auto;
}
.agent_form{
	overflow: hidden;
}
.agent_form h4{
	font-size: 22px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 36px;
}
.agent_form ul li{
	margin-bottom: 10px;
	overflow: hidden;
}
.agent_form ul li:nth-child(4),.agent_form ul li:nth-child(5),.agent_form ul li:nth-child(6){
	margin-bottom: 0;
}
.agent_form ul li legend{
	border-bottom: none;
	margin-top: 3px;
	margin-bottom: 10px !important;
	font-size: 14px;
	color: #000000;
}
.agent_form ul li:nth-child(1) input{
	width: 100%;
	height: 30px;
	line-height: 30px;
	border: 1px solid #D2D2D2;
	padding-left: 5px;
}
.input_1{
	float: left;
	width: 35%;
}
.input_2{
	float: left;
	width: 65%;
}
.agent_form ul li:nth-child(2) .input_con,.agent_form ul li:nth-child(2) .input_dz{
	width: 90%;
	display: block;
	height: 30px;
	line-height: 30px;
	border: 1px solid #D2D2D2;
	padding-left: 5px;
	margin-right: 20px;
}
.agent_form ul li:nth-child(2) .input_dz{
	width: 100%;
}
.input_3{
	float: left;
	width: 33.3%;
	padding-right: 15px;
}
.input_3:last-child{
	padding-right: 0;
}
.agent_form ul li:nth-child(3) .input_text{
	width: 100%;
	height: 30px;
	line-height: 30px;
	border: 1px solid #D2D2D2;
	padding-left: 5px;
}
.agent_form ul li textarea{
	width: 100%;
	padding: 10px;
	height: 110px;
	resize: none;
	border: 1px solid #D2D2D2;
}
.agent_form ul li input[type=submit]{
	float: right;
	width: 119px;
	height: 37px;
	line-height: 37px;
	text-align: center;
	color: #FFFFFF;
	background: #0f3c86;
	border-radius: 6px;
	border: none;
	margin-top: 24px;
}
@media only screen and (max-width:767px ) {
	.agent_box h3{
		width: 100%;
		padding: 20px 0;
	}
	.agent_box h3 img{
		width: 100%;
	}
	.agent_form h4{
		font-size: 18px;
		margin-bottom: 18px;
	}
	.input_1,.input_2{
		width: 100%;
	}
	.agent_form ul li:nth-child(2) .input_con, .agent_form ul li:nth-child(2) .input_dz{
		width: 100%;
	}
	.input_3{
		width: 100%;
		padding-right: 0;
	}
}

/* 人才招聘 */
.feeaback_box{
	border: 1px solid #D2D2D2;
	margin-top: 48px;
}
.feeaback_box h3{
	height: 36px;
	text-align: left;
	padding-left: 10px;
	line-height: 36px;
	background: #0f3c86;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
}
.feeaback_ul{
	overflow: hidden;
	padding: 27px 0px 37px;
}
.feeaback_ul li{
	width: 601px;
	overflow: hidden;
	margin: 0 auto 8px;
	font-size: 12px;
	color: #333333;
}
.feeaback_ul li:nth-child(2){
	margin-bottom: 0;
}
.feeaback_ul li input{
	width: 88%;
	height: 30px;
	border: 1px solid #D2D2D2;
	padding-left: 8px;
}
.feeaback_ul li textarea{
	width: 88%;
	height: 146px;
	resize: none;
	padding: 10px;
	border: 1px solid #D2D2D2;
}
#yzm{
	width: 122px;
}
.feeaback_ul li:nth-child(4)>p{
	float: left;
	text-align: right;
	padding-left: 12px;
}
.feeaback_ul li:nth-child(4)>input{
	margin-right: 12px;
}
.feeaback_ul li:nth-child(4)>img{
	float: left;
	display: block;
}
.feeaback_ul li:nth-child(4)>a{
	display: block;
	float: left;
	line-height: 30px;
	padding-left: 8px;
	color: #000000;
}
.feeaback_ul li:nth-child(5){
	padding-left: 60px;
}
.feeaback_ul li:nth-child(5) input{
	width: 80px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #FFFFFF;
	background: #0f3c86;
	padding-left: 0;
	font-size: 14px;
	border: none;
	margin-right: 10px;
	margin-top: 8px;
}
@media only screen and (max-width:767px ) {
	.feeaback_box{
		margin-top: 28px;
	}
	.feeaback_ul{
		padding: 20px;
	}
	.feeaback_ul li{
		width: 100%;
	}
	.feeaback_ul li input,.feeaback_ul li textarea{
		width: 100%;
	}
	#yzm{
		width: 50%;
		margin-bottom: 5px;
	}
	.feeaback_ul li:nth-child(4)>input{
		margin-right: 6px;
	}
	.feeaback_ul li:nth-child(4)>p{
		padding-left: 0;
	}
}