index.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .custom-tab-bar {
  2. position: fixed;
  3. bottom: 0;
  4. left: 0;
  5. right: 0;
  6. height: 132px;
  7. display: flex;
  8. padding-bottom: env(safe-area-inset-bottom);
  9. z-index: 9999999;
  10. background: #393484;
  11. //background: #00000000 url("./image/tabBarBackground.png") no-repeat;
  12. //background-size: 100% 100%;
  13. .tab-bar-border {
  14. background-color: rgba(0, 0, 0, 0.33);
  15. position: absolute;
  16. left: 0;
  17. top: 0;
  18. width: 100%;
  19. height: 1px;
  20. transform: scaleY(0.5);
  21. }
  22. .tab-bar-item {
  23. flex: 1;
  24. text-align: center;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. flex-direction: column;
  29. }
  30. .tab-bar-item .coverImage {
  31. width: 44px;
  32. height: 44px;
  33. }
  34. .tab-bar-item .View {
  35. font-size: 18px;
  36. padding-top: 10px;
  37. }
  38. .zhong {
  39. position: absolute;
  40. bottom: 14px;
  41. width: 98px;
  42. height: 98px;
  43. padding: 23px;
  44. border-radius: 98px;
  45. display: flex;
  46. flex-flow: column;
  47. align-items: center;
  48. .coverImage{
  49. width: 75px;
  50. height: 75px;
  51. padding-top: 8px;
  52. }
  53. .View{
  54. font-size: 18px;
  55. }
  56. }
  57. }