.fl{float: left;}
.fr{float: right;}
.wrapBg{background-color:#F5F5F5 ;}
.width{width: 980px;margin: 0 auto;}
.width1{width: 1080px;margin: 0 auto;}
.none{display: none;}
i.iconfont{font-size: 12px;}
.min-height{min-height: 800px;}
.index-tit{
  padding: 24px 0 32px;
  text-align: center;
}
.index-tit em{
  display: block;
  font-size: 18px;
  line-height: 44px;
  color: #FECC2E;
}
.index-tit strong{
  display: block;
  width: 130px;
  height: 32px;
  margin: 0 auto;
  line-height: 32px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}
/* 内页共用的‘查看更多’  */
.detail{
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 100px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: #FECC2E;
  border-radius: 8px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}
a.detail:hover{
  color: #000;
  text-indent: 10px;
}
/*广告位共用 */
.spot-wrap{
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.spot-wrap img{
  max-width: 100%;
  min-height: 300px;
}
.spot-bd{
  width: 100%;
}
.spot-hd{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  padding: 10px 0;
  text-align: center;
  background-color: rgba(80,80,80,0.4);
}
.spot-hd a{
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 10px;
  margin-right: 10px;
  background-color: #fff;
}
.spot-hd a.on{
   background-color: red;
}
/* 头部样式 */
header{}
/* 页面顶部 */
.top{
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-bottom: 6px solid #FECC2E;
}
.linkage{}
.linkage a{padding: 0 10px;}
/* 页面logo 及联系电话，采用定位布局 */
.pagelogo{}
.pagelogo-cont{position: relative;}
.pagelogo-cont,.logo,.cry,{height: 100px;}
.logo{
  position: absolute;
  left: 0;
  top: 0;
}
.logo img{
  height: 100px;
}
.cry{
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 100px;
}
.phone{
  position: absolute;
  top: 0;
  right: 0;
  width: 118px;
  height: 84px;
  padding:16px 0 0 66px;
  background: url(../img/index_bg.png) no-repeat 0 20px;
  text-align: center;
}
.phone p{
  line-height: 24px;
  font-size: 18px;
  font-weight: bold;
}
.phone em,
.phone span{
  display: block;
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
}
.phone em{
  border-bottom: 2px solid #000;
}
.phone span{
  letter-spacing: 1px;
}
/* 页面主导航 */
.headnav{
  height: 48px;
  background-color: #FECC2E;
  border-top: 2px solid #333;
}
.nav{}
.nav-menu{
  display: flex;
  justify-content: center;
  align-content: center;
}
.nav-menu li{
  width: 140px;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background-color: #FECC2E;
}
.nav-menu a {
  display: block;
  width: 100%;
  height: 48px;
  background-color: #FECC2E;
  transition: 0.4s;
}
.nav-menu>li>a:hover,
.nav-menu>li>a.active{
  color: #fff;
  background-color: #424242;
}
.nav-menu>li{
  float: left;
  position: relative;
}
.nav-menu ul{
  position: absolute;
  top: 48px;
  left: 0;
  z-index: 99;
  height: 0px;
  overflow: hidden;
  transition:height 0.6s;
}
.nav-menu ul>li{
  border-top: 2px solid #F4BB19;
}
.nav-menu>li:hover ul{
  height: 300px;
}
.nav-menu ul a:hover{
  padding-left: 10px;
  color: #000;
}

/* 轮播图 */
.banner{
  position: relative;
  width: 100%;
  /*min-height: 500px;*/
  overflow: hidden;
}
.banner-bd{
  position: relative;
}
.banner-bd a{
  float: left;
}
.banner-hd{
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 16px;
  text-align: center;
}
.banner-hd a{
  display:inline-block;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #FECC2E;
  transition: 0.3s;
}
.banner-hd .on{
  width: 60px;
  background-color: red;
}
.banner-prev,
.banner-next{
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(200,200,200,.4);
  text-align: center;
  transition: 0.5s;
}
.banner-prev i.iconfont,
.banner-next i.iconfont{
  font-size: 30px;
  line-height: 50px;
  color: rgba(255,255,255,.8);
}
.banner-prev{
  left: -90px;
}
.banner-next{
  right: -90px;
}
.banner-prev:hover,
.banner-next:hover{
  background-color: rgba(255,255,255,.7);
  color: rgba(188,188,188,1);
}
.banner:hover .banner-prev{
  left: 40px;
}
.banner:hover .banner-next{
  right: 40px;
}

/* 产品中心 */

.picc{

}
.picc p{
  height: 60px;
  padding-left: 120px;
  background: url(../img/index_bg.png) no-repeat;
  font-size: 18px;
  line-height: 60px;
  font-weight: bold;
}
.picc .picc-a{
  background-position-x: 26px;
  background-position-y: -120px;

}
.picc .picc-b{
  background-position-x: 28px;
  background-position-y: -188px;
  padding-right: 126px;
}

.product{
  max-height: 500px;
  overflow: hidden;
}
.product-range{
  padding: 20px 0;
}
.product-range li{
  float: left;
  width: 306px;
  height: 40px;
  background-color: #FECC2E;
  font-size: 20px;
  text-align: center;
  line-height: 40px ;
  margin:0 10px ;
  transition: 0.5s;
}
.product-range .active-range,
.product-range li:hover{
  background-color: #230400;
  color: #fff;
}

.product-list{
  height: 410px;
  overflow: hidden;
}
.product-item{
  position: relative;
  float: left;
  width: 306px;
  text-align: center;
  margin: 0 10px 46px;
  border: 1px solid #999D99;
  box-sizing: border-box;
  background-color: #E6E6E6;
}
.product-pic{
  height: 312px;
  background-color: #fff;
  border-bottom: 1px solid #999D99;
}
.product-pic img{
  width: 100%;
}
.product-pic:after,
.product-pic:before{
  content: '';
  display: inline-block;
  border: 1px solid transparent;
  vertical-align: middle;
}

.product-item h3,
.product-item p{
  margin: 0 14px;
}
.product-item h3{
  line-height: 42px;
  border-bottom: 1px solid #999D99;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-item p{
  height: 36px;
  font-size: 12px;
  line-height: 18px;
}
.product-item a:hover{
  color: #000;
}
.product-item:hover{
  border-color: deepskyblue;
  box-shadow: 0 0 6px #999D99;
}

/* 市场前景 */
.market{
  margin-bottom: 30px;
}
.market h3{
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}
.market big{
  font-size: 32px;
  color: #FF9900;
}

.market p{
  font-size: 14px;
  line-height: 34px;
}
.market em{
  font-size: 18px;
  font-weight: bold;
}

.market-top{}
.market-top p{
  width: 590px;
  padding:0 18px;
}
.market-top img{
  margin-right: 10px;
  width: 320px;
}
.market-bottom{
  position: relative;
  top: -36px;
}
.market-bottom p{
  width: 512px;
  padding: 56px 2px 16px 14px;
}
.market-bottom img{
  width: 396px;
  margin-left: 8px;
}
.market-bottom strong{
  position: absolute;
  bottom: 8px;
  right: 50px;
  width: 420px;
  height: 50px;
  background-color: #FECC2E;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  font-weight: normal;
}

/* 品牌优势  */
.quite{
  position: relative;
  padding-top: 22px;
}

.quite p{
  font-size: 20px;
  line-height: 30px;

}

.pretty,.ill{
  width: 485px;
  padding-bottom:30px;
  background-color: #E6E6E6;
  border-radius: 16px 16px 0 0;
  text-indent: 16px;
}
.pretty{}

.pretty-tit,.ill-tit{
  position: relative;
  height: 60px;
  margin-bottom: 26px;
  font-size: 32px;
  line-height: 60px;
  text-align: center;
  background-color: #999D99;
  border-radius: 16px;
}
.quite h3{
  position: relative;
  z-index: 99;
}
.quite-tit-bg{
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 112px;
}
.pretty .quite-tit-bg{
  background: url(../img/index_bg.png) 10px -386px no-repeat,url(../img/index_bg.png) 266px -262px no-repeat;
}
.ill .quite-tit-bg{
  background: url(../img/index_bg.png) 382px -500px no-repeat,url(../img/index_bg.png) 244px -262px no-repeat;
}
.ill{}
.ill-tit h3{
  padding-right: 46px;
}

.pk{
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -54px;
  width: 86px;
  height: 86px;
  border: 4px solid #fff;
  border-radius: 50%;
  background-color: #C1272D;
  font-size: 48px;
  line-height: 86px;
  text-align: center;
  color: #fff;
  font-weight: 700;
}

.brand{
  position: relative;
  padding: 48px 0 28px 0;
}
.brand h3{
  position: absolute;
  left: 0;
  top: 14px;
  width: 582px;
  height: 48px;
  border-radius: 14px;
  background-color: #FECC2E;
  font-size: 30px;
  line-height: 48px;
  text-align: center;
}
.brand ul{
  padding-bottom: 46px;
  background: #f5f5f5 url(../img/brandbg.png) left bottom no-repeat;
}
.brand-item{
  float: left;
  width: 244px;
  background:-moz-linear-gradient(left, #fecc2d, #ff9900);
  background:-webkit-linear-gradient(left, #fecc2d, #ff9900);
  background:-ms-linear-gradient(left, #fecc2d, #ff9900);
  background:linear-gradient(left, #fecc2d, #ff9900);
  text-align: center;
}
.brand-item:nth-child(1) {
  height: 384px;
  margin-top: 134px;
}
.brand-item:nth-child(2) {
  height: 440px;
  margin-top: 78px;
}
.brand-item:nth-child(3) {
  height: 482px;
  margin-top: 36px;
}
.brand-item:nth-child(4) {
  height: 518px;
}
.brand-item:nth-child(1) em{
  line-height: 66px;
  font-size: 60px;
}
.brand-item:nth-child(2) em{
  line-height: 122px;
  font-size: 80px;
}
.brand-item:nth-child(3) em{
  line-height: 164px;
  font-size: 100px;
}
.brand-item:nth-child(4) em{
  line-height: 200px;
  font-size: 120px;
}
.brand-item .triangle{
  display: block;
  border-left:122px solid #f5f5f5 ;
  border-right:122px solid #f5f5f5 ;
  border-bottom:60px solid transparent ;
}
.brand-item em{
  font-family:arial ;
  font-size: 67px;
  font-weight: 500;
}
.brand-item .brand-pic{
  width: 100%;
  height: 178px;
  padding: 2px;
  overflow: hidden;
  box-sizing: border-box;
}
.brand-item img{
  width: 244px;
}


.brand-item p{
  font-size: 16px;
  font-weight: 500;
  padding-top:  12px ;
  line-height: 24px;
}

/* 成功案例 */
.success{}
.success-item{
  padding: 16px 40px 16px;
  border-top: 16px solid #FECC2D;
}
.success-pic{
  width: 256px;
  height: 200px;
  overflow: hidden;
  /*border: 1px solid #999D99;*/
  margin-right: 48px;
}
.success-pic img{
  width: 100%;
}
.success-txt {
  width: 590px;
}
.success-txt h3{
  font-size: 20px;
  padding-bottom: 10px;
}
.success-txt div{
  max-height: 200px;
  overflow: hidden;
  font-size: 14px;
}
.success-cry {
  display: block;
  height: 58px;
  width: 100%;
  line-height: 58px;
  background-color: #FECC2D;
  text-align: center;
  font-size: 22px;
  letter-spacing: 2px;
}

/* 公司支持 */
.support{
  padding-bottom: 80px;
}
.support-item{
  height: 210px;
}
.support-item:nth-child(2n-1){
  background-color: #FECC2E;
}
.support-item:nth-child(2n){
  background-color: #fff;
}
.support-item:nth-child(2n-1) span{
  background-color: #fff;
}
.support-item:nth-child(2n) span{
  background-color: #FECC2E;
}
.support-pic{
  width: 320px;
  height: 210px;
  overflow: hidden;
  background-color: #fff;
}
.support-pic img{
  width: 100%;
}
.support-txt{
  width: 560px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 80px;
}

.support-txt span{
  position: absolute;
  left: 16px;
  top: 50%;
  margin-top: -24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 48px;
  text-align: center;
}
.support-txt h3{
  font-size: 18px;
  padding-bottom: 6px;
}
.support-txt p{
  font-size: 14px;
}

/* 荣誉资质 */
.honor{
  position: relative;
  margin-bottom: 80px;
}
.honor-bd{}
.honor-item{
  float: left;
  width: 270px;
  margin: 0 26px;
  overflow: hidden;
}
.honor-item img{
  width: 100%;
}
.honor-prev,
.honor-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 0;
  cursor: pointer;
  transition: 0.3s;
}

.honor-prev{
  left: -40px;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 26px solid #999D99;
}
.honor-next{
  right: -40px;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-right: 26px solid #999D99;
}
.honor-prev:hover{
  border-left-color: #FECC2E;
}
.honor-next:hover{
  border-right-color: #FECC2E;
}

/* 资讯中心 */
.newswrap{
  padding-bottom: 80px;
}
.news{
  position: relative;
  padding: 10px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
.news-detail{
  width: 470px;
  height: 184px;
  padding: 20px 24px 20px 0;
  border-right: 1px solid #999D99;
  margin-right: 40px;
  overflow: hidden;
}
.news-detail-item{
  margin-bottom: 20px ;
}
.news-detail-pic{
  width: 178px;
  height: 184px;
  margin-right: 14px;
  overflow: hidden;
  /*border: 1px solid #333;*/
}
.news-detail-pic img{
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.news-detail-txt{
  width: 266px;
  font-size: 14px;
  line-height: 30px;
  max-height: 184px;
  overflow: hidden;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.news-tit{
  padding-top: 24px;
  font-size: 14px;
  line-height: 38px;
}
.news-tit-item{
  border-bottom: 1px solid #666;
}
.news-tit-item h3{
  width: 418px;
  overflow: hidden;
  height: 38px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news-tit-item p{
  display: inline-block;
  width: 346px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news-tit-item a{
  float: right;
  font-weight: normal;
}
.more {
  position: absolute;
  right: 0;
  bottom: 10px;
}
.active-news {
  text-shadow: 2px 2px 2px #999;
}

/* 快速导航 */
.fast{
  padding-bottom: 120px;
  font-size: 16px;
  line-height: 30px;
}
.fast p{
  /*display: flex;
  justify-content: space-between;
  align-items: center;*/
}
.fast p strong{
  float: left;
  width: 120px;
}
.fast p span{
  float: left;
  width: 160px;
  margin-right: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.fast p a.fast-more{
  float: right;
  margin: 0 6px;
}
footer{
  position: relative;
  background-color: #FECC2E;
  padding: 38px 0 40px ;
}
.foot-logo{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.foot-left,
.foot-right{
  position: relative;
  top: 50%;
  height: 110px;
}
.foot-left img,
.foot-right img{
  height: 100%;
}
.foot-left{
  margin-left: 2%;
  margin-top: -60px;
}
.foot-right{
  margin-right: 2%;
  margin-top: -70px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
}
.foot-right p{
  text-indent: 24px;
  background: url(../img/index_bg.png) left -614px no-repeat;
}
.foot-cont{
  position: relative;
  z-index: 99;
  text-align: center;
  font-size: 12px;
  line-height: 30px;
}
.foot-cont a:hover{
  color: #fff;
}
.foot-nav {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: bold;
}
.foot-nav ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot-nav li{
  float: left;
}
.foot-nav a{
  margin: 0 16px;
}
.flink{
  padding: 0 200px;
}
.flink a{
  margin: 0 4px;
}

/* 首页样式结束，公用的有header 与 footer */

/* 以下内容是内页样式  */

/* 产品页外层元素样式 */
.product-page{
  padding-top: 30px;
  margin-bottom: 80px;
  min-height: 800px;
}

/* 产品中心页左侧导航块 */
.leftnav{
  width: 280px;
}
.leftnav h2{
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: 24px;
  text-align: center;
  background-color: #FECC2E;
}
.prd-navitem{
  width: 200px;
  padding: 20px 40px;
  margin-bottom: 20px;
  background-color: #F2F0ED;
}
.prd-navitem h3{
  width: 200px;
  height: 30px;
  background-color: #FECC2E;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
}
.prd-navitem ul{
  margin-bottom: 10px;
}
.prd-navitem ul a{
  display: block;
  width: 200px;
  height: 32px;
  line-height: 32px;
  border-bottom: 1px dotted #999D99;
  white-space: nowrap;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
}
.prd-navitem a:hover{
  color: #000;
}
.prd-navitem ul a:hover{
  text-indent: 10px;
}
/*.leftnav-pic{
  width: 280px;
  height: 280px;
  box-sizing: border-box;
  border: 1px solid #999D99;
}
.leftnav-pic img{
 max-width: 100%;
 position: relative;
 top: 50%;
 transform: translateY(-50%);
}*/

/* 产品列表页右侧 */
.prd-driectory{
  width: 680px;
}
.prd-driectory h2{
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  line-height: 50px;
  font-size: 24px;
  text-align: center;
  background-color: #FECC2E;
}
.prd-driectory-list{
  width: 100%;
}
.prd-driectory-list ul{}
.prd-driectory-list li{
  height: 200px;
  border: 1px solid #999D99;
  padding: 20px;
  margin-bottom: 16px;
}
.prd-driectory-pic{
  width: 200px;
  height: 200px;
  /*border: 1px solid #999D99; 工*/
  overflow: hidden;
  margin-right: 20px;
}
.prd-driectory-pic img{
  max-width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
/* 移入显示阴影 */
.prd-driectory-pic:hover{
  border-color: deepskyblue;
  box-shadow: 0 0 6px #999D99;
}
.prd-driectory-txt{
  position: relative;
  width: 400px;
  height: 200px;
}
.prd-driectory-txt h3{
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 12px;
}
.prd-driectory-txt div{
  font-size: 14px;
  line-height: 26px;
  max-height: 130px;
  overflow: hidden;
}
.prd-driectory-txt .outline h3{
  height: 0;
  overflow: hidden;
}


/* 产品详情页右侧部分样式 */

.prd-detail{
  width: 670px;
}
.prd-detail h2{
  font-size: 18px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 8px;
}
.prd-detail h2 small{
  display: inline-block;
  width: 14px;
  height: 36px;
  margin-right: 6px;
  background-color: #FECC2E;
}
.prd-detail-parameter{
  margin-bottom: 20px;
}
.prd-dp-pic{
  width: 280px;
  height: 280px;
  overflow: hidden;
  margin-right: 20px;
}
.prd-dp-pic img{
  max-width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.prd-dp-parameter{
  width: 320px;
  padding-top: 26px;
  font-size: 14px;
  line-height: 26px;
}
.prd-dp-parameter h3{
  font-size: 16px;
  line-height: 38px;
}
.prd-detail-item p{
  position: relative;
  margin-bottom: 10px;
  padding: 0px 16px 0 30px;
  font-size: 14px;
  line-height: 26px;
}

.prd-detail-item h3{
  position: relative;
  padding: 20px 0 0 30px;
  font-size: 15px;
}
.prd-detail-item em{
  position: absolute;
  top: 24px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #FECC2E;
}

.prd-detail-pister{
  width: 100%;
  text-align: center;
  margin:40px 0;
}
.prd-detail-pister img{
  max-width: 100%;
}
.prd-detail-phone {
  width: 350px;
  height: 26px;
  padding: 10px 20px;
  margin: 0 auto;
  background-color: #FECC2E;
  border-radius: 8px;
  line-height: 26px;
}

.prd-detail-phone input{
  height: 26px;
  width: 150px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  text-indent: 1em;
  color: #999D99;
  background-color: #fff;
  margin-right:22px ;
}

/* 产品列表页与详情页样式结束 */

/* 新闻首页、列表页、详情页样式开始 */
.news-nav{
  margin-top: 40px;
  height: 62px;
  background-color: #FECC2E;
}
.news-nav a{
  display: inline-block;
  height: 100%;
  line-height: 62px;
  font-size: 16px;
  padding: 0 26px;
  font-weight: 500;
}
.news-nav a.active-newsnav,
.news-nav a:hover{
  color: #fff;
  background-color: #424242;
}
.news-pister{
  position: relative;
  height: 550px;
}
.news-bd{
  position: relative;
  height: 550px;
}
.news-bd a{
  display: block;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.news-bd img{
  width: 100%;
  min-height: 100%;
}
.news-hd{
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60px;
  width: 100%;
  padding: 16px 0;
  background-color: rgba(100,100,100,0.5);
}
.news-hd a{
  float: left;
  height: 60px;
  width: 100px;
  margin-right: 20px;
  border: 2px solid transparent;
  overflow: hidden;
}
.news-hd img{
  max-width: 100%;
  min-height: 100%;
}
.news-hd .news-on{
  border-color: red;
}

.news-index-cont{
  padding-top: 20px;
  margin-bottom: 80px;
}
.news-index-list{
  width: 670px;
}
.news-index-list h2,
.news-index-sidebar h2{
  height: 40px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  background-color: #E6E6E6;
}
.news-index-item{
  height: 120px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #999D99;
}
.nii-detail{
  position: relative;
  width: 374px;
  height: 120px;
}
.nii-detail h3{
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nii-detail p{
  line-height: 26px;
  max-height: 54px;
  overflow: hidden;
}
.nii-detail .detail{
  bottom: -12px;
  right: 10px;
  width: 80px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
}
.news-more{
  float: right;
  width: 74px;
  height: 28px;
  line-height: 28px;
  background-color: #fecc2e;
  text-align: center;
  border-radius: 4px;
}
.news-more:hover{
  color: #000;
  box-shadow: 0 0 4px #666;
}
.nii-pic{
  width: 240px;
  height: 120px;
  /*border: 1px solid #999D99; 工*/
  box-sizing: border-box;
  overflow: hidden;
}
.nii-pic:hover{
  border-color: deepskyblue;
  box-shadow: 0 0 6px #999D99;
}
.nii-pic img{
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.news-index-sidebar{
  width: 290px;
}
.nis-weixi{
  width: 290px;
  height: 290px;
  overflow: hidden;
  /*border: 1px solid #999D99; 工*/
  margin-bottom: 20px;
}
.nis-weixi:hover{
  border-color: deepskyblue;
  box-shadow: 0 0 6px #999D99;
}
.nis-weixi img{
  width: 100%;
}

/* 新闻列表页 */
.news-page{
  padding-top: 20px;
  margin-bottom: 80px;
}
.news-leftnav{
  width: 280px;
}
.news-leftnav h2{
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: 24px;
  text-align: center;
  background-color: #FECC2E;
}
.news-leftnav nav{
  width: 200px;
  padding: 20px 40px;
  background-color: #F2F0ED;
}
.news-leftnav a{
  display: block;
  width: 200px;
  height: 32px;
  line-height: 32px;
  border-bottom: 1px dotted #999D99;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
}
.news-leftnav a:hover{
  color: #000;
  text-indent: 10px;
}

.news-list{
  width: 670px;
}
.news-list h2{
  font-size: 18px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 18px;
}
.news-list h2 small{
  display: inline-block;
  width: 14px;
  height: 36px;
  margin-right: 6px;
  background-color: #FECC2E;
}

.news-list-item{
  padding: 0 8px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #999D99;
  line-height: 26px;
}
.news-list-item h3{
  width: 570px;
  font-weight: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* 新闻列表页分页控制器 */
.news-page-control{
  margin-top: 20px;
  text-align: center;
}
.news-page-control input[type="text"]{
 text-align: center;
 width: 40px;
}
.pagination-centered .pagination{
  display: none;
}

/* 新闻详情 */
.news-detail-page{
  position: relative;
   min-height: 600px;
   width: 630px;
   padding: 10px 20px 64px;
   border: 1px solid #999D99;
   box-sizing: border-box;
  text-align: center;

}
.news-detail-page h2{
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 38px;
  padding-bottom: 10px;
}
.news-detail-page p{
  text-align: left;
  padding-bottom: 8px;
}
.news-detail-page img{
  max-width: 100%;
}
.news-detail-count{
  margin-bottom: 40px;
  color: #666;
  text-align: left;
}
.news-detail-count span{
  margin-right: 20px;
}
.news-btn{
  border: 1px solid #999d99;
  border-top: none;
  padding: 20px ;
  margin-bottom: 40px;
}
.news-btn a{
  padding: 10px 10px;
  border: 1px solid #ccc;
  border-radius: 25px;
}
/* 联系我们页面 */
.contact-tit{
  position: relative;
  padding: 18px 0;
  text-align: center;
}
.contact-tit h2{
  line-height: 38px;
  border-bottom: 1px solid #999;
  font-size: 20px;

}
.contact-tit small{
  position: relative;
  top: -1px;
  display: inline-block;
  width: 134px;
  line-height: 24px;
  font-size: 14px;
  font-weight: normal;
  background-color: #fff;
  color: #999;
}
.contact-tit i{
  position: absolute;
  top: 54px;
  left: 50%;
  width: 50px;
  height: 3px;
  background-color: #FECC2E;
}
.contact-tit i:first-of-type{
  margin-left: -117px;
}
.contact-tit i:last-of-type{
  margin-left: 67px;
}
#map{
  width: 100%;
  /*height: 240px;
  border: 1px solid #000;*/
}

.contact-phone{
  padding: 48px 0;
}
.contact-phone h2{
  width: 316px;
  height: 40px;
  padding-left: 44px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 40px;
  background: url(../img/index_bg.png) left -654px no-repeat;
}
.contact-phone ul{
  width: 200px;
  padding-left: 80px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 14px;
  background: url(../img/index_bg.png) 15px -1206px no-repeat;
}

.contact-ride{
  padding-top: 50px;
}
.contact-ride h2,
.contact-drive h2{
  position: relative;
  line-height: 30px;
  margin-bottom: 10px;
  padding-left: 42px;
  font-size: 16px;
  border-bottom: 1px solid #999;
}
.contact-ride h2 span,
.contact-drive h2 span{
  position: absolute;
  top: 10px;
  left: 22px;
  width: 10px;
  height: 10px;
  background-color: #FECC2E;
  transform: rotateZ(45deg);
}
.contact-ride-item{
  height: 136px;
  padding-left: 128px;
  font-size: 16px;
  line-height: 34px;
  background: url(../img/index_bg.png) 30px -995px no-repeat;
}

.contact-ride-item:nth-of-type(1){
  background-position: 8px -704px;
}
.contact-ride-item:nth-of-type(2){
  background-position: 42px -846px;
}
.contact-ride-item h3{
  font-weight: normal;
}
.cri-plan{
  line-height: 18px;
}
.cri-plan em{
  float: left;
  height: 90px;
}
.cri-plan p{
  float: left;
}

.contact-drive{
  padding-top: 30px;
}
.contact-drive h3{
  font-size: 16px;
  line-height: 42px;
  padding:20px 0 0 130px;
  margin-bottom: 10px;
  background: url(../img/index_bg.png) 24px -1138px no-repeat;
}

.contact-form{
  padding-top: 90px;
  margin:0 auto 80px;
  width: 800px;
}
.form,
.contact-cry{
  width: 50%;
  height: 168px;
}
.form{
  position: relative;
  box-sizing: border-box;
  padding: 26px 0 0 40px;
  background-color: #E6E6E6;
  border-radius: 18px 0 0 18px;
}
.form input{
  display: block;
  border: none;
  background-color: #fff;
  width: 282px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 22px;
  line-height: 46px;
  text-indent: 2em;
}
.form button{
  width: 282px;
  height: 46px;
  border-radius: 12px;
  line-height: 46px;
  background-color: #FECC2E;
  font-size: 16px;
  color: #000;
}
.form p{
  position: absolute;
  left: 40px;
  top: 78px;
  width: 282px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  color: red;
  transition: 0.3s;
  opacity: 0;
}
.contact-cry{
  position: relative;
   background-color: #FECC2E;
   border-radius: 0 18px 18px 0;
}
.contact-cry .contact-cry-img{
  position: absolute;
  top: -66px;
  left: 4px;
  width: 100%;
  height: 100%;
}
.contact-cry-img img{
  width: 80%;
}
.contact-cry p{
  position: absolute;
  top: 116px;
  left: 144px;
  font-size: 18px;
  font-weight: bold;
}

/* 门店展示 */
.store{
  margin-bottom: 80px;
}
.store-item{
  float: left;
  width: 298px;
  height: 380px;
  margin: 10px 13px ;
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
}
.store-item-pic{
  width: 260px;
  height: 280px;
  padding: 0 20px;
  overflow: hidden;
}
.store-item-pic img{
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.store-item h3{
  font-size: 18px;
  margin-bottom: 20px;
}
.store-item a{
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  z-index: 99;
  background-color: transparent;
  transition: background-color,0.8s;
}
.store-item:hover{
  box-shadow: 0 0 6px #999D99;
}
.store-item a:hover{
  border-color: deepskyblue;
  box-shadow: 0 0 6px #999D99;
  background-color: #fecc2e;
  color: #000;
}

/* 关于我们 */
.about-page{
  padding-top: 20px;
}
.brand-cont{
  width: 660px;
  margin-bottom: 40px;
}
.about-tit{
  margin-bottom: 20px;
  border-bottom: 1px solid #bbb;
}
.about-tit h2{
  position: relative;
  bottom: -1px;
  display: inline-block;
  font-size: 20px;
  line-height: 40px;
  border-bottom: 3px solid #fecc2e;
}
.about-tit span{
  font-size: 16px;
}

.brand-detail{
  margin-bottom: 40px;
}
.brand-detail-tit{
  line-height: 40px;
  height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #333;
  margin-bottom: 60px;
  border-bottom: 1px solid #ccc;
}
.brand-detail h3{
  display: inline-block;
  position: relative;
  bottom: -18px;
  padding: 0 16px;
  background-color: #fff;
}
.brand-detail span{
  color: #f6ab00;
  margin-left: 14px;
}

.brand-detail img{
  text-align: center;
  max-width: 100%;
}
.brand-detail p{
  margin-bottom: 8px;
}

.about-page .honor-item{
  width: 200px;
  margin: 0 10px;
  overflow: hidden;
}

/* 荣誉资质列表页 */
.rongyu-item {
  float: left;
  width: 178px;
  margin: 10px 10px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-bottom: 4px solid #9a9e9a;
  /*border-radius: 10px;*/
  text-align: center;
}

.rongyu-item img{
  max-width: 100%;
  min-height: 132px;
  margin-bottom: 20px;
}
.rongyu-item h3{
  margin-bottom: 20px;
}

/* 加盟代理 */
.agency{}
.agency h2{
  font-size: 36px;
  padding: 40px 0 0 90px;
  height: 106px;
  line-height: 106px;
  letter-spacing: 2px;
  background: url(../img/leaguebg.png) 590px 0 no-repeat;
}
.table {
  padding: 30px 40px;
}
.table div{
  width: 46%;
  margin-right: 30px;
}
.table table{
  width: 100%;
  text-align:center;
}
.table th{
  height: 30px;
  font-weight: bold;
  font-size: 16px;
}
.table td{
  font-size: 16px;
}
.table tr:nth-of-type(2){
  height: 46px;
}
.table tr:nth-of-type(3){
  height: 24px;
}
.table tr:nth-of-type(4){
  height: 48px;
}
.table tr:nth-of-type(5){
  height: 44px;
}
.table tr:nth-of-type(6){
  height: 28px;
}
.agency-cont{
  position: relative;
  padding: 20px 40px;
  background-color: #E2E2E2;
  border-radius: 8px;
}
.agency-left{
  height: 330px;
  width: 360px;
  border: 6px solid #fff;
  border-radius: 50%;
  background-color: #FECC2E;
  padding-top: 30px;
  margin-right: 46px;
}
.agency-left h3{
  font-size: 15px;
  line-height: 26px;
  text-align: center;
}
.agency-left p{
  width: 224px;
  height: 92px;
  padding: 10px;
  border-radius: 6px;
  background-color: #F2F2F2;
  margin: 0 auto;
}
.agency-right{
  padding-top: 20px;
}
.agency-right h3{
  font-size: 30px;
  line-height: 38px;
}
.agency-right p{
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
  padding: 16px 0;
}
.agency-round{
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 200px;
  height: 200px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 38px;
  background: url(../img/leaguebg.png) 0 -146px no-repeat;
}
.agency-round p{
  padding-top: 60px;
  width: 110px;
  margin-left:54px ;
}

/* 合作伙伴 */
.partner{
  text-align: center;
  padding: 20px 0;
}
.partner img{
  width: 100%;
}

/* 工程案例 */
.engineer{
  padding-top: 20px;
  margin-bottom: 20px;
}
.engineer ul{}
.engineer-item{
  float: left;
  width: 360px;
  margin: 10px 65px;
}
.engineer-pic{
  position: relative;
}
.engineer-pic:hover{
  box-shadow: 0 0 6px #666;
}
.engineer-pic img{
  width: 100%;
}
.engineer-pic span{
  left: 6px;
  top: 6px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 12px;
}
.engineer-item h3{
  position: relative;
  padding-left: 40px;
  line-height: 34px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.6s;
}
.engineer-item h3:hover{
  padding-left: 50px;
}
.engineer-item h3 a:hover{
  color: #000;
}
.engineer-item h3 span{
  left: 6px;
  top: 6px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
}
.engineer-item span{
  position: absolute;
  border-radius: 50%;
  background-color: #FECC2E;
  text-align: center;
}
.engineer-item p{
  line-height: 36px;
  font-size: 12px;
  padding-left: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 加盟页面，其中有一部分用的是首页内容  */
.matter{
  margin-bottom: 60px;
}
.matter-flow{
  padding-top: 20px;
}
.matter-flow-item{
  float: left;
  width: 162px;
  height: 210px;
  text-align: center;
  font-weight: bold;
}
.matter-flow-item:nth-of-type(2),
.matter-flow-item:nth-of-type(5){
  padding-top: 50px;
}
.matter-flow-item:nth-of-type(3),
.matter-flow-item:nth-of-type(4){
  padding-top: 100px;
}
.mfi-pic{
  width: 98px;
  height: 98px;
  margin: 0 32px;
  border-radius: 50%;
  border: 1px solid #666;
  box-sizing:border-box ;
}
.mfi-pic.active-mfi{
  box-shadow: 0 0 6px #666;
  border-color: deepskyblue;
}
.mfi-pic img{
  width: 60%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.matter-flow-item em{
  display: block;
  color: red;
  line-height: 24px;
  font-weight: bold;
}
.matter-flow-item p{
  white-space: nowrap;
  line-height: 24px;
}

.matter-form{
  border: 2px solid #FECC2E;
}
.matter-form-tit{
  height: 46px;
  padding: 12px 40px 0;
  background-color: #FECC2E;

}
.matter-form-tit h3{
  font-size: 20px;
  line-height: 44px;
}
.matter-form-tit h3 small{
  margin-left: 10px;
  font-size: 15px;
}
.matter-form-tit p{
  padding-top: 16px;
  line-height: 20px;
  font-weight: bold;
  font-size: 13px;
}
.matter-form-tit p span{
  font-size: 15px;
  color: red;
}

.matter-form-body{
  padding: 24px 40px 0;
  background-color: #EAEAEA;
}
.form-row{
  margin-bottom: 18px;
  font-size: 16px;
}
.form-row i{
  color: red;
  font-weight: bold;
  padding: 2px 2px 0;
  font-style: normal;
}
.form-row em{
  font-weight: bold;
}
.form-row span{
  padding: 0 5px;
}
.form-row input[type="text"]{
  border: none;
  background-color: #fff;
  box-shadow: 0 0 3px #666;
  padding: 6px;
  margin-right: 10px;
}
.form-row input[type="radio"]{}

.form-row-textarea{
  margin-top: 18px;
}
.form-textarea,
.form-textarea-cont{
  height: 260px;
  width: 48%;
  background-color: #fff;
  border-radius: 8px;
}
.form-textarea{
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 0 6px #666;
}
.form-textarea textarea{
  width: 100%;
  height: 100%;
  border: none;
  resize:none;
}

.form-textarea-cont{
  border: 2px solid #FECC2E;
  box-sizing: border-box;
}
.form-textarea-cont h3{
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #FECC2E;
}
.ftc-text{
  padding-left: 12px;
  line-height: 26px;
}
.ftc-text p{
  cursor: pointer;
}
.ftc-text p:hover{
  text-shadow: 1px 1px 2px #888;
}
.ftc-text p i{
  padding-right: 6px;
  color: #000;
  cursor: pointer;
}

.matter-form-body button{
  width: 112px;
  height: 32px;
  background-color: #FECC2E;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 26px;
  border-radius: 8px;
}
.matter-form-body button:hover{
  box-shadow: 0 0 2px #666;
}
