/* ==================== 响应式设计 ==================== */

/* ============== 平板端适配 (>= 600px) ============== */
@media (min-width: 600px) {
  .form-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  
  label {
    width: 120px;
  }
  
  .btn-group {
    flex-direction: row;
  }
  
  .point-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .gis-panel {
    flex-direction: row;
  }
}

/* ============== 桌面端适配 (>= 1024px) ============== */
@media (min-width: 1024px) {
  #map {
    height: 500px;
  }
  
  h1 {
    font-size: 34px;
  }
  
  .glass-card {
    padding: 25px;
  }
}
