fix+refactor: 下拉面板左右收起 + About 页面大幅精简
All checks were successful
continuous-integration/drone/push Build is passing

下拉面板修复:
- .nav-cont 加 pointer-events:none 让全宽空白区不拦截鼠标
- .nav-cont-menu 加 pointer-events:auto 只有内容区可交互
- 加 .nav-shadow mouseleave 监听兜底

About 精简:
- 7 section → 5 section (去掉关于我们长文、客户案例)
- 核心优势 6 项 → 3 项 SVG 图标卡片
- 时间轴去掉段落描述只保留标题
- CTA 精简为一行描述 + 按钮
This commit is contained in:
yiqiu
2026-03-18 19:41:58 +08:00
parent 89fdd12dba
commit 8c0f42b90e
3 changed files with 149 additions and 556 deletions

View File

@@ -13,7 +13,7 @@
overflow: hidden;
transition: height 0.25s ease-out;
height: 0;
/* 不设背景,由 inner 负责 */
pointer-events: none; /* 左右空白区域不拦截鼠标 */
}
/* ── 下拉内层 —— 居中收窄面板 ── */
@@ -38,6 +38,7 @@
box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55),
0 0 0 1px rgba(255, 255, 255, 0.04) inset;
padding: 20px 0 12px;
pointer-events: auto; /* 只有实际内容区域可交互 */
}
.nav-cont-menu.nav-cont-empty {