/* 联系我们第一屏样式 */
.contact-section {
    min-height: 120vh;
}

/* 左侧图片部分样式 */
.contact-image-wrapper {
    position: relative;
    height: 120vh;
    overflow: hidden;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.image-overlay h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
}

/* 右侧联系信息部分样式 */
.contact-info-wrapper {
    height: 120vh;
    background-color: #cccbcd;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    padding-left: 15px;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: #333;
}

.text-wrapper {
    flex-grow: 1;
    text-align: left;
    padding-left: ;: 1rem;
}

.text-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

.qr-code {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #fff;
    border-radius: 8px;
    margin-right: auto;
    display: block;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-image-wrapper,
    .contact-info-wrapper {
        height: 50vh;
    }
    
    .image-overlay h1 {
        font-size: 2rem;
        writing-mode: horizontal-tb;
        letter-spacing: 0.2rem;
    }
    
    .contact-info-wrapper {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .contact-item {
        gap: 1rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .text-wrapper {
        padding-right: 0.5rem;
    }
    
    .text-wrapper h3 {
        font-size: 1.2rem;
    }
    
    .text-wrapper p {
        font-size: 1rem;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
}

/* 联系我们第二屏样式 */
.contact-form-section {
    min-height: 100vh;
}


/* 左侧信息部分样式 */


.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    height: 120px;
   
}
.form-info-wrapper {
    height: 120vh;
    background-color: #0a27ba;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.form-info-wrapper h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
}

.form-info-wrapper p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* 右侧表单部分样式 */
.form-wrapper {
    height: 120vh;
    background-color: #cccbcd;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-control,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #0a27ba;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(10, 39, 186, 0.25);
}

.captcha-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.captcha-wrapper .form-control {
    flex: 0 0 50%;
    max-width: 50%;
}

.captcha-image {
    height: 42px;
    border-radius: 4px;
}

.submit-btn {
    background-color: #0a27ba;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #081f94;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .form-info-wrapper,
    .form-wrapper {
        height: auto;
        padding: 3rem 1.5rem;
    }
    
    .form-info-wrapper h2 {
        writing-mode: horizontal-tb;
        letter-spacing: 0.2rem;
        margin-bottom: 1rem;
    }
    
    .form-info-wrapper p {
        max-width: none;
    }
    
    .form-wrapper {
        padding-top: 2rem;
    }
    
    .captcha-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-image {
        width: 100%;
        height: auto;
    }
    
    .submit-btn {
        width: 100%;
    }
}