    /* ========== 新闻列表页独立样式（作用域 .news-list-page） ========== */
    .news-list-page {
        font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
        color: #1a1a1a;
        line-height: 1.7;
        max-width: 1280px;
        margin: 0 auto;
        padding: 30px 20px;
        box-sizing: border-box;
        --brand-blue: #0d3b66;
        --brand-deep: #07273f;
        --brand-accent: #f28c38;
        --text-mid: #3d3d3d;
        --text-light: #6b6b6b;
        --border-soft: #e0e7ef;
        --bg-light: #f9fafb;
        --radius-md: 10px;
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
        --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
        --transition-fast: 0.2s ease;
    }
    .news-list-page *,
    .news-list-page *::before,
    .news-list-page *::after {
        box-sizing: border-box;
    }
    .news-list-page a {
        color: inherit;
        text-decoration: none;
        transition: color var(--transition-fast);
    }
    .news-list-page a:hover {
        color: var(--brand-accent);
    }
    .news-list-page img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* 页面标题 */
    .news-list-page .page-header {
        text-align: center;
        padding: 30px 0 20px;
    }
    .news-list-page .page-header h1 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--brand-deep);
        margin-bottom: 6px;
        letter-spacing: 0.03em;
    }
    .news-list-page .page-header .subtitle {
        font-size: 0.95rem;
        color: var(--text-light);
    }
    .news-list-page .page-header .divider {
        display: block;
        width: 50px;
        height: 3px;
        background: var(--brand-accent);
        margin: 12px auto 0;
        border-radius: 2px;
    }

    /* 新闻列表 */
    .news-list-page .news-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .news-list-page .news-item {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-soft);
        transition: background var(--transition-fast);
    }
    .news-list-page .news-item:hover {
        background: #f9fbfd;
        margin: 0 -10px;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 6px;
    }
    .news-list-page .news-item .news-thumb {
        flex: 0 0 200px;
        max-width: 200px;
        border-radius: var(--radius-md);
        overflow: hidden;
        background: #eef3f8;
    }
    .news-list-page .news-item .news-thumb .img-container {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: #eef3f8;
    }
    .news-list-page .news-item .news-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .news-list-page .news-item:hover .news-thumb img {
        transform: scale(1.05);
    }
    .news-list-page .news-item .news-content {
        flex: 1;
        min-width: 260px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .news-list-page .news-item .news-title {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--brand-deep);
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.5;
    }
    .news-list-page .news-item .news-desc {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-list-page .news-item .news-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        font-size: 0.8rem;
        color: #999;
    }
    .news-list-page .news-item .news-meta span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    /* 分页样式（兼容迅睿 {$pages} 输出） */
    .news-list-page .pagination-wrapper {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }
    .news-list-page .pagination {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .news-list-page .pagination li {
        margin: 0;
    }
    .news-list-page .pagination a,
    .news-list-page .pagination span {
        display: inline-block;
        min-width: 38px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        border-radius: 6px;
        background: #fff;
        border: 1px solid var(--border-soft);
        color: var(--text-mid);
        font-size: 0.9rem;
        font-weight: 500;
        transition: all var(--transition-fast);
        text-decoration: none;
        padding: 0 8px;
    }
    .news-list-page .pagination a:hover {
        background: var(--brand-light-blue);
        border-color: var(--brand-blue);
        color: var(--brand-blue);
    }
    .news-list-page .pagination .active span,
    .news-list-page .pagination .active a {
        background: var(--brand-blue);
        border-color: var(--brand-blue);
        color: #fff;
        font-weight: 600;
    }
    .news-list-page .pagination .disabled span {
        color: #ccc;
        border-color: #eee;
        background: #fafafa;
        cursor: not-allowed;
    }
    /* 适配迅睿可能输出的其他类名 */
    .news-list-page .pagination li:first-child a,
    .news-list-page .pagination li:last-child a {
        font-weight: 500;
    }

    /* 无内容提示 */
    .news-list-page .no-content {
        text-align: center;
        padding: 60px 20px;
        color: var(--text-light);
        font-size: 1rem;
    }

    /* 响应式 */
    @media (max-width: 768px) {
        .news-list-page .page-header h1 { font-size: 1.6rem; }
        .news-list-page .news-item {
            flex-direction: column;
            gap: 12px;
        }
        .news-list-page .news-item .news-thumb {
            flex: 0 0 auto;
            max-width: 100%;
            width: 100%;
        }
        .news-list-page .news-item .news-thumb .img-container {
            aspect-ratio: 16 / 9;
        }
        .news-list-page .pagination a,
        .news-list-page .pagination span {
            min-width: 32px;
            height: 32px;
            line-height: 32px;
            font-size: 0.8rem;
        }
    }
