#nf-modal{
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0,0,0.3);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    text-align: center;
}

#nf-modal .nf-modal-box{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(0);
    -webkit-transform: translate(-50%,-50%) scale(0);
    width: 6rem;
    transition: all .3s cubic-bezier(0.56, 0.49, 0.41, 1);
    min-width: 100px;
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    padding-top: 20px;
}
#nf-modal .nf-modal-box.active{
     transform: translate(-50%,-50%) scale(1);
    -webkit-transform: translate(-50%,-50%) scale(1);
}
#nf-modal .title{
    height: 26px;
    font-size: 18px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #0B1527;
    line-height: 26px;
}
#nf-modal .content {
    padding:20px;
    box-sizing: border-box;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #3C4353;
    border-bottom: .5px solid #EEF2F7;
}
#nf-modal .nf-modal-btn{
    line-height: 50px;
    height: 50px;
    display: flex;
    display: -webkit-flex;
    position: relative;
}
#nf-modal .nf-modal-btn button{
    border-style: none;
    outline: none;
    
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #0B1527;

    background: #fff;
    flex:1;
    -webkit-box-flex: 1;
}

#nf-modal .nf-modal-btn::after{
    content: '';
    position: absolute;
    left: 50%;
    width: 0.5px;
    top: 9px;
    bottom: 4px;
    background: #EEF2F7;
}

#nf-modal .nf-modal-btn  .nf-modal-confirm{
    color: #FF5800;
}