/* Banner区域 */
.banner {
    height: 750px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/contact-banner.png') no-repeat center/cover;
}

.banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(0,102,204,0.8), rgba(0,102,204,0.6)); */
}

/* 联系信息 */
/* .contact-info {
    padding: 80px 0;
    background: #fff;
} */

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.info-icon .icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.info-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* 留言表单 */
.contact-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-wrapper {
    display: flex;
    gap: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.form-left {
    flex: 1;
}

.form-left h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.form-left p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0,102,204,0.2);
}

.submit-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #0052cc;
}

.form-right {
    flex: 1;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

/* 二维码区域 */
.qrcode-section {
    padding: 60px 0;
    background: #fff;
}

.qrcode-wrapper {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.qrcode-item p {
    font-size: 16px;
}

/* 响应式布局 */
@media screen and (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-wrapper {
        flex-direction: column;
    }

    #map {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .qrcode-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* 面包屑导航 */
.breadcrumb-wrapper {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.location a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location a:hover {
    color: #0052cc;
}

.location span {
    color: #333;
}

.location span:first-child {
    color: #666;
}

/* 联系信息图标 */
.info-icon i {
    font-family: "iconfont";
    font-style: normal;
    font-size: 28px;
}

.icon-location::before {
    content: "\e900";  /* 使用你的字体图标编码 */
}

.icon-phone::before {
    content: "\e901";
}

.icon-email::before {
    content: "\e902";
}

.icon-web::before {
    content: "\e903";
} 