.fx-tabs {
  display: flex;
  column-gap: 40px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: #8A8A8A;
  line-height: 24px;
  .tab {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    align-items: center;
    cursor: pointer;
    &.active {
      color: #4B4B4B;
      font-weight: 500;
      .mark {
        width: 14px;
        height: 8px;
        background: #36A4FF;
        clip-path: polygon(50% 0, 100% 100%, 0 100%);
      }
    }
  }
}
