/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  .container {
    width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* 导航栏样式 */
  header {
    background-color: #333;
    color: white;
    padding: 20px 0;
  }
  
  header.logo {
    float: left;
  }
  
  header nav {
    float: right;
  }
  
  header nav ul {
    list-style-type: none;
  }
  
  header nav ul li {
    display: inline-block;
    margin-left: 20px;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
  }
  
  /* 标题区样式 */
  .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  /* 产品描述区样式 */
  .product-description {
    padding: 80px 0;
  }
  
  .product-description h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .product-description p {
    text-align: left;
    font-size: 18px;
    line-height: 2; /* 增加行高改善换行显示 */
    color: #000000; /* 调整文字颜色 */
    margin-bottom: 20px; /* 新增：设置段落底部间距，让两个 <p> 之间空出一行 */
    text-indent: 2em; /* 首行缩进 2 个字体大小，em 是相对单位，随字体大小自适应 */
  }
  
  /* 产品功能区样式 */
  .product-features {
    padding: 80px 0;
  }
  
  .product-features.section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  /* .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  } */
  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 子元素水平居中 */
    gap: 40px; /* 卡片间距，替代复杂的 margin 计算 */
  }


  .feature-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .feature-item.icon {
    margin-bottom: 20px;
  }
  
  .feature-item h3 {
    margin-bottom: 10px;
  }
  
  /* 页脚样式 */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
  }






  .card {
    /* 移除原来固定的宽度 */
    /* width: 300px; */
    /* 增加高度 */
    min-height: 280px; 
    /* border: 1px solid #cdd6f4; */
    border: 1px solid #718ce7;
    border-radius: 10px;
    padding: 20px;
    background-color: white;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); 

    text-align: center;
    /* 根据高度计算宽度，这里假设高度为 400px，宽度为高度的 0.68 倍 */
    /* width: calc(0.68 * 400px);  */
    width: 420px; /* 固定卡片宽度，确保布局稳定 */
  }

  .card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold; /* 字体加粗 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* 文字阴影，水平偏移1px，垂直偏移1px，模糊半径2px，颜色透明度0.2的黑色 */
}
  .card p {
    font-size: 16px;
    line-height: 2; /* 增加行高改善换行显示 */
    text-align: left; /* 文字左对齐，更易阅读 */
    color: #444; /* 调整文字颜色 */
    line-height: 2; /* 增加行高改善换行显示 */
    text-indent: 2em; /* 首行缩进 2 个字体大小，em 是相对单位，随字体大小自适应 */
    margin-bottom: 20px; /* 新增：设置段落底部间距，让两个 <p> 之间空出一行 */
  }

  .icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid #cdd6f4;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .icon-container img {
    width: 40px;
    height: 40px;
  }
  
  h2 {
    margin-bottom: 10px;
  }
  
  .underline {
    width: 50px;
    height: 2px;
    background-color: #60a5fa;
    margin: 10px auto 20px;
  }
  
  p {
    font-size: 14px;
    line-height: 1.4;
  }









  /* 优势特色区域整体样式 */
.advantage-section {
    background-color: #b1d5fc;
    color: white;
    padding: 80px 0;
    text-align: center;
  }
  
  /* 标题样式 */
  .section-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  /* 下划线样式 */
  .underline_adv {
    width: 80px;
    height: 3px;
    background-color: white;
    margin: 0 auto 60px;
  }
  .advantage-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    width: 1200px; 
    height: 300px;
    margin: 0 auto; 
    justify-content: center;
    justify-items: center; 
  }
  


  .advantage-cards-change {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    width: 1200px; 
    /* height: 1000px; */
    margin: 0 auto; 
    justify-content: center;
    justify-items: center; 
  }


  /* 单个卡片样式 */
  .advantage-card {
    background-color: white;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%; 
  }
  
  .advantage-card-change {
    background-color: white;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 60%; 
    grid-column: span 2; 
  }
  
  .advantage-card-change-func {
    background-color: white;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%; 
    grid-column: span 2; 
  }

  /* 卡片标题样式 */
  .advantage-card h3 {
    font-size: 20px; /* 调整标题字体大小 */
    margin-bottom: 15px;
  }
  
  /* 卡片描述文本样式 */
  .advantage-card p {
    font-size: 16px; /* 调整文字大小 */
    line-height: 2.4; /* 调整行间距 */
    /* text-indent: 2em;  */
  }
  .advantage-card p1 {
    font-size: 14px; /* 调整文字大小 */
    line-height: 2.4; /* 调整行间距 */
    text-indent: 4em; 
  }

  /* 图片样式 */
/* 图片样式 */
.section-image {
  width: 80%; /* 调整图片宽度 */
  height: auto; /* 保持图片比例 */
  margin: 0 auto; /* 关键：左右自动外边距实现水平居中 */
  display: block; /* 关键：将图片转为块级元素，使 margin 生效 */
  margin-top: 20px;
}
  /* 卡片图标样式 */
  .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
  
  /* 卡片标题样式 */
  .advantage-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  /* 卡片描述文本样式 */
  .advantage-card p {
    font-size: 16px;
    line-height: 1.4;
  }




  /* 产品图片容器样式 */
/* .product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .product-image-container img {
    max-width: 80%;
    height: auto;
  } */
  .product-image-container {
    display: flex;
    justify-content: space-around; /* 调整为使图片之间有均匀的间隔 */
    flex-wrap: wrap; /* 允许图片换行 */
    overflow-x: auto; /* 当图片过多时出现水平滚动条 */
  }
  
  .product-image-container img {
    /* max-width: calc(100% / 4 - 20px);  */
    height: auto;
    margin: 10px; /* 给图片添加外边距，增加间隔效果 */
  }