.quicktab-list-group {
  position: fixed;
  display: none;
  flex-direction: column;
  width: 120px;
  max-height: 320px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  overflow-y: auto;
  list-style: none;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 7.5%);

  &.active {
    display: flex;
  }

  li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #212529;
    cursor: pointer;
    user-select: none;

    // 分割线
    &.separator {
      height: 0;
      padding: 0;
      margin: 0.35em 0;
      overflow: hidden;
      border-top: 1px solid #e6e6e6;

      // 最后一个分割线隐藏
      &:last-child {
        display: none;
      }
    }

    &:hover,
    &:focus {
      color: $primary-color;
      background-color: #f8f9fa;
    }

    &.active,
    &:active {
      color: #fff;
      background-color: $primary-color;
    }

    > span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
  }
}
