/* ==========================================================================
   拓冰建站 pgsm.cn - 全站附加样式
   返回顶部、详情页组件、列表页、价格、联系、团队、时间线、FAQ 等
   ========================================================================== */

/* ---------- 返回顶部 ---------- */
.back-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  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: 0 14px 30px rgba(214, 54, 38, 0.45);
}

/* ---------- 面包屑 ---------- */
.bread-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
}

.bread-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bread-bar a {
  color: var(--olive-soft);
  transition: color 0.3s ease;
}

.bread-bar a:hover {
  color: var(--red);
}

.bread-bar .sep {
  color: var(--sand-3);
}

.bread-bar .cur {
  color: var(--olive-deep);
  font-weight: 600;
}

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

/* 详情页大图横幅 */
.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: 30px 36px;
  background: linear-gradient(0deg, rgba(31, 42, 15, 0.88) 0%, transparent 100%);
  color: #fff;
}

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

.detail-banner .banner-cap p {
  color: rgba(244, 239, 226, 0.8);
  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;
}

.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: var(--red-soft);
}

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

/* 特性卡组 */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.spec-card {
  padding: 32px 26px;
  background: var(--white);
  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(--white) 0%, var(--sand) 100%);
}

.spec-card .spec-ico {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand-2), var(--khaki-cream));
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.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: 28px 16px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}

.metric-row .metric strong {
  display: block;
  font-size: 34px;
  color: var(--red);
  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(3, 1fr);
  gap: 24px;
}

.svc-tile {
  position: relative;
  background: var(--white);
  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(--olive-soft) 0%, var(--olive-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(--sand-3);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.4s ease;
}

.svc-tile:hover .tile-no {
  color: rgba(214, 54, 38, 0.5);
}

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

.svc-tile:hover .tile-ico {
  background: rgba(214, 54, 38, 0.25);
}

.svc-tile:hover .tile-ico svg {
  stroke: var(--red-bright);
}

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

.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(244, 239, 226, 0.85);
}

.svc-tile .tile-more {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  transition: all 0.4s ease;
}

.svc-tile:hover .tile-more {
  color: var(--khaki-light);
}

@media (max-width: 1100px) {
  .svc-overview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-overview { 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(--white);
  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(--olive-soft), var(--olive-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(--white);
  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 var(--red-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* ==========================================================================
   详情页（show.html）文章排版
   ========================================================================== */
.article-wrap {
  background: var(--white);
  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;
}

.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(--red);
}

.article-content h3 {
  font-size: 18px;
  margin: 28px 0 12px;
}

.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(--sand-2);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  color: var(--olive);
  margin-right: 8px;
}

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

.faq-item {
  background: var(--white);
  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(--khaki);
}

.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: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  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(--white);
  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(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-8px);
}

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

.price-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

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

.price-card .price-num {
  font-size: 42px;
  color: var(--red);
  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(--olive);
  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(--olive-ink), var(--olive-deep));
  color: var(--sand);
  border-radius: var(--r-lg);
  padding: 44px 38px;
}

.contact-info-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 24px;
}

.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(214, 54, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red-bright);
}

.contact-info-card .ci-body p {
  color: rgba(244, 239, 226, 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(--white);
  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(--sand);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--olive-soft);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74, 93, 35, 0.12);
}

.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(--white);
  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;
}

.team-card .t-info .t-role {
  font-size: 12.5px;
  color: var(--red);
  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(--red), var(--olive));
}

.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(--white);
  border: 3px solid var(--red);
  z-index: 2;
}

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

.tl-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   荣誉资质卡
   ========================================================================== */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.honor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.honor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--khaki);
}

.honor-card .h-ico {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--khaki-cream), var(--sand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.honor-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.honor-card p {
  font-size: 12px;
  color: var(--muted);
}

/* ==========================================================================
   河南城市卡
   ========================================================================== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

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

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

.city-card .c-img {
  height: 180px;
  overflow: hidden;
}

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

.city-card:hover .c-img img {
  transform: scale(1.08);
}

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

.city-card .c-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

.city-card .c-body .c-more {
  font-size: 13.5px;
  color: var(--red);
  font-weight: 600;
}

/* ==========================================================================
   套餐对比表
   ========================================================================== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.compare-table th {
  background: linear-gradient(135deg, var(--olive-soft), var(--olive-deep));
  color: #fff;
  font-weight: 600;
}

.compare-table th:nth-child(3) {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
}

.compare-table td:nth-child(3) {
  background: var(--red-soft);
  font-weight: 600;
  color: var(--ink);
}

.compare-table tr:hover td {
  background: var(--sand);
}

.compare-table tr:hover td:nth-child(3) {
  background: #FAD3CD;
}

/* ==========================================================================
   合作伙伴
   ========================================================================== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.partner-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 18px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.partner-item .p-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--olive-deep);
  margin-top: 10px;
}

.partner-item .p-svg {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}

/* ==========================================================================
   网站地图
   ========================================================================== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sitemap-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px;
}

.sitemap-block h3 {
  font-size: 17px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red-soft);
  color: var(--olive-deep);
}

.sitemap-block ul li {
  margin-bottom: 9px;
}

.sitemap-block ul li a {
  font-size: 13.5px;
  color: var(--body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sitemap-block ul li a::before {
  content: "›";
  color: var(--red);
  font-weight: 700;
}

.sitemap-block ul li a:hover {
  color: var(--red);
}

/* ==========================================================================
   响应式
   ========================================================================== */
@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); }
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 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; }
  .sitemap-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; }
  .honor-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 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; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
