.scroll-tab {
  text-align: center;
  background: #fff;
  overflow-x: auto;
  z-index: 1;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  ::-webkit-scrollbar {
    display: none;
    width: 0;
  }

  ul {
    li {
      a {
        display: inline-block;
        height: 100%;
        font-size: 16px;
      }
      // a.active {
      //   position: relative;
      //   font-family: PingFangSC-Medium, PingFang SC;
      //   font-weight: 500;
      //   color: var(--theme-primary);
      //   &::after {
      //     content: '';
      //     position: absolute;
      //     background: var(--theme-primary);
      //     left: 0;
      //     bottom: 0;
      //     width: 100%;
      //     height: 2px;
      //     z-index: 1;
      //   }
      // }
    }
  }

  .ul-flex {
    display: flex;
    li {
      flex: 1;
    }
  }

  .ul-flow {
    overflow: auto;
    white-space: nowrap;
    li {
      display: inline-block;
      padding-left: 30px;
      &:last-child {
        padding-right: 30px;
      }
    }
  }
}

.scroll-element {
  &:last-child {
    min-height: 100vh;
  }
}
