/* =========================================================
   page-news : 行业观察
   作用域限定：.page-news
   移动端优先，桌面端 >= 768px
   ========================================================= */

/* ---- 作用域变量 ---- */
.page-news {
  --news-index-width: 180px;
  --news-gap: 32px;
  --news-card-radius: 18px;
  --news-timeline-accent: var(--color-neon);
  --news-index-bg: rgba(10, 31, 60, 0.65);
  --news-card-bg: rgba(10, 31, 60, 0.55);
  --news-card-border: var(--color-border-gold);
  --news-text-muted: rgba(224, 224, 224, 0.7);
  --news-gold-glow: 0 0 12px rgba(212, 175, 55, 0.2);
}

/* ---- 布局容器 ---- */
.page-news .news-container {
  max-width: var(--max-width, 1320px);
  margin: 0 auto;
  padding: 0 16px 48px;
  position: relative;
}

/* ---- 顶部滚动进度条 ---- */
.page-news .news-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-neon));
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.35);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ---- 面包屑 ---- */
.page-news .news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--news-text-muted);
  padding: 18px 0 12px;
  letter-spacing: 0.03em;
}
.page-news .news-breadcrumb a {
  color: var(--color-gold-bright);
  text-decoration: none;
  transition: color var(--transition-smooth);
}
.page-news .news-breadcrumb a:hover {
  color: var(--color-neon);
}
.page-news .news-breadcrumb__sep {
  color: var(--color-gold);
  opacity: 0.6;
}

/* ---- 两栏布局（移动端单列） ---- */
.page-news .news-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

/* =========================================================
   左侧索引栏（移动端：顶部横向滚动标签）
   ========================================================= */
.page-news .news-index {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: var(--news-index-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-capsule);
  border: 1px solid var(--news-card-border);
  padding: 8px 12px;
  flex-shrink: 0;
}
.page-news .news-index::-webkit-scrollbar {
  display: none;
}

/* 坐标网格背景（桌面可见） */
.page-news .news-index__grid {
  display: none;
}

.page-news .news-index__list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.page-news .news-index__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-capsule);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-light);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  transition: background var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth);
  position: relative;
}
.page-news .news-index__link:hover,
.page-news .news-index__link:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--color-border-gold);
  color: var(--color-gold-bright);
}
.page-news .news-index__link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.page-news .news-index__num {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 12px;
  min-width: 1.6em;
  text-align: right;
}

.page-news .news-index__label {
  font-family: var(--font-body);
  font-size: 14px;
}

/* ---- 索引项悬停/高亮（用 data-index-item 做标记） ---- */
.page-news .news-index__link[data-index-item]:hover .news-index__num,
.page-news .news-index__link[data-index-item]:focus-visible .news-index__num {
  color: var(--color-neon);
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

/* =========================================================
   右侧内容区
   ========================================================= */
.page-news .news-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ---- 通用 section 标题 ---- */
.page-news .news-section__title {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--color-gold-bright);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}
.page-news .news-section__title::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 2px;
}

.page-news .news-section__summary {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--news-text-muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.page-news .news-section__more {
  margin-top: 20px;
  text-align: right;
}

.page-news .news-inline-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-gold-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-gold);
  padding-bottom: 2px;
  transition: color var(--transition-smooth), border-color var(--transition-smooth);
}
.page-news .news-inline-link:hover {
  color: var(--color-neon);
  border-color: var(--color-neon);
}

/* =========================================================
   最新动态 – 时间线
   ========================================================= */
.page-news .news-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  padding-left: 12px;
}
/* 虚线 */
.page-news .news-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-border-gold) 0px,
    var(--color-border-gold) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.5;
  pointer-events: none;
}

