
  .rd-container { max-width: 900px; margin: 0 auto; line-height: 1.8; color: #333; font-family: Arial, sans-serif; }
  .rd-section { margin-bottom: 40px; }
  .rd-h2 { font-size: 20px; font-weight: bold; margin-bottom: 15px; color: #000; text-transform: uppercase; border-left: 4px solid #333; padding-left: 15px; }
  
  /* 强制图片平铺的网格容器 */
  .rd-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 第一行 3 列 */
    gap: 10px;
    margin-bottom: 10px;
  }
  .rd-gallery-bottom-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 第二行 2 列 */
    gap: 10px;
  }
  
  /* 强制图片平铺的核心样式 */
  .rd-img-box {
    width: 100%;
    aspect-ratio: 4 / 3; /* 强制设定统一比例，确保平铺整齐 */
    overflow: hidden;
  }
  .rd-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 自动填充，裁剪多余部分以填满容器 */
    display: block;
  }
