.image-gallery {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    gap: 8px; /* 图片间距 */
    justify-content: space-between; /* 行内图片均匀分布 */
    padding: 8px;
    box-sizing: border-box;
}

.image-gallery img {
    flex-grow: 1; /* 允许图片填充空间 */
    max-width: 100%; /* 避免图片超出容器宽度 */
    height: auto; /* 保持图片比例 */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.test1{
    width: 2560px;
    overflow: hidden;
}