index.less 939 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. @import '../../app.less';
  2. .module.list {
  3. .header {
  4. font-size: 18px;
  5. height: 56px;
  6. line-height: 56px;
  7. padding-left: 44px;
  8. border-bottom: 1px solid @line_color;
  9. .title {
  10. color: @cornflower;
  11. margin-right: 9px;
  12. }
  13. .sub-title {
  14. color: @night-blue;
  15. }
  16. }
  17. .body {
  18. .item {
  19. padding: 0 44px;
  20. border-bottom: 1px solid @line_color;
  21. height: 64px;
  22. line-height: 64px;
  23. display: flex;
  24. .part {
  25. flex: 1;
  26. font-size: 16px;
  27. color: @bluey-grey;
  28. font-weight: 600;
  29. }
  30. .title {
  31. flex: 5;
  32. font-size: 16px;
  33. color: @night-blue;
  34. }
  35. .pg {
  36. flex: 3;
  37. .progress-text {
  38. width: 180px;
  39. margin-top: 20px;
  40. }
  41. }
  42. .action {
  43. flex: 1;
  44. text-align: right;
  45. }
  46. }
  47. .item:last-child {
  48. border-bottom: none;
  49. }
  50. }
  51. }