/*--============================---
 *  基础组件 -- Toast消息提示样式
 *  loke 2018-08-24 14:18:02
 *--==============================*/
.sui-toast {
    position: absolute;
    left:0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1028;
    display: flex;
    justify-content: center;
    align-items: center;
    .toast-panel {
        text-align: center;
        box-sizing: border-box;
        background: rgba(0,0,0, .65);
        box-shadow: 0 0 10px rgba(0,0,0,.3);
        border-radius: 2px;
        max-width: 50%;
        padding: 10px 20px;
        color: #fff;
        .toast-ico {
            display: block;
            margin-bottom: 5px;
            >i {
                color: inherit;
                font-size: 3rem;
            }
        }
    }
    &.sui-toast-loading {
        .toast-panel {
            padding: 30px 40px;
        }
    }
}
