index.less 1.2 KB

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