1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .tabbar {
- display: flex;
- justify-content: space-around;
- position: fixed;
- height: 110rpx;
- width: 100vw;
- bottom: 0;
- background-color: #fff;
- z-index: 999;
- box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 8rpx;
- }
- /* 更多 */
- .extend {
- display: flex;
- padding-top: 30rpx;
- flex-wrap: wrap;
- }
- .extend .tabbar-item {
- flex: none;
- width: 25%;
- margin-bottom: 10rpx;
- }
- .tabbar-item {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 98rpx;
- }
- .tabbar-item .icon {
- width: 46rpx;
- height: 46rpx;
- text-align: center;
- line-height: 46rpx;
- color: #333333;
- }
- .tabbar-item .num {
- width: 80%;
- height: 46rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .tabbar-item .label {
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 8rpx;
- }
- .title {
- width: 100vw;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- box-sizing: border-box;
- border-bottom: 1px solid #EEEEEE;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- swiper-item {
- display: flex;
- flex-wrap: wrap;
- align-content: flex-start;
- }
- .swiper-item {
- width: 150rpx;
- height: 150rpx;
- }
|