﻿@charset "utf-8";

 /* ========== 服务项目页面专用样式 ========== */
        :root {
            --primary-green: #49ac35;
            --dark-green: #003429;
            --orange: #F5821E;
            --light-bg: #f8fbf9;
            --text-dark: #4e6266;
            --shadow-sm: 0 8px 20px -6px rgba(0, 52, 41, 0.08);
            --shadow-hover: 0 20px 35px -12px rgba(0, 52, 41, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: linear-gradient(145deg, #f5f8f7 0%, #ffffff 100%);
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            color: #1f2d3d;
            line-height: 1.5;
        }
        
        /* ========== 服务Banner ========== */
        .service-hero {
            background: linear-gradient(105deg, #003429 0%, #0a5c4a 50%, #1a7a62 100%);
            padding: 4rem 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .service-hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(73, 172, 53, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .service-hero .container {
            width: 80%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .service-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        
        .service-hero p {
            font-size: 1.2rem;
            opacity: 0.85;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 面包屑 */
        .breadcrumb {
            width: 80%;
            max-width: 1400px;
            margin: 1.5rem auto 0;
            font-size: 0.85rem;
            color: #8ba0a0;
        }
        
        .breadcrumb a {
            color: #8ba0a0;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: var(--orange);
        }
        
        .breadcrumb .separator {
            margin: 0 8px;
        }
        
        .breadcrumb .current {
            color: var(--primary-green);
        }
        
        /* ========== 服务卡片区域 ========== */
        .services-section {
            width: 80%;
            max-width: 1400px;
            margin: 3rem auto 5rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            color: var(--dark-green);
            margin-bottom: 0.8rem;
        }
        
        .section-header p {
            color: var(--text-dark);
            font-size: 1rem;
        }
        
        /* 服务网格 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        /* 服务卡片 */
        .service-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.35s ease;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 52, 41, 0.06);
            text-align: center;
            padding: 2.5rem 1.8rem;
            position: relative;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--orange));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(73, 172, 53, 0.2);
        }
        
        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.2rem;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 0.8rem;
        }
        
        .service-desc {
            color: var(--text-dark);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .service-features {
            list-style: none;
            text-align: left;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 52, 41, 0.08);
        }
        
        .service-features li {
            font-size: 0.85rem;
            color: var(--text-dark);
            padding: 0.4rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .service-features li::before {
            content: "✓";
            color: var(--primary-green);
            font-weight: bold;
        }
        
        /* 特色优势区域 */
        .advantages-section {
            background: linear-gradient(135deg, #f0f9f5 0%, #e8f5ed 100%);
            padding: 6rem 0;
            margin: 2rem 0;
            border-radius: 32px;
        }
        
        .advantages-container {
            width: 80%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .advantage-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .advantage-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .advantage-item h4 {
            font-size: 1.2rem;
            color: var(--dark-green);
            margin-bottom: 0.5rem;
        }
        
        .advantage-item p {
            font-size: 0.9rem;
            color: var(--text-dark);
        }
        
        /* 服务流程 */
        .process-section {
            width: 80%;
            max-width: 1400px;
            margin: 4rem auto;
            padding: 2rem 0;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .process-step {
            text-align: center;
            padding: 1.5rem 1rem;
        }
        
        .step-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-green), #2d7a20);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0 auto 1rem;
        }
        
        .process-step h4 {
            font-size: 1.05rem;
            color: var(--dark-green);
            margin-bottom: 0.4rem;
        }
        
        .process-step p {
            font-size: 0.88rem;
            color: var(--text-dark);
            line-height: 1.5;
        }
        
        /* 价格区间提示 */
        .price-note {
            background: white;
            border-radius: 20px;
            padding: 3rem 2rem 5rem;
            text-align: center;
            margin: 3rem 0;
            border: 1px solid rgba(73, 172, 53, 0.15);
            line-height: 1.8;
        }
        
        .price-note h3 {
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            margin-top: 2.5rem;
            font-size: 1.4rem;
        }
        
        .price-tag {
            font-size: 2.2rem;
            color: var(--orange);
            font-weight: 700;
        }
        
        .price-note p {
            color: var(--text-dark);
            margin-top: 0.8rem;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        
        /* CTA按钮 */
        .cta-section {
            text-align: center;
            margin: 3rem 0 4rem;
        }
        
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, var(--primary-green), #2d7a20);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(73, 172, 53, 0.3);
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(73, 172, 53, 0.4);
        }
        
        /* 响应式 */
        @media (max-width: 1100px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .process-steps {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .service-hero .container, .services-section, .breadcrumb, .advantages-container, .process-section {
                width: 85%;
            }
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            .service-hero h1 {
                font-size: 2rem;
            }
            .service-hero p {
                font-size: 1rem;
            }
            .services-section, .process-section {
                width: 90%;
            }
        }