 .toast{
    position: fixed;
    top: 0px;
    left: 50%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  &-message{
    transform: translate(-50%, 0);
    padding: 8px;
  }
  .icon-type{
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  &-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
    &.middle{
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateZ(1px);
    }
    &.top{
        display: flex;
        justify-content: center;
        padding-top: 12px;
        align-items: flex-start;
        transform: translateZ(1px);
    }
    &.bottom{
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 12px;
        transform: translateZ(1px);
    }
  }

  &-no-mask {
    position: fixed;
    max-width: 50%;
    width: auto;
    &.middle{
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    &.top{
      top: 36px;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    &.bottom{
      top: 95%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
  .toast-box-loading{
    display: flex;
    flex-direction: column;
  }
  .toast-box{
    display: flex;
    align-items: center;
    min-width: 64px;
    margin: 0 20px;
    &.center{ 
        padding: 12px;
        background: #3e3e3e;
        color: #fff;
        border-radius: 2px;
        box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d,
    }
  }
  .toast-content{
    text-align: center;
      .toast-loading{
        width: 94px;
        height: 94px;
      }
  }

}     
.toast-but-box{
  display: flex;
  flex-direction: column;
  width: 200px;
  z-index: 9999;
}