.news-section{
   overflow: hidden;
   padding: .625rem .625rem;
}
.news-section ul{
   display: flex;
   /* gap: 2.5rem; */
   z-index: 11;
}
.news-section .swiper-slide{
   width: calc(33.33% - 1.6667rem) ;
   background: #FFFFFF;
   box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
   border-radius: 20px;
   text-align: center;
   padding: 1.25rem;
}
.news-section .title img{
   width: 100%;
}
.news-section .cont{
   margin: 1.25rem 0 0;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 1.875rem;
}
.news-section .cont strong{
   font-size: 1.3125rem;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
   width: 100%;
   text-align: left;
}
.news-section .cont span{
   font-size: 1rem;
   color: #666;
}
.latest .news-wrap{
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   z-index: 10;
}
.news-prev,.news-next{
   cursor: pointer;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
}
.news-wrap .news-prev{left: -3.125rem;}
.news-wrap .news-next{right: -3.125rem;}

.news-section .swiper-pagination{
   position: static;
   margin: 3.75rem auto 0;
}
.news-section .swiper-pagination .swiper-pagination-bullet{
   width: .625rem;
   height: .625rem;
   border: 1px solid #C9821A;
   background-color: transparent;
   border-radius: 50%;
}
.news-section .swiper-pagination .swiper-pagination-bullet-active{
   background-color: #C9821A;
}

@media (max-width:1024px) {
   .news-section ul{
      gap: unset;
   }
   .news-section .swiper-slide{
      padding: .7143rem;
      border-radius: 10px;
   }
   .news-section .cont{
      margin: .7143rem 0 0;
      gap: .7143rem;
   }
   .news-section .cont strong{
      font-size: 1.1429rem;
   }
   .latest .news-wrap{
      display: none;
   }
   .news-section .swiper-pagination{
      margin: 2.1429rem auto 0;
   }
}
