/* 联系我们板块样式 */
.section-contact {
    width: 100%;
    padding: 60px 8vw;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.contact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 40px;
}

.contact-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-email {
    color: #FFD700;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-email:hover {
    color: #ffffff;
}

.contact-email i {
    font-size: 1.8rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .section-contact {
        padding: 40px 5vw;
    }

    .contact-email {
        font-size: 1.2rem;
    }

    .map-container {
        height: 300px;
    }
}

/* 平板设备优化 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .section-contact {
        padding: 50px 6vw;
    }

    .map-container {
        height: 350px;
    }
}
