.messageBox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #FFF;
  font-size: 14px;
  line-height: 1.5715;
  list-style: none;
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 1010;
  width: 100%;
  pointer-events: none;
}

.messageBox .msg-content-box {
  padding: 8px;
  text-align: center;
}

.messageBox .msg-content-box:first-child {
  margin-top: -8px;
}

.messageBox .move-up-enter {
  animation-duration: .2s;
  animation-fill-mode: both;
  animation-play-state: paused;
  opacity: 0;
  animation-timing-function: cubic-bezier(.08, .82, .17, 1);
  animation-name: aptMoveUpIn;
  animation-play-state: running;
}

@-webkit-keyframes aptMoveUpIn {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 1
  }
}

@keyframes aptMoveUpIn {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 1
  }
}

.messageBox .move-up-leave {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  -webkit-animation-timing-function: cubic-bezier(.6, .04, .98, .34);
  animation-timing-function: cubic-bezier(.6, .04, .98, .34);
  -webkit-animation-play-state: running;
  animation-play-state: running;
  pointer-events: none;
  -webkit-animation-name: MessageMoveOut;
  animation-name: MessageMoveOut;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}

@-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
  }
}

.messageBox .msg-content {
  display: inline-block;
  padding: 8px 16px;
  background: #CCC;
  border-radius: 3px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  pointer-events: all;
  font-size: 0;
  min-width: 120px;
  text-align: left;
}

.messageBox .msg-content  {
  font-size: 13px;
  color: #333;
  /* text-align: left; */
}

/* 成功 */
.messageBox .msg-content.msg-success {
  background: #DFFAD1;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.57);
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.57);
}

.messageBox .msg-content.msg-success  {
  color: #4C9368;
}

/* 失败 */
.messageBox .msg-content.msg-error {
  background: #FFE9EF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.57);
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.57);
}

.messageBox .msg-content.msg-error {
  color: #FB4949;
}
/* 提示 */
.messageBox .msg-content.msg-info {
  background: #E8F4FF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.57);
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.57);
}

.messageBox .msg-content.msg-info {
  color: #27A4FF;
}

/* 终止 */
.messageBox .msg-content.msg-warning {
  background: #FFE8D4;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.57);
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.57);
}

.messageBox .msg-content.msg-warning {
  color: #FF8312;
}