
    :root {
        --primary-dark: #0B1F3A;
        --accent-gold: #C9A84C;
        --bg-light: #F8F9FA;
        --text-dark: #333333;
        --text-muted: #666666;
        --card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
        --hover-shadow: 0 30px 40px -16px rgba(0, 0, 0, 0.12);
    }

    .services-main {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* 基础排版 */
    h1, h2, h3 {
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    h1 {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--primary-dark);
        position: relative;
        display: inline-block;
    }

    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--primary-dark);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .section-subhead {
        font-size: 1.125rem;
        color: var(--text-muted);
        max-width: 720px;
        margin-top: 0.5rem;
    }

    /* Hero 区域 (左右图文结构) */
    .hero {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 60px 0 40px 0;
        border-bottom: 1px solid var(--border-light);
        margin-bottom: 20px;
    }
    .hero-content {
        flex: 1 1 45%;
    }
    .hero-image {
        flex: 1 1 45%;
        text-align: center;
        background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(11,31,58,0.03) 100%);
        border-radius: 32px;
        padding: 20px;
    }
    .hero-image .img-placeholder {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero-image i {
        font-size: 7rem;
        color: var(--accent-gold);
        margin-bottom: 12px;
        filter: drop-shadow(0 6px 12px rgba(0,0,0,0.05));
    }
    .hero-image p {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-top: 8px;
    }

    /* 服务卡片模块通用布局 (左右交叉) */
    .service-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 2.5rem;
        padding: 64px 0;
        border-radius: 32px;
        transition: all 0.3s ease;
    }
    /* 背景交替区块 (浅灰背景) */
    .service-item:nth-child(even) {
        background-color: var(--bg-light);
        border-radius: 48px;
        margin: 16px 0;
        padding-left: 24px;
        padding-right: 24px;
    }
    /* 奇偶左右顺序: 奇数 row(左图右文)，偶数 row-reverse(右图左文) */
    .service-item:nth-child(odd) {
        flex-direction: row;
    }
    .service-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-img {
        flex: 1 1 42%;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: var(--card-shadow);
        padding: 10px;
        text-align: center;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        border: 1px solid rgba(201,168,76,0.2);
        overflow: hidden;
    }
    .service-img:hover {
        transform: translateY(-2px);
        box-shadow: var(--hover-shadow);
    }
    /* 图片样式 - 适用于所有服务图片 */
    .service-img img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 24px;
        object-fit: cover;
    }
    
    .service-img i,
    .service-img h4,
    .service-img p {
        display: none;
    }
    .service-content {
        flex: 1 1 48%;
    }
    .service-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--primary-dark);
        border-left: 5px solid var(--accent-gold);
        padding-left: 18px;
    }
    .service-desc {
        color: var(--text-dark);
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }
    /* 要点列表网格布局 */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 1.5rem;
        margin-top: 1rem;
    }
    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        color: var(--text-dark);
    }
    .feature-item i {
        color: var(--accent-gold);
        font-size: 0.85rem;
        width: 20px;
        text-align: center;
    }
    /* 对于较短的列表，保持自适应 */
    ul.feature-list-plain {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem 1.2rem;
    }
    ul.feature-list-plain li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        color: var(--text-dark);
    }
    ul.feature-list-plain li i {
        color: var(--accent-gold);
        font-size: 0.8rem;
        width: 18px;
    }

    /* 单独处理服务6或其他特殊长文本 */
    .service-content .badge-gold {
        background: rgba(201,168,76,0.15);
        color: #a47c2e;
        font-size: 0.75rem;
        font-weight: 500;
        padding: 4px 10px;
        border-radius: 40px;
        display: inline-block;
        margin-top: 8px;
    }

    /* 响应式设计 */
    @media (max-width: 992px) {
        .services-main {
            padding: 0 20px;
        }
        h1 {
            font-size: 2.4rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        .service-item, .service-item:nth-child(odd), .service-item:nth-child(even) {
            flex-direction: column !important;
            padding: 48px 20px;
            gap: 2rem;
        }
        .service-img, .service-content {
            flex: 1 1 100%;
            width: 100%;
        }
        .service-img {
            max-width: 480px;
            margin: 0 auto;
        }
        .feature-grid, ul.feature-list-plain {
            grid-template-columns: 1fr;
        }
        .hero {
            flex-direction: column-reverse;
            text-align: center;
        }
        .hero-content {
            text-align: center;
        }
        .hero-image {
            width: 100%;
        }
        h3 {
            border-left: none;
            padding-left: 0;
            border-bottom: 3px solid var(--accent-gold);
            display: inline-block;
            padding-bottom: 8px;
        }
    }

    @media (max-width: 640px) {
        .service-content h3 {
            font-size: 1.5rem;
        }
        .services-main {
            padding: 0 16px;
        }
        .service-item {
            padding: 40px 12px;
        }
    }

    /* 辅助元素 */
    .accent-text {
        color: var(--accent-gold);
        font-weight: 500;
    }
    hr {
        margin: 12px 0;
        border-color: rgba(0,0,0,0.05);
    }
    .deco-line {
        width: 50px;
        height: 3px;
        background: var(--accent-gold);
        margin: 20px 0 8px;
        border-radius: 4px;
    }
    .hero .deco-line {
        margin: 16px 0 12px 0;
    }



    .blog-section {
        padding:0 0 60px 0;
    }

    .blog-title {
        font-size: 2rem;
        color: var(--primary-dark);
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
    }

    .deco-line {
        width: 50px;
        height: 3px;
        background: var(--accent-gold);
        margin: 0 auto 40px;
        border-radius: 4px;
    }

    .blog-card {
        background: #fff;
        border-radius: 20px;
        padding: 30px;
        box-shadow: var(--card-shadow);
        transition: all 0.3s ease;
        border: 1px solid rgba(201, 168, 76, 0.15);
        height: 100%;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--hover-shadow);
    }

    .blog-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
    }

    .blog-icon {
        font-size: 1.8rem;
        color: var(--accent-gold);
    }

    .blog-tag {
        background: rgba(201, 168, 76, 0.12);
        color: var(--primary-dark);
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .blog-card h3 {
        font-size: 1.25rem;
        color: var(--primary-dark);
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .blog-desc {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .blog-link {
        display: inline-flex;
        align-items: center;
        color: var(--accent-gold);
        font-weight: 600;
        text-decoration: none;
    }

    .blog-link:hover {
        color: var(--primary-dark);
    }
    /* 分页样式 */
    .blog-pagination{
        margin-top:50px;
        text-align:center;
    }
    .blog-pagination .page-numbers{
        border:1px solid #C9A84C;
        color:#0B1F3A;
        padding:6px 8px;
        margin:0 3px;
        border-radius:4px;
        text-decoration:none;
    }
    .blog-pagination .page-numbers.current{
        background:#C9A84C;
        color:#fff;
    }
