        /* ===== 联系我们页面独享CSS部分 ===== */
        
        /* 页面标题区域 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 120px 0 60px;
            margin-top: 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            animation: wave 10s infinite linear;
        }
        
        @keyframes wave {
            0% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(-50px);
            }
            100% {
                transform: translateX(0);
            }
        }
        
        .page-header-content {
            position: relative;
            z-index: 2;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            animation: fadeInDown 0.8s ease;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 0.8s 0.2s ease both;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 联系方式区域 */
        .contact-section {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .contact-header {
            background: var(--primary-color);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .contact-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .contact-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .contact-content {
            padding: 50px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .contact-info-card {
            text-align: center;
            padding: 30px;
            background: var(--light-color);
            border-radius: 8px;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s forwards;
        }
        
        .contact-info-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .contact-info-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .contact-info-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
            position: relative;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(26, 60, 110, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(26, 60, 110, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(26, 60, 110, 0);
            }
        }
        
        .contact-info-card h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-info-card p {
            margin-bottom: 10px;
        }
        
        .contact-phone {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .contact-hours {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* 微信二维码区域 */
        .wechat-section {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, var(--light-color) 0%, #e8eff7 100%);
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .wechat-section h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .wechat-section p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .wechat-qrcode {
            max-width: 300px;
            margin: 0 auto;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        .wechat-qrcode img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .wechat-note {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #777;
        }
        
        /* 咨询流程 */
        .consult-process {
            margin: 50px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            opacity: 0;
            transform: translateY(20px);
            animation: processStep 0.6s forwards;
        }
        
        .process-step:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .process-step:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .process-step:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        @keyframes processStep {
            to {
                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 20px;
            color: var(--primary-color);
            font-size: 1.8rem;
            border: 3px solid var(--primary-color);
            position: relative;
        }
        
        .step-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        /* 常见问题 */
        .faq-section {
            margin: 50px 0;
        }
        
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item:hover {
            transform: translateY(-5px);
        }
        
        .faq-question {
            padding: 20px;
            background: var(--light-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question h4 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin: 0;
        }
        
        .faq-question i {
            color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 200px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .contact-content {
                padding: 30px 20px;
            }
        }