        
        /* ===== 联系我们页面独享CSS部分 ===== */
        .contact-page {
            margin-top: 100px;
            min-height: calc(100vh - 400px);
        }
        
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            animation: textGlow 3s infinite alternate;
        }
        
        @keyframes textGlow {
            0% { text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); }
            100% { text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.7); }
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 联系信息板块 */
        .contact-info-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-card {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: var(--secondary-color);
            transition: left 0.5s;
        }
        
        .contact-card:hover::before {
            left: 0;
        }
        
        .contact-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            animation: iconFloat 3s infinite ease-in-out;
        }
        
        @keyframes iconFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .contact-card p {
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .contact-phone-large {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            display: block;
            margin: 15px 0;
            animation: phonePulse 2s infinite;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-top: 10px;
        }
        
        .contact-btn:hover {
            background: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* 微信二维码板块 */
        .wechat-section {
            padding: 80px 0;
            text-align: center;
        }
        
        .wechat-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            padding: 50px 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .wechat-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
            z-index: 1;
        }
        
        .wechat-content {
            position: relative;
            z-index: 2;
        }
        
        .wechat-container h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .wechat-container p {
            color: var(--gray-color);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .wechat-qr {
            width: 200px;
            height: 200px;
            margin: 0 auto 25px;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            animation: qrFloat 4s infinite ease-in-out;
        }
        
        .wechat-qr img {
            width: 100%;
            height: 100%;
            display: block;
        }
        
        .wechat-tip {
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-top: 15px;
        }
        
        /* 服务时间板块 */
        .service-time {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .time-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .time-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .time-card {
            background: white;
            border-radius: 8px;
            padding: 30px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .time-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .time-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .time-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .time-card p {
            color: var(--gray-color);
        }
        
        /* 常见问题板块 */
        .faq-section {
            padding: 80px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .faq-question {
            padding: 20px 25px;
            background: var(--primary-color);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--accent-color);
        }
        
        .faq-answer {
            padding: 25px;
            line-height: 1.7;
            color: var(--dark-color);
        }
        
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .time-grid {
                grid-template-columns: 1fr;
            }
            
            .wechat-container {
                padding: 30px 20px;
            }
        }