html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

#map {
  width: 100%;
  height: 100%;
}

/* 地图加载失败提示 */
.map-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #909399;
}

/* ========== 信息窗（复刻主站 tlbs-map-info.vue 样式） ========== */
.tlbs-info {
  display: flex;
  flex-direction: column;
  width: 250px;
  height: 240px;
  background: #fff;
  border: 1px solid #aaa;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  text-align: left;
  cursor: default;
}

.tlbs-info__header {
  height: 40px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  color: #303133;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tlbs-info__content {
  flex: 1 1 180px;
  padding: 0 16px;
  overflow: auto;
  font-size: 12px;
  line-height: 1.5;
  color: #606266;
}

.tlbs-info__row {
  display: flex;
  margin-bottom: 4px;
}

.tlbs-info__label {
  flex: 0 0 36px;
  color: #909399;
}

.tlbs-info__value {
  flex: 1;
  word-break: break-all;
}

.tlbs-info__tips {
  line-height: 16px;
  color: #909399;
}

.tlbs-info__footer {
  display: flex;
  justify-content: center;
  padding: 8px 12px;
  gap: 10px;
}

/* ========== 半径滑块 ========== */
.tlbs-radius-slider {
  width: 100%;
  height: 6px;
  margin: 8px 0;
  appearance: none;
  -webkit-appearance: none;
  background: #e4e7ed;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.tlbs-radius-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #197afb;
  border-radius: 50%;
  cursor: grab;
}

.tlbs-radius-row {
  display: flex;
  justify-content: space-between;
}

.tlbs-radius-row .is-value {
  color: #197afb;
}

/* ========== 按钮（仿 ElementUI mini） ========== */
.tlbs-btn {
  padding: 7px 15px;
  font-size: 12px;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid #dcdfe6;
  background: #fff;
  color: #606266;
  cursor: pointer;
  outline: none;
}

.tlbs-btn:hover {
  color: #197afb;
  border-color: #bad5fe;
  background-color: #e8f2ff;
}

.tlbs-btn--primary {
  background: #197afb;
  border-color: #197afb;
  color: #fff;
}

.tlbs-btn--primary:hover {
  background: #4695fc;
  border-color: #4695fc;
  color: #fff;
}
