:root {
  --red: #d60000;
  --red-dark: #b50000;
  --ink: #171717;
  --muted: #6b7280;
  --line: #e5e7eb;
  --panel: #ffffff;
  --soft: #f5f5f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  display: block;
  width: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
}

.topbar-inner,
.header-inner,
.nav-inner,
.breaking-inner {
  display: flex;
  align-items: center;
}

.topbar-inner {
  height: 34px;
  min-height: 34px;
  justify-content: space-between;
  gap: 20px;
}

.meta,
.links,
.ticker,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.links a {
  color: #374151;
}

.site-header {
  background: #fff;
}

.header-inner {
  height: 126px;
  min-height: 126px;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: block;
  width: 360px;
  color: var(--red);
  line-height: 1;
}

.brand img {
  display: block;
  width: 360px;
  height: 104px;
  object-fit: contain;
  object-position: left center;
}

.slogan {
  flex: 1;
  display: grid;
  gap: 6px;
  min-width: 220px;
  font-size: 14px;
}

.slogan span,
.story-meta,
.top-list span,
.news-box p,
.cta-row p,
.footer p,
.copyright {
  color: var(--muted);
}

.header-actions a,
.cta-row a,
.cta-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 700;
}

.site-search {
  display: grid;
  grid-template-columns: minmax(150px, 230px) auto;
  gap: 8px;
  align-items: center;
}

.site-search input {
  min-width: 0;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
}

.site-search button {
  height: 42px;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
}

.nav-search {
  flex: 0 0 auto;
  grid-template-columns: 180px auto;
  margin-left: auto;
}

.nav-search input {
  height: 34px;
  border-color: rgba(255, 255, 255, 0.55);
  background: #fff;
}

.nav-search button {
  height: 34px;
  border-color: #fff;
  background: #fff;
  color: var(--red);
  padding: 0 12px;
}

.header-actions .primary,
.cta-row button {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

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

.nav-inner {
  height: 48px;
  min-height: 48px;
  gap: 0;
  overflow-x: auto;
}

.nav a {
  flex: 0 0 auto;
  display: inline-flex;
  height: 48px;
  align-items: center;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover {
  background: var(--red-dark);
}

.nav-arrow {
  margin-left: auto;
  font-size: 22px;
  line-height: 1;
}

.breaking {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.breaking-inner {
  height: 48px;
  min-height: 48px;
  gap: 12px;
  overflow: hidden;
}

.pulse-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.45);
  animation: pulse-dot 1s ease-out infinite;
}

.ticker {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
}

.ticker-track {
  display: inline-flex;
  min-width: max-content;
  animation: ticker-scroll 88s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 18px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
}

@keyframes pulse-dot {
  0% {
    opacity: 1;
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.45);
  }
  70% {
    opacity: 0.52;
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(214, 0, 0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(214, 0, 0, 0);
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.lead-layout {
  display: grid;
  grid-template-columns: 690px 472px;
  gap: 18px;
  justify-content: center;
  align-items: start;
  padding: 22px 0 20px;
}

.hero-card {
  position: relative;
  width: 690px;
  height: 410px;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}

.hero-link {
  position: relative;
  display: block;
  width: 100%;
  height: 410px;
  min-height: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-link img {
  height: 100%;
  min-height: 0;
  filter: brightness(1.08) contrast(1.08) saturate(1.08);
  transform: translateZ(0);
}

.hero-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 26px;
  color: #fff;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-overlay h1 {
  max-width: 620px;
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-overlay p {
  display: none;
}

.hero-dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 7px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.hero-dots span.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--red);
}

.top-list {
  width: 472px;
  height: 410px;
  display: block;
  overflow: hidden;
}

.top-list-track {
  display: grid;
  gap: 10px;
  animation: top-list-scroll 34s linear infinite;
}

.top-list:hover .top-list-track {
  animation-play-state: paused;
}

.top-list article {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  position: relative;
  height: 74px;
  min-height: 74px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 10px 0 0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.top-list b {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--red);
  color: #fff;
}

.top-list img {
  height: 74px;
  border-radius: 5px;
  filter: brightness(1.05) contrast(1.05) saturate(1.04);
}

.top-list h2 {
  display: -webkit-box;
  margin: 7px 0 6px;
  font-size: 16px;
  line-height: 1.38;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.top-list span {
  font-size: 13px;
}

.content-layout {
  display: grid;
  grid-template-columns: 830px 320px;
  justify-content: center;
  gap: 20px;
  padding-bottom: 28px;
}

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

.news-box,
.rank,
.topics,
.cta-row article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.news-box {
  height: 344px;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
}

.news-box header,
.rank header,
.topics header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.news-box h2,
.rank h2,
.topics h2,
.cta-row h2 {
  margin: 0;
  border-left: 4px solid var(--red);
  padding-left: 10px;
  font-size: 18px;
}

.news-box header a,
.rank header a,
.topics header a {
  color: var(--muted);
  font-size: 13px;
}

.news-box img {
  height: 104px;
  border-radius: 5px;
  border: 0;
  filter: brightness(1.06) contrast(1.06) saturate(1.05);
}

.news-box h3 {
  display: -webkit-box;
  min-height: 40px;
  margin: 8px 0 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-box a {
  outline: none;
}

.news-box a:focus,
.news-box a:focus-visible {
  outline: none;
  box-shadow: none;
}

.section-lead {
  display: block;
}

.section-news-list {
  display: grid;
  gap: 3px;
  margin: 8px 0 0;
  padding: 8px 0 0;
  border-top: 1px solid #f0f0f0;
  list-style: none;
}

.section-news-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  height: 21px;
  padding-left: 10px;
  font-size: 13px;
  line-height: 21px;
}

.section-news-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  transform: translateY(-50%);
}

.section-news-list a {
  min-width: 0;
  overflow: hidden;
  color: #374151;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-news-list time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.rank,
.topics {
  padding: 16px;
}


@keyframes top-list-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}


.topics {
  display: grid;
  gap: 10px;
}

.topics header {
  margin-bottom: 2px;
}

.topics a {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 999px;
  background: #fff1f2;
  color: var(--red-dark);
  font-weight: 800;
}

.topics a:nth-of-type(even) {
  background: #eef6ff;
  color: #075985;
}

.topics span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
}

.cta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 32px;
}

