.zent-notify-container {
  z-index: 10000;
  position: fixed;
  min-width: 330px;
  max-width: 720px;
  top: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.zent-notify {
  padding-bottom: 10px;
}
.zent-notify-content {
    padding: 0 25px;
    line-height: 40px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box
  }
.zent-notify-content:empty:before {
  content: "\200b";
}
.zent-notify-content.zent-notify-content-success {
  background: rgba(68, 187, 136, 0.8);
}
.zent-notify-content.zent-notify-content-error {
  background: rgba(255, 68, 68, 0.8);
}
.notify-appear {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.notify-appear.notify-appear-active {
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-name: notifyMoveIn;
          animation-name: notifyMoveIn;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
.notify-exit {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.notify-exit .zent-notify-content {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
.notify-exit.notify-exit-active {
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-name: notifyMoveOut;
          animation-name: notifyMoveOut;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
.notify-exit.notify-exit-active .zent-notify-content {
    -webkit-animation-play-state: running;
            animation-play-state: running;
    -webkit-animation-name: notifyContentMoveOut;
            animation-name: notifyContentMoveOut;
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
  }
@-webkit-keyframes notifyMoveIn {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes notifyMoveIn {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes notifyMoveOut {
  0% {
    opacity: 1;
    max-height: 50px;
  }

  100% {
    opacity: 0;
    max-height: 0;
    padding: 0;
  }
}
@keyframes notifyMoveOut {
  0% {
    opacity: 1;
    max-height: 50px;
  }

  100% {
    opacity: 0;
    max-height: 0;
    padding: 0;
  }
}
@-webkit-keyframes notifyContentMoveOut {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes notifyContentMoveOut {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
