.image-container {
  width: 1400px;
    margin: 0 auto ;
  padding-top:14px;
    gap: 20px;
    justify-content: center;
}
.image-row {
  display: flex;
  gap: 28px; /* 图片间间距 */
  flex-wrap: wrap;
  margin-top:24px;
   margin-bottom:144px;
  justify-content: space-between;
}
.image-row a{
height:227px;
  overflow:hidden;
}
.image-row a img{
 width: 100%;    /* 图片宽度 = 容器宽度 */
  height: 100%;   /* 图片高度 = 容器高度 */
  object-fit: cover; /* 关键：不拉伸，按比例缩放，填满容器（裁剪多余部分） */
  object-position: center; /* 可选：裁剪时优先显示图片中心（默认值，可调整） */
}
.image-row a:nth-of-type(1){
width:422px;
  
}
.image-row a:nth-of-type(2){
width:422px;
}
.image-row a:nth-of-type(3){
width:492px;
}
.image-row a:nth-of-type(4){
width:407px;
}
.image-row a:nth-of-type(5){
width:524px;
}
.image-row a:nth-of-type(6){
width:406px;
}
.image-row a:nth-of-type(7){
width:326px;
}
.image-row a:nth-of-type(8){
width:326px;
}
.image-row a:nth-of-type(9){
width:326px;
}
.image-row a:nth-of-type(10){
width:326px;
}

.image-container img {
	pointer-events:none;
}
.image-item {
  flex: 1; /* 使所有图片在各自的行中平均分配空间 */
  height: auto; /* 保持图片比例 */
  object-fit: cover; /* 裁剪适应（可选） */
}

/* 特定行样式调整 */
.image-row:nth-child(1) .image-item,
.image-row:nth-child(2) .image-item {
  flex: 1 1 calc(33.333% - 10px); /* 三列布局 */
  max-width: calc(33.333% - 10px);
}

.image-row:nth-child(3) .image-item {
  flex: 1 1 calc(25% - 10px); /* 四列布局 */
  max-width: calc(25% - 10px);
}
.flex-col {
	display:flex;
  	flex-direction:column;
}
      .image-text_q4 {
        width: 230px;
        height: 37px;
      }
   .text-group_q1 {
        width: 156px;
        height: 37px;
        overflow-wrap: break-word;
        color: rgba(68, 68, 68, 1);
        font-size: 26px;
        font-family: PingFangSC-Semibold;
        font-weight: 600;
        margin-left: 5%;
        white-space: nowrap;
        line-height: 37px;
      }
      .box_q3 {
        background-color: rgba(201, 201, 201, 1);
        height: 1px;
        margin-left: 5%;
		margin-bottom:2%;
      }
/* 手机端适配 */
@media (max-width: 767px) {
.image-container {
    width: 100%;
    margin: 0 auto;
    padding:10px;
   box-sizing:border-box;
  padding-top:0px;
  }
  .image-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
    margin-bottom: 44px;
    justify-content: space-around;
}
  .image-row a{
    width:45%!important;
  height:auto;
  overflow:hidden;
}
.image-row a img{
 width: 100% ;    /* 图片宽度 = 容器宽度 */
  height: 100%;   /* 图片高度 = 容器高度 */
  object-fit: cover; /* 关键：不拉伸，按比例缩放，填满容器（裁剪多余部分） */
  object-position: center; /* 可选：裁剪时优先显示图片中心（默认值，可调整） */
}
}
