36 lines
656 B
Plaintext
36 lines
656 B
Plaintext
/* components/navBar.wxss */
|
|
.ui-navigatorbar {
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
width: 750rpx;
|
|
height: 172rpx;
|
|
background: #FFFFFF;
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: none;
|
|
}
|
|
|
|
.ui-navigatorbar-back {
|
|
position: absolute;
|
|
padding-left:40rpx;
|
|
padding-right:40rpx;
|
|
|
|
left: 0rpx;
|
|
font-size: 40rpx;
|
|
bottom: 20rpx;
|
|
}
|
|
|
|
.ui-title {
|
|
position: absolute;
|
|
width: 350rpx;
|
|
height: 88rpx;
|
|
line-height: 56rpx;
|
|
font-size: 36rpx;
|
|
white-space: nowrap;
|
|
color: #000000;
|
|
bottom: 0;
|
|
left: 200rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |