/* 纯静态页：无框架、无第三方 CDN、无字体外链、无统计、无 Cookie、无 JS */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  /* 只用系统字体栈，不引任何外部字体 */
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
               "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #1f2329;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}
.wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 24px calc(40px + env(safe-area-inset-bottom));
  text-align: center;
}
.logo {
  width: 96px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  /* 仅圆角呈现，不改动品牌图形本身 */
  border-radius: 18px;
}
h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 6px;
}
.subtitle {
  font-size: 14px;
  color: #8a9099;
  margin: 0 0 28px;
  letter-spacing: 1px;
}
.intro {
  font-size: 15px;
  color: #40474f;
  text-align: left;
  margin: 0 0 20px;
}
.role {
  font-size: 14px;
  color: #40474f;
  text-align: left;
  background: #f6f7f9;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 0 0 20px;
}
/*
  刻意做成【纯文字】而不是带边框的方块：带框会被看成按钮。
  真实支付宝支付尚未接通，页面上不能出现任何看起来可点的支付控件 ——
  支付宝审核人员点一下发现没反应，比不显示这句话糟糕得多。
*/
.notice {
  font-size: 13px;
  color: #9aa0a8;
  margin: 0 0 32px;
}
.entity {
  font-size: 14px;
  color: #40474f;
  margin: 0 0 4px;
}
.divider {
  height: 1px;
  background: #eceef1;
  border: 0;
  margin: 32px 0 16px;
}
footer {
  font-size: 12px;
  color: #9aa0a8;
}
footer p { margin: 4px 0; }
@media (max-width: 360px) {
  .wrap { padding: 32px 18px; }
  h1 { font-size: 21px; }
}
