ul, li {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
.info-container {
  padding: 10px;
  font-family: "Microsoft YaHei";
  text-align:center;
  
}
.info-container .li-box {
  height: 28px;
  overflow: hidden;
}
.info-container ul {
  position: relative;
  animation: moveUp 15s 0.6s infinite;
  -webkit-animation: moveUp 15s 0.6s infinite;
}
@keyframes moveUp {
  0% {
    top: 0px;
  }
  18% {
    top: 0px;
  }
  20% {
    top: -28px;
  }
  38% {
    top: -28px;
  }
  40% {
    top: -56px;
  }
  58% {
    top: -56px;
  }
  60% {
    top: -84px;
  }
  78% {
    top: -84px;
  }
  80% {
    top: -112px;
  }
  98% {
    top: -112px;
  }
}
 
@-webkit-keyframes moveUp{
  0% {
    top: 0px;
  }
  18% {
    top: 0px;
  }
  20% {
    top: -28px;
  }
  38% {
    top: -28px;
  }
  40% {
    top: -56px;
  }
  58% {
    top: -56px;
  }
  60% {
    top: -84px;
  }
  78% {
    top: -84px;
  }
  80% {
    top: -112px;
  }
  98% {
    top: -112px;
  }
}
.info-container li {
  line-height: 1.8;
}