.news-page-container {
    padding-bottom: 0.62rem;
}

.news-main-section {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.news-featured {
    width: 5.7rem;
    background-color: #fff;
}

.news-featured-image {
    display: block;
    width: 5.7rem;
    height: 4.3rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.14rem;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    transition: .4s;
}

.news-featured-image:hover img {
    transform: scale(1.1);
}

.news-featured-more-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-featured-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(9, 85, 238, 0.7);
    color: #fff;
    padding: 0.16rem 0.18rem;
    font-size: 0.24rem;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-featured-description {
    font-size: 0.18rem;
    color: #555;
    margin-bottom: 0.08rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured-date {
    display: block;
    font-size: 0.18rem;
    color: #999;
}

.news-featured-more {
    display: inline-flex;
    padding: 0.04rem 0.1rem;
    background-color: var(--theme-color);
    color: #fff;
    text-decoration: none;
    border-radius: 0.04rem;
    font-size: 0.18rem;
    transition: background-color 0.3s ease;
}

.news-featured-more:hover {
    background-color: #40a9ff;
}

.news-list-brief {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.news-list-item {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.27rem 0;
    padding-right: 0.2rem;
    background-color: #f7f7f7;
    border: 1px solid transparent;
    transition: .4s;
}

.news-list-item:hover {
    border: 1px solid var(--theme-color);
}

.news-list-item:hover .news-item-title {
    color: var(--theme-color);
}

.news-item-date {
    flex-shrink: 0;
    text-align: center;
    padding: 0.05rem 0.26rem;
    border-radius: 0.04rem;
    position: relative;
}

.news-item-date::after {
    content: '';
    display: block;
    width: 0.01rem;
    height: 0.34rem;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.news-item-date .day {
    display: block;
    font-size: 0.34rem;
    font-weight: bold;
    color: #333;
    line-height: 1.1em;
}

.news-item-date .year-month {
    display: block;
    font-size: 0.18rem;
    color: #666;
}

.news-item-info {
    flex-grow: 1;
}

.news-item-title {
    font-size: 0.22rem;
    color: #333;
    margin-bottom: 0.05rem;
    font-weight: 500;
    transition: .4s;
}

.news-item-summary {
    font-size: 0.18rem;
    color: #777;
    line-height: 1.5;
}

.news-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0 0 0.3rem 0;
}

.news-list-detailed li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.32rem 0;
    border-bottom: 1px solid #ccc;
}

.news-list-detailed li a:hover h2 {
    color: var(--theme-color);
}


.news-list-detailed li a h2 {
    transition: .4s;
    margin-right: 0.2rem;
    font-size: 0.22rem;
    font-weight: normal;
    color: #000;
    padding-left: 0.3rem;
    position: relative;
}

.news-list-detailed li a h2::before {
    content: '';
    display: block;
    border-radius: 50%;
    width: 0.06rem;
    height: 0.06rem;
    background-color: var(--theme-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.1rem;
}

.news-list-detailed li a span {
    font-size: 0.16rem;
    color: #999;
    flex-shrink: 0;
}


/* 响应式调整 */
@media (max-width: 7.68rem) {

    .news-main-section {
        flex-direction: column;
    }

    .news-featured {
        margin-bottom: 0.2rem;
    }

    .news-list-detailed li {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-list-detailed li a {
        margin-bottom: 0.05rem;
    }
}

@media (max-width: 992px) {
    .common-banner-tabs {
        flex-wrap: wrap;
    }

    .news-main-section {
        flex-direction: column;
    }

    .news-featured {
        width: 100%;
        height: auto;
    }

    .news-featured-image {
        width: 100%;
    }

    .news-featured-description {
        font-size: 0.16rem;
    }

    .news-featured-date {
        font-size: 0.2rem;
    }

    .news-featured-more {
        font-size: 0.16rem;
    }

    .news-list-item {
        padding: 0.18rem 0;
        padding-right: 0.1rem;
        gap: 0.2rem;
    }

    .news-item-date .day {
        font-size: 0.4rem;
    }

    .news-item-date .year-month {
        font-size: 0.22rem;
    }

    .news-item-title {
        font-size: 0.28rem;
    }

    .news-item-summary {
        font-size: 0.2rem;
    }

    .news-list-detailed li a {
        padding: 0.2rem;
    }

    .news-list-detailed li a h2 {
        font-size: 0.26rem;
    }

    .news-list-detailed li a span {
        font-size: 0.22rem;
    }

    .news-featured-caption {
        font-size: 0.24rem;
    }

    .news-featured-description {
        font-size: 0.2rem;
        -webkit-line-clamp: 1;
    }

    .news-featured-date {
        font-size: 0.24rem;
    }

    .news-featured-more {
        padding: 0.08rem 0.16rem;
        font-size: 0.2rem;
    }
}