.yingfang-latest-news {
    padding: 100px 0 10px 0;
}

.yingfang-latest-news .latest-news-title {
    color: #333;
    text-align: center;
    font-family: var(--title-font-family);
    font-size: var(--font-48);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.yingfang-latest-news .latest-news-list {
    margin-top: 70px;
    position: relative;
}

.latest-news-list .swiper {
    padding-bottom: var(--gap-120);
}

.latest-news-list .swiper-slide {
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
}

.latest-news-list .swiper-slide img {
    width: 100%;
    aspect-ratio: 520/316;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.latest-news-list .swiper-slide .news-con {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.latest-news-list .swiper-slide .news-con .date {
    color: #999;
    font-family: var(--medium-font-family);
    font-size: var(--font-22);
    font-style: normal;
    font-weight: 500;
    line-height: 1.36; /* 136.364% */
}

.latest-news-list .swiper-slide .news-con .news-title {
    flex: 1;
    color: #000;
    font-family: var(--medium-font-family);
    font-size: var(--font-22);
    font-style: normal;
    font-weight: 500;
    line-height: 1.36; /* 136.364% */
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.latest-news-list .swiper-slide .news-con .news-text {
    color: #666;
    font-family: var(--font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; /* 150% */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 5px;
}

.latest-news-list .swiper-slide .news-con .text-button {
    display: flex;
    width: 163px;
    height: 44px;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    color: var(--color-primary);
    font-family: var(--medium-font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal; /* 120% */
    margin-top: 25px;
    transition: all 0.5s;
}
.latest-news-list .swiper-slide .news-con .text-button i{
    font-family: var(--medium-font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    display: none;
}
.latest-news-list .swiper-slide:hover .text-button{
    padding: 5px;
    justify-content: center;
    color: #fff;
    background: var(--color-primary);
    border-radius: 6px;
}
.latest-news-list .swiper-slide:hover .text-button i{
    display: block;
}
.latest-news-list .swiper-slide:hover .text-button span{
    display: none;
}




@media screen and (max-width: 1200px) {
    .yingfang-latest-news {
        padding: 50px 0 10px;
    }
}
@media screen and (max-width: 992px) {
    .yingfang-latest-news .latest-news-list{
        margin-top: 50px;
    }
    .latest-news-list .swiper-slide .news-con .text-button{
        margin-top: 10px;
    }
}
@media screen and (max-width: 768px) {
    .yingfang-latest-news .latest-news-list{
        margin-top: 30px;
    }
    .yingfang-latest-news {
        padding: 30px 0 10px;
    }
}
