1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /**index.wxss**/
- /*看*/
- @import "/component/look/look.wxss";
- /*搜索*/
- @import "/component/search/search.wxss";
- /*我的*/
- @import "/component/mys/mys.wxss";
- .template {
- height: 100%;
- }
- .scroll-view {
- height: 100%;
- }
- .bottom-tab {
- position: fixed;
- bottom: 28rpx;
- left: 5%;
- width: 90%;
- height: 152rpx;
- background: #fff;
- color: #6a6a6a;
- border-radius: 152rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 6px 0 rgba(0, 0, 0, .2);
- }
- .tabbar {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- font-size: 48rpx;
- border-radius: 152rpx;
- }
- .select {
- background: #fece00;
- color: #000;
- }
- .bottom-tab image {
- width: 54rpx;
- height: 54rpx;
- margin-right: 20rpx;
- }
- .jurisdiction {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%,-50%);
- }
|