优化ui,公司背景,底部导航栏图标,筛选功能,详情导航栏,单位

This commit is contained in:
2026-09-01 11:31:24 +08:00
parent 492ece2152
commit 67b04ff65e
11 changed files with 105 additions and 25 deletions
+41
View File
@@ -6,6 +6,47 @@
background: #ffffff;
}
/* 自定义导航栏(UI-0014):固定顶部白底,状态栏占位 + 44px 导航行 */
.nav-bar {
position: fixed;
top: 0;
left: 0;
right: 0;
background: #ffffff;
z-index: 999;
}
.nav-inner {
position: relative;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
/* 返回按钮:44px 命中区,箭头用 CSS 边框绘制,无需图标资源 */
.nav-back {
position: absolute;
left: 0;
top: 0;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.nav-back-arrow {
width: 18rpx;
height: 18rpx;
border-left: 4rpx solid #000000;
border-bottom: 4rpx solid #000000;
transform: rotate(45deg);
margin-left: 8rpx;
}
.nav-title {
font-size: 32rpx;
font-weight: 500;
color: #000000;
}
/* 区块之间的灰色分隔条:390x6px #F5F5F5 */
.section-divider {
width: 100%;