.cta-row article {
  min-height: 132px;
  padding: 20px;
}

.cta-row h2 {
  font-size: 20px;
}

.cta-row form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 16px;
}

.cta-row input {
  min-width: 0;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 12px;
  font: inherit;
}

.qr {
  display: grid;
  width: 72px;
  height: 72px;
  margin-top: 10px;
  place-items: center;
  border: 6px solid #111;
  font-weight: 900;
}

.article-neighbors {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.article-neighbor {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #111827;
}

.article-neighbor:nth-child(2) {
  text-align: right;
}

.article-neighbor span {
  color: var(--muted);
  font-size: 13px;
}

.article-neighbor strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-neighbor:hover strong {
  color: var(--red);
}

.article-neighbor.is-empty {
  min-height: 44px;
}

.related-news {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  overflow: hidden;
}

.related-news h2 {
  margin: 0 0 18px;
}

.related-carousel {
  overflow: hidden;
}

.related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 250px;
  grid-template-rows: repeat(2, auto);
  width: max-content;
  gap: 14px;
  animation: related-slide 48s linear infinite;
}

.related-carousel:hover .related-track {
  animation-play-state: paused;
}

@keyframes related-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.related-item {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: #fff;
}

.related-item img {
  height: 120px;
  border-radius: 4px;
}

.related-item span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.related-item strong {
  line-height: 1.45;
}

.listing-shell {
  background: var(--soft);
  padding: 34px 0;
}

.listing-page {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 28px;
}

.listing-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.listing-header h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 38px);
}

