@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:#666;
	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: #f07321;
}
body{
	font-size:14px;
	font-family:"微软雅黑";
	color:#333;
	line-height:36px;
} 
.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{	
	border-top: 4px solid #F07321;
	width: 100%;
	position: relative;
}
header>.w{
	position: relative;
	height: 95px;
}
.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: 1554px;
  }
}
.logo{
	margin: 8px 0px 0px 0px;
	float: left;
}
.logo img{
	transition: all 0.3s linear;
	width: 100%;
	display: block;
}

.nav{
	float: right;
}
.nav>li{
	float: left;
}
.nav>li>a{
	display: block;
	height: 95px;
	line-height: 95px;
	font-size: 16px;
	color:#000;
	padding:0px 22px;
}
.nav>li>a:hover{
	background: #F07321;
	color: #fff;
}
.nav>li.active>a{
	background: #F07321;
	color: #fff;
}

@media (max-width: 1199px) {
	.nav>li>a{
		padding: 0px 12px;
		font-size: 15px;
	}
}



#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: #F07321;
    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>.w{
  	  	height: 70px;
  	  	width: 100%;
    }
	header .nav{
		display: none;
	}
	.logo img{
		width: 160px;
	}
	.logo{
		margin: 10px 0px 0px 0px;
	}
	#navToggle{
		display: block;
	}
	
}


/*banner*/
.fullwidthbanner-container {
	width: 100% !important;
	position: relative;
	padding: 0;
	max-height: 720px !important;
	overflow: hidden;
}
.fullwidthbanner-container .fullwidthabnner {
	width: 100% !important;
	max-height:720px !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: #EE711D !important;
}

/** BULLETS **/
.tp-bullets {
	z-index: 1001;
	position: absolute;
	bottom: 25px !important;
}
.tp-bullets.simplebullets.round .bullet {
	cursor: pointer;
	position: relative;
	background: #535255;
	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;
}
/*产品展示*/
.pro_wrap{
	width: 100%;
	background: url(../images/pro_wrap_bg.png) repeat center top;
	padding: 60px 0px 45px;
}
.title{
	text-align: center;
	margin-bottom: 40px;
}
.title h4{
	font-size: 50px;
	color: #999999;
	font-family: "monotype corsiva";
	line-height: 50px;
}
.title h3{
	font-size: 33px;
	color: #f07321;
	font-weight: bold;
	line-height: 33px;
}
.pro_show{
	overflow: hidden;
}
.pro_show li{
	padding-top: 15px;
	padding-bottom: 15px;
}
.show_a{
	display: block;
	width: 100%;
	overflow: hidden;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
	
}
.show_img{
	height: 100%;
	overflow: hidden;
}
.show_img img{
	display: block;
	width: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}
.show_a p{
	display: block;
	height: 54px;
	line-height: 54px;
	text-align: center;
	overflow: hidden;
	font-size: 18px;
	color: #000;
}
.show_a:hover p{
	color: #f07321;
}
.show_a:hover .show_img img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
@media(max-width: 991px){
	.pro_wrap{
		padding: 30px 0px;
	}
	.title{
		text-align: center;
		margin-bottom: 25px;
	}
	.title h4{
		font-size: 38px;
		line-height: 38px;
	}
	.title h3{
		font-size: 25px;
		line-height: 25px;
	}
	.show_a p{
		height: 40px;
		line-height: 40px;
		font-size: 15px;
	}
	.pro_show li:nth-child(9){
		display: none;
	}
}

.reason{
	margin: 60px auto;
}
.reason_ul{
	overflow: hidden;
}
.reason_ul li{
	padding-bottom: 5px;
}
.reason_box{
	margin: 0 auto;
	width: 100%;
	max-width: 472px;
}
.reason_text{
	background: #A3A3A3;
	color: #fff;
	height: 263px;
	overflow: hidden;
	padding: 15px;
	text-align: center;
}
.reason_text h3{
	margin-top: 20px;
	line-height: 60px;
	margin-bottom: 15px;
	text-decoration: underline;
	font-size: 60px;
	font-family: "宋体";
}
.reason_text h4{
	line-height: 43px;
	height: 43px;
	font-size: 18px;
}
.text_content{
	line-height: 22px;
	font-size: 14px;
	max-height: 88px;
	overflow: hidden;
}
.reason_img{
	margin-top: 13px;
	overflow: hidden;
	box-shadow:0px 0px 5px rgba(0,0,0,0.2);
}
.reason_img img{
	width: 100%;
}
@media(max-width: 991px){
	.reason_text{
		height: 300px;
	}
	.text_content{
		max-height: 132px;
	}
	.reason_text h3{
		margin-top: 10px;
		line-height: 50px;
		font-size: 50px;
	}
	.reason{
		margin: 30px auto;
	}
}
@media(max-width: 767px){
	.reason_text{
		height: 250px;
	}
	.text_content{
		max-height: 88px;
	}
	.reason_ul li{
		margin-bottom: 15px;
	}
}

