.fe-notice-bar {
  display: flex;
  color: #f96a0e;
  padding: 9px 10px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  background-color: #fefceb;
  user-select: none;
}
.fe-notice-bar .fe-notice-bar--withicon {
  position: relative;
  padding-right: 30px;
}
.fe-notice-bar .fe-notice-bar-left-icon {
  height: 18px;
  min-width: 20px;
  padding-top: 1px;
  box-sizing: border-box;
  position: relative;
}
.fe-notice-bar .fe-notice-bar-left-icon .left-icon {
  top: 0px;
  right: 4px;
  position: absolute;
  font-size: 18px;
  line-height: 1;
}
.fe-notice-bar .fe-notice-bar-left-icon img {
  width: 16px;
  height: 16px;
}
.fe-notice-bar .fe-notice-bar-right-icon {
  top: 12px;
  right: 10px;
  position: absolute;
  font-size: 20px;
  line-height: 1;
}
.fe-notice-bar .fe-notice-bar-content-wrap {
  flex: 1;
  height: 18px;
  overflow: hidden;
  position: relative;
}
.fe-notice-bar .fe-notice-bar-content {
  position: absolute;
  white-space: nowrap;
}
.fe-notice-bar .fe-notice-bar-play {
  animation: fe-notice-bar-play linear both;
}
.fe-notice-bar .fe-notice-bar-play--infinite {
  animation: fe-notice-bar-play-infinite linear infinite both;
}
@keyframes fe-notice-bar-play {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fe-notice-bar-play-infinite {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
