/* ==========================================================================
   全站附加样式（返回顶部、页面级组件等 · 书香家居风）
   ========================================================================== */

/* ---------- 返回顶部 ---------- */
.back-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tan), var(--tan-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 80;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--ink-g), var(--ink-g-deep));
}

/* ==========================================================================
   服务/方案详情页 通用组件
   ========================================================================== */

/* 详情页大图横幅 */
.detail-banner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: var(--shadow-md);
}

.detail-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.detail-banner .banner-cap {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 32px 38px;
  background: linear-gradient(0deg, rgba(31, 51, 41, 0.9) 0%, transparent 100%);
  color: #fff;
}

.detail-banner .banner-cap h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.detail-banner .banner-cap p {
  color: rgba(245, 240, 230, 0.82);
  font-size: 15px;
}

/* 图文左右块 */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.split-block.reverse .split-img {
  order: 2;
}

.split-img {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.split-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.split-text h3 {
  font-size: 26px;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.split-text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.9;
}

.split-text ul.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--body);
}

.split-text ul.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(45, 74, 62, 0.1);
}

.split-text ul.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--ink-g);
  border-bottom: 2px solid var(--ink-g);
  transform: rotate(-45deg);
}

/* 特性卡组（详情页用，区别于首页 adv-card） */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.spec-card {
  padding: 32px 26px;
  background: var(--paper);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.4s ease;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--paper) 0%, var(--rice) 100%);
}

.spec-card .spec-ico {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(45, 74, 62, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-card:hover .spec-ico {
  background: linear-gradient(135deg, var(--ink-g), var(--ink-g-deep));
}

.spec-card:hover .spec-ico svg {
  stroke: #E8C977;
}

.spec-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.spec-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
}

/* 数据条 */
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.metric-row .metric {
  padding: 30px 16px;
  background: var(--paper);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}

.metric-row .metric strong {
  display: block;
  font-size: 36px;
  color: var(--tan-deep);
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-row .metric span {
  font-size: 13.5px;
  color: var(--muted);
}

/* ==========================================================================
   服务总览（services.html 专属编号大卡）
   ========================================================================== */
.svc-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-tile {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 28px 30px;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink-g) 0%, var(--ink-g-deep) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.svc-tile > * {
  position: relative;
  z-index: 1;
}

.svc-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.svc-tile:hover::before {
  opacity: 1;
}

.svc-tile .tile-no {
  font-size: 46px;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--rice-3);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.4s ease;
}

.svc-tile:hover .tile-no {
  color: rgba(232, 201, 119, 0.5);
}

.svc-tile .tile-ico {
  width: 64px;
  height: 64px;
  border-radius: var(--r-sm);
  background: rgba(158, 59, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.svc-tile:hover .tile-ico {
  background: rgba(232, 201, 119, 0.22);
}

.svc-tile:hover .tile-ico svg {
  stroke: #E8C977;
}

.svc-tile h3 {
  font-size: 19px;
  margin-bottom: 12px;
  transition: color 0.4s ease;
  font-family: var(--font-serif);
}

.svc-tile:hover h3 {
  color: #fff;
}

.svc-tile p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
  transition: color 0.4s ease;
}

.svc-tile:hover p {
  color: rgba(245, 240, 230, 0.8);
}

.svc-tile .tile-more {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tan-deep);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.svc-tile:hover .tile-more {
  color: #E8C977;
}

/* 教程列表卡（tutorial 用） */
.tut-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tut-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.4s ease;
}

.tut-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.tut-card .tut-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.tut-card .tut-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tut-card:hover .tut-img img {
  transform: scale(1.06);
}

.tut-card .tut-level {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--cinnabar);
  color: #fff;
  font-size: 11.5px;
  border-radius: var(--r-pill);
}

.tut-card .tut-body {
  padding: 22px 22px 26px;
}

