@keyframes fadeInUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
@keyframes fadenum {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
        transform: translateY(-100%);
      opacity: 0;
    }
  }
  .el-message-box {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: max-content;
    max-width: 70%;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 16px;
    margin: 0 auto;
    z-index: 9999;
    background-color: #f56c6c;
    color: #fff;
    animation: fadeInUp 0.5s ease-in-out;
}
.el-message-box.box-hidden {
    animation:fadenum 0.5s;
}