@charset "UTF-8";
/* CSS Document */
* {
	padding: 0;
	margin: 0;
}
*{-moz-box-sizing: border-box;-webkit-box-sizing: border-box;-o-box-sizing: border-box;-ms-box-sizing: border-box; box-sizing: border-box;-webkit-tap-highlight-color:transparent;}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, table, caption, tbody, tfoot, thead, tr, th, td, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0px; border: 0; font-size: 100%; outline: none; }
img {
    border: 0;
}
UL {
	list-style-type: none;
	list-style-image: none;
}
OL {
	list-style-type: none;
	list-style-image: none;
}
LI {
	list-style-type: none;
	list-style-image: none;
}
body{
	height: auto;
	width: 100%;
	overflow:auto;
	background-color: #fff;
	color:#333;
	line-height: 1.5;
}
p{
	text-align: justify;
	text-justify: inter-ideograph;
}

/*导航栏*/


@media (min-width: 768px) {
  .navbar {
    border-radius: 0px;
    width: 100%;
  }
  .navbar-brand{
  	padding-right: 40px;
  }
  .navbar-nav > li > a {
  line-height: none;
  line-height: 0;
  }

}

.navbar-default {
	background-color: #fff;   
}

.navbar-default .navbar-toggle {
   border:none;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

.navbar-collapse{
  font-size: 0.24rem;
  border-color: none;
  background-color: #fff;
}
.navbar-nav li{
   margin-top: 0.08rem;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #b7282d;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active a,
.navbar-default .navbar-nav > .active a:hover,
.navbar-default .navbar-nav > .active a:focus {
  color: #b7282d;
  background-color: transparent;
}

.navbar {
 -webkit-box-shadow: rgba(0,0,0,0.1) 0px 0px 5px 1px; 
 -moz-box-shadow: rgba(0,0,0,0.1) 0px 0px 5px 1px; 
 box-shadow: rgba(0,0,0,0.1) 0px 0px 5px 1px; 

}

.navbar-brand img{
	width: 3.4rem;
	height:0.5rem;
}
.navbar-brand {
  float: left;
 /* height: 0.6rem;
  line-height: 0.1rem;
  padding: 0.2rem 0.1rem;*/
  
}
.navbar-toggle img{
	width: 0.4rem;
	height: 0.3rem;
}
.navbar-toggle { 
  padding: 5px 6px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
 
}




/*轮播图*/

.banner_box{
    position: relative; /*attention*/
    width: 100%;
    height: 5.6rem;
    overflow: hidden;
}
.banner_images{
    position: absolute; /*attention*/
    left: 0;
    width: 300%; /*attention please*/
}
.banner_img{
    float: left;
    width: 33.3%; /*attention please*/
    height: 5.6rem;
}
.banner_img img{
	display: inline-block;
    width: 100%;
    height: 100%;
}
.points{
    position: absolute;
    left: 50%;
    bottom: 0.3rem;
    width: 2.4rem;
    margin-left: -1.2rem;
    overflow: hidden;
}
.points li{
    width: 0.8rem;
    height: 0.06rem;
    background: rgba(0, 0, 0, .8);
    float: left;
    list-style: none;
    cursor: pointer;
}
.points li.point_on{
    background: #C92027;
}



/*产品介绍*/

.product{
	width: 95%;
	height:auto;
	margin:0.4rem auto;

}
.product h1 {
	font-size: 0.36rem;
}
.product p{
	font-size: 0.2rem;
	color:#999;
	margin-top: 0.2rem;
}
.product p span{
	color:#b7282d;
}
.product-card{
	display: -webkit-flex; /* Safari */
    display: flex;
    flex-direction: row;
	justify-content: space-between;
	width: 100%;
	height:auto;
	margin-top: 0.4rem;
	border-radius: 0.2rem;
	background-color: #f9f9f9;
	-webkit-box-shadow: rgba(34,23,20,0.1) 0px 0px 2px 1px; 
    -moz-box-shadow: rgba(34,23,20,0.1) 0px 0px 2px 1px; 
    box-shadow: rgba(34,23,20,0.1) 0px 0px 2px 1px; 
}
.product-card > .words{
	margin-left:0.2rem;
	width: 55%;
	height:auto;
	padding:0.3rem 0;
	
}
.product-card > .picture{
	margin-right: 0;
	width: 40%;
	height: auto;
	border-radius: 0 0.2rem 0.2rem 0;
}
.product-card > .picture img{
	width: 100%;
	height: 100%;
	border-radius: 0 0.2rem 0.2rem 0;
}
.product-card > .words h4{
	font-size: 0.26rem;
	margin-top: 0.1rem;
	
}
.product-card > .words p{
	font-size: 0.2rem;
	color:#666;
	margin-top: 0.3rem;
 /* text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;*/
  /*显示多行，超过省略号*/
}

.product-more{
	display: -webkit-flex; /* Safari */
    display: flex;
	margin-top: 0.4rem;
	width: 100%;
	height: auto;
	flex-direction: row;
	justify-content: space-between;
}
.product-more div{
	width: 30%;
	height:auto;
	border-radius: 0.1rem;
	background-color: #f9f9f9;
	padding:0.2rem;
}
.product-more div p{
	font-size: 0.26rem;
	color:#333;
	text-align: center;
	line-height: 0.3rem;
}
.product-more > div  .color{
	font-size: 0.18rem;
	color:#999;
	text-align: center;
}

/*解决方案*/

.programme{
	width:100%;
	height:auto;
	color:#fff;
	padding-bottom: 0.5rem;
	background:url(../img/images/bg00.png)  no-repeat;
	background-size: 100% 4.58rem;
	background-color: #9e1b26;
	
}
.programme >.describe{
	width: 95%;
	height:auto;
	padding-top:0.6rem;
	margin:auto;
	text-align: center;
}
.programme >.describe div{
 	font-size: 0.36rem;
 	margin-top:0.1rem;
 }
.programme >.describe h6 {
	font-size: 0.16rem;
	margin-top: 0.2rem;
}
.programme >.describe p{
	font-size: 0.2rem;
	margin-top: 0.2rem;
}

.programme-card{
	display: -webkit-flex; /* Safari */
    display: flex;
    width: 100%;
    height:auto;
    margin-top:0.4rem;
    flex-direction: row-reverse;
}
.programme-card > .icon{
	width: 5%;
	background-color: rgba(0,0,0,0.25);
	display: -webkit-flex; /* Safari */
    display: flex;
    align-items: center;
}
.programme-card > .icon img{
	width: 1rem;
	height:1rem;
	margin-left: -0.5rem;
}
.programme-card >.title{
	padding:0.3rem 0  0.3rem 0.5rem;
	width: 80%;
	background-color: rgba(0,0,0,0.25);
}
.programme-card >.title h3{
	font-size: 0.24rem;
}
.programme-card >.title span{
	display: inline-block;
	font-size: 0.2rem;
	padding: 0.2rem 0.2rem 0 0;
}

/*客户*/
.customer{
	width: 100%;
	height: auto;
	margin-top: 0.4rem;	
}
.customer h1 {
	width: 95%;
	font-size: 0.36rem;
	margin:0.4rem auto;
}

.customers_box{
	position: relative; /*attention*/
    width: 100%;
    height: 2.6rem;
    overflow: hidden;
}

.customers_images{
	position: absolute; /*attention*/
    left: 0;
    width: 300%; /*attention please*/
}
.customers_img {
	float: left;
    width: 33.3%; /*attention please*/
    height: 2.6rem;
}
.customers_img img{
	width: 100%;
	height:2.1rem;

}

.customers_points{
    position: absolute;
    left: 50%;
    bottom: 0.3rem;
    width: 1.8rem;
    margin-left: -0.9rem;
    overflow: hidden;
}
.customers_points li{
    width: 0.6rem;
    height: 0.05rem;
    background: rgba(0, 0, 0, .8);
    float: left;
    list-style: none;
    cursor: pointer;
}
.customers_points li.customers_point_on{
    background: #C92027;
}

/*页脚*/
.foot{
	width: 100%;
	height:auto;
	margin-top:0.2rem;
	background-color: #f9f9f9;
}
.foot-cont{
	width: 80%;
	margin: 0 auto;
	padding-top:0.4rem; 
}
.foot-cont-logo{
	width: 3rem;
	height:0.4rem;
}
.foot-cont > .name{
	margin-top:0.3rem;
}
.name > .Lone{
	display: flex;
	display: -webkit-flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 0.26rem;
}
.name > .Lone a{
	padding:0.05rem 0;
	color:#666;
}
.name > .Lone a:hover{
	text-decoration: none;
}
.foot-cont-code{
	width: 1.7rem;
	height:1.7rem;
	margin:0.3rem auto;
}
.foot-cont-code img{
	width: 1.7rem;
	height:1.7rem;
}
.foot-cont-coop{
	font-size: 0.18rem;
	text-align: center;
	margin-top: 15px;
}
.foot-cont-icon{
	width: 2.1rem;
	margin:0.2rem auto;
}
.foot-cont-icon img{
    width: 0.44rem;
    height:0.44rem;
}
.Company{
	padding:0.6rem 0 0.2rem 0;
	text-align: center;
	color:#888;
	font-size: 0.12rem;
}




/*公司动态*/
.dyList{
	width: 95%;
	height:auto;
	margin:0.3rem auto;
	padding-bottom: 0.2rem;	
}
.dyList h1{
	font-size: 0.3rem;
}
.dyListBanner{
	margin-top:0.3rem;
}
.dyListBanner img{
	width: 100%;
	height:3.6rem;
	border-radius: 0.1rem;
}
.dyListRed{
	width: 100%;
	margin-top:0.4rem;
	padding-bottom: 0.3rem;
	border-bottom: solid 1px #e5e5e5;
	display: flex;
	display: -webkit-flex;
	flex-direction: row;
	justify-content: space-between;
}
.dyListTittle{
	width: 50%;
	padding-bottom: 0.2rem;
}
.dyListTittle h3{
	font-size: 0.24rem;
}
.dyListTittle h6{
	font-size: 0.2rem;
	margin-top:0.2rem;
	color:#999;
}
.dyListTittle p{
	font-size: 0.2rem;
	margin-top:0.2rem;
	color:#666;

	text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;/*显示多行，超过省略号*/
}
.dyListImg{
	width: 45%;
	height: auto;
}
.dyListImg img{
	width: 100%;
	height: 100%;
	border-radius: 0.1rem;
}





/*产品介绍*/
.productTitleF{
	font-size: 0.26rem;
	color:#b82a31;
	margin-top: 0.4rem;
	display: -webkit-flex;
	display: flex;
	align-items:center;
}
.spot {
	width: 5px;
	height: 5px;
	margin-right: 0.2rem;
	border-radius: 50%;
	background-color: #b82a31;
}
.productAD{
	margin:0.3rem 1rem;
	display: flex;
	display: -webkit-flex;
	align-items:center;
    justify-content:space-around;
}
.productAD div{
	width: 1rem;
	height:1rem;
	border-radius: 50%;
	font-size: 0.2rem;
	text-align: center;
	line-height: 1rem;
	color:#fff;
}
.red{
	background-color: #b7282d;
	-webkit-box-shadow: rgba(183,40,45,0.25) 0px 0px 4px 2px; 
    -moz-box-shadow: rgba(183,40,45,0.25) 0px 0px 4px 2px; 
    box-shadow: rgba(183,40,45,0.25) 0px 0px 4px 2px; 
}
.black{
	background-color: #4b4b4b;
	-webkit-box-shadow: rgba(75,75,75,0.25) 0px 0px 4px 2px; 
    -moz-box-shadow: rgba(75,75,75,0.25) 0px 0px 4px 2px; 
    box-shadow: rgba(75,75,75,0.25) 0px 0px 4px 2px;
}
.introduct{
	color:#999;
	font-size: 0.18rem;
	text-align:justify;
}
.ClTitle{
	width: 2.3rem;
	height: 0.7rem;
	margin:0.5rem auto;
	border-radius: 0.7rem;
	background-color: #b7282d;
	color:#fff;
	font-size: 0.26rem;
	text-align: center;
	line-height: 0.7rem;
}
.ClIntroduct{
	color:#999;
	font-size: 0.18rem;
	text-align:justify;
}
.ClImg{
	display: block;
	width: 7rem;
	height: 3.5rem;
	margin:0.2rem auto;
}


/*关于我们*/

.us{
	margin-top: 0.2rem;
}
.nav{
	margin: auto;
}
.usNav > li {
  width: 33.3%;
  border-bottom: solid 1px #eee; 
}
.usNav > li > a{
	font-size: 0.30rem;
	padding: 0.1rem 0.5rem;
	text-align: center;
	background-color: #fff;
	color:#333;
}

.usNavNew > li {
	width: 50%;
	border-bottom: solid 1px #eee;
}
.usNavNew > li > a{
	font-size: 0.30rem;
	padding: 0.1rem 0.5rem;
	text-align: center;
	background-color: #fff;
	color:#333;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
}
.nav-tabs{
   margin-top: 0.4rem;
}
.nav-tabs > li {
  margin-left: 0px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #b7282d;
  cursor: default;
  border: none;
  border-bottom: solid 2px #b7282d;
}
.tab-content > .tab-pane{
	background-color: #fff;
	border-radius: 0 0  4px 4px;
	padding-bottom: 20px;
    margin-bottom: 20px;
}

.tab-content{
	margin-top: 0.4rem;
	color:#333;
	width: 100%;
}


.tenYear{
	/*border-bottom: solid 1px #d5d5d5;*/
}
.tenYear div{
	display: inline-block;
	/*margin-left: 0.1rem;*/
}
.ten{
	font-size: 0.8rem;
	font-weight: bolder;
}
.OF{font-size: 0.28rem;margin-left: 0.08rem;}
.of{font-size: 0.1rem;color:#999;margin-left: 0.08rem;}

.paragraph{
	font-size: 0.2rem;
	margin:0.4rem 0;
	color:#555;
	text-align: justify;
    text-justify: inter-ideograph;
}
.paragraph span{
	color:#b7282d;
}

.usTitle{
	margin:0.4rem 0.2rem 0.2rem 0.2rem;
	font-size: 0.24rem;
	color:#333;
}
.certificate{
	display: flex;
	display: -webkit-flex;
	flex-direction: row ;
	justify-content: space-between;	
	padding-bottom: 0.5rem;
	margin-top: 0.4rem;
}
.certificateLeft{
	width: 3.4rem;
	height: 5rem;

}
.certificateLeft p{
   font-size: 0.16px;
	text-align: center;
	color: #333;
	margin-top: 0.1rem;
}
.certificateLeft img{
	display: inline-block;
	 width: 3.4rem;
	height: 4.5rem;
}
.certificateRight{
	width: 3.4rem;
	height: 5rem;

	display: flex;
	display: -webkit-flex;
	flex-direction: row ;
	justify-content: space-between;	
	flex-wrap: wrap;

}
.certificateRight p{
	font-size: 0.16px;
	text-align: center;
	color: #333;
	margin-top: 0.1rem;
}
.certificateRight img{
   width: 1.6rem;
	height: 2rem;
}

