/* 全局样式 */
body {
  margin: 0;
  font-family: 'PingFang SC','Microsoft YaHei','Helvetica Neue','Helvetica','Arial',sans-serif;
  font-size: 0.9rem;
}

table {
  table-layout:fixed;
  border: solid 1px #e3e3e3;
  color:#717171;
  margin-left: 10px;
  border-spacing: 0;
  width: calc(100% - 20px);
}
table tr {
  height: 30px;
}
table tr td {
  padding-left: 5px;
  border-bottom: 1px solid #e3e3e3;
  word-wrap: break-word;
}

input, textarea, select {
  font-family: 'PingFang SC','Microsoft YaHei','Helvetica Neue','Helvetica','Arial',sans-serif;
  font-size: 0.9rem;
}

input[type='button'] {
  font-family: 'PingFang SC','Microsoft YaHei','Helvetica Neue','Helvetica','Arial',sans-serif;
  font-size: 1rem;
  background-color:powderblue;
}

#header {
  justify-content:center;
  align-items:Center;
  display: flex;
  border-bottom: blue 2px solid;
  width: 100%;
  height: 80px;
}

#body {
  display:inline-block;
  width: 100%;
  margin-top: 10px;
  box-sizing: border-box;
  height: calc(100% - 100px);
}

#menubar {
  float: left;
  width: 280px;
  border-right: #a3a3a3 1px solid;
  height: calc(100% - 100px);
  position:absolute;
  left: 0;
  top: 80px;
}

#menu {
  padding: 0 20px;
}

#menu li {
  display: block;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px #a3a3a3 dotted;
  margin: 5px;
  box-sizing: border-box;
  justify-content:center;
  align-items:Center;
}

#menu li a {
  text-decoration:none;
  display: flex;
  display:block;
  justify-content:center;
  align-items:Center;
  margin-left: 10px;
}

#menu li.hover {
  background-color:lightgoldenrodyellow;
}

#menu li.active {
  background-color:lightblue;
  font-weight: 700;
}

#main {
  float: left;
  height: calc(100% - 100px);
  width: calc(100% - 300px);
  position:absolute;
  left: 290px;
  top: 90px;
}

#footer {
  display: flex;
  height: 30px;
  background-color: #f3f3f3;
  justify-content:center;
  align-items:Center;
  vertical-align: middle;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0
}