:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9accdd4 */.hero-section {
  background-color: #FFFFFF;
  padding: 100px 24px;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  color: #111827;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: #374151;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}

.hero-features li {
  color: #374151;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary {
  background-color: #0F62FE;
  color: #FFFFFF;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #111827;
  border: 1px solid #E5E7EB;
}

.btn-secondary:hover {
  background-color: #F9FAFB;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2735b11 */.why-choose-section {
  background-color: #F9FAFB;
  padding: 120px 24px;
}

.why-choose-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: #111827;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #E5E7EB;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
}

.icon-box {
  width: 48px;
  height: 48px;
  background-color: #F0F5FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-title {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-desc {
  color: #4B5563;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-017e53e */.product-categories-section {
  background-color: #FFFFFF;
  padding: 120px 24px;
}

.categories-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: #111827;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #F9FAFB;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .card-image-wrapper img {
  transform: scale(1.03);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  color: #111827;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-desc {
  color: #4B5563;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-link {
  color: #0F62FE;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.card-link .arrow {
  transition: transform 0.2s ease;
}

.card-link:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f43e285 */.oem-section {
  background-color: #F9FAFB;
  padding: 120px 24px;
}

.oem-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: #111827;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.process-step {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
}

.step-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: #F0F5FF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #0F62FE;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
}

.step-title {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-desc {
  color: #4B5563;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7a3d920 */.qc-section {
  background-color: #FFFFFF;
  padding: 120px 24px;
}

.qc-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.qc-title {
  color: #111827;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.qc-desc {
  color: #4B5563;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.qc-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qc-checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.qc-check-icon {
  width: 28px;
  height: 28px;
  background-color: #F0F5FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.qc-checklist strong {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.qc-checklist p {
  color: #4B5563;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* 核心修复：右侧图墙布局 */
.qc-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.qc-main-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.qc-main-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.qc-sub-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.qc-sub-img-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px -4px rgba(0, 0, 0, 0.05);
}

.qc-sub-img-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* 响应式适配 */
@media (max-width: 968px) {
  .qc-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .qc-title {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-31ddfd1 */.industries-section {
  background-color: #F9FAFB;
  padding: 120px 24px;
}

.industries-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: #111827;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.industry-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
}

.industry-icon-box {
  width: 56px;
  height: 56px;
  background-color: #F0F5FF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.industry-title {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6fad4a8 */.global-section {
  background-color: #F9FAFB;
  padding: 120px 24px;
}

.global-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: #111827;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
}

.market-regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.region-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.03);
}

.region-name {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.metric-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
}

.metric-number {
  color: #0F62FE;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

.metric-title {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.metric-desc {
  color: #4B5563;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .market-regions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .market-regions {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b46164f */.faq-section {
  background-color: #FFFFFF;
  padding: 120px 24px;
}

.faq-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: #111827;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: #D1D5DB;
}

/* 隐藏浏览器默认的三角符号 */
.faq-question {
  list-style: none;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #111827 !important;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question span {
  color: #111827 !important;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  fill: #111827;
}

/* 原生 open 属性触发时旋转箭头 */
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  color: #4B5563 !important;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .faq-question {
    font-size: 16px;
    padding: 16px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-25dc939 */.cta-section {
  background-color: #FFFFFF;
  padding: 80px 24px;
}

/* 1. 将外层容器宽度从 960px 扩大到 1280px，充分利用屏幕空间 */
.cta-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* 深色高级感大卡片 */
.cta-card {
  background: linear-gradient(135deg, #0b1120 0%, #111827 100%);
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
  box-shadow: 0 20px 40px -15px rgba(11, 17, 32, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.cta-subtitle {
  color: #9CA3AF;
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px; /* 放宽副标题行宽，避免频繁换行 */
  margin-bottom: 40px;
}

/* 2. 将内部内容包裹层宽度从 620px 放大到 760px，让勾选列表和卡片更舒展 */
.cta-content-group {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  margin-bottom: 40px;
}

/* 3条优势列表优化 */
.cta-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  width: 100%;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F3F4F6;
  font-size: 16px;
  font-weight: 500;
}

.check-icon {
  flex-shrink: 0;
  color: #34D399;
}

/* 底部内嵌信息小卡片宽度放宽 */
.cta-info-box {
  background-color: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 28px;
  width: 100%;
  text-align: left;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.box-title {
  color: #E5E7EB;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}

.box-detail {
  color: #9CA3AF;
  font-size: 15px;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.box-detail a {
  color: #60A5FA;
  text-decoration: none;
}

.box-detail a:hover {
  text-decoration: underline;
}

.icon {
  font-style: normal;
}

/* 底部按钮组 */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* 主按钮：亮蓝色 */
.primary-btn {
  background-color: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.primary-btn:hover {
  background-color: #1D4ED8;
  transform: translateY(-1px);
}

/* 次按钮：半透明边框 */
.secondary-btn {
  background-color: rgba(255, 255, 255, 0.03);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.whatsapp-icon {
  flex-shrink: 0;
}

/* 响应式移动端适配 */
@media (max-width: 768px) {
  .cta-card {
    padding: 40px 20px;
  }
  .cta-title {
    font-size: 26px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-btn {
    width: 100%;
  }
}/* End custom CSS */