:root {
  --green: #137347;
  --deep: #075237;
  --lime: #b8dc54;
  --bg: #eef6f0;
  --card: #ffffff;
  --ink: #17231d;
  --muted: #66756d;
  --line: #dbe7df;
  --gold: #c8871c;
  --shadow: 0 14px 34px rgba(14, 70, 42, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: var(--bg);
}

button,
select {
  font: inherit;
}

.page {
  max-width: 520px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 14px 14px 34px;
  background:
    linear-gradient(180deg, rgba(19, 115, 71, 0.16), transparent 280px),
    var(--bg);
}

.top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--deep);
  font-weight: 900;
}

.top img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.hero {
  margin-top: 10px;
  padding: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, #f8fcf8);
  box-shadow: var(--shadow);
}

.hero p {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.card {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  margin: 0 0 12px;
  color: var(--deep);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

select {
  width: 100%;
  border: 1px solid #cadbd1;
  border-radius: 9px;
  padding: 12px;
  color: var(--ink);
  background: #fbfdfb;
  outline: none;
}

.primary,
.secondary,
.phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 900;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--deep));
}

.secondary {
  margin-top: 9px;
  color: var(--deep);
  border: 1px solid var(--line);
  background: #f8fbf8;
}

.phone {
  margin-top: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #a66b12);
}

.result-head {
  padding: 18px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--deep));
}

.result-head small {
  color: var(--lime);
  font-weight: 900;
}

.result-head h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.28;
}

.section {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.section h3 {
  margin: 0 0 8px;
  color: var(--deep);
}

.section p,
.section li {
  color: var(--muted);
  line-height: 1.65;
}

.section p {
  margin: 0;
}

.section .mt {
  margin-top: 10px;
}

.section ul {
  margin: 0;
  padding-left: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--deep);
  background: #e9f5ed;
  font-size: 13px;
  font-weight: 900;
}

.product-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d8eadf;
  border-radius: 9px;
  background: #f4fbf6;
}

.product-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border: 1px solid #e3eee7;
  border-radius: 8px;
  background: #fff;
}

.product-card div {
  display: grid;
  gap: 5px;
}

.product-card strong {
  color: var(--deep);
  font-size: 15px;
}

.product-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.notice {
  border-color: #efd28c;
  background: #fff9e8;
}

.risk {
  border-color: #f1b9a7;
  background: #fff5f1;
}

.risk h3 {
  color: #9d3d1f;
}

.risk p {
  color: #7b4a3d;
}

.footer {
  padding: 20px 6px 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

.hidden {
  display: none;
}
