/* CPCCE2026 会议手册全景独立页 */
:root {
  --edm-blue: #0a3d8f;
  --edm-blue-deep: #062a63;
  --edm-teal: #0d8a7f;
  --edm-green: #1aa08a;
  --edm-green-soft: #e8f7f4;
  --edm-lime: #7cb82f;
  --edm-text: #1f2937;
  --edm-muted: #5b6472;
  --edm-line: #d7e5e2;
  --edm-max: 1080px;
  --edm-radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.edm-body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--edm-text);
  background: #f4f8f7;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.edm-wrap { width: 100%; max-width: var(--edm-max); margin: 0 auto; background: #fff; box-shadow: 0 0 40px rgba(6,42,99,.08); }
.edm-inner { padding: 0 4.5%; }

/* Hero — 顶部背景铺满 + 手册素材图 */
.edm-hero {
  position: relative;
  color: #fff;
  background: #083a88;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1282 / 798;
  min-height: 320px;
}
.edm-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.edm-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: clamp(16px, 3.2vw, 28px) 4.5% clamp(20px, 4vw, 40px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.edm-hero-brand {
  width: min(78%, 720px);
  margin-bottom: clamp(12px, 2.5vw, 28px);
}
.edm-hero-logo-slogan {
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.edm-hero-title-img {
  width: min(92%, 860px);
  margin: 0 auto clamp(10px, 1.8vw, 18px);
}
.edm-hero-title-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.edm-hero-meta-img {
  width: min(62%, 480px);
  margin: 0 auto clamp(12px, 2vw, 20px);
}
.edm-hero-meta-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.edm-share-thumb-wrap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.edm-share-thumb {
  width: 400px;
  height: 400px;
  object-fit: cover;
}
.edm-hero-host-img {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(14px, 2.4vw, 24px);
  font-size: clamp(12px, 1.4vw, 14px);
  color: #fff;
  white-space: nowrap;
  background: transparent;
  border: 0;
  padding: 0;
}
.edm-hero-host-img span {
  flex: 0 0 auto;
  line-height: 1;
}
.edm-hero-host-img img {
  height: clamp(28px, 4vw, 40px);
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}
.edm-cta-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 28px;
}
.edm-cta-row .edm-btn-cta {
  width: 100%;
  max-width: 280px;
  height: 48px;
  font-size: 16px;
}
.edm-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 118px; height: 42px; padding: 0 18px;
  border-radius: 999px; font-size: 15px; font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.edm-btn:active { transform: scale(.98); }
.edm-btn-primary { background: #fff; color: var(--edm-blue); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.edm-btn-accent { background: var(--edm-lime); color: #fff; }
.edm-btn-ghost { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.45); }
.edm-btn-block { width: 100%; height: 48px; font-size: 16px; }
.edm-btn-teal { background: var(--edm-teal); color: #fff; }
.edm-btn-blue { background: var(--edm-blue); color: #fff; }

/* Sticky nav */
.edm-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--edm-line);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.edm-nav-inner {
  display: flex; gap: 4px; padding: 8px 3%;
  min-width: max-content;
}
.edm-nav a {
  padding: 8px 12px; border-radius: 999px; font-size: 13px; color: var(--edm-muted);
  white-space: nowrap;
}
.edm-nav a:hover, .edm-nav a.active { background: var(--edm-green-soft); color: var(--edm-teal); font-weight: 700; }

/* Sections */
.edm-sec { padding: 36px 0 28px; }
.edm-sec + .edm-sec { border-top: 1px solid #eef3f2; }
.edm-sec-title {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.edm-sec-title h2 {
  font-size: 22px; color: var(--edm-teal); font-weight: 800;
}
.edm-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: linear-gradient(90deg, var(--edm-teal), var(--edm-blue));
  color: #fff; border-radius: 8px; padding: 12px 16px; margin-bottom: 18px;
}
.edm-bar h2 { font-size: clamp(16px, 4.2vw, 20px); font-weight: 800; letter-spacing: .5px; }
.edm-bar span { font-size: 12px; opacity: .85; }
.edm-bar-inline {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.edm-bar-inline h2 {
  flex: 0 0 auto;
}
.edm-bar-inline span {
  flex: 1 1 auto;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}
.edm-panel {
  background: transparent;
  color: var(--edm-text);
  border-radius: 0;
  padding: 0;
  font-size: 14px;
  text-align: justify;
  line-height: 1.85;
}
.edm-panel p + p { margin-top: 12px; }
.edm-panel strong {
  font-weight: 800;
  color: var(--edm-teal);
}
.edm-panel strong.edm-em-num {
  color: var(--edm-blue);
  font-size: 1.15em;
}
.edm-agenda-visual {
  margin: 8px 0 20px;
  text-align: center;
}
.edm-agenda-visual img {
  width: min(100%, 760px);
  height: auto;
  display: inline-block;
}

/* Stats */
.edm-stats {
  margin-top: 18px;
  background: linear-gradient(180deg, #0a6f68 0%, #0d8a7f 100%);
  border-radius: 12px;
  padding: 16px 10px;
}
.edm-stats-wrap { margin-top: 18px; text-align: center; }
.edm-stats-sheet {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Org — title 单独一列，内容在右侧 */
.edm-sec-banner {
  margin-bottom: 18px;
}
.edm-sec-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.edm-banner-process {
  text-align: center;
}
.edm-banner-process img {
  width: auto;
  max-width: min(100%, 560px);
  margin: 0 auto;
}
.edm-org-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px 16px;
  align-items: start;
  margin-bottom: 14px;
}
.edm-org-title {
  width: 118px;
  flex-shrink: 0;
  padding-top: 2px;
}
.edm-org-title img {
  width: 111px;
  height: auto;
  display: block;
}
.edm-org-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  width: 100%;
  height: 34px;
  padding: 0 10px;
  color: #fff;
  font-size: clamp(12px, 3.2vw, 13px);
  font-weight: 700;
  white-space: nowrap;
  border-radius: 4px;
  background: linear-gradient(90deg, #7ea52a 0%, #2f9c8f 45%, #2f6db5 100%);
  box-sizing: border-box;
}
.edm-org-body {
  min-width: 0;
  font-size: 14px;
  color: var(--edm-text);
  line-height: 1.8;
  padding-top: 4px;
}
/* 组织机构单位：三列 */
.edm-org-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 16px;
  font-size: 13px;
}
.edm-org-cols-3 span { word-break: break-all; }
/* 组委会：每行两人，姓名 | 单位 分列 */
.edm-org-body-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
.edm-person {
  display: grid;
  grid-template-columns: 3.6em minmax(0, 1fr);
  gap: 6px 10px;
  align-items: start;
}
.edm-pname {
  display: inline-block;
  width: 3.6em;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
  letter-spacing: 0;
  overflow: hidden;
}
.edm-punit {
  color: var(--edm-muted);
  font-size: 12px;
  line-height: 1.5;
  word-break: break-word;
}
/* 专家/执行委员会：左侧 title 列宽与组委会 118px 对齐 */
.edm-subcom {
  margin-top: 18px;
  padding-top: 8px;
}
.edm-bar-sub {
  justify-content: center;
  background: linear-gradient(90deg, rgba(13, 138, 127, 0.2), rgba(10, 61, 143, 0.16));
  color: var(--edm-blue);
  border: 1px solid rgba(13, 138, 127, 0.16);
  padding: 6px 16px;
  margin-bottom: 12px;
}
.edm-bar-sub h2 {
  width: 100%;
  text-align: center;
  color: var(--edm-blue);
  font-size: clamp(14px, 3.4vw, 16px);
  line-height: 1.3;
}
.edm-name9-row {
  display: grid;
  grid-template-columns: 118px repeat(8, minmax(0, 1fr));
  gap: 6px 8px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
}
.edm-name9-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  width: 100%;
  box-sizing: border-box;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  border-radius: 4px;
  background: linear-gradient(90deg, #7ea52a 0%, #2f9c8f 45%, #2f6db5 100%);
  font-size: 12px;
  padding: 0 6px;
}
.edm-name9-title:empty {
  background: transparent;
  min-height: 0;
  padding: 0;
}
.edm-name9-row > span:not(.edm-name9-title) {
  text-align: center;
  color: #222;
}
.edm-name9-row > span:not(.edm-name9-title):not(:empty) {
  display: inline-block;
  width: 3.6em;
  margin: 0 auto;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
  overflow: hidden;
}
.edm-committee { margin-top: 4px; }

/* Agenda rings */
.edm-rings {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px; padding: 10px 0 20px;
}
.edm-ring {
  width: 88px; height: 88px; border-radius: 50%;
  border: 2px solid var(--edm-teal); background: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 13px; font-weight: 700; color: var(--edm-teal);
  padding: 8px;
}
.edm-ring.core {
  width: 110px; height: 110px; background: var(--edm-blue-deep); color: #fff; border-color: var(--edm-blue-deep);
}
.edm-ring.dash { border-style: dashed; color: var(--edm-muted); }

/* 日程 — 对齐大会概况 agenda 展现 */
.edm-agenda-gaiyao {
  background: linear-gradient(180deg, #f3f8ff 0%, #fff 100%);
  border-radius: 16px;
  padding: 20px 16px 8px;
  border: 1px solid #e4eef8;
}
.edm-agenda-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px;
}
.edm-agenda-tab {
  flex: 1; min-width: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 12px 10px;
  border-radius: 12px; background: #fff; border: 1px solid #d9e2ef;
  cursor: pointer; transition: .25s ease;
}
.edm-agenda-tab .tab-day { font-size: 15px; font-weight: 800; color: var(--edm-blue); }
.edm-agenda-tab .tab-date { font-size: 12px; color: var(--edm-muted); }
.edm-agenda-tab.active {
  background: var(--edm-blue); border-color: var(--edm-blue);
  box-shadow: 0 8px 18px rgba(10,61,143,.25);
}
.edm-agenda-tab.active .tab-day,
.edm-agenda-tab.active .tab-date { color: #fff; }
.edm-agenda-panel { display: none; }
.edm-agenda-panel.active { display: block; }
.edm-timeline-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px;
  padding: 14px 12px; margin-bottom: 10px;
  background: #fff; border-radius: 12px; border: 1px solid #e8eef6;
  transition: box-shadow .2s, transform .2s;
}
.edm-timeline-item:hover { box-shadow: 0 6px 16px rgba(10,61,143,.08); transform: translateY(-1px); }
.edm-timeline-time {
  font-size: 13px; font-weight: 800; color: var(--edm-teal);
  display: flex; align-items: flex-start; padding-top: 2px;
}
.edm-timeline-title { font-size: 15px; font-weight: 700; color: var(--edm-text); margin-bottom: 4px; }
.edm-timeline-desc { font-size: 12px; color: var(--edm-muted); line-height: 1.6; }

/* 受邀出席 — 对齐大会概况嘉宾构成 */
.edm-invite-compose {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: stretch;
}
.edm-invite-left {
  width: min(280px, 100%);
  display: flex; flex-direction: column; gap: 16px;
}
.edm-invite-desc { font-size: 13px; color: var(--edm-muted); line-height: 1.8; margin-bottom: 0; }
.edm-invite-tabs {
  display: flex; flex-direction: column; gap: 14px;
}
.edm-invite-tab {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px 20px; border-radius: 999px;
  background: #fff; border: 1px solid #d9d9d9; cursor: pointer;
  font-size: 15px; font-weight: 700; color: #333; text-align: center;
  transition: .25s ease;
}
.edm-invite-tab.active {
  background: var(--edm-blue); color: #fff; border-color: var(--edm-blue);
  box-shadow: 0 6px 16px rgba(10,61,143,.28);
}
.edm-invite-right {
  flex: 1; min-width: 240px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #f3f7fb;
  border-radius: 12px;
  border: 1px solid #e0eaf4;
  padding: 16px 18px;
  min-height: 180px;
}
.edm-invite-panel {
  display: none;
  width: 100%;
  text-align: left;
}
.edm-invite-panel.active {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
}
.edm-invite-item {
  width: 100%;
  max-width: none;
  text-align: left;
}
.edm-invite-item h4 {
  font-size: 14px;
  color: var(--edm-blue);
  margin: 0 0 2px;
  font-weight: 800;
  text-align: left;
  line-height: 1.35;
}
.edm-invite-item p {
  margin: 0;
  font-size: 13px;
  color: var(--edm-muted);
  line-height: 1.4;
  text-align: left;
}

/* 可提交表单 */
.edm-forms { text-align: left; }
.edm-form-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px;
}
.edm-form-tab {
  min-width: 110px; height: 40px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--edm-line); background: #fff; color: var(--edm-muted);
  font-size: 14px; font-weight: 700; cursor: pointer;
}
.edm-form-tab.active {
  background: var(--edm-teal); color: #fff; border-color: var(--edm-teal);
}
.edm-form-panel { display: none; max-width: 720px; margin: 0 auto; text-align: left; }
.edm-form-panel.active { display: block; }
.edm-field {
  display: grid;
  grid-template-columns: 5.5em minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  margin-bottom: 12px;
}
.edm-field > label {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--edm-text);
  white-space: nowrap;
}
.edm-field > :not(label) {
  grid-column: 2;
  min-width: 0;
}
.edm-field label .req { color: #e11d48; margin-left: 2px; }
.edm-field input[type="text"],
.edm-field input[type="tel"],
.edm-field input[type="email"],
.edm-field input[type="number"],
.edm-field select,
.edm-field textarea {
  width: 100%; height: 42px; border: 1px solid #d5e0de; border-radius: 8px;
  padding: 0 12px; font-size: 14px; background: #fff; outline: none;
  box-sizing: border-box;
}
.edm-field textarea { height: 90px; padding: 10px 12px; resize: vertical; }
.edm-field:has(textarea) > label {
  align-items: flex-start;
  padding-top: 10px;
  min-height: 0;
}
.edm-field input:focus, .edm-field select:focus, .edm-field textarea:focus {
  border-color: var(--edm-teal); box-shadow: 0 0 0 3px rgba(13,138,127,.12);
}
.edm-check-row, .edm-radio-row {
  display: flex; flex-wrap: wrap; gap: 10px 16px; font-size: 13px; align-items: center;
  min-height: 42px;
}
.edm-check-row label, .edm-radio-row label {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500; margin: 0;
  min-height: 0;
  white-space: normal;
}
.edm-inline-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 0;
}
.edm-form-tip { font-size: 12px; color: var(--edm-muted); margin: 8px 0 14px; line-height: 1.6; }
.edm-form-actions {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px;
  justify-content: center;
}
.edm-form-actions .edm-btn { min-width: 120px; cursor: pointer; border: 0; }
.edm-field.err input, .edm-field.err select, .edm-field.err textarea { border-color: #e11d48; }

/* Forums */
.edm-forum {
  border: 1px solid var(--edm-line); border-radius: 10px;
  padding: 14px; margin-bottom: 12px; background: #fff;
}
.edm-forum-tag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--edm-teal); color: #fff; font-weight: 800; font-size: 13px;
  margin-right: 8px; vertical-align: middle;
}
.edm-forum-tag.edm-forum-star {
  background: linear-gradient(145deg, #f0c24b, #e39b12);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(227, 155, 18, .35);
}
.edm-forum h3 { display: inline; font-size: 15px; color: var(--edm-blue); }
.edm-forum p { margin-top: 8px; font-size: 13px; color: var(--edm-muted); text-align: justify; }

/* Topics — 上3下2 */
.edm-topics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.edm-topic {
  grid-column: span 2;
  background: var(--edm-green-soft); border-radius: 10px; padding: 14px 10px;
  text-align: center; font-size: 13px; font-weight: 700; color: var(--edm-teal);
}
.edm-topic:nth-child(4) { grid-column: 2 / 4; }
.edm-topic:nth-child(5) { grid-column: 4 / 6; }

/* Report QR side */
.edm-report-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.edm-report-row .edm-report-callout {
  flex: 1;
  min-width: 220px;
  margin-top: 0;
}
.edm-report-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 140px;
}
.edm-report-qr-box img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--edm-line);
  border-radius: 8px;
  padding: 6px;
}
.edm-report-qr-box .edm-btn {
  min-width: 0;
  width: 100%;
  font-size: 13px;
  height: 38px;
  padding: 0 12px;
}

