html,
body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 1px;
}

.thanks-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-item {
    width: 100%;
    height: 64rem;
    background: #061753;
    line-height: 64rem;
    padding-left: 40rem;
    font-size: 24rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 500;
    color: #ffffff;
}

.content-item {
    flex: 1;
    display: flex;
}

.content-item-left {
    width: 544rem;
    height: 100%;
    background-image: url('/static/frontend/pc/images/thanks-banner.webp');
    background-repeat: repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 69rem;
    position: relative;
}

.content-item-left h2 {
    font-size: 40rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8rem;
    padding-left: 40rem;
}

.content-item-left p {
    font-size: 18rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #ffffff;
    padding-left: 40rem;
}

.content-item-left strong {
    width: 350rem;
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #ffffff;
    position: absolute;
    bottom: 44rem;
    left: 50%;
    transform: translateX(-50%);
}

.content-item-right {
    flex: 1;
    position: relative;
    padding-top: 48rem;
    padding-left: 60rem;
}

.content-item-right h1 {
    font-size: 56rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 500;
    color: #333333;
    margin-bottom: 12rem;
}

.content-item-right p {
    max-width: 371rem;
    font-size: 16rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #333333;
    line-height: 26rem;
}

.content-item-right a {
    color: #2c7be3;
    text-decoration: none;
}

.reg-content {
    width: 100%;
    display: flex;
    gap: 224rem;
    margin-top: 28rem;
}

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

.form-container strong {
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #333333;
    margin-top: 12rem;
    width: 100%;
    text-align: center;
}

.form-container strong a {
    color: #2C7BE3
}

/* 表单 */
#reg-form {
    max-width: 480rem;
}

.reg-content .form-item {
    display: flex;
    flex-direction: column;
}

.reg-content .form-item h5,
.reg-content h4 {
    font-size: 18rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 500;
    color: #333333;
    margin-bottom: 12rem;
}

.reg-content .form-item h5 span {
    color: red;
}

.reg-content .form-item select {
    width: 480rem;
    height: 44rem;
    background: #ffffff;
    border-radius: 4rem;
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #999999;
    padding-left: 12rem;
    border: 1rem solid #eeeeee;
    /* 关键属性：移除默认外观 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* 设置内边距 */
    padding-left: 12rem;
    padding-right: 12rem;

    /* 自定义箭头 */
    background-image: url('/static/frontend/pc/images/select-down.webp');
    background-repeat: no-repeat;
    background-position: right 15rem center;
    /* 右侧15px的边距 */
    background-size: 12rem;
}
/* 选择后的选项样式 */
#businessType option {
    color: #333333;
    /* 选择后的文本颜色（黑色） */
}

/* 选中选项的样式（某些浏览器支持） */
#businessType option:checked {
    color: #333;
    font-weight: bold;
}

.reg-content .form-item select:focus {
    outline: none;
}

.small-input {
    display: flex;
    gap: 8rem;
    margin-top: 12rem;
    margin-bottom: 16rem;
}

.reg-content .form-item label {
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #666666;
    margin-bottom: 6rem;
}

.reg-content .form-item label span {
    color: red;
}

.reg-content .form-item input {
    background: #ffffff;
    border-radius: 4rem;
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    padding-left: 12rem;
    border: 1rem solid #eeeeee;
    color: #333333;
}

.reg-content .small-input input {
    width: 236rem;
    height: 44rem;
}

.reg-content .form-item input::placeholder {
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #bbbbbb;
}

.reg-content .form-item input:focus,
.reg-content .form-item textarea {
    outline: none;
}

.big-input input {
    width: 480rem;
    height: 44rem;
}

.big-input .form-item {
    margin-bottom: 16rem;
}

.reg-content .form-item textarea {
    width: 480rem;
    height: 124rem;
    background: #f8f9f9;
    border-radius: 4rem;
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    padding-left: 12rem;
    border: none;
    padding-top: 8rem;
}

.reg-content form button {
    width: 480rem;
    height: 48rem;
    background: #061753;
    border-radius: 4rem;
    margin-top: 24rem;
    font-size: 16rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    text-align: center;
    line-height: 48rem;
    color: #ffffff;
    border: none;
}

#errorPhone,
#errorEmail,
#errorText1,
#errorText2 {
    font-size: 10rem;
    color: red;
    opacity: 0;
    display: block;
}

.other-info {
    max-width: 532rem;
    display: flex;
    flex-direction: column;
}

.other-info h3 {
    width: 532rem;
    height: 40rem;
    border-bottom: 1rem solid rgba(51, 51, 51, 0.32);
    margin-bottom: 44rem;
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #666666;
    line-height: 40rem;
}

.other-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24rem;
}

.other-item {
    width: 254rem;
    height: 72rem;
    display: flex;
    flex-direction: column;
}

.other-item div {
    display: flex;
    gap: 14rem;
}

.other-item div img {
    width: 24rem;
    height: 24rem;
}

.other-item div p {
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 500;
    color: #666666;
}

.other-item span {
    font-size: 13rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #999999;
}

.help {
    position: absolute;
    bottom: 44rem;
    right: 40rem;
    font-size: 14rem;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
    color: #666666;
}

.help a {
    color: #2C7BE3;
}

.iti__selected-dial-code,
.iti__country {
    font-size: 12rem;
}

.iti__selected-flag {
    width: 100rem;
    padding-left: 18rem !important;
}

.toastify {
    font-size: 16rem;
}