@charset "UTF-8";


.news-detail-container{
  padding: 0 0 2rem;
}

.news-detail-container > div.flex{
    gap: 2rem;

}
.news-detail-container div.flex > div{
      flex: 5.5;
}

.news-detail-container div.flex > div.news-l{
        flex: 4.5;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.news-detail-container div.flex > div.news-l .swiper-pagination {
    padding: 1rem;
    width: 100%;
    position: relative;
}
.news-detail-container div.flex > div.news-l .swiper-pagination span.swiper-pagination-bullet {
    background-color: rgba(3, 113, 184, .3);
}
.news-detail-container div.flex > div.news-l .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(3, 113, 184, 1);
}


.swiper-slide div{
  height: auto;
  position: relative;
}

 .swiper-slide div.slide-bg{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
      position: relative;
    width: 100%;
    height: 400px;
 }


.news-detail-container p {
    line-height: 2rem;
    padding: 0 0 1rem;
}

@media screen and (max-width: 1079px) {

.news-detail-container .swiper-container {
       height: 100%;
        width: 100%;
  }

.news-detail-container > div.flex{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


}