/* 联系我们页面特有样式 */
.hanlian_contact_section {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 20px;
}

.hanlian_contact_container {
    width: 100%;
    max-width: 1450px;
}

/* 新的联系页面Banner样式，使用hnlin_前缀以匹配list_image.html */
.hnlin_banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hnlin_banner_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hnlin_banner_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hnlin_banner_slide.active {
    opacity: 1;
}

.hnlin_banner_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

.hnlin_banner_content_item {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hnlin_banner_title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hnlin_banner_subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hnlin_banner_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1.5s ease;
}

.hnlin_btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hnlin_btn_primary {
    background: #3774EB;
    color: white;
}

.hnlin_btn_primary:hover {
    background: #2a68e0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hnlin_btn_secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hnlin_btn_secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* 保留原有的内页Banner样式以备其他可能用途 */
.hanlian_inner_banner {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.hanlian_inner_banner_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hanlian_inner_banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hanlian_inner_banner_title {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hanlian_inner_banner_subtitle {
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* 新的联系信息样式 */
.hanlian_contact_wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

.hanlian_contact_header {
    background: linear-gradient(120deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.hanlian_contact_title {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.hanlian_contact_subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hanlian_contact_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.hanlian_contact_info_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.hanlian_contact_info_card {
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: 10px;
    background: #f8f9ff;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.hanlian_contact_info_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hanlian_contact_info_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(120deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.5rem;
}

.hanlian_contact_info_details h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    color: #333;
}

.hanlian_contact_info_details p {
    margin: 0;
    font-size: 1.1rem;
    color: #666;
}

.hanlian_contact_qr_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.hanlian_qr_card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9ff;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.hanlian_qr_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hanlian_qr_image {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hanlian_qr_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hanlian_qr_info h3 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    color: #333;
}

.hanlian_qr_info p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hanlian_contact_content {
        grid-template-columns: 1fr 1fr;
        padding: 30px;
        gap: 25px;
    }
    
    .hnlin_banner {
        height: 450px;
    }
    
    .hnlin_banner_title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hanlian_contact_content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .hanlian_contact_header {
        padding: 30px 15px;
    }
    
    .hanlian_contact_title {
        font-size: 2rem;
    }
    
    .hanlian_qr_card {
        padding: 15px;
    }
    
    .hanlian_qr_card:hover {
        transform: none;
    }
    
    .hnlin_banner {
        height: 400px;
    }
    
    .hnlin_banner_title {
        font-size: 2.2rem;
    }
    
    .hnlin_banner_subtitle {
        font-size: 1.1rem;
    }
    
    .hnlin_banner_buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hnlin_banner {
        height: 350px;
    }
    
    .hnlin_banner_title {
        font-size: 2rem;
    }
    
    .hnlin_banner_subtitle {
        font-size: 1rem;
    }
    
    .hanlian_inner_banner {
        height: 200px;
    }
    
    .hanlian_inner_banner_title {
        font-size: 2rem;
    }
    
    .hanlian_contact_content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .hanlian_contact_header {
        padding: 30px 15px;
    }
    
    .hanlian_contact_title {
        font-size: 1.8rem;
    }
    
    .hanlian_qr_image {
        width: 180px;
        height: 180px;
    }
    
    .hanlian_contact_qr_wrapper {
        gap: 20px;
    }
    
    .hanlian_contact_info_grid {
        gap: 15px;
    }
    
    .hanlian_contact_info_card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hnlin_banner {
        height: 320px;
    }
    
    .hnlin_banner_title {
        font-size: 1.8rem;
    }
    
    .hnlin_banner_subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hnlin_banner_buttons {
        gap: 12px;
    }
    
    .hnlin_btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .hanlian_contact_header {
        padding: 25px 10px;
    }
    
    .hanlian_contact_title {
        font-size: 1.6rem;
    }
    
    .hanlian_contact_subtitle {
        font-size: 1rem;
    }
    
    .hanlian_contact_content {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .hanlian_contact_info_card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .hanlian_contact_info_icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .hanlian_contact_info_details h3 {
        font-size: 1.2rem;
    }
    
    .hanlian_contact_info_details p {
        font-size: 1rem;
    }
    
    .hanlian_qr_image {
        width: 160px;
        height: 160px;
    }
    
    .hanlian_qr_info h3 {
        font-size: 1.2rem;
    }
    
    .hanlian_qr_info p {
        font-size: 0.95rem;
    }
    
    .hanlian_qr_card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hnlin_banner {
        height: 300px;
    }
    
    .hnlin_banner_title {
        font-size: 1.5rem;
    }
    
    .hnlin_banner_content_item {
        padding: 0 15px;
    }
    
    .hanlian_contact_header {
        padding: 20px 10px;
    }
    
    .hanlian_contact_title {
        font-size: 1.5rem;
    }
    
    .hanlian_contact_subtitle {
        font-size: 0.9rem;
    }
    
    .hanlian_contact_content {
        padding: 15px 10px;
        gap: 15px;
    }
    
    .hanlian_contact_info_card {
        padding: 15px 10px;
    }
    
    .hanlian_qr_image {
        width: 150px;
        height: 150px;
    }
    
    .hnlin_btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}