style.less 812 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .IdleCostSetting {
  2. padding: 16px;
  3. background: #FFFFFF;
  4. border-radius: 4px;
  5. .toolBar {
  6. display: flex;
  7. flex-direction: row;
  8. justify-content: space-between;
  9. align-items: center;
  10. margin-bottom: 16px;
  11. .filter {
  12. display: flex;
  13. flex-direction: row;
  14. justify-content: flex-start;
  15. align-items: center;
  16. .filterItem {
  17. display: flex;
  18. flex-direction: row;
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. }
  23. .btnGroup {
  24. .add {
  25. cursor: pointer;
  26. display: inline-block;
  27. font-size: 14px;
  28. font-weight: 400;
  29. color: #FFFFFF;
  30. line-height: 24px;
  31. padding: 0 14px;
  32. background: #3377FF;
  33. border-radius: 4px;
  34. }
  35. }
  36. }
  37. }