     /* ===== 独享CSS ===== */
        /* 页面标题样式 */
        .page-hero {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.9)), url('/template/jia/images/10.jpg');
            background-size: cover;
            background-position: center;
            height: 40vh;
            min-height: 300px;
            display: flex;
            align-items: center;
            margin-top: 80px;
            color: white;
            text-align: center;
        }
        
        .page-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .page-hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* 服务详情样式 */
        .services-detail-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .section-title p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-detail-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 40px;
            gap: 10px;
        }
        
        .service-tab {
            padding: 12px 25px;
            background-color: white;
            border: 1px solid #e9ecef;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .service-tab:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .service-tab.active {
            background-color: var(--primary-color);
            color: white;
            box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
        }
        
        .service-detail-content {
            display: none;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .service-detail-content.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-detail-header {
            background-color: var(--primary-color);
            color: white;
            padding: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .service-detail-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .service-detail-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .service-detail-body {
            padding: 40px;
        }
        
        .service-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .service-info-card {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 25px;
            transition: var(--transition);
        }
        
        .service-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .service-info-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }
        
        .service-info-card h3 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .service-info-card ul {
            list-style: none;
        }
        
        .service-info-card ul li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .service-info-card ul li::before {
            content: '•';
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .service-process {
            margin-top: 40px;
        }
        
        .service-process h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 30px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #e9ecef;
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-icon {
            width: 60px;
            height: 60px;
            background-color: white;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--primary-color);
            font-size: 1.5rem;
            position: relative;
            transition: var(--transition);
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 25px;
            height: 25px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
        }
        
        .process-step h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .process-step p {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        .service-cta {
            text-align: center;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid #e9ecef;
        }
        
        .service-cta .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .service-cta .btn:hover {
            background-color: #c19d2e;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .service-detail-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .process-step {
                flex: 0 0 calc(50% - 20px);
                margin-bottom: 30px;
            }
            
            .process-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .page-hero-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-info-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                flex: 0 0 100%;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero {
                height: 30vh;
                min-height: 250px;
            }
            
            .service-detail-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .service-tab {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
        }