index.wxss 951 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .tabbar_box {
  2. display: flex;
  3. flex-direction: row;
  4. justify-content: space-around;
  5. position: fixed;
  6. bottom: 0;
  7. left: 0;
  8. z-index: 899;
  9. width: 100%;
  10. height: 98rpx;
  11. box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  12. }
  13. .tabbar_box.iphoneX-height {
  14. padding-bottom: 48rpx;
  15. }
  16. .tabbar_box.pb20 {
  17. padding-bottom: 40rpx;
  18. }
  19. .tabbar_nav {
  20. flex: 1;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: center;
  24. align-items: center;
  25. font-size: 20rpx;
  26. height: 100%;
  27. position: relative;
  28. }
  29. .tabbar_icon {
  30. position:relative;
  31. width: 56rpx;
  32. height: 56rpx;
  33. }
  34. .tabbar_icon .cart-num {
  35. position: absolute;
  36. right: -16rpx;
  37. top: -4rpx;
  38. width: 36rpx;
  39. height: 36rpx;
  40. background: #f43530;
  41. border-radius: 36rpx;
  42. color: #fff;
  43. font-size: 22rpx;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. }
  48. .tabbar_icon .img {
  49. width: 56rpx;
  50. height: 56rpx;
  51. }