.elementor-3680 .elementor-element.elementor-element-ba9f9f4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3680 .elementor-element.elementor-element-2bab307{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3680 .elementor-element.elementor-element-e10d85d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3680 .elementor-element.elementor-element-0d0492b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3680 .elementor-element.elementor-element-fac7a47{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3680 .elementor-element.elementor-element-33bf140{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3680 .elementor-element.elementor-element-eba21c4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3680 .elementor-element.elementor-element-061c2e4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3680 .elementor-element.elementor-element-8029009{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-cfbd585 *//* 产品轮播模块 | 左右内边距统一修改65px */
.product-slider-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #ffffff;
  padding: 60px 65px;
  max-width: 1600px;
  margin: 0 auto;
}

/* 左侧主图 + 下方缩略图 */
.product-media-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

/* 主图容器 */
.product-main-image {
  overflow: hidden;
  width: 100%;
}
.main-image-track {
  display: flex;
  transition: transform 0.5s ease;
}
.main-image-item {
  width: 100%;
  flex-shrink: 0;
}
.main-image-item img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

/* 下方水平缩略图轮播 - 桌面端原有样式 */
.product-thumbnails-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.product-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* 左右预留足够空间给箭头，防止箭头被内边距挡住点击 */
  padding: 0 45px;
  scrollbar-width: none;
}
.product-thumbnails::-webkit-scrollbar {
  display: none;
}
.thumbnail-item {
  width: 100px;
  height: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s;
  flex-shrink: 0;
}
.thumbnail-item.active {
  border-color: #007bff;
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 缩略图左右箭头 - 修复位置+点击层级问题 */
.thumb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
/* 左箭头向左偏移，远离滚动内容，解决点击无响应 */
.thumb-prev {
  left: -8px;
}
.thumb-next {
  right: -8px;
}

/* 右侧文案区域 */
.product-info {
  flex: 1;
  padding-left: 20px;
}
.product-model {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 0 0 15px;
}
.product-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 0 0 30px;
}
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.6;
}
.product-features li::before {
  content: "✓";
  color: #fff;
  background: #007bff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

/* 询盘按钮 */
.inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #007bff;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.inquiry-btn:hover {
  background: #000000;
}
.inquiry-btn::after {
  content: "→";
}

/* 产品轮播响应式适配 */
@media (max-width: 1200px) {
  .product-slider-section {
    flex-direction: column;
    padding: 40px 20px;
    /* 整模块水平居中约束 */
    align-items: center;
  }

  /* 左侧图片区块宽度自适应、整体居中 */
  .product-media-column {
    width: 100%;
    max-width: 700px;
  }

  .product-info {
    padding-left: 0;
    margin-top: 30px;
    width: 100%;
    max-width: 700px;
    /* 文字内容整体居中对齐 */
    text-align: center;
  }

  .product-title {
    font-size: 32px;
  }

  /* 手机图片高度自适应，防止过高撑破屏幕 */
  .main-image-item img {
    height: auto;
    aspect-ratio: 16/12;
  }

  /* 特性列表居中排版 */
  .product-features li {
    justify-content: center;
    text-align: left;
  }

  /* 按钮居中放置 */
  .inquiry-btn {
    margin: 0 auto;
  }

  /* ========== 移动端缩略图配置：一屏5张、可横向滑动 ========== */
  /* 移动端隐藏缩略图左右切换箭头 */
  .thumb-arrow {
    display: none;
  }
  /* 清除左右内边距，缩略图左边缘和主图完全对齐 */
  .product-thumbnails {
    padding: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  /* 一屏刚好5张完整缩略图，总间隙4个×10px=40px */
  .thumbnail-item {
    flex: 0 0 calc((100% - 40px) / 5);
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/* 小屏手机 767px 精细化适配（同样一屏5个缩略图） */
@media (max-width: 767px) {
  .product-slider-section {
    padding: 30px 15px;
  }

  .product-title {
    font-size: 26px;
  }
  .product-model {
    font-size: 19px;
  }
  .product-features li {
    font-size: 16px;
  }
  .inquiry-btn {
    width: 100%;
    justify-content: center;
    font-size: 17px;
    padding: 15px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9320273 *//* 主容器：左右边距修改为65px，原padding:0 20px → padding:0 65px */
.product-tab-module {
  max-width: 1600px;
  margin: 50px auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 65px;
}

/* ====================== 左侧 TAB ====================== */
.left-tab-area {
  flex: 2;
  background: #ffffff;
  border: 1px solid #e0e0e0;
}

/* TAB 导航 */
.tab-nav {
  display: flex;
  list-style: none;
  border-bottom: 1px solid #e0e0e0;
}
.tab-nav li {
  flex: 1;
  text-align: center;
}

/* TAB 按钮 —— 无 HOVER 效果 */
.tab-nav li button {
  width: 100%;
  padding: 22px 0;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #007bff;
  cursor: pointer;
  position: relative;
}

/* 激活状态（下划线） */
.tab-nav li button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #007bff;
}

/* TAB 内容 */
.tab-content {
  padding: 25px;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}

/* 表格样式 */
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table tr:nth-child(odd) {
  background: #f7f7f7;
}
.data-table td {
  padding: 16px 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* ====================== 右侧：图片 + 按钮 ====================== */
.right-catalog {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  /* 防止内容被容器裁切，保证底部按钮完整渲染 */
  overflow: visible;
}

/* 右侧图片 */
.catalog-img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border: 1px solid #eee;
}

/* 下载按钮样式（a改button，样式完全沿用原有） */
.download-catalog-btn {
  padding: 16px 36px;
  background: #007bff;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  /* 强制保证按钮完整布局，不会被裁剪 */
  flex-shrink: 0;
}

/* 按钮 HOVER 变黑 */
.download-catalog-btn:hover {
  background: #000000;
}

/* ====================== 响应式 ====================== */
@media (max-width: 900px) {
  .product-tab-module {
    flex-direction: column;
    padding: 0 20px;
    align-items: center;
    /* 垂直方向间距充足，避免上下挤压按钮 */
    gap: 35px;
  }

  /* 左右区块宽度自适应、居中约束 */
  .left-tab-area,
  .right-catalog {
    width: 100%;
    max-width: 700px;
  }

  /* TAB按钮缩小字号，防止挤压换行 */
  .tab-nav li button {
    font-size: 17px;
    padding: 16px 0;
  }

  /* 表格单元格内边距缩小，避免横向溢出 */
  .data-table td {
    padding: 12px 10px;
    font-size: 15px;
  }

  /* 右侧图片自适应宽度，不会超出屏幕 */
  .catalog-img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

/* 超小屏手机精细化适配 */
@media (max-width: 576px) {
  .product-tab-module {
    margin: 30px auto;
    padding: 0 15px;
    gap: 30px;
  }

  .tab-content {
    padding: 15px;
  }

  .tab-nav li button {
    font-size: 15px;
    padding: 14px 0;
  }

  /* 小屏按钮铺满宽度，完整显示无截断 */
  .download-catalog-btn {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-29afa60 *//* 整体模块容器 | 左右边距65px */
.content-video-section {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #ffffff;
  padding: 80px 65px;
  max-width: 1600px;
  margin: 0 auto;
}

/* 左侧视频图片区域 */
.image-left {
  flex: 1;
}
.image-placeholder {
  width: 100%;
  height: 360px;
  background: #e5e7eb;
  overflow: hidden;
  position: relative;
}
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 播放按钮 */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play-button::after {
  content: "▶";
  font-size: 30px;
  color: #007bff;
}

/* 右侧文案区域 */
.content-right {
  flex: 1;
}
.content-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0 0 30px;
}
.content-desc {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 20px;
}
/* 询盘按钮 */
.inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #007bff;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.inquiry-btn:hover {
  background: #000000;
}
.inquiry-btn::after {
  content: "→";
}

/* 响应式适配 - 平板 */
@media (max-width: 1024px) {
  .content-video-section {
    flex-direction: column;
    padding: 50px 20px;
    align-items: center;
    gap: 40px;
  }

  /* 左右容器统一最大宽度，整体页面居中 */
  .image-left,
  .content-right {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  /* 图片容器自适应比例，替代固定高度，自适应居中不变形 */
  .image-placeholder {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* 容器整体默认左对齐 */
  .content-right {
    text-align: left;
  }
  /* 标题单独居中 */
  .content-title {
    text-align: center;
  }

  /* 按钮保持居中 */
  .inquiry-btn {
    margin: 0 auto;
  }

  .content-title {
    font-size: 32px;
  }
}

/* 手机小屏精细化适配（767px） */
@media (max-width: 767px) {
  .content-video-section {
    padding: 35px 15px;
    gap: 30px;
  }

  .content-title {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
  }

  .content-desc {
    font-size: 16px;
    text-align: left;
  }

  /* 小屏按钮通栏居中 */
  .inquiry-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 15px 0;
  }

  /* 播放按钮缩小适配手机 */
  .play-button {
    width: 65px;
    height: 65px;
  }
  .play-button::after {
    font-size: 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-95da9b7 *//* 整体模块容器 左右边距65px */
.content-video-section-reverse {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #ffffff;
  padding: 80px 65px;
  max-width: 1600px;
  margin: 0 auto;
}

/* 左侧文案区域 */
.content-left {
  flex: 1;
}
.content-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0 0 30px;
}
.content-desc {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 20px;
}

/* 右侧图片区域 */
.image-right {
  flex: 1;
}
.image-placeholder {
  width: 100%;
  height: 360px;
  background: #e5e7eb;
  overflow: hidden;
}
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 询盘按钮 */
.inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #007bff;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.inquiry-btn:hover {
  background: #000000;
}
.inquiry-btn::after {
  content: "→";
}

/* 响应式适配：平板&移动端重构居中布局 */
@media (max-width: 1024px) {
  .content-video-section-reverse {
    flex-direction: column;
    padding: 50px 20px;
    align-items: center;
    gap: 40px;
  }

  /* 左右区块统一最大宽度，整体页面水平居中，不会无限拉宽 */
  .content-left,
  .image-right {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  /* 容器内正文默认左对齐 */
  .content-left {
    text-align: left;
  }
  /* 标题单独居中 */
  .content-title {
    text-align: center;
  }

  /* 解决inline元素margin:auto无效：给父容器设置居中 */
  .content-left {
    text-align: left;
  }
  .content-left .inquiry-btn-wrap {
    text-align: center;
    margin-top: 10px;
  }

  /* 图片改为比例自适应，不再固定高度，不变形 */
  .image-placeholder {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* 标题字号适配缩小 */
  .content-title {
    font-size: 32px;
  }
}

/* 小屏手机精细化适配 767px */
@media (max-width: 767px) {
  .content-video-section-reverse {
    padding: 35px 15px;
    gap: 30px;
  }

  .content-title {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
  }

  .content-desc {
    font-size: 16px;
  }

  .inquiry-btn {
    font-size: 16px;
    padding: 15px 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f845c69 *//* 整体容器 左右边距修改65px */
.video-info-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px 65px;
  background: #fff;
}

/* 第一部分：左图 + 右文 */
.top-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}
.top-left-img {
  flex: 1;
}
.top-left-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}
.top-right-text {
  flex: 1;
}
.top-right-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}
.top-right-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* 第二部分：视频封面区域 */
.video-block {
  width: 100%;
  position: relative;
}
.video-cover {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play-btn::after {
  content: "▶";
  font-size: 30px;
  color: #007bff;
  margin-left: 5px;
}

/* 询盘按钮（统一和前面模块按钮样式） */
.inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap:10px;
  background:#007bff;
  color:#fff;
  font-size:18px;
  font-weight:600;
  padding:16px 32px;
  border-radius:50px;
  border:none;
  cursor:pointer;
  transition: background 0.3s ease;
  margin-top:10px;
}
.inquiry-btn:hover {
  background:#000;
}
.inquiry-btn::after {
  content:"→";
}

/* 移动端自适应，小屏恢复20px左右边距 */
@media(max-width:992px){
  .video-info-section{
    padding:50px 20px;
  }
  .top-block{
    flex-direction:column;
  }
  .video-cover{
    height:320px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-09956b8 *//* 仅当前轮播模块专属样式，不影响网站其他任何元素 */
.related-module {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 2rem 65px; /* 左右边距65px */
    overflow: visible;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    position: relative;
}

/* 头部区域 */
.related-module .section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.related-module .product-headline {
    font-size: 48px;
    color: #0a1e36;
    margin-top: 6px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* 轮播容器 */
.related-module .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

/* 轮播轨道 */
.related-module .carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
    padding: 0 calc((100% - 1440px) / 2);
}

/* 一屏刚好4张 */
.related-module .product-card {
    flex: 0 0 calc(25% - 21px);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

/* 图片容器 */
.related-module .card-image {
    width: 249px;
    height: 187px;
    overflow: hidden;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 图片hover放大 */
.related-module .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.related-module .product-card:hover .card-image img {
    transform: scale(1.08);
}

/* 卡片文字 */
.related-module .card-content {
    padding: 1rem 0.5rem 0.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.related-module .product-title {
    font-size: 28px;
    font-weight: 500;
    color: #0a1e36;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}
.related-module .product-card:hover .product-title {
    color: #007bff;
}

/* 左右箭头 */
.related-module .nav-btn {
    position: absolute;
    background: transparent;
    border: none;
    font-size: 40px;
    color: #888888;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    top: calc(50% - 10px);
    transform: translateY(-50%);
    transition: color 0.2s;
}
.related-module .nav-btn:hover {
    color: #333;
}

.related-module #prevBtn {
    left: calc(50% - 720px - 30px);
}
.related-module #nextBtn {
    right: calc(50% - 720px - 30px);
}

/* 响应式 */
@media (max-width: 1440px) {
    .related-module #prevBtn { left: -30px; }
    .related-module #nextBtn { right: -30px; }
    .related-module .carousel-track { padding: 0; }
}
@media (max-width: 1024px) {
    .related-module {
        padding: 2rem 20px;
    }
    .related-module .product-card { flex: 0 0 calc(25% - 15px); }
    .related-module .carousel-track { gap: 20px; }
}
@media (max-width: 768px) {
    .related-module {
        padding: 2rem 20px;
    }
    .related-module .product-card { flex: 0 0 calc(50% - 10px); }
    .related-module .carousel-track { gap: 15px; }
}
@media (max-width: 560px) {
    .related-module {
        padding: 2rem 20px;
    }
    .related-module .product-card { flex: 0 0 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f982c9b *//* 整体模块容器 左右边距65px */
.faq-form-section {
  display: flex;
  gap: 60px;
  background: #f5f7fa;
  padding: 80px 65px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ====================== 左侧：文案 + FAQ手风琴 ====================== */
.left-col {
  flex: 2;
}
.text-block .tagline {
  font-size: 36px;
  font-weight: 700;
  color: #007bff;
  margin: 0 0 10px;
}
.text-block .title {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px;
}
.text-block .desc {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}
.text-block .desc strong {
  color: #007bff;
}
.text-block ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 40px;
}
.text-block ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

/* FAQ */
.faq-list {
  background: #fff;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #e5e7eb;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question .icon {
  font-size: 20px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ====================== 右侧：表单 ====================== */
.right-col {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.form-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: none;
  background: #f5f7fa;
  border-radius: 4px;
  font-size: 15px;
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* 上传按钮 */
.upload-btn-wrapper {
  position: relative;
  width: 25%;
  margin-bottom: 15px;
}
.upload-file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  border: 1px solid #007bff;
  background: #fff;
  color: #007bff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}
.upload-btn i {
  font-style: normal;
  font-size: 12px;
}

/* 提交按钮 */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.submit-btn:hover {
  background: #000;
}

/* 移动端 */
@media (max-width: 1024px) {
  .faq-form-section {
    flex-direction: column;
    padding: 40px 20px;
  }
  .right-col {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c269677 *//* 整体模块容器 - 桌面左右内边距65px */
.cta-banner-full {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: url('https://bebossdemotest.shop/wp-content/uploads/2026/05/s11BG.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 65px;
  box-sizing: border-box;
}

/* 内容区域 */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

/* 标题 */
.cta-title {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 22px;
}

/* 描述文字 */
.cta-desc {
  font-size: 19px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 38px;
}

/* 按钮样式 */
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER 效果：背景变黑、字体变白 */
.cta-btn:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

/* 响应式：移动端还原30px边距 */
@media (max-width: 1024px) {
  .cta-banner-full {
    padding: 60px 30px;
  }
  .cta-title {
    font-size: 32px;
  }
}/* End custom CSS */