/* 联系我们 - 现代风格 */

.contact-page {
    width: 1000px;
    margin: 0 auto;
    padding: 30px 0 40px;
}

.contact-breadcrumb {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}
.contact-breadcrumb a {
    color: var(--text-body);
    text-decoration: none;
}
.contact-breadcrumb a:hover {
    color: var(--primary);
}
.contact-breadcrumb .sep {
    margin: 0 8px;
}

.contact-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.contact-main {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
}

.contact-cards {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f0fe;
    border-radius: 50%;
}

.card-body h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.card-body p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-height: 320px;
    background: #f0f2f5;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    gap: 8px;
}
.map-hint {
    font-size: 12px;
    color: var(--text-muted);
}

.contact-content {
    padding: 24px 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    border-top: 1px solid #eee;
}
.contact-content img {
    max-width: 100%;
}

/* 响应式 */
@media (max-width: 1040px) {
    .contact-page {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 768px) {
    .contact-title {
        font-size: 22px;
    }
    .contact-main {
        flex-direction: column;
        gap: 20px;
    }
    .contact-cards {
        flex: none;
    }
    .contact-map {
        min-height: 240px;
    }
}
