/****** 基本样式 ******/
body {
  margin: 0 auto;
  padding: 0;
  width: 1000px;
  font-family: "微软雅黑";
}

div,
input,
p,
dl,
dd,
dt,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style-type: none;
}

img {
  display: block;
  border: none;
}

a {
  display: block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/********************* 首页1 *********************/

.home_container1 {
  margin: 0px auto;
  width: 1000px;
  height: 5490px;
  background: url(../images/home.jpg) no-repeat center top;
  background-size: contain;
  /* 或者使用 cover */
  position: relative;
  transition: all 0.3s ease;
}


.home_container1b {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* 粉红按钮 */
.home_container1b_btn-pink {
  position: absolute;
  /* 改为绝对定位以便自由调整 */
  width: 450px;
  height: 150px;
  background-color: transparent;
  border: none;
  color: transparent;
  font-size: 48px;
  font-family: "微软雅黑";
  cursor: pointer;
  border-radius: 15px;
  box-shadow: none;
  transition: none;
}

.home_container1b_btn-pink:hover {
  background-color: transparent;
  box-shadow: none;
}

/* 默认按钮容器 */
.default-buttons {
  position: absolute;
  width: 100%;
  height: 100%;
  /* 取消原有的flex布局，完全交给各个按钮进行绝对定位 */
}

/* index.html 按钮位置 */
#index-btn1 {
  top: 480px;
  left: 275px;
}

#index-btn2 {
  top: 1360px;
  left: 275px;
}

#index-btn3 {
  top: 4000px;
  left: 180px;
}

/* index1.html 按钮位置 */
#index1-btn1 {
  top: 480px;
  left: 275px;
}

#index1-btn2 {
  top: 1360px;
  left: 275px;
}

#index1-btn3 {
  top: 3400px;
  left: 180px;
}

