html,
body,
#container {
  width: 100%;
  height: 100%;
}

/* 地图容器样式 */
#container {
  width: 100%;
  height: 400px;
  margin-top: 20px;
}

/* 自定义标记样式 */
.custom-content-marker {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
}

/* 新版地图指针图标 - 圆形设计 */
.pointer-icon {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: #2c84ff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 8px auto 0;
  box-shadow: 0 2px 8px rgba(44, 132, 255, 0.3);
}

.pointer-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #2c84ff;
  border-radius: 50%;
  top: 4px;
  left: 4px;
}

/* 指针中心标记 */
.pointer-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}

/* 指针动画效果 - 呼吸效果 */
@keyframes breathe {
  0% { box-shadow: 0 0 0 0 rgba(44, 132, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(44, 132, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(44, 132, 255, 0); }
}

.pulse-effect {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid rgba(44, 132, 255, 0.7);
  animation: breathe 2s infinite;
}