.tds-site-footer {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 99999;
	right: 0;
}

body,
html {
	padding: 0;
	margin: 0;
	background: #f4f4f4 !important;
}

.tds-list {
	margin-right: 50px;
}

.tds-shell-footer {
	display: none !important;
}

.pmd_container {
	/* 最外层盒子，需要三个属性：定宽、文字不换行、超过隐藏 */
	width: 92%;
	margin: 0 auto;
	white-space: nowrap;
	overflow: hidden;
	font-size: 20px;
	color: #65b4ae;
	margin-bottom: 10px;
}

.pmd_container_words {
	position: relative;
	/* 盒子背景宽度将随文字宽度而进行自适应 */
	width: fit-content;
	/* 添加动画 */
	animation: move 20s linear infinite !important;
	/* 让前面的几个文字有一个初始的距离，达到更好的呈现效果 */
	padding-left: 20px;
}

.pmd_container_words::after {
	position: absolute;
	right: -190%;
	content: attr(text);
}

@keyframes move {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-190%);
	}
}