/* ============================================================
   企研行官网 —— ESG 绿色生态主题
   ============================================================ */
:root {
  --green-900: #0d3b2e;
  --green-800: #12523f;
  --green-700: #166b52;
  --green-600: #1d8a67;
  --green-500: #27a97e;
  --green-400: #4cc394;
  --green-100: #e3f3ec;
  --green-50:  #f3faf6;
  --gold: #c9a227;
  --ink: #1f2d28;
  --muted: #5d7168;
  --line: #e2ece7;
  --bg: #f7faf8;
  --white: #ffffff;
  --shadow: 0 6px 24px rgba(18, 82, 63, .08);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: inline-block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 900px; }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand img { height: 52px; width: auto; }
.site-nav { display: flex; gap: 6px; }
.site-nav a {
  padding: 10px 18px; border-radius: 8px;
  font-size: 16px; color: var(--ink);
  transition: all .2s;
  position: relative;
}
.site-nav a:hover { color: var(--green-600); background: var(--green-50); }
.site-nav a.active { color: var(--green-700); font-weight: 700; }
.site-nav a.active::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 4px;
  height: 3px; border-radius: 2px; background: var(--green-500);
}
.nav-toggle { display: none; }

/* ---------- 首页轮播 ---------- */
.hero { background: var(--green-900); }
.carousel { position: relative; overflow: hidden; }
.carousel-track { position: relative; height: 480px; }
.carousel-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s ease;
}
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.carousel-slide a { display: block; width: 100%; height: 100%; }
.carousel-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 24px;
  background: linear-gradient(transparent, rgba(13,59,46,.72));
  color: #fff; font-size: 18px; text-align: center;
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 46px; height: 46px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 18px;
  background: rgba(255,255,255,.25); color: #fff;
  transition: background .2s;
}
.carousel-arrow:hover { background: rgba(255,255,255,.5); }
.carousel-arrow.prev { left: 18px; }
.carousel-arrow.next { right: 18px; }
.carousel-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.carousel-dots .dot {
  width: 26px; height: 6px; border-radius: 3px; border: none;
  background: rgba(255,255,255,.45); cursor: pointer; transition: background .2s;
}
.carousel-dots .dot.active { background: #fff; }

/* ---------- 通用区块 ---------- */
.section { padding: 64px 0; }
.section-title {
  font-size: 30px; color: var(--green-800); font-weight: 700;
  position: relative; padding-bottom: 12px;
}
.section-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
}
.section-title.center { text-align: center; }
.section-title.center::after { left: 50%; transform: translateX(-50%); }
.section-sub { text-align: center; color: var(--muted); margin-top: 10px; }

/* ---------- 简介条 ---------- */
.intro-band { background: var(--white); }
.intro-inner { text-align: center; max-width: 860px; margin: 0 auto; }
.intro-text p {
  color: var(--muted); margin: 22px 0 28px; font-size: 17px; text-align: justify;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-block; padding: 11px 30px; border-radius: 30px;
  font-size: 15px; cursor: pointer; transition: all .2s; border: 2px solid transparent;
}
.btn-outline {
  border-color: var(--green-500); color: var(--green-600); background: transparent;
}
.btn-outline:hover { background: var(--green-500); color: #fff; }
.btn-primary { background: var(--green-600); color: #fff; }
.btn-primary:hover { background: var(--green-700); }

/* ---------- 首页双栏资讯 ---------- */
.news-band { background: var(--bg); }
.two-col {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  max-width: 860px; margin: 0 auto;
}
.col-head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 2px solid var(--green-100); padding-bottom: 12px; margin-bottom: 6px;
}
.col-head .section-title { font-size: 24px; padding-bottom: 0; }
.col-head .section-title::after { display: none; }
.more { color: var(--green-600); font-size: 14px; white-space: nowrap; }
.more:hover { text-decoration: underline; }

.news-list li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 12px 4px; border-bottom: 1px dashed var(--line);
}
.news-list li .date {
  flex: 0 0 auto; color: var(--green-500); font-size: 13px;
  font-family: Consolas, monospace;
}
.news-list li a {
  flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: 15px; color: var(--ink); transition: color .2s;
}
.news-list li a:hover { color: var(--green-600); }

