﻿@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: #f8af16;
}
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;
}
.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: 1430px;
  }
  .container{
  	width: 100%;
  	max-width: 1310px;
  }
}
/*头部*/
header{
	position: relative;
	z-index: 22;
	box-shadow: 1px 0px 7px 2px rgba(0, 0, 0, 0.2);
}
.header{
	height: 100px;
}
.logo{
	float: left;
}
.logo>a{
	display: block;
}
.logo>a>img{
	display: block;
	width: 100%;
	float: left;
	margin-top: 17px;
}
.nav{
	padding: 0 15px;
	float: right;
}
.nav>li{
	float: left;
	margin: 0 5px;
	position: relative;
}
.nav>li>a{
	display: block;
	height: 100px;
	line-height: 100px;
	padding: 0 19px;
	font-size: 16px;
	color: #333333;
}
.nav>li.active>a{
	background: url('../images/li-a.png') no-repeat center bottom;
	color: #cb2d1b;
}
.nav>li>a:hover{
	background: url('../images/li-a.png') no-repeat center bottom;
	color: #cb2d1b;
}
.sub_dl{
	position: absolute;
	left: 0px;
	top: 100px;
	width: 100%;
	display: none;
	z-index: 999;
	background: rgba(0, 0, 0, 0.5);
}
.sub_dl dd a{
	display: block;
	color: #ffffff;
	overflow: hidden;
	text-align: center;
	line-height: 40px;
	border-bottom: 1px solid #ffffff;
}
.sub_dl dd:last-child a{
	border-bottom: 0;
}
.sub_dl dd a:hover{
	background: #cb2d1b;
}
@media(max-width: 1205px){
	.nav>li>a{
		padding: 0 17px;
	}
}
@media (max-width: 1199px) {
	.nav>li{
		margin: 0;
	}
	.nav>li>a{
		font-size: 14px;
		padding: 0 12px;
	}
	.sub_dl dd a{
		font-size: 12px;
		height: 30px;
		line-height: 30px;
	}
}
@media(max-width: 991px){
	.header{
		height: 70px;
	}
	.logo a img{
		height: 60px;
		margin-top: 5px;
	}
	.logo_title{
		margin-top: 10px;
	}
	.nav{
		display: none;
	}
}
@media only screen and (max-width:767px ){
	.logo_title{
		display: none;
	}
} 
@media(max-width: 520px){
	.logo a img{
		width: 280px;
	}
}
/* 手机按钮  */
#navToggle{
	display: none;
	overflow: hidden;
	position: absolute;
	cursor: pointer;
	box-sizing: border-box;
	width: 70px;
	height: 70px;
	padding: 15px;
	background: #cb2d1b;
	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 .iphone{
	border-bottom: 1px solid #E6E6E6;
	padding-left: 25px;
}
#mobileMenu .menu .iphone img{
	margin-top: 8px;
	margin-right: 5px;
}
#mobileMenu .menu .iphone>span{
	color: #1d2088;
}
#mobileMenu .menu a {
    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: #cb2d1b;
	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;
}
#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;
	}
}

/*banner*/
.swiper-container{
	width: 100%;
	max-width: 1920px;
}
#banner .swiper-slide img ,#inside-banner .swiper-slide img{
    width: 100%;
    display: block;
    min-height: 200px;
}
#banner .swiper-pagination{
	bottom: 20px;
}
#banner .swiper-pagination-bullet{
	width: 15px;
	height: 15px;
	margin: 0 8px;
	background: #ffffff;
	opacity: 1;
}
#banner .swiper-pagination-bullet-active{
	background: #cb2d1b;
	opacity: 1;
}

