.multi_table {
  overflow: hidden;
  .next-table-header {
    background-color: var(--hbgc) !important;
    .next-table-cell {
      background-color: var(--hbgc) !important;
      color: var(--htc) !important;
    }
    .next-icon {
      &::before {
        color: var(--htc) !important;
      }
    }
    .current {
      .next-icon {
        &::before {
          color: #000;
        }
      }
    }
  }
  .next-table-row.last {
    background-color: rgba(228, 231, 237,.2) !important;
    font-weight: 600 !important;
    .next-table-cell {
      background-color: rgba(228, 231, 237,.2) !important;
      font-weight: 600 !important;
      color: #444;
    }
  }
  .header{
    display:block;
    &-bottom{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 5px;
    }
  }
  .table-filter{
    margin-bottom: 5px;
  }
}
.popcell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.popup {
  padding: 8px;
  max-width: 300px;
  font-size: 14px;
  font-weight: 400;
  word-wrap: break-word;
  color: #fff;
  border-radius: 4px;
  border: 1px solid transparent;
  background-color: #1f2633;
  box-shadow: 0 4px 16px 0 rgb(0 0 0 / 12%);
}
// 移动端
@media screen and (max-width: 678px) {
  .popup {
    min-width: 40vw;
  }
}