.tut-card .tut-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.tut-card .tut-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.tut-card .tut-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--tan-soft);
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.tut-card .tut-meta .more {
  color: var(--tan-deep);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .svc-overview { grid-template-columns: repeat(2, 1fr); }
  .tut-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-overview { grid-template-columns: 1fr; }
  .tut-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   案例列表页 筛选
   ========================================================================== */
.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}

.case-filter button {
  padding: 9px 22px;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.case-filter button:hover,
.case-filter button.active {
  background: linear-gradient(135deg, var(--ink-g), var(--ink-g-deep));
  color: #fff;
  border-color: transparent;
}

/* ==========================================================================
   新闻列表页
   ========================================================================== */
.news-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

.news-page-main .news-item {
  margin-bottom: 22px;
}

.news-side .side-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 24px;
  margin-bottom: 26px;
}

.news-side .side-card h4 {
  font-size: 17px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(45, 74, 62, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
}

.news-side .side-card h4::before {
  content: "";
  width: 5px;
  height: 18px;
  background: linear-gradient(180deg, var(--cinnabar), var(--tan-soft));
  border-radius: 3px;
}

.side-link-list li {
  margin-bottom: 10px;
}

.side-link-list li a {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--body);
  padding: 7px 10px;
  border-radius: var(--r-sm);
  transition: all 0.25s ease;
}

.side-link-list li a:hover {
  background: var(--rice-3);
  color: var(--tan-deep);
  transform: translateX(4px);
}

.side-link-list li a span {
  color: var(--tan-soft);
}

/* ==========================================================================
   详情页（show.html）文章排版
   ========================================================================== */
.article-wrap {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 50px 56px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.article-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
  margin-bottom: 32px;
}

.article-head h1 {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-content {
  font-size: 16px;
  line-height: 2;
  color: var(--body);
}

.article-content p {
  margin-bottom: 22px;
}

.article-content h2 {
  font-size: 22px;
  margin: 36px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--cinnabar);
  font-family: var(--font-serif);
}

.article-content h3 {
  font-size: 18px;
  margin: 28px 0 12px;
  font-family: var(--font-serif);
}

.article-content img {
  border-radius: var(--r-md);
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

.article-content ul,
.article-content ol {
  margin: 0 0 22px 22px;
}

.article-content ul li,
.article-content ol li {
  margin-bottom: 8px;
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

.article-foot {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.article-tags a {
  display: inline-block;
  padding: 5px 14px;
  background: var(--rice-3);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  color: var(--tan);
  margin-right: 8px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--tan-soft);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.faq-q .faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(158, 59, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinnabar);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--cinnabar);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.9;
}

/* ==========================================================================
   价格表
   ========================================================================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.price-card.featured {
  border-color: var(--tan-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.price-card .price-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--cinnabar);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.price-card .price-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.price-card .price-num {
  font-size: 42px;
  color: var(--tan-deep);
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.price-card .price-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}

.price-card ul {
  text-align: left;
  margin-bottom: 28px;
}

.price-card ul li {
  padding: 9px 0;
  font-size: 14px;
  color: var(--body);
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card ul li::before {
  content: "✓";
  color: var(--ink-g);
  font-weight: 700;
}

/* ==========================================================================
   联系页
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--ink-g-deep), var(--ink-g));
  color: var(--rice);
  border-radius: var(--r-lg);
  padding: 44px 38px;
}

.contact-info-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 24px;
  font-family: var(--font-serif);
}

.contact-info-card .ci-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-info-card .ci-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232, 201, 119, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #E8C977;
}

.contact-info-card .ci-body p {
  color: rgba(245, 240, 230, 0.65);
  font-size: 12.5px;
  margin-bottom: 4px;
}

.contact-info-card .ci-body strong {
  color: #fff;
  font-size: 16px;
}

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13px;
  color: var(--body);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--rice);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--tan-soft);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107, 68, 35, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-tip {
  font-size: 13px;
  margin-top: 10px;
  min-height: 18px;
}

/* ==========================================================================
   团队页
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card .t-photo {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.team-card .t-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .t-photo img {
  transform: scale(1.05);
}

.team-card .t-info {
  padding: 22px 20px;
  text-align: center;
}

.team-card .t-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
  font-family: var(--font-serif);
}

.team-card .t-info .t-role {
  font-size: 12.5px;
  color: var(--cinnabar);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.team-card .t-info p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   时间线
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cinnabar), var(--tan-soft), var(--bamboo));
}

.tl-item {
  position: relative;
  padding-bottom: 40px;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--ink-g);
  z-index: 2;
}

.tl-item .tl-year {
  font-size: 22px;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--tan-deep);
  margin-bottom: 6px;
}

.tl-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.tl-item p {
  font-size: 14px;
  color: var(--muted);
}

/* ==========================================================================
   行业方案卡片
   ========================================================================== */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sol-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.4s ease;
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.sol-card .sol-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.sol-card .sol-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sol-card:hover .sol-img img {
  transform: scale(1.06);
}

.sol-card .sol-img .sol-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 51, 41, 0.55) 0%, transparent 60%);
}

