/* 跑馬燈 */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  display: flex; /* 讓內容橫向排列 */
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: seamless-move 5s linear infinite; /* 秒數越大越慢 */
  font-size: 20px;
  color: #494949;
  font-weight: bold;
}

/* 滑鼠移入停止 */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes seamless-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 只移動一半，因為後面有一組一樣的文字接著 */
  }
}