@import './mixin';
.ws-easy-table{
  padding: 20px 0;
  .ws-easy-table__content-item {
    @include flex;
    width: 100%;
    &:nth-child(2n + 1) {
      border-radius: 8px;
      background-color: var(--v-dataTableExpandRow-base);
    }
    &:nth-child(2n) {
    }
    .ws-easy-table__content-title {
      padding: 10px;
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 1.43;
      width: 160px;
      flex: 0 0 auto;
    }
    .ws-easy-table__content-content {
      padding: 10px;
      font-size: 0.875rem;
      line-height: 1.43;
      width: 100%;
    }
  }
}