/* 解决方案详情：Hero 左文、上浮卡片、应用案例区块 */

.g-solution-detail-page {
  --g-sd-accent: #f5a200;
  --g-sd-hero-h: clamp(16.67vw, 42vw, 28.96vw);
  /* 与 .pc-nav__inner 同高：垂直居中时不把顶栏区域算进对齐范围 */
  --g-sd-header-offset: 3.75vw;
}

@media (max-width: 600px) {
  .g-solution-detail-page {
    --g-sd-header-offset: 2.92vw;
  }
}

/* Hero */
.g-solution-detail-hero {
  position: relative;
  min-height: var(--g-sd-hero-h);
  overflow: hidden;
}


.g-solution-detail-hero__bg {
  position: absolute;
  inset: 0;

  z-index: 1;
}

.g-solution-detail-hero__image-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.g-solution-detail-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.g-solution-detail-hero__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
  z-index: 0;
}

.g-solution-detail-hero__inner {
  position: relative;
  z-index: 2;
  min-height: var(--g-sd-hero-h);
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-top: var(--g-sd-header-offset);
 
}

.g-solution-detail-hero__text {
  max-width: min(44.27vw, 100%);
  color: #fff;
}

.g-solution-detail-hero__title {
  margin: 0 0 1.67vw;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: clamp(1.13vw, 3.2vw, 2.5vw);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.g-solution-detail-hero__rule {
  width: 5vw;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.67vw;
  border-radius: 1px;
}



.g-solution-detail-hero__desc {
  margin: 0;
  font-family: 'Exo', sans-serif;
  font-weight: 400;
  font-size: clamp(15.20px, 1.8vw, 0.94vw);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 41.67vw;
}

@media (max-width: 768px) {
  .g-solution-detail-hero__desc {
    line-height: 1.3;
  }
}

/* 面包屑贴在 Hero 下，白底区之上 */
.g-solution-detail-layout {
  background: #f5f5f7;
  padding-top: 3.13vw;
}

@media (max-width: 1236px) {
  .g-solution-detail-layout {
    padding-top: 1.56vw;
  }
}



@media (max-width: 1236px) {
  .g-solution-detail-hero {
    margin-top: 3.02vw;
  }
    .g-solution-detail-hero__inner{
    padding-top: 0%!important;
  }
}
/* 上浮卡片 */
.g-solution-detail-stack {
  margin-top: clamp(-2.92vw, -8vw, -2.08vw);
  position: relative;
  z-index: 2;
  width: 100%;
}

.g-solution-detail-card {
  background: #fff;
  border-radius: 12px;
 
  overflow: hidden;
  margin-bottom: clamp(2.08vw, 6vw, 3.75vw);
}

.g-solution-detail-card__media {
  position: relative;
  width: 100%;
 
  background: #fafafa;
}

@media (max-width: 1236px) {
  .g-solution-detail-card__media {
   
   
  }
}

.g-solution-detail-card__img {
 
  width: 100%;
  
  object-fit: cover;
  overflow: auto;
}

.g-solution-detail-card__kehu {
  
  padding: clamp(1.25vw, 4vw, 2.08vw) clamp(1.04vw, 3vw, 2.92vw) clamp(1.67vw, 5vw, 2.5vw);
}

.g-solution-kehu-col__title {
  margin: 0 0 1.67vw;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  max-width: 21.88vw;
  font-size: 1.46vw;
  color: #1a1a1a;
  line-height: 1.35;
  min-height: calc(2 * 1.35 * 1.46vw);
}

.g-solution-kehu-col__accent {
  width: 2.08vw;
  height: 4px;
  background: var(--g-sd-accent);
  border-radius: 2px;
  margin-bottom: 1.67vw;
}

.g-solution-kehu-col__text {
  margin: 0;
  max-width: 21.88vw;
  font-size: 0.94vw;
  line-height: 1.5;
  color: #444;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* APPLICATION CASES */
.g-solution-cases-section {
  padding: 0 0 8px;
}

.g-solution-cases-section__head {
  margin-bottom: clamp(1.25vw, 4vw, 1.88vw);
}
.showSolutionCasesSection{
 
  
}
.g-solution-cases-section__title {
  margin: 0 0 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25vw, 2.2vw, 2.08vw);

  color: #424558;
  text-transform: uppercase;
}

.g-solution-cases-section__subtitle {
  margin: 0;
  font-family: 'Exo', sans-serif;
  font-size: 1.25vw;
  color: #2b2b2b;
 
  line-height: 1.5;
}

.g-solution-case-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.g-solution-case-card:hover {
  box-shadow: 0 10px 1.67vw rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.g-solution-case-card__media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.g-solution-case-card__media {
  position: relative;
  padding-top: 62%;
  background: #f0f0f0;
}

.g-solution-case-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-solution-case-card__body {
  padding: 16px 0.94vw 0.94vw;
  flex: 1;
  display: flex;
  
  flex-direction: column;
}

.g-solution-case-card__title {
  margin: 0 0 14px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 1.25vw;
  line-height: 1.35;
}

.g-solution-case-card__title a {
  color: #1a1a1a;
  text-decoration: none;
}

.g-solution-case-card__title a:hover {
  color: var(--g-sd-accent);
}

.g-solution-case-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.g-solution-case-card__spec {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.g-solution-case-card__spec-icon {
  position: relative;
  display: inline-flex;
  color: var(--g-sd-accent);
  font-size: 1.13vw;
  flex-shrink: 0;
}

.g-solution-case-card__spec-icon iconify-icon.g-solution-case-card__bolt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12.00px;
}

.g-solution-case-card__spec-text {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 0.94vw;
  color: var(--g-sd-accent);
}

.g-solution-case-card__spec-text--muted {
  color: #999;
  font-weight: 500;
}

.g-solution-case-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #9799a3;
  border: 1px solid #e3e3e6;
  border-radius: 52.03vw;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.g-solution-case-card__cta:hover {
  background: var(--g-sd-accent);
  border-color: var(--g-sd-accent);
  color: #fff;
}

.g-solution-cases-section__more-wrap {
  text-align: center;
  margin: clamp(1.46vw, 5vw, 2.29vw) auto;
}

.g-solution-cases-section__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 1.46vw;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 1.04vw;
  color: #fff;
  background: #424558;
  border-radius: 52.03vw;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.g-solution-cases-section__more:hover {
  background: #2f3d4a;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .g-products-breadcrumb {
    display: none;
  }
.g-solution-kehu-col__accent{
  margin-bottom: 16px;
}
  .g-solution-detail-stack {
    margin-top: -1.67vw;
  }
  .g-solution-detail-card__kehu{
    padding-top: 0;
    background-color: #f5f5f5;
    padding-bottom: 0;
  
  }
}


@media (max-width: 768px) {
  .g-solution-detail-hero__title {
    margin-bottom: 16px;
  }
  .g-solution-detail-hero__rule {
    margin-bottom: 16px;
  }
  .g-solution-kehu-col__title{
    font-size: 1.09vw;
    margin-bottom: 16px;
    
    min-height: fit-content ;
  }
  .g-solution-kehu-col__text{
    font-size: 15px;
  }
  .g-products-layout__inner{
    padding-bottom: 0;
  }
  .g-solution-cases-section__more-wrap {
  text-align: center;
  margin-bottom: 12px;
}
}