/* grid 列表 */
.base-grid {
  .el-pagination {
    margin-top: 3px;
  }
  .baseGrid__fixed-row {
    position: sticky; //（不要用fixed，因为他是基于屏幕定位，也会出现滚动的问题）
    // position: '-webkit-sticky';
    // background: rgba(0, 126, 255) !important; //（设置自己要的背景色）
    top: 0;
    z-index: 3; // 列的固定是4（因为有固定列，为了不互相影响所以要注意列的层级， 不然滚动的时候会有bug，发现固定的列不固定了）
    display: table-row;
    width: 100%;

    /* td {
      background: rgb(26, 81, 136) !important;
    } */
  }
}
