ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.article-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.article-item:hover {
  color: #e13e00;
}

.article-link {
  text-decoration: none;
  color: inherit;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 8px;
}

.textMarquee-top {
  display: block;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  animation: marquee-vertical 15s linear infinite;
}

.top.txtMarquee-top:hover .textMarquee-top {
  animation-play-state: paused;
}

@keyframes marquee-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
