﻿
/************************列表页面开始************************/

.list { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; justify-content: flex-start; }
.list li { position: relative; width: 225px; height: 300px; border-radius: 10px; overflow: hidden; border: 1px solid #e1e1e1; }
.list li a { display: flex; justify-content: center; }
.list li img { width: 100%; height: 100%; object-fit: cover; transition: all 0.3s; }
.list li img:hover { transform: scale(1.05); }
.list li .label { position: absolute; text-align: center; bottom: 10px; width: 90%; line-height: 30px; background-color: rgba(255, 255, 255, 0.6); border-radius: 5px; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 10px; }
.list li:hover .label { color: #fb3471; }

/************************列表页面结束************************/
