You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.less 1.2 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .assets-management {
  2. flex: 1;
  3. width: 100%;
  4. padding: 20px 20px 0;
  5. background-color: white;
  6. border-radius: 4px;
  7. :global {
  8. .ant-select-filled {
  9. background-color: rgba(138, 138, 138, 0.12);
  10. border-radius: 2px;
  11. .ant-select-selection-item {
  12. color: @text-color-secondary !important;
  13. font-size: 13px;
  14. }
  15. }
  16. }
  17. &__title {
  18. color: @text-color;
  19. font-weight: 500;
  20. font-size: @font-size-title;
  21. }
  22. &__increase {
  23. display: inline-block;
  24. margin-top: 12px;
  25. margin-bottom: 30px;
  26. padding: 2px 7px;
  27. color: @primary-color;
  28. font-size: 13px;
  29. background-color: rgba(187, 210, 255, 0.29);
  30. border-radius: 2px;
  31. }
  32. &__summary {
  33. display: flex;
  34. flex-direction: column;
  35. width: 40%;
  36. text-align: left;
  37. &:nth-child(3n + 2) {
  38. width: 30%;
  39. text-align: center;
  40. }
  41. &:nth-child(3n) {
  42. width: 30%;
  43. text-align: right;
  44. }
  45. &__title {
  46. margin-bottom: 12px;
  47. color: @text-color-secondary;
  48. font-size: @font-size;
  49. }
  50. &__value {
  51. color: @text-color;
  52. font-weight: 500;
  53. font-size: 22px;
  54. }
  55. }
  56. }