/* banner */

.banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.banner .swiper-container {
  overflow: hidden;
  margin: 0 auto;

}

.banner .swiper-slide {
  height: 100%;
  overflow: hidden;
  position: relative;
}


.banner .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
}

.banner .swiper-slide img {
  height: 100%;
  display: block;
  transition: 1s linear 2s;
  transform: scale(1, 1);
  object-fit: cover;
}

.banner .swiper-slide-active img,
.banner .swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1.05, 1.05);
}



.banner .swiper-banner-next {
  position: absolute;
  width: 0.52rem;
  height: 0.93rem;
  background: url(../images/bannerright.png) no-repeat center;
  background-size: 100%;
  right: 2.5%;
  top: 50%;
  z-index: 5;
  cursor: pointer;
}

.banner .swiper-banner-prev {
  position: absolute;
  width: 0.52rem;
  height: 0.93rem;
  background: url(../images/bannerleft.png) no-repeat center;
  background-size: 100%;
  left: 2.5%;
  top: 50%;
  z-index: 5;
  cursor: pointer;
}




.swiper-button-prev::after, .swiper-container-rtl .swiper-button-next::after {
  content: 'prev';
  display: none;

}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
  display: none;
}




.banner .headerht{
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;


}

.banner .headerht span{
  width: 0.34rem;
  height: 0.69rem;
  position: relative;
  z-index: 5;
  display: block;
  margin: 0 auto;
  background: url(../images/mouse.png) no-repeat  center;
  background-size: 100%;
  animation: ht 1s infinite;
    -moz-animation: ht 1s infinite;
    /* Firefox */

    -webkit-animation: ht 1s infinite;
    /* Safari and Chrome */

    -o-animation: ht 1s infinite;
    /* Opera */

    cursor: pointer;
}

@keyframes ht {
  0% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
  50% {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
 }
  100% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
 }
  @-moz-keyframes ht {
  0% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
  50% {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
 }
  100% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
 }
  @-webkit-keyframes ht {
  0% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
  50% {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
 }
  100% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
 }
  @-o-keyframes ht {
  0% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
  50% {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
 }
  100% {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
 }
 }
 




@media (max-width: 980px) {

  .banner .swiper-slide img {
    height: 100%;
    width: 100%;
  }

  .banner .swiper-banner-next {
    position: absolute;
    width: 0.42rem;
    height: 0.83rem;
    right: 4%;
    top: 40%;
  }
  
  .banner .swiper-banner-prev {
    position: absolute;
    width: 0.42rem;
    height: 0.83rem;
    left: 4%;
    top: 40%;
  }
  
  .banner .headerht{
    display: none;
  }
  

}




/* title */

.title{
  overflow: hidden;

}

.title h3{
  float: left;
  font-size: 0.7rem;
  color: #173267;
  text-transform: capitalize;

}

.title .more{
  float: right;
  display: block;
  background: url(../images/more.png) no-repeat left center;
  background-size: contain;
  line-height: 0.26rem;
  padding-left: 0.42rem;
  margin-top: 0.17rem;
}

.title .more i{
  display: block;
  font-size: 0.16rem;
  color: #173267;
  text-transform: capitalize;
  text-decoration: underline;
}


@media (max-width: 980px) {

  
  .title h3{
    float: left;
    font-size: 0.42rem;
    line-height: 0.5rem;
  }
  
  .title .more{
    float: right;
    display: block;
    background: url(../images/more.png) no-repeat left center;
    background-size: contain;
    line-height: 0.36rem;
    padding-left: 0.6rem;
    margin-top: 0.15rem;
  }
  
  .title .more i{
    display: block;
    font-size: 0.28rem;
  }

}

/* news */

.newsbg{
  width: 100%;
  margin: 0 auto;
  background: url(../images/newsbg.jpg) no-repeat bottom center;
  background-size: cover;
  padding-bottom: 1.05rem;
  overflow: hidden;

}


.newsbg .news{
  margin: 0 auto;
  padding-top: 0.75rem;
}

.newsbg .news .news_left{
  float: left;
  width: 67%;
}


.newsbg .news .news_left .newsbox{
  margin-top: 0.4rem;
}


.newsbg .news .news_left .newsbox .newsnr{
  float: left;
  width: 66%;

}

