/* components/navigationBar.wxss */ .navigation-container { position: fixed; width: 100%; z-index: 99; top: 0; left: 0; } .navigation-bar { position: relative; display: flex; flex-direction: row; align-items: center; } .navigation-buttons { display: flex; align-items: center; margin-left: 10px; border: 1px solid rgba(0, 0, 0, 0.05); box-sizing: border-box; border-radius: 15px; background-color: transparent; } .nav-img { height: 22px; margin-left: 28rpx; width: 22px; } .navigation-title { position: absolute; left: 104rpx; right: 104rpx; text-align: center; font-size: 16px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .center-align { text-align: center; } .left-align { text-align: left; } .arrow-content { position: absolute; left: 40rpx; z-index: 999; display: flex; align-items: center; } .arrow { width: 18rpx; height: 18rpx; border: 5rpx solid #101010; border-right-color: transparent; border-bottom-color: transparent; transform: rotate(-45deg); }