.tips-wrap {
  position: fixed;
  left: 50%;
  top: -50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  width: 80%;
  max-width: 768px;
  z-index: 999;
  @keyframes tips-down {
    0% {
      top: -50%;
    }
    100% {
      top: 20px;
    }
  }
  @keyframes tips-up {
    0% {
      top: 20px;
    }
    100% {
      top: -50%;
    }
  }
  .wrap-content {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 6px 16px;
    border-radius: 5px;
    color: #666;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    .icon {
      margin-right: 6px;
    }
  }
  .icon-success {
    color: #00a854;
  }
  .icon-warn {
    color: #efec16;
  }
  .icon-fail {
    color: #e4393c;
  }
  .icon-smile {
    color: #1d85df;
  }
  &.tips-down {
    animation: tips-down 0.35s ease 1 forwards normal;
  }
  &.tips-up {
    animation: tips-up 0.35s ease 1 forwards normal;
  }
}