index.scss 984 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. background-color: #fff;
  17. flex-shrink: 0;
  18. .filtrate-box {
  19. display: flex;
  20. height: 100%;
  21. align-items: center;
  22. padding: 0 20rpx;
  23. font-family: PingFang SC, PingFang SC;
  24. font-size: 28rpx;
  25. color: #666666;
  26. .iconfont {
  27. margin-right: 6rpx;
  28. color: #999999;
  29. }
  30. }
  31. .search-box {
  32. display: flex;
  33. height: 100%;
  34. align-items: center;
  35. padding: 0 30rpx;
  36. .iconfont {
  37. font-size: 40rpx;
  38. }
  39. }
  40. }
  41. }