.sticky-table-header > .el-table > .el-table__header-wrapper {
  position: fixed;
  z-index: 101;
  width: auto;
  overflow-x: auto;

  thead > tr > th {
    background: #f5f7fa;
  }
}

.sticky-table-header > .el-table {
  .el-table__header-wrapper::-webkit-scrollbar {
    height: 4px;
  }
  .el-table__header-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }

  .el-table__header-wrapper::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  }
}

.sticky-table-header {
  // .el-table__fixed-right {
  //   top: -50px;
  // }

  .is-right.is-hidden {
    .cell {
      visibility: visible !important;
    }
  }

  .el-table__fixed-right::before {
    background-color: unset !important;
  }
}
