/* ==========================================================================
   内页样式：列表页 / 详情页 / 企业九宫格
   依赖 style.css 中的设计变量
   ========================================================================== */

/* ---------- 当前栏目高亮 ---------- */
.mainnav__item.is-current > .mainnav__link {
  background: var(--brand-dark);
}

.mainnav__item.is-current > .mainnav__link::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 8px;
  left: 18%;
  height: 2px;
  background: var(--accent);
}

/* ---------- 按钮补充变体 ---------- */
.btn--primary {
  color: #fff;
  background: var(--brand);
}

.btn--primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
}

.btn--outline {
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--brand);
}

.btn--outline:hover {
  color: #fff;
  background: var(--brand);
}

.btn--sm {
  padding: 9px 20px;
  font-size: 14px;
}

/* ---------- 栏目头图 ---------- */
.page-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 220px;
  overflow: hidden;
  color: #fff;
  background: var(--brand-dark);
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 44, 109, .88) 0%, rgba(18, 44, 109, .5) 100%);
}

.page-banner__inner {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.page-banner__kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 12px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
}

.page-banner__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .02em;
}

.page-banner__desc {
  max-width: 620px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  text-wrap: pretty;
}

/* ---------- 面包屑 ---------- */
.crumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.crumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
}

.crumb__inner a:hover {
  color: var(--brand);
}

.crumb__sep {
  color: #c3cad6;
}

.crumb__current {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- 内页主体骨架 ---------- */
.page-main {
  padding: 40px 0 64px;
}

.layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.layout__main {
  flex: 1 1 640px;
  min-width: 0;
}

.layout__side {
  flex: 0 0 300px;
  max-width: 100%;
}

/* ---------- 工具条（筛选 + 搜索 + 计数） ---------- */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--line);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 7px 18px;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.chip:hover {
  color: var(--brand);
  border-color: var(--brand-light);
}

.chip.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.toolbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.toolbar__count {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.toolbar__count strong {
  color: var(--brand);
}

.filter-search {
  position: relative;
}

.filter-search input {
  width: 220px;
  padding: 8px 36px 8px 14px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.filter-search input:focus {
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(42, 82, 187, .12);
}

.filter-search .icon {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}

/* ---------- 图文列表 ---------- */
.artlist {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.artcard {
  display: flex;
  gap: 20px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.artcard:hover {
  border-color: rgba(42, 82, 187, .3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.artcard__thumb {
  position: relative;
  flex: 0 0 240px;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
}

.artcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.artcard:hover .artcard__thumb img {
  transform: scale(1.06);
}

.artcard__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  font-size: 12px;
  color: #fff;
  background: rgba(26, 61, 148, .9);
  border-radius: 2px;
}

.artcard__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.artcard__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
  transition: color .25s ease;
}

.artcard:hover .artcard__title {
  color: var(--brand);
}

.artcard__excerpt {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.artcard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.artcard__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.artcard__meta .icon {
  width: 14px;
  height: 14px;
}

/* ---------- 政策列表（表格化条目） ---------- */
.doclist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doccard {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  transition: box-shadow .3s ease, transform .3s ease;
}

.doccard:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.doccard__date {
  flex: 0 0 74px;
  padding: 8px 0;
  text-align: center;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius);
}

.doccard__day {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.doccard__ym {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
}

.doccard__body {
  min-width: 0;
}

.doccard__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  text-wrap: pretty;
}

.doccard:hover .doccard__title {
  color: var(--brand);
}

.doccard__excerpt {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.doccard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.badge {
  padding: 2px 10px;
  font-size: 12px;
  color: var(--brand);
  background: rgba(26, 61, 148, .08);
  border-radius: 2px;
}

.badge--gold {
  color: #8a6d20;
  background: rgba(200, 162, 74, .16);
}

/* ---------- 企业九宫格 ---------- */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bizcard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.bizcard:hover {
  border-color: rgba(42, 82, 187, .3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.bizcard__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}

.bizcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.bizcard:hover .bizcard__thumb img {
  transform: scale(1.08);
}

.bizcard__tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 3px 10px;
  font-size: 12px;
  color: #fff;
  background: rgba(18, 44, 109, .9);
  border-radius: 2px;
}

.bizcard__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.bizcard__name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  text-wrap: pretty;
  transition: color .25s ease;
}

.bizcard:hover .bizcard__name {
  color: var(--brand);
}

.bizcard__desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 45px;
}

.bizcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.bizcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
}

.bizcard__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--brand);
}

.bizcard__more .icon {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}

.bizcard:hover .bizcard__more .icon {
  transform: translateX(3px);
}

/* ---------- 空结果 ---------- */
.list-empty {
  display: none;
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.list-empty strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--ink);
}

/* ---------- 分页 ---------- */
.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 34px;
}

