index.wxss 787 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .tab-bar {
  2. position: fixed;
  3. bottom: 0;
  4. left: 0;
  5. right: 0;
  6. height: 60px;
  7. background: white;
  8. display: flex;
  9. padding-bottom: env(safe-area-inset-bottom);
  10. border-radius: 20px 20px 0 0;
  11. box-shadow: 0px 8px 20px 0px rgba(0,0,0,.5);
  12. z-index: 0;
  13. }
  14. .tab-bar-border {
  15. background-color: rgba(0, 0, 0, 0.33);
  16. position: absolute;
  17. left: 0;
  18. top: 0;
  19. width: 100%;
  20. height: 1px;
  21. transform: scaleY(0.5);
  22. }
  23. .tab-bar-item {
  24. flex: 1;
  25. text-align: center;
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. flex-direction: column;
  30. position: relative;
  31. }
  32. .tab-bar-item.center image {
  33. width: 84rpx;
  34. height: 84rpx;
  35. }
  36. .tab-bar-item image {
  37. width: 40rpx;
  38. height: 40rpx;
  39. }
  40. .tab-bar-item view {
  41. font-size: 24rpx;
  42. font-family: MiSans-Medium;
  43. }