@charset "utf-8";
/* CSS Document强烈推荐 跑马灯效果 */
.marquee {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	font-family: "noto Sans SC";
}

.marquee img,
.marquee span {
	display: inline-block;
	padding-right: 50px; /* 调整图片或文字之间的间距 */
	vertical-align: top;
	animation: marquee 10s linear infinite;
	font-family: "noto Sans SC";
}

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