.lion-table--section{
  padding: 0 0.6rem;
  .section-count{
    display: inline-block;
    vertical-align: top;
    margin-top: 0.25rem;
  }
  .section-list{
    display: inline-block;
    max-width: calc(100% - 105px);
    overflow: auto hidden;
    white-space: nowrap;
    &::-webkit-scrollbar {
      /*滚动条整体样式*/
      width: 5px !important; /*高宽分别对应横竖滚动条的尺寸*/
      height: 5px !important;
      /* border-radius   : 10px; */
    }

    &::-webkit-scrollbar-corner {
      background-color: #f6f6f6;
    }

    &::-webkit-scrollbar-thumb {
      /*滚动条里面小方块*/
      border-radius: 2px;
      background-color: #cdcdcd;
      background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
      );
    }

    &::-webkit-scrollbar-track {
      /*滚动条里面轨道*/
      background: transparent;
      border-radius: 2px;
    }
    .section-item{
      cursor: pointer;
      vertical-align: middle;
      user-select: none;
      line-height: 1.125rem;
      display: inline-block;
      font-size: .75rem;
      color: #1890ff;
      background: #e4f2ff;
      border: 0.0625rem solid #b1daff;
      border-radius: 2px;
      margin-right: 0.25rem;
      margin-top: 0.25rem;
      span.section-item--remove{
        cursor: pointer;
        border-right: 0.0625rem solid #b1daff;
        padding: 1px 5px;
      }
      span.section-item--value{
        padding: 0 0.25rem;
      }
      :hover{
        background: #cbe6ff;
      }
    }
  }
  .section-clear{
    display: inline-block;
    cursor: pointer;
    user-select: none;
    margin-left: 0.25rem;
    margin-top: 0.25rem;
    color: #1890ff;
    text-decoration: none;
    background: transparent;
    vertical-align: top;
  }
}

.section-item--popover{
  font-size: 12px;
  .ant-tooltip-inner{
    padding: 0;
    text-align: center;
    min-height: 20px;
    min-width: 32px;
  }
}
