
/* 外层横幅容器 */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* 底层背景图 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: 1400px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

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

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

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

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

/* 特性列表 */
.hero-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.hero-feature-list li {
  font-size: 1rem;
  color: var(--text);
  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:10px;
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 var(--text);
    color:var(--text);
    padding:14px 24px;
    border-radius:6px;
    text-decoration:none;
    transition:var(--transition);
}
.btn-whatsapp:hover{
    border-color:var(--primary-dark);
    color:var(--primary-dark);
}

.hero-badge {
  display: inline-block;
  background: var(--border-light);
  color: var(--primary-dark);
  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::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 25%, rgba(255,255,255,0.75) 45%, rgba(255,255,255,0.35) 70%, rgba(0,0,0,0.10) 100%);
}
	
  .hero-banner {
    min-height: auto;
    padding: 40px 0;
    align-items: flex-start;
  }
  .hero-banner::before {
    background: rgba(255, 255, 255, 0.9);
  }
  .hero-inner {
    padding: 0rem 1rem 1rem;
  }
  .hero-text-wrap h1 {
    font-size: 1.8rem;
    margin: 10px 0 14px;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  .hero-feature-list {
    margin: 1.2rem 0 22px;
  }
  .hero-feature-list li {
    font-size: 0.92rem;
  }
  .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);
}

.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: 14px;
  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;
  }
}



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


.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.catalog-card {
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}
.catalog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.catalog-img {
  height: 240px;
  overflow: hidden;
}
.catalog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.catalog-card:hover .catalog-img img {
  transform: scale(1.05);
}
.no-pic {
  height: 100%;
  background: var(--border-light);
  display: grid;
  place-items: center;
  color: var(--muted);
}

.catalog-body {
  padding: 22px;
}
.catalog-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.catalog-title {
  font-size: 20px;
  color: var(--text);
  margin: 0 0 10px;
  font-weight: 600;
}
.catalog-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.catalog-cta {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .catalog-grid-wrap {
    padding: 0 12px;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .catalog-grid-wrap {
    padding: 0 6px;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}



.new-product-section {
  padding: 20px 0;
  background-color: var(--bg-white);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-item {
  text-align: center;
}
.product-img {
  border-radius: 4px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.no-image-box {
  width: 100%;
  height: 240px;
  background: var(--border-light);
  display: grid;
  place-items: center;
  color: var(--muted);
}

.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;
}

.item-title {
  font-size: 19px;
  margin: 0 0 6px;
}
.item-title a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}
.item-title a:hover {
  color: var(--primary);
}

/* 响应式 */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .product-grid-wrap {
    padding: 0 12px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-grid-wrap {
    padding: 0 6px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


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

.oemrow-wrap {

  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

/* 复用全局统一列表勾选样式 */
.hero-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.hero-feature-list li {
  font-size: 1rem;
  color: var(--text);
  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;
}

.image-col img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

/* 响应式 修正类名 oemrow-wrap */
@media (max-width: 992px) {
  .oemrow-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .oemrow-wrap {
    padding: 0 6px;
  }
} 
    
    


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

/* 所有左右边距、网格布局移至row-wrap，不污染.container */
.row-wrap {

  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  overflow: hidden; /* 限制内部轮播不超出容器最大宽度1400 */
}

.text-col {
  flex-shrink: 0;
}

.slider-wrap {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 20s linear infinite;
}
.logo-item img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.slider-track:hover {
  animation-play-state: paused;
}

/* 平板手机适配 */
@media (max-width: 992px) {
  .row-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .row-wrap {
    padding: 0 6px;
  }
  .logo-item img {
    height: 40px;
  }
  .slider-track {
    gap: 35px;
  }
}


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

.factory-row {
 
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

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

.data-list {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.data-item h3 {
  font-size: 32px;
  color: var(--primary);
  margin: 0 0 6px;
}
.data-item p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.main-img-box img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 12px;
}
.thumb-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.thumb-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.thumb-item img:hover {
  opacity: 0.8;
}

/* 响应式统一断点，和全站模块保持一致 */
@media (max-width: 992px) {
  .factory-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .data-list {
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .factory-row {
    padding: 0 6px;
  }
  .data-list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .thumb-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .thumb-item img {
    height: auto;
    
  }
  .data-item h3 {
    font-size: 26px;
  }
}
    





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


.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.process-item {
  width: 100%;
}
.process-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.process-img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.process-img-box:hover img {
  transform: scale(1.04);
}

.mask-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 24px 16px;
  background-color: rgba(0, 0, 0, 0.35);
}
.mask-text h3 {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}

/* 统一响应式阶梯 */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .process-grid-wrap {
    padding: 0 12px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .process-grid-wrap {
    padding: 0 6px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-img-box img {
    height: 220px;
  }
}
    



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

.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: #fff;
}

.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;
  }
}