/*经典案例*/
.case_row{
	padding-top: 20px;
}
.video_box{
	width: 100%;
	height: auto;
	position: relative;
	border: 1px solid #F07321;
}
.video_box img{
	display: block;
	width: 100%;
	margin: auto;
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	max-width: 745px;
	max-height: 100%;
}
.case_ul{
	
}
.case_ul li{
	padding: 15px 0px;
	border-bottom: 1px dashed #ccc;
}
.case_ul li h3{
	line-height: 35px;
	height: 35px;
	overflow: hidden;
}
.case_ul li h3 a{
	font-size: 16px;
	color: #000;
	font-weight: bold;
}
.case_ul li h4{
	line-height: 28px;
	font-size: 14px;
	color: #666;
}
.case_ul li .li_ms{
	line-height: 24px;
	height: 48px;
	overflow: hidden;
}
@media(max-width: 767px){
	.case_row{
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}
	.video_box{
		width: 100%;
		height: auto;
		position: relative;
		border: 1px solid #F07321;
		padding: 15px;
	}
	.video_box img{
		display: block;
		width: 100%;
		position: relative;
	}
}
/*新闻资讯*/
.news_wrap{
	background: #F07321;
	padding: 35px 0px 60px;
	margin-top: 60px;
}
.news_wrap .title h4,.news_wrap .title h3{
	color: #fff;
}
.news_box{
	
}
.news_box .news_img{
	width: 100%;
	height: auto;
	overflow: hidden;
}
.news_box .news_img a{
	display: block;
}
.news_box .news_img a img{
	display: block;
	width: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}
