html{
    height: 100%;
}
body{
    height: 100%;
    position: relative;
}
.login-box{
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 550px;
    padding: 50px 0 98px 0;
    text-align: center;
    
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 3px 3px 30px 6px rgba(0,0,0,0.02);
    border-radius: 10px;
    border-radius: 10px;
}
.headlogo{
    margin-bottom: 20px;
}
.headlogo img{
    width: 80px;
    height: 80px;
}
.title{
    font-family: PingFangSC-Medium;
    font-weight: bold;
    font-size: 30px;
    color: #333333;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 55px;
}
.login-box-main{
    width: 420px;
    margin: 0 auto;
    margin-bottom: 65px;
}
.input-box{
    width: 420px;
    height: 66px;
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}
.inputimg{
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}
.inputimg img{
    width: 24px;
    height: 24px;
}
/**
去除input number类型输入框上下箭头
*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"]{
  -moz-appearance: textfield;
}
.input-box .requirecode{
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 22px;
    color: #333333;
    cursor: default;
}
.input-box .tip{
    margin-top: 10px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #FF3B30;
}
.tip.tiptransparent{
    color: transparent;
}
.input-box input{
    display: block;
    width: 100%;
    height: 66px;
    line-height: 1.3;
    line-height: 66px\9;
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
    border-radius: 2px;
    border-color:  #979797;
    font-family: PingFangSC-Regular;
    font-size: 22px;
    color: #333333;
    outline: 0;
    -webkit-appearance: none;
    transition: all .3s;
    -webkit-transition: all .3s;
    text-indent: 70px;
}
.passfogetbox{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.passfogetbox .forget{
    margin-top: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #333333;
}
.login-button{
    display: inline-block;
    width: 420px;
    height: 68px;
    line-height: 68px;
    /*line-height: 68px\9;*/
    border-radius: 2px;
    border-radius: 2px;
    background: #C3C3C3;
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
}
.login-button-red{
    background-image: linear-gradient(270deg, #FF7B4D 0%, #FF615E 100%);
    box-shadow: 0 3px 5px 0 #FF615E;
}
.loginbutton-fliter::before{
    content: "";
    position: absolute;
    width: 420px;
    height: 73px;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.5);
    z-index: 999;
}
.forgetbutton{
    /*margin-top: 57px;*/
}

