* {
  box-sizing: border-box;
}

:root {
  --accent: #0f766e;
  --ink: #171717;
  --text: #242424;
  --muted: #66716b;
  --soft: #8a948e;
  --line: #dde5df;
  --paper: #fbfcfa;
  --canvas: #f4f7f3;
  --surface: #ffffff;
  --reward: #df5537;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

html {
  background: var(--canvas);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 247, 243, 0.94) 360px),
    var(--canvas);
  color: var(--text);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

body.has-sheet {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

a,
[role="button"],
.reward-button,
.reward-image-button,
.article-footer__like-button,
.amount-list button,
.custom-amount-button,
.custom-amount-close,
.custom-amount-submit,
.sheet-close {
  touch-action: manipulation;
}

img,
video,
iframe {
  max-width: 100%;
}

.home-hero {
  position: relative;
  min-height: clamp(300px, 45svh, 460px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 42px 20px 38px;
  background:
    linear-gradient(130deg, rgba(15, 29, 27, 0.96), rgba(31, 50, 43, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px);
  color: #fffdf7;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.66;
}

.home-hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(42px, 13vw, 74px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero p:last-child {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.84);
  font-size: clamp(15px, 2.8vw, 18px);
  line-height: 1.7;
}

.feed {
  width: min(100%, 760px);
  margin: -22px auto 0;
  padding: 0 16px 56px;
}

.feed-item {
  position: relative;
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 18px;
  min-height: 126px;
  margin-bottom: 12px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(24, 35, 29, 0.09);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 10px 26px rgba(24, 35, 29, 0.06);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.feed-item:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 16px 34px rgba(24, 35, 29, 0.1);
  transform: translateY(-1px);
}

.feed-item:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.24);
  outline-offset: 3px;
}

.feed-item img,
.feed-item__placeholder {
  width: 126px;
  height: 98px;
  object-fit: cover;
  border-radius: 6px;
  background: #e2e8e3;
}

.feed-item__placeholder {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 38px;
  font-weight: 900;
}

.feed-item h2 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 4.6vw, 22px);
  line-height: 1.28;
  letter-spacing: 0;
}

.feed-item p {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.feed-item span {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.article-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 34px 20px 74px;
}

.back-link,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.text-link {
  margin: 18px 0 0;
}

.video-cover {
    width:100%;
    aspect-ratio:16 / 9;
    overflow:hidden;
    border-radius:8px;
}

.video-cover .article-cover {
    width:100%;
    height:100%;
    object-fit:cover;
    margin-bottom:0;
}

.article-cover {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    margin-bottom:32px;
    border-radius:8px;
    box-shadow:0 18px 42px rgba(24,35,29,0.13);
}

.article {
  background: transparent;
  padding: 0;
}

.article__header {
  padding-bottom: 0;
}

.article__header h1 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0;
  text-align: left;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 14px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.5;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
}

.article-summary {
  margin: 24px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  color: #4c5750;
  font-size: clamp(16px, 3.9vw, 18px);
  line-height: 1.78;
}

.article-body {
  margin-top: 28px;
  color: #222;
  font-size: clamp(16px, 4.2vw, 18px);
  line-height: 1.92;
  word-break: break-word;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 38px 0 14px;
  color: var(--ink);
  line-height: 1.34;
  letter-spacing: 0;
}

.article-body h2 {
  font-size: 24px;
}

.article-body h3 {
  font-size: 21px;
}

.article-body h4 {
  font-size: 18px;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body a {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid rgba(15, 118, 110, 0.28);
}

.article-body blockquote {
  margin: 30px 0;
  padding: 8px 0 8px 18px;
  border-left: 3px solid #cbd7cf;
  color: #58625c;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent);
}

.article-body figure {
  margin: 30px 0;
}

.article-body img,
.article-body video,
.article-body iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #edf1ed;
}

.article-body iframe {
  aspect-ratio: 16 / 9;
}

.tencent-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #edf1ed;
}

.tencent-video-player iframe {
  width: 100%;
  height: 100%;
}

