*{
    margin: 0;
    padding: 0;
}
.login-container.show .mask{
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.mask{
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: .3s;
}
.m-bottom-30{
    margin-bottom: 30px !important;
}
.m-bottom-20{
    margin-bottom: 20px !important;
}
.login-box{
    padding: 10px;
    position: fixed;
    z-index: 99999;
    width: 430px;
    height: 500px;
    border-radius: 4px;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
    box-shadow: 0px 0px 5px #888888;
}
.login-container.show .login-box{
    display: block;
}
.login-header{
    position: relative;
}

.login-header h3{
    padding: 10px;
    font-size: 16px;
    color: #333
}

.login-header .top{
    height: 30px;
}
.login-header .top .close{
    position: absolute;
    cursor: pointer;
    font-size: 20px;
    padding: 5px 10px;
    right: 0;
    top: 0;
    transition: 0.2s
}

.login-header .top .close:hover{
    color: #FF5C6A
}
.login-body{
    overflow: hidden;
}
.login-body .tabs{
    margin: 10px 50px;
}
.login-body .tabs .tab-item{
    border-bottom: solid 2px #ffffff;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    padding: 10px 5px;
    cursor: pointer;
    margin: 0 30px;
    width: 90px;
}
.login-body .tabs .tab-item.active{
    border-bottom: solid 2px #FF5C6A;
}
.login-card{
    width: 865px;
    transition: .3s;
}
.login-form{
    padding: 10px;
    margin: auto;
    font-size: 14px;
    display: inline-block;
}
.login-form .label{
    display: inline-block;
    width: 80px;
    font-size: 15px;
}
.login-form .form-item{
    margin-bottom: 10px;
    margin-left: 35px;
    margin-right: 35px;
}
.login-form input{
    height: 25px;
    width: 240px;
    padding: 3px 5px;
    outline:none;
    border-radius: 4px;
    border: 1px solid #dedede;
    transition: 0.3s;
}
.login-form input:focus{
    border-color: #FF5C6A
}
input[type=checkbox]{
    width: 15px;
    height: 15px;
}
/* input[type=checkbox]:active{
    border-color: #FF5C6A
} */
.checkbox-text{
    font-size: 13px;
}
.login-btn{
    border: 0;
    padding: 5px 10px;
    height: 40px;
    width: 255px;
    margin-left: 85px;
    border-radius: 4px;
    outline:none;
    cursor: pointer;
    background-color: #FF5C6A;
    color: #fff;
    transition: .3s;
}
.login-btn:active{
    background-color: #e94c13;
    color: #f3f3f3;
}
.c-right{
    float: right;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.find-password{
    cursor: pointer;
    transition: 0.2s;
}
.find-password:hover{
    color: #FF5C6A;
}
.to-reg{
    height: 35px;
    margin-right: 35px;
}
.to-reg>span{
    cursor: pointer;
    color: #666;
    transition: 0.2s;
}
.to-reg>span:hover{
    color: #FF5C6A;
}

.login-footer{
    height: 83px;
    padding: 10px;
    margin: 0 10px;
    font-size: 14px;
    border-top: 1px solid #dedede;
    color: #666;
    position: relative;
}
.login-footer .other-login{
    display: inline-block;
    width: 174px;
    height: 40px;
    margin-top: 15px;
    cursor: pointer;
}
.login-footer .wechat-btn{
    margin-right: 36px;
    background: url(../images/login_meth.png) no-repeat;
}
.login-footer .qq-btn{
    background: url(../images/login_meth.png) no-repeat 0 -48px;
}

.login-footer .pc-btn{
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 8px;
    right: -20px;
    cursor: pointer;
}
.pc-btn img{
    width: 100%
}
.hide{
    display: none !important;
}

.login-wechat{
    width: 100%;
    display: inline-block;
    padding: 20px 50px;
    box-sizing: border-box;
}
.login-wechat h4{
    margin-bottom:10px
}
.login-wechat .qrcode-box{
    position: relative;
    text-align: center;
    margin: 25px 0;
}
.login-wechat .qrcode-box .tip{
    position: absolute;
    display: flex;
    align-items: center;
    width: 168px;
    height: 168px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    cursor: pointer;
}
.login-wechat .qrcode-box p{
    font-size: 13px;
}