/* 关于我们页面特定样式 */
.contact-section {
    background: var(--section-bg);
    padding: 60px 0;
    margin-top: 60px;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin: 10px 0;
    color: var(--text-color);
    font-size: 16px;
}

.wechat-qrcode {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wechat-qrcode:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.wechat-qrcode img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4px;
    background: white;
}

.wechat-qrcode p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    color: #666;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .wechat-qrcode {
        padding: 15px;
    }
    
    .wechat-qrcode img {
        width: 100px;
        height: 100px;
    }
} 