* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    height: 100vh;
    font-size: 10px;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 背景样式开始 */
.bgBox {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: -1;
}

    .bgBox .bgImgBox {
        flex: 1;
        background-color: white;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        box-shadow: 0 2px 10px 1px rgba(0,0,0,0.6);
    }
    /* 技术支持 */
    .bgBox .supportMsgBox {
        width: 100%;
        height: calc((1 / 12) * 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: rgba(43,43,43,1);
    }
/* 背景图公共样式 */
/* 小屏幕 */
@media screen and (max-width: 1024px) {
    .bgBox .bgImgBox {
        background-image: url('../images/login_new/log-bg1.png');
    }

    .formBox {
        box-shadow: inset 0px 3px 6px 0px rgba(255,255,255,0.2);
        box-shadow: 5px 5px 10px 0px rgba(0,50,98,0.1);
        /* box-shadow: -5px -5px 10px 0px rgba(0,50,98,0.1); */
    }

    .logoBox {
        /* margin-bottom: 79px; */
        margin-bottom: 16.5%;
    }

        .logoBox .logoImg {
            width: 58.3%;
        }

    .formContainer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}
/* 大屏幕 */
@media screen and (min-width: 1024px) {
    .bgBox .bgImgBox {
/*        background-image: url('../img/log-bg1.png');*/
        background-image: url('../images/login_new/log-bg1.png');
    }

    .formContainer {
        display: flex;
        background-color: rgba(255,255,255,0.3);
        border-radius: 0 2rem 2rem 0;
        box-shadow: 5px 5px 10px 0px rgba(0,50,98,0.1);
    }

    .logoBox {
        /* width: 480px; */
        /* width: 25vw; */
        height: 46vh;
        aspect-ratio: 1;
        margin: 0;
    }

    .formBox {
        opacity: 0.9;
        box-shadow: inset 0px 3px 6px 0px rgba(255,255,255,0.2);
        box-shadow: -5px -5px 10px 0px rgba(0,50,98,0.1);
    }

    .logoBox .logoImg {
        /* width: 280px; */
        width: 58.3%;
    }
}
/* 背景样式结束 */
/* 表单样式开始 */
.formContainer {
}

.logoBox {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logoBox .logoImg {
        display: flex;
        justify-content: center;
    }

        .logoBox .logoImg img {
            max-width: 100%;
        }

.formBox {
    /* width: 480px; */
    /* width: 25vw; */
    height: 46vh;
    aspect-ratio: 1;
    background: linear-gradient(rgb(218,239,255) 5%,rgb(255,255,255));
    border-radius: 2rem;
    background-image: linear-gradient(to bottom, #DAEFFF 0%, #FFFFFF 39%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formTitle {
    /* width: 168px; */
    width: 35%;
    /* margin: 45px 0; */
    margin: 9.1% 0;
    display: flex;
    justify-content: center;
}

    .formTitle img {
        max-width: 100%;
        /* max-height: 100%; */
    }

.formValue {
    width: 70%;
    /* height: 46px; */
    height: 10.5%;
    position: relative;
    /* margin-bottom: 20px; */
    margin-bottom: 4%;
}

    .formValue::after {
        content: "";
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%); /* 垂直居中 */
        height: 1.6rem;
        width: 1.6rem;
        background-image: url('../images/login_new/log_icon01.png'); /* 图标路径 */
        background-size: cover; /* 调整背景图片大小 */
        pointer-events: none; /* 避免图标阻挡输入框操作 */
    }

    .formValue:focus-within::after {
        background-image: url('../images/login_new/log_icon02.png'); /* 图标路径 */
    }

.passwordValue::after {
    background-image: url('../images/login_new/log_icon03.png');
}

.passwordValue:focus-within::after {
    background-image: url('../images/login_new/log_icon04.png'); /* 图标路径 */
}

.yzmValue::after {
    background-image: url('../images/login_new/log_icon05.png');
}

.yzmValue:focus-within::after {
    background-image: url('../images/login_new/log_icon06.png'); /* 图标路径 */
}

.formValue .inputIcon {
    height: 100%;
    position: absolute;
    left: 1rem;
    display: flex;
    align-items: center;
}

    .formValue .inputIcon img {
        display: inline-block;
        height: 50%;
    }

.formValue .formInput {
    outline: none;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(213,213,213,1);
    border-radius: 4px;
    padding-left: 50px;
    font-size: 1.6rem;
    color: #333333;
    font-weight: 400;
}

    .formValue .formInput::placeholder {
        font-size: 1.6rem;
        color: #333333;
        font-weight: 400;
    }

    .formValue .formInput:focus {
        background: #FFFFFF;
        border: 1px solid rgba(42,104,197,1);
    }

.formBtnBox {
    width: 70%;
    /* margin-top: 30px; */
    /* height: 50px; */
    height: 11%;
    margin-top: 5%;
}

    .formBtnBox .formBtn {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #FDFDFD;
        font-weight: 500;
        background-image: linear-gradient(270deg, #2258BD 0%, #54C0EE 100%);
        border-radius: 4px;
        cursor: pointer;
        border:none;
        outline:none;
    }

.errorInput {
    color: red !important;
}

    .errorInput::placeholder {
        color: red !important;
    }


.yzmValue p {
    display: inline-flex;
    position: absolute;
    height: calc(100% - 2px);
    right: 1px;
    top: 1px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

    .yzmValue p img {
        max-height: 100%;
    }
.check {
    position: absolute;
    top: 4px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: url(../Img/check.png) no-repeat;
    display: none;
}

.checked {
    display: block;
}

.checkError {
    position: absolute;
    top: 50%;
    left: 50%;
    display: table;
    transform: translate(-50%,-50%);
    z-index: 111;
    width: 50%;
    padding: 10px 5px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.1);
    color: #f00;
    font-size:1.4rem;
    font-weight: 600;
    text-align: center;
}