12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /**index.wxss**/
- /*看*/
- @import "/component/hot/hot.wxss";
- /*热团*/
- @import "/component/group/group.wxss";
- /*我的*/
- @import "/component/my/my.wxss";
- .container{
- background: rgba(240,241,245,1);
- }
- .template {
- height: 100%;
- }
- .scroll-view {
- height: 100%;
- }
- .top-tab {
- position: fixed;
- top: 0;
- width: 100%;
- height: 80rpx;
- background:#fff;
- color: #6a6a6a;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 15rpx;
- z-index:1;
- }
- .tabbar {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 125rpx;
- height: 60rpx;
- font-size: 36rpx;
- border-radius: 100rpx;
- background: #fff;
- }
- .select {
- color: #000;
- font-size: 40rpx;
- font-family: SourceHanSansSC-bold;
- }
- .bottom-tab image {
- width: 54rpx;
- height: 54rpx;
- margin-right: 20rpx;
- }
- .jurisdiction {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%,-50%);
- }
|