压缩关于模块高度 – 2026-03-07
/* 压缩关于模块高度 – 添加于2026-03-07 */
#about {
max-height: 100vh !important; /* 限制最大高度为视口高度 */
overflow: hidden !important; /* 隐藏超出部分 */
transition: max-height 0.3s ease !important; /* 平滑过渡 */
}
.hestia-about {
max-height: 100vh !important;
overflow: hidden !important;
}
/* 可选:添加”查看更多”按钮 */
#about::after {
content: “查看更多…”;
display: block;
text-align: center;
padding: 10px;
background: rgba(0,0,0,0.1);
cursor: pointer;
margin-top: 10px;
}
#about.expanded {
max-height: none !important; /* 展开时取消高度限制 */
}