.page-news .timeline-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--news-card-bg);
  border-radius: var(--news-card-radius);
  border: 1px solid var(--news-card-border);
  padding: 20px 18px;
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  transform: rotate(0deg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* 不同卡片轻微倾斜，交错 */
.page-news .timeline-item:nth-child(odd) {
  transform: rotate(1.5deg);
}
.page-news .timeline-item:nth-child(even) {
  transform: rotate(-1.8deg);
}
.page-news .timeline-item:hover {
  box-shadow: var(--shadow-float), var(--news-gold-glow);
  z-index: 2;
}

.page-news .timeline-item__index {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
  z-index: 1;
}

.page-news .timeline-item__body {
  flex: 1;
}

.page-news .timeline-item__head {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--color-light);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

.page-news .timeline-item__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--news-text-muted);
  margin: 0 0 8px;
  line-height: 1.5;
}

.page-news .timeline-item__detail {
  display: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-light);
  line-height: 1.6;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border-gold);
}
.page-news .timeline-item__detail p {
  margin: 0 0 8px;
}
.page-news .timeline-item__detail a {
  margin-top: 4px;
}

.page-news .timeline-item__toggle {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-gold-bright);
  background: transparent;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-capsule);
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth);
}
.page-news .timeline-item__toggle:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-neon);
}

/* 展开状态 */
.page-news .timeline-item[data-expandable][data-open="true"] .timeline-item__detail {
  display: block;
}
.page-news .timeline-item[data-expandable][data-open="true"] .timeline-item__toggle {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--color-neon);
  color: var(--color-neon);
}

.page-news .timeline-item__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--color-border-gold);
  margin-top: 4px;
}

/* =========================================================
   功能亮点
   ========================================================= */
.page-news .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news .feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--news-card-bg);
  border-radius: var(--news-card-radius);
  border: 1px solid var(--news-card-border);
  padding: 20px 18px;
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.page-news .feature-card:nth-child(odd) {
  transform: rotate(-1.2deg);
}
.page-news .feature-card:nth-child(even) {
  transform: rotate(1.5deg);
}
.page-news .feature-card:hover {
  box-shadow: var(--shadow-float), var(--news-gold-glow);
  z-index: 2;
}

.page-news .feature-card__index {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-neon);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
  z-index: 1;
}

.page-news .feature-card__icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-news .feature-card__icon {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border-gold);
}

.page-news .feature-card__icon--svg {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news .feature-card__title {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--color-light);
  margin: 0 0 4px;
}

.page-news .feature-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--news-text-muted);
  margin: 0 0 6px;
  line-height: 1.5;
}

.page-news .feature-card__detail {
  display: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-light);
  line-height: 1.6;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border-gold);
}
.page-news .feature-card__detail p {
  margin: 0;
}

.page-news .feature-card__toggle {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-gold-bright);
  background: transparent;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-capsule);
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth);
}
.page-news .feature-card__toggle:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-neon);
}

.page-news .feature-card[data-expandable][data-open="true"] .feature-card__detail {
  display: block;
}
.page-news .feature-card[data-expandable][data-open="true"] .feature-card__toggle {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--color-neon);
  color: var(--color-neon);
}

/* =========================================================
   使用技巧
   ========================================================= */
.page-news .tips-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news .tip-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--news-card-bg);
  border-radius: var(--news-card-radius);
  border: 1px solid var(--news-card-border);
  padding: 18px 18px;
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.page-news .tip-card:nth-child(odd) {
  transform: rotate(1deg);
}
.page-news .tip-card:nth-child(even) {
  transform: rotate(-1.3deg);
}
.page-news .tip-card:hover {
  box-shadow: var(--shadow-float), var(--news-gold-glow);
  z-index: 2;
}

.page-news .tip-card__index {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  z-index: 1;
}

.page-news .tip-card__body {
  flex: 1;
}

.page-news .tip-card__title {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--color-light);
  margin: 0 0 4px;
}

.page-news .tip-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--news-text-muted);
  margin: 0 0 6px;
  line-height: 1.5;
}

.page-news .tip-card__detail {
  display: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-light);
  line-height: 1.6;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border-gold);
}
.page-news .tip-card__detail p {
  margin: 0;
}

