.scroll-container {
    height: 100px; /* 容器高度 */
    overflow: hidden; /* 隐藏超出部分 */
    position: relative; /* 绝对定位 */
  }
  
  .scroll-item {
    height: 50px; /* 每个文本项的高度 */
    line-height: 50px; /* 垂直居中 */
    text-align: center;
    font-size: 24px;
  }
  
  .scroll-enter, .scroll-leave-to {
    opacity: 0;
    transform: translateY(50px); /* 向下位移 */
  }
  
  .scroll-enter-active, .scroll-leave-active {
    transition: all 0.5s ease; /* 动画效果 */
  }
  
  .scroll-leave {
    position: absolute;
    width: 100%; /* 保持宽度一致 */
  }