百合花图片高清壁纸
/* 页面样式,这里可以添加CSS框架或者自定义样式 */
body {
background: f8f9fa;
fontfamily: Arial, sansserif;
margin: 0;
padding: 20px;
}
.container {
maxwidth: 1200px;
margin: 0 auto;
textalign: center;
}
.imagegrid {
display: grid;
gridtemplatecolumns: repeat(autofit, minmax(300px, 1fr));
gridgap: 20px;
padding: 20px;
}
.imageitem {
border: 1px solid ddd;
boxshadow: 0 4px 6px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.3s;
}
.imageitem img {
width: 100%;
height: auto;
}
.imageitem:hover {
transform: scale(1.05);
}
.title {
margintop: 10px;
textalign: center;
fontsize: 18px;
color: 333;
}