* {
  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:20px 20px 16px; background:#fff; }
.elder-brand { display:flex; align-items:center; gap:14px; }
.elder-brand__rainbow { font-size:40px; line-height:1; }
.elder-brand h1 { margin:0; font-size:34px; line-height:1.12; font-weight:900; color:#171717; }
.elder-brand p { margin:7px 0 0; font-size:19px; line-height:1.4; color:#7b7f86; }
.elder-feed { width:min(100%,760px); margin:0 auto; padding:18px 16px 64px; }
.elder-video-card { margin:0 0 20px; overflow:hidden; border-radius:22px; background:#fff; box-shadow:0 6px 18px rgba(22,33,55,.07); }
.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:18px 20px 20px; }
.elder-video-card h2 { margin:0; font-size:26px; line-height:1.38; font-weight:900; color:#1a1a1a; }
.elder-video-card__meta { margin:9px 0 0; font-size:18px; line-height:1.45; color:#8a8d93; }
.elder-video-card__summary { margin:10px 0 0; font-size:18px; line-height:1.5; color:#555b64; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.elder-video-card__actions { display:grid; grid-template-columns:1fr; gap:9px; margin-top:14px; }
.elder-video-card__cta { display:flex; align-items:center; justify-content:center; min-height:54px; margin-top:0; border-radius:15px; background:#fff0f3; color:#ff315b; font-size:22px; font-weight:900; }
.elder-video-card__reward { display:flex; align-items:center; justify-content:center; min-height:56px; border-radius:15px; background:#ff315b; color:#fff; font-size:23px; font-weight:900; box-shadow:0 6px 14px rgba(255,49,91,.18); }
.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 96px; 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 28px; }
.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:16px 0 0; }
.elder-article .article-header h1 { margin:0; font-size:29px; line-height:1.34; font-weight:900; color:#171717; }
.elder-article .article-meta { margin-top:10px; font-size:18px; color:#858991; gap:8px 12px; }
.elder-article .article-reward--image { margin-top:2px; }
.elder-article .reward-image-button { width:42%; max-width:230px; margin:2px auto 4px; }
.elder-article .article-footer { margin:2px 0 0; padding:5px 0; border-top:1px solid #f0f0f0; font-size:18px; }
.elder-article .article-footer__like-button { min-height:48px; font-size:20px; }
.elder-related { margin-top:0; padding-top:6px; padding-bottom:10px; border-top:3px solid #f5f6f8; scroll-margin-top:70px; }
.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:25px; font-weight:900; }
.elder-related__head a { font-size:17px; font-weight:800; color:#ff315b; }
.elder-related__list { display:grid; gap:12px; }
.elder-related-card { display:grid; grid-template-columns:150px minmax(0,1fr); gap:14px; align-items:center; padding:10px; border-radius:16px; 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:20px; line-height:1.35; }
.elder-related-card span { display:block; margin-top:5px; font-size:16px; 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:54px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1px; border:0; border-radius:14px; background:#f1f3f5; color:#292929; font-size:21px; font-weight:900; cursor:pointer; }
.elder-actionbar__button span { font-size:16px; line-height:1.05; }
.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:18px 14px 14px; }
  .elder-brand__rainbow { font-size:34px; }
  .elder-brand h1 { font-size:30px; }
  .elder-brand p { font-size:17px; }
  .elder-feed { padding:14px 10px 56px; }
  .elder-video-card { border-radius:18px; margin-bottom:16px; }
  .elder-video-card__content { padding:14px 14px 16px; }
  .elder-video-card h2 { font-size:23px; line-height:1.38; }
  .elder-video-card__meta,.elder-video-card__summary { font-size:16px; }
  .elder-video-card__cta { min-height:48px; font-size:19px; }
  .elder-video-card__reward { min-height:50px; font-size:20px; }
  .elder-play { width:66px; height:66px; font-size:30px; }
  .elder-topbar { min-height:56px; padding:0 10px; }
  .elder-topbar a,.elder-topbar button { font-size:17px; }
  .elder-topbar strong { font-size:18px; }
  .elder-article { padding:0 14px 18px; }
  .elder-video-body { margin-left:-14px; margin-right:-14px; }
  .elder-article .article-header h1 { font-size:25px; line-height:1.35; }
  .elder-article .article-meta { font-size:16px; margin-top:8px; }
  .elder-article .reward-image-button { width:38%; max-width:190px; }
  .elder-related-card { grid-template-columns:120px minmax(0,1fr); gap:10px; padding:8px; }
  .elder-related-card strong { font-size:18px; }
  .elder-related-card span { font-size:15px; }
  .elder-actionbar__button { min-height:50px; }
  .elder-actionbar__button span { font-size:15px; }
}


/* 微信内点击“微信分享”时给出明确引导；网页无法直接唤起微信的转发面板。 */
.wechat-share-guide { position:fixed; inset:0; z-index:99999; background:rgba(0,0,0,.66); display:flex; align-items:flex-start; justify-content:flex-end; padding:70px 18px 20px; }
.wechat-share-guide__arrow { position:absolute; right:20px; top:8px; color:#fff; font-size:58px; font-weight:900; line-height:1; transform:rotate(-5deg); }
.wechat-share-guide__card { width:min(88vw,420px); margin-top:20px; padding:24px 22px; border-radius:22px; background:#fff; color:#181818; text-align:center; box-shadow:0 18px 60px rgba(0,0,0,.28); }
.wechat-share-guide__card strong { display:block; font-size:30px; color:#16884a; }
.wechat-share-guide__card p { margin:14px 0 18px; font-size:23px; line-height:1.55; font-weight:700; }
.wechat-share-guide__card button { width:100%; min-height:58px; border:0; border-radius:15px; background:#07c160; color:#fff; font-size:23px; font-weight:900; }

/* 2026-09-22 手机端二次紧凑优化：标题更紧凑、赞赏图适度放大、底部操作栏更矮但文字更大 */
@media (max-width:620px) {
  /* 首页卡片：保持老年人可读，但避免一张卡占满一屏 */
  .elder-feed { padding-left:8px; padding-right:8px; }
  .elder-video-card__content { padding:12px 12px 14px; }
  .elder-video-card h2 { font-size:21px; line-height:1.34; }
  .elder-video-card__meta { margin-top:6px; font-size:16px; }
  .elder-video-card__summary { margin-top:7px; font-size:16px; line-height:1.42; }
  .elder-video-card__actions { gap:7px; margin-top:10px; }
  .elder-video-card__cta { min-height:44px; font-size:18px; }
  .elder-video-card__reward { min-height:46px; font-size:19px; }

  /* 详情标题：减少字号、行高和上下留白 */
  .elder-article { padding-left:10px; padding-right:10px; padding-bottom:12px; }
  .elder-video-body { margin-left:-10px; margin-right:-10px; }
  .elder-article .article-header { padding-top:10px; }
  .elder-article .article-header h1 { font-size:22px; line-height:1.30; letter-spacing:0; }
  .elder-article .article-meta { margin-top:5px; font-size:15px; line-height:1.25; }

  /* “喜欢作者”图片：比上一版大，但不恢复到最初占半屏的大小 */
  .elder-article .article-reward--image { margin-top:0; }
  .elder-article .reward-image-button { width:58%; max-width:270px; margin:0 auto 2px; }
  .elder-article .reward-image-button img { width:100%; height:auto; display:block; }

  /* 阅读/点赞行进一步压缩 */
  .elder-article .article-footer { margin:0; padding:3px 0; font-size:16px; }
  .elder-article .article-footer__like-button { min-height:38px; font-size:18px; }

  /* 更多视频尽量提前露出 */
  .elder-related { margin-top:0; padding-top:4px; }
  .elder-related__head { margin-bottom:7px; }
  .elder-related__head h2 { font-size:22px; }

  /* 底栏：横向图标+文字，栏更矮，文字反而更大 */
  .elder-detail-shell { padding-bottom:64px; }
  .elder-actionbar {
    padding:5px 8px calc(5px + env(safe-area-inset-bottom));
    gap:6px;
  }
  .elder-actionbar__button {
    min-height:44px;
    flex-direction:row;
    gap:5px;
    border-radius:12px;
    font-size:20px;
    line-height:1;
  }
  .elder-actionbar__button span { font-size:18px; line-height:1; }
  .elder-actionbar__button .wechat-share-icon { width:25px; height:25px; margin:0; }
}

/* 2026-09-22 手机端第三次微调：再上提“更多视频”，首屏露出下一条视频封面 */
@media (max-width:620px) {
  /* 主视频与标题之间再收紧，减少无效留白 */
  .elder-video-body figure { margin-bottom:6px; }
  .elder-article .article-header { padding-top:4px; }
  .elder-article .article-header h1 { font-size:21.5px; line-height:1.26; }
  .elder-article .article-meta { margin-top:3px; }

  /* 支付入口保持醒目，只轻微收一点高度，为下一条视频腾位置 */
  .elder-article .reward-image-button { width:56%; max-width:258px; margin-bottom:0; }

  /* 阅读/点赞行压紧 */
  .elder-article .article-footer { padding:1px 0; }
  .elder-article .article-footer__like-button { min-height:32px; }

  /* “更多视频”再往上，标题下面立刻出现第一条视频画面 */
  .elder-related { padding-top:1px; padding-bottom:6px; }
  .elder-related__head { margin-bottom:3px; }
  .elder-related__head h2 { font-size:21px; line-height:1.15; }
  .elder-related__head a { font-size:16px; }
  .elder-related__list { gap:8px; }
  .elder-related-card { grid-template-columns:112px minmax(0,1fr); gap:9px; padding:6px; border-radius:13px; }
  .elder-related-card__media { border-radius:11px; }
  .elder-related-card strong { font-size:17px; line-height:1.28; }
  .elder-related-card span { margin-top:3px; font-size:14px; }

  /* 底部栏再薄一点，但字号不缩小 */
  .elder-detail-shell { padding-bottom:58px; }
  .elder-actionbar { padding:3px 7px calc(3px + env(safe-area-inset-bottom)); gap:5px; }
  .elder-actionbar__button { min-height:42px; }
}

/* 2026-09-23：去掉主视频与文章标题之间的无效大留白。只影响详情页间距，不改支付/域名逻辑。 */
@media (max-width:620px) {
  .elder-video-body { margin-bottom:0 !important; }
  .elder-video-body > *:last-child { margin-bottom:0 !important; }
  .elder-video-body figure:last-child,
  .elder-video-body .tencent-video-player:last-child,
  .elder-video-body video:last-child,
  .elder-video-body iframe:last-child { margin-bottom:0 !important; }
  .elder-article .article-header { margin-top:0 !important; padding-top:2px !important; }
}
