/* CSS Document */
*{
    margin: 0;
    padding: 0;
}
:root {
    width: 100%;
    height: 100%;
}
html {
    width: 100%;
    height: 100%;
}
body {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #FAF9F7;
    -webkit-text-size-adjust: 100%; /* 阻止字体随缩放变化 */
}
.contain{
    width: 100%;
    height: 100%;
    overflow: auto;
    box-sizing: border-box;
    background-image: url("../images/JNKG_login_bgImg.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
}
.contain .left{
    height: 100%;
    width: 35.3%;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    font-family: "PingFang SC";
}
.contain .left .logo{
    width: 316px;
    height: 152px;
    margin-bottom: 43px;
    margin: 0 auto;
}
.contain .left h1{
    font-size: 55px;
    line-height: 79px;
}
.contain .left h2{
    font-weight: lighter;
    font-size: 32px;
    line-height: 53.68px;
}
.contain .right{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.contain .right .form_section{
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 60px 80px;
}
.contain .right .form_section .title{
    font-weight: bold;
    color: #222222;
    font-size: 28px;
    line-height: 55px;
}
.contain .right .form_section .login-form{
    padding-top: 10px;
}
.contain .right .form_section .login-form .form_item{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-bottom: 19px;
}
.contain .right .form_section .login-form .form_item .icon{
    width: 15px;
    height: 15px;
}
.contain .right .form_section .login-form .form_item
.password,
.username{
    height: 36px;
    line-height: 36px;
    flex: 1;
    border: none;
    color: #000000;
    font-size: 16px;
    background-color: #FFFFFF !important;
    padding-left: 10px;
}
.contain .right .form_section .login-form .form_item
.password:active,
.username:active{
    outline: none;   /* 去掉外层高亮边框 */
    border: none;    /* 去掉输入框本身的边框 */
    box-shadow: none;/* 有些浏览器会加阴影，这里也清除 */
    color: #000000;
    background-color: #FFFFFF !important;
    font-size: 16px; /* 保持一致 */
    transform: scale(1); /* 防止放大 */
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #AAAAAA;
    font-size: 16px;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #AAAAAA;
    font-size: 16px;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #AAAAAA;
    font-size: 16px;
}

:-moz-placeholder { /* Firefox 18- */
    color: #AAAAAA;
    font-size: 16px;
}
.login-btn{
    width: 100%;
    display: block;
    background-color: #2BA3FF;
    color: #FFFFFF;
    z-index: 10;
    line-height: 40px;
    text-align: center;
    font-size: 24px;
    border-radius: 8px;
    margin-top: 45px;
    border: none;
}
.login-btn:hover{
    cursor: pointer;
}
.forgetPWD{
    display: flex;
    flex-direction: row-reverse;
    color: #AAAAAA;
    font-size: 12px;
}
