#contact {
    width: 100%;
}

#contact > .headerBox {
    width: 100%;
    position: relative;
}

#contact > .headerBox  > img {
    width: 100%; /* 设置为自动适应 */
    height: auto; /* 设置为自动适应 */
    max-width: 100%; /* 最大宽度限制为容器宽度的百分之百 */
    max-height: 100%; /* 最大高度限制为容器高度的百分之百 */
}

#contact > .headerBox > .headerContent {
    position: absolute;
    width: 1200px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#contact > .headerBox > .headerContent > .headerLine {
    width: 46px;
    height: 4px;
    background: #1969F1;
    border-radius: 8px;
    margin-bottom: 32px;
}

#contact > .headerBox > .headerContent > h2 {
    font-size: 46px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 65px;
}

#contact > .contactContent {
    width: 100%;
    margin: 87px 0;
}

#contact > .contactContent > .content {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#contact > .contactContent > .content > .info  {
    height: 100%;
}

#contact > .contactContent > .content > .info > h2 {
    font-size: 26px;
    font-weight: 500;
    color: #222222;
    line-height: 37px;
}

#contact > .contactContent > .content > .info > em {
    display: block;
    width: 33px;
    height: 2px;
    background: #0866FF;
    border-radius: 8px;
    margin-top: 12px;
}

#contact > .contactContent > .content > .info > ul {
    height: 338px;
    width: 100%;

}

#contact > .contactContent > .content > .info > ul > li {
    width: 100%;
    height: 46px;
    margin-top: 44px;
    display: flex;
}

#contact > .contactContent > .content > .info > ul > li > .ownInfo {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
    color: #686868;
    line-height: 20px;
    margin-left: 14px;
    letter-spacing: 1px;
}

#contact > .contactContent > .content > .info > ul > li > .ownInfo > li:nth-child(2n) {
    font-weight: 500;
}

#contact > .contactContent >  .map {
    width: 1200px;
    margin: 100px auto;
    height: 490px;
}

#contact > .contactContent > .content > .form {
    width: 520px;
    height: 510px;
}

#contact > .contactContent > .content > .form > h2 {
    font-size: 26px;
    font-weight: 500;
    color: #222222;
    line-height: 37px;
}

#contact > .contactContent > .content > .form > em {
    display: block;
    width: 33px;
    height: 2px;
    background: #0866FF;
    border-radius: 8px;
    margin-top: 12px;
}

#contact > .contactContent > .content > .form > .formBox {
    width: 100%;
    height: 340px;
    margin-top: 43px;
}

#contact > .contactContent > .content > .form > .formBox > form {
    width: 100%;
    height: 100%;

}

#contact > .contactContent > .content > .form > .formBox > form > .nameBox {
    width: 100%;
    height: 42px;
    margin-bottom: 12px;
}
#contact > .contactContent > .content > .form > .formBox > form > .nameBox > .inputGroup {
    width: 100%;
    height: 100%;
    background: #F4F4F4;
    border: none;
    padding: 10px;
    font-size: 14px;
    color: #676767;
    border-radius: 4px;
    box-sizing: border-box;
}

#contact > .contactContent > .content > .form > .formBox > form > .nameBox > .inputGroup:focus {
    outline: none; /* 取消选中状态的默认外边框 */
    /*border: 2px solid red !important; !* 自定义选中状态下的边框样式 *!*/
    box-shadow: 0 0 2px #0866FF; /* 添加阴影效果以突出显示 */
}

#contact > .contactContent > .content > .form > .formBox > form > .nameBox2 {
    list-style: none;
    padding: 0;
    width: 100%;
    height: 42px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

#contact > .contactContent > .content > .form > .formBox > form > .nameBox2 > li {
    width: 256px;
    height: 100%;
}

#contact > .contactContent > .content > .form > .formBox > form > .nameBox2 > li > input , select {
    width: 100%;
    height: 100%;
    background: #F4F4F4;
    border: none;
    padding: 10px;
    font-size: 14px;
    color: #676767;
    border-radius: 4px;
    box-sizing: border-box;
}

#contact > .contactContent > .content > .form > .formBox > form > .nameBox2 > li > input:focus {
    outline: none; /* 取消选中状态的默认外边框 */
    /*border: 2px solid red !important; !* 自定义选中状态下的边框样式 *!*/
    box-shadow: 0 0 2px #0866FF; /* 添加阴影效果以突出显示 */
}
#contact > .contactContent > .content > .form > .formBox > form > .nameBox2 > li > select:focus {
    outline: none; /* 取消选中状态的默认外边框 */
    /*border: 2px solid red !important; !* 自定义选中状态下的边框样式 *!*/
    box-shadow: 0 0 2px #0866FF; /* 添加阴影效果以突出显示 */
}


#contact > .contactContent > .content > .form > .formBox > form > .textareaBox > textarea:focus {
    outline: none; /* 取消选中状态的默认外边框 */
    /*border: 2px solid red !important; !* 自定义选中状态下的边框样式 *!*/
    box-shadow: 0 0 2px #0866FF; /* 添加阴影效果以突出显示 */
}

#contact > .contactContent > .content > .form > .formBox > form > .btn {
    width: 100%;
    height: 100px;
}

#contact > .contactContent > .content > .form > .formBox > form > .btn > button {
    width: 138px;
    height: 46px;
    background: #0866FF;
    border-radius: 23px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    border: none;
    cursor: pointer;
    transition: .3s;
    float: right;
}

#contact > .contactContent > .content > .form > .formBox > form > .btn > button:hover {
    opacity: .9;
}

