.fxm-tableselector-container {
    background-color: #F7F8F9;
    position: relative;
    z-index: 1;
  }
  .fxm-tableselector-content {
    position: relative;
  }
  
  .fxm-tableselector-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.60);
    padding: 1em 1.5em;
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    &:active {
      background: rgba(240, 240, 240, 0.60);
    }
  }
  
  .fxm-tableselector-table {
    flex: 1;
    color: rgba(51, 51, 51, 0.8);
  }
  
  .fxm-tableselector-num {
    color: rgba(0, 0, 0, 0.25);
  }
  
  .fxm-tableselector-down-btn {
    width: 2em;
    color: rgba(0, 0, 0, 0.45);
    transition: transform 0.3s;
  }
  
  .fxm-tableselector-tips {
    margin-top: 1em;
    text-align: center;
    color: rgba(0, 0, 0, 0.45);
  }
  
  .fxm-tableselector-item {
    display: inline-block;
    border-radius: 1em;
    padding: 0.3em 0.8em 0.2em 0.8em;
    border: 1px solid #DDDDDD;
    margin: 0.3em 0.5em;
    background-color: #fafbfb;
    transition-property: color, background-color;
    transition-duration: 0.3s;
  }
  
  .fxm-tableselector-checked {
    background-color: #1890ff;
    color: #FFFFFF;
    border-color: transparent;
  }
  
  .fxm-tableselector-drow-down {
    padding: 1em 2em;
    position: absolute;
    width: 100%;
    background-color: #F7F8F9;
  }
  
  .fxm-tableselector-mask {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
  }
  
  .fxm-tableselector-mask-show {
    opacity: 1;
    pointer-events: all;
  }
  
  