index.scss 670 Bytes
.menuMonitor {
  position: relative;
  background-color: #f0f2f5;
  width: 100%;
}

.selectNone {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menuFixed {
  position: fixed;
  top: 0;
  width: 80%;
  left: 10%;
  background-color: #f0f2f5;
  z-index: 3;
}

.btnFixed {
  position: fixed;
  top: 60px;
  z-index: 4;
  width: calc(80% - 20px);
  left: 10%;
  margin-left: 20px;
  background-color: #FFFFFF;
  padding-top: 20px;
}

.table_title {
  /*padding-top  绝对定位后的元素距离顶部的距离*/
  padding-top: 150px;
  /*对应内边距,消除内边距撑开的距离*/
  margin-top: -150px;
}