.top-marquee {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: #111;
	overflow: hidden;
	z-index: 9999;
	display: flex;
	align-items: center;
	padding: 0 16px;
	text-align: center;
}

.marquee-item {
  position: absolute;
  left: 16px;
  right: 16px;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  white-space: nowrap;
}

/* 顯示中的項目 */
.marquee-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* hover 效果 */
.marquee-item:hover {
	color: #e2cb9a;
	text-decoration: none;
}