/* 滚动 roll-grid */
.base-roll-grid {
  > div:nth-child(3) {
    > div:nth-child(2) {
      height: 0 !important; // `vue-seamless-scroll`外面的el-table的`el-table__empty-block`空数据时展示的标签元素
      min-height: 0 !important;
    }
  }

  /* 去除内部滚动el-table的上下两条边框线 */
  .inner-table_box {
    border: none !important;
  }
  .inner-table_box::before {
    height: 0;
  }
}
