index.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .wux-tabbar-item {
  2. flex: 1;
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. flex-direction: column;
  7. text-align: center;
  8. width: 100%;
  9. height: 100%;
  10. color: #80848f;
  11. padding: 10rpx 0;
  12. box-sizing: border-box;
  13. float: left
  14. }
  15. .wux-tabbar-item__icon {
  16. display: flex;
  17. justify-content: center;
  18. font-size: 44rpx;
  19. height: 44rpx;
  20. line-height: 1
  21. }
  22. .wux-tabbar-item__title {
  23. font-size: 24rpx;
  24. margin: 4rpx 0 0;
  25. line-height: 1;
  26. text-align: center
  27. }
  28. .wux-tabbar-item--current {
  29. color: #33cd5f
  30. }
  31. .wux-tabbar-item--disabled {
  32. opacity: .3
  33. }
  34. .wux-tabbar-item--light.wux-tabbar-item--current {
  35. color: #ddd
  36. }
  37. .wux-tabbar-item--stable.wux-tabbar-item--current {
  38. color: #b2b2b2
  39. }
  40. .wux-tabbar-item--positive.wux-tabbar-item--current {
  41. color: #387ef5
  42. }
  43. .wux-tabbar-item--calm.wux-tabbar-item--current {
  44. color: #11c1f3
  45. }
  46. .wux-tabbar-item--assertive.wux-tabbar-item--current {
  47. color: #ef473a
  48. }
  49. .wux-tabbar-item--balanced.wux-tabbar-item--current {
  50. color: #33cd5f
  51. }
  52. .wux-tabbar-item--energized.wux-tabbar-item--current {
  53. color: #ffc900
  54. }
  55. .wux-tabbar-item--royal.wux-tabbar-item--current {
  56. color: #886aea
  57. }
  58. .wux-tabbar-item--dark.wux-tabbar-item--current {
  59. color: #444
  60. }