.ant-message {
    box-sizing: border-box;
    line-height: 1.5714285714285714;
    list-style: none;
    position: fixed;
    top: 8px;
    width: 100%;
    pointer-events: none;
    z-index: 1010;
}
.ant-message {
    font-size: 14px;
    box-sizing: border-box;
}
.ant-message-move-up-leave {
    -webkit-animation-name: MessageMoveOut;
          animation-name: MessageMoveOut;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
    animation-play-state: paused;
    animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
    animation-fill-mode: forwards;
}
.ant-message .ant-message-move-up-leave.ant-message-move-up-leave-active {
    animation-play-state: running;
}
.ant-message .ant-message-notice .ant-message-notice-content {
    display: inline-block;
    padding: 9px 12px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    pointer-events: all;
}
.ant-message .ant-message-notice .ant-message-warning>.anticon {
    color: #faad14;
}
.ant-message .ant-message-notice .ant-message-info>.anticon, .ant-message .ant-message-notice .ant-message-loading>.anticon {
    color: #1677ff;
}
.ant-message .ant-message-notice .ant-message-error>.anticon {
    color: #ff4d4f;
}
.ant-message .ant-message-notice .ant-message-success>.anticon {
  color: #52c41a;
}
.ant-message .ant-message-notice {
    padding: 8px;
    text-align: center;
}
.ant-message .ant-message-notice .ant-message-custom-content>.anticon {
    vertical-align: text-bottom;
    margin-right: 8px;
}
@-webkit-keyframes MessageMoveOut {
    0% {
      max-height: 150px;
      padding: 8px;
      opacity: 1;
    }
    100% {
      max-height: 0;
      padding: 0;
      opacity: 0;
    }
  }
  @keyframes MessageMoveOut {
    0% {
      max-height: 150px;
      padding: 8px;
      opacity: 1;
    }
    100% {
      max-height: 0;
      padding: 0;
      opacity: 0;
    }
  }