html,body,div{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
    width: 100%;
}

.tipsBox{
    position: absolute;
    width:100%;
    padding: 0 10%;
    top: 10%;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
    transition:opacity .3s,transform .4s ,top .4s;
}
.tipsBox_posi{
    top: 15%;
}
.tipsBox_width{
    width:calc(100% - 40px) !important;
}
.tipsBox div{
    z-index: 100;
    min-height: 48px;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tipsBox div img{
    width: 20px;
    margin-right: 10px;
}
.tipsBox div span{
    word-break: break-all;
}
.warning{
    background-color: #fef0f0;
    color: #e6a23c;
}
.success{
    background-color: #f0f9eb;
    color: #67c23a;
}