* {
  margin: 0;
  padding: 0;
}

.map {
  position: absolute;
  right: 0;
  top: 0.6rem;
  z-index: 1;
}

.map::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 21%;
  transform: translate(-50%, -50%);
  background: url(../images/map-bg.png) no-repeat center;
  background-size: 100% 100%;
  width: 10.6rem;
  height: 14.44rem;
  z-index: -1;
}

.map .earth-content #svg {
  border-radius: 50%;
background:-webkit-linear-gradient(left top, #4B16A6, #00A6DA);
background:-o-linear-gradient(bottom right, #4B16A6, #00A6DA);
background:-moz-linear-gradient(bottom right, #4B16A6, #00A6DA);
background:linear-gradient(to bottom right, #4B16A6, #00A6DA);
}

.map .earth-content .releaseCountries {
  fill: #fff;
  /*stroke: #eee;*/
  stroke-width: 1px;
}

.dotSvg {
  position: relative;
  width: 0.6rem;
  height: 0.38rem;
  background: url(../images/map-li.png) no-repeat center;
  background-size: cover;
}

.dotSvg path {
  background-color: transparent;
  background-image: url(../images/map-li.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 0.6rem;
  height: 0.38rem;
}

.dotSvg text {
  font-family: "sySong-r";
  font-size: 0.18rem;
  position: relative;
  background: url(../images/map-li.png) no-repeat center top;
  background-size: cover;
}

.dotSvg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.6rem;
  height: 0.38rem;
  background: url(../images/map-li.png) no-repeat center;
  background-size: cover;
}

#content {
  width: 6.77rem;
  height: 7rem;
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
}

.releaseCountries {
  fill: #ddd;
  stroke: #fff;
  stroke-width: 1px;
  transition: fill 1s ease-out;
}

.selseCountries {
  fill: #aaa;
  transition: fill 1s ease-out;
}

.layerBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -999px;
  left: 0px;
}

.infoBox {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 3px;
  padding-top: 20px;
  cursor: default;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.infoBox .title {
  border-left: solid 3px rgba(72, 155, 81, 1);
  height: 20px;
  line-height: 20px;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  padding-left: 17px;
}

.infoBox .title b {
  font-size: 24px;
  color: rgba(72, 155, 81, 1);
  letter-spacing: 1px;
}

.infoBox .title span {
  font-size: 14px;
  line-height: 14px;
  padding-left: 3px;
  color: #999;
}

.infoBox p {
  padding: 10px 20px 20px;
  font-size: 10px;
  line-height: 18px;
  color: #999;
}

.showInfoBox {
  top: 0px;
  transition: top 0.3s linear;
}

.hideInfoBox {
  top: -999px;
  transition: top 0.3s linear;
}

@media screen and (max-width: 1500px) {
  .map {
    position: relative;
    top: 0;
  }

  .map::after {
    left: 36.5%;
  }

  #content {
    margin: 0 auto;
  }

}

@media screen and (max-width: 1300px) {
  .map::after {
    left: 34.5%;
  }
}

@media screen and (max-width: 1200px) {
  .map::after {
    left: 33%;
  }

}

@media screen and (max-width: 1024px) {
  .map {
    top: 0.3rem;
  }

  .map::after {
    left: 32%;
  }
}

@media screen and (max-width: 768px) {
  .map::after {
    left: 26%;
  }
}

@media screen and (max-width: 640px) {
  .map::after {
    left: 24%;
  }
}

@media screen and (max-width: 480px) {
  #content {
    width: 4.77rem;
    height: 5rem;
  }

  .map::after {
    width: 7.6rem;
    height: 10.44rem;
  }
}

@media screen and (max-width: 375px) {
  #content {
    width: 3.77rem;
    height: 4rem;
  }

  .map::after {
    width: 5.6rem;
    height: 8.44rem;
  }
}