.pisell-tabs {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 17px;
  font-weight: 400;
  color: #0d1619;
  cursor: default;

  .pisell-tabs-btn-left,
  .pisell-tabs-btn-right {
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-shrink: 0;
    transition: width 300ms ease 0s;
    cursor: pointer;
    overflow: visible;
    background: #fff;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;

    .pisell-tabs-btn-icon {
      width: 24px;
      height: 24px;
      background: #f1f1f1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #262626;
      font-size: 20px;
    }
  }

  .pisell-tabs-btn-left {
    .pisell-tabs-btn-icon {
      transform: rotate(0deg);
    }
  }

  .pisell-tabs-btn-right {
    /* White */

    background: #ffffff;
    /* shadow-lg */

    // box-shadow: 0px 6px 15px -3px rgba(0, 0, 0, 0.15);

    .pisell-tabs-btn-icon {
      transform: rotate(0);
    }
  }

  .pisell-tabs-content {
    width: 100%;
    max-width: none;
    overflow: scroll hidden;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    display: flex;
    position: relative;
    scroll-behavior: smooth;

    /*滚动条样式*/
    &::-webkit-scrollbar {
      display: none;
    }

    &::-webkit-scrollbar-thumb {
      display: none;
    }

    &::-webkit-scrollbar-track {
      display: none;
    }

    .pisell-tabs-tab {
      scroll-snap-align: start;
      white-space: initial;
      flex-shrink: 0;
      cursor: pointer;

      .pisell-tabs-tab-content {
        display: inline-flex;
        height: 40px;
        padding: 0px 16px;
        border-radius: 88px;
        -webkit-box-align: center;
        align-items: center;
        transition: all 300ms ease 0s;
        color: #1b1b1b;
        letter-spacing: 0px;
        min-width: 0px;
        font-weight: 600;
        font-size: 14px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
      }

      @media (min-width: 769px) {
        &:hover {
          .pisell-tabs-tab-content {
            background-color: #f1f1f1;
          }
        }
      }

      @media (max-width: 768px) {
        &:hover {
          .pisell-tabs-tab-content {
            background-color: transparent;
          }
        }
      }

      &.pisell-tabs-tab-active {
        .pisell-tabs-tab-content {
          color: #fff;
          background: var(--primary-600, #7F56D9);
        }
      }
    }
  }
}