index.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .wux-tabs__tab {
  2. flex: 1;
  3. display: flex;
  4. width: 100%;
  5. justify-content: center;
  6. align-items: center;
  7. text-align: center;
  8. position: relative;
  9. box-sizing: border-box;
  10. font-size: 28rpx;
  11. padding: 0 30rpx
  12. }
  13. .wux-tabs__tab-bar {
  14. display: block;
  15. width: calc(100% - 60rpx);
  16. height: 4rpx;
  17. background: 0 0;
  18. position: absolute;
  19. bottom: 0;
  20. left: 30rpx;
  21. background: #33cd5f;
  22. border-radius: 4rpx
  23. }
  24. .wux-tabs__tab-bar--full {
  25. width: 100%;
  26. left: 0
  27. }
  28. .wux-tabs__tab--vertical {
  29. padding: 0 30rpx
  30. }
  31. .wux-tabs__tab--vertical .wux-tabs__tab-bar {
  32. width: 4rpx;
  33. height: 100%;
  34. right: 0;
  35. left: auto
  36. }
  37. .wux-tabs__tab--current {
  38. color: #33cd5f
  39. }
  40. .wux-tabs__tab--horizontal.wux-tabs__tab--scroll {
  41. display: inline-flex;
  42. width: auto
  43. }
  44. .wux-tabs__tab--disabled {
  45. opacity: .3
  46. }
  47. .wux-tabs__tab--light .wux-tabs__tab-bar {
  48. background: #ddd
  49. }
  50. .wux-tabs__tab--light.wux-tabs__tab--current {
  51. color: #ddd
  52. }
  53. .wux-tabs__tab--stable .wux-tabs__tab-bar {
  54. background: #b2b2b2
  55. }
  56. .wux-tabs__tab--stable.wux-tabs__tab--current {
  57. color: #b2b2b2
  58. }
  59. .wux-tabs__tab--positive .wux-tabs__tab-bar {
  60. background: #387ef5
  61. }
  62. .wux-tabs__tab--positive.wux-tabs__tab--current {
  63. color: #387ef5
  64. }
  65. .wux-tabs__tab--calm .wux-tabs__tab-bar {
  66. background: #11c1f3
  67. }
  68. .wux-tabs__tab--calm.wux-tabs__tab--current {
  69. color: #11c1f3
  70. }
  71. .wux-tabs__tab--assertive .wux-tabs__tab-bar {
  72. background: #ef473a
  73. }
  74. .wux-tabs__tab--assertive.wux-tabs__tab--current {
  75. color: #ef473a
  76. }
  77. .wux-tabs__tab--balanced .wux-tabs__tab-bar {
  78. background: #33cd5f
  79. }
  80. .wux-tabs__tab--balanced.wux-tabs__tab--current {
  81. color: #33cd5f
  82. }
  83. .wux-tabs__tab--energized .wux-tabs__tab-bar {
  84. background: #ffc900
  85. }
  86. .wux-tabs__tab--energized.wux-tabs__tab--current {
  87. color: #ffc900
  88. }
  89. .wux-tabs__tab--royal .wux-tabs__tab-bar {
  90. background: #886aea
  91. }
  92. .wux-tabs__tab--royal.wux-tabs__tab--current {
  93. color: #886aea
  94. }
  95. .wux-tabs__tab--dark .wux-tabs__tab-bar {
  96. background: #444
  97. }
  98. .wux-tabs__tab--dark.wux-tabs__tab--current {
  99. color: #444
  100. }