/* 中等宽度的电脑和平板仍固定左侧导航，右侧内容独立随页面滚动。 */
@media (min-width:651px) and (max-width:1050px){
  .sidebar{position:fixed!important;width:238px!important;height:100vh!important;left:0;top:0}
  main{width:calc(100% - 238px)!important;margin-left:238px!important}
}

/* 表格列宽超出内容区时保留横向滚动，不能裁掉右侧状态和操作列。 */
.scroll-table{
  overflow-x:auto!important;
  overflow-y:auto!important;
  scrollbar-gutter:stable both-edges;
}
