.login_bg{
    width: 100%;
    height: 100%;
    background: url(../images/login_bg.png);
    background-size: 100% 100%;
    position: relative;
}
.login_box{
    width: 13.34rem;
    height: 7.68rem;
    background: url(../images/login_box.png);
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.logo{
    position: absolute;
    top: 18%;
    left: 18%;
    transform: translate(-50%,-50%);
}
.login_input_box{
    position: absolute;
    top: 50%;
    left: 79%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}
.login_title{
    font-size: 0.3rem;
    color: #409EFE;
    margin-bottom: 95px;
}
.login_input_box ul li{
    position: relative;
}
.login_input_box ul li input{
    width: 260px;
    height: 40px;
    border:1px solid rgba(204,204,204,1);
    border-radius:4px;
    padding: 0rem 0.2rem 0rem 0.4rem;
    box-sizing: border-box;
    background-color: transparent;
    margin-bottom: 20px;
}
.login_input_box ul li img{
    position: absolute;
    top: 34%;
    left: 19px;
    transform: translate(-50%,-50%);
}
.user_icon_show{
    display: none;
}
.remember_password_box{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: -10px;
}
/* 按钮 */
.radio{
    display: flex;
}
.radio label, .checkbox label{
    padding-left: 0px;
}
.radio label{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.16rem;
}
.radio label>div{
    margin-left: 0.2rem;
    line-height: 0.18rem;
}
.radio, .checkbox{
    margin: 0px;
}
.a-radio{
    display: none;
}
.b-radio{
    display: inline-block;
    width:12px;
    height:12px;
    vertical-align: middle;
    margin-right: 5px;
    position: relative;
    margin: 0px!important;
    border: 1px solid #d9d9d9;
}
.b-radio:before{
    content: '';
    font-size: 0;
    width:12px;
    height:12px;
    background:url(../images/confirm_icon.png);
    background-size: 100% 100%;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    display: none;
}
.a-radio:checked~.b-radio:before{
    display: block;
}
.forget_password{
    color: #aaaaaa;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}
.login_btn{
    width:260px;
    height:40px;
    background:rgba(64,158,254,1);
    border-radius:4px;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-top: 12px;
}
.registered_btn{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
    color: #409EFE;
}
.registered_btn span{
    cursor: pointer;
}
.registered_btn a{
    color: #409EFE;
}