| 123456789101112131415161718192021222324252627282930 |
- view, text {
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- }
-
- .navbar-wrap {
- width: 100%;
- }
-
- .navbar-wrap .column {
- width: 100%;
- height: 100rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-around;
- background: #fff;
-
- top: 0;
- left: 0;
- z-index: 100;
- }
-
- .navbar-wrap .column.fixed {
- position: fixed;
- border-bottom: solid 1rpx #1e1e1e;
- }
-
|