.fuxuan-news-read{
    padding: 58px 0 110px;
}
.fuxuan-news-read .news-read-con{
    display: flex;
    gap: 40px;
}
.news-read-con .read-left{
    flex: 1;
}
.read-left .read-title{
    color: #2B2B2B;
    text-align: center;
    font-family: var(--font--family);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 112%; /* 44.8px */
}
.read-left .read-date{
    color: #7D7D7D;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 350;
    line-height: 170%; /* 23.8px */
    margin-top: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.read-left .read-content{
    margin-top: 20px;
}

.read-left .news-page{
    margin-top: 40px;
    display: flex;
    /* justify-content: flex-end; */
    gap: 2px;
}
.news-page .news-prev-wrap,
.news-page .news-next-wrap{
    width: 50%;
}
.news-page .news-prev,
.news-page .news-next{
    width: 100%;
    height: 100%;
    background: #F9F9F9;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.news-page .news-next{
    align-items: flex-end;
}
.news-page .page-title{
    color: #000;
    font-family: var(--font--family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; /* 27.2px */
}
.news-page .page-desc{
    color: #606060;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 23.8px */
}
.news-page .news-prev:hover .page-title,
.news-page .news-prev:hover .page-desc,
.news-page .news-next:hover .page-title,
.news-page .news-next:hover .page-desc{
    color: var(--primary-color);
}
.news-page .news-prev:hover svg path,
.news-page .news-next:hover svg path{
    fill: var(--primary-color);
}
.news-read-con .read-right{
    width: 242px;
}
.read-right .recent-news{
    border: 1px solid #D9D9D9;
    padding: 19px;
    position: sticky;
    top: 110px;
}
.recent-news .recent-title{
    color: #000;
    font-family: var(--font--family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 132%; /* 23.76px */
}
.recent-news .recent-con{
    margin-top: 23px;
    display: flex;
    flex-direction: column;
    gap: 37px;
}
.recent-con .recent-item{
    display: flex;
    align-items: center;
    gap: 15px;
}
.recent-con img{
    width: 86px;
    aspect-ratio: 86/60;
    object-fit: cover;
}
.recent-con p{
    flex: 1;
    color: #000;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 149%; /* 20.86px */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

@media screen and (max-width: 1500px) {
    .read-left .read-title{
        font-size: 32px;
    }
}
@media screen and (max-width: 1200px) {
    .read-left .read-title{
        font-size: 26px;
    }
    .fuxuan-news-read{
        padding: 50px 0;
    }
}
@media screen and (max-width: 768px) {
    .read-left .read-title{
        font-size: 20px;
    }
    .fuxuan-news-read .news-read-con{
        flex-direction: column;
    }
    .news-read-con .read-right{
        width: 100%;
    }
}