| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- .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;
- }
- .safety {
- height: constant(safe-area-inset-bottom);
- height: env(safe-area-inset-bottom);
- }
|