/* home1 按钮容器 */
.home1-buttons {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* home2 按钮容器 */
.home2-buttons {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 所有按钮的通用样式 - 透明按钮，无阴影 */
.home_container1b_btn1,
.home_container1b_btn2,
.home_container1b_btn3,
.home_container1b_btn4 {
  width: 450px;
  /* 原来150px × 3 = 450px */
  height: 150px;
  /* 原来50px × 3 = 150px */
  background-color: transparent;
  /* 背景透明 */
  border: none;
  color: transparent;
  /* 文字透明 */
  font-size: 48px;
  /* 原来16px × 3 = 48px */
  font-family: "微软雅黑";
  cursor: pointer;
  border-radius: 15px;
  /* 原来5px × 3 = 15px */
  box-shadow: none;
  /* 确保没有阴影 */
  transition: none;
  /* 移除所有过渡效果 */
}

.home_container1b_btn1:hover,
.home_container1b_btn2:hover,
.home_container1b_btn3:hover,
.home_container1b_btn4:hover {
  background-color: transparent;
  /* 悬停时保持透明 */
  box-shadow: none;
  /* 确保悬停时没有阴影 */
}

/* 按钮1位置调整 - 向上50px */
.home_container1b_btn1 {
  transform: translateY(-90px);
}

/* 按钮2位置调整 - 向下200px */
.home_container1b_btn2 {
  transform: translateY(530px);
}

/* 按钮3位置调整 - 向下500px */
.home_container1b_btn3 {
  transform: translateY(2400px);
}

/* 按钮4位置调整 - 向下600px */
.home_container1b_btn4 {
  transform: translateY(2400px);
}



/********************* form1.html 相关样式 *********************/

.home_container4 {
  margin: 0px auto;
  width: 1000px;
}

.home_container4b {
  width: 100%;
  height: 3643px;
  /* 修改为图片的实际高度 1000 × 4223 */
  background: #d8d8d8 url(../images/form1_bg.jpg) no-repeat center top;
  background-size: 100% auto;
}



/********************* 详情页 *********************/

.container_details1 {
  width: 100%;
}

/* 输入框 */
.container_details1 .input_nr {
  float: left;
  margin: 980px 0 0 0;
  /* 1480px - 500px = 980px */
  width: 1000px;
}


.container_details1 .input_auto {
  display: flex;
  margin: 0 auto;
  width: 750px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.container_details1 .input_list_1 {
  display: flex;
  box-sizing: border-box;
  margin: 12px 0;
  /* 增加行间距1.1倍 (原11px * 1.1) */
  width: 360px;
  border: #007ec6 solid 1px;
  border-radius: 10px;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  height: 57px;
  /* 增加高度1.3倍 (原44px * 1.3) */
}

.container_details1 .input_list_1.width100 {
  width: 100%;
}

.container_details1 .input_list_1 img {
  margin: 0px 10px;
  height: 22px;
  flex: 0 0 auto;
}

.container_details1 .input_list_1 strong {
  height: 57px;
  color: #007ec6;
  font-weight: bold;
  font-size: 24px;
  /* 增加字体大小1.1倍 (原18px * 1.1) */
  line-height: 57px;
  flex: 0 0 auto;
}

.container_details1 .input_list_1 input {
  box-sizing: border-box;
  padding: 0 20px 0 15px;
  width: 100px;
  height: 57px;
  outline: none;
  border: none;
  background: none;
  font-size: 24px;
  /* 增加字体大小1.1倍 */
  font-weight: bold;
  line-height: 57px;
  flex: 1 1 100px;
  color: #007ec6;
}

.container_details1 .input_list_1_bt {
  box-sizing: border-box;
  padding: 10px 0 0 15px;
  height: 42px;
  color: #ffa500;
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
  flex: 0 0 100%;
}

.container_details1 .input_list_1 textarea {
  box-sizing: border-box;
  padding: 0 20px 0 15px;
  height: 110px;
  outline: none;
  border: none;
  background: none;
  font-size: 16px;
  line-height: 26px;
  flex: 1 1 100%;
}

/* 单选框1 */
.container_details1 .radio1_nr {
  width: 1000px;
  float: left;
  margin: 0px 0 0 0;
}

/* 为第三个问题添加特殊的间距样式 */
.container_details1 .radio1_nr:nth-of-type(4) {
  margin-top: 0px;
  /* 增加问题2和问题3之间的间距 */
}

.container_details1 .radio1_auto {
  width: 750px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.container_details1 .radio1_bt {
  flex: 0 0 100%;
  font-size: 24px;
  /* 增加字体大小1.1倍 */
  color: #007ec6;
  font-weight: bold;
  line-height: 47px;
  /* 增加高度1.3倍 (原36px * 1.3) */
  padding: 10px 0 0 0px;
  /* 增加间距1.1倍 */
  box-sizing: border-box;
}

.options_container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  /* 核心修改：改为 wrap，允许选项换行显示 */
  width: 100%;
  margin: 12px 0;
  gap: 20px;
  /* 调整间距 */
}

/* 选项单元：改为宽度自适应 */
.container_details1 .radio1_1 {
  width: auto;
  min-height: 45px;
  /* 设置最小高度 */
  height: auto;
  /* 高度改为自适应，适应多行文字 */
  box-sizing: border-box;
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  /* 使用 flex 布局让文字垂直居中 */
  align-items: center;
}

/* 确保文字内容在一行内显示 */
.container_details1 .radio1_1 a {
  display: block;
  /* 或者 inline-block */
  background: url(../images/details_07.png) no-repeat left top 8px;
  /* 图标位置微调至左上角，适应多行 */
  background-size: 20px 20px;
  color: #575757;
  padding-left: 35px;
  /* 给图标留出空间 */
  padding-right: 10px;
  text-indent: 0;
  /* 取消 text-indent，改用 padding */
  font-weight: bold;
  font-size: 20px;
  /* 稍微调小一点字体以适应长句，原24px */
  white-space: normal;
  /* 核心修改：允许文字换行！ */
  line-height: 1.5;
  /* 增加行高，多行阅读更舒适 */
  text-decoration: none;
}

.container_details1 .radio1_1 a.hover {
  background: url(../images/details_06.png) no-repeat left top 8px;
  background-size: 20px 20px;
  color: #007ec6;
  /* 选中变蓝 */
}

/* === 修复输入框布局：左右排列，右侧自动填满 === */

/* 针对全宽的行（运行仪表、仪表数量、咨询产品） */
.simple_input_row.full_width_row {
  display: flex;
  /* 核心：使用 Flex 布局，让文字和框在同一行 */
  align-items: center;
  /* 垂直居中对齐 */
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
  /* 行与行之间的间距 */
}

/* 蓝色标题样式 - 位于左侧 */
.simple_input_row.full_width_row label.blue_label {
  width: auto;
  /* 宽度根据文字自动调整 */
  white-space: nowrap;
  /* 强制文字不换行 */
  text-align: left;
  margin-right: 20px;
  /* 标题和输入框之间的间距 */
  margin-bottom: 0;
  /* 去掉下边距 */
  display: block;
  font-size: 24px;
  /* 字体大小 */
  color: #007ec6;
  font-weight: bold;
}

/* 输入框样式 - 自动占满右侧剩余空间 */
.simple_input_row.full_width_row input {
  flex: 1;
  /* 核心：这个属性让输入框自动伸缩，占满这一行剩下的宽度 */
  width: auto;
  /* 重置宽度，由 flex 控制 */
  height: 57px;
  /* 固定高度 */
  border: 1px solid #007ec6;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 22px;
  color: #333;
  outline: none;
  background: #fff;
  box-sizing: border-box;
  margin-left: 0;
}

/* 我已阅读用户用户注册协议 */

.container_details1 .radio3_nr {
  float: left;
  margin: 50px 0 0 0;
  width: 100%;
}

.container_details1 .radio3_auto {
  display: flex;
  margin: 0 auto;
  width: 200px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.container_details1 .radio3_list_1 {
  box-sizing: border-box;
  margin: 2px 0 2px;
  width: 100%;
  height: 30px;
  font-weight: bold;
  font-size: 15px;
  line-height: 30px;
}

.container_details1 .radio3_list_1a {
  float: left;
  box-sizing: border-box;
  width: auto;
  height: 50px;
  line-height: 50px;
}

.container_details1 .radio3_list_1a a {
  display: block;
  overflow: hidden;
  background: url(../images/details_09.png) no-repeat center left;
  background-size: 18px 18px;
  color: #1e72c8;
  text-indent: 30px;
}

.container_details1 .radio3_list_1a a.hover {
  display: block;
  background: url(../images/details_08.png) no-repeat center left;
  background-size: 18px 18px;
}

.container_details1 .radio3_list_1b {
  float: left;
  box-sizing: border-box;
  width: auto;
  height: 50px;
  line-height: 50px;
}

.container_details1 .radio3_list_1b a {
  display: block;
  color: #ff7e00;
  text-decoration: underline;
}

.container_details1 .radio3_list_1b a.hover {
  color: #e84747;
}

/* 提交按钮 */
.container_details1 .button1 {
  float: left;
  margin: 5px 0 0 0;
  width: 1000px;
  min-width: 560px;
}

.container_details1 .button1_auto {
  display: flex;
  margin: 0 auto;
  width: 197px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.container_details1 .button1_1 {
  box-sizing: border-box;
  margin: 2px 0 2px;
  width: 100%;
  height: 70px;
  font-weight: bold;
}

.container_details1 .button1_1 button {
  width: 100%;
  height: 70px;
  outline: none;
  border: none;
  background: url(../images/details_12.png) no-repeat;
  background-size: auto 70px;
  font-size: 0px;
  cursor: pointer;
}

.form_return_btn {
  width: 100%;
  text-align: center;
  position: relative;
  margin-top: 260px;
}

.form_return_link {
  display: inline-block;
  width: 200px;
  height: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.form_return_link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form_return_link:hover {
  opacity: 0.8;
}

/* 弹出层背景 */
.popup_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* 短信验证弹框 */
.popup_sms {
  position: absolute;
  /* 1. 改为绝对定位，脱离文档流 */
  top: 50%;
  /* 2. 顶部距离屏幕 50% */
  left: 50%;
  /* 3. 左侧距离屏幕 50% */
  transform: translate(-50%, -50%);
  /* 4. 向回移动自身的一半，实现完美几何居中 */

  width: 617px;
  height: 356px;
  margin: 0;
  /* 5. 清除 margin auto */
}

/* 背景图容器 617 × 356 */
.sms_background {
  width: 100%;
  height: 100%;
  position: relative;
}

.sms_background img {
  width: 617px;
  height: 356px;
  display: block;
}

/* 手机号输入框 */
.sms_input_container {
  position: absolute;
  top: 41%;
  /* 调整上下位置：改这个值，越大越靠下 */
  left: 50%;
  /* 调整左右位置：改这个值，越大越靠右 */
  transform: translate(-50%, -50%);
  width: 100%;
  /* 调整输入框宽度：改这个值 */
  max-width: 510px;
}

.sms_input_container input {
  width: 100%;
  height: 50px;
  /* 调整输入框高度：改这个值 */
  border: 2px solid #007ec6;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 18px;
  /* 调整字体大小：改这个值 */
  box-sizing: border-box;
  outline: none;
  color: #333;
}

.sms_input_container input::placeholder {
  color: #999;
}

/* 验证码输入框 */
.sms_code_container {
  position: absolute;
  top: 62%;
  /* 调整上下位置：改这个值，越大越靠下 */
  left: 37%;
  /* 调整左右位置：改这个值，越大越靠右 */
  transform: translate(-50%, -50%);
  width: 60%;
  /* 调整输入框宽度：改这个值 */
  max-width: 340px;
}

.sms_code_container input {
  width: 100%;
  height: 50px;
  /* 调整输入框高度：改这个值 */
  border: 2px solid #007ec6;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 18px;
  /* 调整字体大小：改这个值 */
  box-sizing: border-box;
  outline: none;
  color: #333;
}

.sms_code_container input::placeholder {
  color: #999;
}

/* 发送验证码按钮 */
.sms_send_btn {
  position: absolute;
  top: 62%;
  /* 调整上下位置：改这个值，越大越靠下 */
  right: 10%;
  /* 调整左右位置：改这个值，越大越靠左 */
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity 0.3s;
}

.sms_send_btn img {
  width: 120px;
  /* 调整按钮图片宽度：改这个值 */
  height: auto;
  display: block;
}

.sms_send_btn:hover {
  opacity: 0.8;
}

/* 倒计时文字 */
.sms_countdown {
  position: absolute;
  top: 62%;
  /* 调整上下位置：改这个值，越大越靠下 */
  right: 10%;
  /* 调整左右位置：改这个值，越大越靠左 */
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  font-weight: bold;
  background: #f0f0f0;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  min-width: 120px;
}

/* 透明取消按钮 - 覆盖在背景图上 */
.sms_cancel_btn_transparent {
  position: absolute;
  bottom: 32px;
  /* 调整上下位置:改这个值,越大越靠上 */
  left: 150px;
  /* 调整左右位置:改这个值,越大越靠右 */
  width: 120px;
  /* 调整按钮宽度:改这个值 */
  height: 45px;
  /* 调整按钮高度:改这个值 */
  cursor: pointer;
  background: transparent;
  /* 透明背景 */
  z-index: 10;
}

.sms_cancel_btn_transparent:hover {
  opacity: 0.8;
}

/* 透明下一步按钮 - 覆盖在背景图上 */
.sms_next_btn_transparent {
  position: absolute;
  bottom: 32px;
  /* 调整上下位置:改这个值,越大越靠上 */
  right: 160px;
  /* 调整左右位置:改这个值,越大越靠左 */
  width: 120px;
  /* 调整按钮宽度:改这个值 */
  height: 45px;
  /* 调整按钮高度:改这个值 */
  cursor: pointer;
  background: transparent;
  /* 透明背景 */
  z-index: 10;
}

.sms_next_btn_transparent:hover {
  opacity: 0.8;
}

/* 弹出层1 */
.popup1 {
  margin: 0 auto;
  width: 90%;
  height: 580px;
  max-width: 1000px;
  border-radius: 20px;
  background: #fff;
}

.popup1_t {
  position: relative;
  margin: 20px 0;
  width: 100%;
  height: 40px;
  color: #1e72c8;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 40px;
}

.popup1_tr {
  position: absolute;
  top: 3px;
  right: 20px;
  z-index: 10;
  width: 34px;
  height: 34px;
}

.popup1_tr img {
  margin: 5px;
  width: 24px;
  height: 24px;
}

.popup1_c {
  overflow-y: scroll;
  box-sizing: border-box;
  padding: 0px 50px;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background: #fff;
  color: #323232;
  font-size: 15px;
  line-height: 28px;
}

.popup1_b {
  box-sizing: border-box;
  margin: 0 auto;
  width: 300px;
  height: 53px;
  font-weight: bold;
}

.popup1_b button {
  float: left;
  margin: 20px 0 0 0;
  width: 300px;
  height: 53px;
  outline: none;
  border: none;
  background: url(../images/details_15.png) no-repeat;
  background-size: 300px 53px;
  font-size: 0px;
  cursor: pointer;
}

/* 弹出框2 */
.popup2 {
  position: relative;
  width: 617px;
  height: 356px;
  border-radius: 10px;
  background: url(../images/details_16.png) no-repeat;
  background-size: 617px 356px;
}

.popup2_tr {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 60px;
  height: 60px;
}

.popup2_tr img {
  margin: 10px;
  width: 40px;
  height: 40px;
}

.popup2_tr2 {
  position: absolute;
  top: 280px;
  left: 165px;
  z-index: 10;
  width: 110px;
  height: 42px;
}

.popup2_tr2 img {
  width: 110px;
  height: 42px;
}

.popup2_tr3 {
  position: absolute;
  top: 280px;
  left: 340px;
  z-index: 10;
  width: 110px;
  height: 42px;
}

.popup2_tr3 img {
  width: 110px;
  height: 42px;
}


/* 按钮5和按钮6的样式 - 透明版本 */
.home_container1b_btn5,
.home_container1b_btn6 {
  width: 450px;
  height: 150px;
  background-color: transparent;
  /* 透明背景 */
  border: none;
  color: transparent;
  /* 透明文字 */
  font-size: 24px;
  font-family: "微软雅黑";
  cursor: pointer;
  border-radius: 15px;
  box-shadow: none;
  /* 无阴影 */
  transition: none;
  /* 无过渡效果 */
}

.home_container1b_btn5:hover,
.home_container1b_btn6:hover {
  background-color: transparent;
  /* 悬停时保持透明 */
  box-shadow: none;
  /* 悬停时无阴影 */
}

/* 按钮5位置调整 */
.home_container1b_btn5 {
  transform: translateY(-2190px);
  /* 保持调整好的位置 */
}

/* 按钮6位置调整 - 向左移动100px，上移100px */
.home_container1b_btn6 {
  transform: translateY(3050px) translateX(-100px);
  /* 向下2510px（原2610px-100px），向左100px */
}

/* 按钮7、8、9 - 用于跳转外部链接 - 透明版本 */
.home_container1b_btn7,
.home_container1b_btn8,
.home_container1b_btn9 {
  width: 450px;
  height: 150px;
  background-color: transparent;
  /* 透明背景 */
  border: none;
  color: transparent;
  /* 透明文字 */
  font-size: 24px;
  font-family: "微软雅黑";
  cursor: pointer;
  border-radius: 15px;
  transition: none;
  /* 无过渡效果 */
}

.home_container1b_btn7:hover,
.home_container1b_btn8:hover,
.home_container1b_btn9:hover {
  background-color: transparent;
  /* 悬停时保持透明 */
}

/* 按钮7位置 - 试剂按钮 */
.home_container1b_btn7 {
  transform: translateY(-1250px);
}

/* 按钮8位置 - MS5100按钮 */
.home_container1b_btn8 {
  transform: translateY(150px);
}

/* 按钮9位置 - IMS按钮 */
.home_container1b_btn9 {
  transform: translateY(1300px);
}

/* 产品图片展示区域 */
.product_images {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  gap: 15px;
  width: 100%;
}

.product_img {
  flex: 1;
  text-align: center;
}

.product_img img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 响应式调整 */
@media (max-width: 800px) {
  .product_images {
    flex-wrap: wrap;
  }

  .product_img {
    width: 48%;
    margin-bottom: 15px;
  }
}

.radio1_nr:nth-of-type(4) .options_container {
  flex-direction: row !important;
  /* 强制水平排列 */
  justify-content: flex-start;
  /* 左对齐 */
  flex-wrap: nowrap;
  /* 禁止换行 */
  gap: 20px;
  /* 选项之间的间距 */
  width: 100%;
}

.radio1_nr:nth-of-type(4) .radio1_1 {
  width: auto !important;
  /* 宽度根据文字自适应 */
  flex: 0 0 auto;
}

.radio1_nr:nth-of-type(4) .radio1_1 a {
  white-space: nowrap;
  /* 强制文字不换行 */
  padding-right: 10px;
}

/* --- 新增样式 开始 --- */

/* 顶部简单输入框组 */
.top_survey_group {
  width: 100%;
  margin-bottom: 20px;
}

.simple_input_row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
}

.simple_input_row label {
  width: 120px;
  font-size: 20px;
  font-weight: bold;
  color: #007ec6;
  text-align: right;
  margin-right: 15px;
}

.simple_input_row input {
  flex: 1;
  height: 45px;
  border: 1px solid #007ec6;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 18px;
  color: #333;
  outline: none;
  background: #fff;
}

/* 调查问卷板块 */
.survey_section {
  width: 100%;
  margin-bottom: 20px;
}

.section_title {
  font-size: 22px;
  color: #007ec6;
  font-weight: bold;
  margin-bottom: 15px;
}

.check_item {
  display: flex;
  align-items: flex-start;
  /* 改为顶部对齐，防止文字折行时图标位置偏移 */
  margin-bottom: 12px;
  cursor: pointer;
}

.check_item .checkbox_icon {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #007ec6;
  /* 蓝色边框 */
  border-radius: 3px;
  margin-right: 10px;
  margin-top: 3px;
  /* 微调图标位置 */
  position: relative;
  flex-shrink: 0;
  /* 防止图标被压缩 */
}

/* 选中状态 */
.check_item.checked .checkbox_icon::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background-color: #007ec6;
  /* 选中后的蓝色实心 */
}

.check_item .text {
  font-size: 18px;
  color: #555;
  line-height: 26px;
}

/* 分割线 - 黄色圆点 */
.dotted_divider {
  width: 100%;
  height: 0;
  border-bottom: 4px dotted #ffcc00;
  margin: 30px 0;
}

/* 调整原有Input布局 */
.contact_info_group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

/* 针对全宽的行（咨询产品） */
.full_width_row label.blue_label {
  width: auto;
  text-align: left;
  font-size: 22px;
}

.full_width_row input {
  margin-left: 15px;
}

/* 调整原有标题样式 */
.blue_label {
  font-size: 22px;
  color: #007ec6;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

/* 修正协议和按钮的居中 */
.center_align .radio3_auto {
  margin: 0 auto;
  width: 240px;
  /* 调整宽度以适应文字 */
}

.center_btn {
  text-align: center;
  float: none !important;
  /* 覆盖原有float */
  margin: 20px auto !important;
}

.button1_auto {
  margin: 0 auto !important;
}

/* 覆盖 input_nr 的 margin，适应新布局 */
.container_details1 .input_nr {
  margin-top: 1540px !important;
  /* 上移500px：2070px - 500px = 1570px */
  padding: 0 40px;
  /* 增加左右内边距 */
  box-sizing: border-box;
}

/* 确保原有的一行两个Input布局正常 */
.container_details1 .input_list_1 {
  width: 48%;
  /* 调整为48%宽度 */
  margin: 10px 0;
}

.container_details1 .input_list_1.width100 {
  width: 100%;
}

/* --- 新增样式 结束 --- */