.news_box .news_img:hover a img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.news_box_content{
	background: #fff;
	padding: 10px 20px 20px;
	height: 200px;
}
.news_box_content h4{
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	font-size: 14px;
	color: #c0c0c0;
}
.news_box_content h4 span{
	float: left;
}
.news_box_content h4 a{
	color: #c0c0c0;
	float: right;
}
.news_box_content h3{
	height: 35px;
	line-height: 35px;
	margin-bottom: 10px;
	overflow: hidden;
}
.news_box_content h3 a{
	font-size: 16px;
	color: #000;
}
.content_ms{
	line-height: 25px;
	max-height: 75px;
	overflow: hidden;
	color: #5f5f5f;
}
@media(max-width: 767px){
	.news_box{
		padding: 10px 15px 15px;
	}
	.news_wrap{
		padding: 25px 0px 30px;
		margin-top: 30px;
	}
}
/*关于我们*/
.about_wrap{
	background: url(../images/about_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 100px 0px 150px;
}
.about_center{
	background: rgba(0,0,0,0.5);
	padding: 50px 0px;
}
.index_about_title{
	text-align: center;
	line-height: 60px;
	color: #fff;
	margin-bottom: 20px;
}
.index_about_title span{
	font-size: 52px;
	font-family: "monotype corsiva";
	margin-right: 15px;
}
.index_about_title em{
	font-size: 33px;
	font-style: normal;
	font-weight: bold;
}
.about_nr{
	font-size: 16px;
	line-height: 30px;
	color: #fff;
}
/*底部内容*/
footer{
	width: 100%;
	position: relative;
	background: #F07321;
}
.footer_logo{
	width: 313px;
	height: 199px;
	position: absolute;
	top: -100px;
	left: 50%;
	margin-left: -157px;
	z-index: 10;
	box-shadow:0px 0px 5px rgba(0,0,0,0.2);
}
.footer_logo img{
	display: block;
	width: 100%;
}
.footer_nav{
	height: 55px;
	background: #F95B19;
	width: 100%;
}
.footer_nav a{
	display: block;
	float: left;
	color: #fff;
	font-size: 16px;
	height: 55px;
	line-height: 55px;
	padding: 0px 35px;
	background: url(../images/footer_nav_line.png) no-repeat right center;
}
.footer_nav a:nth-child(4),.footer_nav a:nth-child(5){
	background: none;
}
.footer_nav a:nth-child(5),.footer_nav a:nth-child(6),.footer_nav a:nth-child(7),.footer_nav a:nth-child(8){
	float: right;
}
.footer_center{
	height: 167px;
	position: relative;
	border-bottom: 1px solid #FF8230;
}
.footer_center .w{
	position: relative;
}
.footer_name{
	position: absolute;
	left: 0px;
	top: 80px;
}
.sou{
	background:url(../images/footer_sou.png) no-repeat right center;
	height:42px;
	width:337px;
	position:absolute;
	left:400px;
	top:80px;
	overflow:hidden;	
}
.search{
	background: none;
	border: none;
	line-height:22px;
	height: 42px;
	width: 291px;
	padding:10px;
	color:#656565;
	font-size: 16px;
}
.tijiao{
	background: none;
	border: none;
	height: 42px;
	width: 46px;
	cursor: pointer;	
}
.footer_phone{
	position: absolute;
	right: 20px;
	top: 80px;
}
.footer_bottom{
	width: 100%;
	border-top: 1px solid #F95B19;
	line-height: 30px;
	font-size: 16px;
	color: #fff;
	padding: 15px 0px;
}

@media(max-width: 1399px){
	.footer_logo{
		width: 157px;
		height: 100px;
		top: -45px;
		left: 50%;
		margin-left: -79px;
	}
	.footer_nav a{
		padding: 0px 25px;
	}
}
@media(max-width: 1199px){
	.footer_logo{
		display: none;
	}
	.footer_nav a{
		font-size: 16px;
	}
	.footer_nav a:nth-child(4),.footer_nav a:nth-child(5){
		background: url(../images/footer_nav_line.png) no-repeat right center;
	}
	.footer_nav a:nth-child(5),.footer_nav a:nth-child(6),.footer_nav a:nth-child(7),.footer_nav a:nth-child(8){
		float: left;
	}
	.sou{
		left: 330px;
	}
}
@media(max-width: 991px){
	.footer_nav a{
		font-size: 14px;
		padding: 0px 15px;
	}
	.footer_center{
		height: auto;
		padding: 25px 0px;
	}
	.footer_name{
		position: relative;
		left: 0px;
		top: 0px;
		
	}
	.sou{
		position: relative;
		left: 0px;
		top: 0px;
		margin-top: 20px;
	}
	.footer_phone{
		top: 25px;
	}
	
}
@media(max-width: 767px){
	.about_nr{
		font-size: 14px;
	}
	.about_wrap{
		padding: 50px 0px;
	}
	.about_center{
		padding: 30px 0px;
	}
	.about_title span{
		font-size: 35px;
	}
	.about_title em{
		font-size: 22px;
	}
	.about_title{
		margin-bottom: 10px;
		line-height: 40px;
	}
	.footer_bottom{
		font-size: 14px;
	}
	.footer_nav{
		display: none;
	}
	.reason_ul{
		margin-left: -15px;
		margin-right: -15px;
	}
	.case_row{
		margin-left: -15px;
		margin-right: -15px;
		width: auto;
	}
	.footer_bottom{
		overflow: hidden;
	}
}
@media(max-width: 645px){
	.footer_phone{
		position: relative;
		left: 0px;
		top: 0px;
		right: auto;
		margin-top: 20px;
	}
	.footer_name img{
		width: 100%;
		max-width: 304px;
	}
	.footer_center{
		padding: 20px 0px;
	}
}
@media(max-width: 370px){
	.sou{
		width:287px;
	}
	.search{
		width: 241px;
		font-size: 14px;
	}
	.footer_bottom .w{
		margin-right: -15px;
		margin-left: -15px;
	}
}



.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%;
}
.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);
}

