1234567891011121314151617181920212223242526272829303132 |
- .page-index {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- box-sizing: border-box;
-
- .index-navbar {
- flex: none;
- }
-
- .index-tabber {
- flex: none;
- }
-
- .index-container {
- flex: auto;
- }
- }
-
- .custom-tabbar {
- .weui-tabbar__label {
- color: #C0C8D3;
- }
-
- .weui-bar__item_on {
- .weui-tabbar__label {
- color: #202020;
- }
- }
- }
|