app.wxss 557 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-between;
  8. padding: 200rpx 0;
  9. box-sizing: border-box;
  10. }
  11. pages {
  12. position: relative;
  13. z-index: 9999998;
  14. background: #fff;
  15. }
  16. .home {
  17. width: 100%;
  18. height: 100%;
  19. position: relative;
  20. top: 135rpx;
  21. }
  22. .home .down {
  23. float: left;
  24. width: 100%;
  25. }
  26. .home .down .tabber {
  27. float: left;
  28. width: 100%;
  29. margin: 100rpx 0 0 0;
  30. }
  31. /* 菜单选中文字颜色 */
  32. .van-tabbar-item--active {
  33. color: red !important;
  34. }