/*内页样式*/
.inside_banner{
	width: 100%;
}
.inside_banner img{
	display: block;
	width: 100%;
}
#main{
	margin: 30px auto 130px;
}
.weizhi{
	line-height: 40px;
	font-size: 14px;
	color: #666666;
}
.weizhi a{
	color: #666666;
}
@media(max-width: 991px){
	#main{
		margin: 30px auto;
	}
}
.about{
	margin-top: 20px;
	overflow: hidden;
	margin-bottom: 30px;
}
.about_left{
	float: left;
	width: calc(100% - 520px);
}
.about_title{
	height: 40px;
	line-height: 40px;
	margin-bottom: 20px;
}
.about_title span{
	font-size: 24px;
	color: #f07321;
	margin-right: 11px;
}
.about_title em{
	font-size: 24px;
	font-family: arial;
	font-style: normal;
	color: #999;
}
.about_content{
	line-height: 36px;
}
.about_img{
	float: right;
	width: 498px;
}
.about_img img{
	width: 100%;
}
@media(max-width: 1199px){
	.about_content{
		line-height: 30px;
	}
}
@media(max-width: 991px){
	.about_left{
		width: 100%;
		float: none;
	}
	.about_img{
		display: none;
	}
	.about_title{
		margin-bottom: 10px;
	}
}
.factory{
	margin-top: 30px;
}
.factory_ul{
	overflow: hidden;
}
.factory_ul li{
	margin-bottom: 30px;
}
.factory_ul li img{
	display: block;
	width: 100%;
}
.culture_ul{
	overflow: hidden;
	width: 100%;
}
.culture_ul li{
	float: left;
	width: 33.33%;
}
.culture_img{
	height: 244px;
	overflow: hidden;
	position: relative;
}
.culture_img img{
	height: 244px;
	display: block;
}
.culture_box{
	height: 244px;
	overflow: hidden;
	text-align: center;
	color: #fff;
	padding: 40px 25px 25px;
}
.culture_box h4{
	font-size: 24px;
	color: #fff;
	margin-bottom: 15px;
}
.culture_nr{
	line-height: 30px;
	font-size: 14px;
}
.culture_ul li:nth-child(1) .culture_box{
	background: #1DBFE9;
}
.culture_ul li:nth-child(2) .culture_box{
	background: #FF6600;
}
.culture_ul li:nth-child(3) .culture_box{
	background: #6EB92B;
}
@media(max-width: 991px){
	.culture_box{
		padding: 20px;
	}
}
@media(max-width: 767px){
	.culture_img{
		display: none;
	}
	.culture_ul li{
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}
	.culture_box{
		height: auto;
	}
	
}
.honor{
	margin-top: 30px;
	
}
#honor_scroll{
	padding: 0px 40px;
	margin-top: 15px;
}
#honor_scroll .item{
	text-align: center;
	position: relative;
}
#honor_scroll .item img{
	width: 100%;
	max-width: 167px;
}
#honor_scroll .owl-prev{
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -31px;
	display: block;
	background: url(../images/jt_l.png) no-repeat;
	width: 34px;
	height: 62px;
	cursor: pointer;
	text-indent: -9999px;
}
#honor_scroll .owl-next{
	position: absolute;
	right: 0px;
	top: 50%;
	margin-top: -31px;
	display: block;
	background: url(../images/jt_r.png) no-repeat;
	width: 34px;
	height: 62px;
	cursor: pointer;
	text-indent: -9999px;
}
/*新闻*/
.main_left{
	float: left;
	width: 23%;
	margin-top: 20px;
}
.left_title{
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	color: #fff;
	background: #F07321;
	padding-left: 40px;
	position: relative;
}
.left_title em{
	font-style: normal;
}
.left_ul li{
	height: 49px;
	line-height: 49px;
	margin-bottom: 1px;
	background: #FFEEE2;
}
.left_ul li a{
	display: block;
	height: 49px;
	line-height: 49px;
	padding-left: 60px;
	font-size: 18px;
	color: #333333;
	transition: all 0s;
}
.left_ul li a:hover,.left_ul li a:focus{
	color: #fff;
	background: url(../images/li_icon.png) no-repeat 40px center #FBB486;
}
.left_ul li.active a{
	color: #fff;
	background: url(../images/li_icon.png) no-repeat 40px center #FBB486;
}
.left_phone{
	margin-top: 12px;
	height: 100px;
	padding: 14px 5px 14px 80px;
	line-height: 24px;
	font-size: 18px;
	color: #fff;
	background: url(../images/phone_icon.png) no-repeat 15px center #FF7701;
	border-radius: 5px;
}
.main_right{
	float: right;
	width: 73%;
	margin-top: 20px;
}	

