.ant-table {
  overflow: auto hidden;
  -webkit-overflow-scrolling: touch;
}
.ant-table-scroll-height {
  overflow: auto;
}
.ant-table-list-item-full {
  display: flex;
  justify-content: space-between;
}
.ant-table-list-item {
  display: flex;
  position: relative;
}
.ant-table-list-item::after {
  content: '';
  position: absolute;
  background-color: var(--table-bottom-border-color, #e5e5e5);
  display: block;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleY(0.5);
}
.ant-table-list-item::after {
  margin-left: 30rpx;
}
.ant-table-list-item:last-child::after {
  border: 0;
}
.ant-table-list-item-columns {
  justify-content: space-between;
}
.ant-table-list-item-columns-item {
  flex-shrink: 0;
}
.ant-table-list-item-sorter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 6rpx;
}
.ant-table-list-item-sorter-icon {
  width: 16rpx;
  height: 16rpx;
}
.ant-table-list-item-value {
  display: flex;
  align-items: center;
  font-size: 26rpx;
  font-weight: 400;
  color: var(--table-item-color, #333333);
  background-color: var(--table-item-bg, #ffffff);
  flex-grow: 1;
  padding: 24rpx;
  min-height: 62rpx;
  height: 100%;
  word-break: break-all;
  text-align: left;
  box-sizing: border-box;
}
.ant-table-list-item-value-align-right {
  justify-content: flex-end;
}
.ant-table-list-item-value-fixed {
  position: sticky;
  left: 0;
}
.ant-table-list-item-value-shadow::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  display: block;
  width: 30rpx;
  box-shadow: inset 5rpx 0 8rpx 0 var(--table-shadow-color, rgba(28, 28, 28, 0.06));
  transform: translateX(100%);
  transition: box-shadow 0.3s;
  pointer-events: none;
}
.ant-table-list-item-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: wrap;
}
.ant-table-empty {
  padding-top: 50rpx;
  height: 300rpx;
  box-sizing: border-box;
  background-color: var(--table-empty-bg, #ffffff);
}
.ant-table-empty-image {
  position: sticky;
  left: 50%;
  transform: translate(-50%, 0);
  width: 200rpx;
  height: 200rpx;
}
