粘性定位
顶部达到距离上边44px之后(设定值之后)
自动变为position: fixed;。

  /*粘性定位*/
  .tab-control{
   
    position: sticky;
    top: 44px;
  }