.page-news .tip-card__toggle {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-gold-bright);
  background: transparent;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-capsule);
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth);
}
.page-news .tip-card__toggle:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-neon);
}

.page-news .tip-card[data-expandable][data-open="true"] .tip-card__detail {
  display: block;
}
.page-news .tip-card[data-expandable][data-open="true"] .tip-card__toggle {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--color-neon);
  color: var(--color-neon);
}

.page-news .tip-card__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--color-border-gold);
  margin-top: 4px;
}

/* =========================================================
   常见问题快答
   ========================================================= */
.page-news .faq-compact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news .faq-compact__img-wrap {
  margin: 0;
  flex-shrink: 0;
  width: 100%;
}
.page-news .faq-compact__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--color-border-gold);
}

.page-news .faq-compact__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .faq-compact__item {
  background: var(--news-card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-gold);
  padding: 14px 16px;
  position: relative;
  transition: box-shadow var(--transition-smooth);
}
.page-news .faq-compact__item:hover {
  box-shadow: var(--news-gold-glow);
}

.page-news .faq-compact__q {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-light);
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

.page-news .faq-compact__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-neon);
  font-weight: 700;
  flex-shrink: 0;
  min-width: 2em;
}

.page-news .faq-compact__a {
  display: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--news-text-muted);
  line-height: 1.6;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border-gold);
}
.page-news .faq-compact__a p {
  margin: 0;
}

.page-news .faq-compact__toggle {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-gold-bright);
  background: transparent;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-capsule);
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth);
}
.page-news .faq-compact__toggle:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-neon);
}

.page-news .faq-compact__item[data-expandable][data-open="true"] .faq-compact__a {
  display: block;
}
.page-news .faq-compact__item[data-expandable][data-open="true"] .faq-compact__toggle {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--color-neon);
  color: var(--color-neon);
}

/* =========================================================
   桌面端 ( >= 768px )
   ========================================================= */
