@charset "utf-8";

header {
  width: 100%;
}
/*................*/
.header {
  padding: 0px 0px;
  max-width: 1920px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: 999;
  position: fixed;
  width: 100%;
  top: 0px;
  background: rgba(0, 0, 0, 0.8);
}
.header .logo img {
  height: 122px;
  padding: 20px 0px;
  width: auto;
  transition: all 0.5s;
}
.header .slogan {
  padding: 20px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}
header .nav {
  padding: 0px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .nav > ul {
  transition: all 0.5s;
}
header .nav > ul > li {
  display: inline-block;
  padding: 0px 20px;
}
header .nav > ul > li > a {
  position: relative;
  display: block;
  font-size: 1.1rem;
  color: #fff;
  padding: 0px 0px 16px;
  line-height: 50px;
  white-space: nowrap;
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  header .nav > ul > li {
    padding: 0px 10px;
  }
}
header .nav>ul>li>a>b{
    display: block;
    height: 3px;
    width:100%;
    background:#0e85c8;
    position: absolute;
    left:0;
    bottom: 0px;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}

header .nav>ul>li:hover a>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}

header .nav > ul > li:hover a,
header .nav > ul > li.active a {
  color: #0e85c8;
}
.header .nav > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.header .nav > ul > li .submenu li:hover a,
header .header.on .nav > ul > li .submenu li:hover a {
  color: #0e85c8;
}
.submenu {
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  left: 0%;
  padding: 40px 0px 40px;
  position: absolute;
  top: calc(100% + 0px);
  z-index: 0;
  height: 0px;
  visibility: hidden;
  overflow: hidden;
  transition: height 0.5s;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.submenu .t {
  font-size: 1.25rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}
.submenu .sub-menu {
  display: flex;
}
.submenu .sub-menu li {
  width: 20%;
  margin-right: 2%;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.5s;
  -moz-transition: opacity 0.4s, -moz-transform 0.5s;
  -ms-transition: opacity 0.4s, -ms-transform 0.5s;
  -o-transition: opacity 0.4s, -o-transform 0.5s;
  transition: opacity 0.4s, transform 0.5s;
  text-align: left;
  display: flex;
  align-items: stretch;
}
.header .nav .submenu .sub-menu li a {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  padding: 10px 0px;
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: block;
  transition: 0.6s;
}
.header .nav > ul > li:hover .submenu li,
.header .nav > ul > li:focus .submenu li {
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.header .nav > ul > li:hover .submenu,
.header .nav > ul > li:focus .submenu {
  height: 200px;
  z-index: 10;
}
/*分享按钮*/
.shareicon {
  color: #fff;
  white-space: nowrap;
  padding-bottom: 16px;
}
.shareicon ul {
  display: flex;
  align-items: center;
}
.shareicon ul li {
  position: relative;
  margin-left: 15px;
}
.shareicon i,
.shareicon a {
  color: #fff;
  transition: all 0.5s;
  font-size: 1.1rem;
}
.shareicon a span {
  font-weight: 600;
}
header .header .shareicon a.weChat .er-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: all 0.3s;
}
header .header .shareicon a.weChat:hover .er-box {
  opacity: 1;
  background: #fff;
  padding: 5px;
  width: 100px;
  height: 100px;
}
.shareicon ul li.lang {
    background: url(../img/lang.png) no-repeat left center;
    padding-left: 25px; 
}
.shareicon ul li.vr{
    background: url(../img/vr.png) no-repeat left center;    
    padding-left: 35px;
}
.header.on .slogan {
  display: none;
}
.header.on .logo img {
  height: 80px;
  padding: 10px 0px;
}
.header.on .nav {
  margin-top: 20px;
}
.header.on .nav > ul > li > a{
  padding: 0px 0px 10px;
}
.header.on .shareicon{
  padding-bottom: 10px;
}
@media (max-width: 992px) {
  .header .logo img {
    height: 50px;
    padding: 15px 0px;
  }
  header .nav > ul {
    display: block;
  }
  header .nav {
    position: absolute;
    left: -100vw;
    top: 100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: #343434;
    z-index: 999;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    padding-top: 20px;
  }
  header .nav.show {
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  header .nav ul li {
    display: block !important;
    padding: 0 20px;
  }
  header .nav ul li a {
    line-height: 45px;
    font-size: 16px;
    padding: 0px 10px;
    border-bottom: 1px solid #f8f8f8;
  }
  .submenu {
    display: none;
  }
  .shareicon {
    padding-top: 10px;
    margin-right: 5%;
  }
  .shareicon a span {
    font-size: 16px;
  }
}
/* banner */
.banner {
  position: relative;
  width: 100%; 
  overflow: hidden;
}
.banner video{
  width: 100%;
  margin: 0px;
  display: block;
}
.banner-cover {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 9;
    background: rgba(0, 0, 0, 0);
}
.banner-cover h5 {
    color: #fff;
    letter-spacing: 30px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    white-space: nowrap;
    transition: 1.5s;
    font-size: 2rem;
    z-index: 6;
}
.banner .banner-txt h3 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 600;
}
.banner .banner-txt h3 span {
  display: block;
  font-size: 38px;
}
@media (max-width: 1299px) {
  .banner .banner-txt h3 {
    font-size: 32px;
  }
  .banner .banner-txt h3 span {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .banner-cover h5 {    
    letter-spacing: 3px;  
    font-size: 1.32rem;
}
}

.common {
  padding-top: 90px;
  padding-bottom: 90px;
}
.commonB {
  margin-bottom: 90px;
}
.title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  margin-bottom: 35px;
}
.title span {
  display: block;
  font-weight: 100;
  font-size: 1.0rem;
}
.more {
  margin-top: 50px;
}
.more a {
  display: block;
  border-radius: 35px;
  font-weight: 600;
  padding: 10px 70px;
  background: #fff;
  color: #314095;
  border: 3px solid #e7e7e7;
  transition: all 0.3s ease-in-out;
}
.more a:hover {
  background: #314095;
  color: #fff;
  border: 3px solid #314095;
  padding: 10px 85px;
}

@media (max-width: 992px) {
  .common {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .more {
    margin-top: 15px;
  }
  .more a {
    padding: 5px 25px;
    font-size: 14px;
  }
  .more a:hover {
    padding: 8px 25px;
  }
}
/* 产品中心 */
.product {
  background: url(../img/product.jpg) no-repeat top center #e4e6e6; 
  position: relative;
  overflow: hidden;
}
.product .swiper-slide h5{
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
}
.product .swiper-slide h5 span {
  font-size: 1.56rem;
  display: block;
}
.product .product-swiper .overview{
  max-width: 1100px;
  margin: 0px auto;
}
.product-thumbs {
  max-width: 500px;
  margin: 0 auto;
}
.product .swiper-slide.swiper-slide-thumb-active h5 {
  color: #314095;
  font-weight: 600;
}
.product .swiper-button-prev,.product .swiper-button-next {
  left: 55px;
  width: 55px;
  height: 55px;
  background: url(../img/wm_button_icon.png) no-repeat;
  background-position: 0 0;
  background-size: 100%;
}
.product .swiper-button-next {
  right: 55px;
  left: auto;
  background-position: 0 -55px;
}
.product .more{
  font-size: 0.85rem;
  background: #314095;
  color: #fff;
  padding: 0.5rem 3rem;
  border-radius: 35px;
  display: inline-block;
  border: 3px solid #314095;
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
}
.product .more:hover,.product .online:hover{
  padding: 0.5rem 3.2rem;
}
.product .online{
  border-radius: 35px;
  font-size: 0.85rem;
  display: inline-block;
  font-weight: 600;
  padding: 0.5rem 3rem;
  background: #fff;
  color: #314095;
  margin-top: 30px;
  margin-left: 15px;
  border: 3px solid #e7e7e7;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) { 
  .product .swiper-slide h5{
    font-size: 1.125rem;
  }
  .product .swiper-slide h5 span{
    font-size: 1.45rem;
  }
}
/*配件*/
.product-accessory{
  background: #fff;
  overflow: hidden;
}
.box-content{
  position: relative;
}
.product-accessory .swiper-button-prev,.ny-activity .swiper-button-prev {
  left: -55px;
  width: 55px;
  height: 55px;
  background: url(../img/wm_button_icon.png) no-repeat;
  background-position: 0 0;
  background-size: 100%;
}
.product-accessory .swiper-button-next,.ny-activity .swiper-button-next{
  right: -55px;
  width: 55px;
  height: 55px;
  background: url(../img/wm_button_icon.png) no-repeat;
  background-position: 0 -55px;
  background-size: 100%;
}

@media (max-width: 991px) { 
  .product-accessory .swiper-button-prev,
  .product .swiper-button-prev {
    left: -15px;
  }
  .product-accessory .swiper-button-next,
  .product .swiper-button-next {
    right: -15px;
  }
  .product-accessory .swiper-button-next,
  .product-accessory .swiper-button-prev,
  .product .swiper-button-next,
  .product .swiper-button-prev {
    transform: scale(0.5);
  }
}
/*关于我们*/
.about {
  background: url(../img/about.jpg) no-repeat center #b3b8bc;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.about .title{
  margin-top: 70px;
}
.about .title span {
  font-weight: 600;
  line-height: 1.1;
  font-size: 3.05rem;
}
.about ul {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about ul li {
  width: 45%;
  background-size: contain;
  transition: all 0.6s;
}
.about .about-txt h4,
.ny-about .about-txt h4 {
  font-weight: 600;
  font-size: 2.1875rem;
}
.about .more {
  margin-bottom: 70px;
}
.about .more a{
  background: #314095;
  color: #fff;
  display: inline-block;
  border: 3px solid #314095;
}

@media (max-width: 992px) {
 
}

/* 移动端调整 */
@media (max-width: 992px) {
  .header .logo img {
    height: 50px;
    padding: 8px 0px;
  }
  .savy-badges {
    display: flex;
    flex-wrap: wrap;
  }
  .proBox .savy-badges ul li {
    padding: 10px 12px 0px 7px;
    line-height: 1.2;
    border-left: 1px solid #7f7f7f;
  }
  .proBox .savy-badges ul li em {
    font-style: normal;
    display: block;
    font-size: 16px;
    font-weight: 600;
  }
  .badges__button .btn-default {
    color: #333;
    background-color: transparent;
    border-color: #231815;
    border-width: 3px;
    padding: 6px 12px;
    border-radius: 25px;
  }
  .badges__button {
    margin-top: -33px;
    margin-left: 166px;
  }
  .application .case-nav li .case-img img {
    width: 17%;
  }
  .application .case-nav li h5 {
    font-size: 18px;
  }
  .title span {
    font-size: 16px;
  }
  .about ul li {
    width: 100%;
    background-size: contain;
    transition: all 0.6s;
  }
  .about .title span {
    font-weight: 600;
    font-size: 25px;
  }
  .about .about-txt h4,
  .ny-about .about-txt h4 {
    font-weight: 600;
    font-size: 25px;
  }
  .footer .foot-tel span {
    font-size: 28px;
    font-weight: 600;
  }
  .shareicon ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .shareicon ul li {
    position: relative;
    margin-left: 39px;
  }
  .header .logo img {
    height: 50px;
    padding: 5px 0px;
  } 
  .header .nav .shareicon ul li {
    width: 100%;
    margin-left: 20px;
    padding: 0px 0px;
  }
  .header .nav .shareicon ul li a {
    width: 100%;
    display: inline-block;    
  }
  .shareicon ul li.lang a{
    padding-left: 25px;
  }
 .shareicon ul li.vr a{
    padding-left: 35px;
  }
  header .header .shareicon a.weChat .er-box{
    position: relative;
    opacity: 1.0;
    height: 80px;
    width: 90px;
    margin: 10px 0px;
  }
  header .header .shareicon a.weChat .er-box img{
    width: 80px;
    height: 80px;
    border: 5px solid #fcfcfc;
  }
  .shareicon i,
  .shareicon a {
    font-size: 20px;
  }
  .search-icon {
    width: 0px;
    height: 0px;
  }
  .shareicon {
    padding-top: 0px;
  }
  .search-icon button {
    position: absolute;
    right: 5px;
    top: 18px;
    border: none;
  }
}
/* 新闻 */
.news{
    background: #fff;
    overflow: hidden;
}
.news-nav{
    float: right;
}
.news-nav li {
    position: relative;
    float: left;
    padding-left: 30px;    
    display: inline-block;
}
.news-nav li:after {
    content: "";
    position: absolute;
    width: 2px;
    background: #595757;
    height: 18px;
    top: 50%;
    left: 15px;
    margin-top: -1px;
}
.news-nav li a{
  font-size: 1.0rem;
}
.news .n-img{
    overflow: hidden;
    position: relative;
}
.news .news-con{
  position: absolute;
  width: 100%;
  color: #fff;
  bottom: 0px;
  padding: 25px;
}
.news .n-img img {    
    width: 100%;    
    transition: all 0.6s;
}
.news .n-img:hover img {
    transform: scale(1.1);
}
.news .news-title{    
    font-size: 1.5rem; 
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;    
    transition: all 0.6s;
    font-weight: 600;
}
.news .news-desc{    
    line-height: 1.4;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;    
    transition: all 0.6s;
}
.news .news-time span{
    display: block;
    font-weight: 600;
    color: #53c2bf;
    font-size: 0.8rem;
}
.news .newslist {
  position: relative;
    border-top: 3px solid #e7e7e7;
}
.news .newslist:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e7e7e7;
  margin-top: 1px;
}
.news .newslist li a{
    border-bottom: 1px solid #e7e7e7;
    padding: 25px 0px;    
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.news .newslist li a span{
    font-weight: 900;
    line-height: 1.1;
    padding: 0px 15px;
    color: #314095;
    font-size: 0.8rem;
}
.news .newslist li a span b{
    display: block;
    font-size: 1.35rem;
}
@media (max-width:991px){ 
    .news .news-con{
        margin-bottom: 10px;
    }
}
