:root {
  --bg: #f5f5f5;
  --panel: #ffffff;
  --panel-soft: #fafafa;
  --text: #1f2329;
  --muted: #646a73;
  --line: #e6e8eb;
  --red: #e1251b;
  --red-dark: #b81612;
  --red-soft: #fff1f0;
  --gold: #f5a623;
  --blue: #2f6fed;
  --green: #1f9d73;
  --shadow: 0 18px 46px rgba(24, 28, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
}

::selection {
  color: #fff;
  background: var(--red);
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

.deck {
  width: 100%;
  overflow-x: hidden;
}

.page {
  min-height: auto;
  padding: 22px 48px 26px;
}

.feature-page,
.page-homepage {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.page-overview {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 54%, #f1f2f4 100%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(24, 28, 33, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-size: 20px;
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.topbar nav a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 8px 12px;
  color: #3c4148;
  font-size: 13px;
  font-weight: 700;
}

.topbar nav a:first-child {
  border-color: rgba(225, 37, 27, 0.18);
  color: var(--red);
  background: var(--red-soft);
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr);
  gap: 34px;
  align-items: center;
  width: min(100%, 1320px);
  margin: 0 auto;
  flex: 1;
}

.copy-block {
  min-width: 0;
  padding: 18px 0;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.label::before {
  content: "";
  width: 18px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
}

.copy-block h1 {
  margin-top: 18px;
  max-width: 620px;
  font-size: 50px;
  line-height: 1.08;
}

.lead {
  max-width: 620px;
  margin-top: 20px;
  color: #444b55;
  font-size: 18px;
  line-height: 1.72;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 28px;
}

.kpi-row div {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(24, 28, 33, 0.05);
}

.kpi-row b {
  display: block;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.kpi-row span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.strategy-board {
  min-width: 0;
}

.strategy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.strategy-head span {
  display: inline-flex;
  border-radius: 8px;
  background: #1f2329;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.strategy-head b {
  color: #333941;
  font-size: 18px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.strategy-grid article {
  min-height: 184px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(24, 28, 33, 0.07);
}

.strategy-grid article span {
  display: grid;
  width: 36px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.strategy-grid article:nth-child(2) span {
  background: var(--blue);
}

.strategy-grid article:nth-child(3) span {
  background: var(--gold);
}

.strategy-grid article:nth-child(4) span {
  background: var(--green);
}

.strategy-grid article:nth-child(5) span {
  background: #7b61ff;
}

.strategy-grid article:nth-child(6) span {
  background: #2d3748;
}

.strategy-grid h3 {
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.24;
}

.strategy-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.product-strip article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 12px;
  box-shadow: 0 8px 22px rgba(24, 28, 33, 0.06);
}

.product-strip img {
  grid-row: 1 / span 2;
  width: 86px;
  height: 86px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.product-strip span {
  align-self: end;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.product-strip b {
  align-self: start;
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.25;
}

.capability-map {
  width: min(100%, 1320px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: 0 8px 22px rgba(24, 28, 33, 0.06);
}

.capability-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.capability-title span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.capability-title b {
  color: #2f353d;
  font-size: 17px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.capability-grid article {
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 13px;
}

.capability-grid article span {
  display: inline-flex;
  border-radius: 6px;
  background: var(--red-soft);
  padding: 5px 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.capability-grid article b {
  display: block;
  margin-top: 10px;
  color: #252a32;
  font-size: 14px;
  line-height: 1.36;
}

.capability-grid article p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.page-homepage {
  background:
    linear-gradient(180deg, #f2f3f5 0%, #f6f7f9 100%);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 1320px);
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(24, 28, 33, 0.06);
}

.section-header h2 {
  margin-top: 8px;
  max-width: 780px;
  font-size: 34px;
  line-height: 1.16;
}

.section-header > p {
  max-width: 430px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.module-heading {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.module-index {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(24, 28, 33, 0.14);
}

.module-01 {
  background: var(--red);
}

.module-02 {
  background: var(--blue);
}

.module-03 {
  background: var(--gold);
}

.module-04 {
  background: var(--green);
}

.module-05 {
  background: #7b61ff;
}

.module-06 {
  background: #2d3748;
}

.homepage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: 34px;
  align-items: center;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.profile-strategy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.45fr);
  gap: 22px;
  align-items: stretch;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.profile-board,
.boss-value-panel {
  min-width: 0;
}

.profile-board {
  display: grid;
  gap: 16px;
}

.profile-goal-card,
.tag-panel,
.boss-value-panel article,
.profile-flow article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(24, 28, 33, 0.06);
}

.profile-goal-card {
  padding: 26px;
  background:
    linear-gradient(135deg, #fff6f5 0%, #ffffff 62%);
}

.profile-goal-card span,
.tag-matrix span,
.boss-value-panel span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.profile-goal-card h3 {
  margin-top: 12px;
  font-size: 34px;
  line-height: 1.22;
}

.profile-goal-card p {
  max-width: 820px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.tag-panel {
  padding: 22px;
}

.compact-title {
  margin-bottom: 16px;
}

.tag-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tag-matrix article {
  min-height: 156px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  padding: 18px;
}

.tag-matrix b {
  display: block;
  margin-top: 12px;
  color: #1f2329;
  font-size: 20px;
  line-height: 1.36;
}

.tag-matrix p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.profile-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.profile-flow article {
  min-height: 150px;
  padding: 18px;
}

.profile-flow span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.profile-flow b {
  display: block;
  margin-top: 14px;
  font-size: 20px;
}

.profile-flow p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.boss-value-panel {
  display: grid;
  gap: 14px;
}

.boss-value-panel article {
  padding: 24px;
}

.boss-value-panel article.hot {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, var(--red) 0%, #f46d43 100%);
}

.boss-value-panel article.hot span,
.boss-value-panel article.hot p {
  color: rgba(255, 255, 255, 0.86);
}

.boss-value-panel h3 {
  margin-top: 12px;
  font-size: 25px;
  line-height: 1.32;
}

.boss-value-panel p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.phone-frame {
  position: relative;
  width: min(100%, 420px);
  height: 824px;
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid #191d22;
  border-radius: 34px;
  background: #f2f3f5;
  box-shadow: var(--shadow);
}

.phone-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 116px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(25, 29, 34, 0.22);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.phone-frame .phone-status {
  color: #111;
  background: #fff;
  font-size: 13px;
}

.jd-home-scroll {
  height: calc(100% - 30px - 62px);
  overflow-y: auto;
  padding-bottom: 14px;
  scrollbar-width: none;
}

.jd-home-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-channel-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  padding: 12px 14px 8px;
  background: #fff;
}

.mobile-channel-tabs span {
  color: #1f2329;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.mobile-channel-tabs .active {
  position: relative;
  color: var(--red);
}

.mobile-channel-tabs .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 26px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: var(--red);
}

.mobile-channel-tabs i {
  display: inline-block;
  margin-left: 2px;
  border-radius: 4px;
  background: #ffd52e;
  padding: 1px 3px;
  color: #111;
  font-size: 12px;
  font-style: normal;
  vertical-align: middle;
}

.app-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 38px;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.jd-search {
  grid-template-columns: 28px minmax(0, 1fr) 34px 54px;
  gap: 7px;
  margin: 8px 10px 0;
  border: 2px solid #ff1f35;
  border-radius: 12px;
  background: #fff;
  padding: 7px 8px;
}

.jd-search .searchbox {
  background: #fff;
  padding: 4px 0;
  color: #3a3f46;
  font-size: 15px;
}

.scan-icon,
.ai-camera {
  display: grid;
  place-items: center;
  color: #ff1f35;
  font-weight: 900;
}

.scan-icon {
  width: 26px;
  height: 26px;
  border: 2px solid #ff1f35;
  border-radius: 7px;
  font-size: 14px;
}

.ai-camera {
  color: #8b8f99;
  font-size: 12px;
}

.jd-search button {
  width: 54px;
  height: 30px;
  color: var(--red);
  background: #fff;
  font-size: 16px;
  font-weight: 900;
}

.quick-channels {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 12px 12px 8px;
  color: #545a64;
  background: #fff;
  white-space: nowrap;
}

.quick-channels span {
  flex: none;
  font-size: 15px;
  font-weight: 900;
}

.quick-channels .active {
  color: #1f2329;
}

.quick-channels span:nth-child(3) {
  color: #13a85c;
}

.service-entry-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 8px 10px 10px;
  background: #fff;
}

.service-entry-row article {
  min-width: 0;
  text-align: center;
}

.service-entry-row i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0 auto 5px;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
}

.service-entry-row i.red {
  background: #ff2438;
}

.service-entry-row i.gold {
  background: #f5a623;
}

.service-entry-row i.green {
  background: #18b96c;
}

.service-entry-row i.blue {
  background: #3280ff;
}

.service-entry-row i.dark {
  background: #333943;
}

.service-entry-row b {
  display: block;
  color: #555b65;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.jd-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
}

.mosaic-card {
  min-width: 0;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  overflow: hidden;
}

.mosaic-card h4 {
  color: #1f2329;
  font-size: 17px;
  line-height: 1.2;
}

.subsidy-card,
.life-card,
.deal-card,
.live-card,
.small-card {
  grid-column: span 2;
}

.mini-product-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.mini-product-pair img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  background: #fff;
}

.mini-product-pair span {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.life-card p {
  margin-top: 5px;
  color: #c1751d;
  font-size: 13px;
  font-weight: 800;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 9px;
}

.life-grid span {
  border-radius: 8px;
  background: #f2f5f8;
  padding: 8px 0;
  color: #4e5662;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.live-card {
  position: relative;
  min-height: 132px;
  padding: 8px;
}

.live-card > span {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  border-radius: 4px;
  background: #ff2438;
  padding: 3px 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.live-card img {
  width: 100%;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
}

.live-card b {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.58);
  padding: 5px 8px;
  color: #fff;
  font-size: 16px;
}

.small-card {
  min-height: 116px;
}

.small-card b {
  display: block;
  border-radius: 6px;
  padding: 4px 6px;
  color: #fff;
  font-size: 15px;
}

.green-card b {
  background: #41bf38;
}

.blue-card b {
  background: #1f70dc;
}

.small-card img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.small-card span {
  display: block;
  color: var(--red);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.waterfall-section {
  padding: 4px 10px 12px;
}

.waterfall-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.waterfall-card {
  min-width: 0;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.waterfall-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  background: #fff;
}

.waterfall-card.tall img {
  height: 178px;
}

.waterfall-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
}

.waterfall-card.wide img {
  width: 132px;
  height: 132px;
}

.waterfall-card h5 {
  padding: 9px 10px 0;
  color: #252a32;
  font-size: 15px;
  line-height: 1.28;
}

.waterfall-card p {
  padding: 5px 10px 0;
  color: #b36c19;
  font-size: 12px;
  font-weight: 800;
}

.waterfall-card div {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px 10px;
}

.waterfall-card div b {
  color: var(--red);
  font-size: 19px;
  line-height: 1;
}

.waterfall-card div span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.waterfall-card div i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  margin-left: auto;
  border-radius: 50%;
  color: var(--red);
  background: #ffe8ec;
  font-size: 20px;
  font-style: normal;
  line-height: 1;
}

.location {
  color: #2d3238;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.searchbox {
  min-width: 0;
  border-radius: 8px;
  background: #f2f3f5;
  padding: 9px 11px;
  color: #8a9099;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-search button {
  width: 38px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.mobile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
  align-items: center;
  margin: 12px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--red) 0%, #f9563c 62%, #ff8a00 100%);
  padding: 16px;
  color: #fff;
  overflow: hidden;
}

.mobile-hero p {
  font-size: 13px;
  opacity: 0.9;
}

.mobile-hero h3 {
  margin-top: 7px;
  font-size: 22px;
  line-height: 1.18;
}

.mobile-hero span {
  display: inline-flex;
  margin-top: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 800;
}

.mobile-hero img {
  width: 132px;
  height: 132px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.coupon-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 12px;
}

.coupon-band article {
  min-height: 72px;
  border: 1px solid rgba(225, 37, 27, 0.16);
  border-radius: 8px;
  background: #fff7f5;
  padding: 10px;
}

.coupon-band b {
  display: block;
  color: var(--red);
  font-size: 20px;
  line-height: 1;
}

.coupon-band span {
  display: block;
  margin-top: 8px;
  color: #8f3a35;
  font-size: 11px;
  font-weight: 700;
}

.mobile-section {
  margin: 14px 12px 0;
}

.mobile-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.mobile-head h4 {
  font-size: 14px;
}

.mobile-head span {
  color: var(--muted);
  font-size: 10px;
}

.compact-head {
  margin-top: 10px;
}

.recommend-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-native-top {
  display: grid;
  grid-template-columns: 34px 34px minmax(0, 1fr) 78px;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 10px 14px;
  color: #25282d;
}

.detail-native-top span,
.detail-native-top b {
  font-size: 26px;
  line-height: 1;
  text-align: center;
}

.detail-native-top strong {
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-native-top em {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 8px;
  color: #1f2329;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 1px;
  text-align: center;
}

.product-detail-phone .phone-body {
  padding: 0;
}

.detail-hero-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 235px;
  background: #e9edf3;
}

.detail-hero-wrap img {
  width: 76%;
  height: 220px;
  object-fit: contain;
}

.share-dot {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: rgba(37, 40, 45, 0.55);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.detail-info-card {
  border-bottom: 10px solid #f2f3f5;
  background: #fff;
  padding: 15px 16px;
}

.detail-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: start;
}

.detail-title-row h3 {
  margin: 0;
  color: #2c3138;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.detail-price {
  margin-top: 10px;
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.detail-price s {
  margin-left: 8px;
  color: #9ca3ad;
  font-size: 13px;
  font-weight: 600;
}

.detail-fav {
  border-left: 1px solid var(--line);
  color: #9ca3ad;
  text-align: center;
  font-size: 26px;
  line-height: 1;
}

.detail-fav small {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
}

.location-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 16px;
  align-items: center;
  border-bottom: 10px solid #f2f3f5;
  background: #fff;
  padding: 13px 16px;
  color: #9ca3ad;
  font-size: 14px;
}

.location-row b {
  color: #3c4148;
  font-size: 15px;
}

.location-row em {
  color: #9ca3ad;
  font-size: 20px;
  font-style: normal;
  text-align: right;
}

.store-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 10px solid #f2f3f5;
  background: #fff;
  padding: 16px;
}

.store-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 2px;
  background: #df1f26;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.store-logo small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.5px;
}

.store-main {
  min-width: 0;
}

.store-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.store-row b {
  min-width: 0;
  overflow: hidden;
  font-size: 17px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-row span {
  flex: none;
  color: #8a9099;
  font-size: 11px;
}

.store-main p {
  margin-top: 6px;
  color: #8a9099;
  font-size: 12px;
}

.store-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 13px;
}

.store-actions button {
  border: 1px solid rgba(225, 37, 27, 0.45);
  border-radius: 999px;
  background: #fff;
  padding: 8px 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.detail-recommend-strip {
  background: #fff;
  padding: 10px 14px 12px;
}

.mini-recommend-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mini-recommend-list article,
.search-result-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.mini-recommend-list img {
  width: 100%;
  height: 68px;
  object-fit: cover;
}

.mini-recommend-list b,
.mini-recommend-list p {
  display: block;
  padding: 6px 8px 0;
  font-size: 12px;
}

.mini-recommend-list p {
  padding-bottom: 7px;
  color: var(--red);
  font-weight: 900;
}

.detail-bottom-actions {
  display: grid;
  grid-template-columns: 42px 42px 48px 92px 86px;
  justify-content: center;
  gap: 6px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  padding: 8px 8px 10px;
}

.detail-bottom-actions span {
  display: grid;
  gap: 2px;
  place-items: center;
  color: #42474f;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.detail-bottom-actions span::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #25282d;
  font-size: 15px;
  line-height: 1;
}

.detail-bottom-actions span:nth-child(1)::before {
  content: "⌂";
}

.detail-bottom-actions span:nth-child(2)::before {
  content: "⋯";
}

.detail-bottom-actions span:nth-child(3)::before {
  content: "⌗";
}

.detail-bottom-actions button {
  border-radius: 8px;
  background: var(--red);
  height: 38px;
  padding: 0 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.detail-bottom-actions .buy-now {
  background: #ffc15d;
  color: #fff;
}

.cart-empty-state {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 74px;
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  padding: 16px 14px;
}

.cart-empty-state .cart-icon {
  color: #8f969f;
  font-size: 34px;
  line-height: 1;
}

.cart-empty-state b {
  color: #3d4249;
  font-size: 15px;
}

.cart-empty-state button {
  border: 1px solid rgba(225, 37, 27, 0.32);
  border-radius: 8px;
  background: #fff;
  padding: 7px 10px;
  color: var(--red);
  font-weight: 900;
}

.cart-pick-title {
  margin: 14px 0 10px;
  color: #6c727c;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.cart-pick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cart-pick-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.cart-pick-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cart-pick-grid h5 {
  min-height: 40px;
  padding: 9px 10px 0;
  color: #333840;
  font-size: 13px;
  line-height: 1.25;
}

.cart-pick-grid p {
  padding: 8px 10px 12px;
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
}

.cart-pick-grid button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.searchbar-mobile {
  border-radius: 999px;
  background: #fff;
  padding: 10px 14px;
  color: #8a9099;
  font-size: 13px;
}

.search-filter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 10px 0;
}

.search-filter-row span {
  border-radius: 8px;
  background: #fff;
  padding: 8px 2px;
  color: #4e5662;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.search-result-list {
  display: grid;
  gap: 9px;
}

.search-result-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  padding: 9px;
}

.search-result-list img {
  width: 86px;
  height: 86px;
  border-radius: 8px;
  object-fit: cover;
}

.search-result-list b,
.search-result-list p,
.search-result-list strong {
  display: block;
}

.search-result-list b {
  font-size: 14px;
  line-height: 1.3;
}

.search-result-list p {
  margin-top: 6px;
  color: #b36c19;
  font-size: 12px;
}

.search-result-list strong {
  margin-top: 6px;
  color: var(--red);
  font-size: 18px;
}

.touch-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.popup-stage {
  position: relative;
  min-height: 500px;
}

.app-page-faint {
  display: grid;
  gap: 12px;
  opacity: 0.42;
}

.fake-search,
.fake-card,
.fake-grid {
  border-radius: 8px;
  background: #fff;
}

.fake-search {
  height: 38px;
}

.fake-card {
  height: 150px;
}

.fake-grid {
  height: 210px;
}

.promo-modal {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 135px;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(24, 28, 33, 0.18);
}

.promo-modal span,
.inbox-list span,
.wechat-card span,
.campaign-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.promo-modal b,
.inbox-list b,
.wechat-card b,
.campaign-list b {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.28;
}

.promo-modal p,
.inbox-list p,
.wechat-card p,
.campaign-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.promo-modal button {
  margin-top: 14px;
  border-radius: 8px;
  background: var(--red);
  padding: 10px 28px;
  color: #fff;
  font-weight: 900;
}

.message-ui {
  position: relative;
  background: #f4f5f7;
  min-height: 560px;
  padding-bottom: 64px;
}

.sms-date {
  margin-bottom: 14px;
  color: #9aa1aa;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.sms-bubble {
  max-width: 86%;
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}

.sms-bubble.incoming {
  background: #fff;
}

.sms-bubble.outgoing {
  margin: 12px 0 0 auto;
  color: #fff;
  background: #2f7bf6;
}

.sms-product-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  margin-top: 16px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.sms-product-card img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.sms-product-card b,
.sms-product-card p {
  display: block;
}

.sms-product-card p {
  margin-top: 6px;
  color: var(--red);
  font-weight: 900;
}

.sms-input-row {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 8px;
  align-items: center;
}

.sms-input-row span {
  border-radius: 999px;
  background: #fff;
  padding: 10px 14px;
  color: #9aa1aa;
  font-size: 13px;
}

.sms-input-row b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #d7dce3;
  color: #fff;
  font-size: 20px;
}

.inbox-list,
.campaign-list {
  display: grid;
  gap: 10px;
}

.inbox-list article,
.campaign-list article,
.wechat-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.wechat-card {
  margin-bottom: 12px;
}

.wechat-card > div {
  margin-top: 12px;
  border-radius: 8px;
  background: var(--red);
  padding: 10px;
  color: #fff;
  text-align: center;
  font-weight: 900;
}

.wechat-card.light {
  background: #fff8f7;
}

.campaign-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.activity-hero {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, #ff8a00 100%);
  padding: 20px;
  color: #fff;
}

.activity-hero span {
  font-size: 13px;
  font-weight: 900;
}

.activity-hero b {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.activity-hero p {
  margin-top: 10px;
  font-size: 13px;
}

.activity-coupon-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.activity-coupon-row article {
  border: 1px solid rgba(225, 37, 27, 0.16);
  border-radius: 8px;
  background: #fff7f5;
  padding: 12px;
}

.activity-coupon-row b {
  display: block;
  color: var(--red);
  font-size: 22px;
}

.activity-coupon-row span {
  display: block;
  margin-top: 5px;
  color: #8f3a35;
  font-size: 12px;
  font-weight: 800;
}

.activity-products {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.activity-products article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.activity-products img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.activity-products b,
.activity-products p {
  display: block;
}

.activity-products p {
  margin-top: 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.campaign-list article.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--red) 0%, #f46d43 100%);
}

.campaign-list article.active span,
.campaign-list article.active p {
  color: rgba(255, 255, 255, 0.86);
}

.horizontal-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.horizontal-products article,
.product-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.horizontal-products img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}

.horizontal-products b {
  display: block;
  padding: 8px 8px 0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-products span {
  display: block;
  padding: 4px 8px 9px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}

.product-grid h5 {
  padding: 8px 9px 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  min-height: 40px;
}

.product-grid p {
  padding: 6px 9px 10px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.mobile-tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 8px 14px;
}

.mobile-tabbar span {
  color: #6c727c;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.mobile-tabbar .active {
  color: var(--red);
}

.explain-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.explain-card {
  min-height: 186px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(24, 28, 33, 0.07);
}

.explain-card:first-child {
  grid-column: 1 / -1;
  min-height: 220px;
}

.explain-card span {
  display: inline-flex;
  border-radius: 6px;
  background: var(--red-soft);
  padding: 6px 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.explain-card h3 {
  margin-top: 18px;
  font-size: 27px;
  line-height: 1.24;
}

.explain-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.red-card {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.red-card span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.red-card p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}

.page-coupon,
.page-automation {
  background:
    linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: center;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.phone-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.65fr);
  gap: 24px;
  align-items: stretch;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.phone-mock,
.phone-frame,
.coupon-phone {
  width: min(100%, 390px);
  min-height: 680px;
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid #191d22;
  border-radius: 34px;
  background: #f5f6f8;
  box-shadow: var(--shadow);
}

.phone-mock::after,
.phone-frame::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 110px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(25, 29, 34, 0.18);
}

.phone-mock {
  position: relative;
}

.phone-body {
  padding: 14px;
}

.phone-titlebar {
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 12px 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}

.mock-tabbar,
.mobile-tabbar {
  position: static;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: 9px 8px;
}

.mock-tabbar span,
.mobile-tabbar span {
  color: #6c727c;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.mock-tabbar .active,
.mobile-tabbar .active {
  color: var(--red);
}

.jd-home-scroll {
  height: calc(100% - 30px - 52px);
  overflow-y: auto;
}

.page-homepage .phone-frame {
  width: min(100%, 420px);
  background: #f2f3f5;
}

.page-homepage .jd-home-scroll {
  height: calc(100% - 30px - 58px);
  background: #f2f3f5;
  scrollbar-width: none;
}

.page-homepage .jd-home-scroll::-webkit-scrollbar {
  display: none;
}

.page-homepage .demo-searchbar {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px 34px;
  gap: 7px;
  align-items: center;
  margin: 9px 9px 0;
  border: 0;
  background: #fff;
  padding: 0;
}

.page-homepage .tool-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #9aa1ab;
}

.page-homepage .tool-icon svg {
  width: 24px;
  height: 24px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.page-homepage .notice-icon::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 6px;
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ff4d5a;
}

.page-homepage .demo-searchbar .searchbox {
  position: relative;
  min-width: 0;
  height: 36px;
  overflow: hidden;
  border: 1px solid #d9dee7;
  border-radius: 999px;
  background: #fff;
  padding: 9px 13px 8px 36px;
  color: #5f6672;
  font-size: 14px;
  line-height: 1.15;
  box-shadow: 0 3px 10px rgba(23, 28, 35, 0.08);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-homepage .demo-searchbar .searchbox::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid #9aa1ab;
  border-radius: 50%;
}

.page-homepage .demo-searchbar .searchbox::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 22px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #9aa1ab;
  transform: rotate(45deg);
  transform-origin: left center;
}

.page-homepage .persona-channel-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 9px 10px 7px;
  background: #fff;
  scrollbar-width: none;
  white-space: nowrap;
}

.page-homepage .persona-channel-row::-webkit-scrollbar {
  display: none;
}

.page-homepage .persona-channel-row span {
  flex: none;
  border: 0;
  border-radius: 999px;
  background: #ffe0df;
  padding: 7px 10px;
  color: #be4b4b;
  font-size: 12px;
  font-weight: 900;
}

.page-homepage .persona-channel-row span:nth-child(2) {
  background: #dff7e9;
  color: #238157;
}

.page-homepage .persona-channel-row span:nth-child(3) {
  background: #e2f0ff;
  color: #2f6fae;
}

.page-homepage .persona-channel-row span:nth-child(4) {
  background: #fff0cf;
  color: #9a640e;
}

.page-homepage .persona-channel-row span:nth-child(5) {
  background: #f0e5ff;
  color: #7547a6;
}

.page-homepage .persona-channel-row span:nth-child(6) {
  background: #e7f4ef;
  color: #2e735f;
}

.page-homepage .persona-channel-row .active {
  background: #ffe8ec;
  color: var(--red);
}

.page-homepage .service-entry-row {
  gap: 4px;
  padding: 5px 10px 7px;
}

.page-homepage .service-entry-row i {
  width: 30px;
  height: 30px;
  margin-bottom: 3px;
  border-radius: 10px;
  font-size: 13px;
}

.page-homepage .service-entry-row b {
  font-size: 10px;
}

.page-homepage .persona-banner {
  display: block;
  margin: 8px 10px 9px;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(23, 28, 35, 0.08);
}

.page-homepage .persona-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 270;
  object-fit: cover;
}

.page-homepage .persona-waterfall {
  padding: 4px 10px 12px;
}

.page-homepage .persona-waterfall .waterfall-grid {
  grid-auto-flow: dense;
  align-items: start;
}

.page-homepage .persona-waterfall .waterfall-card {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  border: 1px solid rgba(231, 233, 238, 0.86);
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(23, 28, 35, 0.05);
}

.page-homepage .persona-waterfall .waterfall-card img {
  height: 116px;
}

.page-homepage .persona-waterfall .waterfall-card.wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  min-height: 132px;
}

.page-homepage .persona-waterfall .waterfall-card.wide img {
  width: 132px;
  height: 132px;
}

.page-homepage .persona-waterfall .waterfall-card div {
  margin-top: auto;
}

.page-homepage .icon-tabbar {
  padding: 8px 8px 14px;
}

.page-homepage .icon-tabbar span {
  display: grid;
  min-width: 0;
  place-items: center;
  gap: 3px;
  font-size: 11px;
}

.page-homepage .icon-tabbar svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.page-homepage .icon-tabbar b {
  display: block;
  font: inherit;
  line-height: 1.1;
}

.product-strip img,
.coupon-products img,
.mini-recommend-list img,
.cart-pick-grid img,
.search-result-list img,
.sms-product-card img,
.activity-products img {
  object-fit: cover;
  background: #eef1f5;
}

.product-strip img,
.coupon-products img,
.activity-products img {
  transform: scale(1.04);
}

.member-card-mobile {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.member-card-mobile b {
  display: block;
  font-size: 18px;
}

.member-card-mobile span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.mobile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.mobile-stats article,
.mobile-menu-grid span,
.ai-insight-card,
.segment-list-mobile article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mobile-stats article {
  padding: 12px 8px;
  text-align: center;
}

.mobile-stats b {
  display: block;
  color: var(--red);
  font-size: 18px;
}

.mobile-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.mobile-menu-grid span {
  padding: 12px 6px;
  color: #4b525c;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.ai-insight-card {
  margin-top: 10px;
  padding: 14px;
  background: #fff8f7;
}

.ai-insight-card span,
.segment-list-mobile article span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.ai-insight-card b,
.segment-list-mobile article b {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.3;
}

.ai-insight-card p,
.segment-list-mobile article p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.segment-list-mobile {
  display: grid;
  gap: 10px;
}

.segment-list-mobile article {
  padding: 14px;
}

.segment-list-mobile article.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--red) 0%, #f46d43 100%);
}

