.marquee {
  background: #fff;
  color: #d93030;
  padding: 8px 0;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #D0E7FF;
  margin-bottom: 0px; /* 与下方内容保持间距 */
}
.marquee-content {
  display: inline-block;
  animation: marquee 15s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}