1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* compone/navbar/navbar.wxss */
- .nav-wrap {
- position: fixed;
- width: 100%;
- top: 0;
- /* background: #F7F7F7;
- color: #000; */
- z-index: 999;
- }
- /* 标题要居中 */
- .nav-title {
- position: absolute;
- text-align: center;
- max-width: 400rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- margin: auto;
- font-size: 32rpx;
- /* color: #2c2b2b; */
- font-weight: 600;
- }
- .nav-capsule {
- display: flex;
- margin-top: 8rpx;
- align-items: center;
- margin-left: 30rpx;
- width: 140rpx;
- justify-content: space-between;
- height: 100%;
- }
- .back-pre, .back-home {
- width: 40rpx;
- height: 40rpx;
- margin-top: 1rpx;
- padding: 10rpx;
- }
-
|