.newsbg .news .news_left .newsbox .newsnr .pic{
  position: relative;
  width: 100%;
  padding-top: 56%;
  overflow: hidden;

}


.newsbg .news .news_left .newsbox .newsnr .pic img{
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}


.newsbg .news .news_left .newsbox .newsnr .txt{
  margin: 0 auto;

}

.newsbg .news .news_left .newsbox .newsnr .txt span{
  display: block;
  width: 1.4rem;
  height: 0.35rem;
  line-height: 0.35rem;
  background: #1a3366;
  text-align: center;
  font-size: 0.18rem;
  color: #f5f5f5;
  margin: -0.17rem 0 0 0.4rem;
  position: relative;
  z-index: 5;
}

.newsbg .news .news_left .newsbox .newsnr .txt a{
  display: block;
  font-size: 0.24rem;
  color: #333;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  margin: 0.35rem 0 0.2rem 0;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.newsbg .news .news_left .newsbox .newsnr .txt p{
  font-size: 0.18rem;
  color: #666666;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 0.26rem;
  height: 0.52rem;
  overflow: hidden;
  display: -webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical; 
}

.newsbg .news .news_left .newsbox .newslist{
  float: right;
  width: 30%;
}

.newsbg .news .news_left .newsbox .newslist ul li{
  width: 100%;
  margin-bottom: 0.45rem;

}

.newsbg .news .news_left .newsbox .newslist ul li .pic{
  position: relative;
  width: 100%;
  padding-top: 56%;
  overflow: hidden;
}

