

        /* ===== 服务页面独享CSS部分 ===== */
        
        /* 页面标题部分 */
        .page-header {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)), url('/template/jia/images/13.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            margin-top: 70px;
        }

        .page-title {
            font-size: 48px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }

        .page-subtitle {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.8s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 服务分类导航 */
        .service-nav {
            background-color: var(--light-color);
            padding: 20px 0;
            position: sticky;
            top: 70px;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .service-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .category-btn {
            padding: 10px 20px;
            background-color: white;
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            color: var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .category-btn:hover, .category-btn.active {
            background-color: var(--primary-color);
            color: white;
        }

        /* 服务详情部分 */
        .services-section {
            padding: 100px 0;
        }

        .service-category-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .service-category-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: inline-block;
        }

        .service-category-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .service-category-title p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .service-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-header {
            background-color: var(--primary-color);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }

        .service-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .service-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .service-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 600;
        }

        .service-price {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .service-price span {
            font-size: 16px;
            font-weight: normal;
            color: #ddd;
        }

        .service-content {
            padding: 25px;
        }

        .service-info {
            margin-bottom: 25px;
        }

        .info-section {
            margin-bottom: 20px;
        }

        .info-section h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }

        .info-section h4 i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .info-list {
            list-style-type: none;
        }

        .info-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 20px;
        }

        .info-list li:last-child {
            border-bottom: none;
        }

        .info-list li::before {
            content: '•';
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .service-action {
            text-align: center;
            margin-top: 20px;
        }

        .service-btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: var(--transition);
        }

        .service-btn:hover {
            background-color: #b8975a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* 服务流程部分 */
        .process-section {
            background-color: #f8f9fa;
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            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;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #e9ecef;
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            opacity: 0;
            transform: translateY(30px);
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            animation: rotate 8s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .step-content {
            padding: 0 15px;
        }

        .step-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .step-content p {
            color: var(--gray-color);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-container {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .process-steps {
                flex-wrap: wrap;
            }
            
            .process-step {
                flex: 0 0 50%;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .phone-number {
                display: none;
            }
            
            .page-title {
                font-size: 36px;
            }
            
            .page-subtitle {
                font-size: 18px;
            }
            
            .service-category-title h2 {
                font-size: 30px;
            }
            
            .process-step {
                flex: 0 0 100%;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .service-categories {
                flex-direction: column;
                align-items: center;
            }
        }