.mapboxgl-ctrl-logo,
.mapboxgl-ctrl-attrib {
  display: none !important;
}

#peg{
  width: 55px;
  height: 55px;
  position: fixed;
  bottom: 45px;
  right: 24px;
  background-color: rgba(39, 39, 39, 0.9);
  border-radius: 50%;
  z-index: 99;
  cursor: pointer;
}
#peg .pegt{
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#peg .pegt img{
  width: 100%;
  filter: brightness(0) invert(100%);
}
/* 仿ios弹窗 */
#popup{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
#popup .popupbox{
  width: 240px;
  height: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 25px rgba(66, 66, 66, 0.788);
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
 /* display: none; */
}
#popup .posapn{
  position: absolute;
  top: 25px;
  left: 45px;
  font-size: 16px;
}
#popup .posapn::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: -30px;
  left: 60px;
  background-color: red;
  border-radius: 50%; /* 圆形 */
  background-image: url('./image/assets/hP.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px; /* 图标大小 */
}

#popup #close{
  width: 220px;
  height: 28px;
  font-size: 16px;
  border: none;
  /* border-top: 0.6px solid rgba(145, 145, 145, 0.479); */
  border-radius: 5px;
  background-color: rgba(223, 223, 223, 0.788);
  color: #0074e8;
  text-align: center;
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}
#popup #close:active{
  background-color: rgba(177, 177, 177, 0.1);
}

/* 经纬度 */
.latlng{
  width: 100%;
  height: 30px;
  position: fixed;
  background-color: rgba(39, 39, 39, 0.9);
  bottom: 0;
  left: 0;
  z-index: 99;
}
.latlng #latng{

  color: rgb(255, 255, 255);
  line-height: 30px;
  padding-left: 10px;

}