@include b(table) {
  tr > th:first-child {
    margin-left: 42px;
  }
  th {
    white-space: nowrap;
    overflow: hidden;
    user-select: none;
    text-align: left;

    padding: 30px 0 16px 0;
    min-width: 0;
    box-sizing: border-box;
    text-overflow: ellipsis;
    vertical-align: middle;
    position: relative;
  }
  th.is-leaf {
    //border-bottom: solid 2px #ccc;
  }

  th, td {
    min-width: 0;
    box-sizing: border-box;
    text-overflow: ellipsis;
    vertical-align: middle;
    position: relative;
  }
  th > .cell {
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    line-height: 23px;
  }
  @include e(header) {
    width: 100%;
    font-size: 16px;
    padding-left: 32px;
    border-bottom: solid 2px #ccc;
  }
  .cell {
    padding-left: 10px;
    padding-right: 10px;
  }
  @include e(body) {
    width: 100%;
    td > .cell {
    }
    td {
      font-size: 12px;
      height: 46px;
      color: #666;
    }
    tr {
      border-bottom: 1px solid #e7e7e7;
    }
  }
  @include m(enable-row-hover) {
    .mc-table__body tr:hover > td {
      background-color: #e7e7e7;
    }
  }

}