@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%;
}

.header.on {
  background-color: #fff;
}

.header .logo img {
  height: 100px;
  padding: 25px 0px;
  width: auto;
  transition: all 0.5s;
}

.header .logo img.pc-img {
  display: inline-block;
}

.header .logo img.mob-img {
  display: none;
}

.header.on .logo img.pc-img {
  display: none;
}

.header.on .logo img.mob-img {
  display: block;
}

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 18px;
  position: relative;
}

.header .nav>ul>li>a {
  position: relative;
  display: block;
  font-size: 1.125rem;
  padding: 0px 0px 0px;
  line-height: 102px;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s;
}

.header.on .nav>ul>li>a {
  color: #181818;
}
.header.on .nav>ul>li.active>a {
  color: #1a33aa;
}

@media (max-width: 1560px) {
  header .nav>ul>li {
    padding: 0px 12px;
  }
}

@media (max-width: 1440px) {
  header .nav>ul>li {
    padding: 0px 5px;  
  }
  .header .nav>ul>li>a{
    font-size: 1.025rem;
  }
}

@media (max-width: 1280px) {

  .header .nav>ul>li>a {
    font-size: 1.0rem;
    line-height: 80px;
  }

  .header .logo img {
    height: 80px;
    padding: 20px 0px;
  }
}

header .nav>ul>li:hover a,
header .nav>ul>li.active a {
  font-weight: 700;
}
.sub-menu {
    width: 100%;
    left: 50%;
    margin-left: -50%;
    position: absolute;
    top: 100%;
    z-index: 0;
    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px;
    opacity: 0;
    visibility: hidden;
}
.header .nav>ul>li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header .nav>ul>li .sub-menu li:hover a,
header .header.on .nav>ul>li .sub-menu li:hover a {
  color: #fff;
  background-color: #005ca9;
}
.sub-menu li {
  width: 150%;
  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;
}
.sub-menu li a {
  font-size: 0.95rem;
  line-height: 1.2;
  padding: 15px 10px;
  width: 100%;
  text-align: center;
  background-color: #fff; 
  border-bottom: 1px solid #efefef;
  display: block;
  transition: 0.6s;
}

.header .nav>ul>li:hover .sub-menu li,
.header .nav>ul>li:focus .sub-menu li {
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.header .nav>ul>li:hover .sub-menu,
.header .nav>ul>li:focus .sub-menu {
  height: 200px;
  z-index: 10;
}

/*分享按钮*/
.shareicon {
  white-space: nowrap;
}

.shareicon ul {
  display: flex;
  align-items: center;
}

.shareicon ul li {
  position: relative;
  margin-left: 15px;
}

.shareicon i,
.shareicon a {
  transition: all 0.5s;
  font-size: 1.125rem;
  color: #fff;
}

.header.on .shareicon i,
.header.on .shareicon a {
  color: #1a33aa;
}

.shareicon ul li span {
  font-weight: 900;
}

.shareicon ul li.weChat .er-box {
  position: absolute;
  top: 100%;
  margin-left: -50px;
  width: 0px;
  height: 0px;
  opacity: 0.0;
  background: #fff;
  padding: 5px;
  transition: all 0.3s;
}

.shareicon ul li.weChat:hover .er-box {
  opacity: 1.0;
  width: 100px;
  height: 100px;
}
@media (max-width: 1280px) {
  .shareicon ul li {
    margin-left: 10px;
  }
  .shareicon ul li:first-child{
    display: none;
  }
}
@media (max-width: 992px) {
  header{
    height: 50px;
    background: #fff;
  }
  .header .logo img {
    height: 50px;
    padding: 8px 0px;
  }
  .header .logo img.pc-img{
    display: none;
  }
  .header .logo img.mob-img{
    display: block;
  }
  header .nav>ul {
    display: block;
    width: 100%;
  }
  header .nav {
    position: absolute;
    left: -100vw;
    top: 100%;
    width: 100%;
    height: calc(100vh - 50px);
    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;
    display: block;
    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 #4d4d4d;
    color: #fff;
  }
  .header.on .nav>ul>li>a {
    color: #fff;
  }
  .header.on .nav>ul>li.active>a{
    color: #fff;
  }
  .sub-menu {
    display: none;
  }
  .shareicon {
    /* padding-top: 10px; */
    margin-right: 20px;
  }

  .header.on .shareicon a,
  .header.on .shareicon i {
    color: #fff;
  }

  .shareicon a span {
    font-size: 16px;
  }
  .shareicon ul li.weChat:hover .er-box{
    z-index: 3;top: 0;
    margin: 0;left: 40px;
  }
}

/* banner */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}
.banner-video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.banner .banner-txt{  
    width:100%;    
    position: absolute;
    top: 50%;
    left: 0%;
    line-height: 1.4;
    transform: translate(-50%, -50%);
    z-index: 9;
    color: #fff;
    font-size: 2.25rem;
}
.banner .banner-txt h3{ 
  font-size: 1.5rem; 
  line-height: 1.4;   
}
.banner .banner-txt h3 span{   
  font-weight: 500;   
  font-size: 5.625rem;   
  display: block;
}
@media(max-width:1299px){
    .banner .banner-txt h3{
        font-size: 1.35rem;
    }
    .banner .banner-txt h3 span{
        font-size: 3.5rem;       
    }
}
@media(max-width:991px){    
  .banner .banner-txt{
    width: 100%;
    font-size: 1.125rem;
  } 
  .banner .banner-txt h3{
    font-size: 1.0rem;
  }  
  .banner .banner-txt h3 span{ 
    font-size: 1.8rem;
    width: 100%;
  }     
}