.newsbg .news .news_left .newsbox .newslist ul li .pic img{
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.newsbg .news .news_left .newsbox .newslist ul li .txt{
  margin: 0 auto;
  
}

.newsbg .news .news_left .newsbox .newslist ul li .txt span{
  display: block;
  width: 1.4rem;
  height: 0.35rem;
  line-height: 0.35rem;
  background: #1384e2;
  text-align: center;
  font-size: 0.18rem;
  color: #f5f5f5;
  margin: -0.17rem 0 0 0.2rem;
  position: relative;
  z-index: 5;
}

.newsbg .news .news_left .newsbox .newslist ul li .txt a{
  display: block;
  font-size: 0.2rem;
  color: #333;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  margin: 0.23rem 0 0rem 0;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}





.newsbg .news .Events{
  float: right;
  width: 28.5%;
}

.newsbg .news .Events ul{
  margin-top: 0.4rem;
}

.newsbg .news .Events ul li{
  overflow: hidden;
  margin-bottom: 0.42rem;

}

.newsbg .news .Events ul li span{
  display: block;
  float: left;
  font-size: 0.4rem;
  color: #173267;
}

.newsbg .news .Events ul li span i{
  font-size: 0.16rem;
  color: #173267;
  display: block;
  margin-top: 0.05rem;
}

.newsbg .news .Events ul li a{
  float: right;
  width: 80%;
  display: block;
  font-size: 0.22rem;
  color: #333;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


.newsbg .news .Events .more{
  float: right;
  display: block;
  background: url(../images/more.png) no-repeat left center;
  background-size: contain;
  line-height: 0.26rem;
  padding-left: 0.42rem;
  margin-top: 0.25rem;
}

.newsbg .news .Events .more a{
  display: block;
  font-size: 0.16rem;
  color: #173267;
  text-transform: capitalize;
  text-decoration: underline;
}



@media (min-width: 980px) {
  .newsbg .news .news_left .newsbox .newsnr:hover .pic img {
    transform: scale(1.1);
}

.newsbg .news .news_left .newsbox .newslist ul li:hover .pic img {
  transform: scale(1.1);
}

.newsbg .news .news_left .newsbox .newsnr:hover .txt a {
  color: #1a3366;
}
.newsbg .news .news_left .newsbox .newslist ul li:hover .txt a {
  color: #1a3366;
}

.newsbg .news .Events ul li:hover a{
  color: #1a3366;
}

}




@media (max-width: 980px) {

  .newsbg{
    padding-bottom: 1rem;
  
  }
  
  
  .newsbg .news{
    padding-top: 0.6rem;
  }
  
  .newsbg .news .news_left{
    float: none;
    width: 100%;
    overflow: hidden;
  }
  
  
  .newsbg .news .news_left .newsbox{
    margin-top: 0.4rem;
  }
  
  
  .newsbg .news .news_left .newsbox .newsnr{
    float: none;
    width: 100%;
  
  }
  
  
  
  .newsbg .news .news_left .newsbox .newsnr .txt span{
    display: block;
    width: 2.8rem;
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: 0.34rem;
    margin: -0.35rem 0 0 0.4rem;

  }
  
  .newsbg .news .news_left .newsbox .newsnr .txt a{
    display: block;
    font-size: 0.36rem;
    line-height: 0.4rem;
    height: 0.8rem;
    margin: 0.35rem 0 0.2rem 0;
  }
  
  .newsbg .news .news_left .newsbox .newsnr .txt p{
    font-size: 0.28rem;
    line-height: 0.35rem;
    height: 0.7rem;
  }
  
  .newsbg .news .news_left .newsbox .newslist{
    float: none;
    width: 100%;
    margin: 0.4rem auto 0 auto;
  }
  
  .newsbg .news .news_left .newsbox .newslist ul li{
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0.45rem;
    float: left;
  
  }

  .newsbg .news .news_left .newsbox .newslist ul li:last-child{
    margin-right: 0;
  }
  
  
  .newsbg .news .news_left .newsbox .newslist ul li .txt span{
    display: block;
    width: 2rem;
    height: 0.5rem;
    line-height: 0.5rem;
    font-size: 0.28rem;
    margin: -0.25rem 0 0 0.2rem;
  }
  
  .newsbg .news .news_left .newsbox .newslist ul li .txt a{
    display: block;
    font-size: 0.28rem;
    line-height: 0.35rem;
    height: 0.7rem;
    margin: 0.23rem 0 0rem 0;
  }
  
  
  
  
  
  .newsbg .news .Events{
    float: none;
    width: 100%;
    margin: 0.2rem auto 0 auto;
  }
  
  .newsbg .news .Events ul{
    margin-top: 0.4rem;
  }
  
  .newsbg .news .Events ul li{
    overflow: hidden;
    margin-bottom: 0.4rem;
  
  }
  
  .newsbg .news .Events ul li span{
    font-size: 0.56rem;
  }
  
  .newsbg .news .Events ul li span i{
    font-size: 0.28rem;
    margin-top: 0.05rem;
  }
  
  .newsbg .news .Events ul li a{
    width: 80%;
    font-size: 0.34rem;
    color: #333;
    line-height: 0.4rem;
    height: 0.8rem;
    margin-top: 0.03rem;

  }
  
  
  .newsbg .news .Events .more{
    float: right;
    display: block;
    background: url(../images/more.png) no-repeat left center;
    background-size: contain;
    line-height: 0.36rem;
    padding-left: 0.6rem;
    margin-top: 0.15rem;
  }
  
  .newsbg .news .Events .more a{
    display: block;
    font-size: 0.3rem;
  }
  
}



/* Research */

.Researchbg{
  width: 100%;
  margin: 0 auto;
  padding: 0.82rem 0 1.5rem 0;
  overflow: hidden;
}

.Researchbg .Research{
  margin: 0 auto;
}

.Researchbg .Research .Researchbox{
  margin: 0.65rem auto 0 auto;
}

.Researchbg .Research .Researchbox ul li{
  position: relative;
  z-index: 5;
  float: left;
  width: 31%;
  margin-right: 3.5%;
}

.Researchbg .Research .Researchbox ul li:last-child{
  margin-right: 0;
}

.Researchbg .Research .Researchbox ul li .pic{
  width: 100%;
  position: relative;
  z-index: 5;
  padding-top: 56%;
}

.Researchbg .Research .Researchbox ul li .pic a{
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.Researchbg .Research .Researchbox ul li .pic::after{
  position: absolute;
  content: "";
  right: -0.2rem;
  bottom: -0.2rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/imgbg.png) no-repeat  center;
  background-size: 100%;
}

.Researchbg .Research .Researchbox ul li .pic img{
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.Researchbg .Research .Researchbox ul li .ico{
  position: absolute;
  left: -0.2rem;
  top: -0.2rem;
  border-radius: 50%;
  width: 0.6rem;
  height: 0.6rem;
  background: #1a3366;
  z-index: 5;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.Researchbg .Research .Researchbox ul li .ico img{
  display: block;
  width: 100%;
  height: 100%;

}

.Researchbg .Research .Researchbox ul li .txt{

} 

.Researchbg .Research .Researchbox ul li .txt a{
  display: block;
  font-size: 0.22rem;
  color: #333;
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  margin: 0.53rem 0 0rem 0;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}







@media (min-width: 980px) {

  .Researchbg .Research .Researchbox ul li:hover .pic img{
    transform: scale(1.1);
  }
  .Researchbg .Research .Researchbox ul li:hover .ico{
    background: #ee7823;
  
  }
  
  .Researchbg .Research .Researchbox ul li:hover .txt a{
    color: #1a3366;
  }

}



@media (max-width: 980px) {

  .Researchbg{
    padding: 0.7rem 0 0.5rem 0;
  }
  
  
  .Researchbg .Research .Researchbox{
    margin: 0.7rem auto 0 auto;
  }
  
  .Researchbg .Research .Researchbox ul li{
    position: relative;
    z-index: 5;
    float: none;
    width: 94%;
    margin: 0% auto 0.6rem auto;
  }
  
  
  .Researchbg .Research .Researchbox ul li .ico{
    position: absolute;
    left: -0.3rem;
    top: -0.3rem;
    width: 0.8rem;
    height: 0.8rem;
  }

  .Researchbg .Research .Researchbox ul li .txt a{
    font-size: 0.34rem;
    line-height: 0.4rem;
    height: 0.8rem;
    overflow: hidden;
    margin: 0.5rem 0 0rem 0;
  }
  
  
  
}

/* case */

.casebg{
  width: 100%;
  margin: 0 auto;
  background: url(../images/Cooperationbg.jpg) no-repeat  center;
  background-size: cover;
  padding: 0.75rem 0 1.4rem 0;
  position: relative;
  z-index: 5;
  overflow: hidden;

}

.casebg::after{
  position: absolute;
  content: "";
  left: 0;
  top: 0px;
  width: 66%;
  height: 100%;
  background: #1a3366;
}

.casebg .case{
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

.casebg .case .title{
  width: 65%;
}

.casebg .case .title h3{
  color: #fff;
  line-height:normal;
}

.casebg .case .title .more{
  background: url(../images/more1.png) no-repeat left center;
  background-size: contain;
  margin-top: 0.33rem;
}

.casebg .case .title .more i{
  color: #fff;
}


.casebg  .casebox{
  margin: 0.55rem 0 0 0;
  width: 81%;
  position: relative;
  z-index: 9;
}

.casebg  .casebox .swiper-container{
  width: 118%;
  margin-left: -18%;
  padding-bottom: 0.9rem;
}

.casebg  .casebox .swiper-slide{
  position: relative;

}

.casebg  .casebox .swiper-slide .pic{
  width: 100%;
  position: relative;
  padding-top: 56%;
}

.casebg  .casebox .swiper-slide .pic img{
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.casebg  .casebox .swiper-slide .txt{
  margin: 0.25rem 0 0rem 0;
} 

.casebg  .casebox .swiper-slide .txt a{
  display: block;
  font-size: 0.2rem;
  color: #fff;
  line-height: 0.28rem;
  height: 0.56rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


.casebg  .casebox .swiper-case-next{
  position: absolute;
  right: 30%;
  bottom: 0rem;
  cursor: pointer;
  width: 0.67rem;
  height: 0.51rem;
  background: url(../images/right.png) no-repeat  center;
  background-size: 100%;
}




@media (min-width: 980px) {

  .casebg  .casebox .swiper-slide:hover .pic img{
    transform: scale(1.1);
  }

}


@media (max-width: 980px) {

  .casebg{
    padding: 0.8rem 0 1rem 0;
  
  }
  
  .casebg::after{
    width: 60%;

  }
  
  .casebg .case .title{
    width: 65%;
  }
  
  .casebg .case .title h3{
    color: #fff;
    line-height:normal;
    float: none;
  }
  
  .casebg .case .title .more{
    float: none;
    background: url(../images/more1.png) no-repeat left center;
    background-size: contain;
    margin-top: 0.33rem;
  }
  
  
  
  .casebg  .casebox{
    margin: 0.55rem auto 0 auto;
    width: 90%;
  }
  
  .casebg  .casebox .swiper-container{
    width: 100%;
    margin-left: 0%;
    padding-bottom: 0.9rem;
  }
  
  
  .casebg  .casebox .swiper-slide .txt{
    margin: 0.35rem 0 0rem 0;
  } 
  
  .casebg  .casebox .swiper-slide .txt a{
    display: block;
    font-size: 0.32rem;
    line-height: 0.4rem;
    height: 0.8rem;
  }
  
  
  .casebg  .casebox .swiper-case-next{
    position: absolute;
    right: 60%;
    bottom: 0rem;
    cursor: pointer;
    width: 0.77rem;
    height: 0.61rem;
  }



}


/* hz */

.hzbg{
  width: 100%;
  margin: 0 auto;
  background: url(../images/hzbg.jpg) no-repeat  center;
  background-size: cover;
  padding: 1rem 0 1.6rem 0;
  position: relative;
  z-index: 5;
  overflow: hidden;

}

.hzbg .hz{
  position: relative;
  margin: 0 auto;
}

.hzbg .hz .title{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

.hzbg .hz .title h3{
  float: none;
  line-height: 0.55rem;
}

.hzbg .hz .title .more{
  float: none;
  margin-top: 0.6rem;
}

.hzbg .hz .hzbox{
  margin: 0 auto;
  padding-top: 1rem;
}

.hzbg .hz .hzbox .swiper-container{
  width: 57%;
  float: right;
  padding-top: 0.2rem;
}


.hzbg .hz .hzbox .swiper-container .swiper-slide{
  position: relative;

}

.hzbg .hz .hzbox .swiper-container .swiper-slide ul li{
  float: left;
  width: 31.1%;
  margin: 0 1% 0.3rem 1%;
}

.hzbg .hz .hzbox .swiper-container .swiper-slide ul li .pic{
  position: relative;
  padding-top: 38.2%;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 8px 8px rgba(0, 0, 0, 0.05);

}

.hzbg .hz .hzbox .swiper-container .swiper-slide ul li .pic img{
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}


.hzbg .hz .hzbox .hz-pagination{
  margin: 0.2rem auto 0 auto;
  text-align: center;
  position: relative;
  bottom: 0;
}

.hzbg .hz .hzbox .hz-pagination .swiper-pagination-bullet{
  opacity: 1;
  width: 0.15rem;
  height: 0.15rem;
  border: 1px solid #dedede;
  background: #fff;
  margin: 0 0.08rem;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;

}

.hzbg .hz .hzbox .hz-pagination .swiper-pagination-bullet-active{
  border: 1px solid #1a3366;
}



@media (max-width: 980px) {

  .hzbg{
    padding: 1rem 0 1rem 0;
  
  }
  
  
  .hzbg .hz .title{
    position: relative;
  }
  
  .hzbg .hz .title h3{
    float: left;
    line-height: 0.55rem;
  }
  
  .hzbg .hz .title .more{
    float: right;
    margin-top: 0.15rem;
  }
  
  .hzbg .hz .hzbox{
    margin: 0 auto;
    padding-top: 0.5rem;
  }
  
  .hzbg .hz .hzbox .swiper-container{
    width: 100%;
    float: none;
    padding-top: 0.3rem;
  }
  
  
  .hzbg .hz .hzbox .swiper-container .swiper-slide{
    position: relative;
  
  }
  
  .hzbg .hz .hzbox .swiper-container .swiper-slide ul li{
    float: left;
    width: 30%;
    margin: 0 1.5% 0.3rem 1.5%;
  }
  
  .hzbg .hz .hzbox .swiper-container .swiper-slide ul li .pic{

    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.05);
  
  }
  

  
  .hzbg .hz .hzbox .hz-pagination .swiper-pagination-bullet{
    width: 0.25rem;
    height: 0.25rem;
    margin: 0 0.15rem;
  
  }
  

}

@media (min-width: 980px) {

  @keyframes customFadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px); 
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .custom-fade-in-up {
    animation-name: customFadeInUp;
    animation-duration: 2s; 
    animation-timing-function: ease-out; 
  }
  
  .wow.fadeInUp {
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.4, 1);
    opacity: 0; 
    transform: translateY(30px); 
  }
}