    /* 独享CSS - 服务页面特定样式 */
        .page-hero {
            height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7ff 0%, #e2e8ff 100%);
            margin-top: 70px;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/4.jpg');
            background-size: cover;
            animation: heroBackground 20s linear infinite;
        }

        @keyframes heroBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-50px, -50px); }
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            text-align: center;
            margin: 0 auto;
        }

        .page-hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textReveal 1.5s ease-out;
        }

        @keyframes textReveal {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .page-hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--dark);
            animation: textReveal 1.5s ease-out 0.3s both;
        }

        .services-section {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 201, 255, 0.05) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-title h2 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 5px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 2;
        }

        .service-header {
            padding: 25px 25px 15px;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
        }

        .service-icon {
            font-size: 50px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: iconBounce 2s infinite;
        }

        @keyframes iconBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .service-title {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .service-price {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .service-time {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .service-note {
            background-color: #e8f7ff;
            padding: 8px 12px;
            border-radius: 10px;
            font-size: 14px;
            color: var(--primary);
            border-left: 4px solid var(--secondary);
            display: inline-block;
        }

        .service-content {
            padding: 25px;
        }

        .service-info {
            margin-bottom: 20px;
        }

        .service-info h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark);
            display: flex;
            align-items: center;
        }

        .service-info h4 i {
            margin-right: 8px;
            color: var(--primary);
        }

        .service-info ul {
            list-style: none;
            padding-left: 10px;
        }

        .service-info li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .service-info li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        .service-info p {
            color: #666;
            line-height: 1.6;
        }

        .service-process {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            position: relative;
        }

        .process-step {
            text-align: center;
            flex: 1;
            position: relative;
        }

        .step-number {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
            font-size: 14px;
        }

        .step-text {
            font-size: 13px;
            color: #666;
        }

        .service-process::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15%;
            width: 70%;
            height: 2px;
            background: #e0e0e0;
            z-index: 1;
        }

        .service-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 20px;
            text-decoration: none;
        }

        .service-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
        }

        .contact-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><circle fill="white" cx="500" cy="500" r="400"/></svg>');
            background-size: cover;
            animation: rotate 20s linear infinite;
        }

        .contact-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .contact-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .contact-btn {
            display: inline-block;
            padding: 15px 35px;
            background: white;
            color: var(--primary);
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }