.mask {
    z-index:999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    visibility: hidden;
}
.mask.disable{
    display: none;
}

.mask.active{
    display: flex;
}

.login-container-card{
    background: #FFFFFF;
    z-index: 999;
    padding: 20px;
    width: 500px;
    height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 4px;
    align-items: center;
   
}

.login-container-card > img {
    width: 20px;
    height: 20px;
    right: 20px;
    position: absolute;
}

.login-container-card .title{
    margin: 62px 0 19px;
    font-size: 22px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #222222;
    line-height: 30px;
}

.login-container-card .phone{
    background: #FAFAFA;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 15px;
    width: 320px;
}
.login-container-card .phone.active{
    border: 1px solid #FF0000;
}

.login-container-card .phone.disable{
    border: 0;
}



.login-container-card .code-container .code{
    background: #FAFAFA;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding-left: 15px;

}

.phone img,.code-container .code img{
   width: 16px;
   height: 16px;
}
.phone input,.code-container .code input {
    height: 22px;
    border:0;
    outline:none;
    background: #FAFAFA;
    flex: 1;
    font-size: 16px;
    line-height: 22px;
    width: 70px;
}
.phone input::placeholder,.code-container .code input::placeholder{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #999999;
    line-height: 22px;

}
.phone .border,.code-container .code .border{
    width: 1px;
    height: 20px;
    border-left: 1px solid #979797;
    margin: 0 16px 0 14px;
}

.login-container-card .code-container {
    display: flex;
    /* justify-content: center; */
    align-items: stretch;
    margin: 20px 0 40px 0;
    width: 350px;

}
.get-code-btn{
    background: #BDEBEF;
    height: 46px;
    border-radius: 4px;
    margin-left: 5px;
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    border: none;
    padding: 0 12px;
}

.get-code-btn.disable{
    pointer-events: none;
    background: #BDEBEF;
}

.get-code-btn.active{
    background: #17C3D2;
}
.get-code-btn.countDown{
    background: #FAFAFA;
    color: #999999;
    pointer-events: none;
}

.login-container-card .login-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 46px;
    font-size: 16px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    border-radius: 4px;
    border: 0;
    background: #BDEBEF;
    
}
.login-container-card .login-btn.disable{
    pointer-events: none;
  
    background: #BDEBEF;
  
}

.login-container-card .login-btn.active{
    background:#17C3D2 ;
}

.login-container-card .error-msg{
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FF0000;
    line-height: 20px;
    margin-bottom: 10px;
    visibility: hidden;
    width: 350px;

}
.login-container-card .error-msg.disable{
    visibility: hidden;
}
.login-container-card .error-msg.active{
    visibility: visible;
}



