html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  font-size: 13px;
}

.container {
  width: 100%;
  height: 100%;
}
.container2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 30vw;
  height: 30vw;
}
.container2-cover {
  position: absolute;
  bottom: 20px;
  left: 3vw;
  width: 30vw;
  height: 30vw;
}
.container2-cover canvas {
  width: 100%;
  height: 100%;
}
.container3 {
  position: absolute;
  bottom: 20px;
  left: calc(6vw + 30vw);
  width: 20vw;
  height: 20vw;
}
.container4 {
  position: absolute;
  bottom: 20px;
  left: calc(9vw + 50vw);
  width: 40vw;
  height: 20vw;
}
.amap-logo {
  display: none !important;
}
.amap-simple-marker.main-loc-container {
  top: 31px;
  left: 9px;
  z-index: 100;
  cursor: initial;
}
.loc-spred-ani {
  position: relative;
}
.loc-spred-ani .spread-box {
  width: 85vw;
  height: 85vw;
  background-image: radial-gradient(#ff000000 45%, red 90%, red 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spread 3s ease-in 0s infinite;
}
@keyframes spread {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.amap-simple-marker-icon {
  display: none;
}
.loc-dot {
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
}
.loc-spred-ani .loc-circle-1,
.loc-spred-ani .loc-circle-2 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
}
.loc-spred-ani .loc-circle-1 {
  width: 10px;
  height: 10px;
}
.loc-spred-ani .loc-circle-2 {
  width: 30vw;
  height: 30vw;
  left: -15vw;
  top: -15vw;
  animation: rotate 3s linear 0s infinite;
  border: none;
  background: conic-gradient(transparent 40%, rgba(255, 255, 255, 0.3));
}
.loc-scaner {
  position: absolute;
  height: 15vw;
  width: 2px;
  background: #fff;
  left: 0;
  top: -15vw;
  transform-origin: bottom center;
  transform: rotate(0deg);
  animation: rotate 3s linear 0s infinite;
}
.loc-scaner::before,
.loc-scaner::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
}
.loc-scaner::after {
  top: auto;
  bottom: -1px;
}
@keyframes rotate {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(540deg);
  }
}
div#tooltip-1 {
  position: absolute;
  top: 5px;
  left: 5px;
  color: #fff;
  font-size: 19px;
  font-family: 'Lato', fantasy;
  writing-mode: tb;
}

div#tooltip-2 {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  height: 250px;
  overflow: hidden;
  font-size: 12px;
  font-family: 'Lato', fantasy;
  text-align: right;
}

#cover {
  position: absolute;
  /* background-image: linear-gradient(
    rgba(0, 0, 0, 0.2) 0px,
    rgba(0, 0, 0, 0) 1px,
    rgba(0, 0, 0, 0.35) 2px,
    rgba(0, 0, 0, 0.1) 5px
  ); */
  /* background-size: 100% 3px; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 0px 0;
  animation: shift 3s linear 0s infinite;
  box-shadow: 0 0 80px #ffffff59, inset 0 0 150px 50px #090;
  background: repeating-linear-gradient(0deg, #2cf12c, #fff 1px, #00110038 1px, #00110094 2px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

@keyframes shift {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 0px 30px;
  }
}
div#container .amap-simple-marker-label {
  color: #fff;
  position: relative;
}

div#container .amap-simple-marker-label::after {
  content: '';
  border: 7px solid #ddd;
  position: absolute;
  border-color: #fff transparent transparent;
  left: 50%;
  top: 100%;
  margin-left: -7px;
}
