.fullScreenTable-container {
}
.fullScreenTable-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fullScreenTable-body {
  width: 100%;
  height: 100%;
}
.fullScreenTable-body .tableWrapper {
  height: 100%;
}
.fullScreenTable-body .table .tbody {
  display: block;
  width: 100%; /*  这里的8px是滚动条的宽度 */
  height: calc(100% - 80px - 24px);
  padding: 0 24px;
  overflow-y: overlay;
  position: relative;
  /* overflow-x: hidden; */
  left: -24px;
}

.fullScreenTable-body .table {
  height: 100%;
  padding-top: 24px;
}

.fullScreenTable-header {
  height: 72px;
  border: 1px solid var(--full-screen-border-color);
  background-color: var(--color-card-2);
  box-shadow: 0 6px 20px rgba(19, 60, 158, 0.04);
}
.fullScreenTable-header-content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24rem;
  color: var(--color-text-1);
  font-weight: 500;
  font-family: 'Gate_Sans Medium';
}
.fullScreenTable-bottom {
  height: 64px;
  font-size: 20rem;
  font-weight: 500;
  font-family: 'Gate_Sans Medium';
  color: var(--brandColor);
  border: 1px solid var(--full-screen-border-color);
  background-color: var(--color-card-2);
  box-shadow: 0 -6px 20px rgba(19, 60, 158, 0.04);
}
.fullScreenTable-bottom-content {
  cursor: pointer;
  margin: 0 auto;
  width: max-content;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  column-gap: 4px;
}
