.container01 {        
  display: flex;        
  flex-wrap: wrap;      
  justify-content: center;  
}        
        
.image-group {        
  display: flex;        
  flex-direction: row;        
  justify-content: space-between;        
  align-items: center; /* 使文字说明垂直居中 */       
  /* margin-left: 5px; 在图片右侧添加间隔      */      
}        
        
.image-group  img  {        
  max-width: 150px !important; /* 图片最大宽度为容器宽度的100% */        
}        
        
.image-group figcaption {        
  max-width: 450px; /* 与图片宽度保持一致 */        
  text-align: center; /* 使文字说明水平居中 */        
  margin-left: 5%; /* 留出10%的间距 */        
  margin-right: 5%; /* 留出10%的间距 */       
  text-align: justify; /* 使文字左对齐 */     
  word-wrap: break-word;      
  text-indent: 2em;      
  font-size: 16px; /* 或其他较小的值 */    
}      
      
.image-group figcaption h2 { /* 添加标题样式 */      
  text-indent: 0em; /* 首行缩进2个字符 */      
}      
        
.line {        
      width: 100%;        
      height: 0;        
      padding-bottom: 5%; /* 根据需要调整线的长度 */        
      border-bottom: 1px solid #000; /* 设置线的颜色和宽度 */   }     
      /* 当屏幕宽度小于768px时，将每组图片和文字说明改为垂直排列 */        
@media (max-width: 768px) {        
  .image-group {        
    flex-direction: column;        
  }        
  .image-group figcaption {        
    /* 根据需要调整文字说明的位置和排列方式 */        
  }    
  .line { /* 当屏幕宽度小于768px时，显示线 */    display: block;    }    }    
