﻿  .container1 {
             width: 955px;
            height: 1868px;
            font-family: '微软雅黑', Arial, sans-serif;
            line-height: 1.6;
            margin: 20px;
        }

.container1 h1 {
    font-size: 32px;
    font-weight: bold;
    color: black;
    line-height: 1.6;
}

.container1 h2 {
    font-size: 24px;
    font-weight: bold;
    color: black;
    line-height: 1.6;
}

.container1 h3 {
    font-size: 18px;
    font-weight: bold;
    color: black;
    line-height: 1.6;
}

.container1 h4 {
    font-size: 16px;
    font-weight: bold;
    color: black;
    line-height: 1.6;
}

.container1 p {
    font-size: 14px;
    font-weight: normal;
    color: black;
    line-height: 1.6;
}

        .example {
            margin: 20px 0;
            padding: 10px;

            border-left: 4px solid #4CAF50;
        }

        .example h4 {
            margin-top: 0;
        }

        .example img {
            max-width: 100%;
            height: auto;
            margin-top: 10px;
        }

        .example ul {
            margin-left: 20px;
        }
          .row {

    display: flex;
    justify-content: space-around;
  }
  .row img {
    max-width: 90%;
    height: auto;
    box-sizing: border-box;
  }

  .small-container {
  width: 100%; /* 或者具体的宽度 */
  overflow: hidden; /* 清除浮动 */
}

.row {
  display: flex; /* 使用flex布局 */
  justify-content: space-between; /* 图片之间平均分布 */
}

.img-container {
  width: calc(33.333% - 10px); /* 假设有一个10px的间距，图片容器占33.333%的宽度 */
  margin: 5px; /* 图片容器之间的间距 */
  box-sizing: border-box; /* 包含padding和border在内的宽度计算 */
}

.img-container img {
  width: 100%; /* 图片宽度占满容器 */
  height: auto; /* 高度自适应 */
}