@media only screen and (max-width:1199px ) {
	.left_title em{
		font-size: 16px;
	}
	.left_ul li a{
		font-size: 16px;
	}
}
.news_ul{
	
}
.news_ul li{
	height: auto;
	padding: 30px 0px 30px;
	border-bottom: 1px dashed #DDDDDD;
	overflow: hidden;
}
.news_ul li:nth-child(1){
	padding-top: 0px;
}
.news_left{
	float: left;
	width: 324px;
	height: 206px;
	overflow: hidden;
}
.news_left a{
	display: block;
}
.news_left a img{
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}
.news_left a:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.news_right{
	width: calc(100% - 354px);
	width: -webkit-calc(100% - 354px);
	width: -moz-calc(100% - 354px);
	float: right;
	height: 206px;
	overflow: hidden;
}
.news_right h3{
	max-height: 70px;
	overflow: hidden;
}
.news_right h3 a{
	line-height: 35px;
	font-size: 18px;
	color: #000;
}
.news_right h3 a:hover,.news_right h3 a:focus{
	color: #F07321;
}
.news_right .news_ms{
	line-height: 24px;
	font-size: 14px;
	color: #333;
	max-height: 96px;
	overflow: hidden;
}
.news_right h4{
	height: 27px;
	line-height: 27px;
	overflow: hidden;
	position: relative;
	margin-top: 10px;
}
.news_right h4 span{
	font-size: 14px;
	color: #999;
}
.news_right h4 a{
	position: absolute;
	display: block;
	background: url(../images/more_icon.png) no-repeat;
	height: 27px;
	width: 27px;
	right: 0px;
	top: 0px;
}
@media (max-width: 1199px) {
	.left_phone{
		font-size: 15px;
		padding-left: 70px;
		background: url(../images/phone_icon.png) no-repeat 8px center #FF7701;
	}
}

@media (max-width: 991px){
	.main_left{
		width: 100%;
		float: none;
		margin-top: 10px;
	}
	.left_title{
		height: 56px;
		line-height: 56px;
	}
	.left_ul{
		display: none;
	}
	.left_phone{
		display: none;
	}
	.main_right{
		width: 100%;
		float: none;
	}
}
@media (max-width: 767px){
	.left_title{
		padding-left: 20px;
		font-size: 18px;
	}
	.left_ul li{
		height: 45px;
		line-height: 45px;
	}
	.left_ul li a{
		height: 45px;
		line-height: 45px;
		padding-left: 40px;
		font-size: 16px;
	}
	.left_ul li a:hover, .left_ul li a:focus {
	    background: url(../images/li_icon.png) no-repeat 20px center #FBB486;
	}
	.left_ul li.active a{
		background: url(../images/li_icon.png) no-repeat 20px center #FBB486;
	}
	.news_right h3 a {
	    line-height: 30px;
	    font-size: 16px;
	}
}
@media (max-width: 679px){
	.news_ul li{
		padding: 20px 0px;
	}
	.news_left,.news_right{
		width: 100%;
		height: auto;
	}
	.news_right{
		margin-top: 10px;
	}
}


