/* 右上角通知 */
.vis-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999999;
}
.vis-notification-item {
  width: 380px;
  border-radius: 6px;
  padding: 22px 24px 24px;
  background: #fff;
  box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.1);
  display: none;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.4s;
}
.vis-notification-item.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.vis-notification-item .close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 24px;
}
.vis-notification-item .close svg {
  color: #d6dbe7;
  width: 15px;
  height: 15 px;
  transition: all 0.3s;
}
.vis-notification-item .close:hover svg {
  color: #666;
}
.vis-notification-item .success {
  flex-shrink: 0;
  margin-right: 14px;
  margin-top: 1px;
}
.vis-notification-item .success svg {
  width: 20px;
  height: 20px;
  color: #57e46d;
}
.vis-notification-item .content {
  flex: 1;
}
.vis-notification-item .title {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding-bottom: 6px;
}
.vis-notification-item .desc {
  color: #48505e;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 20px;
}
.vis-notification-item .operation {
  display: flex;
  justify-content: flex-end;
  column-gap: 8px;
}
.vis-notification-item .operation .vis-button {
  width: 92px;
}