/* 关于我们 */
#about_wrap{
	background: #f5f5f5;
	padding: 80px 0;
}
.about_list{
	margin-right: -25px;
    margin-left: -25px;
}
.about_list li{
	padding: 0 25px;
}
.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.5s all;
	-ms-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-webkit-transition: 0.5s all;
}
.about_list li a:hover .about_img img{
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.about_list li a .about_txt{
	background: #f5f5f5;
	padding: 46px 70px 40px 72px;
}
.about_list li a .about_txt h3{
	font-size: 24px;
	color: #333333;
	margin-bottom: 18px;
}
.about_list li a .about_txt .about_more{
	line-height: 26px;
	color: #666666;
	height: 180px;
	overflow: hidden;
}
.about_list li a .about_txt span{
	display: block;
	width: 148px;
	height: 38px;
	line-height: 38px;
	font-size: 16px;
	color: #cb2d1b;
	border: 1px solid #cb2d1b;
	text-align: center;
	margin-top: 18px;
}
.about_list li a:hover .about_txt span{
	background: #cb2d1b;
	color: #ffffff;
}

/* 产品展示 */
.index_title{
	text-align: center;
	margin-top: 76px;
	margin-bottom: 60px;
}
@font-face {
	font-family: Helvetica;
	src: url('../font/Helvetica-Bold.ttf');
}
.index_title h3{
	font-size: 30px;
	color: #222222;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.index_title h3>span{
	font-weight: bold;
	font-family: Helvetica-Bold;
}
.index_title h3>span>em{
	color: #cb2d1b;
	font-style: normal;
	font-family: Helvetica-Bold;
	background: url('../images/h3.png') no-repeat 15px;
	padding-left: 46px;
}
.index_title p{
	color: #666666;
}
.pro_con{
	margin-bottom: 60px;
	overflow: hidden;
}
.pro_con li{
	padding: 0px 13px;
}
.pro_con li{
	overflow: hidden;
}
.pro_con li a{
	display: block;
}
.pro_con li a .pro_img{
	overflow: hidden;
	position: relative;
}
.pro_con  a .pro_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;
}
.pro_con  a:hover .pro_img img{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.pro_con a:hover .pro_hover{
	display: block;
}
.pro_img img{
	width: 100%;
}
.pro_con li a .pro_hover{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 12px;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-webkit-transition: 0.5s all;
}
.pro_con  a .pro_img{
	overflow: hidden;
	position: relative;
}
.pro_con a .pro_hover{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 12px;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-webkit-transition: 0.5s all;
}

.border{
	border: 2px solid #ffffff;
	width: 100%;
	height: 100%;
}
.pro_con a .pro_hover span{
	background: url('../images/fd.png') no-repeat;
	width: 35px;
	height: 35px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -17px;
	margin-top: -17px;
}
.pro_con li a .pro_hover span{
	background: url('../images/fd.png') no-repeat;
	width: 35px;
	height: 35px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -17px;
	margin-top: -17px;
}
.pro_text{
	width: 100%;
	height: 56px;
	line-height: 56px;
	overflow: hidden;
	text-align: center;
	transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-webkit-transition: 0.5s all;
}
.pro_text>p{
	font-size: 16px;
	color: #333333;
}
.pro_con  a:hover .pro_text>p{
	color: #cb2d1b;
}
@media(max-width: 1199px){
	.pro_con{
		margin-bottom: 30px;
	}
}

/* 视频 */
#video_wrap{
	width: 100%;
}
#video_wrap>img{
	display: block;
	width: 100%;
}
#video_wrap>.video2{
	display: none;
}
@media(max-width: 520px){
	#video_wrap>.video1{
		display: none;
	}
	#video_wrap>.video2{
		display: block;
		margin: 0 auto;
	}
}
/* 新闻资讯 */
.index_news{
	margin-bottom: 80px;
}
.index_news_list li{
	padding: 0 2px;
}
.index_news_list li a{
	display: block;
	padding: 30px;
	border: 1px solid #dcdcdc;
}
.index_news_list li a:hover{
	border: 1px solid #cb2d1b;
}
.index_news_list li a .news_img{
	overflow: hidden;
}
.index_news_list li a .news_img img{
	display: block;
	width: 100%;
	transition: 0.5s all;
	-ms-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-webkit-transition: 0.5s all;
}
.index_news_list li a:hover .news_img img{
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.index_news_list li a h3{
	font-size: 18px;
	height: 18px;
	overflow: hidden;
	margin: 28px auto 18px;
}
.index_news_list li a:hover h3{
	color: #cb2d1b;
}
.index_news_list li a .news_more{
	color: #666666;
	height: 48px;
	overflow: hidden;
	margin-bottom: 30px;
}
.index_news_list li a span{
	display: block;
	height: 18px;
	width: 42px;
	overflow: hidden;
	background: url('../images/icon-1.png') no-repeat top;
	transition: 0.5s all;
	-ms-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-webkit-transition: 0.5s all;
}
.index_news_list li a:hover span{
	background: url('../images/icon-1.png') no-repeat bottom;
}
@media(max-width: 1199px){
	.index_title{
		margin: 40px auto 20px;
	}
}
@media(max-width: 991px){
	.index_title h3{
		font-size: 24px;
	}
}
@media(max-width: 767px){
	.index_title h3{
		font-size: 20px;
	}
}
/* 底部内容 */
footer{
	width: 100%;
	background: #313131;
}
.footer{
	padding-top: 40px;
	position: relative;
}
.footer_dl{
	width: 18%;
	float: left;
}
.footer_dl dt a{
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	display: block;
	padding-bottom: 7px;
}
.footer_dl dd a{
	font-size: 14px;
	color: #bfbfbf;
	display: block;
	line-height: 30px;
}
.footer_ewm{
	float: right;
	color: #ffffff;
	font-size: 16px;
}
.footer_ewm>p{
	margin-bottom: 20px;
}
.copyright{
	border-top: 1px solid #bfbfbf;
	padding: 30px 0;
	overflow: hidden;
	color: #a0a0a0;
	margin-top: 40px;
}
#top{
	background: url('../images/top.png') no-repeat center;
	width: 56px;
	height: 56px;
	position: absolute;
	top: -25px;
	right: 0;
	cursor: pointer;
}
@media only screen and (max-width:1199px ){
	.footer{
		padding: 20px 15px 0;
	}
	.footer_dl{
		width: 17%;
	}
	.copyright>p,.copyright>span{
		float: none;
		text-align: center;
		display: block;
	}
}
@media(max-width: 991px){
	.footer_dl{
		width: 20%;
		text-align: center;
	}
	.footer_ewm{
		display: none;
	}
	.copyright{
		padding: 15px;
		margin-top: 20px;
	}
}
@media(max-width: 480px){
	.footer_dl{
		display: none;
	}
	.copyright{
		border-top: 0;
	}
}

