
.content1 {
    display: flex; /* 使用Flexbox布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    flex-wrap: wrap; /* 允许子元素换行 */
    gap: 10px; /* 子元素之间的间距 */
    flex-direction: row; /* 子元素水平排列 */
}

.image-frame1 {
    background-color:  rgba(255, 255, 255,1);
    width:100%
    height:100%
}
.image-frame2 {
    background-color: rgba(255, 255, 255,1);
    width:100%
    height:100%
}
.image-frame3 {
   background-color: rgba(255, 255, 255,1);
    width:100%
    height:100%
}
.image-frame4 {
    background-color: rgba(255, 255, 255,1);
    width:100%
    height:100%
}
.image-frame5 {
    background-color: rgba(255, 255, 255,1);
    width:100%
   height: 300px;

}



.image-box {
    width: 100%; /* 图片宽度设置为容器宽度的100% */
    

    
    display: flex; /* 使用Flexbox布局 */
    justify-content: center; /* 水平居中 */
    

}

.image-box img {
    width: 20%; /* 图片宽度设置为容器宽度的100% */
    border-radius: 100%; /* 圆形边框 */
    border: 1px solid green; /* 绿色边框，5px 宽 */
    transition: transform 0.3s ease; /* 平滑过渡效果 */
    object-fit: cover; /* 使图片覆盖整个容器，保持圆形 */
}

.image-box:hover img {
    transform: scale(1.1); /* 鼠标悬停时放大图片 */
}


.container1 {
    display: grid; /* 启用Grid布局 */
    grid-template-columns: repeat(5, 1fr); /* 创建5列，每列等宽 */
    width: 100%; /* 容器宽度设置为视口宽度的80% */
    max-width: 1200px; /* 最大宽度限制为1200px */
    
    box-sizing: border-box; /* 包括边框和内边距在宽度和高度内 */
    margin: 10em auto !important;
    height: 300px;
}

.box {
    border: 1px solid #fff; /* 边框 */
    
    padding: 5px; /* 内边距 */
    box-sizing: border-box; /* 包括边框和内边距在宽度和高度内 */
    height: 300px;
    width: 100%
}

















