@charset "utf-8";
html{
  overflow-y: scroll;
}
body{
  font-family: "lucida Grande",Verdana,"Microsoft YaHei";
}
a{
  color: inherit;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;   
          transition: 0.3s;
}
a:hover{
  color: inherit;
  text-decoration: none;
}
a:focus{
  text-decoration: none;
}
ul{
  list-style: none;
  margin:0;
  padding:0;
}
b,dt{
  font-weight: normal;
}
p{
  margin:0;
}
h3,h4{
  margin: 0;
  font-weight: normal;
}
@supports(display:flex) {
  body{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }
  #content-wrap{
    flex: 1;
  }
}

.container-fluid{
  max-width: 1030px;
}


/*顶部 */
#top{
  background: #171717;
}
.top-head{
  line-height: 60px;
  font-size: 0;
}
.top-logo{
  display: inline-block;
}
.m-logo,
.b-logo{
  display: none;
}
@media (min-width: 450px) {
  .top-head{
    line-height: 65px;
  }
  .m-logo{
    display: inline-block;
  }
  .s-logo{
    display: none;
  }
}
@media (min-width: 910px) {
  .top-head{
    display: inline-block;
    line-height: 80px;
  }
  .m-logo{
    display: none;
  }
  .b-logo{
    display: inline-block;
  }
}

/*小屏  折叠按钮*/
#btn-collapse {
  float: right;
  top: 0;
  cursor: pointer;
  color: #fff;
  font-size:22px;
  line-height: inherit;
}
@media only screen and (min-width: 450px) {
	#btn-collapse{
	  font-size: 24px;
	}
}
@media only screen and (min-width: 910px) {
	#btn-collapse{
	  display: none;
	}
}
/*导航*/
.top-nav{
  color: #fff;
  float: right;
}
.top-nav li a{
  display: block;
  text-align: center;
}
@media only screen and (max-width: 909px) {
	.top-nav{
	  display: none;
	  
	  position: absolute;
	  z-index: 2;
	  left: 0;
	  width: 100%;
	  background: rgba(23,23,23,0.88);
	}
	.top-nav li a{
	  line-height: 30px;
	}
}
@media only screen and (min-width: 910px) {
  .top-nav{
    display: block !important;
  }
  .top-nav li{
    float: left;
  }
  .top-nav li a{
    line-height: 78px;
    margin: 0 5px;
    border-bottom: 2px solid transparent;
  }
}
@media only screen and (min-width: 992px) {
	.top-nav li a{
	  margin: 0 10px;
	}
}
.top-nav li a:hover,
.top-nav li a.act{
  color: #e43a3a;
  border-color: currentcolor;
}



/*轮播图*/
.swiper-img .swiper-slide img{
  margin: 0 auto;
}
.slide-img-big{
  display: none;
}
.slide-img-small{
  display: block;
}
@media (min-width: 640px) {
  .slide-img-big{
    display: block;
  }
  .slide-img-small{
    display: none;
  }
}

/*主体部分*/
.main{
  padding-bottom: 20px;
}

/*主要标题*/
.main-title {
  position: relative;
  margin: 20px 0;
  text-align: center;
  font-size: 1.5em;
}
.main-title:after{
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 100%;
  height: 1px;
  background: #cecece;
}
@media (min-width: 768px) {
  .main-title{
    margin-top: 30px;
  }
}
.main-title a{
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #717171;
  background: #fff;
  padding: 0 1em;
}
.main-title h3{
  font-size: 1em;
}
.main-title h4{
  font-size: 0.8em;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .main-title{
    font-size: 1.7em;
  }
}
@media (min-width: 992px) {
  .main-title{
    font-size: 1.8em;
  }
}
.main-title a:hover{
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}


/*首页 解决方案*/
.main-solution .col-xs-6{
  margin-bottom: 15px;
}
@media only screen and (min-width: 640px) {
	.main-solution .col-xs-6{
    width: 33.33333333%;
  }
}

