/* 全局基础重置：消除默认边距和滚动干扰 */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 禁止横向滚动 */
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit; /* 统一盒模型 */
}

:root {
  --sung-inquiry-mb: 100px;
  --sung-inquiry-content-padding: 42px 60px 54px 61px;
  --sung-inquiry-h5-size: 20px;
  --sung-inquiry-gap: 100px;
  --sung-inquiry-bg-color: #fff3e0; /* 背景色可自定义 */
  --sung-inquiry-max-width: 1920px; /* 设计稿最大宽度 */
}

/* 核心：全屏背景容器（响应式适配） */
.sung_inquiry {
  margin-bottom: var(--sung-inquiry-mb);
  width: 100vw; /* 视口宽度100% */
  min-width: 100%; /* 小屏至少100%宽度 */
  position: relative;
  left: 0;
  right: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 60px 0; /* 上下内边距，内容不贴边 */
  background-color: #fffefb;
  z-index: 1;
}

/* 大屏适配（≥1920px）：强制1920px居中全屏 */
@media screen and (min-width: 1920px) {
  .sung_inquiry {
    display: flex;
    justify-content: center; /* 内容居中 */
    padding: 60px 0;
  }
  /* 大屏下内容容器强制1920px宽度 */
  .sung_inquiry .content-wrap {
    width: var(--sung-inquiry-max-width);
    padding: 0;
  }
}

/* 内容容器：所有尺寸下居中，适配响应式 */
.sung_inquiry .content-wrap {
  width: 100%;
  max-width: var(--sung-inquiry-max-width); /* 最大1920px */
  margin: 0 auto; /* 水平居中 */
  padding: 0 20px; /* 小屏左右留白，避免内容贴边 */
}

.sung_inquiry .content {
  background-color: transparent;
  width: 100%; /* 继承容器宽度 */
  padding: var(--sung-inquiry-content-padding);
  display: flex;
  justify-content: space-between;
  gap: var(--sung-inquiry-gap);
}

/* 原有样式保留 */
.sung_inquiry .content .contact-info .row {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.sung_inquiry .content .contact-info .row > div:not(:last-child) {
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.sung_inquiry .content .contact-info h5 {
  font-size: clamp(18px, 1.05vw, 20px);
  font-weight: 600;
  color: var(--title-text-color);
  line-height: 1.5;
}

.sung_inquiry .content .contact-info p{font-size: clamp(14px, 0.85vw, 16px);}

.sung_inquiry .content .contact-info .collocate {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.sung_inquiry .content .contact-info .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.sung_inquiry .content .inqury_title_text {
  text-align: left;
}

.sung_inquiry .content .inqury_title_box .inqury_titl_desc {
  text-align: left;
  font-weight: 600;
  color: var(--title-text-color);
  font-size: var(--sung-inquiry-h5-size);
  line-height: 1.5;
}

.sung_inquiry .content .inqury_submit {
  width: 100%;
  font-weight: 700;
  background-color: var(--color-second);
  line-height: 2;
  transition: background-color 0.3s ease;
}
.sung_inquiry .content .inqury_submit:hover {
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    var(--color-second);
}
.sung_inquiry .content .inqury_submit:checked {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    var(--color-second);
}

/* 响应式断点适配（从小到大） */
@media screen and (max-width: 1500px) {
  :root {
    --sung-inquiry-mb: 85px;
    --sung-inquiry-content-padding: 40px 60px 50px 60px;
    --sung-inquiry-h5-size: 20px;
    --sung-inquiry-gap: 80px;
  }
  .sung_inquiry {
    padding: 50px 0; /* 大屏缩小上下内边距 */
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --sung-inquiry-mb: 70px;
    --sung-inquiry-content-padding: 30px 50px 40px 50px;
    --sung-inquiry-h5-size: 18px;
    --sung-inquiry-gap: 60px;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --sung-inquiry-mb: 55px;
    --sung-inquiry-content-padding: 20px 40px 30px 40px;
    --sung-inquiry-h5-size: 16px;
    --sung-inquiry-gap: 40px;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --sung-inquiry-mb: 40px;
    --sung-inquiry-content-padding: 30px 30px 40px 30px;
    --sung-inquiry-h5-size: 16px;
    --sung-inquiry-gap: 30px;
  }
  .sung_inquiry .content {
    flex-direction: column; /* 移动端纵向排列 */
  }
  .sung_inquiry {
    padding: 40px 0;
  }
  .sung_inquiry .content .contact-info .collocate {
    gap: 40px; /* 移动端缩小间距 */
  }
}

@media screen and (max-width: 768px) {
  :root {
    --sung-inquiry-mb: 25px;
    --sung-inquiry-content-padding: 20px;
    --sung-inquiry-h5-size: 14px;
    --sung-inquiry-gap: 20px;
  }
  .sung_inquiry {
    padding: 30px 0;
  }
  .sung_inquiry .content-wrap {
    padding: 0 15px; /* 移动端缩小左右留白 */
  }
}

@media screen and (max-width: 576px) {
  :root {
    --sung-inquiry-mb: 25px;
    --sung-inquiry-content-padding: 15px;
    --sung-inquiry-h5-size: 14px;
    --sung-inquiry-gap: 20px;
  }
  .sung_inquiry .content .contact-info .collocate {
    gap: 20px; /* 小屏进一步缩小间距 */
  }
  .sung_inquiry .content .contact-info .row {
    gap: 20px;
  }
  .sung_inquiry .content .contact-info .row > div:not(:last-child) {
    padding-bottom: 20px; /* 小屏缩小边框间距 */
  }
}

.crm_inquiry_form_boxcustom_inquiry_form_1769430033324207 .inqury_title_box .inqury_title_text{
  font-size: clamp(24px, 2.1vw, 40px);
}