@charset 'utf-8';
.banner {
  position: relative;
}
.banner img {
  width: 100%;
}
.main .map {
  margin-top: 200px;
  position: relative;
}
.main .map img {
  width: 100%;
  display: block;
}
.main .map .point {
  width: 45px;
  height: 50px;
  position: absolute;
  top: 50px;
  left: 200px;
  background-image: url('/dist/img/icon-point.png');
  background-size: 100% 100%;
  transition: transform 0.4s ease;
}
.main .map .point.on {
  transform: scale(1.2);
}
.main .map .point .show-wrap {
  display: none;
  position: absolute;
  top: -320px;
  left: -175px;
  width: 400px;
  height: 300px;
}
.main .map .point .show-wrap .desc {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 360px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
