index.wxss 994 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. padding-bottom: constant(safe-area-inset-bottom);
  13. padding-bottom: env(safe-area-inset-bottom);
  14. }
  15. .tabbar_box.iphoneX-height {
  16. padding-bottom: 48rpx;
  17. }
  18. .tabbar_box.pb20 {
  19. padding-bottom: 40rpx;
  20. }
  21. .tabbar_nav {
  22. flex: 1;
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: center;
  26. align-items: center;
  27. font-size: 20rpx;
  28. height: 100%;
  29. position: relative;
  30. }
  31. .tabbar_icon {
  32. position:relative;
  33. width: 56rpx;
  34. height: 56rpx;
  35. }
  36. .tabbar_icon .cart-num {
  37. position: absolute;
  38. right: -16rpx;
  39. top: -4rpx;
  40. width: 36rpx;
  41. height: 36rpx;
  42. background: #f43530;
  43. border-radius: 36rpx;
  44. color: #fff;
  45. font-size: 22rpx;
  46. display: flex;
  47. justify-content: center;
  48. align-items: center;
  49. }
  50. .tabbar_icon .img {
  51. width: 56rpx;
  52. height: 56rpx;
  53. }