*{
    margin: 0;
    padding: 0;
}
html,body,#app{
    width: 100%;
    height: 100%;
}
ul li,
ol li{
    list-style: none;
}
input, button {
    background: none;
    outline: none;
    border: none;
}
input{
    -webkit-user-select: text !important;
}

input:focus, button:focus{
    border: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}
img{
    background: none;
}
.alertBox{
    width: 70%;
    height: auto;
    background: rgba(0,0,0,.9);
    position: fixed;
    border-radius: .6rem;
    color: #fff;
    left: 14%;
    font-size: 26px;
    bottom: 5rem;
    text-align: center;
    line-height: 46px;
    opacity: 0;
    padding: 10px 1%;
    z-index: 999;
}
#app{
    width: 750px;
    height: auto;
    margin: 0 auto;
    padding-bottom: calc(var(--safe-area-inset-bottom) + 10px);
    --safe-area-inset-bottom: 40px;
    --safe-area-inset-bottom: constant(safe-area-inset-bottom);
    --safe-area-inset-bottom: env(safe-area-inset-bottom);
}
.container{
    width: 100%;
}
.container>:last-child{
    margin-bottom: 40px;
}
.banner{
    width: 100%;
    height: 422px;
}
.banner img{
    width: 100%;
    height: 100%;
}
.form{
    width: 610px;
    margin: 0 auto;
}
.form .form-item{
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 40px;
}
.form .form-item > .label{
    width: 100%;
    height: 34px;
    margin-bottom: 16px;

    font-weight: 400;
    font-size: 24px;
    color: #8B8C8D;
    line-height: 34px;
}
.form .form-item > .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form .form-item .error_text{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;

    font-weight: 400;
    font-size: 24px;
    color: #FF0000;
    line-height: 28px;
    text-align: right;
}
.form .input{
    width: 100%;
    height: 84px;
    padding: 22px 24px;
    box-sizing: border-box;
    background: #F3F4F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
}
.form .input input{
    width: 100%;
    height: 100%;

    font-weight: 400;
    font-size: 28px;
    color: #1B1C1E;
    line-height: 40px;
}
.form .input.password{
    padding-right: 80px;
}
.form .input.password .icon_eye{
    width: 48px;
    height: 48px;
    position: absolute;
    top: calc(50% - 24px);
    right: 16px;
}
.button{
    width: 610px;
    height: 88px;
    background: #0862D4;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    margin-top: 80px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 36px;
    color: #FFFFFF;
    line-height: 88px;
    text-align: center;
    -webkit-user-select: none;
    cursor: pointer;
}
.title{
    width: 610px;
    height: auto;
    margin: 0 auto;
}
.modal{
    width: 570px;
    height: auto;
    background: #FFFFFF;
    border-radius: 32px;
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2002;
    transform: translate(-50%, -50%);
}
.modal .modal_body{
    padding: 40px;
    padding-bottom: 32px;
    box-sizing: border-box;

    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 28px;
    color: #1B1C1E;
    line-height: 40px;
}
.modal .modal_footer{
    width: 100%;
    height: 104px;
    border-top: 2px solid #E9E9E9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal .modal_footer > div{
    flex: 1;
    height: 100%;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 36px;
    color: #0862D4;
    line-height: 104px;
    text-align: center;
}
.modal_mask{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}
.modal .password_hint .title{
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 16px;
}
.modal .password_hint ul li{
    width: 100%;
    height: 40px;
    padding-left: 24px;
    box-sizing: border-box;
    margin-bottom: 8px;
    position: relative;
    text-wrap: nowrap;
}
.modal .password_hint ul li::before{
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0862D4;
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
}
.modal .password_hint ul li:last-of-type{
    margin-bottom: 0;
}
.disabled{
    filter: opacity(0.6);
}
/**********************/
.container > .home{
    margin-top: 42px;
}
.home .title img{
    width: 552px;
    margin-bottom: 24px;
}
.home .title p{
    font-weight: 500;
    font-size: 24px;
    color: #8B8C8D;
    line-height: 34px;

    margin-bottom: 16px;
}
.home .title p:last-of-type{
    margin-bottom: 0;
}
.tabbar{
    width: 610px;
    height: 126px;
    padding-bottom: 6px;
    border-top: 2px solid #F2F2F2;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    align-items: center;
}
.tabbar .item{
    width: 178px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.tabbar .login > img{
    width: 104px;
    height: 34px;
}
.tabbar .login.active > img{
    width: 128px;
    height: 42px;
}
.tabbar .notice > img{
    width: 126px;
    height: 28px;
}
.tabbar .notice.active > img{
    width: 156px;
    height: 34px;
}
.tabbar .item .badge{
    width: 52px;
    height: 26px;
    position: absolute;
    top: 22px;
    left: 124px;
}
.tabbar .item .badge img{
    width: 100%;
    height: 100%;
}
.tabbar_content{
    width: 610px;
    margin: 0 auto;
}
.agreement{
    width: 100%;
    margin-top: 24px;
    display: flex;
}
.agreement .check{
    width: 48px;
    height: 48px;
    margin-right: 8px;
    margin-left: -8px;
}
.agreement .check img{
    width: 100%;
    height: 100%;
}
.agreement p{
    width: calc(100% - 48px);
    padding-top: 6px;

    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 24px;
    color: #8B8C8D;
    line-height: 34px;
}
.agreement p a{
    color: #0862D4;
    text-decoration: none;
}

.account_operation{
    width: 100%;
    height: 40px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    position: relative;
}
.account_operation::after{
    content: '';
    height: 20px;
    border-left: 1px solid #E9E9E9;
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 1px);
}
.account_operation a{
    width: 50%;
    height: auto;
    box-sizing: border-box;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 28px;
    color: #8B8C8D;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
}
.account_operation .created{
    color: #0862D4;
    text-align: right;
    padding-right: 24px;
}
.account_operation .resetPassword{
    text-align: left;
    padding-left: 22px;
}
.notice .list{
    width: 100%;
}
.notice .list .item{
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}
.notice .list .item:last-of-type{
    margin-bottom: 0;
}
.notice .list .item a{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 28px;
    line-height: 46px;
    text-decoration: revert;
    color: revert;
}
.notice .list .item .date{
    font-size: 24px;
    color: #8B8C8D;
    text-decoration: none;
    float: right;
}
.container > .created{
    margin-top: 48px;
}
.created .title img{
    height: 34px;
}
.created .form{
    margin-top: 52px;
}
.created .form .send_code{
    flex: none;
    width: 222px;
    height: 84px;
    background: #EDF3FF;
    border-radius: 8px;
    margin-left: 16px;

    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 32px;
    color: #0862D4;
    line-height: 84px;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}
.created .form .hint{
    flex: none;
    width: 48px;
    height: 48px;
    margin-left: 6px;
}
