index.css 991 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* 底部导航样式 */
  2. .active {
  3. color: var(--mina);
  4. }
  5. .Tabbar {
  6. position: fixed;
  7. bottom: 0;
  8. left: 0;
  9. display: flex;
  10. height: 115rpx;
  11. width: 100%;
  12. font-size: 26rpx;
  13. color: #888;
  14. background: #fff;
  15. z-index: 98;
  16. }
  17. .Tabbar .tab-item {
  18. width: 25%;
  19. text-align: center;
  20. position: relative;
  21. line-height: initial;
  22. }
  23. .tab-item .image {
  24. display: block;
  25. width: 54rpx;
  26. height: 54rpx;
  27. margin: 13rpx auto 0;
  28. }
  29. .dot {
  30. display: block;
  31. height: 15rpx;
  32. width: 15rpx;
  33. border-radius: 50%;
  34. background: #F51A1A;
  35. box-sizing: border-box;
  36. position: absolute;
  37. top: 3rpx;
  38. right: 30%;
  39. }
  40. .dots {
  41. display: block;
  42. height: 30rpx;
  43. border-radius: 30rpx;
  44. padding: 0 8rpx;
  45. font-size: 24rpx;
  46. color: #fff;
  47. line-height: 30rpx;
  48. background: #F51A1A;
  49. min-width: 30rpx;
  50. box-sizing: border-box;
  51. text-align: center;
  52. position: absolute;
  53. top: 10rpx;
  54. right: 20%;
  55. }