.container{
  width: 100%;
  max-width: 1400px;  /* 大屏最大宽度，外贸站主流尺寸 */
  margin: 0 auto;     /* 水平居中 */
  padding-inline: 20px; /* 左右内边距，防止内容贴边 */
}


/* 外层横幅容器 */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
/* 全局黑色半透明遮罩，提升白色文字对比度 */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35); /* 0.55深浅可调，数值越大越暗 */
}

/* 底层背景图 LCP核心 */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

/* 内容居中容器 */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

/* 文本内容限制宽度 */
.hero-text-wrap {
  max-width: 680px;
}

/* 标题 */
.hero-text-wrap h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-weight: 700;
  color:#fff;
  margin: 0 0 1.2rem;
}

.highlight {
  color: var(--primary);
}

/* 描述文本 */
.hero-desc {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #fff;
  margin: 0 0 1.5rem;
}

/* 特性列表 */
.hero-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  color: #fff;
}
.hero-feature-list li {
  font-size: 1.2rem;
  color: #fff !important;
  margin: 0 0 0.75rem;
  padding-left: 28px;
  position: relative;
}
.hero-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  display: grid;
  place-content: center;
}

/* CTA按钮区域 */
.hero-cta {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-quote,
.btn-whatsapp{
padding:14px 28px;
border-radius:2px;
font-size:15px;
font-weight:600;
text-decoration:none;
transition:var(--transition);
border:none;
cursor:pointer;
}

/* primary */
.btn-quote{
background:var(--primary);
color:#fff;
box-shadow:0 6px 16px rgba(56,161,105,.25);
}

.btn-quote:hover{
background:var(--primary-dark);
transform:translateY(-1px);
}

.btn-whatsapp {
    background: transparent;
    border:1px solid #fff;
    color:#fff;
    padding:14px 24px;
    border-radius:2px;
    text-decoration:none;
    transition:var(--transition);
}

.hero-cta1 .btn-whatsapp {
    background: transparent !important;
    border:1px solid var(--primary) !important;
    color:var(--primary) !important;
    padding:14px 24px !important;
    border-radius:2px !important;
    text-decoration:none !important;
    transition:var(--transition);
}

.btn-whatsapp:hover{
    border-color:#f7f8f9;
    color:#f7f8f9;
}
.hero-cta1 .btn-whatsapp:hover{
    border-color:var(--primary-dark);
    color:var(--primary-dark);
}
.hero-badge {
  display: inline-block;
  background: var(--border-light);
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

/* 移动端统一适配 */
@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
    padding: 40px 0;
    align-items: flex-start;
  }
  .hero-inner {
    padding: 0rem 1rem 1rem;
  }
  .hero-text-wrap h1 {
    font-size: 1.9rem;
    margin: 10px 0 14px;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .hero-feature-list {
    margin: 1.2rem 0 22px;
  }
  .hero-feature-list li {
    font-size: 1rem;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-badge {
    font-size: 13px;
    padding: 5px 14px;
    margin-bottom: 0.7rem;
  }
}



.partner-advantage-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.sectionrl{padding: 0 24px;}

.section-en-title {
  font-size: 15px;
  color:var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.section-cn-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.2;
}
.divider-line {
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 24px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 32px;
  max-width: 420px;
}

.more-btn {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
}
.more-btn:hover {
  background-color: var(--primary-dark);
	color:#fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--bg-white);
  padding: 36px 24px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat-card.highlight {
  border: 2px solid var(--primary);
}
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 8px;
}
.stat-note {
  font-size: 16px;
  color: var(--muted);
}

@media (max-width: 992px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .section-cn-title {
    font-size: 23px;
  }
  .stat-number {
    font-size: 36px;
  }
}


.partner-advantage-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.sectionrl{padding: 0 24px;}

/* 移除左侧文字相关全部样式，删除section-en-title/section-cn-title/divider-line/section-desc/more-btn */

/* 布局改为单栏，整行放卡片 */
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

/* 4列均分卡片桌面端 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--bg-white);
  padding: 36px 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.stat-card.highlight {
  border: 2px solid var(--primary);
}
/* 卡片大标题 */
.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
/* 复用全局hero对勾列表，覆盖卡片内文字颜色 */
.stat-card .hero-feature-list {
  margin: 0;
}
.stat-card .hero-feature-list li {
  color: var(--muted) !important;
  font-size: 16px;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 20px;
  }
}


/* ==================== Expertise Section 统一新品卡片风格 ==================== */
.expertise-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.expertise-card {
  text-align: center;
}
/* 图片容器 */
.expertise-img {
  border-radius: 4px;
  overflow: hidden;
}
.expertise-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
/* 悬浮圆形PCB图标，和新品circle-icon完全一致 */
.circle-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -24px auto 16px;
  position: relative;
  z-index: 2;
}
/* 卡片标题 */
.card-title {
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--text);
}
/* 卡片描述文字 */
.card-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* 响应式 和新品板块同步断点 */
@media (max-width: 1200px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .expertise-section {
    padding: 48px 0;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .expertise-img img {
    height: 220px;
  }
}

/* 全屏背景CTA模块 */
.cta-full-section {
  width: 100%;
  padding: 45px 0;
  position: relative;
  overflow: hidden;
}

/* 背景图片 */
.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* 渐变深色遮罩，文字更清晰 */
.cta-full-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0.9) 55%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.cta-full-section .container {
  position: relative;
  z-index: 2;
}
.cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* 大字标题 - 加强文字阴影 */
.cta-big-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 12px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.95);
}