.sol-card .sol-body {
  padding: 24px 22px;
}

.sol-card .sol-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.sol-card .sol-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.sol-card .sol-body .sol-more {
  font-size: 13.5px;
  color: var(--tan-deep);
  font-weight: 600;
}

/* ==========================================================================
   响应式
   ========================================================================== */
@media (max-width: 1100px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .news-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .split-block { grid-template-columns: 1fr; gap: 30px; }
  .split-block.reverse .split-img { order: 0; }
  .spec-grid { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .article-wrap { padding: 30px 24px; }
  .article-head h1 { font-size: 22px; }
  .detail-banner img { height: 240px; }
  .detail-banner .banner-cap h2 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ==========================================================================
   services.html - 服务双线分组卡（商业建站 + 技术教学）
   ========================================================================== */
.svc-group-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.svc-group-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  border-top: 4px solid var(--tan-soft);
  transition: all 0.4s ease;
}

.svc-group-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.svc-group-card .svc-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
  flex-wrap: wrap;
  gap: 10px;
}

.svc-group-card .grp-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.svc-group-card .grp-tag.grp-build {
  background: rgba(158, 59, 46, 0.12);
  color: var(--cinnabar);
}

.svc-group-card .grp-tag.grp-teach {
  background: rgba(45, 74, 62, 0.12);
  color: var(--ink-g);
}

.svc-group-card .grp-count {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 1.5px;
  font-family: var(--font-en);
}

.svc-group-card .grp-items li {
  padding: 11px 0 11px 26px;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
  color: var(--body);
  position: relative;
}

.svc-group-card .grp-items li:last-child {
  border-bottom: none;
}

.svc-group-card .grp-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 2px;
  background: var(--cinnabar);
}

.svc-group-card .grp-desc {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  padding: 16px 18px;
  background: var(--rice);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--ink-g);
}

@media (max-width: 900px) {
  .svc-group-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   solutions.html - 行业方案：痛点 + 解决方案对照卡
   ========================================================================== */
.sol-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sol-detail-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.sol-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sol-detail-card .sol-d-head {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.sol-detail-card .sol-d-head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sol-detail-card:hover .sol-d-head img {
  transform: scale(1.06);
}

.sol-detail-card .sol-d-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 51, 41, 0.25) 0%, rgba(31, 51, 41, 0.85) 100%);
}

.sol-detail-card .sol-d-title {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 2;
}

.sol-detail-card .sol-d-title .sol-num {
  font-size: 14px;
  color: #E8C977;
  font-family: var(--font-en);
  letter-spacing: 2px;
}

.sol-detail-card .sol-d-title h3 {
  color: #fff;
  font-size: 24px;
  font-family: var(--font-serif);
  margin-top: 4px;
}