@media (max-width: 449px) {
	.col-xss-12{
		width: 100%;
	}
}
.page_box{
	height: 32px;
	text-align: center;
	margin-top: 30px;
}
.page_box a,.page_box span{
	display: inline-block;
	height: 32px;
	border: 1px solid #DFDFDF;
	line-height: 32px;
	padding: 0px 10px;
	color: #969696;
	margin:0px 3.5px;
}
.page_box span.current{
	color:#fff;
	background:#EE711D;
	border: 1px solid #EE711D;
}
.news_title{
	line-height:30px;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	margin-bottom:5px;	
	color:#181616;
	margin-top: 20px;
}
.news_content{
	margin: 20px 0px;
	font-size: 14px;
	min-height: 200px;
}
.inside_page{
	width:100%; 
	line-height:30px; 
	text-align:left; 
	margin-top:20px; 
	border-top:solid 1px #CCCCCC;	
	padding-top:5px;
	font-size: 16px;
}
.contact_nav{
	text-align: center;
	line-height: 35px;
	margin-top: 20px;
}
.contact_nav a{
	text-align: center;
	margin: 0px 20px;
	font-size: 18px;
	color: #666;
	display: inline-block;
}
.contact_nav a.active{
	color: #f07321;
	font-weight: bold;
	border-bottom: 2px solid #f07321;
}
.contact_title{
	text-align: center;
	margin-top: 40px;
	border-bottom: 1px dotted #d4d4d4;
	padding-bottom: 30px;
}
.contact_title h3{
	font-size: 24px;
	color: #333;
	line-height: 40px;
}
.contact_title h4{
	font-size: 14px;
	color: #b4b4b4;
	line-height: 28px;
}
.contact_ul{
	overflow: hidden;
}
.contact_ul li{
	float: left;
	background-color: #F07321;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	position: relative;
	height: 265px;
	color: #fff;
}
.contact_ul li:nth-child(1){
	width: 28%;
}
.contact_ul li:nth-child(2){
	width: 44%;
}
.contact_ul li:nth-child(3){
	width: 28%;
}
.contact_ewm{
	width: 145px;
	margin: 40px auto 0px;
}
.contact_ewm img{
	display: block;
	width: 100%;
}
.contact_ewm p{
	line-height: 35px;
	height: 35px;
	text-align: center;
}
.contact_phone{
	background: url(../images/contact_phone.png) no-repeat center 30px;
	padding-top: 125px;
}
.contact_phone dl{
	overflow: hidden;
}
.contact_phone dl dd{
	float: left;
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
	line-height: 30px;
	font-size: 14px;
	color: #fff;
}
.contact_email{
	background: url(../images/contact_email.png) no-repeat center 40px;
	padding-top: 125px;
	text-align: center;
}
.contact_email h3{
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	line-height: 40px;
}
.contact_email h4{
	font-size: 14px;
	color: #fff;
	line-height: 35px;
}
@media (max-width: 991px) {
	.contact_ul li{
		float: none;
		margin-bottom: 15px;
		height: auto;
		padding: 15px;
	}
	.contact_ewm{
		margin-top: 0px;
	}
	.contact_ul li:nth-child(1){
		width: 100%;
	}
	.contact_ul li:nth-child(2){
		width: 100%;
	}
	.contact_ul li:nth-child(3){
		width: 100%;
	}
	.contact_phone{
		padding-top: 100px;
		background: url(../images/contact_phone.png) no-repeat center 10px;
	}
	.contact_email{
		background: url(../images/contact_email.png) no-repeat center 20px;
		padding-top: 105px;
	}
}
@media (max-width: 449px) {
	.contact_phone dl dd{
		width: 100%;
		text-align: center;
	}
}
.contact_map{
	margin-top: 20px;
}
.contact_map img{
	width: 100%;
}
.hot_pro{
	border: 1px solid #CCCCCC;
	padding: 20px;
	position: relative;
}
.hot_icon{
	display: block;
	background: url(../images/hot_icon.png) no-repeat;
	width: 74px;
	height: 70px;
	position: absolute;
	right: 70px;
	top: -7px;
}
.hot_pro .bd{
	overflow: hidden;
}
.hot_pro .bd ul li{
	float: left;
	overflow: hidden;
}
.hot_pro .hd{
	height: 12px;
	text-align: center;
	overflow: hidden;
	margin-top: 15px;
}
.hot_pro .hd ul li{
	display: inline-block;
	height: 12px;
	width: 12px;
	margin: 0px 7px;
	border-radius: 50%;
	cursor: pointer;
	background: #aaa;
	text-indent: -9999px;
}
.hot_pro .hd ul li.on{
	background: #F07321;
}
.hot_img{
	width: 48%;
	float: left;
}
.hot_img a{
	display: block;
	overflow: hidden;
}
.hot_img a img{
	display: block;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	width: 100%;
}
.hot_img a:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.hot_right{
	float: right;
	width: 48%;
}
.hot_title{
	padding-bottom: 15px;
	border-bottom: 2px solid #F07321;
	display: inline-block;
	margin-bottom: 15px;
}
.hot_title h3{
	line-height: 40px;
	font-size: 24px;
	color: #f07321;
}
.hot_title h4{
	line-height: 28px;
	font-size: 18px;
	color: #999999;
}
.hot_ms{
	font-size: 16px;
	color: #000;
	line-height: 26px;
	margin-bottom: 10px;
	max-height: 104px;
	overflow: hidden;
}
.hot_more{
	display: block;
	background: url(../images/hot_more.png) no-repeat;
	width: 27px;
	height: 27px;
}
@media (max-width: 1199px) {
	.hot_title{
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.hot_title h3{
		font-size: 18px;
		
	}
	.hot_ms{
		font-size: 14px;
	}
	.hot_pro{
		padding: 15px;
	}
}
@media (max-width: 599px) {
	.hot_img{
		float: none;
		width: 100%;
		margin-bottom: 10px;
	}
	.hot_right{
		float: none;
		width: 100%;
	}
}
.pro_ul{
	margin-top: 30px;
}
.pro_ul li{
	margin-bottom: 30px;
}
.pro_a{
	display: block;
}
.pro_img{
	width: 100%;
	overflow: hidden;
}
.pro_img img{
	display: block;
	width: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}
.pro_a:hover .pro_img img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.pro_box{
	border: 1px solid #CCCCCC;
	border-top: none;
	padding: 10px 15px 15px;
	overflow: hidden;
}
.pro_name{
	float: left;
}
.pro_name h3{
	line-height: 35px;
	font-size: 24px;
	color: #000000;
}
.pro_name h4{
	line-height: 35px;
	font-size: 18px;
	color: #666;
}
.pro_more{
	float: right;
	display: block;
	width: 133px;
	height: 44px;
	line-height: 42px;
	text-align: center;
	font-size: 16px;
	color: #666;
	border: 1px solid #ccc;
	margin-top: 10px;
}
.pro_more:hover{
	color: #fff;
	background: #F07321;
	border: 1px solid #F07321;
}
@media (max-width: 1199px) {
	.pro_name h3{
		line-height: 30px;
		font-size: 20px;
		color: #000000;
	}
	.pro_name h4{
		line-height: 30px;
		font-size: 16px;
		color: #666;
	}
	.pro_more{
		float: right;
		display: block;
		width: 90px;
		height: 34px;
		line-height: 32px;
		margin-top: 15px;
		font-size: 14px;
	}
}


.content_box{
	border: 1px solid #ccc;
	padding: 20px;
}


.picFocus{
	position: relative;
}
.picFocus .big_img{
	max-width: 524px;
	margin: 0 auto;
	position: relative;
}
.picFocus .big_img img{
	width: 100%;
	display: block;
}
.picFocus .owl-carousel{
	position: relative;
	padding: 0px;
	margin-top: 10px;
	overflow: hidden;
	height: auto;
}

#pro_small{
	margin: 10px auto 0px;
}
#pro_small .item{
	text-align: center;
	margin: 0px 6px;
}
#pro_small .item img{
	width: 100%;
	max-width: 122px;
}
.cg_img{
	max-width: 524px;
	margin: 20px auto 0px;
	padding: 25px 20px 25px 100px;
	min-height: 100px;
	background: url(../images/pd_icon.png) no-repeat 20px center #F2F2F2;
}
.cg_img h4{
	line-height: 24px;
	font-size: 18px;
	color: #000;
}
.cg_nr{
	line-height: 24px;
	font-size: 16px;
	color: #666;
}
.inside_nr{
	padding-top: 20px;
	
}
.inside_nr h3{
	height: 45px;
	line-height: 45px;
	border-bottom: 2px solid #F07321;
	display: inline-block;
	font-size: 24px;
	color: #f07321;
}
.nr_ms{
	margin-top: 20px;
	line-height: 30px;
	font-size: 16px;
	margin-bottom: 20px;
	color: #666;
}
.cpjs{
	line-height: 30px;
	font-size: 16px;
	color: #666;
}
.cpjs h4{
	color: #333;
	font-size: 16px;
}
.ms_phone{
	margin: 20px 0px;
	line-height: 40px;
	font-size: 24px;
	color: #f07321;
}
.wyzx{
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	background: #F07321;
	height: 50px;
	line-height: 50px;
	font-size: 24px;
	color: #fff !important;
}
@media (max-width: 991px) {
	.wyzx{
		height: 45px;
		line-height: 45px;
		font-size: 16px;
	}
	.ms_phone{
		font-size: 16px;
		margin: 10px 0px;
		line-height: 30px;
	}
	.nr_ms{
		margin-top: 20px;
		line-height: 26px;
		font-size: 14px;
		margin-bottom: 20px;
		color: #666;
	}
	.cpjs{
		line-height: 26px;
		font-size: 14px;
		color: #666;
	}
	.inside_nr{
		padding-top: 10px;
	}
	.inside_nr h3{
		height: 40px;
		line-height: 40px;
		font-size: 20px;
	}
	
	.inside_nr{
		max-width: 524px;
		margin: 20px auto 0px;
	}
	.content_box{
		padding: 15px;
	}
}
@media (max-width: 767px){
	.cg_img{
		padding: 15px;
		background: #F2F2F2;
	}
	.cg_img h4{
		font-size: 16px;
	}
	.cg_nr{
		font-size: 14px;
	}
}
.inside_title{
	height: 38px;
	line-height: 38px;
	background: url(../images/inside_title.png) repeat-x left bottom;
	margin-top: 30px;
	margin-bottom: 20px;
}
.inside_title span{
	display: inline-block;
	background: #fff;
	font-size: 24px;
	color: #000;
	padding-right: 10px;
}
.inside_title em{
	font-size: 16px;
	color: #666;
	font-style: normal;
}
.feature_ul li{
	overflow: hidden;
	padding: 20px 0px;
	border-bottom: 1px dotted #ccc;
}
.feature_ul li img{
	width: 100%;
}
.feature_ul li h4{
	font-size: 24px;
	color: #f07321;
	font-weight: bold;
	margin-bottom: 10px;
	margin-top: 20px;
}
.feature_nr{
	line-height: 30px;
}
@media (max-width: 991px) {
	.feature_ul li h4{
		font-weight: normal;
		font-size: 20px;
	}
	.feature_nr{
		line-height: 26px;
		margin-bottom: 10px;
	}
	.inside_title span{
		font-size: 20px;
	}
	.hidden_phone{
		display: none;
	}
}
.back{
	width: 220px;
	height: 50px;
	line-height: 50px;
	display: block;
	background:url(../images/back_icon.png) no-repeat 30px center #F07321;
	font-size: 18px;
	color: #fff !important;
	padding-left: 70px;
	margin: 30px auto 0px;
}
.left_title #navToggle{
	height: 56px;
	width: 56px;
}
.cptj{
	overflow: hidden;
	position: relative;
}
.cptj_img{
	width: 50%;
	float: left;
}
.cptj_img img{
	width: 100%;
}
.tj_ul{
	position: absolute;
	width: 50%;
	right: 0px;
	bottom: 0px;
}
.tj_ul li{
	float: left;
	width: 33.33%;
	padding-left: 10px;
	padding-top: 10px;
}
.tj_ul li a{
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/tj_icon.png) no-repeat center 30px #CCCCCC;
	font-size: 18px;
	color: #fff;
	text-align: center;
	padding-top: 55px;
	line-height: 35px;
	padding-bottom: 15px;
}
.tj_ul li a:hover{
	background: url(../images/tj_icon.png) no-repeat center 30px #F07321;
}
.cp_box{
	text-align: center;
}
.cp_box img{
	max-width: 100%;
}
.cp_ul{
	text-align: center;
	height: 50px;
	margin-top: 40px;
}
.cp_ul li{
	display: inline-block;
	width: 140px;
	height: 50px;
	cursor: pointer;
	border-radius: 10px;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	margin: 0px 15px;
}
.cp_ul li:nth-child(1){
	background: #030303;
}
.cp_ul li:nth-child(2){
	background: #23B1BD;
}
.cp_ul li:nth-child(3){
	background: #030303;
}
.cp_ul li:nth-child(4){
	background: #FF7701;
}


