/* 此css文件仅用作collaboration */

/* 图片画廊容器 */
.image-gallery {
  width: 95%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* 画廊中的每张图片 */
.image-gallery img {
  width: calc(50% - 10px);
  /* height: auto; 保持原始比例的关键 */
  height: auto;
  border-radius: 15px;
}

.item_1 {
    flex: 1;
    background-color: #9ca39c53;
    border-radius: 10px;
    padding: 0.5vw 0.5vw;
    margin: 0.5vw;
}


/* 此css文件仅用作collaboration */
