/* 复制自原vue文件的动画和自定义类 */
.h-17 {
  height: 4.25rem;
}
.w-15 {
  width: 3.75rem;
}
.h-15 {
  height: 3.75rem;
}
.w-18 {
  width: 4.5rem;
}
.h-18 {
  height: 4.5rem;
}
.w-88 {
  width: 22rem;
}
@keyframes scroll-infinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-scroll-infinite {
  animation: scroll-infinite 30s linear infinite;
  will-change: transform;
}
.animate-scroll-infinite:hover {
  animation-play-state: paused;
}
