/* Minimal Parking Bundle 样式(无外部依赖) */
* { box-sizing: border-box; }
/* 竖向布局:横幅贴顶且占满整行,主体在剩余空间内居中(margin:auto) */
body {
  margin: 0; min-height: 100vh; display: flex; flex-direction: column;
  font-family: system-ui, -apple-system, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 60%);
  color: #1f2937;
}
.wrap { max-width: 560px; padding: 32px 20px; text-align: center; margin: auto; }
h1 { font-size: 2.2rem; margin: 0 0 8px; word-break: break-all; }
.price { font-size: 1.2rem; color: #b45309; font-weight: 600; }
.card {
  margin-top: 28px; padding: 24px; text-align: left;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 41, 55, .06);
}
.card h2 { margin: 0 0 16px; font-size: 1.15rem; }
label { display: block; margin-bottom: 12px; font-size: .9rem; color: #374151; }
input, textarea {
  display: block; width: 100%; margin-top: 4px; padding: 8px 10px;
  border: 1px solid #d1d5db; border-radius: 8px; font: inherit;
}
button {
  width: 100%; padding: 10px; border: 0; border-radius: 8px;
  background: #2563eb; color: #fff; font-size: 1rem; cursor: pointer;
}
button:hover { background: #1d4ed8; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#form-status { min-height: 1.2em; font-size: .9rem; color: #059669; }

/* ---- 平台横幅(A1 深色细条;克制,不抢页面主体)-------------------------- */
.notice {
  flex: none; display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; position: relative; padding: 9px 16px;
  background: #111827; color: #f9fafb; font-size: 13px; line-height: 1.5;
}
.notice-dot {
  flex: none; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; opacity: .55;
}
.notice a {
  color: inherit; font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}
.notice-sep { opacity: .35; }
/* 注意:本文件有全局 button{width:100%} 与 button:hover(供询价按钮用),
   横幅内的语言按钮必须显式复位,否则会被撑成整行并在悬停时染色 */
.notice-lang {
  flex: none; width: auto; padding: 2px 4px; border: 0; background: none;
  color: inherit; font: inherit; font-size: 11px; opacity: .7; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.notice-lang:hover { background: none; opacity: 1; }
/* display:flex 会盖掉 hidden 属性的 UA 样式,必须显式压回去 */
.notice[hidden] { display: none; }
