/* ============================================
   productslist.css - 产品列表页专用样式
   对应页面：product_list（pageKey: product_list）
   ============================================ */

/* ===== 页面顶部横幅（page-hero） ===== */
.page-hero {
  position:relative; padding:180px 0 120px;
  background:linear-gradient(135deg,#151E2D 0%,#1e3a5f 50%,#1a4a7a 100%);
  color:#fff; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:url('/images/hero-banner.svg') center/cover no-repeat;
  opacity:.08; z-index:0; pointer-events:none;
}
.page-hero::after {
  content:''; position:absolute; top:-40%; right:-10%;
  width:600px; height:600px;
  background:radial-gradient(circle,rgba(37,99,235,.12) 0%,transparent 70%);
  border-radius:50%; z-index:0; pointer-events:none;
}
.page-hero .hero-inner { position:relative; z-index:2; text-align:center; }
.page-hero.hero-has-bg::after {
  content:''; position:absolute; inset:0;
  width:auto; height:auto; top:0; right:0;
  border-radius:0;
  background:linear-gradient(135deg,rgba(15,23,42,.85) 0%,rgba(15,23,42,.7) 50%,rgba(15,23,42,.5) 100%);
  z-index:1;
}
.page-hero .hero-custom-overlay {
  position:absolute; inset:0; z-index:1; pointer-events:none;
}
.page-hero.hero-ov::after { display:none; }
.case-list-hero .hero-custom-overlay {
  position:absolute; inset:0; z-index:1; pointer-events:none;
}
.page-hero .hero-breadcrumb { font-size:13px; color:rgba(255,255,255,.55); margin-bottom:12px; }
.page-hero .hero-breadcrumb a { color:rgba(255,255,255,.7); }
.page-hero .hero-breadcrumb a:hover { color:#fff; }
.page-hero h1 {
  font-size:clamp(1.8rem,3vw,2.6rem); font-weight:800;
  margin-bottom:12px; line-height:1.2;
}
.page-hero p {
  font-size:clamp(.95rem,1.3vw,1.05rem);
  color:rgba(255,255,255,.7); max-width:800px; margin:0 auto;
  line-height:1.7;
}

/* ===== 通用 Section ===== */
.section { padding:80px 0; position:relative; }
.section + .section::before {
  content:''; position:absolute; top:0; left:15%; right:15%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(37,99,235,.1),transparent);
  z-index:5; pointer-events:none;
}
.section-alt { background:var(--bg-gray); }
.section-dark { background:#151E2D; color:#fff; }
.section-blue { background:linear-gradient(135deg,#1e3a5f,#2563eb); color:#fff; }

.section-header { text-align:center; margin-bottom:50px; }
.section-tag {
  display:inline-block; padding:7px 22px; margin-bottom:16px;
  font-size:1.3rem; font-weight:800; letter-spacing:1.5px;
  color:var(--primary); background:rgba(37,99,235,.08);
  border-radius:50px;
}
.section-dark .section-tag { color:rgba(255,255,255,.8); background:rgba(255,255,255,.1); }
.section-title {
  font-size:clamp(1.6rem,2.5vw,2rem);
  font-weight:800; color:var(--text);
  margin-bottom:14px; line-height:1.25; position:relative;
}
.section-dark .section-title { color:#fff; }
.section-blue .section-title { color:#fff; }
.section-title::after {
  content:''; display:block;
  width:60px; height:4px;
  background:linear-gradient(90deg,var(--primary),var(--primary) 70%,#f59e0b 85%,#f59e0b);
  border-radius:2px; margin:16px auto 0; position:relative;
}
.section-title::before {
  content:''; position:absolute;
  width:8px; height:8px;
  background:#f59e0b;
  transform:rotate(45deg);
  border-radius:1.5px;
  left:calc(50% + 34px); top:calc(100% + 12px);
  z-index:1;
}
.section-blue .section-title::after { background:linear-gradient(90deg,rgba(255,255,255,.6),rgba(255,255,255,.6) 70%,rgba(255,255,255,.3),rgba(255,255,255,.3)); }
.section-blue .section-title::before { background:rgba(255,255,255,.4); }
.section-desc {
  color:var(--text-muted); font-size:1.05rem; line-height:1.8;
}
.section-dark .section-desc { color:rgba(255,255,255,.65); }
.section-blue .section-desc { color:rgba(255,255,255,.75); }

/* ===== Hub CTA 区段 ===== */
.hub-cta {
  margin: 60px 0 0; padding: 0;
  background: linear-gradient(135deg,#1e3a5f,#2563eb);
}
.hub-cta-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 40px;
  text-align:center; color:#fff;
}
.hub-cta-inner h2 { font-size:1.6rem; font-weight:800; margin-bottom:10px; }
.hub-cta-inner p { color:rgba(255,255,255,.75); margin-bottom:28px; }
.hub-cta-inner .btn-white {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 32px; font-size:1rem; font-weight:600;
  color:#151E2D; background:#fff; border-radius:8px;
  transition:all var(--transition);
}
.hub-cta-inner .btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(0,0,0,.2); }

/* ===== 列表空状态 ===== */
.list-empty {
  text-align:center; padding:80px 20px; color:var(--text-light);
}
.list-empty .empty-icon { font-size:3rem; margin-bottom:16px; opacity:.4; }
.list-empty p { font-size:1rem; }

/* ===== 淡入动画 ===== */
.fade-in { opacity:0; transform:translateY(20px); transition:all .6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ===== 栏目页交替图文布局（从 product.css 迁移） ===== */
.alt-row { padding: 80px 0; }
.alt-row-white { background: #fff; }
.alt-row-gray { background: #f8fafc; }
.alt-row-inner {
  display: flex; align-items: center; gap: 60px;
}
.alt-row-reverse { flex-direction: row-reverse; }
.alt-col-img { flex: 0 0 480px; max-width: 480px; }
.alt-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alt-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.alt-img-wrap:hover img { transform:scale(1.06); }
.alt-img-placeholder {
  display:flex; align-items:center; justify-content:center;
  width:100%; height:100%; background:var(--bg-alt);
}
.alt-col-text { flex:1; min-width:0; }
.alt-title {
  font-size:1.6rem; font-weight:800; color:var(--text);
  margin:0 0 16px; line-height:1.3;
}
.alt-desc {
  font-size:1.1rem; line-height:1.8; color:#000000;
  margin:0 0 20px;
}
.alt-tags { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px; }
.alt-tag {
  display:inline-block; padding:6px 16px;
  font-size:.82rem; font-weight:500;
  color:var(--primary); background:rgba(37,99,235,.08);
  border-radius:50px; text-decoration:none; transition:all .2s;
}
.alt-tag:hover { background:var(--primary); color:#fff; }
.alt-actions { display:flex; gap:12px; flex-wrap:wrap; }
.alt-actions .btn-detail,
.alt-actions .btn-consult { padding:12px 24px; font-size:.9rem; }

/* 全局按钮基础样式 */
.btn-detail {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 18px; font-size:.85rem; font-weight:600;
  border-radius:6px; text-decoration:none; cursor:pointer;
  transition:all .25s; white-space:nowrap;
  color:#fff; background:var(--primary); border:none;
}
.btn-detail:hover {
  color:#fff; background:var(--primary-dark);
  transform:translateY(-1px); box-shadow:0 4px 12px rgba(37,99,235,.3);
}
.btn-consult {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 18px; font-size:.85rem; font-weight:600;
  border-radius:6px; text-decoration:none; cursor:pointer;
  transition:all .25s; white-space:nowrap;
  color:#fff; background:#07c160; border:none;
}
.btn-consult:hover { background:#06ad56; transform:translateY(-1px); box-shadow:0 4px 12px rgba(7,193,96,.35); }

/* ===== 产品系列网格（从 product.css 迁移） ===== */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card { background:#fff; border:1px solid #e2e8f0; border-radius:12px; overflow:hidden; transition:box-shadow .2s,transform .2s; display:block; color:inherit; text-decoration:none; }
.product-card:hover { box-shadow:0 8px 30px rgba(0,0,0,.08); transform:translateY(-3px); }
.product-card-img { width:100%; aspect-ratio:1/1; overflow:hidden; background:#f8fafc; display:flex; align-items:center; justify-content:center; position:relative; }
.product-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease, filter .4s ease; }
.product-card:hover .product-card-img img { transform:scale(1.1); filter:brightness(1.08); }
.product-card-img::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(37,99,235,0) 40%, rgba(37,99,235,0.08) 100%); opacity:0; transition:opacity .4s ease; }
.product-card:hover .product-card-img::after { opacity:1; }
.product-card-img-placeholder { font-size:1.1rem; font-weight:700; color:#94a3b8; text-align:center; padding:20px; }
.product-card-body { padding:16px 16px 20px; }
.product-card-body h3 { font-size:1rem; font-weight:700; color:#1e293b; margin:0 0 8px; }
.product-card-body p { font-size:.82rem; color:#64748b; line-height:1.6; margin:0 0 14px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.product-card-body .btn-sm { display:inline-block; font-size:.8rem; font-weight:600; color:#2563eb; transition:all .2s; }
.product-card-body .btn-sm:hover { color:#1d4ed8; }
.product-footnote { grid-column:1/-1; text-align:center; color:#94a3b8; font-size:.85rem; margin:0; padding:12px 0 0; }
@media(max-width:900px) { .products-grid { grid-template-columns:repeat(2,1fr); gap:16px; } }
@media(max-width:480px) { .products-grid { grid-template-columns:1fr; gap:14px; } }

/* ===== 响应式 - 产品列表页 ===== */
@media(max-width:1024px) {
  .regions-grid { grid-template-columns:1fr 1fr; }
  .scenes-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .section { padding:50px 0; }
  .regions-grid { grid-template-columns:1fr; }
  .scenes-grid { grid-template-columns:1fr; }
  .case-grid { grid-template-columns:1fr; }
  .case-row.reverse .case-img { order:1; }
  .case-row.reverse .case-text { order:2; }
  .case-img img { height:220px; }
}
@media(max-width:480px) {
  .section-tag { font-size:1.1rem; padding:5px 16px; }
}

/* ===== Hero 响应式 ===== */
@media(max-width:768px) {
  .page-hero { padding:110px 0 50px; }
  .hub-cta-inner { padding:40px 24px; }
}
@media(max-width:480px) {
  .hub-cta-inner h2 { font-size:1.2rem; }
}

/* ===== 交替布局响应式 ===== */
@media(max-width:992px) {
  .alt-row-inner { flex-direction:column !important; gap:32px; }
  .alt-col-img { flex:0 0 100%; max-width:100%; }
  .alt-row { padding:50px 0; }
  .alt-title { font-size:1.3rem; }
}
@media(max-width:480px) {
  .alt-row { padding:36px 0; }
  .alt-actions { flex-direction:column; align-items:stretch; }
  .alt-actions .btn-detail,
  .alt-actions .btn-consult { justify-content:center; }
}

/* ============================================
   案例展示区（product_list_case 模板）
   高端大气上档次案例画廊
   ============================================ */
.case-gallery {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 30%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}
.case-gallery::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.case-gallery::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   租摆案例列表页（product_list_case.html）
   独立 case-list-* 前缀，绿色主题、个性化布局
   ============================================ */

/* --- Hero Banner --- */
.case-list-hero {
  position: relative; padding: 160px 0 80px;
  background: linear-gradient(135deg, #0d3323 0%, #1a4d3a 50%, #00b050 100%);
  color: #fff; overflow: hidden;
}
.case-list-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13, 51, 35, 0.82) 0%, rgba(26, 77, 58, 0.78) 100%);
  z-index: 1;
}
.case-list-hero-inner { position: relative; z-index: 2; text-align: center; }
.case-list-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 24px; font-size: .9rem; flex-wrap: wrap;
}
.case-list-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .3s; }
.case-list-breadcrumb a:hover { color: #fff; }
.case-list-breadcrumb svg { color: rgba(255,255,255,.4); }
.case-list-breadcrumb span { color: rgba(255,255,255,.9); }
.case-list-hero-label {
  display: inline-block; padding: 6px 18px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: 2px;
  border-radius: 50px; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.2);
}
.case-list-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; margin: 0 0 16px; line-height: 1.25;
}
.case-list-hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.85);
  margin: 0 auto; line-height: 1.7; max-width: 700px;
}
.case-list-hero-meta {
  display: flex; justify-content: center; gap: 24px; margin-top: 28px;
  flex-wrap: wrap;
}
.case-list-hero-meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .9rem; color: rgba(255,255,255,.85);
}

/* --- 统计条幅 --- */
.case-list-stats {
  padding: 32px 0;
  background: linear-gradient(135deg, #1a4d3a 0%, #0d3323 100%);
  color: #fff;
}
.case-list-stats-inner {
  display: flex; align-items: center; justify-content: space-around;
  gap: 24px; flex-wrap: wrap;
}
.case-list-stat-item { text-align: center; }
.case-list-stat-num {
  font-size: 2.2rem; font-weight: 800; color: #9de035;
  line-height: 1; margin-bottom: 6px;
}
.case-list-stat-num em {
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.85);
  font-style: normal; margin-left: 4px;
}
.case-list-stat-label {
  font-size: .85rem; color: rgba(255,255,255,.7);
}
.case-list-stat-divider {
  width: 1px; height: 48px; background: rgba(255,255,255,.15);
}

/* --- 筛选标签云 --- */
.case-list-filter {
  padding: 32px 0; background: #fafbf9;
  border-bottom: 1px solid #e8efeb;
}
.case-list-filter-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; color: #1a4d3a; font-weight: 600;
  margin-right: 16px;
}
.case-list-filter-label svg { width: 16px; height: 16px; color: #00b050; }
.case-list-filter-tags {
  display: inline-flex; flex-wrap: wrap; gap: 10px;
  vertical-align: middle;
}
.case-list-filter-tag {
  display: inline-block; padding: 8px 20px;
  background: #fff; color: #333333; text-decoration: none;
  border: 1px solid #e8efeb; border-radius: 50px;
  font-size: .88rem; font-weight: 500; transition: all .3s;
}
.case-list-filter-tag:hover {
  background: #f0f7f3; border-color: #00b050; color: #1a4d3a;
}
.case-list-filter-tag.is-active {
  background: linear-gradient(135deg, #1a4d3a 0%, #00b050 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 12px rgba(0,176,80,.25);
}

/* --- 案例主区 --- */
.case-list-main { padding: 80px 0; background: #fff; }

/* 瀑布流网格（首图大格） */
.case-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.case-list-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid #e8efeb; border-radius: 16px;
  overflow: hidden; transition: all .3s ease;
}
.case-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,77,58,.12);
  border-color: rgba(0,176,80,.3);
}
.case-list-card-large { grid-column: span 2; grid-row: span 2; }
.case-list-card-large .case-list-card-img { aspect-ratio: 16/10; }
.case-list-card-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: #fafbf9;
}
.case-list-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.case-list-card:hover .case-list-card-img img { transform: scale(1.05); }
.case-list-card-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: #1a4d3a; opacity: .3; background: linear-gradient(135deg, #f0f7f3 0%, #e8efeb 100%);
}
.case-list-card-placeholder svg { width: 56px; height: 56px; }
.case-list-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,51,35,.75) 0%, transparent 50%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  padding: 16px; opacity: 0; transition: opacity .3s ease;
}
.case-list-card:hover .case-list-card-overlay { opacity: 1; }
.case-list-card-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px; background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px); color: #fff;
  font-size: .76rem; font-weight: 600; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  align-self: flex-start;
}
.case-list-card-view {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; background: #9de035; color: #1a4d3a;
  font-size: .85rem; font-weight: 700; border-radius: 50px;
  align-self: flex-end;
  transform: translateY(10px); transition: transform .3s;
}
.case-list-card:hover .case-list-card-view { transform: translateY(0); }
.case-list-card-view svg { width: 14px; height: 14px; }