.pager__btn {
  min-width: 38px;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.pager__btn:hover:not(:disabled) {
  color: var(--brand);
  border-color: var(--brand-light);
}

.pager__btn.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.pager__btn:disabled {
  color: #b6bec9;
  cursor: not-allowed;
}

/* ---------- 侧栏 ---------- */
.widget {
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.widget__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius) var(--radius) 0 0;
}

.widget__head h3 {
  font-size: 16px;
  font-weight: 700;
}

.widget__head .icon {
  width: 18px;
  height: 18px;
}

.widget__body {
  padding: 16px 18px 20px;
}

.ranklist li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}

.ranklist li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ranklist__no {
  flex: 0 0 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background: #aeb7c4;
  border-radius: 2px;
}

.ranklist li:nth-child(-n+3) .ranklist__no {
  background: var(--accent);
}

.ranklist a {
  font-size: 14px;
  line-height: 1.6;
}

.ranklist a:hover {
  color: var(--brand);
}

.ranklist time {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.linklist li + li {
  margin-top: 10px;
}

.linklist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 14px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  transition: background .25s ease, color .25s ease;
}

.linklist a:hover {
  color: #fff;
  background: var(--brand);
}

.side-cta {
  padding: 24px 20px;
  color: #fff;
  text-align: center;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius);
}

.side-cta h3 {
  font-size: 17px;
  font-weight: 700;
}

.side-cta p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
}

.side-cta .btn {
  margin-top: 16px;
}

/* ---------- 详情页 ---------- */
.article {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article__head {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.article__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  /*text-wrap: balance;*/
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.article__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.article__meta .icon {
  width: 14px;
  height: 14px;
}

.article__tools {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}

.font-btn,
.tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 13px;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: background .25s ease, color .25s ease;
}

.font-btn:hover,
.tool-btn:hover {
  color: #fff;
  background: var(--brand);
}

.font-btn.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.tool-btn .icon {
  width: 14px;
  height: 14px;
}

/* 阅读进度条 */
.progress-track {
  position: sticky;
  top: 0;
  z-index: 5;
  height: 3px;
  margin: -32px -32px 24px;
  background: var(--line);
}

.progress-bar {
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width .12s linear;
}

/* 正文排版 */
.article__body {
  font-size: 16px;
  line-height: 1.9;
  color: #2b3340;
}

.article__body.is-font-small { font-size: 14px; }
.article__body.is-font-normal { font-size: 16px; }
.article__body.is-font-large { font-size: 18px; }

.article__body p {
  margin-bottom: 20px;
  text-wrap: pretty;
}

.article__body h2 {
  position: relative;
  margin: 32px 0 16px;
  padding-left: 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
}

.article__body h2::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.article__body h3 {
  margin: 24px 0 12px;
  font-size: 17px;
  font-weight: 700;
}

.article__body ul {
  margin-bottom: 20px;
  padding-left: 4px;
}

.article__body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.article__body ul li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 6px;
  height: 6px;
  background: var(--brand-light);
  border-radius: 50%;
}

.article__body figure {
  margin: 26px 0;
}

.article__body figure img {
  width: 100%;
  border-radius: var(--radius);
}

.article__body figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.article__body video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  background: #000;
}

.article__body iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  border: 0;
  border-radius: var(--radius);
}

.article__body blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  font-size: 15px;
  color: #3a4557;
  background: var(--bg-soft);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* 数据表格 */
.table-wrap {
  margin: 24px 0;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--line);
}

.data-table thead th {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  white-space: nowrap;
}

.data-table tbody tr:nth-child(even) {
  background: var(--bg-soft);
}

/* 附件 */
.attachments {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.attachments h3 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
}

.attachments a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--brand);
}

.attachments a:hover {
  text-decoration: underline;
}

.attachments .icon {
  width: 16px;
  height: 16px;
}

/* 标签 + 上下篇 */
.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.prevnext {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.prevnext__item {
  flex: 1 1 240px;
  padding: 16px 18px;
  font-size: 14px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  transition: background .25s ease, color .25s ease;
}

.prevnext__item:hover {
  color: #fff;
  background: var(--brand);
}

.prevnext__item span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  opacity: .75;
}

/* ---------- 企业详情：概览信息 ---------- */
.biz-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 28px;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.biz-hero__media {
  flex: 1 1 340px;
  overflow: hidden;
  border-radius: var(--radius);
  height: 450px;
}

.biz-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-hero__info {
  flex: 1 1 340px;
}

.biz-hero__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: balance;
}

