@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 #fff inset !important;
    box-shadow: 0 0 0px 1000px #fff inset !important;
}

.fillArea,
textarea,
select {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 10px 5px;
    font-size: 16px;
    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(--black0);
    font-weight: 500;
    background-color: transparent;
}

.fillArea:focus {
    border-color: var(--accent2Color)
}

.disabledInput,
button[disabled],
input[disabled] {
    color: var(--black0);
    background-color: #c9c9c9;
    background: -ms-linear-gradient(right, #c2c2c2, #c9c9c9);
    background: -moz-linear-gradient(right, #c2c2c2, #c9c9c9);
    background: -webkit-gradient(linear, 100% 0%, 0% 0%, from(#c2c2c2), to(#c9c9c9));
    background: -webkit-linear-gradient(right, #c2c2c2, #c9c9c9);
    background: -o-linear-gradient(right, #c2c2c2, #c9c9c9);
    border-width: 0;
    cursor: no-drop;
    -webkit-opacity: 1;
    opacity: 1;
}

.readonlyInput {
    border-width: 0;
    cursor: no-drop;
    -webkit-opacity: 1;
    opacity: 1;
}

select {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.inputArea textarea.fillArea {
    min-height: 180px;
    line-height: 1.2;
    margin: 2px;
    padding: 10px 0;
    resize: none;
    background-color: #fff;
    overflow: auto;
    outline: none;
}

.checkBox {
    width: 100%;
    padding: 0 10px;
    font-size: 12px;
    color: #999;
    display: inline-block;
    position: relative;
}

.radiogroup {
    width: 100%;
    display: inline-block;
    position: relative;
}

.checkBox input[type=checkbox],
.radiogroup input[type=checkbox],
.radiogroup input[type=radio] {
    display: none;
    visibility: hidden;
}

.checkBox label,
.radiogroup label {
    line-height: 20px;
    padding: 0 0 0 25px;
    color: #999;
    display: inline-block;
    position: relative;
}

.checkBox label::before,
.radiogroup label::before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 0;
    left: 0;
    display: inline-block;
    background-color: #fff;
    border: 2px solid #ccc;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    content: "";
    text-align: center;
    vertical-align: text-top;
    cursor: pointer;
    position: absolute;
    left: 0;
}

.checkBox label:after,
.radiogroup label: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;
}

.checkBox input[type=checkbox]:checked+label:after,
.radiogroup input[type=radio]:checked+label:after {
    opacity: 1;
    background-color: var(--b_1);
    content: "\e928";
}

.radiogroup input[type=radio]:checked+label:after {
    content: "\e928";
}

.forms .checkBox label p,
.forms .radiogroup label p {
    color: var(--black1);
}

.forms .checkBox label span,
.forms .radiogroup label span {
    font-size: 14px;
    color: var(--black2);
}

#areaCode {
    font-size: 18px;
    color: var(--black1);
}