    /* ========== 案例列表页独立样式（作用域 .case-list-page） ========== */
    .case-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;
    }
    .case-list-page *,
    .case-list-page *::before,
    .case-list-page *::after {
        box-sizing: border-box;
    }
    .case-list-page a {
        color: inherit;
        text-decoration: none;
        transition: color var(--transition-fast);
    }
    .case-list-page a:hover {
        color: var(--brand-accent);
    }
    .case-list-page img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* 面包屑 */
    .case-list-page .breadcrumb {
        font-size: 0.85rem;
        color: var(--text-light);
        margin-bottom: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .case-list-page .breadcrumb a {
        color: var(--text-light);
        text-decoration: none;
    }
    .case-list-page .breadcrumb a:hover {
        color: var(--brand-accent);
    }
    .case-list-page .breadcrumb span {
        color: var(--text-mid);
    }

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

    /* 案例网格 */
    .case-list-page .case-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    .case-list-page .case-card {
        background: #fff;
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: all var(--transition-normal, 0.3s ease);
        box-shadow: var(--shadow-sm);
    }
    .case-list-page .case-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }
    .case-list-page .case-card .card-img {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        background: #eef3f8;
    }
    .case-list-page .case-card .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .case-list-page .case-card:hover .card-img img {
        transform: scale(1.05);
    }
    .case-list-page .case-card .card-title {
        padding: 14px;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--brand-deep);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 3.2em;
        line-height: 1.5;
    }

    /* 分页样式（兼容迅睿 {$pages} 输出） */
    .case-list-page .pagination-wrapper {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }
    .case-list-page .pagination {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .case-list-page .pagination li {
        margin: 0;
    }
    .case-list-page .pagination a,
    .case-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;
    }
    .case-list-page .pagination a:hover {
        background: #e8f2fa;
        border-color: var(--brand-blue);
        color: var(--brand-blue);
    }
    .case-list-page .pagination .active span,
    .case-list-page .pagination .active a {
        background: var(--brand-blue);
        border-color: var(--brand-blue);
        color: #fff;
        font-weight: 600;
    }
    .case-list-page .pagination .disabled span {
        color: #ccc;
        border-color: #eee;
        background: #fafafa;
        cursor: not-allowed;
    }

    /* 相关案例推荐 */
    .case-list-page .related-cases {
        margin-top: 30px;
    }
    .case-list-page .related-cases h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--brand-deep);
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--brand-accent);
        display: inline-block;
    }
    .case-list-page .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
    .case-list-page .related-card {
        background: #fff;
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: all var(--transition-normal, 0.3s ease);
        text-decoration: none;
        color: inherit;
    }
    .case-list-page .related-card:hover {
        box-shadow: var(--shadow-sm);
        transform: translateY(-2px);
    }
    .case-list-page .related-card .rel-img {
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: #eef3f8;
    }
    .case-list-page .related-card .rel-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    .case-list-page .related-card:hover .rel-img img {
        transform: scale(1.03);
    }
    .case-list-page .related-card .rel-title {
        padding: 10px;
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--brand-deep);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .case-list-page .related-card .rel-date {
        padding: 0 10px 10px;
        font-size: 0.75rem;
        color: #999;
    }

    /* 响应式 */
    @media (max-width: 1024px) {
        .case-list-page .case-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media (max-width: 768px) {
        .case-list-page .case-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .case-list-page .page-header h1 { font-size: 1.6rem; }
    }
    @media (max-width: 480px) {
        .case-list-page .case-grid {
            grid-template-columns: 1fr;
        }
        .case-list-page .related-grid {
            grid-template-columns: 1fr;
        }
    }
