     /* 独享CSS部分 - 服务页面内容 */
        .page-hero {
            height: 50vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 204, 153, 0.1) 100%);
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/13.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: -1;
        }

        .page-hero-content {
            text-align: center;
            width: 100%;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .page-hero h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .page-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #555;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 服务详情样式 */
        .service-details {
            background: white;
        }

        .service-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
        }

        .service-tab {
            padding: 12px 25px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .service-tab.active,
        .service-tab:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
        }

        .service-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .service-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 204, 153, 0.05) 100%);
            border-radius: 20px;
        }

        .service-icon {
            width: 120px;
            height: 120px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            flex-shrink: 0;
            box-shadow: var(--shadow);
        }

        .service-info h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-info p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .service-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .service-tag {
            display: inline-block;
            background: rgba(0, 204, 153, 0.1);
            color: var(--accent);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .service-details-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .detail-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .detail-card h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .detail-card h4 i {
            color: var(--primary);
        }

        .detail-card ul {
            list-style: none;
        }

        .detail-card li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            color: #555;
        }

        .detail-card li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 1.8rem;
            position: relative;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .process-step:hover .step-icon {
            transform: scale(1.1);
            background: var(--gradient);
            color: white;
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
        }

        .process-step h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .process-step p {
            color: #666;
            font-size: 0.9rem;
        }

        .service-cta {
            text-align: center;
            margin-top: 60px;
            padding: 50px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 204, 153, 0.05) 100%);
            border-radius: 20px;
        }

        .service-cta h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .service-cta p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 102, 255, 0.4);
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .service-header {
                flex-direction: column;
                text-align: center;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .service-tabs {
                gap: 10px;
            }
            
            .service-tab {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .page-hero {
                height: 40vh;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .service-details-content {
                grid-template-columns: 1fr;
            }
        }