.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;

  & &--withicon {
    position: relative;
    padding-right: 30px;
  }

  & &-left-icon {
    height: 18px;
    min-width: 20px;
    padding-top: 1px;
    box-sizing: border-box;
    position: relative;
    .left-icon {
      top: 0px;
      right: 4px;
      position: absolute;
      font-size: 18px;
      line-height: 1;
    }
    img {
      width: 16px;
      height: 16px;
    }
  }

  & &-right-icon {
    top: 12px;
    right: 10px;
    position: absolute;
    font-size: 20px;
    line-height: 1;
  }

  & &-content-wrap {
    flex: 1;
    height: 18px;
    overflow: hidden;
    position: relative;
  }

  & &-content {
    position: absolute;
    white-space: nowrap;
  }

  & &-play {
    animation: fe-notice-bar-play linear both;
  }

  & &-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);
  }
}