/*====================================*/

.message{
	margin-top:35px;
	margin-bottom:95px;
}
.message_title{
	position:relative;
	margin-bottom:30px;
}
.message_title>h3{
	font-size:36px;
	line-height:36px;
	color:#000000;
	position:relative;
	z-index:1;
	font-weight:normal;
}
.message_title>span{
	font-size:40px;
	line-height:40px;
	font-family:Arial, Helvetica, sans-serif;
	color:#dadada;
	display:block;
	position:absolute;
	top:-15px;
	left:78px;
}
form{
	overflow:hidden
}
.form-feed{
	/*width:1227px;*/
}
.form-feed>input[type=text]{
	border:1px solid #cecece;
	width:363px;
	height:14px;
	padding:16px 0px 14px 14px;
	margin-right:27px;
	margin-bottom:32px;

}



.form-feed>textarea{
	border:1px solid #cecece;
	width:98%;
	height:109px;
	padding:10px 0px 0px 14px;
}
.form-feed>input[type=submit]{
	display:block;
	width:280px;
	height:45px;
	background:#e71f19;
	color:#ffffff;
	border:none;
	margin:24px auto 0px;
	cursor:pointer;
}

/*2018-04-23 新增CSS*/
.fixed_nav{
	position: fixed;
	z-index: 100;
	right: 22px;
	top: 100px;
	width: 145px;
}
@media only screen and (max-width:991px ) {
	.fixed_nav{
		display: none;
	}
}
.fixed_nav li{
	box-shadow:0px 10px 10px rgba(0,0,0,0.3);
}
.fixed_nav li a{
	display: block;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: #fff;
	border-bottom: 1px solid #c1c1c1;
	font-size: 14px;
	color: #333;
}
.fixed_nav li a:hover{
	color: #fff;
	background: #FF8230;
	border-bottom: 1px solid #FF8230;
}
.fixed_nav li.on a{
	color: #fff;
	background: #FF8230;
	border-bottom: 1px solid #FF8230;
}
.fixed_nav li:last-child{
	margin-top: 10px;
}
.fixed_nav li:last-child a{
	background: url(../images/totop.png) no-repeat 24px center #fff !important;
	padding-left: 56px;
	color: #666 !important;
	text-align: left;
	height: 45px;
	line-height: 45px;
	border: none !important;
}
.video_box video{
	width: 100%;
	display: block;
}
