.image-container {
  position: relative;
  display: inline-block;
  /* 让容器大小适应图片 */
}

body {
  background-color: #FFFFFF !important;
  margin: 0;
  padding: 0;
}

.overlay-div {
  position: absolute;
  left: 65%;
  top: 41%;
  transform: translate(-50%, -50%);
  padding: 8px 12px;
  border-radius: 4px;
}

.custom-dotted-divider {
  border: none;
  border: 1px dashed #FFFFFF;
  opacity: 0.48;
  margin: 100px 0;
  display: block;
  /* 确保元素为块级，使上下 margin 生效 */
}
.gap-8 {
    gap: 2rem
}

.overlay-div2 {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 54%;
  width: 70%;
  padding: 8px 12px;
  border-radius: 4px;
}

.absolute {
  position: absolute;
}

.opacity9 {
  opacity: 0.9;
}
.content-wrapper ul {
  line-height: 2rem;
  font-weight: 600;
}
.my-top h1 {
  font-family: NotoSansHans, NotoSansHans;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.17);
  font-style: normal;
}

.my-top p {
  font-family: PingFangSC, PingFang SC;
}

.content-header {
  padding-left: 20px;
}

.title {
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.subtitle {
  color: #999999;
}

.subtitle2 {
  color: #DC3C62;
}

.content-body {
  line-height: 1.8;
  color: #444;
}

.highlight-text {
  padding-left: 20px;
  margin: 5px 0;
  color: black;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  font-weight: medium;
  line-height: 2rem;
  font-size: 17px;
}

.consult-button1 {
  position: absolute;
  margin-top: 2.6vw;
  left: 30px;
  font-size: 1.6rem;
  background: linear-gradient(183deg, #FFF047 0%, #FFBD28 100%);
  color: black;
  padding: 10px 60px;
  border-radius: 30px;
  font-weight: 600;
}

/* form 表單 */
.name-mobile-form button {
  background: linear-gradient(225deg, #115789 0%, #125a92 100%);
  color: white;
  font-weight: bold;
}

.pl-desc {
  margin-left: calc(40px + 1rem);
}
.input-wrapper {
  display: flex;
  align-items: center;
  padding: 0;
  /* 去除边距 */
  border-radius: 40px;
  background-color: white;
}

.input-wrapper label {
  background: linear-gradient(225deg, #115789 0%, #125a92 100%);
  color: white;
  width: 6rem;
  text-align: center;
  margin: auto;
  padding: 5px 10px;
  line-height: 40px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.2rem;
}

.input-wrapper input {
  flex: 1;
  height: 40px;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 1rem;
}

/* 响应式适配 - 大屏幕 (1200px以上) */
@media (min-width: 1599px) and (max-width: 1800px)  {
  .title {
    font-size: 2.8rem;
  }
  
  .highlight-text {
    font-size: 17px;
    line-height: 2rem;
  }
  
  .consult-button1 {
    font-size: 1.5rem;
    margin-top: 1.3vw;
    padding: 10px 40px;
  }
  .custom-dotted-divider {
    margin: 40px 0;
  }
  
}

/* 响应式适配 - 大屏幕 (1200px以上) */
@media (min-width: 1360px) and (max-width: 1599px)  {

  .title {
    font-size: 1.8rem;
  }
  
  .highlight-text {
    font-size: 15px;
    line-height: 1.5rem;
  }
  
  .consult-button1 {
    font-size: 1.5rem;
    margin-top: 1.3vw;
    padding: 10px 40px;
  }
  .custom-dotted-divider {
    margin: 10px 0;
  }
  
}
/* 中等屏幕 (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .title {
    font-size: 2.2rem;
  }
  
  .overlay-div {
    left: 60%;
  }
  
  .overlay-div2 {
    width: 75%;
    top: 55%;
  }
}

/* 小屏幕 (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .title {
    font-size: 2rem;
  }
  
  .highlight-text {
    font-size: 16px;
    line-height: 1.8rem;
  }
  
  .consult-button1 {
    font-size: 1.4rem;
    padding: 8px 40px;
    margin-top: 40px;
  }
  
  .overlay-div {
    left: 58%;
    top: 40%;
  }
  
  .overlay-div2 {
    width: 80%;
    top: 52%;
  }
  
  .input-wrapper label {
    width: 5rem;
    font-size: 1.1rem;
  }
}

/* 超小屏幕 (小于768px) */
@media (max-width: 767px) {
  .title {
    font-size: 1.8rem;
    padding-left: 10px;
  }
  
  .content-header {
    padding-left: 10px;
  }
  
  .highlight-text {
    padding-left: 10px;
    font-size: 15px;
    line-height: 1.6rem;
  }
  
  .consult-button1 {
    position: relative;
    left: 0;
    margin: 20px auto;
    display: block;
    font-size: 1.2rem;
    padding: 8px 30px;
    text-align: center;
  }
  
  .overlay-div {
    left: 50%;
    top: 35%;
    width: 90%;
    text-align: center;
  }
  
  .overlay-div2 {
    width: 90%;
    top: 50%;
  }
  

  .input-wrapper {
    flex-direction: column;
    border-radius: 20px;
  }
  
  .input-wrapper label {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
  
  .input-wrapper input {
    width: 100%;
    padding: 0 10px;
  }
}