 /* 页面标题 */
        .page-header {
            margin-top: 100px;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--secondary-color);
        }
        
        /* 联系信息区域 */
        .contact-info {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            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: #718096;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
            padding: 40px 30px;
            border-bottom: 4px solid transparent;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 4px solid var(--secondary-color);
        }
        
        .contact-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .contact-card p {
            color: #718096;
            margin-bottom: 20px;
        }
        
        .contact-detail {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* 微信二维码区域 */
        .wechat-section {
            padding: 80px 0;
            background-color: var(--gray-color);
        }
        
        .wechat-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }
        
        .wechat-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            max-width: 350px;
            transition: var(--transition);
        }
        
        .wechat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .qrcode-image {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            border: 1px solid #e2e8f0;
            padding: 10px;
            background-color: white;
        }
        
        .qrcode-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .wechat-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .wechat-card p {
            color: #718096;
            margin-bottom: 20px;
        }
        
        /* 常见问题 */
        .faq {
            padding: 80px 0;
            background-color: white;
        }
        
        .faq-item {
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            background-color: white;
            padding: 20px;
            color: #4a5568;
            display: none;
        }
        
        /* 紧急联系 */
        .emergency-contact {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            text-align: center;
        }
        
        .emergency-contact h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .emergency-contact p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .emergency-phone {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 20px 0;
        }
            /* 响应式设计 */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
                padding: 15px 20px;
            }
            
            nav ul {
                margin: 15px 0;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .wechat-container {
                flex-direction: column;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                margin-top: 130px;
                padding: 40px 0;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .emergency-phone {
                font-size: 1.5rem;
            }
            
            .wechat-card {
                padding: 20px;
            }
            
            .qrcode-image {
                width: 180px;
                height: 180px;
            }
        }