﻿@charset "utf-8";

img{width:100%;}
/* 头部 */
.navTop{
    height: 4rem;
    line-height: 4rem;
    padding: 0 1rem;
    overflow: hidden;
}
.navTop > a{
/*     width:40%; */
    font-size: 0;
    float:left;
}
.navTop > span{
    width:10%;
    text-align: right;
    float:right;
}
.navTop > span > i{
    font-size: 1.5rem;
    color: #0098c5;
    border: 1px solid #0098c5;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 0.3rem;
    width: 1rem;
    height: 1rem;
}
.navTop > a > img{vertical-align: middle;}
.banner{margin-top:3rem;font-size:0;z-index: 10;}

/* 导航栏 */
.navList{
    position: fixed;
    top: 3rem;
    left: 0;
    z-index: 3000;
    background-color: #ffffffeb;
    width: 100%;
    height: 100%;
}
/* 伸缩菜单 */
.cd-section {
  padding: 2em;
  margin-top: 5em;
  text-align: center;
}
.no-touch .cd-bouncy-nav-trigger:hover {background: #e0a36f;}
.cd-bouncy-nav-modal {
  position: fixed;
  z-index: 8000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 35, 37, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0.6s, visibility 0s 0.9s;
  -moz-transition: opacity 0.3s 0.6s, visibility 0s 0.9s;
  transition: opacity 0.3s 0.6s, visibility 0s 0.9s;
}
.cd-bouncy-nav-modal.fade-in {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.1s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.1s 0s, visibility 0s 0s;
  transition: opacity 0.1s 0s, visibility 0s 0s;
}
.cd-bouncy-nav-modal .cd-close {
  display: block;
  position: fixed;
  top: 20px;
  right: 5%;
  width: 44px;
  height: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url("../images/close.svg") no-repeat center center;
  -webkit-transform: scale(0) translateZ(0);
  -moz-transform: scale(0) translateZ(0);
  -ms-transform: scale(0) translateZ(0);
  -o-transform: scale(0) translateZ(0);
  transform: scale(0) translateZ(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s;
  transition: transform 0.3s 0s, visibility 0s 0.3s;
}
.cd-bouncy-nav-modal.fade-in .cd-close {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0.3s 0s;
}
@media only screen and (min-width: 1170px) {
  .cd-bouncy-nav-modal .cd-close {
    top: 60px;
  }
}
.cd-bouncy-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 300px;
}
.cd-bouncy-nav li {
  width: 50%;
  float: left;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateY(100vh);
  -moz-transform: translateY(100vh);
  -ms-transform: translateY(100vh);
  -o-transform: translateY(100vh);
  transform: translateY(100vh);
  text-align: center;
}
.is-visible .cd-bouncy-nav li {
  /* used to assign a tranlsateY value when the animation is over */
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.fade-in .cd-bouncy-nav li {
  -webkit-animation: cd-move-in 0.4s;
  -moz-animation: cd-move-in 0.4s;
  animation: cd-move-in 0.4s;
}
.fade-out .cd-bouncy-nav li {
  -webkit-animation: cd-move-out 0.4s;
  -moz-animation: cd-move-out 0.4s;
  animation: cd-move-out 0.4s;
}
.fade-in .cd-bouncy-nav li, .fade-out .cd-bouncy-nav li {
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fade-in .cd-bouncy-nav li:nth-of-type(2), .fade-out .cd-bouncy-nav li:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.fade-in .cd-bouncy-nav li:nth-of-type(3), .fade-out .cd-bouncy-nav li:nth-of-type(3) {
  -webkit-animation-delay: 0.15s;
  -moz-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.fade-in .cd-bouncy-nav li:nth-of-type(4), .fade-out .cd-bouncy-nav li:nth-of-type(4) {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.fade-in .cd-bouncy-nav li:nth-of-type(5), .fade-out .cd-bouncy-nav li:nth-of-type(5) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.fade-in .cd-bouncy-nav li:nth-of-type(6), .fade-out .cd-bouncy-nav li:nth-of-type(6) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.cd-bouncy-nav a {
    display: inline-block;
    min-width: 80px;
    position: relative;
    padding: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
}
.cd-bouncy-nav a > i{
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    line-height: 80px;
    text-align: center;
    font-size: 30px;
    color: #fff;
    background-color: #0098c5;
    padding: 0;
    margin: 0;
    margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .cd-bouncy-nav {
    max-width: 450px;
  }
  .cd-bouncy-nav li {
    width: 33.33%;
    float: left;
  }
  .fade-in .cd-bouncy-nav li:nth-of-type(1), .fade-out .cd-bouncy-nav li:nth-of-type(1) {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
  .fade-in .cd-bouncy-nav li:nth-of-type(2), .fade-out .cd-bouncy-nav li:nth-of-type(2) {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s;
  }
  .fade-in .cd-bouncy-nav li:nth-of-type(4), .fade-out .cd-bouncy-nav li:nth-of-type(4) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  .fade-in .cd-bouncy-nav li:nth-of-type(5), .fade-out .cd-bouncy-nav li:nth-of-type(5) {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    animation-delay: 0.25s;
  }
  .cd-bouncy-nav a {
    margin-bottom: 50px;
  }
}

@-webkit-keyframes cd-move-in {
  0% {
    -webkit-transform: translateY(100vh);
  }
  65% {
    -webkit-transform: translateY(-1.5vh);
  }
  100% {
    -webkit-transform: translateY(0vh);
  }
}
@-moz-keyframes cd-move-in {
  0% {
    -moz-transform: translateY(100vh);
  }
  65% {
    -moz-transform: translateY(-1.5vh);
  }
  100% {
    -moz-transform: translateY(0vh);
  }
}
@keyframes cd-move-in {
  0% {
    -webkit-transform: translateY(100vh);
    -moz-transform: translateY(100vh);
    -ms-transform: translateY(100vh);
    -o-transform: translateY(100vh);
    transform: translateY(100vh);
  }
  65% {
    -webkit-transform: translateY(-1.5vh);
    -moz-transform: translateY(-1.5vh);
    -ms-transform: translateY(-1.5vh);
    -o-transform: translateY(-1.5vh);
    transform: translateY(-1.5vh);
  }
  100% {
    -webkit-transform: translateY(0vh);
    -moz-transform: translateY(0vh);
    -ms-transform: translateY(0vh);
    -o-transform: translateY(0vh);
    transform: translateY(0vh);
  }
}
@-webkit-keyframes cd-move-out {
  0% {
    -webkit-transform: translateY(0vh);
  }
  100% {
    -webkit-transform: translateY(-100vh);
  }
}
@-moz-keyframes cd-move-out {
  0% {
    -moz-transform: translateY(0vh);
  }
  100% {
    -moz-transform: translateY(-100vh);
  }
}
@keyframes cd-move-out {
  0% {
    -webkit-transform: translateY(0vh);
    -moz-transform: translateY(0vh);
    -ms-transform: translateY(0vh);
    -o-transform: translateY(0vh);
    transform: translateY(0vh);
  }
  100% {
    -webkit-transform: translateY(-100vh);
    -moz-transform: translateY(-100vh);
    -ms-transform: translateY(-100vh);
    -o-transform: translateY(-100vh);
    transform: translateY(-100vh);
  }
}
#toTop{
  flex: 1;
}


/* banner幻灯片 */
.swiper-container {
  width: 100%;
  height: 100%;
}

/* 首页产品展示 */
.swiper-pagination_g{
    top: 130px;
    color: #888;
    font-family: 宋体;
}
.swiper-container2 {
  width: 100%;
  height: 100%;
}
.swiper-container_g .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 88% !important;
    display: block;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
}
.swiper-button-next, .swiper-button-prev {
    display: block;
    width: 40px;
    height: 30px;
    background-size: 30px auto !important;
    top: 140px;
}
.swiper-button-next.swiper-button-next_g {
    background: url(../images/in-cpj2.png) center center no-repeat;
    right:5%;
    top: 30%;
}
.swiper-button-prev.swiper-button-prev_g {
    background: url(../images/in-cpj.png) center center no-repeat;
    left:5%;
    top: 30%;
}
.topBox{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 1px 1px 1px #f5f5f5;
    -webkit-box-shadow: 1px 1px 1px #f5f5f5;
    -moz-box-shadow: 1px 1px 1px #f5f5f5;
    -ms-box-shadow: 1px 1px 1px #f5f5f5;
    -o-box-shadow: 1px 1px 1px #f5f5f5;
    background-color:  #fff;
    z-index: 100;
}
.bg{background-color:#f6f6f6;}
.productBox{
    background: #fff;
    overflow: hidden;
    padding: 1rem;
}
.productList{
    padding: 1rem 0;
    position:relative;
}
.productList > h5{
    text-align: center;
    line-height: 2rem;
    font-size:1.2rem;
    color: #000;
    font-weight: normal;
}
.productList > p{
    font-size: 0.8rem;
    color: #7c7c7c;
    line-height: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    position: relative;
    height: 2.5rem;
    overflow: hidden;
}
.productList > b{
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    bottom: 18px;
    width: 24px;
    height: 2px;
    background-color: #000;
}
.productList img {
   height:15rem;
}
.productWrap{
    display: block;
    height:28rem;
}
.in-cpk0{
    display: block;
    padding: 20px 10px;
    position: relative;
    overflow: hidden;
}
.in-cpkm {
    color:#333;
    display: block;
    position: relative;
    z-index: 6;
}
.in-cpkbg {
    display: block;
    position: absolute;
    background: #fff;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
}
.in-cptu{
    display: block;
    width: 98%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    -ms-box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.in-cptu a {
    display: block;
}
.in-cptu img {
    display: block;
    width: 100%;
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    height:15%;
}


/* 首页-新闻 */
.bgContent{
    background-color: #fff;
    padding: 1rem;
    margin-bottom:1rem;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    overflow:hidden;
}
.TopTitle{
    font-weight: normal;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 6px;
    line-height: 40px;
    font-size: 22px;
    color: #000;
}
.aboutContent > p{
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4rem;
    text-align: justify;
}
.aboutusTop{
    height: 3rem;
    line-height: 3rem;
    border-top: 1px solid #efefef;
    margin-top: 1rem;
    overflow: hidden;
}
.aboutusTop > span{
    color:#bdbdbd;
    float:left;
}
.aboutusTop  i{
    font-size: 1.8rem;
    color: #999;
    float: right;
}
/* 首页新闻 */
.newsIndexList > li{
    border-bottom: 1px solid #f1f1f1;
    padding: 1rem 0;
    margin: 1rem 0;
    padding-top: 0;
}
.newsIndexList > li:nth-last-child(1){
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}
.newsIndexList > li  > a  , .newsIndexList span{ display: block;}
.newsDes{
    color: #333;
    display: block;
}
.newsDes strong{
    font-size: 2rem;
}
.newsDes i{
    color: #999;
    font-size: 0.9rem;
    padding-left: 0.5rem;
}
.newsDes h6 , .newsDes h6 a{
    font-size: 0.9rem;
    color: #444;
    font-weight: normal;
    margin-top: 0.5rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.newsDes p , .newsDes p a{
    font-size: 0.7rem;
    color: #888;
    line-height: 1.3rem;
    margin-top: 0.4rem;
    max-height: 2.5rem;
    overflow: hidden;
}
.newsTop{
    height: 3rem;
    line-height: 3rem;
    border-bottom: 1px solid #efefef;
    border-top: none;
    margin-bottom: 1rem;
    margin-top: 0;
    overflow: hidden;
}
.newsTop > span {
    color: #555;
    float: left;
}
.newsTop i {
    font-size: 1.2rem;
    color: #999;
    float: right;
}
.pb50{
    padding-bottom: 3rem;
}

/* footer */
.footer{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height: 3.5rem;
    line-height:3.5rem;
    background-color:#fff;
    z-index:50;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    -ms-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.footerNav{
    display:flex;
}
.footerNav  a{
    color:#333;
    font-size: 0.8rem;
    text-align: center;
    border-right: 1px solid #ececec;
    flex:2;
}
.footerNav  a > i{color: #999;}
.footerNav  span{
    display:inline-block;
    padding-left: 0.5rem;
}

/* 加载更多 */
.more{
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.8rem;
}
.pull_icon{
  width: 20px;
  height: 20px;
  background-image: url('../images/pull.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  transition: all .5s;
}
.more span{
  padding-left: .5rem;
}
.more .flip{
  transform: rotate(180deg);
}
.loading{
  background-image: url('../images/loading.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
.more .loading{
  -webkit-transform: rotate(0deg) translateZ(0);
  -webkit-transition-duration: 0;
  -webkit-animation-name: loading;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

 .tipInfo{
    width: 16rem;
    height: auto;
    background-color: #666;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -8rem;
    margin-top: -27px;
    z-index: 2000;
    color: #fff;
    text-align: center;
    border-radius: 0.5rem;
    line-height: 30px;
    padding: 20px 10px;
    display:none;
 }
.tipInfo > p {  font-size: 1rem; }





/* rem */
// html {
//   font-size: 62.5%
// }

// @media only screen and (min-width: 481px) {
//   html {
//     font-size:94%!important
//   }
// }

// @media only screen and (min-width: 561px) {
//   html {
//     font-size:109%!important
//   }
// }

// @media only screen and (min-width: 641px) {
//   html {
//     font-size:125%!important
//   }
// }