.solutionlink{
  display: block;
  text-align: center;
  font-size: 1em;
}
.solutionlink .imgbox{
  margin: 0 auto;
  max-width: 75%;
  height: 90px;
}
@media only screen and (min-width: 640px) {
	.solutionlink .imgbox{
	  height: 110px;
	}
}
.solutionlink .imgbox img{
  max-width: 100%;
  max-height: 100%;
}
.solutionlink h3{
  font-size: 1em;
  margin: 0.4em 0;
  color: #3e3d3d;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;   
          transition: 0.3s;
}
.solutionlink .text{
  line-height: 1.5;
  height: 3em;
  overflow: hidden;
  font-size: 0.86em;
  margin: 0 auto;
  max-width: 220px;
  color: #808080;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;   
          transition: 0.3s;
}
.solutionlink .btn-more{
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0.3em 0.7em;
  margin: 0.7em 0;
  border-radius: 0.3em;
  color: #fff;
  background: #d93f33;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;   
          transition: 0.3s;
}
@media only screen and (min-width: 450px) {
	.solutionlink{
	  font-size: 1.2em;
	}
}
.solutionlink:hover h3{
  color: #222;
}
.solutionlink:hover .text{
  color: #666;
}
.solutionlink:hover .btn-more{
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  background: #ba1d1c;
}

