index.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. &.introduction {
  36. .part {
  37. width: 0;
  38. flex: 0;
  39. }
  40. .title {
  41. margin-right: 9px;
  42. flex: 6;
  43. color: @night-blue;
  44. font-size: 18px;
  45. }
  46. }
  47. .pg {
  48. flex: 3;
  49. .progress-text {
  50. width: 240px;
  51. margin-top: 20px;
  52. }
  53. }
  54. .action {
  55. flex: 1;
  56. text-align: right;
  57. }
  58. }
  59. .item:last-child {
  60. border-bottom: none;
  61. }
  62. }
  63. }