/* ============================================================
   基础 Reset & 全局设置
   1rem = 10px (html font-size: 62.5%)
   设计稿基准宽度: 1562px，内容区: 1216px
   ============================================================ */

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Noto Sans SC', 'Noto Sans JP', sans-serif;
  background-color: #ffffff;
  color: #364153;
  line-height: 1.6;
  min-width: 320px;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   容器
   ============================================================ */

.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 2.4rem;
}

/* ============================================================
   Header
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 6.5rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 2.4rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.logo-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 0;
  background: none;
}

.logo-icon img {
  display: block;
  max-height: 3.2rem;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.logo-text {
  font-size: 2rem;
  font-weight: 600;
  color: #101828;
  line-height: 2.8rem;
}

/* Nav */
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-link {
  font-size: 1.6rem;
  font-weight: 400;
  color: #364153;
  line-height: 2.4rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #00a63e;
}

/* 汉堡菜单 */
.nav-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #101828;
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Banner
   ============================================================ */

.banner {
  position: relative;
  height: 40rem;
  margin-top: 6.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.banner-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.banner-title {
  font-size: 4.8rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner-subtitle {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 2.8rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ============================================================
   Section Header 公共样式
   ============================================================ */

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
  color: #101828;
  line-height: 3.6rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.title-line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background: -webkit-linear-gradient(left, #ff8904 0%, #ffb86a 50%, rgba(0,0,0,0) 100%);
  background: linear-gradient(90deg, #ff8904 0%, #ffb86a 50%, rgba(0,0,0,0) 100%);
}

.section-desc {
  font-size: 1.6rem;
  font-weight: 400;
  color: #4a5565;
  line-height: 2.4rem;
  margin-top: 1.6rem;
}

/* ============================================================
   书籍总数 (Book Stats)
   ============================================================ */

.book-stats {
  background: #f9fafb;
  padding: 6.4rem 0;
}

.book-stats .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4.8rem;
}

.book-stats-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}

.stats-intro {
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a7282;
  line-height: 2rem;
}

.stats-paragraphs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}

.stats-paragraphs p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #364153;
  line-height: 3.2rem;
}

.book-stats-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.2rem;
}

.stats-more {
  text-align: right;
}

.stats-more a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a7282;
  line-height: 2rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.stats-more a:hover {
  color: #ff8904;
}

.stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}

/* 使用实色字，避免 background-clip:text 在部分浏览器下整块铺色、文字透明不可见 */
.stat-num {
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.stat-orange {
  color: #ea580c;
}

.stat-blue {
  color: #2563eb;
}

.stat-green {
  color: #16a34a;
}

.stat-purple {
  color: #9333ea;
}

.stat-label {
  font-size: 1.6rem;
  font-weight: 400;
  color: #4a5565;
  line-height: 2.4rem;
  text-align: center;
}

/* ============================================================
   包含类型 (Book Categories)
   ============================================================ */

.book-categories {
  background: #ffffff;
  padding: 6.4rem 0;
}

.book-categories .section-header {
  margin-bottom: 1.6rem;
}

.categories-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4rem 1fr 2.4rem 1fr 2.4rem 1fr 2.4rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem;
  margin-top: 3.2rem;
}

.category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}

.category-img-wrap {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  aspect-ratio: 224 / 299;
}