.sol-detail-card .sol-d-body {
  padding: 26px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sol-detail-card .sol-block-row {
  margin-bottom: 18px;
}

.sol-detail-card .sol-block-row:last-of-type {
  margin-bottom: 0;
}

.sol-detail-card .sol-block-row h5 {
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-family: var(--font-en);
  text-transform: uppercase;
}

.sol-detail-card .sol-block-row.pain h5 {
  color: var(--cinnabar);
}

.sol-detail-card .sol-block-row.solve h5 {
  color: var(--ink-g);
}

.sol-detail-card .sol-block-row ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.7;
}

.sol-detail-card .sol-block-row.pain ul li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cinnabar);
  font-weight: 700;
}

.sol-detail-card .sol-block-row.solve ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink-g);
  font-weight: 700;
}

.sol-detail-card .sol-d-link {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.sol-detail-card .sol-d-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tan-deep);
}

.sol-detail-card .sol-d-link a:hover {
  gap: 12px;
}

@media (max-width: 900px) {
  .sol-detail-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   cases.html - 案例列表（紧凑大图卡）
   ========================================================================== */
.case-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-list-grid .case-card .case-img {
  height: 200px;
}

.case-list-grid .case-card .case-info h3 {
  font-size: 17px;
}

@media (max-width: 1100px) {
  .case-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .case-list-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   tutorial.html - 教程总览与学习路径
   ========================================================================== */
.tut-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tut-path {
  background: linear-gradient(135deg, var(--ink-g-deep), var(--ink-g));
  border-radius: var(--r-lg);
  padding: 50px 48px;
  color: var(--rice);
  position: relative;
  overflow: hidden;
}

.tut-path::before {
  content: "PATH";
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 180px;
  font-family: var(--font-en);
  font-weight: 700;
  color: rgba(232, 201, 119, 0.06);
  letter-spacing: 8px;
  line-height: 1;
}

.tut-path .tut-path-head {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
}

.tut-path .tut-path-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: #E8C977;
  font-family: var(--font-en);
  margin-bottom: 12px;
}

.tut-path .tut-path-head h3 {
  color: #fff;
  font-size: 26px;
  font-family: var(--font-serif);
  margin-bottom: 8px;
}

.tut-path .tut-path-head p {
  color: rgba(245, 240, 230, 0.7);
  font-size: 14.5px;
}

.tut-path-flow {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tut-path-flow .path-node {
  flex: 1;
  min-width: 130px;
  background: rgba(245, 240, 230, 0.06);
  border: 1px solid rgba(245, 240, 230, 0.18);
  border-radius: var(--r-md);
  padding: 18px 16px;
  position: relative;
  transition: all 0.3s ease;
}

.tut-path-flow .path-node:hover {
  background: rgba(232, 201, 119, 0.16);
  border-color: rgba(232, 201, 119, 0.5);
  transform: translateY(-3px);
}

.tut-path-flow .path-node .pn-no {
  font-size: 12px;
  color: #E8C977;
  font-family: var(--font-en);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.tut-path-flow .path-node .pn-name {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-serif);
  margin-bottom: 4px;
}

.tut-path-flow .path-node .pn-tip {
  color: rgba(245, 240, 230, 0.65);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .tut-overview { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .tut-overview { grid-template-columns: 1fr; }
  .tut-path { padding: 32px 24px; }
  .tut-path-flow .path-node { min-width: calc(50% - 7px); }
}

/* ==========================================================================
   about.html - 关于拓冰：分屏 + 数据墙
   ========================================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-split .about-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-split .about-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-split .about-visual .about-seal {
  position: absolute;
  right: -20px;
  top: 40px;
  width: 130px;
  background: var(--cinnabar);
  color: #fff;
  border-radius: 8px;
  padding: 18px 14px;
  text-align: center;
  font-family: var(--font-serif);
  transform: rotate(4deg);
  box-shadow: 0 14px 32px rgba(158, 59, 46, 0.35);
}

.about-split .about-seal strong {
  display: block;
  font-size: 22px;
  letter-spacing: 1px;
}

.about-split .about-seal small {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 6px;
  opacity: 0.85;
}

.about-split .about-text .mvv-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0;
}

.about-split .mvv-card {
  padding: 22px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  border-top: 3px solid var(--ink-g);
  transition: all 0.3s ease;
}

.about-split .mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.about-split .mvv-card .mvv-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(158, 59, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.about-split .mvv-card h4 {
  font-size: 16px;
  font-family: var(--font-serif);
  margin-bottom: 6px;
}

.about-split .mvv-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.about-sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about-sub-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 26px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.about-sub-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cinnabar), var(--tan-soft));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.about-sub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-sub-card:hover::before {
  transform: scaleY(1);
}

.about-sub-card .sub-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(45, 74, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.about-sub-card:hover .sub-ico {
  background: linear-gradient(135deg, var(--ink-g), var(--ink-g-deep));
}

.about-sub-card:hover .sub-ico svg {
  stroke: #E8C977;
}

.about-sub-card h4 {
  font-size: 18px;
  font-family: var(--font-serif);
  margin-bottom: 8px;
}

.about-sub-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-sub-card .sub-link {
  font-size: 13px;
  color: var(--tan-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.about-sub-card:hover .sub-link {
  gap: 10px;
}

@media (max-width: 1100px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split .about-visual img { height: 320px; }
  .about-sub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .about-split .mvv-row { grid-template-columns: 1fr; }
  .about-sub-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   pricing.html - 价格对比表
   ========================================================================== */
.compare-table-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table thead {
  background: linear-gradient(135deg, var(--ink-g), var(--ink-g-deep));
  color: #fff;
}

.compare-table th {
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-serif);
  letter-spacing: 1px;
}

.compare-table th:first-child {
  width: 26%;
  color: rgba(245, 240, 230, 0.85);
  font-weight: 500;
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0;
}

.compare-table td {
  padding: 16px 22px;
  font-size: 14px;
  color: var(--body);
  border-bottom: 1px solid var(--line);
}

.compare-table td:first-child {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-serif);
  background: var(--rice);
}

.compare-table tbody tr:hover {
  background: var(--rice-2);
}

.compare-table .yes {
  color: var(--ink-g);
  font-weight: 700;
}

.compare-table .no {
  color: var(--muted);
  opacity: 0.5;
}

.price-faq-mini {
  max-width: 820px;
  margin: 0 auto;
}

.price-faq-mini .pf-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.price-faq-mini .pf-item:hover {
  border-color: var(--tan-soft);
  box-shadow: var(--shadow-sm);
}

.price-faq-mini .pf-item h4 {
  font-size: 15.5px;
  font-family: var(--font-serif);
  margin-bottom: 8px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-faq-mini .pf-item h4::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cinnabar);
  color: #fff;
  font-size: 12px;
  font-family: var(--font-en);
  font-weight: 700;
  flex-shrink: 0;
}

