index.wxss 521 B

12345678910111213141516171819202122232425262728293031
  1. @import "../../app.wxss";
  2. .tab {
  3. width: 100%;
  4. }
  5. .tab .swiper-tab {
  6. display: flex;
  7. justify-content: space-around;
  8. width: 100%;
  9. border-bottom: 2rpx solid #ccc;
  10. text-align: center;
  11. height: 88rpx;
  12. line-height: 88rpx;
  13. font-weight: bold;
  14. background-color: var(--rgbfff);
  15. }
  16. .tab .swiper-tab .swiper-tab-item {
  17. color: var(--rgb3AB);
  18. }
  19. .tab .swiper {
  20. width: 100%;
  21. height: 84vh;
  22. }
  23. .active {
  24. color: var(--rgb40E) !important;
  25. border-bottom: 4rpx solid var(--rgb40E);
  26. }