.#{$table-prefix-cls}-container{
  position: relative;
  overflow: hidden;
}

table {
  overflow: hidden;
  font-size: .28rem;
  color: #000;
  text-align: left;
  background-color: #fff;
}

table th,
table td {
  padding: $table-td-padding;
  color: $gray-9;
  @extend %text-truncate;
}

table th {
  font-weight: 400;
  background-color: $gray-3;
}


.#{$table-prefix-cls}-main {
  overflow-x: auto;
}

.#{$table-prefix-cls}-fixed {
  position: absolute;
  top: 0;
  left: 0;

  table {
    background-color: $gray-3;
  }

  &--right {
    right: 0;
    left: auto;

    table {
      background-color: #fff;
    }
  }
}
