.projectmap {
  background: url("../images/map_bg.png") no-repeat center center;
  background-size: 100% 100%;
  height: 100vh;
}
.projectmap .head {
  position: relative;
  z-index: 10;
  margin-top: 5vh;
}
.projectmap .head .guang {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.8vh;
}
.projectmap .head .guang img {
  opacity: 0;
  animation: guang 2s infinite;
}
@keyframes guang {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.projectmap .head .numbox {
  display: inline-block;
  margin-top: 4vh;
}
.projectmap .head ul {
  margin-top: 2vh;
}
.projectmap .head ul li {
  border-radius: 4px;
  border: 1px dotted #59a8e6;
  font-size: 60px;
  color: #59a8e6;
  padding: 0 10px;
  margin: 0 2%;
  background-color: #022459;
  width: 70px;
  box-sizing: border-box;
}
.projectmap #map {
  height: 100vh;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.projectmap .maptooltip {
  width: 280px;
  background: rgba(17, 25, 62, 0.8);
  border: 1px solid #35a6ff;
  position: relative;
  padding: 9px 14px;
}
.projectmap .maptooltip .dian {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 5px;
  background-color: #35a6ff;
}
.projectmap .maptooltip .dian1 {
  left: auto;
  right: 0;
}
.projectmap .maptooltip .title {
  color: #fff;
  background-color: rgba(36, 111, 204, 0.16);
  padding: 8px 12px;
}
.projectmap .maptooltip .title i {
  background: url("../images/map_dz.png") no-repeat center center;
  width: 14px;
  height: 17px;
  margin-right: 7px;
}
.projectmap .maptooltip .list {
  color: #fff;
  padding: 0 5px;
  overflow-y: auto;
  max-height: 180px;
}
.projectmap .maptooltip .list::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 10px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.projectmap .maptooltip .list::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(17, 25, 62, 0.8);
}
.projectmap .maptooltip .list::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ededed;
}
.projectmap .maptooltip .list li {
  line-height: 22px;
  border-bottom: 1px dashed rgba(36, 111, 204, 0.5);
  padding: 5px 0;
  text-align: justify;
  white-space: normal;
}
.projectmap .maptooltip .list li:last-child {
  border: 0;
}
.projectmap .menu {
  position: relative;
  z-index: 10;
  width: 150px;
  margin-left: auto;
  margin-right: 5%;
}
.projectmap .menu ul li {
  background: url("../images/map_btn1.png") no-repeat center center;
  background-size: 100% 100%;
  height: 51px;
  line-height: 51px;
  text-align: center;
  font-size: 16px;
  margin: 2vh 0;
  transition: all 0.3s;
}
.projectmap .menu ul li a {
  display: block;
  color: #3996ff;
}
.projectmap .menu ul li:hover a {
  background-image: url("../images/map_btn.png");
  color: #fff;
}
.projectmap .menu ul li.on a {
  color: #fff;
  background-image: url("../images/map_btn.png");
}
/*# sourceMappingURL=projectmap.css.map */