.cat-blue   { background-color: #dbeafe; }
.cat-yellow { background-color: #fef9c2; }
.cat-green  { background-color: #dcfce7; }
.cat-pink   { background-color: #fce7f3; }
.cat-purple { background-color: #f3e8ff; }

.category-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.9;
  display: block;
}

.category-name {
  font-size: 1.8rem;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 2.7rem;
  text-align: center;
}

.category-count {
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a7282;
  line-height: 2rem;
  text-align: center;
}

/* ============================================================
   行业资讯 & 近期资讯 (Recent News)
   ============================================================ */

.recent-news {
  background: #ffffff;
  padding: 6.4rem 0;
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6.4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem;
}

.news-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}

.news-col .section-header {
  margin-bottom: 0;
}

.news-images-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.news-img-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}

a.news-img-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

a.news-img-item__link:hover .news-caption {
  color: #00a63e;
}

.news-img-wrap {
  position: relative;
  height: 12.8rem;
  border-radius: 0.4rem;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.news-img-dot {
  position: absolute;
  bottom: 1rem;
  left: 0.8rem;
  width: 0.8rem;
  height: 0.8rem;
  background: #e7000b;
  border-radius: 0.4rem;
}

.news-caption {
  font-size: 1.4rem;
  font-weight: 400;
  color: #1e2939;
  line-height: 2.275rem;
}

/* 新闻列表 */
.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}

.news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1.4rem;
  font-weight: 400;
  color: #364153;
  line-height: 2.275rem;
  padding: 0.4rem 0;
}

.news-list li::before {
  content: "•";
  color: #e7000b;
  font-size: 1.6rem;
  line-height: 2.4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.news-list li a {
  color: inherit;
  text-decoration: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.news-list li a:hover {
  color: #00a63e;
}

.news-more-bar {
  text-align: center;
  margin-top: 1.6rem;
}

.news-more-link {
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a7282;
  line-height: 2rem;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.news-more-link:hover {
  color: #00a63e;
}

/* 首页资讯区：与 /web/news 一致的行列表，无图 */
.recent-news .news-home-rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  width: 100%;
  min-width: 0;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1.6rem;
}

.recent-news .news-home-rows .news-row {
  min-width: 0;
}

.recent-news .news-section__head {
  margin-bottom: 1.2rem;
}

/* ============================================================
   合作伙伴 (Partners)
   ============================================================ */

.partners {
  background: #f3f4f6;
  padding: 6.4rem 0;
}

.partners .section-header {
  margin-bottom: 0;
}

.partners-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
  margin-top: 3.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partners-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
  padding-top: 10.8rem;
}

.partners-heading {
  font-size: 2.4rem;
  font-weight: 500;
  color: #101828;
  line-height: 3.2rem;
}

.partners-desc {
  font-size: 1.6rem;
  font-weight: 400;
  color: #4a5565;
  line-height: 2.6rem;
}

.partner-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}

.partner-stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  min-width: 6rem;
}

.partner-stat-num {
  font-size: 3rem;
  font-weight: 400;
  color: #00a63e;
  line-height: 3.6rem;
  text-align: center;
}

.partner-stat-label {
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a7282;
  line-height: 2rem;
  text-align: center;
}

.partners-right {
  border-radius: 1rem;
  overflow: hidden;
  height: 40rem;
}

.partners-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: #f9fafb;
  padding: 4rem 0 3.2rem;
}

.footer-container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 0;
  background: none;
}

.footer-logo-icon img {
  display: block;
  max-height: 3.2rem;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 400;
  color: #1e2939;
  line-height: 2.8rem;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 1.6rem;
  font-weight: 400;
  color: #4a5565;
  line-height: 2.4rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #00a63e;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-btn {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.social-btn:hover {
  opacity: 0.8;
}

