/* 页面标题banner */
.page-banner {
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.banner-content h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    color: #666;
}

/* 地图区域 */
.map-section {
    position: relative;
    height: 500px;
    background: #f5f5f5;
}

.contact-map {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

.navigate-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navigate-btn:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* 联系信息区域 */
.contact-section {
    padding: 60px 0;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.company-info {
    flex: 1;
}

.company-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.company-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.info-list {
    margin-top: 20px;
}

.info-item {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.info-item .label {
    color: #333;
    margin-right: 10px;
}

/* 二维码区域 */
.qr-codes {
    display: flex;
    gap: 30px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.qr-item p {
    color: #666;
    font-size: 14px;
}

/* 响应式布局 */
@media screen and (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .qr-codes {
        margin-top: 40px;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .page-banner {
        height: 160px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .map-section {
        height: 400px;
    }
}

@media screen and (max-width: 576px) {
    .qr-codes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .company-info h2 {
        font-size: 20px;
    }

    .info-item {
        font-size: 14px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }
.info-item:nth-child(4) { animation-delay: 0.4s; }

/* 高德地图信息窗体样式 */
.info-window {
    padding: 10px;
}

.info-window h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.info-window p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 修改地图控件样式 */
.amap-scale {
    color: #333;
}

.amap-toolbar {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} 