.scroll-container { overflow: hidden; white-space: nowrap; /* 调整宽度 */ width: 231px; height:16.25px; position: relative;} .scrolling-text { /* 调整宽度 */ /* width: 231px;*/ height:16.25px; line-height: 16.25px; display: block; animation: text-loop 12s linear infinite; /* 确保初始位置正确设置以填满容器 */ transform: translateX(calc(100% - 100vw));} @keyframes text-loop { 0% { transform: translateX(10%);} 100% { transform: translateX(-100%);} }