/*内页样式*/
.inside_banner{
	width: 100%;
}
.inside_banner img{
	display: block;
	width: 100%;
}
.main{
	overflow: hidden;
	margin-top: 80px;
	margin-bottom: 60px;
}
.left_title #navToggle{
	width: 56px;
	height: 56px;
}
@media(max-width: 991px){
	.main{
		margin: 30px auto;
	}
}

/*左侧*/
.main_left{
	float: left;
	width: 250px;
	position: relative;
}
.left_title{
	color: #fff;
	text-align: center;
	padding: 37px 0 30px;
	background: url('../images/left_ul.png') no-repeat center;
}
.left_title h3{
	font-size: 36px;
	margin-bottom: 6px;
	font-weight: bold;
}
.left_title p{
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
}
.left_ul li{
	text-align: center;
	margin: 10px auto;
}
.left_ul li a{
	display: block;
	height: 50px;
	line-height: 50px;
	color: #333333;
	font-size: 16px;
	background: url('../images/left_ul-a.png') no-repeat calc(100% - 190px) #f3f3f3;
	background: url('../images/left_ul-a.png') no-repeat -moz-calc(100% - 190px) #f3f3f3;
	background: url('../images/left_ul-a.png') no-repeat -webkit-calc(100% - 190px) #f3f3f3;
}
.left_ul li.active a{
	background: url('../images/left_ul-a2.png') no-repeat calc(100% - 190px) #0250b2;
	background: url('../images/left_ul-a2.png') no-repeat -moz-calc(100% - 190px) #0250b2;
	background: url('../images/left_ul-a2.png') no-repeat -webkit-calc(100% - 190px) #0250b2;
	color: #ffffff;
}
.left_ul li:hover a{
	background: url('../images/left_ul-a2.png') no-repeat calc(100% - 190px) #0250b2;
	background: url('../images/left_ul-a2.png') no-repeat -moz-calc(100% - 190px) #0250b2;
	background: url('../images/left_ul-a2.png') no-repeat -webkit-calc(100% - 190px) #0250b2;
	color: #ffffff;
}

/* 右侧 */
.main_right{
	float: right;
	width: calc(100% - 290px);
	width: -moz-calc(100% - 290px);
	width: -webkit-calc(100% - 290px);
}
.inside_nav{
	border-bottom: 1px solid #999999;
	overflow: hidden;
	padding-bottom: 8px;
	margin-bottom: 58px;
	overflow: hidden;
}
.inside_left{
	float: left;
	background: url('../images/inside_left.png') no-repeat left;
	padding-left: 26px;
}
.inside_left>h4{
	font-size: 18px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 8px;
}
.inside_left>h5{
	font-size: 18px;
	color: #999999;
}
.inside_nav .inside_right{
	float: right;
	background: url('../images/dz.png') no-repeat left;
	padding-left: 23px;
	color: #999999;
	padding-top: 28px;
}
.inside_nav .inside_right>a{
	display: inline-block;
	color: #999999;
}

