index.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .tab-bar {
  2. position: fixed;
  3. bottom: 0;
  4. left: 0;
  5. right: 0;
  6. height: 104px;
  7. /* background: #000D1FD9; */
  8. /* backdrop-filter: blur(10px); */
  9. background: #000;
  10. display: flex;
  11. padding-bottom: env(safe-area-inset-bottom);
  12. border-top-color: rgba(255, 255, 255, 0.2);
  13. border-top-width: 1px;
  14. border-top-style: solid;
  15. z-index: 100;
  16. }
  17. .tab-bar-border {
  18. background-color: rgba(255, 255, 255, 0.05);
  19. position: absolute;
  20. left: 0;
  21. top: 0;
  22. width: 750rpx;
  23. height: 1px;
  24. /* transform: scaleY(0.5); */
  25. }
  26. .tab-bar-item {
  27. flex: 1;
  28. text-align: center;
  29. display: flex;
  30. justify-content: center;
  31. align-items: center;
  32. flex-direction: column;
  33. }
  34. /* .tab-bar-item cover-image {
  35. width: 27px;
  36. height: 27px;
  37. } */
  38. .tab-bar-item cover-view {
  39. font-size: 10px;
  40. }
  41. .icon {
  42. width: 128rpx;
  43. height: 80rpx;
  44. /* background-color: pink; */
  45. }
  46. .item {
  47. /* color: rgba($color: #ffffff, $alpha: 0.4); */
  48. color: rgba(255, 255, 255, 0.4);
  49. font-size: 36px;
  50. padding-top: 25px;
  51. display: flex;
  52. flex: 1;
  53. align-items: center;
  54. justify-content: center;
  55. }
  56. .item-sel {
  57. color: #ffffff;
  58. font-size: 40px;
  59. }