- 新增样式以支持荣誉列表在展开状态下显示最多8条项 - 实现滚动功能以处理超出项的显示
@ -567,6 +567,13 @@
.ab-honors__list:not(.is-expanded) .ab-honors__item:nth-child(n+6) {
display: none;
}
/* 展开后约显示 8 条,超出滚动(单条 ≈ 上下 padding 2.5rem + 行高 + 底边) */
.ab-honors__list.is-expanded {
max-height: calc(8 * (5rem + var(--font-32) + 1px));
overflow-y: auto;
overscroll-behavior: contain;
scrollbar-width: thin;
.ab-honors__item {
position: relative;
display: flex;