html, body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "Helvetica Neue", Helvetica, "PingFang SC", "Segoe UI", Roboto, "Hiragino Sans GB", "Arial", "microsoft yahei ui", "Microsoft YaHei", SimSun, sans-serif;
  font-size: 14px;
  margin: 0;
}

.content-area-body {
  padding: 16px;
  background: var(--main-background-color);
  box-sizing: border-box;
  height: auto !important;
}
.content-area-body-no-padding {
  background: var(--main-background-color);
  box-sizing: border-box;
  height: auto !important;
}
.content-area-inner {
  background: #fff;
}

/*!*定义滚动条高宽及背景*/
/* 高宽分别对应横竖滚动条的尺寸*!*/
/*::-webkit-scrollbar*/
/*{*/
/*  width: 6px;*/
/*  height: 4px;*/
/*}*/
/*!*定义滚动条轨道*/
/* 内阴影+圆角*!*/
/*::-webkit-scrollbar-track*/
/*{*/
/*  border-radius: 3px;*/
/*  box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);*/
/*  background-color:#f7f7f7;*/
/*}*/
/*!*定义滑块*/
/* 内阴影+圆角*!*/
/*::-webkit-scrollbar-thumb*/
/*{*/
/*  border-radius: 3px;*/
/*  background-color: rgba(0, 0, 0, 0.2);*/
/*  background-image: -webkit-linear-gradient(*/
/*          45deg,*/
/*          rgba(255, 255, 255, 0.2) 25%,*/
/*          transparent 25%,*/
/*          transparent 50%,*/
/*          rgba(255, 255, 255, 0.2) 50%,*/
/*          rgba(255, 255, 255, 0.2) 75%,*/
/*          transparent 75%,*/
/*          transparent*/
/*  );*/
/*}*/

/* 表格高度自适应，取消表格内垂直滚动 */
.el-table {
  height: auto !important;
}
.el-table__body-wrapper {
  height: auto !important;
}
.el-table_toolbar {
  position: static !important;
}
.el-table__fixed, .el-table__fixed-right {
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 1px 0 8px #d3d4d6;
  overflow-x: hidden;
  z-index: 666;
  background-color: #fff;
}
.el-table__fixed-right {
  top: 0;
  left: auto;
  right: 0;
  box-shadow: -1px 0 8px #d3d4d6;
}
.form-center {
  box-sizing: border-box;
  width: 50%;
  min-width: 700px;
  margin: 0 auto;
  padding: 0 24px 50px 24px;
}
/*.hv-tip {*/
/*  position: relative;*/
/*}*/
/*.hv-tip:hover:after {*/
/*  display: inline-block;*/
/*  content: '测试tip';*/
/*  background: #1f2d3d;*/
/*  color: #fff;*/
/*  height: 30px;*/
/*  font-size: 12px;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 100%;*/
/*  z-index: 999;*/
/*  border-radius: 4px;*/
/*  padding: 10px;*/
/*  max-width: 400px;*/
/*  font-size: 14px;*/
/*}*/