.article-reward {
  margin-top: 52px;
  padding: 34px 20px 6px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.article-reward__label {
  margin: 0 0 16px;
  color: #4c5750;
  font-size: 15px;
  font-weight: 800;
}

.article-reward__copy {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 13px;
}

.article-reward--inline {
  margin-top: 26px;
  padding: 26px 0 12px;
  border-top: 0;
}

.article-reward--inline .article-reward__label {
  margin-bottom: 8px;
  color: #1f1f1f;
  font-size: clamp(22px, 6vw, 30px);
  line-height: 1.24;
}

.article-reward--inline .article-reward__copy {
  margin: 0 0 22px;
  color: #1f1f1f;
  font-size: clamp(17px, 4.8vw, 23px);
  font-weight: 800;
  line-height: 1.45;
}

.article-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.5;
}

.article-footer__like-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--soft);
  font: inherit;
}

.article-footer__like-button.is-liked {
  color: #607d9a;
}

.article-footer__like-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: #607d9a;
}

.article-footer__like-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.article-template--romance {
  --canvas: #ffffff;
  --paper: #ffffff;
  background: #ffffff;
}

.article-template--romance .article-shell {
  padding: 26px 20px 74px;
}

.article-template--romance .article-body {
  margin-top: 24px;
}

.article-template--romance .article-body figure {
  margin: 0;
}

.article-template--romance .article-body iframe,
.article-template--romance .article-body video {
  border-radius: 0;
  background: #111;
}

.article-template--mpnews {
  --canvas: #ffffff;
  --paper: #ffffff;
  background: #ffffff;
}

.article-template--mpnews .article-shell {
  width: min(100%, 720px);
  padding: 16px 23px 50px;
}

.article-template--mpnews .article__header h1 {
  font-size: 27px;
  font-weight: 400;
  line-height: 1.25;
}

.article-template--mpnews .article-meta {
  margin-top: 18px;
  color: #8c8c8c;
  font-size: 15px;
}

.article-template--mpnews .article-body {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.75;
}

.article-template--mpnews .article-body figure {
  margin: 0 0 26px;
}

.article-template--mpnews .article-body img,
.article-template--mpnews .article-body video,
.article-template--mpnews .article-body iframe,
.article-template--mpnews .tencent-video-player {
  border-radius: 0;
}

.article-reward--image {
  margin: 8px 0 0;
  padding: 0;
  border-top: 0;
  text-align: left;
}

.reward-image-button {
  display: block;
  width: 52%;
  max-width: 280px;
  min-height: 0;
  padding: 0;
  margin: 16px auto 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reward-image-button img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: #ffffff;
}
.reward-image-button:hover {
  filter: none;
  transform: none;
  box-shadow: none;
}

.article-template--mpnews .reward-sheet__shade {
  background: rgba(18, 18, 18, 0.38);
  backdrop-filter: blur(4px);
}

.article-template--mpnews .reward-sheet__panel--mpnews {
  max-height: 88vh;
  max-height: 88svh;
  padding: 0 18px calc(26px + env(safe-area-inset-bottom));
  background: #ffffff;
  border-radius: 16px 16px 0 0;
}

.article-template--mpnews .reward-sheet__panel--mpnews .sheet-close {
  top: 14px;
  right: auto;
  left: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255, 255, 255, 0.78);
  color: #111111;
  font-size: 36px;
  font-weight: 300;
}

.mpnews-reward-hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 138px;
  margin: 0 -18px;
  border-bottom-right-radius: 92px;
  border-bottom-left-radius: 92px;
  background: linear-gradient(112deg, #ff1659 0%, #ff4a21 54%, #ffbd17 100%);
}

