.loginPopup{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(0,0,0,.2);
    display: none;
}
.loginIn{
    width: 100%;
    height: 100%;
    display: table;
}
.loginInfo{
    display: table-cell;
    vertical-align: middle;
    padding: 0 .6rem;
}
.loginView{
    background: #fff;
    border-radius: .2rem;
    padding: .3rem;
}

.loginHeader{
    text-align: center;
    padding: .15rem 0;
    color: #5B92FD;
    font-size: .36rem;
}
.loginFormView{
    padding: 0 .3rem;
}
.loginInputCell{
    position: relative;
    margin-top: .4rem;
}
.loginInput {
    border-width: 0 0 1px 0;
    border-color: #999;
    border-style: solid;
    height: .6rem;
    color: #333;
    font-size: .3rem;
    width: 100%;
}
.loginInputCell button{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #ccc;
    color: #999;
    height: .5rem;
    font-size: .24rem;
    padding: 0 .2rem;
    border-radius: 1rem;
    background: #fff;
    min-width: 1rem;
}
.loginFooter{
    margin-top: .6rem;
    text-align: center;
}
.loginButton {
    height: .88rem;
    background: #5B92FD;
    color: #fff;
    font-size: .36rem;
    min-width: 5rem;
    border-radius: 1rem;
}
.loginButton[disabled]{
    opacity: .6;
}
.loginDes{
    text-align: center;
    font-size: .24rem;
    color: #5B92FD;
    margin-top: .3rem;
}