/* 联系我们页面样式 */

/* 页面标题区域样式 */
.page-title {
    background: url('https://www.zkjg.net/img/banner-01.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 200px 0 80px;
    padding-top: 100px !important;
    margin-bottom: 0;
    color: #fff;
    width: 100%;
    overflow: hidden;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-title .container {
    position: relative;
    z-index: 2;
}

.page-title h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

/* 内容区域通用样式 */
.section-padding {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* 联系信息卡片样式 */
.contact-card {
    background-color: white;
    border-radius: 5px;
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    font-size: 2rem;
}

.contact-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* 地图容器样式 */
.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 联系表单样式 */
.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.contact-form .form-label {
    font-weight: 500;
    color: #555;
}

.contact-form textarea {
    resize: none;
}

.contact-form .btn-primary {
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 社交媒体卡片样式 */
.social-card {
    background-color: white;
    border-radius: 5px;
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qrcode-container {
    margin-bottom: 20px;
}

.qrcode-container img {
    max-width: 80%;
    border: 1px solid #eee;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}

.social-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.social-card p {
    color: #666;
    font-size: 0.95rem;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .page-title {
        padding: 180px 0 80px;
    }
    
    .page-title h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .page-title {
        padding: 150px 0 60px;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .page-title .breadcrumb-item, 
    .page-title .breadcrumb-item a {
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .contact-card h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .page-title {
        padding: 140px 0 50px;
    }
    
    .page-title h1 {
        font-size: 1.7rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .qrcode-container img {
        max-width: 100%;
    }
} 