style.less 863 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .chargeItemCostCalc {
  2. position: relative;
  3. padding: 16px;
  4. background: #FFFFFF;
  5. border-radius: 4px;
  6. .toolBar {
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: space-between;
  10. align-items: center;
  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. .calc {
  25. cursor: pointer;
  26. display: inline-block;
  27. font-size: 14px;
  28. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  29. font-weight: 400;
  30. color: #FFFFFF;
  31. line-height: 24px;
  32. padding: 0 14px;
  33. background: #3377FF;
  34. border-radius: 4px;
  35. }
  36. }
  37. }
  38. }