.price-faq-mini .pf-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  padding-left: 34px;
}

/* ==========================================================================
   process.html - 建站流程时间轴
   ========================================================================== */
.proc-timeline {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.proc-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cinnabar), var(--tan-soft), var(--ink-g), var(--bamboo));
  transform: translateX(-50%);
}

.proc-step {
  position: relative;
  width: 50%;
  padding: 0 50px 60px 0;
}

.proc-step:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 60px 50px;
}

.proc-step .proc-node {
  position: absolute;
  right: -22px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--cinnabar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--cinnabar);
  z-index: 3;
  box-shadow: 0 4px 14px rgba(158, 59, 46, 0.2);
}

.proc-step:nth-child(even) .proc-node {
  right: auto;
  left: -22px;
}

.proc-step .proc-body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 30px;
  transition: all 0.4s ease;
}

.proc-step:hover .proc-body {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--tan-soft);
}

.proc-step .proc-body .proc-cat {
  font-size: 11.5px;
  letter-spacing: 2px;
  color: var(--cinnabar);
  font-family: var(--font-en);
  margin-bottom: 8px;
}

.proc-step .proc-body h3 {
  font-size: 21px;
  font-family: var(--font-serif);
  margin-bottom: 10px;
  color: var(--ink);
}

.proc-step .proc-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.proc-step .proc-deliv {
  background: var(--rice);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  border-left: 3px solid var(--ink-g);
}

