.table_wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 14px;
  .fix-left {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.table_scroll {
  overflow: scroll;
  position: relative;
  max-height: 40vh;

  .fix-thead {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.table {
  color: #343434;
  font-size: 12px;
  max-height: 100%;
  width: 100%;
  text-align: center;
  border-width: 0;
  position: relative;
  border-collapse: collapse;
  thead {
    tr {
      height: 30px;
      font-size: 12px;
      font-family: PingFangSC-Regular, PingFang SC;
      font-weight: 400;
      color: #343434;
      background: #e6e6e6;
      // background-color: var(--theme-primary);
      border-radius: 4px 4px 0px 0px;
    }
    th {
      white-space: nowrap;
      font-weight: normal;
      padding: 0 5px;
      color: #333;
      box-sizing: border-box;
      position: sticky;
      top: 0; /* 第一列最上 */
      background-color: #ebf5ff;
    }

    th:first-child {
      left: 0;
      z-index: 2;
      // background-color: lightblue;
    }
  }
  tbody {
    tr:nth-child(2n) {
      td {
        background: #f9f9f9;
      }
    }
    tr:nth-of-type(2n + 1) {
      td {
        background: #fff;
      }
    }
    td {
      white-space: nowrap;
      height: 28px;
      line-height: 28px;
      color: #666;
      padding: 0 10px;
      box-sizing: border-box;
      // position: relative;
      // background: #fff;
      // border: 1px solid #86939e;
    }

    td:first-child,
    th:first-child {
      position: sticky;
      left: 0; /* 首行在左 */
      z-index: 1;
    }
  }
}
