/* Profile page rules move here as they are retired from legacy-pages.css. */ /* ── 代表作滚动容器:固定3列,刚好显示9个(3行),超出可滚动,隐藏滚动条 ── */ .profile-page__works-scroll { max-height: 390px; /* 3行卡片:3 × 120(min-height) + 2 × 10(gap) = 380px,留10px余量 */ overflow-y: auto; scrollbar-width: none; /* Firefox */ -ms-overflow-style: none; /* IE/Edge */ } .profile-page__works-scroll::-webkit-scrollbar { display: none; /* Chrome/Safari/Edge */ } .profile-page__works-scroll .profile-page__list-grid { grid-template-columns: repeat(3, 1fr); /* 固定3列,刚好3×3=9个可见 */ }