/* ---------- 服务卡片 ---------- */
.services-band { background: var(--white); }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.service-card {
  background: var(--green-50); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 24px;
  transition: all .25s; display: block; text-align: center;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: var(--green-400); background: var(--white);
}
.service-icon {
  height: 58px; min-width: 58px; width: fit-content; margin: 0 auto 16px; padding: 0 20px;
  border-radius: 29px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; letter-spacing: 0.5px; white-space: nowrap; color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
}
.service-card h3 { font-size: 18px; color: var(--green-800); }
.service-brief {
  color: var(--muted); font-size: 14px; margin-top: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.service-link { display: inline-block; margin-top: 14px; color: var(--green-600); font-size: 14px; }
.service-grid.big .service-card { padding: 40px 30px; }

/* ---------- 合作伙伴 ---------- */
.partner-band { background: var(--bg); }
.partner-row {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 36px;
}
.partner-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 22px; display: flex; align-items: center; justify-content: center;
  height: 84px; min-width: 170px; transition: all .2s;
}
.partner-item:hover { box-shadow: var(--shadow); border-color: var(--green-400); }
.partner-item img { max-height: 52px; width: auto; }

/* ---------- 内页横幅 ---------- */
.page-banner {
  background: linear-gradient(120deg, var(--green-800), var(--green-600));
  color: #fff; padding: 54px 0; text-align: center;
}
.page-banner h1 { font-size: 34px; letter-spacing: 4px; }
.page-banner p { margin-top: 10px; opacity: .85; font-size: 15px; }

