@charset "UTF-8";
/* 
* =====================
*        Table
* =====================
*/
.table {
  min-width: 100%;
  caption-side: bottom;
  border-collapse: collapse;
  margin-bottom: 1rem;
  border-color: #dee2e6;
}
.table caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}
.table thead,
.table tbody,
.table tfoot,
.table tr,
.table td,
.table th {
  outline: 0;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  position: relative;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  border-bottom-width: 1px;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}
.table.caption-top {
  caption-side: top;
}
.table.vertical {
  border: 1px solid #cbcbcb;
}
.table.vertical thead,
.table.vertical tfoot {
  background-color: #e0e0e0;
}
.table.vertical th,
.table.vertical td {
  border-left: 1px solid #cbcbcb;
  border-bottom-width: 0;
  border-right-width: 0;
  border-top-width: 0;
}
.table.horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.table.horizontal thead,
.table.horizontal tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  border: 0.0625rem solid #aaa;
}
.table.horizontal thead {
  border: 0;
  -webkit-box-flex: 0.2;
      -ms-flex: 0.2 0 0px;
          flex: 0.2 0 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  background-color: #e6e6e6;
}
.table.horizontal thead tr:first-child {
  padding-left: 0;
}
.table.horizontal thead tr:first-child th:first-child {
  border-top-left-radius: 0.25rem;
}
.table.horizontal thead tr:first-child th:last-child {
  border-bottom-left-radius: 0.25rem;
}
.table.horizontal tbody {
  border: 0;
  -webkit-box-flex: 0.2;
      -ms-flex: 0.2 0 0px;
          flex: 0.2 0 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  overflow: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0.8;
      -ms-flex: 0.8 0 0px;
          flex: 0.8 0 0;
  margin-left: 0;
  padding-bottom: calc(0.5rem / 4);
}
.table.horizontal tbody:not(~ tfoot) tr:last-child td {
  border-right: 0.0625rem solid #aaa;
}
.table.horizontal tbody:not(~ tfoot) tr:last-child td:first-child {
  border-top-right-radius: 0.25rem;
}
.table.horizontal tbody:not(~ tfoot) tr:last-child td:last-child {
  border-bottom-right-radius: 0.25rem;
}
.table.horizontal tfoot {
  background-color: #e6e6e6;
}
.table.horizontal tfoot th, .table.horizontal tfoot td {
  border-right: 0.0625rem solid #aaa;
}
.table.horizontal tfoot th:first-child, .table.horizontal tfoot td:first-child {
  border-top-right-radius: 0.25rem;
}
.table.horizontal tfoot th:last-child, .table.horizontal tfoot td:last-child {
  border-bottom-right-radius: 0.25rem;
}
.table.horizontal tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 0;
}
.table.horizontal th {
  text-align: right;
  border-left: 0.0625rem solid #aaa;
  border-right: 0.0625rem solid #aaa;
}
.table.horizontal th,
.table.horizontal td {
  width: auto;
  border-bottom: 0.0625rem solid #aaa !important;
}
.table.horizontal th:not(:first-child),
.table.horizontal td:not(:first-child) {
  border-top: 0;
}
.table.horizontal th:first-child,
.table.horizontal td:first-child {
  border-top: 0.0625rem solid #aaa;
}
.table.bordered > :not(caption) > *, .table.bordered > :not(caption) > * > * {
  border: 1px solid #cbcbcb;
}
.table.borderless > :not(caption) > *, .table.borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table.striped thead > tr:nth-of-type(odd) {
  background-color: #f1f2f4;
}
.table.striped > :not(caption) > tr:nth-of-type(even) {
  background-color: #f1f2f4;
}
.table.hover {
  overflow: hidden;
}
.table.hover tr:hover {
  background-color: #fff4d7;
}
.table.hover td,
.table.hover th {
  padding: 10px;
  position: relative;
  outline: 0;
}
.table.hover body:not(.nohover) tbody tr:hover {
  background-color: #fff4d7;
}
.table.hover td:hover::after,
.table.hover thead th:not(:empty):hover::after,
.table.hover td:focus::after,
.table.hover thead th:not(:empty):focus::after {
  content: '';
  height: 10000px;
  left: 0;
  position: absolute;
  top: -5000px;
  width: 100%;
  z-index: -1;
}
.table.hover td:hover::after,
.table.hover th:hover::after {
  background-color: #fff4d7;
}
.table.hover td:focus::after,
.table.hover th:focus::after {
  background-color: lightblue;
}
.table.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive td,
.table-responsive th {
  word-break: keep-all;
  white-space: nowrap;
}

.table-fixed {
  overflow: auto;
  border-bottom: 0;
  border-right: 0;
}
.table-fixed table {
  table-layout: fixed;
  /* 第一列最上 */
}
.table-fixed table td,
.table-fixed table th {
  word-break: keep-all;
  white-space: nowrap;
  /* 首行在左 */
}
.table-fixed table td:first-child,
.table-fixed table th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: #fff4d7;
}
.table-fixed table thead tr th {
  z-index: 3;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.table-fixed table th {
  background-color: #dee2e6;
}
.table-fixed table th:first-child {
  z-index: 4;
}

/*# sourceMappingURL=table.css.map */