/* Activities */
.edm-acts { display: grid; gap: 12px; }
.edm-act {
  display: grid; grid-template-columns: 72px 1fr; gap: 12px;
  align-items: center;
  background: #f7fbfa; border-radius: 10px; padding: 12px 14px;
}
.edm-act-badge {
  width: 72px; height: auto; display: block; object-fit: contain;
}
.edm-act-no {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--edm-teal); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.edm-act h4 { font-size: 14px; margin-bottom: 4px; color: var(--edm-blue); }
.edm-act p { font-size: 12px; color: var(--edm-muted); line-height: 1.6; }

/* Report callout */
.edm-report-callout {
  margin-top: 14px;
  padding: 14px 16px;
  background: #fff;
  border-left: 4px solid var(--edm-teal);
  border-radius: 0 10px 10px 0;
}
.edm-report-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--edm-teal);
  letter-spacing: .5px;
  line-height: 1.4;
}
.edm-report-sub {
  margin: 0;
  font-size: 13px;
  color: var(--edm-muted);
  line-height: 1.7;
}

/* Invitees (legacy card, kept for fallback) */
.edm-invitees {
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
.edm-invitee {
  border-left: 4px solid var(--edm-teal); background: #f7fbfa;
  border-radius: 0 8px 8px 0; padding: 12px 14px;
}
.edm-invitee h4 { font-size: 14px; color: var(--edm-blue); margin-bottom: 4px; }
.edm-invitee p { font-size: 12px; color: var(--edm-muted); }

/* Pricing / sponsorship tables */
.edm-scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.edm-table {
  width: 100%; min-width: 720px; border-collapse: collapse; font-size: 12px;
}
.edm-table th, .edm-table td {
  border: 1px solid var(--edm-line); padding: 8px 6px; text-align: center;
}
.edm-table th { background: var(--edm-teal); color: #fff; font-weight: 700; }
.edm-table tr:nth-child(even) td { background: #f7fbfa; }
.edm-price-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.edm-price-card {
  border: 1px solid var(--edm-line); border-radius: 12px; overflow: hidden; background: #fff;
}
.edm-price-card header {
  background: var(--edm-blue); color: #fff; text-align: center; padding: 12px;
  font-weight: 800; font-size: 14px;
}
.edm-price-card.early header { background: var(--edm-teal); }
.edm-price-card.vip header { background: var(--edm-lime); }
.edm-price-card ul { list-style: none; padding: 12px; }
.edm-price-card li {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 8px 0; border-bottom: 1px dashed #e5eeec; font-size: 13px;
}
.edm-price-card li:last-child { border-bottom: 0; }
.edm-price-card b { color: var(--edm-teal); }
.edm-note { font-size: 12px; color: var(--edm-muted); margin-top: 10px; }

/* Themes */
.edm-themes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.edm-theme {
  display: block; border-radius: 10px; overflow: hidden;
  box-shadow: 0 6px 18px rgba(6,42,99,.08);
  transition: transform .2s, box-shadow .2s;
  background: #fff;
}
.edm-theme:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(6,42,99,.14); }
.edm-theme img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* Process */
.edm-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.edm-step {
  border-radius: 12px; padding: 16px; color: #fff; min-height: 180px;
}
.edm-step:nth-child(1) { background: linear-gradient(145deg, #7cb82f, #1aa08a); }
.edm-step:nth-child(2) { background: linear-gradient(145deg, #f0a020, #e07a10); }
.edm-step:nth-child(3) { background: linear-gradient(145deg, #1a6fd0, #0a3d8f); }
.edm-step .no {
  display: inline-block; background: rgba(255,255,255,.25);
  border-radius: 999px; padding: 2px 10px; font-size: 12px; margin-bottom: 8px;
}
.edm-step h3 { font-size: 16px; margin-bottom: 8px; }
.edm-step p { font-size: 12px; line-height: 1.6; opacity: .95; }
.edm-booth {
  display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 14px;
}
.edm-booth-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  background: #f7fbfa;
  border: 1px solid var(--edm-line);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}
.edm-booth-name {
  color: var(--edm-blue);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.edm-booth-price {
  font-size: 13px;
  color: var(--edm-text);
  white-space: nowrap;
}
.edm-booth-v {
  color: #c5d0ce;
  font-weight: 400;
  user-select: none;
}

/* Brands */
.edm-brands {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.edm-brands-sheet + .edm-brands { display: none; }
.edm-brands img {
  width: 100%; height: 64px; object-fit: contain;
  background: #fff; border: 1px solid #eef2f1; border-radius: 6px; padding: 6px;
}

/* Forms CTA — 可提交表单容器 */
.edm-forms {
  background: linear-gradient(180deg, #f0faf8, #fff);
  border: 2px dashed #9ed3cb; border-radius: 16px;
  padding: 28px 16px; text-align: left;
}
.edm-forms > h2,
.edm-forms > .sub { text-align: center; }
.edm-forms .sub { color: var(--edm-muted); font-size: 13px; margin-bottom: 20px; }

/* Footer */
.edm-footer {
  background: var(--edm-blue-deep); color: rgba(255,255,255,.85);
  text-align: center; padding: 28px 4.5% 40px; font-size: 13px;
}
.edm-footer strong { color: #fff; display: block; margin-bottom: 6px; font-size: 15px; }
.edm-footer a { color: #9ad9cf; display: inline; }

/* WeChat share tip */
.edm-share-tip {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.72); color: #fff; text-align: right; padding: 18px 22px;
}
.edm-share-tip.show { display: block; }
.edm-share-tip p { font-size: 15px; line-height: 1.7; margin-top: 48px; }
.edm-share-fab {
  position: fixed; right: 14px; bottom: 18px; z-index: 60;
  width: 48px; height: 48px; border-radius: 50%;
  background: #07c160; color: #fff; border: 0;
  box-shadow: 0 8px 20px rgba(7,193,96,.35);
  font-size: 12px; font-weight: 700; cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .edm-themes, .edm-price-cards, .edm-steps, .edm-form-grid { grid-template-columns: 1fr 1fr; }
  .edm-topics { grid-template-columns: repeat(2, 1fr); }
  .edm-topic { grid-column: auto; }
  .edm-topic:nth-child(4),
  .edm-topic:nth-child(5) { grid-column: auto; }
  .edm-topic:nth-child(5) { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
  .edm-brands { grid-template-columns: repeat(3, 1fr); }
  .edm-invite-compose { flex-direction: column; gap: 20px; }
  .edm-invite-left { width: 100%; }
  .edm-invite-tabs { gap: 12px; }
  .edm-invite-tab { padding: 12px 16px; font-size: 14px; }
  .edm-org-body-people { grid-template-columns: 1fr; gap: 4px 0; }
  .edm-org-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 10px; }
  .edm-name9-row { grid-template-columns: 96px repeat(4, minmax(0, 1fr)); gap: 2px 6px; margin-bottom: 4px; }
  .edm-person { gap: 2px 8px; }
  .edm-punit { line-height: 1.35; }
  .edm-org-row { margin-bottom: 8px; }
  .edm-subcom { margin-top: 10px; padding-top: 4px; }
  .edm-report-row { flex-direction: column; }
  .edm-report-qr-box { align-self: center; }
}
@media (max-width: 640px) {
  .edm-hero {
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
  }
  .edm-hero-bg-img {
    position: absolute;
  }
  .edm-hero-content {
    padding: 22px 5% 28px;
    min-height: 360px;
  }
  .edm-hero-brand { width: 88%; margin-bottom: 18px; }
  .edm-hero-title-img { width: 96%; }
  .edm-hero-meta-img { width: 78%; }
  .edm-btn { min-width: 100px; height: 40px; font-size: 14px; }
  .edm-sec { padding: 28px 0 22px; }
  .edm-org-row { grid-template-columns: 96px 1fr; gap: 8px 10px; }
  .edm-org-title, .edm-org-title img, .edm-org-tag { width: 96px; min-width: 96px; }
  .edm-org-tag { font-size: 12px; height: 30px; padding: 0 6px; }
  .edm-org-cols-3 { grid-template-columns: 1fr; gap: 2px 0; line-height: 1.45; }
  .edm-person { grid-template-columns: 3.2em 1fr; gap: 1px 6px; }
  .edm-pname { width: 3.2em; font-size: 13px; }
  .edm-punit { font-size: 11px; line-height: 1.3; }
  .edm-org-body-people { gap: 3px 0; }
  .edm-name9-row { grid-template-columns: 96px repeat(2, minmax(0, 1fr)); font-size: 12px; gap: 2px 4px; margin-bottom: 3px; }
  .edm-org-row { margin-bottom: 6px; gap: 4px 8px; }
  .edm-subcom { margin-top: 8px; }
  .edm-field { grid-template-columns: 4.5em minmax(0, 1fr); gap: 6px 8px; }
  .edm-field > label { font-size: 12px; min-height: 40px; }
  .edm-bar-inline {
    white-space: normal;
    flex-wrap: wrap;
  }
  .edm-bar-inline span {
    text-align: left;
    width: 100%;
  }
  .edm-themes, .edm-topics,
  .edm-price-cards, .edm-steps, .edm-form-grid, .edm-booth, .edm-inline-fields { grid-template-columns: 1fr; }
  .edm-topic:nth-child(5) { max-width: none; grid-column: auto; }
  .edm-brands { grid-template-columns: repeat(2, 1fr); }
  .edm-rings .edm-ring { width: 76px; height: 76px; font-size: 12px; }
  .edm-rings .edm-ring.core { width: 92px; height: 92px; }
  .edm-timeline-item { grid-template-columns: 1fr; gap: 4px; }
  .edm-agenda-tab { min-width: calc(50% - 6px); }
}
