OptimizationTasks.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. .navigateTitle {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: row;
  5. justify-content: space-between;
  6. align-items: center;
  7. }
  8. .titleTime {
  9. position: absolute;
  10. left: 2.25rem;
  11. top: 0.15rem;
  12. height: 0.5rem;
  13. font-size: 0.26rem;
  14. line-height: 0.26rem;
  15. display: flex;
  16. align-items: flex-end;
  17. }
  18. .title {
  19. font-size: 0.32rem;
  20. margin-bottom: 0.16rem;
  21. font-weight: bold;
  22. line-height: 0.44rem;
  23. display: flex;
  24. align-items: center;
  25. i {
  26. display: inline-block;
  27. vertical-align: middle;
  28. width: 0.14rem;
  29. height: 0.14rem;
  30. border-radius: 50%;
  31. background-color: #4a90e2;
  32. margin-right: 0.1rem;
  33. }
  34. }
  35. .desc {
  36. font-size: 0.3rem;
  37. font-weight: 400;
  38. color: #4a4a4a;
  39. }
  40. .content {
  41. display: flex;
  42. padding: 0.2rem;
  43. align-items: center;
  44. .left {
  45. width: 1.5rem;
  46. margin: 0;
  47. font-size: 0.3rem;
  48. font-weight: 400;
  49. color: #3b3b3b;
  50. }
  51. .right {
  52. flex: 1;
  53. }
  54. }
  55. .orderIcon {
  56. background: #12ceb3;
  57. width: 3rem;
  58. position: absolute;
  59. top: 0.4rem;
  60. right: -0.92rem;
  61. text-align: center;
  62. font-size: 0.24rem;
  63. transform: rotate(45deg);
  64. padding: 0.1rem 0;
  65. color: #fff;
  66. }
  67. .pageCard {
  68. padding: 0.2rem;
  69. padding-bottom: 0;
  70. margin-top: 0.3rem;
  71. overflow: hidden;
  72. border-radius: 0.26rem;
  73. box-shadow: 0.02rem 0 0.08rem 0 rgba(0, 0, 0, 0.3);
  74. border: 0.01rem solid #eee;
  75. background: rgb(255, 255, 255);
  76. }
  77. .bottom {
  78. border-top: 0.01rem solid #c0c0c0;
  79. padding: 0.38rem;
  80. height: 100%;
  81. .bottomText {
  82. font-size: 0.24rem;
  83. font-weight: 400;
  84. color: #4a4a4a;
  85. line-height: 0.34rem;
  86. text-align: center;
  87. }
  88. }
  89. .btnOrange {
  90. width: 1.2rem;
  91. height: 0.56rem;
  92. background: rgba(245, 166, 35, 0.75);
  93. border-radius: 0.05rem;
  94. font-size: 0.24rem;
  95. font-weight: 400;
  96. color: #ffffff;
  97. line-height: 0.56rem;
  98. text-align: center;
  99. }
  100. .btnBlue {
  101. width: 1.2rem;
  102. height: 0.56rem;
  103. background: rgba(74, 144, 226, 0.75);
  104. border-radius: 0.05rem;
  105. font-size: 0.24rem;
  106. font-weight: 400;
  107. color: #ffffff;
  108. line-height: 0.56rem;
  109. text-align: center;
  110. }
  111. .bottomBtn {
  112. margin: 0.2rem auto 0;
  113. width: 2.6rem;
  114. height: 0.46rem;
  115. background: url('@/assets/smart/btn1.png') no-repeat;
  116. background-size: 100% 100%;
  117. display: flex;
  118. justify-content: center;
  119. align-items: center;
  120. font-size: 0.26rem;
  121. color: #ffffff;
  122. &.active {
  123. i {
  124. background-image: url('@/assets/smart/btn-arr2.png');
  125. }
  126. }
  127. i {
  128. flex-shrink: 1;
  129. width: 0.2rem;
  130. height: 0.1rem;
  131. margin-left: 4px;
  132. background: url('@/assets/smart/btn-arr1.png') no-repeat center;
  133. background-size: 100% 100%;
  134. }
  135. }
  136. .bottomBtn2 {
  137. .bottomBtn;
  138. background-image: url('@/assets/smart/btn2.png');
  139. }
  140. .table1 {
  141. :global {
  142. .ant-table-thead {
  143. background: rgb(177, 210, 243);
  144. }
  145. .ant-table-thead > tr > th {
  146. color: #4a4a4a;
  147. }
  148. }
  149. }
  150. .table2 {
  151. :global {
  152. .ant-table-thead {
  153. background: rgb(251, 222, 174);
  154. }
  155. .ant-table-thead > tr > th {
  156. color: #4a4a4a;
  157. }
  158. }
  159. }
  160. .taskTable {
  161. :global {
  162. .ant-table-thead {
  163. background: rgba(155, 151, 151, 0.2);
  164. }
  165. .ant-table-thead > tr > th {
  166. color: rgba(59, 59, 59, 1);
  167. font-weight: 600;
  168. }
  169. }
  170. }