/*首页 产品展示*/
.product-wrapper{
  background: #f4f4f4;
}
.product-wrapper .main-title a{
  background: #f4f4f4;
}
.main-product .col-xs-6{
  margin-bottom: 15px;
}
@media only screen and (min-width: 640px) and (max-width:767px) {
	.main-product .col-xs-6{
	  width: 33.33333333%;
	}
}
@media only screen and (min-width: 850px) {
  .main-product .col-xs-6{
    width: 25%;
  }
}
.indexprolink{
  position: relative;
  display: block;
  overflow: hidden;
}
.indexprolink .content{
  height: 0;
  padding-top: 85%;
  border: 1px solid #e8e8e8;
}
.indexpromodal{
  position: absolute;
  top:-100%;
  left: -100%;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  color: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(244,49,49,0.7);
}
.indexpromodal h3{
  font-size: 16px;
  margin-bottom: 0.4em;
  padding: 0 0.5em;
  max-width: 100%;
}
.indexpromodal h3 span{
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (min-width: 450px) {
  .indexpromodal h3{
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .indexpromodal h3{
    font-size: 20px;
  }
}
/*小屏标题*/
.indexprolink .s-title{
  display: none;
  line-height: 1.75;
  color: #fff;
  text-align: center;
  background: rgba(244,49,49,0.7);
  padding: 0 2px;
  
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;  
          transition: 0.3s;
}
.indexprolink:hover .s-title{
  background: rgba(244,49,49,0.9);
}
@media only screen and (max-width: 449px) {
  .indexprolink .s-title{
    display: block;
  }
  .indexpromodal{
    display: none;
  }
}

/*首页  关于我们*/
.about-img img{
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
}
.about-text{
  color: #5f5f5f;
  line-height: 1.8;
}
.about-text .title{
  font-weight: bold;
  font-family: arial;
  font-size: 28px;
}
.about-text .text{
  text-indent: 2em;
}
.about-text .btn-more-wrap{
  text-align: center;
}
.about-text .btn-more{
  display: inline-block;
  color: #fff;
  background: #d93f33;
  border-bottom: 3px solid #c83125;
  border-radius: 4px;
  padding: 0.2em 1.5em;
  margin-top: 1em;
}
.about-text .btn-more:hover{
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  background: #c62c25;
  border-color: #b61c18;
}
@media only screen and (min-width: 640px) {
  .about-img{
    float: left;
    max-width: 45%;
    margin-right: 20px;
  }
  .about-img img{
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
	.main-about .about-img{
	  max-width: 35%;
	}
}


/*首页 创新咨询*/
.news-wrapper .bg-wrap{
  margin: 20px 0;
  background: url(../img/fix-bg.jpg) no-repeat center / cover fixed;
}
.news-wrapper .main-title-wrap{
  background: rgba(217,63,51,0.8);
}
.news-wrapper .main-title{
  margin-bottom: 10px;
}
.news-wrapper .main-title:after{
  content: "";
  width: calc(50% - 3em);
}
.news-wrapper .main-title:before{
  content: "";
  position: absolute;
  top: 0.6em;
  right: 0;
  width: calc(50% - 3em);
  height: 1px;
  background: #cecece;
}
.news-wrapper .main-title a{
  color: #fff;
  background: none;
}

.news-nav{
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.news-nav a{
  margin: 0 10px;
  padding: 0 2px 5px;
}
.news-nav a.act{
  border-bottom: 1px solid;
}
.news-nav a:hover{
  color: #ddd;
}
/*咨询内容*/
@media only screen and (max-width: 449px) {
  .main-news .col-xs-6{
    width: 100%;
  }
}
@media (min-width: 650px) and (max-width: 767px) {
  .main-news .col-xs-6{
    width: 33.33333333%;
  }
}
@media only screen and (min-width: 800px) {
	.main-news .col-xs-6{
	  width: 25%;
	}
}
.main-news .col-xs-6{
  margin-bottom: 15px;
}
.indexnewslink{
  display: block;
}
.indexnewslink .imgbox{
  height: 0;
  padding-top: 72%;
}
.news-text{
  padding: 0.7em;
  background: #f2f2f2;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;  
          transition: 0.3s;
}
.news-text h3{
  color: #505050;
  font-size: 1.15em;
  
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-text h3:after{
  content: "";
  display: block;
  width: 2.5em;
  height: 2px;
  margin: 0.36em 0 0.3em;
  background: #918c8c;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;  
          transition: 0.3s;
}
.news-text .text{
  color: #505050;
  font-size: 0.93em;
  line-height: 1.5;
  height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  
  margin: 0.2em 0 0.6em;
}
.news-time{
  font-size: 0.86em;
}
.news-time b{
  float: left;
  color: #858585;
}
.news-time span{
  float: right;
  color: #fff;
  padding: 0.15em 0.36em;
  border-radius: 0.3em;
  background: #bdbdbd;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;  
          transition: 0.3s;
}
@media only screen and (max-width: 449px) {
  .indexnewslink{
    padding: 0 0.72em;
  }
  .indexnewslink .imgbox{
    padding-top: 50%;
  }
  .news-text h3{
    font-size: 1em;
  }
}
.indexnewslink:hover .news-text{
  background: #eee;
}
.indexnewslink:hover .news-text h3:after{
  width: 100%;
}
.indexnewslink:hover .news-time span{
  color: #fff;
  background: #d94a3f;
}


/*首页 联系我们*/
.contact-title{
  font-size: 1.14em;
  margin:0.7em 0 1.2em;
}
@media only screen and (max-width: 767px) {
  .contact-title{
    margin: 0 0 0.7em;
  }
}
.contact-title.left{
  color: #636363;
}
.contact-title.right{
  color: #222;
}
.contact-text{
  color: #757575;
  text-indent: 2em;
  margin-bottom: 1.4em;
}
.contact-list{
  color: #565555;
  margin: 1.4em 0;
}
@media (max-width: 449px) {
  .contact-list{
    padding: 0;
  }
}
.contact-list img{
  position: absolute;
}
.contact-list li{
  margin:0.35em 0 0.35em 1.75em;
}

.contact-form label{
  color: #333;
  font-weight: normal;
  margin-bottom: 0.35em;
}
.contact-form .form-control{
  background:#f1f1f1;
  border:1px dashed #ccc;
  border-radius: 0;
}
.form-control:focus {
  border-color: #09c;
}
.contact-form textarea{
  max-width: 100%;
  resize: vertical;
}
.contact-form input[type=submit]{
  width: 30%;
  min-width: 7.5em;
  color: #fff;
  background:#d94a3f;
  border:none;
  padding:3px 0;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;  
          transition: 0.3s;
}
.contact-form input[type=submit]:hover{
  width: 33%;
}
@media (min-width: 450px) {
  .contact-form input[type=submit]{
    width: 25%;
  }
  .contact-form input[type=submit]:hover{
    width: 28%;
  }
}


/*非主页页面*/
.main-page{
  margin: 20px 0 30px;
}
@media (max-width: 767px) {
  .main-page{
    margin-top: 0;
  }
}

/*页面侧栏*/
/*侧栏标题*/
.aside-title{
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: #333;
}
.aside-list{
  margin-bottom: 15px;
}
.aside-list>li{
  margin: 5px 0;
}
.aside-list>li>a{
  position: relative;
  display: block;
  cursor: pointer;
  padding: 0.5em 1em;
  color: #565656;
  background: #dfdfdf;
  
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.aside-list>li.act>a,
.aside-list>li>a:hover{
  color: #fff;
  background: #e43a3a;
}
/*二级产品列表*/
.aside-seclist{
  display: none;
  margin: 0 3px;
  background: #f1f1f1;
}
.aside-seclist>li>a{
  display: block;
  padding: 0.5em 1.2em;
  color: #333;
  background: #e4e4e4;
}
.aside-seclist>li>a:hover,
.aside-seclist>li>a.act{
  background: #ccc;
}
/*页面主题*/
.section{
  padding: 20px 0;
}
/*主题标题*/
.section-title{
  position: relative;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #dedede;
  text-transform: uppercase;
}
.section-title h3{
  color: #e43a3a;
  font-size: 18px;
  font-weight: bold;
  line-height: 39px;
}
.section-pos {
  color: #909090;
  position: absolute;
  top: 0;
  right: 0;
}
.section-pos a[href]:hover,
.section-pos a.act{
  color: #e43a3a;
}


/*关于我们页*/
.section-about{
  color: #505050;
}
.section-about .title{
  font-size: 1.4em;
  color: #313131;
  margin-bottom: 0.8em;
  text-align: center;
}
.section-about .bordertitle{
  margin-bottom: 1.2em;
  text-align: center;
  padding-bottom: 0.8em;
  border-bottom: 1px dashed #dcdcdc;
}
.section-about .bordertitle h3{
  font-size: 1.2em;
  color: #000;
}
.section-about .bordertitle h4{
  color: #8d8d8d;
  font-size: 0.86em;
  font-family: simsun;
  margin-top: 0.4em;
}
.section-about img{
  display: block;
  max-width: 100%;
  margin: 0 auto 0.7em;
}
.section-about .text{
  color: #5f5f5f;
  text-indent: 2em;
  line-height: 1.75;
  margin-bottom: 0.2em;
}


/*产品展示页*/
.section-pro .col-xs-6{
  margin-bottom: 15px;
}
@media (min-width: 610px) and (max-width: 767px) {
  .section-pro .col-xs-6{
    width: 33.33333333%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 920px) {
  .section-pro .col-xs-6{
    width: 50%;
  }
}
.prolink{
  position: relative;
  display: block;
}
.prolink .imgbox{
  height: 0;
  padding-top: 78%;
  border: 1px solid #cbcbcb;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;  
          transition: 0.3s;
}
.prolink .linktitle{
  font-size: 12px;
  padding: 0.35em 0.2em;
  text-align: center;
  color: #5d5d5d;
  
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;  
          transition: 0.3s;
}
@media only screen and (min-width: 450px) {
  .prolink .linktitle{
    font-size: 14px;
  }
}
.prolink:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.prolink:hover .imgbox{
  border-color: #e43a3a;
}
.prolink:hover .linktitle{
  color: #fff;
  background: #e43a3a;
}


/*解决方案页*/
.solutionitem{
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #dedede;
}
.sectionsolutionlink{
  position: relative;
  display: block;
}
.sectionsolutionlink .textbox .title{
  color: #191919;
  font-size: 16px;
  margin: 5px 0 10px;
  
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sectionsolutionlink .textbox .text{
  color: #888;
  line-height: 1.5;
  
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;  
          transition: 0.3s;
}
.sectionsolutionlink .textbox .span-more{
  margin-top: 10px;
  color: #1c8cbb;
  
  display: inline-block;
  padding: 0.1em 1.2em;
  border: 1px solid;
  border-radius: 2px;
  
  -webkit-transition: 0.3s;  
     -moz-transition: 0.3s;  
          transition: 0.3s;
}
@media only screen and (max-width: 449px) {
  .solutionitem{
    padding-bottom: 10px;
  }
  .sectionsolutionlink{
    padding: 10px;
  }
  .sectionsolutionlink .imgbox{
    height: 0;
    padding-top: 50%;
  }
  .sectionsolutionlink .textbox .text{
    max-height: 7.5em;
    -webkit-line-clamp: 5;
  }
}
@media only screen and (min-width: 450px) {
  .sectionsolutionlink{
    height: 150px;
    position: relative;
  }
  .sectionsolutionlink .imgbox{
    float: left;
    width: 220px;
    height: 100%;
  }
  .sectionsolutionlink .textbox{
    float: left;
    width: calc(100% - 220px);
    height: 100%;
    padding: 0 10px;
  }
  .sectionsolutionlink .textbox .text{
    height: 6em;
    -webkit-line-clamp: 4;
  }
  .sectionsolutionlink .textbox .span-more{
    position: absolute;
    bottom: 5px;
  }
}
@media only screen and (min-width: 450px) and (max-width: 639px){
  .sectionsolutionlink .imgbox{
    width: 160px;
  }
  .sectionsolutionlink .textbox{
    width: calc(100% - 160px);
  }
}
@media only screen and (min-width: 767px) and (max-width: 991px){
  .sectionsolutionlink .imgbox{
    width: 160px;
  }
  .sectionsolutionlink .textbox{
    width: calc(100% - 160px);
  }
}
.sectionsolutionlink:hover {
  background: #f1f1f1;
}
@media only screen and (min-width: 768px) {
  .sectionsolutionlink:hover{  
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
  }
}
.sectionsolutionlink:hover .textbox .text{
  color: #333;
}
.sectionsolutionlink:hover .textbox .span-more{
  color: #0d63a5;
}


/*创新资讯*/
.section .morelink{
  color: #555554;
  font-size: 0.86em;
  background: #ececec;
  padding: 0.6em 1em;
  margin: 1em 0 0;
}
.section .morelink a{
  display: block;
  padding: 0.2em 0;
  
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; 
}
@media only screen and (min-width: 992px) {
  .section .morelink{
    margin: 1em 2em 0;
  }
  .section .morelink a.left{
    float: left;
  }
  .section .morelink a.right{
    float: right;
  }
  .section .morelink a{
    max-width: 45%;
  }
}
.section .morelink a:hover{
  color: #121212;
}

/*合作伙伴页*/
.section-partner {
  text-align: center;
}
.section-partner img{
  padding: 0 5px;
  margin: 5px 0;
  max-width: 100%;
}


/*联系我们页*/
.section-contact .companyname{
  text-align: center;
  color: #e43a3a;
  font-size: 1.4em;
  margin: 0.4em 0;
}
@media only screen and (min-width: 640px) {
	.section-contact .companyname{
	  font-size: 1.8em;
	}
}
.section-contact .contact{
  color: #565555;
  line-height: 1.75;
  margin: 1.8em 0 2em;
  padding: 0 1em;
}
.section-contact .contact ul{
  display: inline-block;
  text-align: left;
}
@media only screen and (min-width: 450px) {
	.section-contact .contact{
	  text-align: center;
	}
	.section-contact .contact ul{
	  padding: 0 2em;
	}
}
.section-contact .contact-map img{
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #cdcdcd;
}



/*小屏产品分类下拉按钮*/
#s-btn,
#s-btn-drop {
  color:#fff;
  background: #ec4d2b;
  line-height: 35px;
  margin:10px 10px 0;
  padding: 0 15px;
}

#s-btn-drop{
  cursor: pointer;
}
#s-btn-drop b{
  margin-top: 8px;
  float: right;
  
  -webkit-transition: 0.4s;  
     -moz-transition: 0.4s;  
          transition: 0.4s;
}
#s-btn-drop.act b{
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*小屏下拉列表*/
.drop-list{
  display: none;
  margin:0 12px;
}
.drop-list>li>a{
  display: block;
  cursor: pointer;
  padding:6px 15px;
  margin: 3px 0;
  color: #565656;
  background: #dfdfdf;
}
.drop-list>li>a:hover,
.drop-list>li.act>a{
  color: #fff;
  background: #e43a3a;
}
/*带二级菜单的下拉列表*/
.drop-seclist{
  display: none;
  margin: 0 3px;
  color: #565656;
  background: #f1f1f1;
}
.drop-seclist>li>a{
  display: block;
  padding: 5px 15px;
  border-bottom: 1px solid #dadada;
}
.drop-seclist>li>a:hover{
  background: #dedede;
}


/* 大屏底部  */
.foot{
  color: #898989;
  background: #111111;
  padding: 1.1em 0px;
}
@media only screen and (min-width: 768px) {
  .foot{
    padding: 1.8em 0px;
  }
}
.foot a:hover{
  text-decoration: underline;
}
.foot-content{
  text-align: center;
}
.foot-nav{
  display: inline-block;
  margin-bottom: 0.7em;
}
.foot-nav a{
  float: left;
  padding: 0 0.35em;
  line-height: 1;
  border-right: 1px solid #fff;
}
.foot-nav a:last-child{
  border-right: none;
}



/*小屏底部*/
.foot-fixed{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color:#fff;
  background:#d94a3f;
  border-top: 1px solid #c1342d;
}
.foot-fixed .col-xs-3{
  padding: 0;
}
.foot-fixed a{
  display: block;
  padding:2px 0;
  text-align: center;
}
.foot-fixed a:hover{
  background:#c1342d;
}
.foot-fixed .foot-icon{
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 20px;
  overflow: hidden;
}
i.foot-phone{
  background: url(../img/sprite-contact.png) -80px -0px no-repeat;
}
i.foot-map{
  background: url(../img/sprite-contact.png) -110px -0px no-repeat;
}
i.foot-sharelink{
  background: url(../img/sprite-contact.png) -140px -0px no-repeat;
}
i.foot-email{
  background: url(../img/sprite-contact.png) -170px -0px no-repeat;
}
@media screen and (max-width: 767px) {
  /*小屏底部fixed导航距离*/
  body{
    padding-bottom: 45px;
  }
}


/*浮动QQ*/
.dock {
	position: fixed;
	right: 0px;
	width: 50px;
	-moz-opacity: 0.7;
	opacity: 0.7;
	z-index: 200;
}

.dock.close {
	z-index: 50;
}

.dock ul.icons {
	position: absolute;
	list-style: none;
	right: 0px;
	padding: 0px;
	width: 50px;
	border: 1px solid #333;
	border-right: none;
	background: #111;
	-moz-border-radius: 10px 0 0 10px;
	-webkit-border-radius: 10px 0 0 10px;
	border-radius: 10px 0 0 10px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}

.dock.close ul.icons {
	right: -70px;
}

.dock ul.icons li i {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	background: url(../images/icons.png) no-repeat;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	z-index: 210;
}

.dock ul.icons li.active i {
	-moz-opacity: 0.4;
	opacity: 0.4;
}

.dock ul.icons li.up i {
	background-position: -63px -150px;
}

.dock ul.icons li.tel i {
	background-position: -62px -108px;
}

.dock ul.icons li.im i {
	background-position: -63px -20px;
}

.dock ul.icons li.wechat i {
	background-position: -59px -66px;
}

.dock ul.icons li.down i {
	background-position: -63px -190px;
}

.dock ul.icons li p {
	display: block;
	position: absolute;
	top: 50px;
	right: -260px;
	padding: 15px 20px;
	height: 120px;
	color: White;
	line-height: 30px;
	border: 1px solid #333;
	border-right: none;
	background: #111;
	-moz-border-radius: 10px 0 0 10px;
	-webkit-border-radius: 10px 0 0 10px;
	border-radius: 10px 0 0 10px;
	-moz-opacity: 0;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all .4s ease-in-out .1s;
	-moz-transition: all .4s ease-in-out .1s;
	-ms-transition: all .4s ease-in-out .1s;
	-o-transition: all .4s ease-in-out .1s;
	transition: all .4s ease-in-out .1s;
	overflow: hidden;
	z-index: 201;
}

.dock ul.icons li.active p {
	right: 50px;
	-moz-opacity: 1;
	opacity: 1;
	filter: alpha(opacity=100);
}

.dock ul.icons li.tel p {
width: 143px;
    height:130px;
    line-height:30px
}

.dock ul.icons li.im p {
	width: 140px;
    height:170px;
    line-height:30px
}

.dock ul.icons li.im p a {
	display: block;
	margin-top: 12px;
	width: 100px;
	height: 35px;
	line-height: 32px;
	color: #00dfb9;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #00dfb9;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}

.dock ul.icons li.im p a:hover {
	color: White;
	background: #0f8773;
	border: 1px solid #0f8773;
}

.dock ul.icons li.wechat p {
	width: 180px;
    height:180px;
    line-height:30px
}

.dock ul.icons li.wechat p img {
	
	border: 2px solid #000;
}

.dock a.switch {
	position: absolute;
	display: block;
	top: 160px;
	right: 11px;
	width: 26px;
	height: 26px;
	background: url(../images/icons.png) no-repeat 0px -640px;
	cursor: pointer;
	-webkit-transition-delay: .15s;
	-moz-transition-delay: .15s;
	-ms-transition-delay: .15s;
	-o-transition-delay: .15s;
	transition-delay: .15s;
}

.dock a.switch.off {
	background-position: -32px -640px;
}