.common {
  padding-top: 8.2rem;
  padding-bottom: 8.2rem;
}
.commonT {
  padding-top: 8.2rem;
}
.title {
  font-size: 1.875rem;
  line-height: 1.2;
  position: relative;
  margin-bottom: 3.0rem;
  font-weight: 600;
}
.title span {
  color: #005ca9;
}
.title .more {
  padding-right: 0rem;
  float: right;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.title .more:hover {
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .common {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .commonT {
    padding-top: 30px;
  }
  .title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 30px;
  }
  .title .more {
    font-size: 1.0rem;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 1.25rem;
  }
}
/* 产品 */
.product {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.product .title{
  margin-bottom: .0rem;
}
.product .product-box{
  margin-left: -20px;
  margin-right: -20px;
}
.product .swiper-slide{
  transition: transform 1s cubic-bezier(.38,0,0,1), box-shadow .5s cubic-bezier(.38,0,0,1), opacity .8s cubic-bezier(.38,0,0,1);
  margin-bottom: 8.2rem;
  margin-top: 3.5rem;
  padding-left: 20px;
  padding-right: 20px;
}
.product .nav-img {
  background-color: #f0f0f0;
  border-radius: .6rem;
  padding: 3rem 3rem;
  transition: transform 1s cubic-bezier(.38,0,0,1), box-shadow .5s cubic-bezier(.38,0,0,1), opacity .8s cubic-bezier(.38,0,0,1);
  overflow: hidden;
  position: relative;
}
.product .nav-num {
  z-index: 4;
  transition: color .3s cubic-bezier(.38,0,0,1);
  position: absolute;
  top: 1.5rem;    
  width: calc(100% - 6rem);
}
.product .nav-num span {
  font-size: 2.5rem;
  font-weight: 600;
}
.product .nav-logo{
  height: 15px;
}
.product h5 {
  width: 100%;
  text-align: center;
  z-index: 4;
  font-size: 1.5rem;
  padding: 0 .5rem;
  transition: color .3s cubic-bezier(.38,0,0,1);
  position: absolute;
  bottom: 3rem;
  left: 0;
}
.nav-more{
  opacity: 0;
  width: 100%;
  text-align: center;  
  transition: transform .7s cubic-bezier(.38,0,0,1), opacity .5s cubic-bezier(.38,0,0,1);
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(.2rem);
}
.nav-more a{
  display: inline-block;
  padding: 0.45rem 1.5rem;
  border-radius: 100%;
  color: #fff;
  background-color: #005ca9;
  font-size: 2.0rem;
  transition: all .3s cubic-bezier(.38,0,0,1);
}
.product .swiper-slide:hover .nav-more {
  opacity: 1;
  transform: translateY(-3.5rem); 
}
.product .nav-con{
  opacity: 0;
  width: 100%;
  text-align: center;
  padding: 2.3rem 4rem;
  transition: transform .7s cubic-bezier(.38,0,0,1), opacity .5s cubic-bezier(.38,0,0,1);
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(.2rem);
}
.product .swiper-slide:hover .nav-img {
  transform: translateY(-1.5rem);
  box-shadow: 0 .6rem 1.4rem rgba(0, 0, 0, .5);
  background-color: #fff;
}
.product .swiper-slide:hover .nav-con {
  opacity: 1;
  transform: translate(0, 0);
}

/* 重点产品 */
.key-products {
  background: url(../img/product.jpg) no-repeat left center #fff;
  position: relative;
  overflow: hidden;
}
.key-products .key-tab li{
  width: 100%;
}
.key-products .key-tab li a{  
  display: block;
  background: #fff;
  padding: 1.68rem 2rem;
  border-radius: 1.0rem;
  font-size: 1.125rem;
  transition: all 0.6s;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
.key-products .key-tab li a i{
  float: right;
  font-size: 1.6rem;
  opacity: 0;
}
.key-products .key-tab li a.active{  
  background: #005ca9;
  color: #fff;
}
.key-products .key-tab li a.active i{
  opacity: 1.0;
}
.key-products .key-box{
  position: relative;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.key-products .key-box .swiper-slide{
  border-radius: 0.6rem;
  overflow: hidden;
}
.key-products .key-box .swiper-slide img{
  width: 100%;
}
.key-products  h5{
  background: #005ca9;
  padding: 2.0rem 2rem;
  border-radius: 1.0rem;
  font-size: 1.125rem;
  color: #fff;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  margin-top: 2.6rem;
}
.key-products  h5 span{
  float: right;
}
@media (max-width:1360px) {
  .key-products .key-tab li a{
    padding: 1.35rem 2rem;
  }
}
@media (max-width:992px) {
  .key-products .key-tab li{
    width: 48%;
  }
  .key-products .key-tab li a{
    padding: 0.8rem 1.0rem;
  }
  .key-products .key-box{
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .key-products  h5{
    margin-left: 0rem;
    margin-right: 0rem;
    padding: 0.8rem 1.0rem;
    margin-top: 1.0rem;
  }
}

/* 软件系统 */
.system {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.system .thumbs-box{
  width: 70%;
}
.system .thumbs .swiper-slide span{
  padding: 12px 0.5rem;
  display: block;
  text-align: center;
  background: #efefef;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 1.0rem;
  transition: all 0.6s;
  cursor: pointer;
  white-space: nowrap;
}
.system .thumbs .swiper-slide.swiper-slide-thumb-active span{
  color: #fff;
  background: #005ca9;
  border: 1px solid #005ca9;
}
@media (max-width:1360px) {
  .system .thumbs .swiper-slide span{
    padding: 0.8rem 1.0rem;
  }
}
@media (max-width:992px) {
  .system .thumbs-box{
    width: 100%;
  }
}

.product .swiper-button-prev,
.product .swiper-button-next,
.key-products .swiper-button-prev,
.key-products .swiper-button-next,
.partner .swiper-button-prev,
.partner .swiper-button-next,
.ny-honor .swiper-button-prev,
.ny-honor .swiper-button-next,
.g-lc .swiper-button-prev,
.g-lc .swiper-button-next {
  left: -25px;
  width: 50px;
  height: 50px;
  opacity: 1.0;
  background-color: rgba(0,0,0,0.5);    
  background-image: url(../img/l.png);
  background-size: 22%;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0.5rem 0.5rem;
  border-radius: 100%;
  transition: all .4s ease-in-out;
}
.product .swiper-button-prev{
  left: 0px;
}
.product .swiper-button-next,
.key-products .swiper-button-next,
.partner .swiper-button-next,
.ny-honor .swiper-button-next,
.g-lc .swiper-button-next {
  background-image: url(../img/r.png);
  left: auto;
  right: -25px;
}
.product .swiper-button-next{
   right: 0px;
}
.product .swiper-button-prev:hover,
.product .swiper-button-next:hover,
.key-products .swiper-button-prev:hover,
.key-products .swiper-button-next:hover,
.partner .swiper-button-prev:hover,
.partner .swiper-button-next:hover,
.ny-honor .swiper-button-prev:hover,
.ny-honor .swiper-button-next:hover,
.g-lc .swiper-button-prev:hover,
.g-lc .swiper-button-next:hover {  
  background-image: url(../img/l-hover.png);
  background-color: rgba(0,0,0,0.55);
}
.product .swiper-button-next:hover,
.key-products .swiper-button-next:hover, 
.partner .swiper-button-next:hover,
.ny-honor .swiper-button-next:hover,
.g-lc .swiper-button-next:hover {
  background-image: url(../img/r-hover.png);
}
@media (max-width: 998px) { 
  .product .swiper-button-prev,
  .product .swiper-button-next,
  .key-products .swiper-button-prev,
  .key-products .swiper-button-next,
  .partner .swiper-button-prev,
  .partner .swiper-button-next,
  .ny-honor .swiper-button-prev,
  .ny-honor .swiper-button-next,
  .g-lc .swiper-button-prev,
  .g-lc .swiper-button-next {
    width: 30px;
    height: 30px;
    padding: 0px ;
    left: -20px;
  }
  .product .swiper-button-prev,
  .key-products .swiper-button-prev,
  .partner .swiper-button-prev,
  .ny-honor .swiper-button-prev,
  .g-lc .swiper-button-prev {
    left: 0;
  }  
  .product .swiper-button-next,
  .key-products .swiper-button-next,
  .partner .swiper-button-next,
  .ny-honor .swiper-button-next,
  .g-lc .swiper-button-next{
    left: auto;
    right: 0;
  } 
}


/*关于我们*/
.about {
  background: url(../img/about.jpg) no-repeat top center #fff;
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.about .title span,.key-products .title,.key-products .title span,.key-products .title .more{
  color: #fff;
}
.about .about-box {
  padding-top: 3rem;
  padding-bottom: 36rem;
}
.about .about-txt{
  width: 43%;
}
.about .about-img{
  width: 40%;
}
.about .about-txt h5 {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 1360px) {  
  .about .about-txt h5 {
    font-size: 1.85rem;
  }
}
@media (max-width: 1280px) {
  .about .about-txt,
  .about .about-img{
    width: 100%;
  }
  .about .about-txt h5 {
    font-size: 1.6rem;
  }
}
@media (max-width: 992px) {  
  .about .about-box{
    width: 100%;
  }
  .about .about-txt h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

/* 移动端调整 */
@media (max-width: 992px) {
  .about ul li {
    width: 100%;
    background-size: contain;
    transition: all 0.6s;
  }
  .shareicon ul {
    flex-wrap: wrap;
  }
  .shareicon ul li {
    position: relative;
    margin-left: 39px;
  }
  .header .nav .shareicon ul li {
    width: 100%;
    margin-left: 20px;
    padding: 0px 0px;
    border-top: 1px solid #4d4d4d;
  } 
  .header .nav .shareicon ul li a {
    width: 100%;
    display: inline-block;
  }
}
/* 新闻 */
.news {
  background: #efefef;
  overflow: hidden;
}
.about .about-nav li,.news-nav li {
  position: relative;
  float: left;
  padding-left: 20px;
  display: inline-block;
}
.about-nav li a,.news-nav li a {
  display: block;
  font-size: 1.0rem;
  padding: 0.5rem 3rem;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid #fff;
}
.about-nav li a {  
  background: transparent;
  color: #fff;
}
.about-nav li a:hover,.news-nav li a:hover {
  border: 1px solid #005ca9;
  color: #fff;
  background: #005ca9;
}
/* 新闻资讯 */
.new-con{
  position: relative;
  overflow: hidden;
  border-radius: 0.6rem;
  background-color: #fff;
  transition: all 0.6s;
}
.new-con img{
  transition: all 0.6s;
  width: 100%;
}
.new-con:hover img{
  transform: scale(1.05);
}
.new-con .news-cover{
  width: 100%;    
  padding: 2.5rem;
}
.new-con .news-time{
  color: #c7c7c7;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 15px;    
}
.new-con .news-time span{
    display: block;
    font-size: 1.0rem;
}
.new-con .news-title{    
    font-size: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-overflow: ellipsis;
}
.new-con:hover{ 
  background-color: #fff;   
  box-shadow: 5px 5px 16px 7px rgba(0,0,0,.2);
}
.new-con:hover .news-time{
  color: #005ca9;
}
.new-con:hover .news-time span{
  color: #009fe0;
}
@media (max-width:992px) {
  .new-con .news-title{
    font-size: 1.125rem;
  }
}
/* 合作伙伴 */
.partner{
  /* background: url(../img/partner.jpg) no-repeat top 2.5rem center #fff; */
  background-color: #fff;
  overflow: hidden;
}
.partner .partner-txt{
  margin-bottom: 5rem;
}
.partner-box{
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6rem;
  padding: 3.5rem 2.5rem;
  box-shadow: -2px 3px 20px 10px rgba(0, 0, 0, 0.10);
}
.partner .swiper-container-free-mode>.swiper-wrapper{
  -webkit-transition-timing-function: linear!important;
  -o-transition-timing-function: linear!important;
  transition-timing-function: linear!important;
}
@media (max-width:992px) {
  .partner-box {
    padding: 1.5rem 1.5rem;
    box-shadow: -2px 3px 10px 5px rgba(0, 0, 0, 0.10);
  }
}