.segment-list-mobile article.active span,
.segment-list-mobile article.active p {
  color: rgba(255, 255, 255, 0.86);
}

.mobile-cta {
  margin-top: 12px;
  border-radius: 8px;
  background: var(--red);
  padding: 12px;
  color: #fff;
  text-align: center;
  font-weight: 900;
}

.dashboard-panel,
.rule-panel,
.shop-surface,
.journey-board,
.assistant-workbench,
.bundle-panel,
.recommend-console,
.metrics-panel,
.side-explain article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(24, 28, 33, 0.08);
}

.dashboard-panel,
.rule-panel,
.shop-surface,
.journey-board,
.assistant-workbench {
  min-width: 0;
  padding: 22px;
}

.shop-surface,
.journey-board,
.assistant-workbench {
  width: min(100%, 390px);
  min-height: 680px;
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid #191d22;
  border-radius: 34px;
  background: #f5f6f8;
  box-shadow: var(--shadow);
  padding: 14px;
}

.shop-surface::before,
.journey-board::before,
.assistant-workbench::before {
  content: "12:28  ·  融通军民服务社";
  display: block;
  margin: -14px -14px 12px;
  background: #fff;
  padding: 9px 16px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

.shop-surface .product-detail {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
}

.shop-surface .product-detail img {
  width: 100%;
  height: 190px;
}

.shop-surface .product-detail h3 {
  font-size: 23px;
}

.shop-surface .product-detail p {
  font-size: 13px;
}

.shop-surface .rail-products,
.shop-surface .cart-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.shop-surface .detail-recommend-row {
  grid-template-columns: 1fr;
}

.shop-surface .detail-recommend-row article {
  grid-template-columns: 72px minmax(0, 1fr);
}

.shop-surface .detail-recommend-row img {
  width: 72px;
  height: 72px;
}

.shop-surface .cart-topline {
  align-items: flex-start;
}

.shop-surface .cart-products h5 {
  font-size: 12px;
}

.journey-board .panel-title,
.assistant-workbench .panel-title {
  flex-direction: column;
  gap: 10px;
}

.journey-board .journey-steps,
.assistant-workbench .plan-grid {
  grid-template-columns: 1fr;
}

.journey-board .message-preview {
  grid-template-columns: 1fr 86px;
  padding: 12px;
}

.journey-board .message-preview img {
  width: 86px;
  height: 86px;
}

.assistant-workbench .prompt-box {
  padding: 14px;
}

.assistant-workbench .prompt-box p {
  font-size: 16px;
}

.assistant-workbench .ai-plan {
  padding: 14px;
}

.panel-title,
.console-head,
.bundle-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-title b,
.console-head b,
.bundle-head b {
  display: block;
  font-size: 21px;
  line-height: 1.2;
}

.panel-title span,
.console-head span,
.bundle-head span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.panel-title button,
.product-detail button,
.ticket-list button,
.app-search button {
  cursor: default;
}

.panel-title button,
.product-detail button {
  flex: none;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.segment-card {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  padding: 16px;
}

.segment-card.hot {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, var(--red) 0%, #f46d43 100%);
}

.segment-card span,
.rule-list span,
.prompt-box span,
.plan-grid span,
.metrics-panel span,
.ticket-list p,
.reason-list span,
.journey-steps span,
.message-preview span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.segment-card.hot span,
.segment-card.hot p {
  color: rgba(255, 255, 255, 0.84);
}

.segment-card strong {
  display: block;
  margin-top: 12px;
  font-size: 30px;
  line-height: 1;
}

.segment-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.profile-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 92px;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 8px;
  background: #fff8f7;
  padding: 16px;
}

.member-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.member-info b {
  display: block;
  font-size: 18px;
}

.member-info > span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag-row i {
  border-radius: 6px;
  background: #fff;
  padding: 6px 8px;
  color: #9d302b;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.score-box {
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  text-align: center;
}

.score-box strong {
  display: block;
  color: var(--red);
  font-size: 32px;
  line-height: 1;
}

.score-box span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.side-explain {
  display: grid;
  gap: 14px;
}

.side-explain article {
  padding: 24px;
}

.side-explain span,
.explain-card span {
  letter-spacing: 0;
}

.side-explain article:first-child {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, #1f2329 0%, #3a414c 100%);
}

.side-explain article:first-child span,
.side-explain article:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.side-explain h3 {
  margin-top: 14px;
  font-size: 25px;
  line-height: 1.28;
}

.side-explain p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.coupon-layout {
  grid-template-columns: minmax(350px, 420px) minmax(0, 1fr);
}

.coupon-phone {
  width: min(100%, 400px);
  min-height: 720px;
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid #191d22;
  border-radius: 34px;
  background: #f7f8fa;
  box-shadow: var(--shadow);
}

.coupon-top {
  padding: 18px 16px 12px;
  background:
    linear-gradient(180deg, #fff4f2 0%, #f7f8fa 100%);
}

.coupon-top b {
  display: block;
  font-size: 22px;
}

.coupon-top span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.ticket-list {
  display: grid;
  gap: 10px;
  padding: 8px 14px 14px;
}

.ticket-list article {
  display: grid;
  grid-template-columns: minmax(0, 96px) minmax(0, 1fr) 68px;
  gap: 10px;
  align-items: center;
  min-height: 92px;
  border: 1px solid rgba(225, 37, 27, 0.16);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.ticket-list strong {
  display: block;
  color: var(--red);
  font-size: 27px;
  line-height: 1;
}

.ticket-list div span {
  display: block;
  margin-top: 6px;
  color: #8b4340;
  font-size: 11px;
  font-weight: 800;
}

.ticket-list p {
  color: #2f353d;
  line-height: 1.35;
}

.ticket-list button {
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 900;
}

.coupon-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px 18px;
}

.coupon-products img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.benefit-wallet {
  margin: 0 14px 12px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #fff4f0 0%, #fff 100%);
  padding: 12px;
  border: 1px solid rgba(225, 37, 27, 0.14);
}

.benefit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.benefit-head b {
  font-size: 17px;
}

.benefit-head span {
  border-radius: 6px;
  background: var(--red);
  padding: 4px 7px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.benefit-grid article {
  border-radius: 8px;
  background: #fff;
  padding: 10px 6px;
  text-align: center;
}

.benefit-grid strong {
  display: block;
  color: var(--red);
  font-size: 19px;
  line-height: 1;
}

.benefit-grid span {
  display: block;
  margin-top: 7px;
  color: #793c35;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.rule-list {
  display: grid;
  gap: 12px;
}

.rule-list article,
.reason-list article,
.journey-steps article,
.plan-grid article,
.metrics-panel article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  padding: 18px;
}

.rule-list b,
.plan-grid b,
.reason-list p,
.journey-steps b,
.message-preview b,
.metrics-panel b {
  display: block;
  margin-top: 9px;
  font-size: 19px;
  line-height: 1.25;
}

.rule-list p,
.plan-grid p,
.journey-steps p,
.message-preview p,
.metrics-panel p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.recommend-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
}

.shop-surface {
  background:
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.product-detail {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.product-detail img {
  width: 240px;
  height: 240px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.product-detail span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.product-detail h3 {
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.15;
}

.product-detail p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-detail button {
  margin-top: 18px;
}

.recommend-rail {
  margin-top: 14px;
}

.rail-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rail-products article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.rail-products img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.rail-products b {
  display: block;
  padding: 10px 10px 0;
  font-size: 15px;
}

.rail-products p {
  padding: 6px 10px 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.detail-recommend-block,
.cart-recommend-block {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.detail-recommend-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-recommend-row article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  background: #f7f8fa;
  padding: 10px;
}

.detail-recommend-row img {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.detail-recommend-row b {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.detail-recommend-row span {
  display: block;
  margin-top: 6px;
  color: #b36c19;
  font-size: 12px;
  font-weight: 800;
}

.detail-recommend-row p {
  margin-top: 7px;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.cart-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-topline b {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

.cart-topline span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.cart-topline button {
  flex: none;
  border-radius: 8px;
  background: var(--red);
  padding: 9px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.cart-reward-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  border-radius: 8px;
  background: #fff1f0;
  padding: 10px 12px;
}

.cart-reward-strip span {
  flex: none;
  border-radius: 6px;
  background: var(--red);
  padding: 4px 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.cart-reward-strip b {
  min-width: 0;
  color: #8f3a35;
  font-size: 14px;
  line-height: 1.35;
}

.cart-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.cart-products article {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.cart-products img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cart-products h5 {
  padding: 8px 8px 0;
  font-size: 13px;
  line-height: 1.25;
  min-height: 40px;
}

.cart-products p {
  padding: 6px 8px 10px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.recommend-console {
  padding: 22px;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.reason-list article:first-child {
  color: #fff;
  border-color: transparent;
  background: var(--red);
}

.reason-list article:first-child span,
.reason-list article:first-child p {
  color: #fff;
}

.reason-list p {
  color: #2f353d;
  font-size: 15px;
}

.automation-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.journey-steps span {
  display: grid;
  width: 34px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
}

.message-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 8px;
  background: #fff8f7;
  padding: 18px;
}

.message-preview img {
  width: 118px;
  height: 118px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.metrics-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.metrics-panel article:first-child {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, var(--red) 0%, #f46d43 100%);
}

.metrics-panel article:first-child span,
.metrics-panel article:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.metrics-panel b {
  color: var(--red);
  font-size: 34px;
  line-height: 1;
}

.metrics-panel article:first-child b {
  color: #fff;
}

.campaign-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
}

.assistant-workbench {
  display: grid;
  gap: 14px;
}

.prompt-box {
  border-radius: 8px;
  background:
    linear-gradient(135deg, #1f2329 0%, #3a414c 100%);
  padding: 20px;
  color: #fff;
}

.prompt-box span {
  color: rgba(255, 255, 255, 0.72);
}

.prompt-box p {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.52;
}

.ai-plan {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bundle-panel {
  padding: 22px;
}

.bundle-products {
  display: grid;
  gap: 10px;
}

.bundle-products article {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.bundle-products img {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  object-fit: cover;
}

.bundle-products b {
  display: block;
  font-size: 17px;
}

.bundle-products span {
  display: block;
  margin-top: 7px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

@media (min-width: 761px) {
  .phone-frame,
  .phone-mock,
  .coupon-phone {
    width: min(100%, 390px);
    min-height: 680px;
    border: 10px solid #191d22;
    border-radius: 34px;
    overflow: hidden;
  }

  .phone-frame {
    height: 824px;
  }

  .coupon-layout {
    grid-template-columns: minmax(390px, 0.72fr) minmax(420px, 1fr);
  }

  .coupon-phone {
    margin: 0 auto;
  }

  .jd-home-scroll {
    height: calc(100% - 30px - 52px);
    overflow-y: auto;
  }

  .phone-frame .phone-status,
  .phone-mock .phone-status,
  .coupon-phone .phone-status {
    border-radius: 20px 20px 0 0;
  }

  .phone-showcase-layout .explain-panel,
  .homepage-layout .explain-panel {
    align-self: stretch;
  }
}

@media (max-width: 1180px) {
  .overview-layout,
  .homepage-layout,
  .profile-strategy-layout,
  .phone-showcase-layout,
  .feature-layout,
  .coupon-layout,
  .recommend-layout,
  .automation-layout,
  .campaign-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .copy-block h1,
  .lead,
  .kpi-row {
    max-width: none;
  }

  .strategy-grid,
  .segment-grid,
  .journey-steps,
  .profile-flow,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-header > p {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .page {
    padding: 18px 10px 28px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar nav {
    justify-content: flex-start;
  }

  .copy-block h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 16px;
  }

  .kpi-row,
  .strategy-grid,
  .product-strip,
  .capability-grid,
  .explain-panel,
  .segment-grid,
  .profile-card,
  .tag-matrix,
  .profile-flow,
  .reason-list,
  .journey-steps,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .product-strip article {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .product-strip img {
    width: 76px;
    height: 76px;
  }

  .capability-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  .section-header {
    gap: 14px;
    margin-bottom: 16px;
    border-radius: 12px;
    padding: 16px;
  }

  .section-header > p {
    max-width: none;
    font-size: 14px;
    line-height: 1.68;
  }

  .module-heading {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
  }

  .module-index {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    font-size: 22px;
  }

  .phone-frame {
    height: 806px;
    border-width: 7px;
    border-radius: 28px;
  }

  .phone-showcase-layout,
  .feature-layout,
  .coupon-layout,
  .recommend-layout,
  .automation-layout,
  .campaign-layout {
    gap: 18px;
  }

  .phone-gallery,
  .recommend-gallery,
  .touch-gallery,
  .phone-stack {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phone-mock,
  .phone-frame,
  .coupon-phone {
    width: min(100%, 430px);
    max-width: 430px;
    border-width: 7px;
    border-radius: 28px;
  }

  .phone-mock {
    min-height: 0;
  }

  .coupon-phone {
    min-height: 660px;
  }

  .panel-title,
  .console-head,
  .bundle-head,
  .product-detail,
  .message-preview {
    grid-template-columns: 1fr;
  }

  .panel-title,
  .console-head,
  .bundle-head {
    flex-direction: column;
  }

  .product-detail {
    display: grid;
  }

  .product-detail img,
  .message-preview img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .rail-products {
    grid-template-columns: 1fr;
  }

  .app-search {
    grid-template-columns: 1fr 38px;
  }

  .jd-search {
    grid-template-columns: 28px minmax(0, 1fr) 34px 54px;
  }

  .detail-recommend-row,
  .cart-products {
    grid-template-columns: 1fr;
  }

  .detail-native-top {
    grid-template-columns: 32px 32px minmax(0, 1fr) 72px;
    gap: 6px;
    padding: 10px 12px;
  }

  .detail-hero-wrap {
    min-height: 250px;
  }

  .detail-hero-wrap img {
    height: 235px;
  }

  .detail-bottom-actions {
    grid-template-columns: 38px 38px 44px minmax(88px, 1fr) minmax(82px, 0.9fr);
    gap: 5px;
    padding: 8px 7px 10px;
  }

  .detail-bottom-actions button {
    font-size: 12px;
  }

  .cart-empty-state {
    grid-template-columns: 48px minmax(0, 1fr) 70px;
  }

  .location {
    display: none;
  }

  .mobile-hero {
    grid-template-columns: 1fr;
  }

  .mobile-hero img {
    width: 100%;
    height: 150px;
  }

  .explain-card:first-child {
    grid-column: auto;
  }
}
