index.css 1.1 KB

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