.body-box{
  padding-top: 204px;
  background-color: #ffffff;
}
.header-box{
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  border-bottom: 1px solid #e7eaec;
  background-color: #ffffff;
}
.main-title {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-title .title {
  flex: 1;
  color: #000000;
  font-size: 32px;
}
.main-title .address {
  margin-left: 20px;
  font-size: 16px;
  white-space: nowrap;
}
/* 表格 */
.table-box {
  
  overflow-x: auto;
  overflow: auto;
  margin: 0 20px;
  background-color: #f1f5f9;
  border-radius: 8px;
  margin-top: 50px;
}

.table-td,
.table-th {
  height: 70px;
  /*min-width: 100px;*/
   width: 100px;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  /*border-right: 1px solid #ffffff;*/
}
.table-td {
  width:20px;
  padding: 5px;
  min-height: 70px;
  background-color: #deeff7;
  border-top: 1px solid #ffffff;
  color: #000000;
  cursor: pointer;
}
.table-td:hover {
  background-color: #ff6666;
}
tr .table-td:first-child {
  color: #ffffff;
  background-color: #5caed7;
  cursor: default;
}
.table-th {
  background-color: #5caed7;
  border-right: 1px solid #ffffff;
}
.table-th:last-child {
  border-right: none;
}
.empty-td {
  background-color: #f1f5f9;
  cursor: default;
}
.empty-td:hover {
  background-color: #f1f5f9;
}

