.iconfont {
  font-size: 40px;
  font-weight: 600;
}

.map {
  display: block;
  position: relative;
  width: 65vw;
  margin: 80px auto 0px;
}

.map .leftArrow,
.map .rightArrow {
  position: absolute;
  transition: all .3s;
}

.map .leftArrow {
  left: calc(0% - 55px);
  top: -80px;
}

.map .rightArrow {
  right: calc(0% - 55px);
  top: -5px;
}

.map .rightArrow .iconfont {
  transform: rotate(180deg);
}

.map .scale {
  width: 110px;
  font-weight: 600;
  font-size: 20px;
}

.map .underline {
  width: 65vw;
  height: 5px;
  background-color: #f9f7e8;

  border-radius: 9999px;

}