.con-contact-info {
    display: flex;
    gap: 2.083vw;
    width: 100%;
    margin: 4.167vw auto;
    align-items: flex-start;
}

.contact-image,
.contact-details {
    flex-basis: 50%;
    flex-shrink: 0;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.042vw;
}

.company-name {
    font-size: 1.667vw;
    line-height: 36px;
    font-family: 'bold', sans-serif;
    color: #008ee7;
    margin: 0 0 0.521vw 0;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.833vw;
}

.icon-box {
    width: 2.604vw;
    height: 2.604vw;
    background-color: #eeeeee;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #008ee7;
    font-size: 1.302vw;
    flex-shrink: 0;
}

.icon-box-mobile {
    font-size: 1.823vw;
}

.contact-text {
    font-size: 0.938vw;
    color: #333;
    margin: 0;
}

/* 两列均分布局 */
.two-columns {
    justify-content: space-between;
}

.two-columns .contact-item {
    display: flex;
    align-items: center;
    gap: 0.625vw;
    width: 48%;
}


.contact-form-section {
    width: 100%;
    margin: 4.167vw auto 6.25vw;
}

.blue-line {
    width: 100%;
    height: 0.208vw;
    background-color: #008ee7;
    margin-bottom: 1.302vw;
}

.form-title {
    font-size: 1.458vw;
    font-family: 'bold', sans-serif;
    margin-bottom: 2.083vw;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.042vw;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.625vw;
}

.two-columns {
    flex-direction: row;
    gap: 1.042vw;
}

.two-columns input {
    flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 0.781vw 0.625vw;
    font-size: 0.833vw;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    outline-offset: 2px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #008ee7;
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
    opacity: 1;
}

textarea {
    resize: vertical;
    min-height: 5.208vw;
    font-family: inherit;
}

.captcha-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.042vw;
    flex-wrap: wrap;
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 0.625vw;
    flex: 1 1 13.021vw;
}

.captcha-left input {
    flex: 1;
    max-width: 7.813vw;
}

.captcha-code {
    font-family: 'bold', sans-serif;
    font-size: 2.5vw;
    user-select: none;
    color: #000;
    margin-left: 0.521vw;
}

.captcha-desc {
    flex: 1 1 10.417vw;
    font-size: 0.938vw;
    color: #464646;
}

.submit-row {
    justify-content: center;
    align-items: center;
    margin-top: 1.042vw;
}

.submit-row button {
    width: 10.938vw;
    background-color: #008ee7;
    color: #fff;
    font-size: 0.729vw;
    font-family: 'bold', sans-serif;
    padding: 0.625vw 0.938vw;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.submit-row button:hover {
    background-color: #fff;
    border: 1px solid #008ee7;
    color: #008ee7;
}