/* 小字描述 - 提高白色透明度+阴影 */
.cta-small-text {
  color: rgba(255, 255, 255, 0.93);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.cta-inner .more-btn {
  display: inline-block;
}

/* 移动端适配 */
@media (max-width: 576px) {
  .cta-full-section {
    padding: 30px 0;
  }
  .cta-big-title {
    font-size: 24px;
  }
  .cta-small-text {
    font-size: 16px;
  }
}

/* ========== Why Choose Us Section 左右分栏 + 上图下文卡片 ========== */
.why-choose-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-head .section-desc {
  margin: 16px 0 0;
  max-width: unset;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.why-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
}

.card-body {
  padding: 22px 20px;
}
/* SVG图标+标题同行布局 */
.title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.card-icon {
  width: 26px;
  height: 26px;
  color: var(--primary);
  flex-shrink: 0;
}
.title-row h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

.card-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .why-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-image {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .why-choose-section {
    padding: 48px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-image {
    height: 150px;
  }

  .card-body {
    padding: 18px 16px;
  }

  .card-icon {
    width: 22px;
    height: 22px;
  }

  .title-row h3 {
    font-size: 16px;
  }
}


/* ========== Certificates Module 卡片优化版 ========== */
.cert-section {
  padding: 70px 0;
  background-color: var(--bg-light);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
/* 完整卡片容器，带阴影圆角 */
.cert-card {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.11);
}
/* 证书图片加高 */
.cert-img {
  width: 100%;
  overflow: hidden;
}
.cert-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cert-card:hover .cert-img img {
  transform: scale(1.04);
}
/* 底部文字内边距，卡片内留白更舒服 */
.cert-text {
  padding: 18px 16px 22px;
  text-align: center;
}
.cert-desc {
  margin: 0;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.65;
  color: var(--muted);
}

/* 平板适配 2列 */
@media (max-width: 1200px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .cert-img img {
    height: 420px;
  }
}
/* 手机端单列，自适应高度缩小，内边距优化 */
@media (max-width: 768px) {
  .cert-section {
    padding: 50px 0;
  }
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 8px;
  }
  .cert-img img {
    height: 360px;
  }
  .cert-text {
    padding: 16px 14px 20px;
  }
}
@media (max-width: 576px) {
  .cert-img img {
    height: 300px;
  }
}


    
  

.faq-wrap {
  padding: 60px 0;
  background: var(--bg-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap:2rem;
  align-items: start;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* FAQ 折叠卡片 */
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  margin-bottom: 0.6rem;
  border-radius: 4px;
  transition: border-color var(--transition);
}
.faq-item[open] {
  border-color: var(--primary);
}

/* 问题标题：右侧加宽内边距，文字不和箭头重叠 */
.faq-item summary {
  padding: 16px 45px 16px 18px;
  font-size: 17px;
  list-style: none;
  cursor: pointer;
  position: relative;
  color: var(--text);
  font-weight: 700;
  transition: color var(--transition);
  word-break: break-all;
  overflow-wrap: break-word;
}
.faq-item[open] summary {
  color: var(--primary);
}
/* 隐藏原生三角 */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* 下拉箭头位置不变 */
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 8px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23222222' stroke-width='1.5' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

/* 回答内容 */
.faq-content {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  word-break: break-all;
  overflow-wrap: break-word;
}

/* 响应式 */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .faq-left {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .faq-grid-wrap {
    padding: 0 12px;
    margin-bottom: 0px;
  }
}
    



.news-section {

  padding: 60px 0; /* 原来80px 0，改成只留顶部padding，底部0 */

  background-color: var(--bg-light);
}

.news-row {
 
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.news-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: var(--transition);
}
.news-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.news-img {
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}
.news-card:hover .news-img img {
  transform: scale(1.05);
}
.news-info {
  padding: 20px;
}
.news-date {
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.news-title {
  font-size: 19px;
  margin: 0 0 12px;
  line-height: 1.4;
}
.news-title a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}
.news-title a:hover {
  color: var(--primary);
}
.news-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* 统一全站响应式阶梯 */
@media (max-width: 1200px) {
  .news-right {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .news-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .news-row {
    padding: 0 6px;
  }
  .news-right {
    grid-template-columns: 1fr;
  }
}



/* 区块取消上下padding，紧贴上下内容 */
.cta-banner-section {
  width: 100%;
  padding: 0 0 0 !important;
  margin: 0 0 0 !important;
}
.cta-bg-wrap {
  width: 100%;
  /* 删除原来的background相关全部属性 */
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;
}

/* 新增背景图片样式 */
.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
/* 新增渐变遮罩，替代原来background渐变 */
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, rgba(0,0,0,0.25) 100%);
}

/* 文字容器提升层级，保证在遮罩上方，原有样式不变 */
.cta-row {
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.cta-text {
  max-width: 620px;
}

/* 响应式完全保留，无改动 */
@media (max-width: 992px) {
  .cta-bg-wrap {
    min-height: 360px;
  }
}
@media (max-width: 576px) {
  .cta-row {
    padding: 0 6px;
  }
 
  .cta-bg-wrap {
    min-height: 420px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}






