﻿.contact-section {
    height: 421px;
    background: url('../image/bg_2.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contact-info {
    flex: 1;
    color: white;
}

.contact-title-en {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.contact-title-cn {
    font-size: 24px;
    font-weight: normal;
    margin: 0 0 30px 0;
    color: #f0f0f0;
}

.company-info {
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.info-item i {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
    flex-shrink: 0;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}

.company-name span {
    color: #fff;
}

.contact-form {
    flex: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mainColor, #4a90e2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.verification {
    flex-direction: row;
    gap: 10px;
}

.verify-input {
    flex: 1;
}

.verify-code {
    width: 160px;
    height: 44px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    user-select: none;
}

.verify-code:hover {
    background: #eee;
}

.submit-btn {
    background: var(--mainColor, #4a90e2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #357abd;
}