.header {
  display: flex;
  align-items: center;
  margin: 30px 60px;
  position: relative;
  z-index: 10;
}

.header .logo {
  width: 360px;
  overflow: hidden;
}

.header .title {
  font-size: 32px;
  color: #F5F7F8;
}

.header .time {
  color: #9fccee;
  font-size: 18px;
  padding-left: 20px;
}

.icon.up {
  background: url(../images/up.png) no-repeat;
  background-size: 100%;
}

.icon.down {
  background: url(../images/down.png) no-repeat;
  background-size: 100%;
}

.icon.equal {
  background: url(../images/equal.png) no-repeat;
  background-size: 100%;
}

.map {
  width: 1920px;
  height: 1080px;
  position: absolute;
  top: 0;
  z-index: 0;
}

.otherMap {
  position: absolute;
  left: 80px;
  bottom: 60px;
}

.otherMap img {
  width: 112px;
}

.virtualMap {
  height: 500px;
  width: 200px;
  position: absolute;
  left: 126px;
  top: 200px;
}

.virtualMap .item {
  height: 100px;
  display: flex;
  align-items: center;
  margin-top: 1px;
}

.virtualMap .item img {
  width: 50px;
  height: 50px;
}

.virtualMap .item span {
  padding-left: 20px;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  padding-top: 10px;
}

.board {
  width: 500px;
  height: auto;
  position: absolute;
  top: 50px;
  right: 100px;
}

.board .board_item {
  height: 400px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(52, 103, 153, 0.6);
  background-color: rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.board .board_item:last-child {
  height: 580px;
  padding: 20px 0px 0px;
  margin-bottom: 0px;
}

.board .board_item .top {
  display: flex;
  justify-content: space-between;
  color: #fff;
  align-items: end;
}

.board .board_item .top .top_left {
  flex: 1;
  font-size: 24px;
  color: #deedf5;
  font-weight: bold;
}

.board .board_item .top .top_left .date {
  font-size: 16px;
  line-height: 32px;
  font-weight: normal;
  color: #91aebe;
}

.board .board_item .top .top_right {
  font-size: 40px;
}

.board .board_item .top.county {
  align-items: center;
  padding: 0px 20px;
}

.board .board_item .top.county .title {
  font-size: 24px;
  color: #deedf5;
  font-weight: bold;
}

.board .board_item .top.county .date {
  font-size: 16px;
  line-height: 32px;
  color: #91aebe;
}

.board .board_item .table {
  margin-top: 20px;
}

.board .board_item .table #tableData {
  height: 435px;
  overflow: hidden;
}

.board .board_item .table .data_list {
  width: 100%;
  font-size: 0px;
}

.board .board_item .table .data_list .col {
  display: inline-block;
  vertical-align: middle;
  width: 13%;
  height: 48px;
  line-height: 48px;
  font-size: 15px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  font-weight: bold;
}

.board .board_item .table .data_list .col:first-child {
  width: 22%;
}

.board .board_item .table .data_list .row_bg {
  background: rgba(0, 73, 134, 0.2);
}

.board .board_item .table .data_list .row-hd {
  background: linear-gradient(to right, rgba(0, 86, 255, 0.4), rgba(30, 115, 244, 0.4), rgba(0, 86, 255, 0.4));
}

.board .board_item .table .data_list .row-hd .col {
  color: #5b90f7;
}

.board #lineContainer {
  height: 290px;
}

.info_text {
  position: absolute;
  bottom: 70px;
  left: 1164px;
}

.info_text .wrapper {
  float: left;
  margin-top: 60px;
}

.info_text .wrapper .item {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  padding-left: 20px;
  vertical-align: top;
}

.info_text .wrapper .item span {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.info_text .other_map {
  width: 116px;
  margin-right: 20px;
}

.info_text .other_map img {
  width: 100%;
  height: auto;
}