index.scss 785 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .tab-box {
  2. display: flex;
  3. .left {
  4. width: 0;
  5. flex: 1;
  6. .tab-class {
  7. font-family: Microsoft YaHei, Microsoft YaHei;
  8. font-weight: bold;
  9. font-size: 28rpx;
  10. color: #333333;
  11. }
  12. }
  13. .right {
  14. display: flex;
  15. align-items: center;
  16. height: 86rpx;
  17. background-color: #fff;
  18. flex-shrink: 0;
  19. .filtrate-box {
  20. display: flex;
  21. height: 100%;
  22. align-items: center;
  23. padding: 0 20rpx;
  24. font-family: PingFang SC, PingFang SC;
  25. font-size: 28rpx;
  26. color: #666666;
  27. .iconfont {
  28. margin-right: 6rpx;
  29. color: #999999;
  30. }
  31. }
  32. }
  33. }