.pageBox {
    position: relative;
    /* background-color: #F1F5FA; */
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.loginBg {
    position: absolute;
    top: 0;
    /* left: -100px; */
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.logo {
    position: absolute;
    top: 6%;
    left: 8%;
    z-index: 0;
    object-fit: contain;
}

.loginBox {
    position: absolute;
    right: 20%;
    top: 20%;
    width: 400px;
    height: 530px;
    background-color: white;
    border-radius: 5px;
    padding: 25px 0px;
    box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.05), -4px -4px 16px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E3E9;
}

.loginItem {
    width: 100%;
    padding: 10px 0 20px 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.codeBox {
    margin-top: -5px;
    width: 30%;
    height: 50px;
    cursor: pointer;
}
.codeBox>img{
    width: 80%;
    height: 100%;
    margin: auto;
}

.title {
    position: relative;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 28px;
    color: #2E2E2E;
    line-height: 33px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.title:before {
    position: absolute;
    content: "";
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: var(--blue-deep);
    bottom: -10px;
}

.input {
    width: 70%;
    border-radius: 0px;
    border: 1px solid var(--line);
    background-color: var(--line);
}

.button {
    width: 77.5%;
    padding: 11px;
    background-color: var(--blue-deep);
    color: white;
    border-radius: 3px;
    border: 1px solid var(--blue-deep);
    letter-spacing: 4px;
}

.rememberBox {
    justify-content: left;
    padding: 0px 0px 0px 0px;
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.otherBox {
    color: var(--text-color);
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 15px;
}

.otherBox>div {
    padding: 0px 10px;
    cursor: pointer;
    user-select: none;
}

.otherBox>div:hover {
    color: var(--blue-deep);
}

.line {
    margin-top: 1px;
    height: 18px;
    background: var(--text-color);
    ;
    margin-left: 0px;
}

.loginLine {
    margin-top: 2px;
    background-color: #D9D9D9;
    width: 10px;
    height: 1px;
}

.input:focus {
    border: 1px solid #2C79E8 !important;
}

.logoBox {
    padding: 5px 0 0 0 ;
    height: 40px;
}

.logoBox>img {
    cursor: pointer;
    user-select: none;
}

/* 隐藏原生小眼睛 */
input[type="password"]::-ms-reveal {
    display: none;
}

/* input[type="password"]{
    background-image: url('../../images/icons/hlk.png');
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px; 
} */

.eyesbox {
    position: absolute;
    width: 12%;
    height: 60%;
    /* background-color: rgba(206, 217, 228, 0.671); */
    right: 10%;
    filter: drop-shadow(0 0 4px #ccc);
}

/** 密码框的小眼睛 纯css控制 */
#eyeInput[type="checkbox"]:checked~.close {
    display: block;
}

#eyeInput[type="checkbox"]:checked~.show {
    display: none;
}

#eyeInput[checked]~.close {
    display: none;
}

#eyeInput[checked]~.show {
    display: block;
}

.layui-unselect {
    min-width: calc(80% - 8px);
    background-color: var(--bd);
}

.eyesbox>.layui-form-checkbox {
    display: none;
}