.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
  -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
  -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

/*//*/
#map {
  width: 800px;
  height: 600px;
  border: 1px solid #ccc;
}
.leaflet-control-container{
  display: none !important;
}
#progress {
  display: none;
  position: absolute;
  z-index: 1000;
  left: 400px;
  top: 300px;
  width: 200px;
  height: 20px;
  margin-top: -20px;
  margin-left: -100px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  padding: 2px;
}

#progress-bar {
  width: 0;
  height: 100%;
  background-color: #76A6FC;
  border-radius: 4px;
}

/*//*/
.marker-cluster-small div {
  background-size: 100%;
  background-image: url(./m0.png);
  /*background-color: rgba(110, 204, 57, 0.6);*/
}

.marker-cluster-medium div {
  background-size: 100%;
  background-image: url(./m1.png);
  /*background-color: rgba(240, 194, 12, 0.6);*/
}

.marker-cluster-large div {
  background-size: 100%;
  background-image: url(./m2.png);
  /*background-color: rgba(241, 128, 23, 0.6);*/
}

.leaflet-oldie .marker-cluster-small div {
  /*background-color: rgb(110, 204, 57);*/
  background-size: 100%;
  
  background-image: url(./m0.png);
  
}

.leaflet-oldie .marker-cluster-medium div {
  background-size: 100%;
  background-image: url(./m1.png);
  /*background-color: rgb(240, 194, 12);*/
}


.leaflet-oldie .marker-cluster-large div {
  background-size: 100%;
  background-image: url(./m2.png);
  /*background-color: rgb(241, 128, 23);*/
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}

.marker-cluster div {
  width: 53px;
  height: 53px;
  line-height: 53px;
  margin-left: 0;
  margin-top: -14px;
  
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
  line-height: 53px;
}

/*告警类*/
.marker-cluster .alarm{
  width: 53px;
  height: 53px;
  line-height: 53px;
  /*margin-left: 5px;*/
  /*margin-top: 5px;*/

  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
  position: relative;
}

.marker-cluster .alarm span.count{
  line-height: 53px;
  position: absolute;
  top:50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 100;
}
.marker-cluster .alarm>div.live span{
  left: 10px;
  bottom: 10px;
}
