
  
.image-container {  

    display: flex; /* 使用flex布局使图片水平排列 */  

    justify-content: space-between; /* 可以在图片之间添加空间 */  

    margin-bottom: 15px; /* 图片和下面段落的间距 */  

}  

  

.image-box {  

    width: auto; /* 设置图片宽度 */  

    height: 300px; /* 保持图片的原始宽高比 */  

    /* 其他样式，如边框、内边距等 */  

}

.image-container2 {  

    display: flex; /* 使用flex布局使图片水平排列 */  

    justify-content: space-between; /* 可以在图片之间添加空间 */  

    margin-bottom: 15px; /* 图片和下面段落的间距 */  

}  


  

.image-box2 {  

    width: auto; /* 设置图片宽度 */  

    height: 500px; /* 保持图片的原始宽高比 */  

    /* 其他样式，如边框、内边距等 */  

}


.center-text {  

    text-align: center;  

}  

.list-items ol {  

    list-style-type: none; /* 移除列表项的默认编号 */  

    padding-left: 0; /* 移除默认的左内边距 */  

}  

  

.list-items li strong {  

    font-weight: bold; /* 加粗列表项中的 <strong> 标签内容 */  

}  

