style.less 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. .PersonnelSalaryBudget {
  2. height: 97vh;
  3. padding: 16px;
  4. background: #fff;
  5. .cardWrap {
  6. display: flex;
  7. flex-direction: row;
  8. justify-content: space-between;
  9. align-items: center;
  10. // margin-top: 16px;
  11. margin-bottom: 16px;
  12. .card {
  13. width: 32.5%;
  14. height: 100px;
  15. padding: 24px;
  16. border-radius: 4px;
  17. &>span {
  18. position: relative;
  19. z-index: 9;
  20. display: inline-block;
  21. height: 15px;
  22. font-size: 14px;
  23. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  24. font-weight: 400;
  25. color: #7A8599;
  26. line-height: 15px;
  27. margin-bottom: 10px;
  28. }
  29. .count {
  30. position: relative;
  31. z-index: 9;
  32. height: 30px;
  33. font-size: 28px;
  34. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  35. font-weight: 500;
  36. color: #527ACC;
  37. line-height: 30px;
  38. }
  39. &:nth-child(1) {
  40. position: relative;
  41. height: 100px;
  42. background: linear-gradient(270deg, #D9E5FF 0%, #F2F7FF 100%);
  43. &::after {
  44. position: absolute;
  45. top: 0;
  46. z-index: 1;
  47. right: 8px;
  48. display: block;
  49. content: '';
  50. width: 130px;
  51. height: 100px;
  52. background: url('../../../../static/A@2x.png');
  53. background-size: cover;
  54. }
  55. }
  56. &:nth-child(2) {
  57. position: relative;
  58. height: 100px;
  59. background: linear-gradient(270deg, #D4F4FA 0%, #E8F9FC 100%);
  60. .count {
  61. color: #52B8CC;
  62. }
  63. &::after {
  64. position: absolute;
  65. top: 0;
  66. z-index: 1;
  67. right: 8px;
  68. display: block;
  69. content: '';
  70. width: 130px;
  71. height: 100px;
  72. background: url('../../../../static/B@2x.png');
  73. background-size: cover;
  74. }
  75. }
  76. &:nth-child(3) {
  77. position: relative;
  78. height: 100px;
  79. background: linear-gradient(270deg, #D9F2FF 0%, #EBF8FF 100%);
  80. .count {
  81. color: #51A3CC;
  82. }
  83. &::after {
  84. position: absolute;
  85. top: 0;
  86. z-index: 1;
  87. right: 8px;
  88. display: block;
  89. content: '';
  90. width: 130px;
  91. height: 100px;
  92. background: url('../../../../static/C@2x.png');
  93. background-size: cover;
  94. }
  95. }
  96. }
  97. }
  98. .countBtn {
  99. cursor: pointer;
  100. text-align: center;
  101. height: 40px;
  102. line-height: 40px;
  103. background: #FAFCFF;
  104. border-radius: 4px;
  105. border: 1px solid #DAE2F2;
  106. font-size: 14px;
  107. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  108. font-weight: 400;
  109. color: #17181A;
  110. margin-bottom: 32px;
  111. }
  112. .subTitle {
  113. height: 17px;
  114. font-size: 16px;
  115. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  116. font-weight: 500;
  117. color: #17181A;
  118. line-height: 17px;
  119. margin-bottom: 24px;
  120. }
  121. .func {
  122. display: flex;
  123. flex-direction: column;
  124. justify-content: center;
  125. align-items: center;
  126. &>span {
  127. display: inline-block;
  128. height: 15px;
  129. font-size: 14px;
  130. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  131. font-weight: 400;
  132. color: #17181A;
  133. line-height: 15px;
  134. margin-bottom: 16px;
  135. }
  136. .input {
  137. width: 240px;
  138. height: 40px;
  139. background: #FFF;
  140. border-radius: 4px;
  141. border: 1px solid #CFD7E6;
  142. }
  143. }
  144. .midLine {
  145. display: flex;
  146. flex-direction: row;
  147. justify-content: center;
  148. align-items: center;
  149. height: 24px;
  150. line-height: 24px;
  151. background: #F0FCFC;
  152. font-size: 12px;
  153. color: #515866;
  154. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  155. font-weight: 400;
  156. margin-top: 24px;
  157. margin-bottom: 15px;
  158. &>span {
  159. cursor: pointer;
  160. font-size: 12px;
  161. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  162. font-weight: 500;
  163. color: #00B3B3;
  164. padding-right: 4px;
  165. }
  166. }
  167. }