
        /* ===== 联系我们页面独享CSS部分 ===== */
        
        /* 页面标题部分 */
        .page-header {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.9)), url('/template/jia/images/9.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);
            }
        }

        /* 联系我们内容部分 */
        .contact-section {
            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;
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            align-items: center;
        }

        .contact-info-section {
            padding: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .contact-info-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(201, 169, 110, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
            color: var(--secondary-color);
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .contact-details p {
            color: var(--gray-color);
            margin-bottom: 5px;
        }

        .contact-details a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 600;
        }

        .contact-details a:hover {
            color: var(--secondary-color);
        }

        /* 二维码部分 */
        .qrcode-section {
            text-align: center;
            padding: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .qrcode-title {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .qrcode-container {
            width: 220px;
            height: 220px;
            margin: 0 auto 20px;
            background-color: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .qrcode-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .qrcode-desc {
            color: var(--gray-color);
            max-width: 300px;
            margin: 0 auto;
        }

        /* 服务流程部分 */
        .process-section {
            background-color: #f8f9fa;
            padding: 100px 0;
        }

        .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);
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .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;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .contact-info-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .process-step {
                flex: 0 0 100%;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .contact-info-section, .qrcode-section {
                padding: 30px 20px;
            }
        }