| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* 底部导航样式 */
- .active {
- color: var(--mina);
- }
- .Tabbar {
- position: fixed;
- bottom: 0;
- left: 0;
- height: 115rpx;
- width: 100%;
- font-size: 26rpx;
- color: #888;
- background: #fff;
- z-index: 98;
- box-shadow: 0rpx -1rpx 1rpx 1rpx rgba(0,0,0,0.05);
- display: flex;
- justify-content: space-around;
- }
- .Tabbar .tab-item {
- text-align: center;
- position: relative;
- line-height: initial;
- }
- /* .Tabbar .tab-item3{width: 33.33%;} */
- .tab-item .image {
- display: block;
- width: 54rpx;
- height: 54rpx;
- margin: 13rpx auto 0;
- }
- .dot {
- display: block;
- height: 15rpx;
- width: 15rpx;
- border-radius: 50%;
- background: #F51A1A;
- box-sizing: border-box;
- position: absolute;
- top: 3rpx;
- right: 30%;
- }
- .dots-cart {
- display: block;
- height: 30rpx;
- border-radius: 30rpx;
- padding: 0 8rpx;
- font-size: 24rpx;
- color: #fff;
- line-height: 30rpx;
- background: #F51A1A;
- min-width: 30rpx;
- box-sizing: border-box;
- text-align: center;
- position: absolute;
- top: 10rpx;
- right: 20%;
- }
|