body{
  background: linear-gradient( 90, #FAFBFF 0%, #F0F3FF 100%);
}
.h3_title{
         margin: 90px 0 90px 0;
         font-family: PingFangSC, PingFang SC;
         font-weight: 500;
         font-size: 34px;
         color: #20262C;
         line-height: 48px;
         text-align: center;
   }
   .h3_title_1{margin: 150px 0 90px 0;}
   .h3_title_2{margin: 90px 0 0px 0;font-family: PingFangSC, PingFang SC;
         font-weight: 500;
         font-size: 34px;
         color: #20262C;
         text-align: center;}
   .h3_title_22{font-size: 34px; text-align: center;}      
.dy_content{
   .h3_title{
         margin: 90px 0 130px 0;
         font-family: PingFangSC, PingFang SC;
         font-weight: 500;
         font-size: 34px;
         color: #20262C;
         line-height: 48px;
         text-align: center;
   }
}

.dy_why{
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: relative;
}
.dy_why_left{
   width: 31%;
   padding: 35px 45px 35px 35px;
   background: linear-gradient( 90deg, #CACEFF 0%, rgba(254,254,254,0.6) 100%);
   border-radius: 28px;
   border: 6px solid rgba(255,255,255,0.65);
   backdrop-filter: blur(9px);
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   position: relative;
}
.dy_left_top{
   z-index: 99;
   position: absolute;
   top: -46%;
}
.dy_left_top_2{
   z-index: 99;
   position: absolute;
   bottom: -30%;
   right: 6%;
}
.dy_why_left_1{
    display: flex;
    align-items: center;
    gap: 20px;

    h2{
      font-family: YEFONTAoYeHei, YEFONTAoYeHei;
      font-weight: 400;
      font-size: 30px;
      color: #4B42FF;
      line-height: 42px;
   }
     p{
      flex: 1;
      font-family: PingFangSC, PingFang SC;
      font-weight: 500;
      font-size: 15px;
      color: #333333;
      line-height: 28px;
   }
}


.worry{
   width: 100%;
   max-width: 1400px;
   margin: 0 auto;
}
.worry_content{
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   .worry_left,.worry_right{
        display: flex;
        gap: 30px;
        flex-direction: column;
        align-items: center;
        width: 35%;
        flex-wrap: wrap;
   }
   .worry_center{
        flex: 1;
        text-align: center;
   }
   .worry_right{
        width: 35%;
   }
}
.worry_left_card{
   width: 70%;
   padding: 15px;
   text-align: center;
   font-family: PingFangSC, PingFang SC;
   font-weight: 500;
   font-size: 23px;
   color: #FFFFFF;
   line-height: 32px;
   background: linear-gradient( 315deg, #665EFF 0%, #4195FF 100%);
   box-shadow: 2px 2px 17px 5px rgba(24,22,74,0.14);
   border-radius: 35px;
}

/* 时间轴 */
.timeline-container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 40px 20px;
  padding-bottom: 70px;
  box-sizing: border-box;
  position: relative; /* 新增：作为移动端定位基准 */
}

/* 图片区域样式 */
.timeline-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 60px; /* 预留圆点和线条空间 */
}

.timeline-image-item {
  flex: 1;
  text-align: center;
  position: relative; /* 作为圆点的定位容器 */
}

.timeline-image-item img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.timeline-image-item img:hover {
  transform: translateY(-5px);
}

/* 时间轴与圆点样式 */
.timeline-axis {
  position: relative;
  width: 100%;
  height: 4px;
  margin: -30px 0 60px; /* 与圆点居中对齐 */
}

.axis-line {
  width: 100%;
  height: 60%;
  background-color: #4B42FF;
}

/* 圆点样式 - 与图片绑定确保在正下方 */
.axis-point {
  width: 24px;
  height: 24px;
  background-color: #4B42FF;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: calc(100% + 20px); /* 图片底部下方20px */
  transform: translateX(-50%); /* 水平居中对齐图片 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.axis-point span {
  color: white;
  font-size: 14px;
  font-weight: bold;
  transform: translateX(1px); /* 微调箭头位置居中 */
}

/* 内容区域样式 */
.timeline-contents {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.timeline-content-item {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.content-title {
  font-size: 18px;
  color: #4B42FF;
  margin-bottom: 10px;
  font-weight: 600;
}

.content-desc {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* 移动端适配 */
@media (max-width: 768px) {
  /* 移除时间轴 */
  .yy_service .h3_title_2{
    font-size: 24px;
    margin: 40px 0 0 0;
}
  .timeline-axis {
    display: none;
  }
  .timeline-container{
      padding-bottom: 0;
}
  /* 图片和内容区域改为垂直排列的左右布局 */
  .timeline-images,
  .timeline-contents {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  /* 每个时间点的图片和内容组合成一行 */
  .timeline-image-item,
  .timeline-content-item {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  
  /* 组合图片和内容为一行 */
  .timeline-image-item {
    display: inline-block;
    width: 35%;
    vertical-align: middle;
  }
  
  .timeline-contents {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 60%;
  }
  
  .timeline-content-item {
    padding: 25px 0 16px 15px; /* 与图片高度匹配 */
    text-align: left;
  }
  
  /* 调整图片大小适应移动端 */
  .timeline-image-item img {
    max-width: 120px;
  }
  
  /* 移除移动端圆点 */
  .axis-point {
    display: none;
  }
}


.advantage{
    width: 100%;
    height: auto;
    background-image: url('../img/advantage_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 95px 0;
}
.advantage_card{
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 25px;
}
.advantage_card_1{
    width: 28%;
    background: linear-gradient( 90deg, #4B87FF 0%, #6460FF 100%);
    border-radius: 16px;
    border: 1px solid #979797;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 30px;
    h4{
      font-family: PingFangSC, PingFang SC;
      font-weight: 500;
      font-size: 24px;
      color: #FFFFFF;
      line-height: 28px;
   }

}

.Consultation{
     height: auto;
     background: linear-gradient( 0, #FAFBFF 0%, #F0F3FF 100%);
     padding: 60px 0;
}
.Consultation_content{
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 25px;
    padding-top: 35px;
}


.Consultation_content_card{
    width: 26%;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 50px 45px;
    background: #FFFFFF;
    box-shadow: 0px 0px 18px 11px rgba(203,204,231,0.1);
    border-radius: 16px;
    position: relative;

    img{
      width: 50%;
      height: auto;
   }
   h4{
      font-family: PingFangSC, PingFang SC;
      font-weight: 500;
      font-size: 24px;
      color: #3C32FF;
   }
   p{
     text-align: center;
   }
}
.left_top_bg{
    width: 100px;
    height: 45px;
    background: linear-gradient( 90deg, #3498FF 0%, #3C37FF 100%);
    border-radius: 16px 0px 16px 0px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 45px;
    font-family: zihunxingmouhei;
    font-size: 30px;
    color: #FFFFFF;
}


/* 最后一个模块 */
.al_show{
    background-image: url('../img/show_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0;
}
.al_show_content{
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 35px;
}
.al_show_content_top{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.al_show_ny_right{
    flex: 1; 
    text-align: center;
}
.al_show_ny_right img{
    width: 45%;
    height: auto;
}
.al_show_content_btn{
    text-align: center;
    width: 32%;
    padding: 15px;
    background: #FFFFFF;
    border-radius: 10px 0px 0px 10px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 20px;
    color: #4B42FF;
    cursor: pointer;
    transition: all 0.3s ease;
}
.al_show_content_btn.active,
.al_show_content_btn:first-child,
.al_show_content_btn:hover{
    background: linear-gradient( 90deg, #4B87FF 0%, #6460FF 100%);
    color: #FFFFFF;
}
.al_show_content_bottom{
    background: linear-gradient( 90deg, #4B87FF 0%, #6460FF 100%);
    border-radius: 14px;
    border: 1px solid #979797;
    margin-top: 65px;
    padding: 40px 50px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.al_show_content_bottom_top{
    display: flex;
    justify-content: space-between;
}
.al_show_ny_left{
    width: 50%; 
}
.al_show_ny_left_top{
    display: flex;
    align-items: center;
    gap: 20px;
}
.al_show_ny_left_top h5{
    font-family: zihunxingmouhei;
    font-size: 56px;
    color: #FFFFFF;
    margin: 0;
}
.al_show_ny_left_top h6{
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 30px;
    color: #FFFFFF;
    margin: 0;
}
.al_show_ny_left_bottom{
    padding: 30px 0;
    border-bottom: 1px solid #FFFFFF;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.al_show_ny_left_bottom h5,
.al_show_ny_left_bottom h4{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
    margin: 0;
}
.li_list{
    padding-top: 30px;
}
.li_neirong{
    display: flex;
    align-items: start;
    gap: 15px;
    padding-bottom: 20px;
}
.li_neirong .li_left img{
    width: 25px;
    height: auto;
    margin-top: 3px;
}
.li_neirong .li_right{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 23px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .al_show_content_top{
        flex-direction: column;
    }
    .al_show_content_btn{
        width: 80%;
    }
    .al_show_content_bottom_top{
        flex-direction: column;
    }
    .al_show_ny_left,
    .al_show_ny_right{
        width: 100%;
    }
    .al_show_ny_right img{
        width: 80%;
        margin-top: 30px;
    }
    .al_show_ny_left_bottom{
        flex-direction: column;
        gap: 15px;
    }
}


.advantage_card_1_hover,.Consultation_content_card_hover{
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* 更自然的缓动曲线 */
    transform: translateY(0); /* 初始位置 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 基础阴影 */
}

.advantage_card_1_hover:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.19); /* 增强阴影层次感 */
    transform: translateY(-5px); /* 轻微上浮，增加立体感 */
}
.Consultation_content_card_hover:hover{
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3) /* 增强阴影层次感 */
}








/* 移动端适配代码 */
@media (max-width: 1024px) {
    .dy_content .h3_title {
        margin: 60px 0 80px 0;
        font-size: 28px;
        line-height: 40px;
    }
    
    .dy_why_left {
        padding: 25px 30px;
    }
    
    .dy_why_left_1 {
        gap: 15px;
    }
    
    .dy_why_left_1 h2 {
        font-size: 26px;
    }
    
    .dy_why_left_1 p {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .dy_content {
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .dy_content .h3_title {
        margin: 40px 0 25px 0;
        font-size: 24px;
        line-height: 36px;
    }
    .worry .h3_title{
        margin: 10px 0 30px 0;
        font-size: 24px;
        line-height: 36px;
    }
    .h3_title_22{
         font-size: 24px;
   }
    .dy_why {
        flex-direction: column;
        min-height: auto;
    }
    
    .dy_left_top{
        display: none;
   }
    .dy_left_top_2{
        display: none;
   }
    .dy_why_left,
    .dy_why > .dy_why_left[style*="padding-left: 60px"] {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    .phone_intro{
        display: none;
   }
    .dy_why_left_1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .dy_why_left_1 h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .dy_why_left_1 p {
        padding-left: 0px !important;
        font-size: 13px;
        line-height: 22px;
    }
    
    .dy_why > div[style*="position: absolute"] {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 15px !important;
        max-width: 200px;
        z-index: 999 !important;
    }
    
    .dy_why > div[style*="position: absolute"] img {
        width: 100% !important;
    }

    .worry_left,.worry_right{
        width: 100% !important;
   }
    .worry_center{
       margin: 17px 0;
   }
    .worry_left_card{
        width: 85%;
        padding: 10px !important;
        font-size: 19px !important;
   }
   .advantage_card_1{
      width: 33%;
      img{
           width: 45%;
      }
      h4{
         font-size: 18px;
      }
   }
    .advantage_card{
      gap: 13px;
   }
   .advantage{
      padding: 40px 0;
   }
   .left_top_bg{
      width: 70px;
      height: 35px;
      font-size: 22px;
      line-height: 35px;
   }
   .Consultation_content_card img{
       width: 100%;
   }
}
