body {
  margin: 0;
}
.ie-tips-wrapper {
  background-color: rgb(56, 107, 215);
  width: 100%;
  text-align: center;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  position: relative;
}

.close {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  color: rgb(56, 107, 215);
  display: block;
  position: absolute;
  right: 20%;
  top: 7px;
  cursor: pointer;
}

.close:before {
  content: '';
  border-left: 2px solid rgb(56, 107, 215);
  height: 10px;
  position: absolute;
  transform: rotate(45deg);
  right: 7px;
  top: 3px;
}
.close:after {
  content: '';
  border-left: 2px solid rgb(56, 107, 215);
  height: 10px;
  position: absolute;
  transform: rotate(-45deg);
  top: 3px;
  left: 7px;
}
.animate-wrap {
  width: 450px;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
}
.animate {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #fff;
  text-align: left;
  display: inline-block;
  white-space: nowrap;
  animation: 20s wordsLoop linear infinite normal;
  -webkit-animation: 20s wordsLoop linear infinite normal;
  animation-fill-mode:forwards;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  perspective: 1000;
  -moz-perspective: 1000;
  -webkit-perspective: 1000;
  -ms-perspective: 1000;
}
/* .animate:hover{
  animation-play-state:paused;
  -webkit-animation-play-state:paused;
} */

@keyframes wordsLoop {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}

@-webkit-keyframes wordsLoop {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}
