/* ============ 手机端 政务蓝主题 ============ */
:root {
  --gov-blue: #1677ff;
  --gov-blue-dark: #0958d9;
  --van-primary-color: #1677ff;
  --van-nav-bar-background: #1677ff;
  --van-nav-bar-title-text-color: #fff;
  --van-nav-bar-icon-color: #fff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #f2f5fa;
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
}
#app { min-height: 100vh; }

/* 头部 */
.m-header {
  background: linear-gradient(135deg, #1677ff 0%, #0958d9 100%);
  color: #fff;
  padding: calc(22px + env(safe-area-inset-top)) 20px 26px;
}
.m-header .badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  font-size: 12px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.m-header h1 { font-size: 21px; margin: 0 0 8px; font-weight: 700; letter-spacing: .5px; }
.m-header p { font-size: 13px; line-height: 1.7; opacity: .92; margin: 0; }

/* 表单卡片 */
.m-card {
  background: #fff;
  margin: -14px 12px 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(22, 88, 217, .08);
}
.m-field-label { font-weight: 600; font-size: 15px; }
.m-req { color: #f5222d; margin-right: 3px; }
.m-desc { font-size: 12px; color: #94a3b8; margin-top: 4px; line-height: 1.6; }
.m-note {
  margin: 12px;
  padding: 10px 12px;
  background: #f0f6ff;
  border-left: 3px solid #1677ff;
  border-radius: 6px;
  font-size: 13px;
  color: #3a6ea5;
  line-height: 1.7;
}
.m-choice-label {
  padding: 14px 16px 6px;
  font-size: 15px;
  font-weight: 600;
}
.m-choice-label .m-req { vertical-align: middle; }
.m-upload-wrap { padding: 10px 16px 14px; }
.m-upload-wrap .m-choice-label { padding: 0 0 8px; }

/* 验证码 */
.m-captcha-row { display: flex; align-items: center; }
.m-captcha-row .van-field { flex: 1; }
.m-captcha-img {
  height: 44px; width: 110px; margin-right: 12px;
  border-radius: 8px; border: 1px solid #e5e7eb; cursor: pointer;
}

/* 底部提交条 */
.m-submit-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: #fff;
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
  z-index: 10;
}
.m-submit-bar .van-button {
  width: 100%; height: 48px; border-radius: 24px;
  font-size: 17px; font-weight: 600;
  background: linear-gradient(135deg, #1677ff, #0958d9);
  border: 0;
}
.m-bottom-space { height: 90px; }

/* 成功页 */
.m-success {
  text-align: center;
  padding: 70px 24px 30px;
}
.m-success .icon {
  width: 78px; height: 78px; border-radius: 50%;
  background: #e8f7ee; color: #16a34a;
  font-size: 44px; line-height: 78px; margin: 0 auto 18px;
}
.m-success h2 { font-size: 20px; margin: 0 0 10px; }
.m-success .no {
  display: inline-block; margin: 8px 0;
  background: #f0f6ff; color: #0958d9;
  border-radius: 8px; padding: 8px 18px; font-size: 15px; font-weight: 600;
  letter-spacing: 1px;
}
.m-success p { color: #64748b; font-size: 14px; line-height: 1.8; }
.m-success .van-button { margin-top: 24px; width: 70%; }

.m-error { text-align: center; padding: 80px 30px; color: #94a3b8; }
.m-loading { text-align: center; padding: 80px 0; color: #1677ff; }
