// 增加message关闭按钮样式
.ant-message-notice-content {
  position: relative;
  &::after {
    content: "x";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background-color: #faad14;
    line-height: 12px;
    font-size: 12px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
  }
  white-space: pre-line;
}
