fix: 修复地图界面搜索栏和省级地图返回按钮问题
- 添加省级地图返回按钮,与企业列表界面风格一致 - 修复移动端搜索框布局,独立于header显示 - 添加响应式布局支持: * 移动端:112px顶部空间(header + 搜索框) * PC端:64px顶部空间(只有header) - 优化面包屑导航位置 - 在切换地图层级时自动显示/隐藏返回按钮 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -300,3 +300,30 @@
|
||||
padding: 4px 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* 地图界面响应式布局 */
|
||||
#map-interface main {
|
||||
padding-top: 112px; /* 默认移动端:64px header + 48px 搜索框 */
|
||||
}
|
||||
|
||||
#map-interface #map-chart {
|
||||
height: calc(100vh - 112px);
|
||||
}
|
||||
|
||||
#breadcrumb-container {
|
||||
top: 120px; /* 移动端:在搜索框下方 */
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#map-interface main {
|
||||
padding-top: 64px; /* PC端:只有header */
|
||||
}
|
||||
|
||||
#map-interface #map-chart {
|
||||
height: calc(100vh - 64px);
|
||||
}
|
||||
|
||||
#breadcrumb-container {
|
||||
top: 80px; /* PC端:在header下方 */
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user