/* 容器样式，用于包裹标题和卡片列表 */
.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;
}