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

.contact-banner {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    padding: 50px 0;
    color: #fff;
}

.contact-banner-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-banner-subtitle {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 300;
}

.contact-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 40px;
}

/* 联系信息卡片 */
.contact-info-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.contact-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-logo-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.contact-brand-text h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.contact-brand-text p {
    font-size: 13px;
    color: #999;
}

.contact-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #f5f5f5;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background-color: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    fill: #1a73e8;
}

.contact-item-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    min-width: 80px;
}

.contact-item-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 0;
}

.contact-item-desc {
    font-size: 13px;
    color: #999;
    margin-left: 10px;
}

/* 地图区域 */
.contact-map-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-map {
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: #1a73e8;
}

.contact-map  img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.map-placeholder-text {
    font-size: 14px;
    font-weight: 500;
    color: #1a73e8;
}

.contact-address {
    padding: 25px 30px;
    background-color: #fff;
}

.address-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.address-content {
    display: flex;
    gap: 10px;
}

.address-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.address-icon svg {
    width: 20px;
    height: 20px;
    fill: #1a73e8;
}

.address-text {
    flex: 1;
}

.address-main {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.6;
}

.address-sub {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

/* 响应式 */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-map-card {
        padding: 24px;
    }

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