.tip-wrap {
    position: fixed;
    z-index: 99999;
}

.tip-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.tip-content {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 400px;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 32px 32px 24px;
    border-radius: 4px;
    z-index: 2;
}
.tip-content-tt {
    position: relative;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: 0em;
    color: rgba(0, 0, 0, 0.88);
    padding-left: 38px;
}
.tip-content-tt::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    background: url("//static-f.fwxgx.com/image/component/sprit-v1-4204c99ba1878dfa2663feb9d5d9b07e.png") no-repeat;
    width: 48px;
    height: 48px;
    transform: scale(0.5);
}
.tip-content-tt.info::before {
    background-position: 0 0;
}
.tip-content-tt.warning::before {
    background-position: -94px 0;
}
.tip-content-tt.error::before {
    background-position: -188px 0;
}
.tip-content-tt.success::before {
}
.tip-content-desc {
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    letter-spacing: 0em;
    color: rgba(0, 0, 0, 0.88);
    margin-left: 38px;
    margin-top: 8px;
    word-break: break-all;
}
.tip-btns {
    text-align: right;
    margin-top: 16px;
}

.tip-btn {
    display: inline-block;
    padding: 5px 16px;
    font-size: 14px;
    margin-left: 8px;
    cursor: pointer;
    border-radius: 4px;

}

.tip-btn.tipclose {
    color: rgba(0, 0, 0, 0.88);
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.tip-btn.callback {
    color: #FFFFFF;
    background: #0084FF;
}