/* 联系我们页面样式 */

/* 页面包装器 */
.contact-page-wrapper {
    background: #f5f8fa;
}

/* 顶部横幅 */
.contact-hero-banner {
    height: 400px;
    background: url('../../assets/img/lxwm/top.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.hero-content {
    color: white;
    max-width: 600px;
}


/* 主要内容区域 */
.contact-main-content {
    padding: 80px 0;
    background: white;
}

.contact-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* 联系信息区域 */
.contact-info-section {
    flex: 1;
    max-width: 500px;
}

.contact-info-card {
    background: white;
    padding: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(221, 221, 221, 1);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 14px;
    color: #666;
    line-height: 14px;
    margin-bottom: 8px; 
    font-weight: 500;
}

.info-text {
    font-size: 16px;
    line-height: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

/* 地图区域 */
.map-section {
    flex: 1;
    max-width: 800px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .contact-container {
        max-width: 1200px;
        gap: 60px;
        padding: 0 30px;
    }

    .hero-overlay {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .contact-hero-banner {
        height: 300px;
    }

    .hero-overlay {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-main-content {
        padding: 60px 0;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .contact-info-section,
    .map-section {
        max-width: 100%;
    }

    .map-container {
        height: 300px;
    }

    .info-item {
        margin-bottom: 30px;
    }

    .info-icon {
        margin-right: 15px;
        margin-top: 5px;
    }

    .info-label {
        font-size: 14px;
    }

    .info-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-hero-banner {
        height: 250px;
    }

    .hero-overlay {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .contact-main-content {
        padding: 40px 0;
    }

    .contact-container {
        gap: 30px;
        padding: 0 15px;
    }

    .map-container {
        height: 250px;
    }

    .info-item {
        margin-bottom: 25px;
    }

    .info-icon {
        margin-right: 12px;
        width: 20px;
        height: 20px;
    }

    .info-icon i {
        font-size: 20px;
    }

    .info-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .info-text {
        font-size: 15px;
    }
}
