/* 联系我们页面专用样式 */

/* 联系信息部分 */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-section {
    margin-bottom: 40px;
}

.contact-section h3 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #2e7d32;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: #2e7d32;
    margin-bottom: 5px;
}

.contact-details p {
    color: #616161;
}

.hotline {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1b5e20;
    letter-spacing: 1px;
}

/* 二维码部分 */
.qrcode-section {
    flex: 1;
    background: #2e7d32;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qrcode-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.qrcode-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 300px;
}

.qrcode-image {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
}

.qrcode-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 地图部分 */
.map-section {
    padding: 60px 10%;
    text-align: center;
}

.map-section h2 {
    font-size: 2.2rem;
    color: #1b5e20;
    margin-bottom: 40px;
}

.map-container {
    width: 100%;
    height: 400px;
    background: #e8f5e9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-size: 1.2rem;
}

/* 导航栏特殊按钮 */
.contact-nav-btn {
    background: #2e7d32;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 1000px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .qrcode-section {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 5% 30px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-container {
        padding: 20px 5%;
    }
    
    .map-section {
        padding: 40px 5%;
    }
}

@media (max-width: 480px) {
    .contact-info, .qrcode-section {
        padding: 25px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .hotline {
        font-size: 1.2rem;
    }
    
    .map-container {
        height: 300px;
    }
}
