index.less 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. @import '../../app.less';
  2. .module.card {
  3. min-height: 314px;
  4. position: relative;
  5. .header {
  6. color: @night-blue;
  7. background: @theme_bg_color;
  8. font-size: 18px;
  9. height: 44px;
  10. line-height: 44px;
  11. padding-left: 36px;
  12. padding-right: 32px;
  13. .sub-title {
  14. float: right;
  15. font-size: 18px;
  16. }
  17. }
  18. .body {
  19. padding: 24px 32px 32px;
  20. .title {
  21. margin-bottom: 28px;
  22. font-size: 16px;
  23. color: @night-blue;
  24. }
  25. .btn {
  26. margin: 0 -32px;
  27. width: 100%;
  28. position: absolute;
  29. bottom: 44px;
  30. text-align: center;
  31. }
  32. }
  33. }
  34. .module.card.buy {
  35. .header {
  36. .sub-title {
  37. color: @cornflower;
  38. }
  39. }
  40. .body {
  41. .desc {
  42. .item {
  43. position: relative;
  44. margin-bottom: 18px;
  45. padding-left: 15px;
  46. font-size: 18px;
  47. }
  48. .item:before {
  49. content: '';
  50. width: 6px;
  51. height: 6px;
  52. position: absolute;
  53. background: @theme_color;
  54. border-radius: 3px;
  55. top: 10px;
  56. left: 0;
  57. }
  58. }
  59. }
  60. }
  61. .module.card.open {
  62. .header {
  63. .sub-title {
  64. color: @holder_color;
  65. }
  66. }
  67. .body {
  68. .text {
  69. margin-top: 40px;
  70. line-height: 25px;
  71. padding-left: 30px;
  72. padding-right: 5px;
  73. position: relative;
  74. .ant-checkbox-wrapper {
  75. position: absolute;
  76. left: 0;
  77. top: 5px;
  78. }
  79. }
  80. }
  81. }
  82. .module.card.ing {
  83. .body {
  84. .text {
  85. >div {
  86. margin-bottom: 10px;
  87. }
  88. }
  89. .list {
  90. .item {
  91. margin-top: 30px;
  92. .top {
  93. margin-bottom: 28px;
  94. .date {
  95. color: @night-blue;
  96. display: inline-block;
  97. }
  98. .action {
  99. float: right;
  100. .icon-button {
  101. margin-left: 22px;
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }
  108. }
  109. .module.card.end {
  110. .header {
  111. background: #c8d1da;
  112. }
  113. }