12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* myComponents/navBar/navBar.wxss */
- @import "/static/iconfont/iconfont.wxss";
- .uni-pages{
- background-color: #ffffff;
- z-index: 999999;
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- }
- .nav-bar-inner {
- height: 32px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 8px;
-
- }
- .image-box {
- display: flex;
- justify-content: space-around;
- align-items: center;
- border: 1px solid #efefef;
- border-radius: 16px;
- background-color: rgba(#fff, 0.6);
- }
- .line {
- width: 1px;
- height: 26px;
- background-color: rgba(#fff, 0.3);
- }
- .image {
- width: 22px;
- height: 22px;
- /* text-align: center; */
- line-height: 22px;
- }
- .title {
- color: #000;
- font-weight: 500;
- font-size: 28rpx;
- white-space: nowrap; /* 防止文本换行 */
- overflow: hidden; /* 隐藏超出容器的文本 */
- text-overflow: ellipsis; /* 显示省略号来表示文本被截断 */
- }
- .nav-bar-buttom {
- height: 10rpx;
- }
|