.biz-hero__slogan {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.biz-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.biz-fact {
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.biz-fact dt {
  font-size: 12px;
  color: var(--muted);
}

.biz-fact dd {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.biz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .layout__side {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-banner {
    min-height: 170px;
  }

  .page-banner__title {
    font-size: 24px;
  }

  .toolbar {
    align-items: stretch;
  }

  .toolbar__right {
    justify-content: space-between;
  }

  .filter-search input {
    width: 100%;
  }

  .filter-search {
    flex: 1;
  }

  .artcard {
    flex-direction: column;
  }

  .artcard__thumb {
    flex: none;
  }

  .doccard {
    gap: 14px;
    padding: 16px;
  }

  .doccard__date {
    flex-basis: 60px;
  }

  .grid3 {
    grid-template-columns: 1fr;
  }

  .article {
    padding: 20px;
  }

  .progress-track {
    margin: -20px -20px 20px;
  }

  .article__title {
    font-size: 21px;
  }

  .article__tools {
    width: 100%;
    margin-left: 0;
  }

  .biz-hero {
    padding: 18px;
  }

  .biz-facts {
    grid-template-columns: 1fr;
  }
}

/* ---------- 打印 ---------- */
@media print {
  .topbar,
  .masthead,
  .mainnav,
  .page-banner,
  .crumb,
  .layout__side,
  .article__tools,
  .progress-track,
  .prevnext,
  .footer,
  .backtop {
    display: none !important;
  }

  .article {
    border: 0;
    padding: 0;
  }
}

/* ============ 404 页面 ============ */
.notfound {
  padding: 90px 20px 110px;
  text-align: center;
}
.notfound__code {
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: #1a3d94;
  letter-spacing: 6px;
}
.notfound__title {
  margin: 22px 0 10px;
  font-size: 28px;
  color: #1f2937;
}
.notfound__desc {
  margin: 0 auto 28px;
  max-width: 560px;
  color: #6b7280;
  line-height: 1.8;
}
.notfound__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ============ 搜索结果页 ============ */
.search-page {
  padding: 8px 0 28px;
}
.search.search--lg {
  width: 100%;
  max-width: 620px;
}
.search.search--lg .search__input {
  padding: 12px 44px 12px 16px;
  font-size: 15px;
}
.search-summary {
  margin: 4px 0 18px;
  padding-bottom: 14px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.search-summary strong {
  margin: 0 2px;
  font-size: 18px;
  color: var(--brand);
}
.search-group + .search-group {
  margin-top: 34px;
}
.search-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand);
}
.search-group__title {
  font-size: 19px;
  color: var(--ink);
}
.search-group__count {
  font-size: 13px;
  color: var(--muted);
}
.search-group__more {
  margin-top: 8px;
  text-align: right;
}
.search-group__more a {
  font-size: 13px;
  color: var(--muted);
  transition: color .25s ease;
}
.search-group__more a:hover {
  color: var(--brand);
}
.search-empty__links {
  margin-top: 14px;
}
.search-empty__links .badge {
  margin: 0 4px;
  text-decoration: none;
}
/* ============ 专家智库 ============ */
.expert-page__tip {
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
}
.expert-page__tip strong {
  color: var(--brand);
}
.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.expert-cell {
  display: block;
  padding: 24px 20px;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.expert-cell:hover {
  border-color: var(--line);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(26, 61, 148, .08);
}
.expert-cell__photo {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 61, 148, .08);
}
.expert-cell__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-cell__name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.expert-cell__title {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--brand);
}
.expert-cell__field {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.expert-cell__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--brand);
}
.expert-cell__more .icon {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}
.expert-cell:hover .expert-cell__more .icon {
  transform: translateX(3px);
}

/* ---------- 专家详情 ---------- */
.expert-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.expert-detail__head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.expert-detail__photo {
  flex: none;
  width: 128px;
  height: 128px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--bg-soft);
  box-shadow: 0 0 0 5px rgba(26, 61, 148, .08);
}
.expert-detail__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-detail__name {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.expert-detail__title {
  margin-top: 8px;
  font-size: 15px;
  color: var(--brand);
}
.expert-detail__field {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}
.expert-detail__body {
  padding-top: 24px;
}
.expert-detail__section {
  position: relative;
  margin-bottom: 16px;
  padding-left: 12px;
  font-size: 19px;
  color: var(--ink);
}
.expert-detail__section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--brand);
}
.expert-detail__body p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 2;
  color: #3f4a5a;
  text-align: justify;
}
@media (max-width: 768px) {
  .expert-detail__head {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}
/* ============ 商务合作表单 ============ */
.coop-form {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.coop-form__head {
  margin-bottom: 20px;
}
.coop-form__title {
  font-size: 22px;
  color: var(--ink);
}
.coop-form__desc {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

/* 提示条 */
.alert {
  margin-bottom: 18px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.7;
  border-radius: var(--radius);
}
.alert--success {
  color: #166534;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.alert--error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.alert--error ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

/* 表单 */
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.form__item {
  min-width: 0;
}
.form__item--full {
  margin-top: 16px;
}
.form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.form__label em {
  color: #dc2626;
  font-style: normal;
}
.form__control {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.form__control:focus {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26, 61, 148, .12);
}
.form__control--area {
  resize: vertical;
  line-height: 1.8;
}
select.form__control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form__actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.form__note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}
.form__note em {
  color: #dc2626;
  font-style: normal;
}
.captcha-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.captcha-row .form__control {
  flex: 1;
}
.captcha-img {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-soft);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .form__grid {
    grid-template-columns: 1fr;
  }
}