tabBar.wxss 1004 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* component/tabBar/tabBar.wxss */
  2. .page {
  3. height: 112rpx;
  4. background-color: aqua;
  5. display: flex;
  6. justify-content: center;
  7. flex-direction: row;
  8. align-items: center;
  9. width: 100%;
  10. }
  11. .icon {
  12. width: 44rpx;
  13. height: 44rpx;
  14. }
  15. .tabbar {
  16. width: 750rpx;
  17. height: 112rpx;
  18. background: #ffffff;
  19. box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.50);
  20. display: flex;
  21. flex-direction: row;
  22. justify-content: space-around;
  23. align-items: center;
  24. }
  25. .tabbar_item {
  26. display: flex;
  27. flex-direction: column;
  28. align-items: center;
  29. }
  30. .check_false_text {
  31. font-size: 26rpx;
  32. font-family: PingFangSC, PingFangSC-Regular;
  33. font-weight: 400;
  34. text-align: left;
  35. color: #666666;
  36. line-height: 37rpx;
  37. letter-spacing: 0.26px;
  38. }
  39. .check_true_text {
  40. font-size: 26rpx;
  41. font-family: PingFangSC, PingFangSC-Semibold;
  42. font-weight: 600;
  43. text-align: left;
  44. color: #ff9700;
  45. line-height: 37rpx;
  46. letter-spacing: 0.26px;
  47. }