/* 联系信息区域 */
.contact-info {
    padding: 80px 0;
    position: relative;
    background: none;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://api.map.baidu.com/staticimage/v2?ak=UZafVntQ6Yk8HGdZPOnrCDNrs2U1sjNU&center=101.754355,36.663174&width=1920&height=800&zoom=16&markers=101.754355,36.663174&markerStyles=-1,https://api.map.baidu.com/images/marker_red.png,1&copyright=1');
    background-size: cover;
    background-position: center;
    filter: brightness(0.95);
    z-index: 1;
}

/* 信息卡片网格 */
.info-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 信息卡片 - 增加透明度 */
.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(8, 66, 138, 0.12);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 66, 138, 0.12);
}

/* 图标样式 */
.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon .iconfont {
    font-size: 36px;
    color: var(--primary-color);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* 二维码样式 */
.qr-code {
    margin-top: 20px;
}

.qr-code img {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* 地图区域 */
.contact-main {
    display: none;
}

.map-wrapper {
    background: #f8f9fa;
    border-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(8, 66, 138, 0.08);
}

.map-container {
    margin-bottom: 0;
}

.map-container h2 {
    display: none;
}

.company-map {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.company-map img {
    width: 100%;
    display: block;
}

/* 地图信息样式 */
.map-info {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
    background: #f8f9fa;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(8, 66, 138, 0.08);
}

.info-item .iconfont {
    font-size: 24px;
    color: var(--primary-color);
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-content p {
    color: #6c757d;
    line-height: 1.6;
}

.location-tip {
    margin-top: 8px;
    font-size: 14px;
    color: var(--primary-color);
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .map-info {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .map-wrapper {
        padding: 30px 20px;
    }
} 