.case-list-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.case-list-card-title {
  font-size: 1.1rem; font-weight: 700; color: #1a4d3a;
  margin: 0 0 10px; line-height: 1.4;
  transition: color .3s;
}
.case-list-card-large .case-list-card-title { font-size: 1.3rem; }
.case-list-card:hover .case-list-card-title { color: #00b050; }
.case-list-card-summary {
  font-size: .9rem; color: #333333; line-height: 1.7;
  margin: 0 0 16px; flex: 1;
  display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; overflow: hidden;
}
.case-list-card-summary-large {
  font-size: 16px; line-height: 1.8;
  -webkit-line-clamp: 4;
}
.case-list-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px dashed #e8efeb;
}
.case-list-card-cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; color: #666;
}
.case-list-card-cat svg { color: #00b050; }
.case-list-card-more {
  font-size: .85rem; font-weight: 600; color: #00b050;
  transition: color .3s;
}
.case-list-card:hover .case-list-card-more { color: #1a4d3a; }

/* 分页 */
.case-list-pagination {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 48px;
}
.case-list-page-btn, .case-list-page-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  background: #fff; color: #333333; text-decoration: none;
  border: 1px solid #e8efeb; border-radius: 10px;
  font-size: .9rem; font-weight: 500; transition: all .3s;
  cursor: pointer;
}
.case-list-page-btn:hover, .case-list-page-num:hover {
  background: #f0f7f3; border-color: #00b050; color: #1a4d3a;
}
.case-list-page-btn.is-disabled {
  background: #fafbf9; color: #cbd5e1; cursor: not-allowed;
  border-color: #f0f7f3;
}
.case-list-page-btn svg { width: 14px; height: 14px; }
.case-list-page-num.is-active {
  background: linear-gradient(135deg, #1a4d3a 0%, #00b050 100%);
  color: #fff; border-color: transparent; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,176,80,.25);
}
.case-list-page-dots {
  display: inline-flex; align-items: center; padding: 0 8px;
  color: #94a3b8;
}
.case-list-page-numbers { display: flex; gap: 6px; }
.case-list-page-info {
  text-align: center; margin-top: 16px;
  font-size: .85rem; color: #666;
}

/* 空状态 */
.case-list-empty {
  text-align: center; padding: 80px 20px;
}
.case-list-empty-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 96px; height: 96px; border-radius: 50%;
  background: #f0f7f3; color: #1a4d3a; margin-bottom: 20px;
}
.case-list-empty h3 { font-size: 1.2rem; color: #1a4d3a; margin: 0 0 8px; }
.case-list-empty p { font-size: .92rem; color: #333333; margin: 0 0 24px; }
.case-list-empty-btn {
  display: inline-block; padding: 12px 28px;
  background: linear-gradient(135deg, #1a4d3a 0%, #00b050 100%);
  color: #fff; text-decoration: none; font-size: .9rem; font-weight: 600;
  border-radius: 50px; transition: all .3s;
}
.case-list-empty-btn:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,176,80,.3);
}

/* --- GEO 区块 --- */
.case-list-geo {
  padding: 80px 0; background: #fafbf9;
}
.case-list-geo-inner {
  display: flex; align-items: center; gap: 40px;
  background: #fff; border: 1px solid #e8efeb;
  border-radius: 20px; padding: 40px;
  box-shadow: 0 8px 32px rgba(26,77,58,.06);
}
.case-list-geo-icon {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 20px;
  background: linear-gradient(135deg, #f0f7f3 0%, #e8efeb 100%);
  color: #00b050;
}
.case-list-geo-icon svg { width: 40px; height: 40px; }
.case-list-geo-content h2 {
  font-size: 1.4rem; font-weight: 800; color: #1a4d3a;
  margin: 0 0 12px;
}
.case-list-geo-content p {
  font-size: .95rem; color: #333333; line-height: 1.8; margin: 0 0 16px;
}
.case-list-geo-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.case-list-geo-tag {
  padding: 6px 16px; background: #f0f7f3; color: #1a4d3a;
  font-size: .82rem; font-weight: 600; border-radius: 50px;
  border: 1px solid #e8efeb;
}

/* --- CTA 区块 --- */
.case-list-cta {
  position: relative; padding: 100px 0;
  background: linear-gradient(135deg, #0d3323 0%, #1a4d3a 100%);
  overflow: hidden;
}
.case-list-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,176,80,.18) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(157,224,53,.1) 0%, transparent 50%);
}
.case-list-cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.case-list-cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800;
  color: #fff; margin: 0 0 12px;
}
.case-list-cta-content p {
  font-size: 1.1rem; color: rgba(255,255,255,.85); margin: 0;
}
.case-list-cta-actions { display: flex; gap: 16px; flex-shrink: 0; }
.case-list-cta-btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: #9de035; color: #1a4d3a;
  font-size: 1rem; font-weight: 700; border: none; border-radius: 50px;
  cursor: pointer; transition: all .3s;
  box-shadow: 0 10px 40px rgba(157,224,53,.25);
}
.case-list-cta-btn-main:hover {
  transform: translateY(-3px); background: #fff;
  box-shadow: 0 15px 50px rgba(157,224,53,.4);
}
.case-list-cta-btn-main svg { width: 20px; height: 20px; }
.case-list-cta-btn-phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: transparent; color: #fff;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  border: 2px solid rgba(255,255,255,.4); border-radius: 50px;
  transition: all .3s;
}
.case-list-cta-btn-phone:hover {
  border-color: #fff; background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}
.case-list-cta-btn-phone svg { width: 20px; height: 20px; }

/* --- 响应式 --- */
@media (max-width: 992px) {
  .case-list-grid { grid-template-columns: repeat(2, 1fr); }
  .case-list-card-large { grid-column: span 2; grid-row: span 1; }
  .case-list-geo-inner { flex-direction: column; text-align: center; }
  .case-list-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .case-list-hero { padding: 110px 0 50px; }
  .case-list-main { padding: 60px 0; }
  .case-list-grid { grid-template-columns: 1fr; gap: 20px; }
  .case-list-card-large { grid-column: span 1; }
  .case-list-stats-inner { gap: 16px; }
  .case-list-stat-divider { display: none; }
  .case-list-pagination { flex-wrap: wrap; gap: 8px; }
  .case-list-page-numbers { order: -1; width: 100%; justify-content: center; }
  .case-list-cta { padding: 60px 0; }
  .case-list-cta-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .case-list-cta-btn-main, .case-list-cta-btn-phone { justify-content: center; width: 100%; }
}

