.fixheaderadj {
  margin-top: 80px; /* 根据你的 header 高度调整 */
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 确保置顶 */
  background-color: white; /* 或者你原有的背景色 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 可选：加个阴影更明显 */
}
.mt-9 {
    margin-top: 9rem !important;
}
/* HERE Map API 自动补全样式 */
.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: none;
}

.autocomplete-suggestion {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #333;
}

.autocomplete-suggestion:hover {
  background-color: #f5f5f5;
}

.autocomplete-suggestion:last-child {
  border-bottom: none;
}

.form-group {
  position: relative;
}

