index.less 729 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* custom-tab-bar/index.wxss */
  2. .bottom-section {
  3. position: fixed;
  4. bottom: 0;
  5. left: 0;
  6. width: 100%;
  7. background-color: #FFFFFF;
  8. box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
  9. padding: 20rpx 32rpx 58rpx 32rpx;
  10. display: flex;
  11. align-items: center;
  12. box-sizing: border-box;
  13. justify-content: space-around;
  14. .orders {
  15. display: flex;
  16. align-items: center;
  17. margin-right: 40rpx;
  18. padding: 8rpx 0 16rpx;
  19. &.active {
  20. text {
  21. color: #131415;
  22. }
  23. }
  24. image {
  25. width: 44rpx;
  26. height: 44rpx;
  27. }
  28. text {
  29. padding-left: 16rpx;
  30. font-weight: 500;
  31. font-size: 28rpx;
  32. color: #AAAAAA;
  33. line-height: 44rpx;
  34. text-align: center;
  35. }
  36. }
  37. }