index.wxss 498 B

123456789101112131415161718192021222324252627282930313233
  1. page{
  2. width: 100%;
  3. height: 100%;
  4. background: #EEEEEE;
  5. }
  6. .top{
  7. width: 100%;
  8. height: 500rpx;
  9. background: orange;
  10. }
  11. .tabbar{
  12. width: 100%;
  13. display: flex;
  14. align-items: center;
  15. justify-content: space-around;
  16. }
  17. .tabbar view{
  18. width: 33%;
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. }
  23. .tabbar view text{
  24. font-size: 20rpx;
  25. font-family: PingFang SC;
  26. font-weight: 400;
  27. color: #252525;
  28. padding-top: 15rpx;
  29. }
  30. .tabbar image{
  31. width: 98rpx;
  32. height: 98rpx;
  33. }