/* ---------- 列表页 ---------- */
.list-section { background: var(--white); }
.list-section .container { max-width: 1500px; }
.list-section .container.narrow { max-width: 900px; }
.search-bar { display: flex; gap: 10px; margin: 0 auto 30px; max-width: 480px; }
.search-bar input {
  flex: 1; padding: 11px 16px; border: 1px solid var(--line); border-radius: 30px;
  font-size: 15px; outline: none; background: var(--bg);
}
.search-bar input:focus { border-color: var(--green-400); background: #fff; }
.search-bar button {
  padding: 11px 28px; border: none; border-radius: 30px; cursor: pointer;
  background: var(--green-600); color: #fff; font-size: 15px; transition: background .2s;
}
.search-bar button:hover { background: var(--green-700); }

.article-list { border-top: 1px solid var(--line); }
.article-row {
  display: flex; gap: 22px; align-items: center;
  padding: 20px 8px; border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.article-row:hover { background: var(--green-50); }
.row-date {
  flex: 0 0 64px; text-align: center;
  background: var(--green-50); border-radius: 10px; padding: 8px 0;
  display: flex; flex-direction: column; line-height: 1.2;
}
.article-row:hover .row-date { background: var(--white); }
.row-date .d { font-size: 20px; font-weight: 700; color: var(--green-700); }
.row-date .y { font-size: 12px; color: var(--muted); }
.row-main h3 { font-size: 17px; font-weight: 600; }
.row-main h3 a { color: var(--ink); transition: color .2s; }
.row-main h3 a:hover { color: var(--green-600); }
.top-tag {
  display: inline-block; background: var(--gold); color: #fff; font-size: 12px;
  padding: 1px 8px; border-radius: 4px; margin-right: 8px; vertical-align: 2px; font-weight: 400;
}
.empty-tip { text-align: center; color: var(--muted); padding: 60px 0; }

.pager { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pager a {
  min-width: 40px; height: 40px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 8px; color: var(--muted);
  font-size: 14px; transition: all .2s;
}
.pager a:hover { border-color: var(--green-400); color: var(--green-600); }
.pager a.current { background: var(--green-600); border-color: var(--green-600); color: #fff; }

/* ---------- 详情页 ---------- */
.detail-section { background: var(--white); }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.breadcrumb a:hover { color: var(--green-600); }
.article-detail {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 48px; box-shadow: var(--shadow);
}
.detail-title { font-size: 26px; line-height: 1.5; color: var(--green-900); text-align: center; }
.detail-meta {
  text-align: center; color: var(--muted); font-size: 14px;
  margin: 18px 0 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.detail-meta span { margin: 0 12px; }
.detail-content { font-size: 16px; line-height: 2; color: #333; overflow-wrap: break-word; }
.detail-content p { margin-bottom: 16px; text-align: justify; white-space: pre-wrap; }
.detail-content p.ql-align-center { text-align: center; }
.detail-content p.ql-align-right { text-align: right; }
.detail-content p.ql-indent-1 { padding-left: 2em; }
.detail-content p.ql-indent-2 { padding-left: 4em; }
.detail-content p.ql-indent-3 { padding-left: 6em; }
.detail-content strong, .detail-content b { font-weight: 700; }
.detail-content img { border-radius: 8px; margin: 6px 0; max-width: 100%; }
.detail-content p.ql-align-center img { display: block; margin: 6px auto; }
.detail-content table { max-width: 100%; overflow-x: auto; display: block; border-collapse: collapse; margin: 10px 0; }
.detail-content table td, .detail-content table th { border: 1px solid #d5ddd8; padding: 8px 12px; }
.detail-content .ql-table-block table { width: 100%; }

.detail-pn {
  margin-top: 30px; padding: 20px 24px; background: var(--green-50);
  border-radius: var(--radius); display: flex; flex-direction: column; gap: 8px; font-size: 14px;
}
.detail-pn a { color: var(--green-700); }
.detail-pn a:hover { text-decoration: underline; }
.detail-pn .disabled { color: var(--muted); }
.back-bar { margin-top: 26px; }

/* ---------- 关于我们 ---------- */
.about-intro { font-size: 16px; line-height: 2.1; color: #333; }
.about-intro h3 {
  color: var(--green-800); font-size: 22px; margin: 30px 0 16px;
  padding-left: 14px; border-left: 5px solid var(--green-500);
}
.about-intro h3:first-child { margin-top: 0; }
.about-intro p { margin-bottom: 14px; text-align: justify; }
.about-intro img { border-radius: 8px; }

.honor-section { background: var(--white); }
.honor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px;
}
.honor-item {
  background: var(--green-50); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; text-align: center; transition: all .2s;
}
.honor-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.honor-item img { border-radius: 8px; width: 100%; }
.honor-item figcaption { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--green-900); color: #cfe3da; margin-top: 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
  padding: 54px 20px 40px;
}
.footer-brand h4 { color: #fff; font-size: 19px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; margin-bottom: 6px; opacity: .85; }
.footer-nav h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer-nav a {
  display: block; font-size: 14px; padding: 5px 0; opacity: .85; transition: opacity .2s;
}
.footer-nav a:hover { opacity: 1; color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: 13px;
}
.footer-bottom .container {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; opacity: .8;
}
.footer-bottom a:hover { color: var(--green-400); }

/* ---------- 响应式 ---------- */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-track { height: 360px; }
}

/* 769–1000px：导航提前折叠（7 个导航项在该区间已放不下） */
@media (max-width: 1000px) {
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--green-800); border-radius: 2px; }
  .site-nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 10px 20px 16px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; border-radius: 6px; }
  .site-nav a.active::after { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .header-inner { height: 64px; }
  .brand img { height: 42px; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--green-800); border-radius: 2px; }
  .site-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 10px 20px 16px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; border-radius: 6px; }
  .site-nav a.active::after { display: none; }
  .carousel-track { height: 240px; }
  .carousel-arrow { width: 36px; height: 36px; }
  .section { padding: 44px 0; }
  .section-title { font-size: 24px; }
  .service-grid, .service-grid.big { grid-template-columns: 1fr; }
  .honor-grid { grid-template-columns: 1fr; }
  .article-detail { padding: 26px 18px; }
  .detail-title { font-size: 21px; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; padding: 40px 20px 26px; }
  .page-banner { padding: 38px 0; }
  .page-banner h1 { font-size: 26px; }
  .article-row { gap: 14px; }
  .row-date { flex-basis: 54px; }
}

/* ---------- 披露与评价 ---------- */
.disc-band { background: var(--white); }
.disc-search {
  display: flex; gap: 10px; margin: 0 auto 26px; flex-wrap: wrap; align-items: center;
  justify-content: center; max-width: 900px;
}
.disc-search input[type=text] {
  flex: 1; min-width: 240px; max-width: 460px;
  padding: 11px 16px; border: 1px solid var(--line); border-radius: 30px;
  font-size: 15px; outline: none; background: var(--bg);
}
.disc-search input[type=text]:focus { border-color: var(--green-400); background: #fff; }
.disc-search select {
  padding: 11px 16px; border: 1px solid var(--line); border-radius: 30px;
  font-size: 15px; outline: none; background: var(--bg); color: var(--ink);
}
.disc-search button {
  padding: 11px 30px; border: none; border-radius: 30px; cursor: pointer;
  background: var(--green-600); color: #fff; font-size: 15px; transition: background .2s;
}
.disc-search button:hover { background: var(--green-700); }
.disc-reset { color: var(--muted); font-size: 14px; }
.disc-reset:hover { color: var(--green-600); }

.disc-table-wrap { overflow-x: auto; }
.disc-table { width: 100%; border-collapse: collapse; background: #fff; }
.disc-table th {
  text-align: left; font-size: 14px; color: var(--green-800); background: var(--green-50);
  padding: 12px 14px; border-bottom: 2px solid var(--green-100); white-space: nowrap;
}
.disc-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 15px; white-space: nowrap;
}
.disc-table tbody tr:hover td { background: var(--green-50); }
.disc-company { color: var(--green-700); font-weight: 600; }
.disc-company:hover { text-decoration: underline; }
.disc-code { font-family: Consolas, monospace; color: var(--muted); font-size: 14px; }
.disc-type {
  display: inline-block; background: var(--green-100); color: var(--green-700);
  font-size: 13px; padding: 2px 10px; border-radius: 20px; white-space: nowrap;
}
.disc-file { color: var(--green-600); font-size: 14px; }
.disc-file:hover { text-decoration: underline; }
.disc-none { color: #b9c6c0; }
.disc-empty { text-align: center; color: var(--muted); padding: 40px 0; }
.disc-none-block { color: var(--muted); padding: 14px 0; }

/* ---------- 公司详情页 ---------- */
.comp-head { margin-bottom: 24px; }
.comp-title { font-size: 28px; color: var(--green-900); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.comp-code { font-size: 17px; color: var(--muted); font-family: Consolas, monospace; font-weight: 400; }
.comp-status-delisted {
  font-size: 13px; background: #fdeeec; color: #a53732; padding: 3px 12px;
  border-radius: 20px; font-weight: 400;
}
.comp-fullname { color: var(--muted); margin-top: 8px; font-size: 16px; }
.comp-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; margin-bottom: 24px; box-shadow: var(--shadow);
}
.comp-card-title {
  font-size: 20px; color: var(--green-800); margin-bottom: 18px;
  padding-left: 12px; border-left: 5px solid var(--green-500);
}
.comp-subtitle { font-size: 16px; color: var(--green-700); margin: 18px 0 8px; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.info-grid > div {
  display: flex; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14px;
}
.info-grid > div.wide { grid-column: span 3; }
.info-grid dt { flex: 0 0 96px; color: var(--muted); }
.info-grid dd { flex: 1; color: var(--ink); word-break: break-all; }
.info-grid a { color: var(--green-600); }
.info-grid a:hover { text-decoration: underline; }

.disc-doc-list li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 9px 4px; border-bottom: 1px dashed var(--line); font-size: 15px;
}
.disc-doc-list .date { color: var(--green-500); font-size: 13px; font-family: Consolas, monospace; flex: 0 0 auto; }
.disc-doc-list a { color: var(--ink); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.disc-doc-list a:hover { color: var(--green-600); }
.eval-table { max-width: 640px; }
.eval-score { color: var(--green-700); font-weight: 700; }
.eval-grade { color: var(--green-700); font-weight: 700; text-align: center; }
.disc-table.comp-wide td.eval-note-small { white-space: normal; font-size: 12px; color: var(--muted); max-width: 340px; }

@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-grid > div.wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .comp-title { font-size: 22px; }
  .comp-card { padding: 20px 16px; }
}

/* 披露全文为纯文本时的样式 */
.disc-text { font-size: 14px; color: var(--ink); white-space: normal; }
.disc-table td { white-space: nowrap; }
.disc-table td:last-child { white-space: normal; max-width: 420px; }

/* 首页披露区块：与"公司动态/ESG资讯"同宽对齐 */
.disc-band .container { max-width: 1160px; }
.pager .pager-ellipsis {
  display: inline-flex; align-items: center; padding: 0 6px;
  color: var(--muted); user-select: none;
}

/* 列表备注列 */
.disc-table td.disc-remark { white-space: nowrap; font-size: 13px; color: var(--muted); }

/* 列表"是否强制披露"列：允许多个标识换行显示 */
.disc-table td.disc-flag { white-space: normal; max-width: 200px; font-size: 13px; line-height: 1.5; color: var(--ink); }

/* 是否强制披露：小徽章（默认横向排列，可换行） */
.flag-line {
  display: inline-block;
  background: var(--green-100); color: var(--green-700);
  font-size: 12px; padding: 1px 9px; border-radius: 20px;
  margin: 2px 4px 2px 0; white-space: nowrap;
}
/* 列表单元格内：多个标识逐行显示 */
.disc-flag .flag-line { display: block; width: fit-content; margin: 2px 0; }
/* 企业详情页"是否强制披露"板块：稍大徽章横排 */
.comp-flag-box { padding: 6px 0 2px; }
.comp-flag-box .flag-line { font-size: 13px; padding: 4px 14px; margin: 4px 8px 4px 0; }

/* 分页跳页框 */
.pager .page-jump { display: inline-flex; align-items: center; gap: 6px; margin-left: 14px; }
.pj-label { color: var(--muted); font-size: 13px; }
.pj-input {
  width: 70px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 6px;
  font-size: 13px; text-align: center; outline: none; background: #fff;
}
.pj-input:focus { border-color: var(--green-500); }
.pj-btn {
  padding: 6px 14px; border: none; border-radius: 6px; cursor: pointer;
  background: var(--green-600); color: #fff; font-size: 13px;
}
.pj-btn:hover { background: var(--green-700); }

/* 首页披露全文：最多折行一次（两行截断） */
.disc-table .disc-fulltext {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

/* 公司详情页评级/评价表：加宽、不折行 */
.disc-table.comp-wide { max-width: none; width: 100%; }
.disc-table.comp-wide th, .disc-table.comp-wide td { white-space: nowrap; }
.disc-table.comp-wide td:last-child { white-space: nowrap; max-width: none; }

/* 信息披露评价柱形图 */
.eval-chart { margin: 6px 0 20px; padding: 18px 16px 12px; background: var(--bg); border-radius: 10px; }
.eval-chart-body {
  display: flex; align-items: flex-end; justify-content: space-around;
  gap: 24px; height: 280px; padding: 10px 8px 0;
}
.eval-bar-col { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.eval-bar-val { font-size: 13px; color: var(--ink); margin-bottom: 4px; }
.eval-bar { width: 56px; background: var(--green-500); border-radius: 4px 4px 0 0; }
.eval-bar-year { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ============ 订阅与资助页 ============ */
.subscribe-band .container { max-width: 760px; }
.subscribe-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 40px 36px; text-align: center;
}
.subscribe-slogan p { font-size: 17px; line-height: 2; color: var(--ink); letter-spacing: 1px; }
.subscribe-form {
  margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.subscribe-form input {
  width: 320px; max-width: 100%; padding: 11px 16px; font-size: 14px;
  border: 1px solid var(--line); border-radius: 8px; outline: none; text-align: center;
}
.subscribe-form input:focus { border-color: var(--green-500); }
.subscribe-form .btn { padding: 11px 46px; }
.subscribe-tip { margin-top: 12px; font-size: 13px; }
/* 资助区：与上方空两行 */
.support-card { margin-top: 56px; text-align: center; }
.support-title { font-size: 20px; color: var(--green-800); letter-spacing: 1px; }
.support-qr {
  margin: 20px auto 0; width: 300px; max-width: 100%; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px;
}
.support-qr img { width: 100%; display: block; border-radius: 8px; }

/* 订阅成功弹窗 */
.sub-modal-mask {
  position: fixed; inset: 0; background: rgba(13, 59, 46, .45);
  display: flex; align-items: center; justify-content: center; z-index: 999;
}
.sub-modal {
  background: var(--white); border-radius: 14px; padding: 36px 44px; text-align: center;
  max-width: 90%; box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}
.sub-modal-icon {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--green-500); color: #fff; font-size: 30px; line-height: 56px;
}
.sub-modal h3 { font-size: 20px; color: var(--green-800); margin-bottom: 8px; }
.sub-modal p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

/* ---------- 数据保护与评价说明 ---------- */
.cap-tip {
  margin: 14px 0 0; padding: 10px 16px; font-size: 13px; color: #6b7a74;
  background: #f2f6f4; border: 1px dashed var(--line); border-radius: 8px; text-align: center;
}
.grade-note {
  margin: 12px 0 0; font-size: 13px; color: #6b7a74; line-height: 1.7;
}
