
    /* ========== 服务列表页样式（作用域 .service-list-page） ========== */
    .service-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;
    }
    .service-list-page *,
    .service-list-page *::before,
    .service-list-page *::after { box-sizing: border-box; }
    .service-list-page a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
    .service-list-page a:hover { color: var(--brand-accent); }
    .service-list-page img { max-width: 100%; height: auto; display: block; }
    .service-list-page .img-container { position: relative; width: 100%; overflow: hidden; background: #eef3f8; border-radius: var(--radius-md); }
    .service-list-page .img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

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

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

    /* 服务卡片网格 - 一行四个 */
    .service-list-page .service-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    .service-list-page .service-card {
        background: #fff;
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-sm);
    }
    .service-list-page .service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .service-list-page .service-card .card-img {
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        background: #eef3f8;
    }
    .service-list-page .service-card:hover .card-img img { transform: scale(1.05); }
    .service-list-page .service-card .card-body { padding: 14px 16px; }
    .service-list-page .service-card .card-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--brand-deep);
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .service-list-page .service-card .card-desc {
        font-size: 0.82rem;
        color: var(--text-light);
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

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

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