.mpnews-reward-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mpnews-reward-avatar {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: block;
  width: 104px;
  height: 104px;
  margin: -52px auto 26px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  object-fit: cover;
  background: #f1f1f1;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.article-template--mpnews .reward-sheet__panel--mpnews h1,
.article-template--mpnews .reward-sheet__panel--mpnews h2 {
  max-width: none;
  margin: 0 0 22px;
  color: #111111;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.article-template--mpnews .reward-sheet__panel--mpnews p {
  margin: 0 0 26px;
  color: #111111;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.42;
  text-align: center;
}

.article-template--mpnews .reward-sheet--mpnews .amount-list {
  grid-template-columns: repeat(var(--reward-amount-columns, 3), minmax(0, 1fr));
  gap: 16px 18px;
  margin: 0 6px 18px;
}

.article-template--mpnews .reward-sheet--mpnews .amount-list button {
  min-height: 74px;
  border: 2px solid #d72b78;
  border-radius: var(--reward-amount-radius, 8px);
  color: #111111;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  background: #ffffff;
  box-shadow: none;
}

.article-template--mpnews .reward-sheet--mpnews .amount-list button.active {
  border-color: #d72b78;
  color: #d72b78;
  background: #fff4f8;
  box-shadow: inset 0 0 0 2px #d72b78;
}

.custom-amount-button {
  display: block;
  margin: 0 auto 18px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: var(--soft);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.article-template--mpnews .custom-amount-button {
  color: #8d94c7;
}

.custom-amount-button:disabled {
  opacity: 0.55;
}

.reward-sheet__panel .mpnews-reward-note {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.article-template--mpnews .reward-sheet__panel--mpnews .mpnews-reward-note {
  margin: 18px 0 0;
  color: #c6c6c6;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.custom-amount-modal {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: none;
}

.custom-amount-modal.is-open {
  display: block;
}

.custom-amount-modal__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.custom-amount-dialog {
  position: fixed;
  top: 48%;
  left: 50%;
  width: min(360px, calc(100vw - 48px));
  margin: 0;
  padding: 0 18px 18px;
  border: 0;
  border-radius: 5px;
  background: #f7f7f7;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.custom-amount-dialog h3 {
  display: grid;
  min-height: 60px;
  margin: 0 -18px;
  place-items: center;
  border-bottom: 1px solid #e4e4e4;
  color: #111111;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.custom-amount-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #a8a8a8;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.custom-amount-field {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  margin: 20px 0 10px;
  padding: 0 14px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: #ffffff;
}

.custom-amount-field span {
  flex: 0 0 auto;
  color: #111111;
  font-size: 22px;
  font-weight: 400;
}

.custom-amount-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111111;
  font-size: 22px;
  line-height: 1.2;
}

.custom-amount-field input::placeholder {
  color: #b7b7b7;
}

.custom-amount-error {
  min-height: 18px;
  margin: 0 0 8px;
  color: #c92f2f;
  font-size: 13px;
  line-height: 18px;
  text-align: left;
}

.custom-amount-submit {
  display: grid;
  width: 100%;
  min-height: 52px;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: #18bf62;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
}

.custom-amount-submit:disabled {
  opacity: 0.68;
}

.reward-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--reward);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(223, 85, 55, 0.2);
  transition:
    filter 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.reward-button:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(223, 85, 55, 0.24);
}

.reward-button:focus-visible,
.sheet-close:focus-visible,
.amount-list button:focus-visible,
.reward-image-button:focus-visible,
.article-footer__like-button:focus-visible,
.custom-amount-button:focus-visible,
.custom-amount-close:focus-visible,
.custom-amount-submit:focus-visible {
  outline: 3px solid rgba(223, 85, 55, 0.22);
  outline-offset: 3px;
}

.reward-button {
  width: 124px;
}

.reward-sheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 30;
  display: none;
}

.reward-sheet.is-open {
  display: block;
}

.reward-sheet__shade {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.46);
  backdrop-filter: blur(8px);
}