.main_right .pro_con{
	margin-bottom: 0px;
}
.main_right .pro_con li{
	padding: 0 12px;
}
@media (max-width: 991px){
	.main_left{
		width: 100%;
		float: none;
		height: 100%;
		background: #eee;
	}
	.left_title{
		height: 56px;
		line-height: 56px;
		padding: 0px 10px 0px 15px;
		font-size: 18px;
		background: #cb2d1b;
	}
	.left_title h3{
		height: 56px;
	    line-height: 56px;
	    text-align: left;
	    font-size: 20px;
	    margin-bottom: 0;
	}
	.left_ul,.left_title p{
		display: none;
	}
	.left_ul li.active a{
		background: url('../images/left_ul-a2.png') no-repeat calc(100% - 95%) #0250b2;
		background: url('../images/left_ul-a2.png') no-repeat -moz-calc(100% - 95%) #0250b2;
		background: url('../images/left_ul-a2.png') no-repeat -webkit-calc(100% - 95%) #0250b2;
	}
	.left_ul li a{
		background: url('../images/left_ul-a.png') no-repeat calc(100% - 95%) #f3f3f3;
		background: url('../images/left_ul-a.png') no-repeat -moz-calc(100% - 95%) #f3f3f3;
		background: url('../images/left_ul-a.png') no-repeat -webkit-calc(100% - 95%) #f3f3f3;
	}
	.left_ul li a:hover{
		background: url('../images/left_ul-a2.png') no-repeat calc(100% - 95%) #0250b2;
		background: url('../images/left_ul-a2.png') no-repeat -moz-calc(100% - 95%) #0250b2;
		background: url('../images/left_ul-a2.png') no-repeat -webkit-calc(100% - 95%) #0250b2;
	}
	.main_right{
		width: 100%;
		float: none;
		margin-top: 20px;
	}
}
@media(max-width: 560px){
	.inside_nav{
		display: none;
	}
}

/* 新闻资讯 */
.news_con li{
	background: #f0f0f0;
	padding: 16px;
	overflow: hidden;
	margin-bottom: 20px;
}
.main_right .index_news_list li{
	margin-bottom: 3px;
}
.main_right .index_news_list li a{
	overflow: hidden;
}
.main_right .index_news_list li a .news_img{
	float: left;
}
.main_right .index_news_list li a .news_img img{
	max-width: 285px;
}
.main_right .index_news_list li a .news_right{
	float: right;
	width: calc(100% - 310px);
	width: -moz-calc(100% - 310px);
	width: -webkit-calc(100% - 310px);
}
.main_right .index_news_list li a em{
	font-style: normal;
	display: block;
	color: #999999;
}
.main_right .index_news_list li a .news_right h3{
	margin: 16px auto 15px;
}
.main_right .index_news_list li a .news_more{
	height: 72px;
	margin-bottom: 0;
}
@media(max-width:991px){
	.main_right .index_news_list li{
		padding: 0 15px;
	}
}
@media(max-width: 767px){
	.main_right .index_news_list li a .news_img{
		display: none;
	}
	.main_right .index_news_list li a .news_right{
		width: 100%;
		float: none;
	}
}
@media(max-width: 500px){
	.inside_nav{
		display: none;
		margin-bottom: 20px;
	}
}

/* 内页详情 */
.inside_title{
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 15px;
}
.inside_date{
	text-align: center;
}
.inside_content{
	margin: 20px 0px;
    font-size: 16px;
    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;
}


/* 分页 */
.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 span{
	display: inline-block;
	height: 32px;
	border: 1px solid #cb2d1b;
	line-height: 32px;
	padding: 0px 12px;
	color:#fff;
	margin: 0 3px;
	background:#cb2d1b;
}
@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: 500px){
	.col-xss-12{
		width: 100%;
	}
}
/* 视频响应 */
@media (max-width: 1199px){
	.main_content p iframe ,.inside_content div iframe{
    	width: 100% !important;
	} 
}
.tel-txt {
    position: absolute;
    right: 54px;
    top: 0;
    border: none;
    height: 57px;
    line-height: 57px;
    background: #ae1c1c;
    width: 150px;
    color: #fff;
    display: none;
}
/*右侧悬浮窗*/
.suspension{
    position: fixed;
    right: 0;
    top:318px;
    z-index: 666;
}
.suspension ul li{
    background: #333333;
    width: 54px;
    height: 57px;
    text-align: center;
    cursor: pointer;
    position: relative;
}
.suspension ul li:hover{
    background:#ae1c1c;
}
.suspension-img{
    padding-top: 12px;
}
.susp-ewm{
    position: absolute;
    right:54px;
    top:0;
    border: 10px solid #ae1c1c;
    opacity: 0;
    transition: all 0.4s;
    display: none;
}
.susp-ewm img{
    width: 112px;
    height: 112px;
}
.suspension ul li:nth-of-type(2):hover .susp-ewm{
    opacity: 1;
    display: block;
}
/* .suspension ul li:nth-of-type(1):hover .tel-txt{
    opacity: 1;
    display: block;
} */
