 /* 容器及基础样式 */
  #newsContentnews {
    position: relative;
    overflow: hidden;
    /* padding-bottom: 40px; 给分页器留出空间 */
  }
  
  /* 轨道容器 */
  .news-tracknews {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    margin: 0; /* 清除可能存在的默认边距 */
  }
  
  /* 单个 slide */
  .news-slidenews {
    box-sizing: border-box;
    flex-shrink: 0;
    padding-right: 16px; /* 卡片间距 */
  }

  /* 响应式：移动端露出一部分下一张 */
  @media (max-width: 768px) {
    .news-slidenews {
      width: 100%; 
    }
    .textZoomnews{
      /* display: none; */
    }
  }

  /* PC端一行显示4个 */
  @media (min-width: 769px) {
    .news-slidenews {
      width: 25%; 
    }
  }

  /* 分页器容器 */
  .news-pagenews {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }
  
  /* 动态生成的分页器圆点 */
  .news-dotnews {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  /* 动态生成的激活状态圆点 */
  .news-dot-activenews {
    background-color: #dc2626;
  }