body.overflow {
    overflow: hidden !important;
}
#transmodal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
}
#transmodal .modal-content{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 95%;
    background: #fff;
    opacity: 0;
    transition: top 0.3s, opacity 0.3s;
}
#transmodal .modal-content.active{
    opacity: 1;
    top: 50%;
}
#transmodal .modal-header{
    background: var(--main-color);;
    padding: 15px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: #fff;
}
#transmodal .modal-header i{
    cursor: pointer;
}
#transmodal .modal-body{
    padding: 10px 20px;
}
#transmodal .modal-body > .el-row{
    margin: 10px 0;
    /* height: 38px; */
    line-height: 38px;
}
#tramount{
    font-size: 16px;
    background: #fff;
}
#tringtext{
    text-align: center;
}
#transmodal .modal-btn .el-col-12:first-child{
    padding-right: 10px;
}
#transmodal .modal-btn .el-col-12:last-child{
    padding-left: 10px;
}
#transmodal .modal-btn .el-col-12:last-child button{
    background: #f19b1b;
}
#transmodal .modal-btn .el-col-12:last-child button:hover{
    background: #f1b04d;
}

#registermodal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
}
#registermodal .modal-content{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 80%;
    background: #fff;
    opacity: 0;
    transition: top 0.3s, opacity 0.3s;
}
#registermodal .modal-content.active{
    top: 50%;
    opacity: 1;
}
#registermodal .modal-header{
    background: var(--main-color);;
    padding: 15px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: #fff;
}
#registermodal .modal-header i{
    cursor: pointer;
}
#registermodal .modal-body{
    padding: 20px;
    height: 500px;
    overflow: auto;
}
#registermodal .modal-body p{
    margin: revert;
    line-height: 30px;
}
#registermodal .modal-body ol{
    margin: revert;
    padding: revert;
}
#registermodal .modal-body li{
    line-height: 30px;
}