.proc-step .proc-deliv h5 {
  font-size: 12.5px;
  color: var(--ink-g);
  letter-spacing: 1.5px;
  font-family: var(--font-en);
  margin-bottom: 6px;
}

.proc-step .proc-deliv ul li {
  font-size: 13px;
  color: var(--body);
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.proc-step .proc-deliv ul li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--cinnabar);
  font-weight: 700;
}

@media (max-width: 800px) {
  .proc-timeline::before { left: 22px; }
  .proc-step,
  .proc-step:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 50px 60px;
  }
  .proc-step .proc-node,
  .proc-step:nth-child(even) .proc-node {
    left: 0;
    right: auto;
  }
}

/* ==========================================================================
   contact.html - 联系页地图占位
   ========================================================================== */
.map-wrap {
  margin-top: 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}

.map-wrap .map-cap {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: var(--rice);
}

.map-wrap .map-cap .map-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(158, 59, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinnabar);
}

.map-wrap .map-cap strong {
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-serif);
}

.map-wrap .map-cap span {
  font-size: 13px;
  color: var(--muted);
}

.map-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   honor.html - 荣誉资质（证书框式网格卡）
   ========================================================================== */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.honor-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.45s ease;
}

.honor-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 201, 119, 0.4);
  border-radius: calc(var(--r-md) - 4px);
  pointer-events: none;
  z-index: 3;
  transition: inset 0.4s ease;
}

.honor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tan-soft);
}

.honor-card:hover::before {
  inset: 5px;
  border-color: rgba(232, 201, 119, 0.75);
}

.honor-card .honor-frame {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rice-2), var(--rice-3));
}

.honor-card .honor-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.honor-card:hover .honor-frame img {
  transform: scale(1.05);
}

.honor-card .honor-seal {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cinnabar);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(158, 59, 46, 0.35);
  z-index: 4;
  transform: rotate(-8deg);
}

.honor-card .honor-body {
  position: relative;
  z-index: 2;
  padding: 22px 22px 26px;
  text-align: center;
}

.honor-card .honor-year {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 2px;
  color: var(--cinnabar);
  font-family: var(--font-en);
  margin-bottom: 8px;
}

.honor-card .honor-body h4 {
  font-size: 16px;
  font-family: var(--font-serif);
  margin-bottom: 8px;
  color: var(--ink);
}

.honor-card .honor-body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* 资质实力数据带 */
.honor-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, var(--ink-g-deep), var(--ink-g));
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 44px 30px;
  position: relative;
}

.honor-band::before {
  content: "HONOR";
  position: absolute;
  right: 30px;
  bottom: -30px;
  font-size: 130px;
  font-family: var(--font-en);
  font-weight: 700;
  color: rgba(232, 201, 119, 0.07);
  letter-spacing: 6px;
  line-height: 1;
}

.honor-band .hb-item {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.honor-band .hb-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(245, 240, 230, 0.15);
}

.honor-band .hb-item strong {
  display: block;
  font-size: 40px;
  color: #E8C977;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.honor-band .hb-item span {
  color: rgba(245, 240, 230, 0.75);
  font-size: 13.5px;
}

/* 合作伙伴/权威认证 logo 条 */
.author-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.author-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.author-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--tan-soft);
}

.author-item .au-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(45, 74, 62, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.author-item:hover .au-ico {
  background: linear-gradient(135deg, var(--ink-g), var(--ink-g-deep));
}

.author-item:hover .au-ico svg {
  stroke: #E8C977;
}

.author-item span {
  font-size: 12.5px;
  color: var(--body);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .author-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .honor-grid { grid-template-columns: 1fr; }
  .honor-band { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .honor-band .hb-item:nth-child(2)::after { display: none; }
  .author-strip { grid-template-columns: repeat(2, 1fr); }
}
