/* news.html 私有样式 */

/* 新闻列表 */
.latest-news {
    box-sizing: border-box;
    width: 100%;
    padding: 40px 0;
}

.latest-news .news-list {
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
    width: 100%;
    margin: 0;
    padding: 0;
}

.latest-news .news-item {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid #AD3233;
}

.latest-news .news-image {
    flex: 0 0 430px;
    height: 200px;
    overflow: hidden;
}

.latest-news .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-news .news-content {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 200px;
    /* 与左侧图片高度一致 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    /* color: #333;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.4; */
    margin: 0 0 12px;
    /* width: 485px; */
    height: 22px;
    font-family: OPPOSans-M, M;
    font-weight: normal;
    font-size: 22px;
    color: #000000;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.news-desc {
    /* color: #666;
    font-size: 0.95rem;
    line-height: 1.6; */
    margin: 0 0 16px;
    /* width: 548px; */
    height: 16px;
    font-family: OPPOSans-R, R;
    font-weight: normal;
    font-size: 14px;
    color: #000000;
    line-height: 23px;
    text-align: justifyLeft;
    font-style: normal;
    text-transform: none;
}

.read-more {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px 0 23px;
    line-height: 1;
    text-align: left;
    background: linear-gradient(to right, #B84948, #530202);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: auto;
    position: relative;
    width: 86px;
    height: 26px;
    white-space: nowrap;
}

.read-more a {
    text-decoration: none;
    /* width: 51px; */
    height: 12px;
    font-family: OPPOSans-B, B;
    font-weight: normal;
    font-size: 12px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

/* .latest-news .read-more:hover {
    background-color: #a00;
} */

.read-more::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #F2F2F2;
    opacity: 0.3;
}

.read-more::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F8F8F8;
    opacity: 0.6;
}

.read-more span.dot-inner {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #FFFFFF;
    opacity: 0.9;
    pointer-events: none;
}

@media (max-width: 768px) {
    .latest-news {
        padding: 20px;
    }

    .latest-news .news-item {
        flex-direction: column;
        gap: 15px;
    }

    .latest-news .news-image {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
    }

    .latest-news .news-content {
        padding-bottom: 0;
    }

    .latest-news .read-more {
        position: static;
        margin-top: 12px;
        align-self: flex-end;
    }
}