.l-table {
  width: 100%;
  position: relative;
  height: 264px;
  /* overflow-y: scroll; */
  box-sizing: border-box;
  /* overflow-x: scroll; */
  white-space: nowrap;
  font-size: 24rpx;
  -webkit-overflow-scrolling: touch;
}
.l-table-card {
  background-color: var(--color-bg-b1-white);
  border: 0.5px solid var(--color-line-l3);
  box-shadow: 0 0 0.5px 0 var(--color-secondary-default);
  border-radius: 20rpx;
  margin: var(--margin-32);
  overflow: hidden;
  position: relative;
}

.l-table__thead {
  font-weight: bold;
}

.l-table__thead .l-table__row--item {
  padding: 20rpx 10rpx;
}
.l-table__row:nth-of-type(even) .l-table__row--item {
  background-color: var(--color-secondary-default-2);
}

.l-table__row:nth-of-type(odd) .l-table__row--item {
  background-color: var(--color-bg-b0);
}
.l-table__tbody .l-table__row {
  display: flex;
  height: 44px;
  align-items: center;
}

.l-table__row text {
  flex: 1;
  text-align: center;
}
.l-table__unit {
  color: var(--color-text-t3);
  position: absolute;
  bottom: 10rpx;
  right: 10rpx;
  z-index: 99;
  font-size: 20rpx;
}
.l-table__footer {
  background: linear-gradient(
    to bottom,
    var(--color-bg-bo-white),
    var(--color-bg-b1-white)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28rpx;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  line-height: 44px;
  color: var(--color-text-t3);
  position: sticky;
}

.l-table__row--item {
  width: 150rpx;
  display: inline-block;
  padding: 8rpx 10rpx;
  text-align: left;
  box-sizing: border-box;
  height: 100%;
}
.l-table__row--item.sticky-left__s1 {
  width: 300rpx;
}
.l-table__row--item.sticky-left__s1 .w-150rpx {
  display: inline-block;
}
.sticky-left__s1 {
  position: sticky;
  width: 240rpx;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.sticky-top {
  position: sticky;
  top: -1px;
  z-index: 999;
}
.sticky-top .l-table__row--item {
  background: var(--color-bg-b1-white) !important;
}