.listing-header p {
  margin: 0;
  color: var(--muted);
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-box input {
  min-width: 0;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 12px;
  font: inherit;
}

.search-box button {
  height: 42px;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0;
}

.archive-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.archive-card a {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.archive-card img {
  height: 132px;
  border-radius: 4px;
}

.archive-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.archive-card h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.42;
}

.archive-card p {
  display: -webkit-box;
  min-height: 58px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.archive-card time {
  color: #6b7280;
  font-size: 12px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.page-link {
  display: inline-flex;
  min-width: 40px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 12px;
  font-weight: 800;
}

.page-link.is-disabled {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.empty-list {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 36px;
  color: var(--muted);
  text-align: center;
}

.empty-state,
.article-loading {
  padding: 36px;
  color: var(--muted);
}

.footer {
  background: #20262b;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 38px;
  padding: 34px 0;
}

.footer h2,
.footer h3,
.footer p {
  margin-top: 0;
}

.footer h2 {
  margin-bottom: 2px;
  font-size: 32px;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: #d1d5db;
}

.footer p,
.copyright {
  color: #d1d5db;
  line-height: 1.7;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 0 22px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .header-inner,
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .lead-layout,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-link,
  .top-list {
    width: 100%;
  }

  .top-list {
    height: auto;
  }

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

  .listing-header {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .links,
  .header-actions,
  .meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-actions a {
    flex: 1 1 140px;
  }

  .site-search {
    width: 100%;
    grid-template-columns: 1fr auto;
  }

  .nav-search {
    order: 2;
    margin: 0 0 8px;
  }

  .brand,
  .brand img {
    width: 300px;
  }

  .brand img {
    height: 88px;
  }

  .nav a {
    padding: 15px 16px;
  }

  .hero-card,
  .hero-link,
  .hero-link img {
    width: 100%;
    height: 320px;
    min-height: 320px;
  }

  .hero-overlay {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .top-list article,
  .sections-grid,
  .listing-grid,
  .sidebar,
  .cta-row,
  .footer-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-neighbors {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-neighbor:nth-child(2) {
    text-align: left;
  }

  .related-item {
    width: 220px;
  }

  .related-track {
    grid-auto-columns: 220px;
  }

  .top-list article {
    grid-template-columns: 96px 1fr;
  }

  .top-list img {
    height: 74px;
  }

  .cta-row form {
    grid-template-columns: 1fr;
  }

  .listing-page {
    padding: 18px;
  }

  .search-box {
    grid-template-columns: 1fr;
  }
}


.meta span {
  white-space: nowrap;
}

.breaking-inner {
  justify-content: flex-start;
}

.ticker {
  flex: 1;
}

.news-box img {
  background: #f8fafc;
}

.section-lead img {
  object-position: center;
}

.rank {
  height: auto;
  overflow: visible;
}

.rank header {
  margin-bottom: 12px;
}

.rank-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
  font-size: 13px;
}

.rank-switch::before {
  content: "↻";
  font-size: 14px;
}

.rank ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  color: #374151;
  font-size: 14px;
  line-height: 1.45;
}

.rank li b {
  display: grid;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  place-items: center;
  border-radius: 4px;
  background: #f59e0b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.rank li:nth-child(2) b {
  background: #f97316;
}

.rank li:nth-child(3) b {
  background: #fb7185;
}

.rank li a {
  min-width: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.rank-heat {
  color: #9ca3af;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .lead-layout,
  .content-layout,
  .sections-grid,
  .cta-row {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-link,
  .top-list,
  .content-layout,
  .lead-layout {
    width: 100%;
  }

  .hero-card,
  .hero-link {
    height: auto;
    min-height: 340px;
  }
}


/* v28: 24小时热榜展示 10 条，栏目缺图封面更像新闻图 */
.news-box img,
.archive-card img,
.related-item img,
.article-image {
  background: #f3f4f6;
}

.rank {
  height: auto;
  min-height: 318px;
  padding: 14px 16px 16px;
}

.rank header {
  margin-bottom: 10px;
}

.rank h2 {
  font-size: 18px;
}

.rank ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: none !important;
}

.rank li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 8px;
  min-height: 23px;
  color: #374151;
  font-size: 13px;
  line-height: 1.25;
}

.rank li b {
  display: grid;
  width: 22px;
  height: 22px;
  margin: 0;
  place-items: center;
  border-radius: 5px;
  background: #9ca3af;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.rank li:nth-child(1) b { background: #f59e0b; }
.rank li:nth-child(2) b { background: #f97316; }
.rank li:nth-child(3) b { background: #fb7185; }

.rank li a {
  min-width: 0;
  display: block;
  overflow: hidden;
  color: #111827;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-heat {
  color: #9ca3af;
  font-size: 12px;
  text-align: right;
  white-space: nowrap;
}

/* =========================================================
   唐人日报文章详情页最终统一规则
   说明：
   - 只保留这一套文章页尺寸规则
   - 没有封面时不显示图片区域，正文自动前置
   - 图片保持原始比例，不拉伸、不强制裁切
   - 顶部栏目导航不吸附、不覆盖正文
   ========================================================= */

.nav,
.site-nav,
.main-nav {
  position: static;
  top: auto;
  z-index: auto;
}

.article-shell {
  background: var(--soft);
  padding: 28px 0 64px;
}

.article-page {
  width: min(calc(100% - 32px), 1060px);
  max-width: 1060px;
  margin: 0 auto;
  padding: 34px 40px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 800;
}

.article-header {
  width: min(100%, 920px);
  margin: 0 auto;
}

.article-header .tag {
  display: inline-flex;
  margin-bottom: 14px;
}

.article-header h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 2.7vw, 40px);
  line-height: 1.26;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.article-header .story-meta {
  margin-bottom: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
}

/* 真实封面：保持原始比例，只限制最大尺寸 */
.article-image {
  display: block;
  width: auto;
  max-width: min(100%, 880px);
  height: auto;
  max-height: 560px;
  margin: 24px auto 30px;
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
  object-position: center;
}

/* 无图或失效图时彻底移除图片占位，正文自动上移 */
.article-image[hidden],
.article-page.has-no-image .article-image,
.article-page.image-failed .article-image {
  display: none !important;
}

.article-page.has-no-image .article-header,
.article-page.image-failed .article-header {
  margin-bottom: 24px;
}

.article-body {
  display: block;
  width: min(100%, 820px);
  margin: 0 auto;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.9;
}

.article-body p {
  margin: 0 0 1.35em;
  overflow-wrap: anywhere;
}

.article-body img,
.article-body video,
.article-body iframe {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 620px;
  margin: 24px auto;
  object-fit: contain;
}

.article-neighbors,
.related-news {
  width: min(100%, 820px);
  margin-left: auto;
  margin-right: auto;
}

/* 失效图片不保留灰条、破图图标或 alt 文本 */
img[data-image-failed="true"] {
  display: none !important;
}

@media (max-width: 900px) {
  .article-page {
    width: min(calc(100% - 24px), 1060px);
    padding: 28px 26px 46px;
  }

  .article-header h1 {
    font-size: clamp(30px, 5vw, 38px);
  }

  .article-image {
    max-height: 500px;
  }
}

@media (max-width: 640px) {
  .article-shell {
    padding: 14px 0 36px;
  }

  .article-page {
    width: calc(100% - 14px);
    padding: 22px 16px 34px;
    border-radius: 5px;
  }

  .back-link {
    margin-bottom: 16px;
  }

  .article-header h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .article-header .story-meta {
    font-size: 14px;
  }

  .article-image {
    max-width: 100%;
    max-height: 420px;
    margin: 18px auto 24px;
  }

  .article-body {
    font-size: 17px;
    line-height: 1.82;
  }

  .article-body img,
  .article-body video,
  .article-body iframe {
    max-height: 460px;
    margin: 18px auto;
  }
}

/* =========================================================
   v29 手机、安卓和平板最终响应式优化
   ========================================================= */
html {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

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

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mobile-menu-toggle,
.mobile-search-toggle,
.mobile-nav-head,
.mobile-nav-backdrop,
.mobile-utility-links {
  display: none;
}

.nav-inner,
.meta {
  scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar,
.meta::-webkit-scrollbar {
  display: none;
}

:focus-visible {
  outline: 3px solid rgba(214, 0, 0, 0.42);
  outline-offset: 3px;
}

.ticker:active .ticker-track,
.top-list:active .top-list-track,
.related-carousel:active .related-track {
  animation-play-state: paused;
}

.article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;
}

.article-body pre,
.article-body code,
.footer p,
.footer a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 安卓平板与 iPad：保留双栏，不直接放大手机版 */
@media (min-width: 768px) and (max-width: 1099px) {
  .container {
    width: min(100% - 32px, 1024px);
  }

  .topbar-inner {
    height: 38px;
    min-height: 38px;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 14px;
  }

  .meta,
  .links {
    flex-wrap: nowrap;
    gap: 12px;
    white-space: nowrap;
  }

  .links {
    overflow: hidden;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) 48px;
    height: 96px;
    min-height: 96px;
    align-items: center;
    padding: 0;
    gap: 18px;
  }

  .brand,
  .brand img {
    width: 270px;
  }

  .brand img {
    height: 78px;
  }

  .slogan {
    min-width: 0;
    font-size: 13px;
  }

  .header-actions {
    display: none;
  }

  .mobile-search-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--red);
    font-size: 25px;
    font-weight: 900;
  }

  .nav-inner {
    width: min(100% - 24px, 1024px);
  }

  .nav a {
    padding: 0 17px;
  }

  .nav-search {
    display: none;
  }

  .lead-layout {
    grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
    gap: 16px;
    padding-top: 18px;
  }

  .hero-card,
  .hero-link,
  .hero-link img {
    width: 100%;
    height: 330px;
    min-height: 330px;
  }

  .hero-overlay h1 {
    font-size: clamp(24px, 3.2vw, 30px);
  }

  .top-list {
    width: 100%;
    height: 330px;
  }

  .top-list-track {
    gap: 7px;
  }

  .top-list article {
    grid-template-columns: 86px 1fr;
    height: 60px;
    min-height: 60px;
    gap: 9px;
  }

  .top-list img {
    height: 60px;
  }

  .top-list h2 {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.32;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sections-grid,
  .listing-grid,
  .sidebar,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-box {
    height: auto;
    min-height: 344px;
  }

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

  .cta-row article:last-child {
    grid-column: 1 / -1;
  }

  .article-page {
    width: min(calc(100% - 28px), 960px);
    padding: 30px 30px 48px;
  }
}

/* 手机与安卓 WebView */
@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 24px), 720px);
  }

  .topbar {
    font-size: 11.5px;
  }

  .topbar-inner {
    height: 38px;
    min-height: 38px;
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .topbar .links {
    display: none;
  }

  .meta {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .meta span {
    flex: 0 0 auto;
  }

  .site-header {
    border-bottom: 1px solid var(--line);
  }

  .header-inner {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    height: 66px;
    min-height: 66px;
    align-items: center;
    padding: 0;
    gap: 8px;
  }

  .mobile-menu-toggle,
  .mobile-search-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #111827;
    font-size: 25px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-search-toggle {
    color: var(--red);
    font-size: 28px;
  }

  .brand {
    justify-self: center;
    width: min(180px, 100%);
  }

  .brand img {
    width: 100%;
    height: 54px;
    object-position: center;
  }

  .slogan,
  .header-actions {
    display: none;
  }

  .nav {
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    width: min(88vw, 350px);
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #fff;
    color: var(--ink);
    box-shadow: 12px 0 34px rgba(0, 0, 0, 0.18);
    transform: translateX(-105%);
    transition: transform 240ms ease;
    padding-top: env(safe-area-inset-top, 0);
  }

  .mobile-nav-open .nav {
    transform: translateX(0);
  }

  .mobile-nav-head {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 0 14px 0 18px;
    color: var(--red);
    font-size: 21px;
  }

  .mobile-nav-close {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    font-size: 30px;
    line-height: 1;
  }

  .nav-inner {
    display: flex;
    width: 100%;
    height: calc(100% - 64px);
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 14px calc(24px + env(safe-area-inset-bottom, 0));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav a {
    width: 100%;
    height: auto;
    min-height: 48px;
    justify-content: flex-start;
    border-bottom: 1px solid #f1f3f5;
    padding: 12px 8px;
    color: #111827;
    font-size: 16px;
  }

  .nav a:hover,
  .nav a:active {
    background: #fff5f5;
    color: var(--red);
  }

  .nav-search {
    order: 0;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 72px;
    margin: 12px 0 8px;
  }

  .nav-search input,
  .nav-search button {
    height: 48px;
    font-size: 16px;
  }

  .nav-search input {
    border-color: var(--line);
    background: #fff;
  }

  .nav-search button {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
  }

  .mobile-utility-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .mobile-utility-links a {
    min-height: 44px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
  }

  .mobile-nav-backdrop {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(17, 24, 39, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .breaking-inner {
    height: 44px;
    min-height: 44px;
    gap: 9px;
  }

  .pulse-dot {
    width: 9px;
    height: 9px;
  }

  .ticker {
    font-size: 13px;
  }

  .ticker-track {
    animation-duration: 120s;
  }

  .lead-layout {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0 16px;
  }

  .hero-card {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 7px;
  }

  .hero-link,
  .hero-link img {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .hero-overlay {
    left: 16px;
    right: 16px;
    bottom: 17px;
  }

  .hero-overlay h1 {
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(20px, 5.8vw, 25px);
    line-height: 1.24;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .tag {
    margin-bottom: 7px;
    padding: 4px 8px;
    font-size: 12px;
  }

  .hero-dots {
    right: 14px;
    bottom: 9px;
  }

  .top-list {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .top-list-track {
    display: grid;
    gap: 8px;
    animation: none;
    transform: none;
  }

  .top-list-track article:nth-child(n + 6) {
    display: none;
  }

  .top-list article {
    grid-template-columns: 112px minmax(0, 1fr);
    height: 82px;
    min-height: 82px;
    gap: 11px;
    padding-right: 11px;
  }

  .top-list img {
    width: 112px;
    height: 82px;
  }

  .top-list h2 {
    align-self: center;
    margin: 0;
    font-size: 15px;
    line-height: 1.42;
    -webkit-line-clamp: 3;
  }

  .top-list b {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .content-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
  }

  .sections-grid,
  .sidebar,
  .cta-row,
  .footer-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
    gap: 14px;
  }

  .news-box,
  .rank,
  .topics,
  .cta-row article {
    border-radius: 7px;
  }

  .news-box {
    height: auto;
    min-height: 0;
    padding: 14px;
  }

  .news-box header {
    margin-bottom: 12px;
  }

  .news-box header a,
  .rank-switch,
  .topics header a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin: -10px -6px -10px 0;
    padding: 0 8px;
  }

  .section-lead {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .news-box .section-lead img {
    width: 124px;
    height: 84px;
  }

  .news-box h3 {
    min-height: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.42;
    -webkit-line-clamp: 3;
  }

  .section-news-list {
    gap: 0;
    margin-top: 11px;
    padding-top: 7px;
  }

  .section-news-list li {
    height: auto;
    min-height: 38px;
    line-height: 1.35;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .section-news-list a {
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .rank {
    min-height: 0;
    padding: 14px;
  }

  .rank ol {
    gap: 7px;
  }

  .rank li {
    grid-template-columns: 25px minmax(0, 1fr) auto;
    min-height: 42px;
    align-items: center;
    font-size: 14px;
    line-height: 1.35;
  }

  .rank li a {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .topics a {
    min-height: 54px;
    justify-content: center;
    border-radius: 10px;
  }

  .cta-row {
    gap: 14px;
    padding-bottom: 22px;
  }

  .cta-row article {
    min-height: 0;
    padding: 18px;
  }

  .cta-row form {
    grid-template-columns: 1fr;
  }

  .cta-row input,
  .cta-row button,
  .cta-row a {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .footer-grid {
    gap: 8px;
    padding: 26px 0 20px;
  }

  .footer-grid section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 0 14px;
  }

  .footer-grid section:last-child {
    border-bottom: 0;
  }

  .footer h2 {
    font-size: 28px;
  }

  .footer a {
    min-height: 38px;
    margin: 0;
    padding: 8px 0;
  }

  .listing-shell {
    padding: 14px 0 24px;
  }

  .listing-page {
    padding: 18px 14px;
  }

  .listing-header {
    padding-bottom: 15px;
  }

  .listing-header h1 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .listing-grid {
    gap: 12px;
    padding: 16px 0;
  }

  .archive-card a {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 12px;
    row-gap: 5px;
    padding: 10px;
  }

  .archive-card img {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 112px;
    height: 86px;
    align-self: start;
  }

  .archive-card span,
  .archive-card h2,
  .archive-card time {
    grid-column: 2;
  }

  .archive-card h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .archive-card p {
    display: none;
  }

  .page-link {
    min-width: 44px;
    height: 44px;
  }

  .article-shell {
    padding: 10px 0 28px;
  }

  .article-page {
    width: calc(100% - 12px);
    padding: 20px 15px 32px;
  }

  .article-header h1 {
    font-size: clamp(25px, 7.2vw, 31px);
    line-height: 1.32;
  }

  .article-image {
    max-height: 70vh;
    margin: 18px auto 23px;
  }

  .article-body {
    font-size: 18px;
    line-height: 1.82;
  }

  .article-neighbors {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-neighbor {
    min-height: 54px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 9px 12px;
  }

  .article-neighbor:nth-child(2) {
    text-align: left;
  }

  .article-neighbor strong {
    white-space: normal;
  }

  .related-carousel {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .related-track {
    grid-auto-columns: min(76vw, 270px);
    grid-template-rows: 1fr;
    gap: 12px;
    animation: none;
    transform: none;
  }

  .related-item {
    width: auto;
    scroll-snap-align: start;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 20px);
  }

  .meta {
    gap: 8px;
    font-size: 11px;
  }

  .brand {
    width: min(164px, 100%);
  }

  .top-list article {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .top-list img {
    width: 104px;
  }

  .section-lead {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .news-box .section-lead img {
    width: 112px;
    height: 78px;
  }

  .rank-heat {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .meta-weather {
    display: none;
  }

  .header-inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .mobile-menu-toggle,
  .mobile-search-toggle {
    width: 42px;
    height: 42px;
  }

  .brand {
    width: 150px;
  }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 900px) {
  .nav {
    width: min(70vw, 390px);
  }

  .mobile-nav-head {
    height: 54px;
  }

  .nav-inner {
    height: calc(100% - 54px);
  }

  .hero-card {
    max-height: 78vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ticker-track,
  .top-list-track,
  .related-track {
    animation: none !important;
    transform: none !important;
  }

  .top-list-track article:nth-child(n + 11) {
    display: none;
  }
}


/* v29.1：平板次头条改为静态五条，避免滚动造成视觉疲劳 */
@media (min-width: 768px) and (max-width: 1099px) {
  .top-list-track {
    animation: none;
    transform: none;
  }

  .top-list-track article:nth-child(n + 6) {
    display: none;
  }
}

.listing-search {
  margin-top: 18px;
}

.listing-search[hidden] {
  display: none !important;
}

/* v29.3: mobile readability + faster article perceived loading */
@media (max-width: 767px) {
  .section-news-list li {
    min-height: 44px;
    font-size: 17px;
    line-height: 1.48;
    gap: 10px;
  }
  .section-news-list time {
    font-size: 15px;
  }
  .article-loading {
    min-height: 180px;
  }
}


/* v29.4 forms, QR and contact updates */
.reader-qr{display:block;width:min(100%,260px);height:auto;margin:14px auto 0;border:1px solid #e5e7eb;border-radius:10px;background:#fff;object-fit:contain}
.tip-form{display:grid!important;grid-template-columns:1fr!important;gap:10px!important;margin-top:14px!important}
.tip-form input,.tip-form textarea{width:100%;border:1px solid var(--line);border-radius:7px;padding:11px 12px;font:inherit;background:#fff}
.tip-form textarea{min-height:126px;resize:vertical}
.tip-form .file-label{display:grid;gap:8px;color:#4b5563;font-size:14px}
.tip-form input[type=file]{height:auto;padding:10px}
.form-note{display:block;margin-top:10px;color:#6b7280;line-height:1.55}
.footer a[href^="tel:"]{display:inline;color:inherit;text-decoration:underline;text-underline-offset:3px}
@media(max-width:767px){.reader-qr{width:min(100%,320px)}.tip-form input,.tip-form textarea,.tip-form button{font-size:16px}.cta-row article{overflow:hidden}}

/* v29.9 compact subscription/community/tip strip */
.cta-row.cta-compact{
  display:grid;
  grid-template-columns:1.15fr 1fr 1fr;
  gap:0;
  padding:0 0 14px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  overflow:hidden;
}
.cta-compact .cta-compact-item{
  min-height:126px;
  padding:18px 22px;
  display:grid;
  align-items:center;
  column-gap:18px;
  border:0;
  border-right:1px solid var(--line);
  box-shadow:none;
  background:#fff;
}
.cta-compact .cta-compact-item:last-child{border-right:0}
.cta-compact .cta-copy h2{
  margin:0 0 7px;
  padding:0;
  border:0;
  font-size:20px;
  line-height:1.2;
}
.cta-compact .cta-copy h2::before{display:none}
.cta-compact .cta-copy p{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.55;
}
.cta-compact .cta-subscribe{
  grid-template-columns:minmax(150px,.8fr) minmax(260px,1.4fr);
}
.cta-compact .cta-subscribe form{
  display:grid;
  grid-template-columns:minmax(0,1fr) 96px;
  gap:0;
  margin:0;
  align-self:end;
}
.cta-compact .cta-subscribe input{
  width:100%;
  height:38px;
  border:1px solid var(--line);
  border-radius:4px 0 0 4px;
  padding:0 12px;
  font-size:14px;
}
.cta-compact .cta-subscribe button{
  min-height:38px;
  border-radius:0 4px 4px 0;
  padding:0 14px;
  font-size:14px;
  white-space:nowrap;
}
.cta-compact .cta-community{
  grid-template-columns:minmax(150px,1fr) 94px;
}
.cta-compact .reader-qr{
  width:88px;
  height:88px;
  margin:0;
  border:0;
  border-radius:0;
  object-fit:contain;
}
.cta-compact .cta-submit{
  grid-template-columns:minmax(160px,1fr) 118px;
}
.cta-compact .tip-open-button{
  width:118px;
  min-height:48px;
  border:1px solid #ef4444;
  border-radius:8px;
  background:#fff5f5;
  color:#d00;
  font-weight:800;
  font-size:15px;
}
.tip-dialog{
  width:min(92vw,620px);
  max-height:90vh;
  border:0;
  border-radius:12px;
  padding:0;
  box-shadow:0 24px 70px rgb(0 0 0 / .28);
}
.tip-dialog::backdrop{background:rgb(0 0 0 / .5)}
.tip-dialog-close-row{display:flex;justify-content:flex-end;margin:0;padding:8px 10px 0}
.tip-dialog-close-row button{border:0;background:transparent;font-size:30px;line-height:1;cursor:pointer}
.tip-dialog-body{padding:0 24px 24px}
.tip-dialog-body h2{margin:0 0 8px;font-size:24px}
.tip-dialog-body>p{margin:0 0 16px;color:#6b7280}
.tip-dialog .tip-form{margin-top:0!important}
body.tip-dialog-open{overflow:hidden}

@media (max-width:1099px){
  .cta-row.cta-compact{grid-template-columns:1fr}
  .cta-compact .cta-compact-item{
    min-height:auto;
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .cta-compact .cta-compact-item:last-child{border-bottom:0}
  .cta-compact .cta-subscribe{grid-template-columns:1fr minmax(280px,1.4fr)}
  .cta-compact .cta-community{grid-template-columns:1fr 94px}
  .cta-compact .cta-submit{grid-template-columns:1fr 118px}
}
@media (max-width:767px){
  .cta-row.cta-compact{
    width:min(calc(100% - 24px),var(--container));
    margin-inline:auto;
    border-radius:10px;
  }
  .cta-compact .cta-compact-item{padding:16px;gap:12px}
  .cta-compact .cta-copy h2{font-size:20px}
  .cta-compact .cta-copy p{font-size:15px}
  .cta-compact .cta-subscribe{grid-template-columns:1fr}
  .cta-compact .cta-subscribe form{grid-template-columns:1fr 92px;width:100%}
  .cta-compact .cta-subscribe input,.cta-compact .cta-subscribe button{min-height:44px;font-size:16px}
  .cta-compact .cta-community{grid-template-columns:1fr 86px}
  .cta-compact .reader-qr{width:82px;height:82px}
  .cta-compact .cta-submit{grid-template-columns:1fr 108px}
  .cta-compact .tip-open-button{width:108px;min-height:44px;font-size:15px}
  .tip-dialog{width:calc(100vw - 24px)}
  .tip-dialog-body{padding:0 16px 18px}
}
/* v29.12 我要曝光首页栏目 */
.exposure-nav-link{background:#9c0000}.exposure-home-placeholder{height:160px;display:grid;place-items:center;background:linear-gradient(135deg,#790000,#e00000);color:#fff;font-size:30px;font-weight:900;border-radius:6px}.exposure-section-lead .exposure-home-video{height:160px;position:relative;background:#111;border-radius:6px;overflow:hidden}.exposure-section-lead .exposure-home-video video{width:100%;height:100%;object-fit:cover}.exposure-section-lead .exposure-home-video span{position:absolute;left:10px;bottom:10px;background:rgba(0,0,0,.7);color:#fff;padding:4px 8px;border-radius:4px}.exposure-section-lead>img{width:100%;height:160px;object-fit:cover;border-radius:6px}
