shop-tabbar.wxss 473 B

12345678910111213141516171819202122232425262728293031
  1. /* pages/shop-tabbar/shop-tabbar.wxss */
  2. .shop-tabbar-container {
  3. background: #fff;
  4. display: flex;
  5. align-items: center;
  6. justify-content: space-around;
  7. border-top: 1rpx solid #d5d5d5;
  8. padding: 3rpx 0;
  9. }
  10. .tabBar {
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. padding: 8rpx 20rpx;
  15. }
  16. .tabBar .tabIcon {
  17. width: 54rpx;
  18. height: 54rpx;
  19. }
  20. .tabBar .tabTitle {
  21. font-size: 20rpx;
  22. color: #333333;
  23. }
  24. .on {
  25. color: #e43130 !important;
  26. }