@charset "utf-8";

::-webkit-input-placeholder {
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
}

:-moz-placeholder {
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
}

::-moz-placeholder {
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
}

:-ms-input-placeholder {
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
}

input:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0) inset !important;
    box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0) inset !important;
}

select {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.fillArea,
.fillArea_S,
textarea,
select {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    font-size: 18px;
    text-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-user-select: text;
    user-select: text;
    outline: none;
    box-shadow: none;
    border-width: 0;
    border-color: var(--black2);
    border-style: solid;
    color: var(--black1);
    font-weight: 500;
    background-color: transparent;
}

.fillArea_S {
    height: 40px;
    line-height: 40px;
}

.fillArea:focus {
    border-color: var(--accent2Color)
}

.radiogroup input[type=checkbox],
.radiogroup input[type=radio] {
    display: none;
    visibility: hidden;
}

.radiogroup label {
    display: inline-block;
    color: var(--black2);
    position: relative;
}

.checkBox label .optionBox,
.radioBox label .optionBox {
    margin: 0 5px 0 0;
    display: inline-block;
    position: relative;
}

.radiogroup label .optionBox:before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 0;
    left: 0;
    display: inline-block;
    background: var(--blockColor1);
    border-width: 2px;
    border-color: var(--black3);
    border-style: solid;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    content: " ";
    text-align: center;
    vertical-align: text-top;
    cursor: pointer;
    position: relative;
    left: 0;
}

.radiogroup label .optionBox:after {
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 12px;
    text-align: center;
    position: absolute;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.radiogroup input[type=checkbox]:checked+label .optionBox:after,
.radiogroup input[type=radio]:checked+label .optionBox:after {
    opacity: 1;
    background-color: var(--a_2);
    content: "\e928";
}

.radiogroup input[type=radio]:checked+label .optionBox:after {
    content: "\e928";
}

.checkedArea {
    min-height: 50px;
    padding: 0;
}

.radiogroup.way_1 {
    padding: 5px;
    border-width: 0;
    border-color: var(--black3);
    border-style: solid;
    background: var(--a_5);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
}

.radiogroup.way_1 .boxSelect {
    min-height: 40px;
    padding: 5px 10px;
}

.radiogroup.way_1 .boxSelect p {
    color: var(--black1);
}

.radiogroup.way_1 label:not(:last-child) .boxSelect {
    border-width: 0;
    border-color: var(--black3);
    border-style: solid;
}

.radiogroup.way_1 input[type=checkbox]:checked+.boxSelect,
.radiogroup.way_1 input[type=radio]:checked+.boxSelect {
    background: var(--a_1);
}

.radiogroup.way_1 input[type=checkbox]:checked+.boxSelect p,
.radiogroup.way_1 input[type=radio]:checked+.boxSelect p {
    color: var(--black5);
}

.forms {
    position: relative;
}

.forms .actionBar {
    margin: 30px 0 0;
    padding: 30px 0 0;
}

.forms .radiogroup label p {
    font-size: 14px;
    color: var(--black1);
}

.forms .radiogroup label span {
    font-size: 14px;
    color: var(--black2);
}

.areaCode .leftSideBox {
    padding: 0 10px 0 0;
    position: relative;
}

.areaCode .leftSideBox:after {
    content: " ";
    width: 1px;
    height: 40%;
    right: 0;
    display: block;
    position: absolute;
    background-color: var(--black3);
}

#areaCode {
    font-size: 18px;
    color: var(--black1);
}

form ul>li {
    margin: 0 0 20px;
    position: relative;
}

form ul>li .titleBar {
    padding: 10px 0;
}

.formTitleBar {
    display: inline-block;
    font-size: 14px;
    padding: 0 0 5px;
}

.formTitleBar h4 {
    font-size: 16px;
    font-weight: 300;
    color: var(--black2);
}

.formTitleBar h3 {
    font-size: 18px;
    color: var(--black1);
}

.inputArea {
    min-height: 50px;
    padding: 0 10px;
    position: relative;
    border-width: 0;
    border-color: var(--a_4);
    border-style: solid;
    background: var(--a_5);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
}


.disabledInput.inputArea,
.readonlyInput.inputArea {
    border-width: 0;
    cursor: no-drop;
    color: var(--black0);
    background: var(--black4);
}


.inputArea.linearFrame {
    border-width: 2px;
}

.inputArea.linearFrame .fillArea {
    color: var(--black1);
}

.inputArea textarea.fillArea {
    min-height: 180px;
    line-height: 1.2;
    margin: 2px;
    padding: 10px 0;
    resize: none;
    overflow: auto;
    outline: none;
}


.inputArea .trueInpt {
    border-width: 0;
    border-color: var(--black3);
    border-style: solid;
    position: relative;
}

.inputArea .trueInpt>* {
    font-size: 16px;
    color: var(--black0);
}

.inputArea:focus-within {
    border-color: var(--a_3);
}

.inputArea .i_inputIcon {
    font-size: 22px;
    color: var(--black1);
    display: none;
}

.l_S .fillArea {
    padding: 10px 0 10px 50px;
}

.r_S .fillArea {
    padding: 10px 50px 10px 10px;
}

.r_S.l_S .fillArea {
    padding: 10px 50px;
}

.leftSideBox,
.rightSideBox {
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
    z-index: 10;
}

.leftSideBox>* {
    margin: 0;
}

.rightSideBox i {
    font-size: 22px;
}

.flag img {
    width: 25px;
}

.eye i {
    display: none;
}

.eye.reveal .r,
.eye.secret .s {
    display: block;
    color: var(--a_3);
}

.getSMSCode {
    padding: 5px 10px;
}

.getSMSCode p {
    font-size: 16px;
    font-weight: 700;
    color: var(--r_0);
}

.getSMSCode.parclose {
    opacity: 0.5;
}