html,
body {
    width: 100%;
    height: 100%;
}

#login {
    width: 100%;
    height: 100%;
    min-width: 700px;
    position: relative;
}

.login_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.login_bod {
    width: 613px;
    height: 417px;
    background: url(../../img/login/bod.png);
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 50px;
    display: flex;
    flex-flow: column;
    align-items: center;
    padding-top: 60px;
    box-sizing: border-box;
}

.login_title {
    width: 904px;
    height: 106px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -280px;
}

.login_item {
    width: 354px;
    height: 51px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    border: 1px solid #DCDCDC;
    border-radius: 3px;
}

.login_item input {
    border: none;
    height: 30px;
    flex: 1;
    border-left: 1px solid #D9D9D9;
    padding: 0 15px;
    outline: none;
    font-size: 16px;
    color: #000000;
}

.login_item input::-webkit-input-placeholder {
    color: #999999;
}

.login_item input::-moz-input-placeholder {
    color: #999999;
}

.login_icon {
    width: 20px;
    height: 20px;
    padding: 0 10px;
}

.login_check {
    display: flex;
    align-items: center;
    width: 354px;
    margin-top: 15px;
    color: #C36900;
    font-size: 14px;
    font-weight: bold;
}

.login_check_bod{
    width: 12px;
    height: 12px;
    border: 1px solid #C36900;
    margin-right: 10px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.login_check_item{
    background: #C36900;
    width: 80%;
    height: 80%;
    border-radius: 3px;
    display: none;
}

.login_check_active .login_check_item{
    display: block;
}

.login_button{
    width: 308px;
    height: 52px;
    margin-top: 60px;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../../img/login/button.png);
    background-size: 100% 100%;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 10px;
    padding-left: 10px;
    box-sizing: border-box;
}

.login_button span{
    opacity: 0.9;
}

.guanyu{
    width: 100%;
    position: absolute;
    bottom: 20px;
    text-align: center;
    font-size: 14px;
    color: #999aaa;
}

.login_bod2{
    padding-top:20px;
}

.login_bod2 .login_item{
    margin-top: 15px;
}

.login_bod2 .login_button{
    margin-top: 15px;
}

.login_zhuce{
    position: absolute;
    bottom: 30px;
    right: 35px;
    font-size: 14px;
}

.login_zhuce span{
    color: blue;
    cursor: pointer;
}