12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /**index.wxss**/
- /*热门推荐*/
- @import "/component/hot/hot.wxss";
- /*热团*/
- @import "/component/group/group.wxss";
- /*关注*/
- @import "/component/follow/follow.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: #383838;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 15rpx;
- z-index: 999;
- padding: 0 10rpx 0;
- }
- .tabbar {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 164rpx;
- height: 60rpx;
- line-height: 60rpx;
- font-size: 32rpx;
- border-radius: 30rpx;
- background: #fff;
- }
- .select {
- color: #fff;
- /* font-size: 40rpx; */
- /* font-family: SourceHanSansSC-bold; */
- background: #61ca54;
- }
- .bottom-tab image {
- width: 54rpx;
- height: 54rpx;
- margin-right: 20rpx;
- }
- .jurisdiction {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- }
|