@charset "utf-8";

::-webkit-scrollbar {
  width: 6px;
  /*滚动条宽度*/
  height: 6px;
  /*滚动条高度*/
  background-color: #fff0;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0px white;
  -webkit-box-shadow: inset 0 0 0px white;
  background-color: #00549d;
  /*滚动条的背景颜色*/
  border-radius: 20px;
}

.el-table__fixed {
  height: calc(100% - 12px) !important;
}

.el-table__fixed-right {
  height: calc(100% - 12px) !important;
}

.el-table__fixed-right::before,
.el-table__fixed::before {
  background-color: unset !important;
}
