index.wxss 671 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .body {
  2. padding-top: 90rpx;
  3. }
  4. .body::after {
  5. content: "";
  6. display: block;
  7. height: env(safe-area-inset-bottom);
  8. }
  9. .tab {
  10. width: 100%;
  11. height: 90rpx;
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. z-index: 10;
  16. display: flex;
  17. background: #fff;
  18. }
  19. .tab-item {
  20. flex: 1;
  21. height: 100%;
  22. display: flex;
  23. align-items: flex-end;
  24. justify-content: center;
  25. }
  26. .tab-item text {
  27. font-size: 32rpx;
  28. color: #999999;
  29. padding-bottom: 8rpx;
  30. border-bottom: 2rpx solid transparent;
  31. font-weight: 500;
  32. }
  33. .tab-item.active text {
  34. color: #333333;
  35. border-bottom-color: #FF77B0;
  36. }
  37. .list {
  38. padding: 20rpx 28rpx 0;
  39. }