@media screen and (min-width: 768px) {
  .page-news .news-container {
    padding: 0 32px 64px;
  }

  .page-news .news-breadcrumb {
    font-size: 13px;
    padding: 24px 0 20px;
  }

  .page-news .news-layout {
    flex-direction: row;
    gap: var(--news-gap);
    align-items: flex-start;
  }

  /* ---- 索引栏：固定左侧 ---- */
  .page-news .news-index {
    position: sticky;
    top: calc(var(--header-height, 68px) + 16px);
    width: var(--news-index-width);
    min-width: var(--news-index-width);
    overflow: visible;
    padding: 20px 16px;
    border-radius: var(--radius-card);
    flex-shrink: 0;
    background: var(--news-index-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--news-card-border);
    max-height: calc(100vh - var(--header-height, 68px) - 48px);
  }

  /* 坐标网格 */
  .page-news .news-index__grid {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--radius-card);
    opacity: 0.25;
  }
  .page-news .news-index__grid-line {
    display: block;
    position: absolute;
    background: var(--color-border-gold);
  }
  .page-news .news-index__grid-line:nth-child(1) {
    width: 100%;
    height: 1px;
    top: 25%;
    left: 0;
  }
  .page-news .news-index__grid-line:nth-child(2) {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
  }
  .page-news .news-index__grid-line:nth-child(3) {
    width: 100%;
    height: 1px;
    top: 75%;
    left: 0;
  }
  .page-news .news-index__grid-line:nth-child(4) {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
  }
  .page-news .news-index__grid-dot {
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-neon);
    box-shadow: 0 0 6px rgba(57, 255, 20, 0.4);
  }
  .page-news .news-index__grid-dot:nth-child(5) { top: 25%; left: 25%; }
  .page-news .news-index__grid-dot:nth-child(6) { top: 25%; left: 75%; }
  .page-news .news-index__grid-dot:nth-child(7) { top: 75%; left: 25%; }
  .page-news .news-index__grid-dot:nth-child(8) { top: 75%; left: 75%; }

  .page-news .news-index__list {
    flex-direction: column;
    gap: 6px;
    white-space: normal;
    position: relative;
    z-index: 1;
  }

  .page-news .news-index__link {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .page-news .news-index__label {
    font-size: 14px;
  }

  /* ---- 右侧内容区 ---- */
  .page-news .news-main {
    gap: 56px;
  }

  .page-news .news-section__title {
    font-size: 34px;
  }
  .page-news .news-section__summary {
    font-size: 16px;
    margin-bottom: 32px;
  }

  /* ---- 时间线 ---- */
  .page-news .news-timeline {
    padding-left: 16px;
    gap: 32px;
  }
  .page-news .news-timeline::before {
    left: 36px;
  }
  .page-news .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 24px 24px 24px 32px;
    gap: 20px;
  }
  .page-news .timeline-item:nth-child(odd) {
    transform: rotate(2deg);
  }
  .page-news .timeline-item:nth-child(even) {
    transform: rotate(-2.5deg);
  }
  .page-news .timeline-item__index {
    width: 40px;
    height: 40px;
    font-size: 14px;
    top: -10px;
    left: -10px;
  }
  .page-news .timeline-item__head {
    font-size: 20px;
  }
  .page-news .timeline-item__excerpt {
    font-size: 15px;
  }
  .page-news .timeline-item__detail {
    font-size: 15px;
  }
  .page-news .timeline-item__img {
    width: 220px;
    min-width: 180px;
    height: auto;
    margin-top: 0;
  }

  /* ---- 功能亮点网格 ---- */
  .page-news .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .page-news .feature-card {
    padding: 24px;
  }
  .page-news .feature-card:nth-child(odd) {
    transform: rotate(-1.5deg);
  }
  .page-news .feature-card:nth-child(even) {
    transform: rotate(1.8deg);
  }

  /* ---- 使用技巧 ---- */
  .page-news .tips-list {
    gap: 24px;
  }
  .page-news .tip-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }
  .page-news .tip-card:nth-child(odd) {
    transform: rotate(1.2deg);
  }
  .page-news .tip-card:nth-child(even) {
    transform: rotate(-1.5deg);
  }
  .page-news .tip-card__img {
    width: 200px;
    min-width: 160px;
    height: auto;
    margin-top: 0;
  }

  /* ---- 常见问题 ---- */
  .page-news .faq-compact {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }
  .page-news .faq-compact__img-wrap {
    width: 280px;
    min-width: 220px;
  }
  .page-news .faq-compact__list {
    flex: 1;
  }
  .page-news .faq-compact__q {
    font-size: 16px;
  }
  .page-news .faq-compact__a {
    font-size: 15px;
  }
}

/* =========================================================
   大桌面端 ( >= 1024px )
   ========================================================= */
@media screen and (min-width: 1024px) {
  .page-news .news-container {
    padding: 0 48px 80px;
  }

  .page-news .news-index {
    --news-index-width: 200px;
    width: var(--news-index-width);
    min-width: var(--news-index-width);
  }

  .page-news .news-section__title {
    font-size: 38px;
  }

  .page-news .timeline-item__img {
    width: 260px;
    min-width: 200px;
  }

  .page-news .tip-card__img {
    width: 240px;
    min-width: 180px;
  }

  .page-news .faq-compact__img-wrap {
    width: 320px;
    min-width: 260px;
  }
}

/* =========================================================
   动效偏好缩减
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .page-news .news-progress-bar {
    transition: none;
  }
  .page-news .timeline-item,
  .page-news .feature-card,
  .page-news .tip-card {
    transform: none !important;
    transition: none !important;
  }
  .page-news .timeline-item:hover,
  .page-news .feature-card:hover,
  .page-news .tip-card:hover {
    transform: none !important;
  }
  .page-news .news-index__link,
  .page-news .timeline-item__toggle,
  .page-news .feature-card__toggle,
  .page-news .tip-card__toggle,
  .page-news .faq-compact__toggle,
  .page-news .news-inline-link {
    transition: none !important;
  }
}
