/* 大图banner样式 */
.page-banner {
    position: relative;
    height: 300px;
    background: url('../images/contact-banner.png') no-repeat center;
    background-size: cover;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.banner-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* 面包屑导航 */
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: #FF0000;
}

/* 内容区域样式 */
.contact-content {
    padding: 60px 0;
    background: #f5f5f5;
}

/* 联系信息 */
.contact-info {
    margin-bottom: 50px;
}

.info-item {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.info-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item .icon i {
    font-size: 30px;
    color: #fff;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.info-item p {
    color: #666;
    margin-bottom: 5px;
}

/* 地图 */
.map-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 4px;
}

/* 联系表单 */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px 15px;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.form-control:focus {
    border-color: #FF0000;
    box-shadow: none;
}

.btn-primary {
    background: #FF0000;
    border-color: #FF0000;
    padding: 12px 30px;
    font-size: 16px;
    width: 100%;
}

.btn-primary:hover {
    background: #CC0000;
    border-color: #CC0000;
}

/* 二维码 */
.qrcode-section {
    margin-top: 50px;
}

.qrcode-item {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.qrcode-item img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.qrcode-item p {
    color: #333;
    font-size: 16px;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .contact-main > div {
        margin-bottom: 30px;
    }
    
    .contact-main > div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 150px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-control {
        height: 45px;
    }
    
    textarea.form-control {
        height: 120px;
    }
    
    .qrcode-item img {
        width: 150px;
        height: 150px;
    }
} 