/* 容器样式，用于包裹标题和卡片列表 */
.container {

}
.banner{
    background: #F1F9F7;
    width: 100%;
    height: 380px;
    padding: 0 12px;
    box-sizing: border-box;
}
.banner-msg{
        max-width: 1200px;
      
        padding-top: 100px;
}
.banner-msg h1 {
    margin-bottom: 20px;
}
.banner-msg p {
    margin-bottom: 40px;
}
.top1_box{
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}
/* 标题样式 */
.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

/* 卡片容器样式，采用弹性布局，适配不同屏幕 */

.detail-box{
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 100px;
    margin-top: 80px;
}
    .service-content {
      width: 90%; 
      max-width: 1200px; 
      margin: 0 auto; 
      display: grid;
      grid-template-columns: 1fr; 
      gap: 40px; 
    }

    .service-item {
      display: flex;
      flex-direction: column; 
      align-items: flex-start; 
      gap: 10px; 
      justify-content: center;
    }
    .service-item h3{
      margin-bottom: 14px;
    }

    .service-item img {
      width: 100%; 
      height: auto; 
      border-radius: 8px; 
    }

    .service-item p {
      font-size: 14px; 
      color: #666; 
      line-height: 1.8; 
    }

    .list-msg {
      /* margin-bottom: 40px; */
    }
    .list-msg p{
      overflow: hidden;
    }
    .detail-tip{
        margin-bottom: 20px;
    }
/* 卡片容器样式，采用弹性布局，适配不同屏幕 */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;


}
.card-title1{

}
/* 单个卡片样式 */
.card {
  flex: 1 1 calc(25% - 65px);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #F1F9F7 100%);
    height: 280px;
}
 .card-title{
  text-align: center;
 }
 .card-desc{
  margin-top: 50px;
  font-size: 14px;
  color: #666;
  line-height: 36px;
  padding: 0px 20px;
 }

 #message{
  position: fixed;
  top: 10%;
  left: 50%;
  margin-left: -165px;
  width: 300px;
  max-width: 100% !important;
  padding: 15px;
  font-size: 14px;
  z-index: 9999;
  border-radius: 10px;
  display: none;
  opacity: 0;
  transition:  0.5s;
}
#message.success{
  border: 1px solid #e1f3d8;
  background: #f0f9eb;
  color: #67c23a;
  box-shadow: 0 0 10px #98ec6e;
}
#message.warning{
  border: 1px solid #faecd8;
  background: #fdf6ec;
  color: #e6a23c;
  box-shadow: 0 0 10px #e4c08b;
}

/* 立即咨询开始 */
.experienceBox{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.4);
  overflow: auto;
}
.experienceCon{
  width: 600px;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 100px auto;
}
.experienceHeader{
  position: relative;
  width: 100%;
}
.experienceHeader>img{
  width: 100%;
  display: block;
}
.experienceheaderCon{
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.experienceheaderConTitle{
  width: calc(100% - 20px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.experienceheaderConTitle>p{
  width: 100%;
  font-size: 14px;
}
.experienceheaderConTitle>p:first-of-type{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.experienceheaderCon>img{
  width: 20px;
  cursor: pointer;
}
.experienceIframeBox{
  width: 100%;
  padding: 24px 100px 0;
  background: #fff;
  box-sizing: border-box;
}
.experienceIframeBox>input{
  width: 100%;
  height: 45px;
  border: 1px solid #CFE2DD;
  border-radius: 8px;
  margin-bottom: 14px;
  text-indent: 1em;
}
.experienceIframeBox>input:focus {
  outline: none; /* 移除默认的浏览器轮廓线 */
}
.experienceIframeBox>input:hover{
  border: 1px solid #117865;
}
/* Chrome/Safari */
.experienceIframeBox>input::-webkit-input-placeholder {
  font-size: 14px;
}
/* Firefox */
.experienceIframeBox>input::-moz-placeholder {
  font-size: 14px;
}
/* IE10+ */
.experienceIframeBox>input:-ms-input-placeholder {
  font-size: 14px;
}
.experienceIframeBox>textarea{
  width: 100%;
  height: 92px;
  border: 1px solid #CFE2DD;
  border-radius: 8px;
  text-indent: 1em;
  margin-bottom: 20px;
  padding: 10px 0;
  resize: none;
  font-family: 'HanSansSC';
}
.experienceIframeBox>textarea:focus {
  outline: none; /* 移除默认的浏览器轮廓线 */
}
.experienceIframeBox>textarea:hover{
  border: 1px solid #117865;
}
/* Chrome/Safari */
.experienceIframeBox>textarea::-webkit-input-placeholder {
  font-size: 14px;
}
/* Firefox */
.experienceIframeBox>textarea::-moz-placeholder {
  font-size: 14px;
}
/* IE10+ */
.experienceIframeBox>textarea:-ms-input-placeholder {
  font-size: 14px;
}
.experienceButtonBox{
  width: 100%;
  padding: 0 100px 30px;
  background: #fff;
  box-sizing: border-box;
}
.experienceButtonBox>button{
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, #117865 0%, #1B9881 100%);
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.experienceButtonBox>button:hover{
  opacity: 0.8;
}
/* 立即咨询结束 */