#login-frame{
    display: none;
}
.main-container{
    width: 400px;
    box-shadow: 0px 0px 6px 0px #d4d5d9;
    background: white;
}
.main-title{
    height: 60px;
    background: #f7f8fa;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    /*font-weight: bold;*/
    position: relative;
}
.main-title .icon-user{
    margin-right: 12px;
    font-size: 22px;
}
.main-title .icon-guanbi{
    position: absolute;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
}
.main-title .icon-guanbi:hover{
    opacity: .8;
}
.main-box{
    padding: 35px 30px 30px; 
}
.captcha-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.captcha-box img{
    height: 42px;
    width: 162px;
    border-radius: 4px;
}
.forget{
    font-size: 14px;
    display: flex;
    color: #909399;
    justify-content: flex-end;
    align-items: center;
}
.forget a{
    color: #2B85FB;
}
.forget a:hover{
    opacity: .8;
}
.main-line{
    margin: 40px 0 30px 0;
    height: 1px;
    background: #e6ebf2;
}
.register{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #909399;
}
.register a{
    color: #2B85FB;
}
.register a:hover{
    opacity: .8;
}
.list-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.list-item-title{
    width: 110px;
    font-size: 14px;
    color: #666;
}
.list-item-title span{
    color: red;
}
.list-item .el-input,.list-item .el-select{
    flex: 1;
}
.el-input__inner{
    height: 42px;
}
/* 手机样式 */
@media (max-width: 1024px) {
    #app{
        padding: 30px 0;
    }
    .text-conrainer{
        display: none;
    }
    .main-container{
        width: 92%!important;
        margin-left: 0;
    }
    .captcha-box img{
        width: 49%;
    }
    .main-title i{
        font-size: 20px;
    }
    .main-title{
        font-size: 18px;
    }
    .check-btn{
        width: 38%!important;
    }
}