    /* 容器样式：滑动回弹 + 隐藏滚动条 */
    .scroll-container {
      white-space: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; /* 回弹效果 */
      scroll-behavior: smooth; /* 平滑滚动 */
      padding: 12px 0;
      background: #f5f5f5;
      /* 隐藏滚动条 */
      scrollbar-width: none;
      -ms-overflow-style: none;
      border-radius: 5px;
    }
    .scroll-container::-webkit-scrollbar {
      display: none;
    }

    /* 标签样式：触碰反馈 + 美化 */
    .scroll-container a {
      display: inline-block;
      padding: 8px 16px;
      margin: 0 8px;
      border-radius: 5px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
      background: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      transition: all 0.2s ease; /* 触碰动画 */
    }
    .scroll-container a:hover {
      background: #e0e0e0;
    }
    .scroll-container a:active {
      transform: scale(0.95); /* 点击缩放反馈 */
    }
    .scroll-container a.active {
      background: #0066cc;
      color: #fff;
      box-shadow: 0 4px 8px rgba(0,102,204,0.2);
    }