.social-btn img {
  width: 1.6rem;
  height: 1.6rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.social-red   { background-color: #fb2c36; }
.social-green { background-color: #00c950; }
.social-dark  { background-color: #1e2939; }

.footer-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-copy p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #99a1af;
  line-height: 1.95rem;
}

.footer-copyright-text {
  white-space: pre-line;
  word-break: break-word;
}

/* ============================================================
   响应式 — 平板 ≤ 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .categories-grid {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid {
    gap: 4rem;
  }

  .partners-left {
    padding-top: 0;
  }

  .partners-grid {
    gap: 3.2rem;
  }
}

/* ============================================================
   响应式 — 小平板 ≤ 768px
   ============================================================ */

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .header-inner {
    padding: 0 1.6rem;
  }

  /* 导航折叠 */
  .nav {
    display: none;
    position: absolute;
    top: 6.5rem;
    left: 0;
    right: 0;
    background: #ffffff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
    -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav.nav-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .nav-link {
    padding: 1.2rem 2.4rem;
    border-bottom: 1px solid #f3f4f6;
  }

  .nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .banner {
    height: 28rem;
  }

  .banner-title {
    font-size: 3.2rem;
  }

  .banner-subtitle {
    font-size: 1.6rem;
  }

  .book-stats {
    padding: 5rem 0;
  }

  .stats-grid {
    -ms-grid-columns: 1fr 2.4rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .category-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .news-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .partners-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .partners-right {
    height: 24rem;
  }

  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-nav {
    gap: 2rem;
  }

  .section-title {
    font-size: 2.4rem;
  }
}

/* ============================================================
   响应式 — 手机 ≤ 480px
   ============================================================ */

@media (max-width: 480px) {
  html {
    font-size: 50%;
  }

  .container {
    padding: 0 1.6rem;
  }

  .banner {
    height: 22rem;
  }

  .banner-title {
    font-size: 2.8rem;
  }

  .banner-subtitle {
    font-size: 1.4rem;
  }

  .book-stats {
    padding: 4rem 0;
  }

  .book-categories {
    padding: 4rem 0;
  }

  .categories-grid {
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .recent-news {
    padding: 4rem 0;
  }

  .news-web-detail {
    padding: 2.4rem 0 4rem;
  }

  .news-web-article {
    padding: 2rem 1.6rem;
  }

  .news-web-article__title {
    font-size: 2rem;
  }

  .news-images-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .news-img-wrap {
    height: 16rem;
  }

  .partners {
    padding: 4rem 0;
  }

  .partners-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .partners-right {
    height: 20rem;
  }

  .partner-stats {
    gap: 2.4rem;
  }

  .stats-grid {
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .stat-num {
    font-size: 3.6rem;
  }

  .footer-copy p {
    font-size: 1.1rem;
  }
}

/* ============================================================
   导航当前页
   ============================================================ */

.nav-link--active {
  color: #00a63e;
}

/* ============================================================
   内页通栏 Banner（设计高度 350px）
   ============================================================ */

.inner-banner {
  position: relative;
  height: 35rem;
  margin-top: 6.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.inner-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inner-banner__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.inner-banner__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(left, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.3) 100%);
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

.inner-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 90vw;
}

.inner-banner__title {
  font-size: 4.8rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin: 0 0 1.6rem;
}

.inner-banner__accent {
  width: 9.6rem;
  height: 0.4rem;
  margin: 0 auto 2rem;
  border-radius: 0.2rem;
  background: -webkit-linear-gradient(left, #ff8904 0%, #f54900 100%);
  background: linear-gradient(90deg, #ff8904 0%, #f54900 100%);
}

.inner-banner__subtitle {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 2.8rem;
  margin: 0;
}

/* ============================================================
   关于我们 — 公司介绍
   ============================================================ */

.about-intro {
  padding: 6.4rem 0 4.8rem;
  background: #ffffff;
}

.about-intro__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.8rem 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.8rem 4.8rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.section-header--about {
  margin-bottom: 2.4rem;
}

.title-line--about {
  background: -webkit-linear-gradient(left, #ff8904 0%, #ffb86a 50%, rgba(0,0,0,0) 100%);
  background: linear-gradient(90deg, #ff8904 0%, #ffb86a 50%, rgba(0,0,0,0) 100%);
}

.about-intro__p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #364153;
  line-height: 3.2rem;
  margin-bottom: 1.6rem;
}

.about-intro__p:last-child {
  margin-bottom: 0;
}

.about-intro__richtext p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #364153;
  line-height: 3.2rem;
  margin-bottom: 1.6rem;
}

.about-intro__richtext p:last-child {
  margin-bottom: 0;
}

.about-intro__figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 1rem 1.5rem -0.3rem rgba(0,0,0,0.1), 0 0.4rem 0.6rem -0.4rem rgba(0,0,0,0.1);
  box-shadow: 0 1rem 1.5rem -0.3rem rgba(0,0,0,0.1), 0 0.4rem 0.6rem -0.4rem rgba(0,0,0,0.1);
}

.about-intro__photo {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 584 / 370;
}

/* ============================================================
   关于我们 — 发展历程（文档流排版，无列表绝对定位）
   ============================================================ */

.about-timeline-section {
  background: #f9fafb;
  padding: 6.4rem 0;
}

.about-section-head {
  margin-bottom: 4rem;
}

.about-section-head .section-header--about {
  margin-bottom: 1.6rem;
}

.about-section-head__sub {
  font-size: 1.8rem;
  font-weight: 400;
  color: #4a5565;
  line-height: 2.8rem;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4.8rem;
}

.timeline-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(7rem, 9.9rem) 1fr;
  grid-template-columns: minmax(7rem, 9.9rem) 1fr;
  gap: 0 1.6rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.timeline-list__year {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
  text-align: right;
  color: #1e2939;
  padding-top: 0.4rem;
}

.timeline-list__year--accent {
  color: #ff6900;
}

.timeline-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-width: 0;
}

.timeline-list__dot {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.8rem;
  border-radius: 50%;
  background: #ff6900;
  border: 0.4rem solid #ffffff;
  -webkit-box-shadow: 0 1rem 1.5rem 0 rgba(0,0,0,0.1), 0 0.4rem 0.6rem 0 rgba(0,0,0,0.1);
  box-shadow: 0 1rem 1.5rem 0 rgba(0,0,0,0.1), 0 0.4rem 0.6rem 0 rgba(0,0,0,0.1);
}

.timeline-list__copy {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.timeline-list__title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #1e2939;
  line-height: 3.2rem;
  margin: 0 0 0.8rem;
}

.timeline-list__desc {
  font-size: 1.6rem;
  font-weight: 400;
  color: #4a5565;
  line-height: 2.6rem;
  margin: 0;
}

/* ============================================================
   关于我们 — 资质荣誉
   ============================================================ */

.about-honors {
  padding: 6.4rem 0;
  background: #ffffff;
}

.honor-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4rem 1fr 2.4rem 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
  margin-top: 3.2rem;
}

.honor-card {
  background: #f9fafb;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.4rem 0.6rem -0.1rem rgba(0,0,0,0.1), 0 0.2rem 0.4rem -0.2rem rgba(0,0,0,0.1);
  box-shadow: 0 0.4rem 0.6rem -0.1rem rgba(0,0,0,0.1), 0 0.2rem 0.4rem -0.2rem rgba(0,0,0,0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.honor-card__img-wrap {
  width: 100%;
  aspect-ratio: 374 / 256;
  overflow: hidden;
}

.honor-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.honor-card__text {
  padding: 2.4rem 2.4rem 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.honor-card__title {
  font-size: 2rem;
  font-weight: 500;
  color: #1e2939;
  line-height: 2.8rem;
  margin: 0;
}

.honor-card__meta {
  font-size: 1.4rem;
  color: #6a7282;
  line-height: 2rem;
  margin: 0;
}

.honor-card__desc {
  font-size: 1.6rem;
  color: #4a5565;
  line-height: 2.6rem;
  margin: 0;
}

/* ============================================================
   内容征集页
   ============================================================ */

.submission-main {
  padding: 6.4rem 0;
  background: #ffffff;
}

.submission-stack {
  max-width: 89.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4.8rem;
}

.submission-heading__bar {
  width: 8rem;
  height: 0.4rem;
  border-radius: 0.2rem;
  background: -webkit-linear-gradient(left, #ff8904 0%, #f54900 100%);
  background: linear-gradient(90deg, #ff8904 0%, #f54900 100%);
  margin-bottom: 1.6rem;
}

.submission-heading__title {
  font-size: 3rem;
  font-weight: 500;
  color: #1e2939;
  line-height: 3.6rem;
  margin: 0;
}

.submission-instructions__box {
  margin-top: 2rem;
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2.4rem;
}

.submission-lead {
  font-size: 1.6rem;
  color: #364153;
  line-height: 3.2rem;
  margin: 0 0 1.6rem;
}

.submission-bullets {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}

.submission-bullets li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1.6rem;
  color: #364153;
  line-height: 3.2rem;
}

.submission-bullets__mark {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.4rem;
  text-align: center;
  color: #364153;
}

.submission-note {
  font-size: 1.6rem;
  color: #364153;
  line-height: 3.2rem;
  margin: 0;
}

.submission-note strong {
  font-weight: 700;
}

.submission-form-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 3.3rem;
}

.submission-form__alert {
  margin-bottom: 1.6rem;
  padding: 1.2rem 1.6rem;
  border-radius: 1rem;
  font-size: 1.5rem;
  line-height: 2.2rem;
  border: 1px solid transparent;
}

.submission-form__alert[hidden] {
  display: none !important;
}

.submission-form__alert--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.submission-form__alert--ok {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.submission-form {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}

.form-submit.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}

.form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}

.form-label__icon {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-label__icon img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.form-label__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #364153;
  line-height: 2.4rem;
}

.form-required {
  color: #fb2c36;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid #d1d5dc;
  border-radius: 1rem;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  font-family: inherit;
  color: #0a0a0a;
  background: #ffffff;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.form-input::-webkit-input-placeholder,
.form-textarea::-webkit-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-input::-moz-placeholder,
.form-textarea::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-input:-ms-input-placeholder,
.form-textarea:-ms-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-textarea {
  min-height: 26.6rem;
  resize: vertical;
  line-height: 2.4rem;
}

.form-agree {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.6rem;
}

.form-agree__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.form-agree__input {
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.form-agree__text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #4a5565;
  line-height: 2rem;
}

.form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.form-submit {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  height: 5rem;
  border: none;
  border-radius: 1rem;
  background: #ff6900;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.8rem;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.form-submit:hover {
  opacity: 0.92;
}

.form-submit__icon {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.form-reset {
  width: 9.8rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 5rem;
  border: 1px solid #d1d5dc;
  border-radius: 1rem;
  background: #ffffff;
  color: #364153;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}

.submission-contact {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2.4rem;
}

.submission-contact__title {
  font-size: 2rem;
  font-weight: 500;
  color: #1e2939;
  line-height: 2.8rem;
  margin: 0 0 1.6rem;
}

.submission-contact p {
  font-size: 1.6rem;
  color: #4a5565;
  line-height: 2.4rem;
  margin: 0 0 0.8rem;
}

.submission-contact p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   新闻资讯页（列表均为 flex/grid，无绝对定位）
   ============================================================ */

.news-main {
  padding: 4.8rem 0 6.4rem;
  background: #ffffff;
}

.news-main__inner {
  max-width: 128rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6.4rem;
}

/* 新闻详情：无通栏 Banner，预留固定导航高度，避免内容贴顶 */
.news-web-detail {
  margin-top: 6.5rem;
  padding: 3.2rem 0 6.4rem;
  background: #f9fafb;
}

.news-web-detail__box {
  max-width: 92rem;
}

.news-web-crumb {
  font-size: 1.4rem;
  color: #6b7280;
  margin-bottom: 2.4rem;
  line-height: 2rem;
}

.news-web-crumb__link {
  color: #ff6900;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.news-web-crumb__link:hover {
  text-decoration: underline;
}

.news-web-crumb__sep {
  color: #99a1af;
}

.news-web-crumb__here {
  color: #364153;
}

.news-web-article {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2.8rem 2.4rem;
}

.news-web-article__head {
  margin-bottom: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #f3f4f6;
}

.news-web-article__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1e2939;
  line-height: 1.35;
  margin: 0 0 1rem;
}

.news-web-article__meta {
  margin: 0;
  font-size: 1.4rem;
  color: #6b7280;
}

.news-web-article__cover {
  margin: 0 0 2rem;
}

.news-web-article__cover-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

.news-web-lead {
  font-size: 1.6rem;
  color: #4a5565;
  line-height: 1.75;
  margin: 0 0 2rem;
}

.news-web-body {
  font-size: 1.6rem;
  color: #364153;
  line-height: 1.85;
}

.news-web-body img {
  max-width: 100%;
  height: auto;
}

.news-web-back-wrap {
  margin-top: 2.4rem;
}

.news-web-back {
  display: inline-block;
  font-size: 1.5rem;
  color: #ff6900;
  text-decoration: none;
}

.news-web-back:hover {
  text-decoration: underline;
}

.news-section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
}

.news-section__title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #101828;
  line-height: 3.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
}

.news-section__line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  min-width: 0;
  background: -webkit-linear-gradient(left, #ff8904 0%, #ffb86a 50%, rgba(0,0,0,0) 100%);
  background: linear-gradient(90deg, #ff8904 0%, #ffb86a 50%, rgba(0,0,0,0) 100%);
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 9.6rem 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 9.6rem;
}

.news-grid--border {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 3.3rem;
}

.news-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.8rem;
  min-width: 0;
}

.news-row__dot {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.6rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-top: 0.1rem;
}

.news-row__dot--muted {
  color: #99a1af;
}

.news-row__dot--accent {
  color: #ff8904;
}

.news-row__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1e2939;
  line-height: 2.275rem;
  text-decoration: none;
}

a.news-row__title:hover {
  color: #ff8904;
}

.news-row__title--text {
  cursor: default;
}

.news-row__date {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a7282;
  line-height: 2rem;
}

.news-grid--policy .news-row--full {
  -ms-grid-column: 1;
  grid-column: 1;
  max-width: 100%;
}

.news-cards-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.2rem 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem;
}

.news-card-block {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}

.news-card-block__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}

.news-card-block__title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #101828;
  line-height: 3.2rem;
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.news-card-block__line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  min-width: 0;
  background: -webkit-linear-gradient(left, #ff8904 0%, #ffb86a 50%, rgba(0,0,0,0) 100%);
  background: linear-gradient(90deg, #ff8904 0%, #ffb86a 50%, rgba(0,0,0,0) 100%);
}

.news-card-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}

/* ============================================================
   内页响应式
   ============================================================ */

@media (max-width: 1024px) {
  .about-intro__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .honor-grid {
    -ms-grid-columns: 1fr 2.4rem 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    gap: 1.2rem 4rem;
  }
}

@media (max-width: 768px) {
  .inner-banner {
    height: 28rem;
  }

  .inner-banner__title {
    font-size: 3.6rem;
  }

  .timeline-list__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .timeline-list__year {
    text-align: left;
  }

  .honor-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .news-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .news-grid--policy .news-row--full {
    -ms-grid-column: 1;
    grid-column: 1;
  }

  .news-cards-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form-reset {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .inner-banner {
    height: 22rem;
  }

  .inner-banner__title {
    font-size: 2.8rem;
  }

  .submission-form-wrap {
    padding: 2rem 1.6rem;
  }
}

/* 官网 Web 全站：Logo 链接与首页一致（头尾共用 web_site_header / web_site_footer） */
.page-web .logo-link,
.page-web .footer-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
}
