    /* ===== 联系我们页面独享CSS部分 ===== */
        .contact-section {
            margin-top: 70px;
            padding: 50px 0;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px 0;
            background: var(--light-color);
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .page-header h1 {
            margin-bottom: 10px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .contact-info {
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .contact-info h2 {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #E2E8F0;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
            animation: pulseIcon 2s infinite;
        }
        
        @keyframes pulseIcon {
            0% { 
                box-shadow: 0 0 0 0 rgba(10, 36, 99, 0.7);
                transform: scale(1);
            }
            70% { 
                box-shadow: 0 0 0 10px rgba(10, 36, 99, 0);
                transform: scale(1.05);
            }
            100% { 
                box-shadow: 0 0 0 0 rgba(10, 36, 99, 0);
                transform: scale(1);
            }
        }
        
        .contact-details h3 {
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .contact-details p {
            margin-bottom: 5px;
        }
        
        .phone-number {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
            margin-top: 5px;
            display: block;
            animation: pulsePhone 2s infinite;
        }
        
        .wechat-section {
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        
        .wechat-section h2 {
            margin-bottom: 20px;
        }
        
        .wechat-qrcode {
            width: 200px;
            height: 200px;
            background: white;
            margin: 0 auto 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            border: 1px solid #E2E8F0;
            animation: float 3s ease-in-out infinite;
        }
        
         .wechat-qrcode img {
            width: 100%;
            height: 100%;}
        
        .wechat-qrcode span {
            color: var(--dark-color);
            font-size: 14px;
            text-align: center;
        }
        
        .wechat-desc {
            margin-bottom: 20px;
            color: #64748B;
        }
        
        /* 服务特色 */
        .service-features {
            margin-top: 50px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .feature-icon {
            font-size: 48px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* 常见问题 */
        .faq-section {
            margin-top: 50px;
            background: var(--light-color);
            padding: 50px;
            border-radius: 15px;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: rgba(10, 36, 99, 0.05);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .faq-toggle {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }
        
        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .faq-section {
                padding: 30px 20px;
            }
        }