.summary_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;
    }
  }
}
.next-table-sort .next-icon:before {
  font-size: 16px !important;
}
.table {
  &-large {
    .next-table-cell-wrapper {
      margin: 4px 4px !important;
    }
  }
  &-medium {
    .next-table-cell-wrapper {
      margin: 2px 2px !important;
    }
  }
  &-small {
    .next-table-cell-wrapper {
      padding: 5px 0px !important;
    }
  }
  &-filter {
    .next-date-picker2-input .next-input input {
      width: 100% !important;
    }
    .filter_ctrl {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 4px;
      .submit_btn {
        margin: 0 !important;
      }
      .reset_btn {
        margin: 0;
      }
    }
  }
  &-header {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
  }
  &-pagination {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  &-count {
    display: inline-block;
    margin-right: 5px;
    color: #333;
    font-size: 16px;
  }
  &-transposition {
    td[data-next-table-col='0'] {
      background-color: #f1f2f3;
    }
  }
}
.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;
  }
}
.noBorder {
  .next-table-cell {
    border: 0 !important;
  }
}
