/* H5 左侧游戏分类栏：热门固定，其他分类在分类栏内部独立滚动 */
.gameBoxs .lfst.frontend-category-scroll {
  display: block !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: none;
  padding-bottom: .16rem;
  box-sizing: border-box;
}

.gameBoxs .lfst.frontend-category-scroll::-webkit-scrollbar {
  display: none;
}

.gameBoxs .lfst.frontend-category-scroll > .ls:first-child {
  position: sticky !important;
  top: 0 !important;
  z-index: 6 !important;
  isolation: isolate;
}

.gameBoxs .lfst.frontend-category-scroll > .ls:first-child::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 10px;
  background: #f7f9ff;
}

@media (max-width: 480px) {
  .gameBoxs .lfst.frontend-category-scroll {
    max-height: min(58vh, 4.25rem);
  }
}
