@charset "utf-8";

.news_wrap {
    padding: 150px 0;
}

.news_wrap .top_text_box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between ;
    margin-bottom: 57px;
}

.news_wrap h5 {
    font-family: "Poppins", sans-serif;
    font-size: 72px;
    font-weight: 700;
    color:#222222;
}

.news_wrap .swiper-button {
    display: flex;
    gap:0 13px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.news_wrap .swiper-button > div {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.news_wrap .news_prev {
    border: 1px solid rgba(34, 34, 34, 0.5);
}   
.news_wrap .news_next {
    border: 1px solid rgba(34, 34, 34, 0.5);
}  

.news_wrap .news_prev .arrow,
.news_wrap .news_next .arrow {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 16px;
}

.swiper-button span::before,
.swiper-button span::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  width: 11.5px;
  height: 1px;
}

.news_prev .arrow::before,
.news_prev .arrow::after {
    right: 0;
    transform-origin: 0.5px 50%;
    background-color: rgba(34, 34, 34, 0.6);
    transition: all .3s ease-in-out;
}

.news_next .arrow::before,
.news_next .arrow::after {
    left: 0;
    transform-origin: 100% 50%;
    background-color: rgba(34, 34, 34, 0.6);
    transition: all .3s ease-in-out;
}

.swiper-button span::before {
  transform: rotate(45deg);
}

.swiper-button span::after {
  transform: rotate(-45deg);
}

.news_wrap .swiper-button > div:hover {
    background: #222;
}

.news_wrap .swiper-button > div:hover .arrow::before,
.news_wrap .swiper-button > div:hover .arrow::after {
    background-color: #fff;

}


/* row */
.news_wrap .img_box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 33px;
}

.news_wrap .img_box .board_title {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 73px;
    height: 44px;
    background: #222222;
}
.news_wrap .img_box .board_title span {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color:#fff
}
.news_wrap .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_wrap .text_box p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_wrap .news_row_title {
    margin-bottom: 12px;
    font-weight: 600;   
    font-size: 24px;
    line-height: 1.5;
    color:#222222;

} 

.news_wrap .news_row_content {
    margin-bottom: 30px;
   font-size: 18px;
   line-height: 1.55;
   color:rgba(34, 34, 34, 0.9);
}

.news_wrap .news_date {
    font-size: 16px;
   color:rgba(34, 34, 34, 0.5);
}

.news_wrap .swiper-scrollbar {
    position: static !important;
    width: 100% !important;
    margin-top: 70px;
    height: 2px !important;
    background: rgba(255, 218, 107, 0.5);
}

.news_wrap .swiper-scrollbar .swiper-scrollbar-drag {
    background: #d68900;
}

@media (max-width:1280px) {
    .news_wrap {
        padding: 100px 0;
    }

    .news_wrap h5{
        font-size: 62px;
    }

    .news_wrap .img_box {
        margin-bottom: 20px;
    }

    .news_wrap .news_row_title{
        font-size: 20px;
        line-height: 1.4;
    }
    .news_wrap .news_row_content {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.35;
    }
}

@media (max-width:991px) {
    .news_wrap {
        padding: 70px 0;
    }
    .news_wrap .top_text_box {
        align-items: center;
        margin-bottom: 40px;
    }
    .news_wrap h5 {
        font-size: 39px;
    }



    .news_wrap .swiper-button {
        margin-bottom: 0;
    }
    .news_wrap .swiper-button > div {
        width: 30px;
        height: 30px;
    }

    .news_wrap .news_prev .arrow, .news_wrap .news_next .arrow {
        width: 6px;
        height: 10px;
    }
    .swiper-button span::before, .swiper-button span::after {
        width: 7.6px;
    }
    .news_prev .arrow::before, .news_prev .arrow::after {
        right: -2px;
    }
    .news_next .arrow::before, .news_next .arrow::after {
        left: -1px;
    }

    .news_wrap .img_box {
        border-radius: 12px;
        margin-bottom: 25px;
    }
    .news_wrap .img_box .board_title {
        width: 59px;
        height:28px;
    }
    .news_wrap .img_box .board_title span {
        font-size: 14px;
    }

    .news_wrap .news_row_title {
        font-size: 20px;
        line-height:1.4;
    }
    .news_wrap .news_row_content {
        font-size: 16px;
        line-height: 1.43;
        margin-bottom: 20px;
    }
    .news_wrap .news_date{
        font-size: 14px;
    }
    .news_wrap .swiper-scrollbar {
        margin-top: 35px;
    }
}