/* .yingfang-news-read {
    padding-bottom: 100px;
} */

.banner-nav {
    border-bottom: 1px solid #DDD;
    padding: 30px 0 6px;
}

.banner-nav .yingfang-banner-text {
    color: #282624;
    font-family: var(--font-family);
    font-size: var(--font-16);
    font-style: normal;
    font-weight: 400;
    line-height: 1.625;
}

.banner-nav .yingfang-banner-text .active {
    color: var(--color-primary);
}

.yingfang-news-read .news-read-content-wrap {
    margin-top: 50px;
}

.news-read-content-wrap .news-read-title {
    color: #333;
    text-align: center;
    font-family: var(--title-font-family);
    font-size: var(--font-38);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.news-read-content-wrap .news-read-meta {
    text-align: center;
    margin-top: 20px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.news-read-content-wrap .news-read-date {
    color: #6B6B6B;
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-22);
    font-style: normal;
    font-weight: 400;
    line-height: normal; /* 136.364% */
    display: flex;
    gap: 8px;
    align-items: center;
}
.news-read-date .news-read-date-icon{
    display: inline-flex;
    width: 16px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
}

.news-read-meta .news-read-share{
    display: flex;
    gap: 5px;
    align-items: center;
    color: #4B5563;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; /* 162.5% */
}
.news-read-share .social-medias{
    margin: 0 !important;
    gap: 6px;
}
.news-read-share .social-medias li{
    margin: 0 !important;
    width: 20px;
    /* aspect-ratio: 1; */
    border-radius: 3px;
    overflow: hidden;
}
.news-read-share .social-medias li img{
    width: 100% !important;
}

.news-read-content-wrap .news-read-content {
    padding: 70px 0;
    border-bottom: 1px solid #C8C8C8;
}

.news-read-page {
    margin-top: 38px;
    display: flex;
}

.news-read-page .news-read-prev,
.news-read-page .news-read-next {
    width: 50%;
}

.news-read-page .news-read-page-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #646464;
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.news-read-page-wrap .news-read-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #D7D6D6;
}

.news-read-page-wrap .news-read-text i {
    color: #222;
}

.news-read-page .news-read-next .news-read-page-wrap {
    justify-content: flex-end;
}

.news-read-page .news-read-page-wrap:hover svg path {
    stroke: var(--color-primary);
}

.news-read-page .news-read-page-wrap:hover .news-read-icon {
    border: 2px solid var(--color-primary);
}

.news-read-page .news-read-page-wrap .news-read-text {
    flex: 1;
}

.news-read-next .news-read-text{
    text-align: right;
}


@media screen and (max-width: 1200px) {
    /* .yingfang-news-read {
        padding-bottom: 50px;
    } */
    .news-read-content-wrap .news-read-content{
        padding: 50px 0;
    }
}
@media screen and (max-width: 992px) {
    .news-read-page{
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }
    .news-read-page .news-read-prev,
    .news-read-page .news-read-next{
        width: 100%;
    }
    .news-read-page .news-read-next .news-read-page-wrap{
        justify-content: flex-start;
        flex-direction: row-reverse;
    }
    .news-read-next .news-read-text{
        text-align: left;
    }
}