*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}
html, body, #app { width:100%; height:100%; background: #d7eff3; }
#map {
  width:100%; height:100%; background: #d7eff3;
}

.category-item{
  border-bottom: 2px solid transparent;
}
._select{
  border-bottom: 2px solid #81272E;
  color: #81272E;
}

._seelct-box{
  background: #81272E;
  color: #fff;
}

.desc-content{
  img{
    max-width: 100%;
  }
}



.leaflet-control { display: none !important; }

.leaflet-container .leaflet-control-mouseposition {
  display: none;
}
.leaflet-control-attribution.leaflet-control{
  display: none;
}

/* Marker及标签样式 */
.marker-container {
  position: relative;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marker-container::before{
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #fff;
}
.marker-icon {
  width: 18px;
  height: 18px;
}
.marker-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(84, 186, 239)), to(rgba(107, 195, 186, 0.95)));
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  border: solid 2px #fef7a7;
}

.leaflet-marker-icon.leaflet-div-icon{
  background-color: transparent;
  border: 0;
}