.reward-sheet__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 84vh;
  max-height: 84svh;
  overflow: auto;
  padding: 24px 18px calc(24px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -18px 42px rgba(24, 20, 17, 0.2);
  transform: translateY(0);
  animation: sheetIn 220ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reward-sheet__panel h2 {
  max-width: calc(100% - 44px);
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.reward-sheet__panel h1 {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.reward-sheet__panel p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.sheet-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #56615b;
  font-size: 22px;
  line-height: 1;
}

.platform-list,
.amount-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

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

.platform-list button,
.amount-list button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--reward-amount-radius, 8px);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.platform-list button {
  display: grid;
  gap: 2px;
  padding: 10px;
  text-align: left;
}

.platform-list small {
  color: var(--soft);
  font-weight: 500;
}

.amount-list {
  grid-template-columns: repeat(var(--reward-amount-columns, 4), minmax(0, 1fr));
}

.amount-list--inline {
  grid-template-columns: repeat(var(--reward-amount-columns, 3), minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 18px;
}

.amount-list--inline button {
  min-height: clamp(70px, 18vw, 92px);
  border: 2px solid var(--reward);
  border-radius: var(--reward-amount-radius, 8px);
  color: #101010;
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1;
  background: #fff;
  box-shadow: none;
}

.amount-list--inline button.active {
  border-color: var(--reward);
  color: var(--reward);
  box-shadow: inset 0 0 0 2px var(--reward);
}

.platform-list .active,
.amount-list .active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.amount-list--inline .active {
  border-color: var(--reward);
  color: var(--reward);
  box-shadow: inset 0 0 0 2px var(--reward);
}

.qrcode-box {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px;
  background: #eef3ee;
  border-radius: 8px;
}

.qrcode-box img {
  width: min(240px, 72vw);
  border-radius: 8px;
}

.pay-message {
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #eef4ff;
  color: #22416f;
  font-size: 14px;
}

.pay-message--success {
  background: #ebf8f2;
  color: #116149;
}

.pay-message--error {
  background: #fff0ed;
  color: #9f2d20;
}

.payment-template {
  min-height: 100svh;
  background: #f4f6f3;
}

.payment-shell {
  min-height: 100svh;
}

.payment-template .reward-sheet--standalone {
  position: static;
  display: block;
  min-height: 100svh;
}

.payment-template .reward-sheet--standalone .reward-sheet__panel {
  position: relative;
  inset: auto;
  width: min(100%, 430px);
  min-height: 100svh;
  max-height: none;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  animation: none;
}

.empty-state {
  padding: 54px 12px;
  text-align: center;
  color: var(--muted);
}

.empty-state--page {
  min-height: 70svh;
  display: grid;
  align-content: center;
  justify-items: center;
}

.empty-state h1,
.empty-state h2 {
  margin: 0 0 8px;
  color: var(--ink);
}

.muted {
  color: var(--soft);
}

@keyframes sheetIn {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .reward-sheet__panel {
    right: calc((100vw - 540px) / 2);
    left: calc((100vw - 540px) / 2);
    bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 8px;
  }

  .article-template--mpnews .reward-sheet__panel--mpnews {
    right: calc((100vw - 430px) / 2);
    left: calc((100vw - 430px) / 2);
    max-height: min(760px, 88svh);
    border: 0;
    border-radius: 16px;
  }

  .payment-template .reward-sheet--standalone {
    display: grid;
    align-items: center;
    padding: 24px 0;
  }

  .payment-template .reward-sheet--standalone .reward-sheet__panel {
    right: auto;
    bottom: auto;
    left: auto;
    min-height: auto;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 8px;
  }
}

@media (max-width: 620px) {
  .home-hero {
    min-height: 310px;
    padding: 36px 18px 44px;
  }

  .feed {
    margin-top: -18px;
    padding-inline: 12px;
  }

  .feed-item {
    grid-template-columns: 98px 1fr;
    gap: 13px;
    min-height: 112px;
    padding: 12px;
  }

  .feed-item img,
  .feed-item__placeholder {
    width: 98px;
    height: 86px;
  }

  .feed-item p {
    margin-top: 7px;
    -webkit-line-clamp: 1;
  }

  .article-shell {
    padding: 28px 18px 64px;
  }

  .article__header {
    padding-bottom: 0;
  }

  .article__header h1 {
    font-size: 30px;
    line-height: 1.42;
  }

  .article-template--mpnews .article__header h1 {
    font-size: 27px;
    line-height: 1.25;
  }

  .article-meta {
    font-size: 16px;
    margin-top: 12px;
  }

  .article-summary {
    padding-left: 14px;
  }

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

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

  .article-template--romance .amount-list--inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-template--mpnews .reward-sheet__panel--mpnews h1,
  .article-template--mpnews .reward-sheet__panel--mpnews h2 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .article-template--mpnews .reward-sheet__panel--mpnews p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.35;
  }

  .article-template--mpnews .mpnews-reward-hero {
    height: 112px;
    border-bottom-right-radius: 74px;
    border-bottom-left-radius: 74px;
  }

  .article-template--mpnews .mpnews-reward-avatar {
    width: 92px;
    height: 92px;
    margin: -46px auto 18px;
  }

  .article-template--mpnews .reward-sheet--mpnews .amount-list {
    gap: 10px 12px;
    margin-bottom: 28px;
    margin-right: 0;
    margin-left: 0;
  }

  .article-template--mpnews .reward-sheet--mpnews .amount-list button {
    min-height: 62px;
    font-size: 30px;
  }

  .article-template--mpnews .reward-sheet__panel--mpnews .mpnews-reward-note {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.45;
    white-space: nowrap;
  }

  .article-template--mpnews .custom-amount-button {
    font-size: 15px;
  }
}


/* ===== 2026-09-22 老年人友好 / 小程序式视频前台 ===== */
.elder-home-page,
.article-template { background:#f5f6f8; }
.elder-home-hero { max-width:760px; margin:0 auto; padding:30px 24px 22px; background:#fff; }
.elder-brand { display:flex; align-items:center; gap:14px; }
.elder-brand__rainbow { font-size:48px; line-height:1; }
.elder-brand h1 { margin:0; font-size:40px; line-height:1.12; font-weight:900; color:#171717; }
.elder-brand p { margin:10px 0 0; font-size:22px; line-height:1.45; color:#7b7f86; }
.elder-feed { width:min(100%,760px); margin:0 auto; padding:26px 20px 70px; }
.elder-video-card { margin:0 0 28px; overflow:hidden; border-radius:28px; background:#fff; box-shadow:0 8px 24px rgba(22,33,55,.08); }
.elder-video-card__media { position:relative; display:block; width:100%; aspect-ratio:16/9; overflow:hidden; background:linear-gradient(135deg,#ff8f9e,#ffd2c8); }
.elder-video-card:nth-child(2n) .elder-video-card__media { background:linear-gradient(135deg,#8bb9ff,#bcecff); }
.elder-video-card:nth-child(3n) .elder-video-card__media { background:linear-gradient(135deg,#f3a4dc,#bfc7ff); }
.elder-video-card__media img { width:100%; height:100%; object-fit:cover; display:block; }
.elder-video-card__placeholder { width:100%; height:100%; display:grid; place-items:center; }
.elder-video-card__placeholder span { font-size:70px; color:#ff355f; }
.elder-play { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); display:grid; place-items:center; width:92px; height:92px; border-radius:50%; background:rgba(255,255,255,.93); color:#ff355f; font-size:42px; padding-left:7px; box-shadow:0 8px 24px rgba(0,0,0,.12); }
.elder-video-card__content { padding:26px 28px 28px; }
.elder-video-card h2 { margin:0; font-size:32px; line-height:1.35; font-weight:900; color:#1a1a1a; }
.elder-video-card__meta { margin:14px 0 0; font-size:22px; line-height:1.5; color:#8a8d93; }
.elder-video-card__summary { margin:16px 0 0; font-size:22px; line-height:1.6; color:#555b64; }
.elder-video-card__actions { display:grid; grid-template-columns:1fr; gap:12px; margin-top:24px; }
.elder-video-card__cta { display:flex; align-items:center; justify-content:center; min-height:66px; margin-top:0; border-radius:18px; background:#fff0f3; color:#ff315b; font-size:26px; font-weight:900; }
.elder-video-card__reward { display:flex; align-items:center; justify-content:center; min-height:70px; border-radius:18px; background:#ff315b; color:#fff; font-size:28px; font-weight:900; box-shadow:0 8px 18px rgba(255,49,91,.22); }
.elder-empty { padding:36px 28px; border-radius:24px; background:#fff; text-align:center; }
.elder-empty h2 { font-size:30px; }
.elder-empty p { font-size:21px; line-height:1.6; color:#777; }

.elder-detail-shell { width:min(100%,760px); margin:0 auto; padding:0 0 120px; background:#fff; min-height:100vh; }
.elder-topbar { position:sticky; top:0; z-index:25; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; min-height:68px; padding:0 18px; border-bottom:1px solid #eee; background:rgba(255,255,255,.96); backdrop-filter:blur(10px); }
.elder-topbar a,.elder-topbar button { min-height:50px; display:inline-flex; align-items:center; border:0; background:transparent; color:#171717; font-size:21px; font-weight:800; }
.elder-topbar__home { justify-self:start; }
.elder-topbar__share { justify-self:end; cursor:pointer; gap:8px; color:#16884a; }
.wechat-share-icon { display:inline-flex; width:38px; height:38px; flex:0 0 auto; align-items:center; justify-content:center; }
.wechat-share-icon svg { display:block; width:100%; height:100%; }
.wechat-share-icon--small { width:28px; height:28px; }
.elder-topbar strong { font-size:22px; }
.elder-article { padding:0 22px 36px; }
.elder-video-body { margin:0 -22px 0; }
.elder-video-body > figure:first-child,.elder-video-body > .tencent-video-player:first-child { margin-top:0; }
.elder-video-body figure { margin:0 0 18px; }
.elder-video-body .tencent-video-player,.elder-video-body video,.elder-video-body iframe { border-radius:0; }
.elder-article .article-header { padding:26px 0 0; }
.elder-article .article-header h1 { margin:0; font-size:36px; line-height:1.38; font-weight:900; color:#171717; }
.elder-article .article-meta { margin-top:18px; font-size:20px; color:#858991; gap:10px 14px; }
.elder-article .article-reward--image { margin-top:8px; }
.elder-article .reward-image-button { width:58%; max-width:330px; margin:6px auto 8px; }
.elder-article .article-footer { margin:6px 0 0; padding:8px 0; border-top:1px solid #f0f0f0; font-size:20px; }
.elder-article .article-footer__like-button { min-height:48px; font-size:20px; }
.elder-related { margin-top:4px; padding-top:10px; border-top:4px solid #f5f6f8; }
.elder-related__head { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:10px; }
.elder-related__head h2 { margin:0; font-size:30px; font-weight:900; }
.elder-related__head a { font-size:20px; font-weight:800; color:#ff315b; }
.elder-related__list { display:grid; gap:18px; }
.elder-related-card { display:grid; grid-template-columns:180px minmax(0,1fr); gap:18px; align-items:center; padding:14px; border-radius:20px; background:#f7f8fa; color:#171717; }
.elder-related-card__media { position:relative; aspect-ratio:16/9; overflow:hidden; border-radius:14px; background:linear-gradient(135deg,#ffd2dc,#dcecff); display:grid; place-items:center; }
.elder-related-card__media img { width:100%; height:100%; object-fit:cover; }
.elder-related-card__media i { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:48px; height:48px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.92); color:#ff315b; font-style:normal; font-size:22px; padding-left:3px; }
.elder-related-card strong { display:-webkit-box; overflow:hidden; -webkit-line-clamp:2; -webkit-box-orient:vertical; font-size:23px; line-height:1.4; }
.elder-related-card span { display:block; margin-top:8px; font-size:19px; color:#8a8d93; }
.elder-actionbar { position:fixed; left:50%; bottom:0; transform:translateX(-50%); z-index:40; display:grid; grid-template-columns:repeat(3,1fr); width:min(100%,760px); padding:10px 12px calc(10px + env(safe-area-inset-bottom)); gap:10px; border-top:1px solid #e8e8e8; background:rgba(255,255,255,.98); box-shadow:0 -8px 26px rgba(20,30,50,.08); }
.elder-actionbar__button { min-height:64px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; border:0; border-radius:16px; background:#f1f3f5; color:#292929; font-size:25px; font-weight:900; cursor:pointer; }
.elder-actionbar__button span { font-size:18px; line-height:1.1; }
.elder-actionbar__button--reward { background:#ff315b; color:#fff; }
.elder-actionbar__button--share { background:#eaf8ef; color:#147a3d; }
.elder-actionbar__button--share .wechat-share-icon { margin-bottom:2px; }

@media (max-width:620px) {
  .elder-home-hero { padding:24px 18px 18px; }
  .elder-brand__rainbow { font-size:40px; }
  .elder-brand h1 { font-size:34px; }
  .elder-brand p { font-size:20px; }
  .elder-feed { padding:20px 14px 62px; }
  .elder-video-card { border-radius:24px; margin-bottom:22px; }
  .elder-video-card__content { padding:22px 20px 24px; }
  .elder-video-card h2 { font-size:29px; }
  .elder-video-card__meta,.elder-video-card__summary { font-size:20px; }
  .elder-video-card__cta { min-height:62px; font-size:24px; }
  .elder-video-card__reward { min-height:64px; font-size:25px; }
  .elder-play { width:78px; height:78px; font-size:36px; }
  .elder-topbar { min-height:62px; padding:0 12px; }
  .elder-topbar a,.elder-topbar button { font-size:18px; }
  .elder-topbar strong { font-size:20px; }
  .elder-article { padding:0 16px 30px; }
  .elder-video-body { margin-left:-16px; margin-right:-16px; }
  .elder-article .article-header h1 { font-size:32px; line-height:1.42; }
  .elder-article .article-meta { font-size:19px; }
  .elder-article .reward-image-button { width:62%; }
  .elder-related-card { grid-template-columns:145px minmax(0,1fr); gap:13px; padding:11px; }
  .elder-related-card strong { font-size:21px; }
  .elder-related-card span { font-size:17px; }
  .elder-actionbar__button { min-height:60px; }
  .elder-actionbar__button span { font-size:17px; }
}
