app.ttss 450 B

1234567891011121314151617181920212223242526272829303132
  1. .page-tabbar {
  2. position: fixed;
  3. left: 0;
  4. right: 0;
  5. bottom: 0;
  6. height: 96rpx;
  7. background: #ffffff;
  8. border-top: 1rpx solid #e8e8e8;
  9. display: flex;
  10. z-index: 200;
  11. }
  12. .page-tab-item {
  13. flex: 1;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. }
  18. .page-tab-text {
  19. font-size: 26rpx;
  20. color: #7a8799;
  21. font-weight: 500;
  22. }
  23. .page-tab-item-active {
  24. background: #f8fbff;
  25. }
  26. .page-tab-text-active {
  27. color: #4facfe;
  28. }