tabbar.wxss 555 B

12345678910111213141516171819202122232425262728
  1. /* pages/luckDraw/components/tabbar.wxss */
  2. .tab-bar-body{
  3. position: fixed;
  4. z-index: 1000;
  5. left: 0;
  6. bottom: 0;
  7. height: 99rpx;
  8. background: #fff;
  9. width: 100vw;
  10. box-shadow: 0 8px 49px 0 rgba(179, 117, 117, 0.22);
  11. display: flex;
  12. justify-content: space-around;
  13. }
  14. .tab-bar-body ._ico {
  15. height: 60rpx;
  16. width: 60rpx;
  17. padding-top: 4rpx;
  18. }
  19. .tab-bar-body ._image {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. .tab-bar-body ._text {
  24. line-height: 28rpx;
  25. height: 28px;
  26. text-align: center;
  27. font-size: 28rpx;
  28. }