

/* 图片区域部分 */
section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    background-image: linear-gradient(to up, rgba(222, 221, 226, 0), rgb(195, 196, 201));
}
figure {
    display: flex;
	flex-direction: column;
    flex-wrap: wrap;
    flex: 50%;
    background-image: linear-gradient(to bottom, rgb(197, 197, 204), rgb(222, 223, 228));
}


figure img { 
    display: block;
    width: 100%;
    height: 150px;
	border-radius: 20px;
    padding: 2px;
        
}


    