.section-title {
  border-bottom: solid 1px #ebebeb;
  text-align: left;
}
.section-title span {
  font-size: 21.6px;
  font-size: calc(24 * var(--font-scale) * 1px);
  font-weight: bold;
  color: #0764cc;
  padding-bottom: 18px;
  border-bottom: solid 4px #0764cc;
  display: inline-block;
}

.content-container {
  min-height: 500px;
}

.date-container {
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 100;
  *zoom: 1;
}
.date-container:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.date-container select {
  width: 100px;
  height: 40px;
  background-color: #ebebeb;
  color: #999;
  font-size: 16.2px;
  font-size: calc(18 * var(--font-scale) * 1px);
  text-align: center;
  border-radius: 4px;
  float: left;
  margin-left: 5px;
}
.date-container button {
  background: #0764cc;
  margin-left: 5px;
  width: 80px;
  height: 40px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  float: left;
  font-size: 16.2px;
  font-size: calc(18 * var(--font-scale) * 1px);
  cursor: pointer;
}

.table-head {
  background-color: #378ae8;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-size: calc(20 * var(--font-scale) * 1px);
  margin-top: 20px;
}

.table {
  display: table;
  width: 100%;
  margin-top: 1px;
  margin-bottom: 40px;
}
.table .row {
  display: table-row;
}
.table .row div {
  display: table-cell;
  font-size: 18px;
  font-size: calc(20 * var(--font-scale) * 1px);
  vertical-align: middle;
  text-align: center;
  height: 45px;
}
.table .row div:nth-child(1) {
  width: 20%;
}
.table .row div:nth-child(1) span {
  font-size: 14.4px;
  font-size: calc(16 * var(--font-scale) * 1px);
}
.table .row div:nth-child(2) {
  width: 60%;
  border-left: #fff solid 1px;
  border-right: #fff solid 1px;
}
.table .row div:nth-child(3) {
  width: 20%;
}
.table .row div:nth-child(3) .result {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14.4px;
  font-size: calc(16 * var(--font-scale) * 1px);
}
.table .row:nth-child(odd) {
  background-color: #d4e6fa;
}
.table .row:nth-child(2n) {
  background-color: #b8d7fa;
}
.table .row:nth-child(1) div {
  background-color: #378ae8;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .section-title span {
    font-size: 19.8px;
    font-size: calc(22 * var(--font-scale) * 1px);
    padding-bottom: 10px;
    border-bottom: solid 4px #0764cc;
  }
  .content-container {
    min-height: auto;
  }
  .date-container {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 15px;
  }
  .date-container select {
    width: 90px;
    height: 40px;
    font-size: 16.2px;
    font-size: calc(18 * var(--font-scale) * 1px);
    border-radius: 4px;
    margin-left: 5px;
  }
  .date-container button {
    margin-left: 5px;
    width: 80px;
    height: 40px;
    border-radius: 4px;
  }
  .table-head {
    height: 40px;
    line-height: 40px;
    margin-top: 15px;
  }
  .table .row div {
    font-size: 16.2px;
    font-size: calc(18 * var(--font-scale) * 1px);
    height: 40px;
  }
  .table .row div:nth-child(1) {
    width: 13%;
  }
  .table .row div:nth-child(1) span {
    font-size: 14.4px;
    font-size: calc(16 * var(--font-scale) * 1px);
  }
  .table .row div:nth-child(2) {
    width: 57%;
  }
  .table .row div:nth-child(3) {
    width: 30%;
    text-align: left;
    padding-left: 10px;
  }
}