@keyframes iconShakeMove {
  0% {
    left: 0px;
  }

  20% {
    left: -1px;
  }

  40% {
    left: 1px;
  }

  60% {
    left: -1px;
  }

  80% {
    left: 1px;
  }

  100% {
    left: 0px;
  }
}

.message-warning-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
  font-family: "PingFang SC", "Hiragino Sans GB", STHeitiSC, Helvetica, "Helvetica Neue", "Microsoft YaHei", Tahoma;
  font-size: 14px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.message-warning-icon.iconshake {
  animation: iconShakeMove .4s;
}

.message-warning-icon .left-eye {
  position: absolute;
  left: 0px;
  top: 0px;
  background: url("./left-eye.svg");
  height: 7px;
  width: 5px;
}

.message-warning-icon .right-eye {
  position: absolute;
  left: 9px;
  top: 0px;
  background: url("./right-eye.svg");
  height: 7px;
  width: 5px;
}

.message-warning-icon .mouse {
  position: absolute;
  left: 0px;
  bottom: 1px;
  background: url("./mouse.svg");
  height: 5px;
  width: 14px;
}
