.csd-hero-section {
  padding: 48px 0;
  background: #F4F7FB url("/frontStatic/cn/image/newIndex/customer-detail-top-background.png") no-repeat center top;
  background-size: cover;
  box-sizing: border-box;
  margin-top: 64px; /* 防止被固定导航栏遮挡 */
}

.csd-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  height: 100%;
}

.csd-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.csd-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #15803D;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.csd-hero-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #0F172A;
}

.csd-hero-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.csd-hero-logo {
  height: 32px;
}

.csd-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.csd-hero-meta-item {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-size: 14px;
  color: #15803D;
  font-weight: 500;
}

.csd-hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  aspect-ratio: 4 / 3; /* 稍微增高比例，减少上下裁切 */
}

.csd-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* 填满容器，无左右留白，允许少量上下裁切 */
}

.csd-section {
  padding: 64px 0;
  background: #FFFFFF;
}

.csd-section-gray {
  background: #F8FAFC;
}

.csd-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 32px;
}

/* 价值体现：标题在上方，卡片在下方 */
.csd-section-metrics .csd-section-container {
  display: block;
}

.csd-section-left {
  flex: 3;
}

.csd-section-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csd-section-full {
  width: 100%;
}

.csd-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
}

.csd-section-body {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.csd-section-meta-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(213, 216, 214, 0.4);
}

.csd-section-meta-label {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 4px;
}

.csd-section-meta-value {
  font-size: 14px;
  color: #0F172A;
  font-weight: 600;
}

.csd-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.csd-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
}

.csd-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22C55E;
  margin-top: 6px;
  flex-shrink: 0;
}

.csd-metrics-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 最多三列，自动换行 */
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .csd-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 中屏两列 */
  }
}

@media (max-width: 640px) {
  .csd-metrics-grid {
    grid-template-columns: 1fr; /* 小屏一列 */
  }
}

.csd-metric-card {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(213, 216, 214, 0.4);
}

.csd-metric-value {
  font-size: 24px;
  font-weight: 800;
  color: #22C55E;
  margin-bottom: 4px;
}

.csd-metric-label {
  font-size: 13px;
  color: #0F172A;
  font-weight: 600;
  margin-bottom: 2px;
}

.csd-metric-desc {
  font-size: 12px;
  color: #6B7280;
}

.csd-more-stories-section {
  padding: 64px 0 72px;
  background: #FFFFFF;
}

.csd-more-stories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.csd-more-stories-title {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  text-align: center;
  margin-bottom: 32px;
}

.csd-more-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.csd-story-card {
  background: #F8FAFC;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(213, 216, 214, 0.35);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.csd-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.csd-story-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.csd-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.csd-story-content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.csd-story-company {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
}

.csd-story-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
}

.csd-story-link {
  margin-top: 4px;
  font-size: 13px;
  color: #16A34A;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.csd-bottom-cta-section {
  padding: 48px 24px;
}

.csd-bottom-cta-container {
  background: linear-gradient(to right, #F7F9F8 0%, #E8F5E8 100%);
  border-radius: 16px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 1228px;
  height: 240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-sizing: border-box;
}

.csd-bottom-cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(#6246E8 1px, transparent 1px),
    linear-gradient(90deg, #6246E8 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
}

.csd-bottom-cta-content,
.csd-bottom-cta-actions {
  position: relative;
  z-index: 10;
}

.csd-bottom-cta-content {
  max-width: 768px;
}

.csd-bottom-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #1F2A28;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.csd-bottom-cta-description {
  color: #1F2A28;
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.75;
  opacity: 0.8;
}

.csd-bottom-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .csd-bottom-cta-section {
    padding: 96px 24px;
  }

  .csd-bottom-cta-container {
    width: 1228px;
    height: 240px;
    padding: 80px;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .csd-bottom-cta-container {
    width: 100%;
    height: auto;
    min-height: 240px;
    padding: 48px 24px;
    box-sizing: border-box;
  }
}

@media (max-width: 960px) {
  .csd-hero-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .csd-hero-section {
    padding-top: 80px;
  }

  .csd-section-container {
    flex-direction: column;
  }
}


