#app{

    position: fixed;
    left:0;
    top:0;
    width:100%;
    height: 100%;
}

.login{
    width:85%;
    margin:30% auto 0 auto;
}
.login .title{
    color: #41464c;
    font-weight: 700;
    font-size:28px;
    margin-bottom: 30px;
}
.login .row{
    margin:15px 0;
}
.login .row input[type="text"],.login .row input[type="password"]{
    width:100%;
    background: #fff;
    border: 1px solid #ececec;
    outline: none;
    height: 48px;
    line-height: 48px;
    border-radius: 8px;
    padding:0 12px;
    font-size:15px;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}
.login .row input[type="text"].on,.login .row input[type="password"].on{
    box-shadow: 0px 0px 0px 3px rgba(123, 48, 71, 0.3);
    border-color:#fff;
}
.login .other{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.login .other .item{
    display: flex;
    color:#687188;
}
.login .other .item input[type=checkbox]{
    position: relative;
    top:1px;
    margin-right: 5px;
}
.login .other .item a{
    color:#687188;
}
.login .other .item a:hover{
    color:var(--theme);
}
.login .other .forget{
    margin-left: auto;
}

.login .submit{
    background-color: #253D4E;
    border-color: #253D4E;
    font-weight: 700;
    border: 0;
    color:#fff;
    padding:17px 40px;
    border-radius: 10px;
    font-size:17px;
    line-height: 17px;
    cursor: pointer;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
    position: relative;
    width:100%;
}
.login .submit.disable{
    pointer-events: none;
    opacity: 0.7;
}
.login .submit .def{
    display: flex;
    justify-content: center;
}
.login .submit .def .van-loading{
    margin-right:5px;
}

.login .bottom{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top:20px;
}
.login .bottom .snslogin{
    display: flex;
    align-items: center;
}
.login .bottom .snslogin .lable{
    color:#999;
    margin-right: 15px;
}
.login .bottom .snslogin .list .iconfont{
    font-size:36px;
    cursor: pointer;
}
.login .bottom .snslogin .list .green{
    color:#07c160;
}
.login .footer{
    padding-top:50px;
    text-align: center;
}
.login .footer a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.login .footer a .iconfont{
    font-size:14px;
    line-height: 14px;
}