/**
* 名称 地图样式
* 开发者：
* 时间：2018/9/5
**/
.map {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  bottom: -50px;
}
.infoBox-style{
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  border: solid 1px #ccc;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  padding: 15px;
  margin-bottom: 25px;
}
.infoBox-style:before,
.infoBox-style:after {
  position: absolute; top: 100%; left: 50%;
  content: " ";
  width: 0; height: 0;
  border: 10px solid transparent;
  margin-left: -5px;
}
.infoBox-style:before {
  border-top-width: 11px; border-top-color: #aaa;
  margin-left: -11px;
}
.infoBox-style:after {
  border-width: 9px; border-top-width: 10px; border-top-color: #fff;
  margin-left: -10px;
}
.infoBox_close{
  position: absolute; top: 0px; right: 0px;
  width: 25px;
  padding: 2px;
  /*background: rgba(255, 255, 255, 0.9);*/
  border-radius: 100%;
  /*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);*/
  /*border: solid 1px #ccc;*/
}
.infoBox_close:hover{
  background: #ccc;
}

/*标签*/
/*.BMapLabel{
  width: 10px;
  background: none !important;
  padding: 0 !important;
  border: 0 !important;
}*/
.map-label{
  width: 100px;
  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 99px;
  padding: 1px 5px;
  font-size: 12px;
}













