.main {
    background: #eeeeee;
    color: #15194f;
}

.wrapper {
    max-width: 1200rem;
    margin: auto;
}

.captchaImage-container{
    max-width: 400px;
}

.wrapper .banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 235rem;
    max-width: 1200rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40rem;
    color: #fff;
    flex-direction: column;
    position: relative;
}

.wrapper .banner .logo-box {
    position: absolute;
    left: 60rem;
    top: 20rem;
}

.wrapper .banner .logo-box .worm-logo {
    width: 200rem;
    height: 42rem;
}

.wrapper .banner .logo-box .worm-logo * {
    fill: #fff;
}

.wrapper .banner .en {
    font-size: 22rem;
    border-top: 2px solid #fff;
    padding-top: 8rem;
    margin-top: 8rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 36px;
}


::-webkit-scrollbar {
    display: block;
    width: 12px;
    /* 设置滚动条宽度 */
    height: 12px;
    /* 设置滚动条高度（水平滚动条） */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* 滚动条轨道颜色 */
}

::-webkit-scrollbar-thumb {
    background: #888;
    /* 滚动条滑块颜色 */
    border-radius: 6px;
    /* 滑块圆角 */
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* 鼠标悬停时滑块颜色 */
}


.modular {
    padding: 0;
    background: none;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
}

.form-container {
    margin: 0 auto;
    padding: 20rem 50rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f2faff;
}

.form-container .title {
    margin-top: 30rem;
    font-size: 24rem;
    padding-bottom: 30rem;
    margin-bottom: 30rem;
    border-bottom: 1px solid #0607ac;
    line-height: 1.2;
}

.form-container .title span {
    font-size: 18rem;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.required:after {
    content: " *";
    color: red;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    background: #fff;
}



.select2-container--default .select2-selection--single {
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

.select2-container--default .select2-dropdown {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #000ea3;
    color: white;
}

.captcha-container {
    display: flex;
    align-items: center;
}

.captcha-image {
    margin-left: 10px;
    cursor: pointer;
}

button {
    background-color: #000ea3;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.modular1 {
    display: flex;
    padding-top: 40rem;
    margin-top: 60rem;
    border-top: 1px solid #0607ac;
    padding-bottom: 30rem;
    font-weight: bold;
}

.modular2 {
    padding-bottom: 40rem;
    border-bottom: 1px solid #0607ac;
    margin-bottom: 60rem;
}

.modular1 .left {
    font-size: 24rem;
    flex: 1;
}

.modular1 .left .en {
    font-size: 18rem;
}

.modular1 .right {
    display: flex;
    gap: 26rem;
    color: #1c1c8b;
    align-self: flex-start;
}

.modular1 .right .btn {
    cursor: pointer;
    transition: .5s;
}

.modular1 .right .btn:hover {
    opacity: 0.7;
}

.modular3 {
    display: flex;
    flex-direction: column;
    gap: 32rem;
}

.modular3 .t {
    font-size: 18rem;
}

.modular3 .e {
    font-size: 14rem;
    color: #989898;
}

.modular3 .a {
    font-weight: bold;
    display: flex;
    align-items: start;
    gap: 10rem;
}

.modular3 .a input{
    margin-top: 5rem;
}

.modular3 .a a {
    color: #0607ac;
}

.modular4 {
    margin-top: 60rem;
    margin-bottom: 70rem;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .modular3 .t,
    .modular3 .e,
    .form-container .title,
    .modular1 .left{
        font-size: 14px;
    }
    .form-container .title span,
    .modular1 .left .en{
        font-size: 12px;
    }
    .modular1 {
        flex-direction: column;
        align-items: start;
    }
}