index.scss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. @charset "UTF-8";
  2. @import './fonts.scss';
  3. :root {
  4. --zIndex-dialog: 999;
  5. --default-bgc: #f2f4f7;
  6. --v-primary-base: #00B760;
  7. --v-error-base: #fe574a;
  8. --v-primary-lighten1: #26A69A;
  9. --v-primary-lighten2: #4DB6AC;
  10. --v-primary-lighten3: #80CBC4;
  11. --v-primary-lighten4: #B2DFDB;
  12. --v-primary-lighten5: #b2dfdb9c;
  13. --color-222: #222;
  14. --color-333: #333;
  15. --color-666: #666;
  16. --color-777: #777;
  17. --color-999: #999;
  18. --color-ccc: #ccc;
  19. --color-f3: #f3f3f3;
  20. --color-f2f4f742: #f2f4f742;
  21. --color-f8: #f8f8f8;
  22. --color-f2f4f7: #f2f4f7;
  23. --color-d5e6e8: #d5e6e8;
  24. --zIndex-breadcrumbs: 999;
  25. --el-fill-color-blank: #ffffff00 !important;
  26. --el-input-text-color: #3b3b3b !important;
  27. --el-color-primary: #00B760 !important;
  28. --el-border-color: #999 !important;
  29. --el-input-border: #333 !important;
  30. --el-border-color-hover: #333 !important;
  31. --el-text-color-regular: #333 !important;
  32. --el-fill-color-light: #f3f3f3 !important;
  33. --el-input-border: 1px solid #000 !important;
  34. --el-color-info: #00B760 !important;
  35. --el-cascader-tag-background: #e2f0ef !important;
  36. }
  37. .color-222 {
  38. color: #222;
  39. }
  40. .color-333 {
  41. color: #333;
  42. }
  43. .color-666 {
  44. color: #666;
  45. }
  46. .color-777 {
  47. color: #777;
  48. }
  49. .color-999 {
  50. color: #999;
  51. }
  52. .color-ccc {
  53. color: #ccc;
  54. }
  55. .color-f3f3f3 {
  56. color: #f3f3f3;
  57. }
  58. .color-f2f4f742 {
  59. color: #f2f4f742;
  60. }
  61. .color-f8f8f8 {
  62. color: #f8f8f8;
  63. }
  64. .color-f2f4f7 {
  65. color: #f2f4f7;
  66. }
  67. .color-d5e6e8 {
  68. color: #d5e6e8;
  69. }
  70. .color-error {
  71. color: #fe574a;
  72. }
  73. .color-primary {
  74. color: #00B760;
  75. }
  76. .color-warning {
  77. color: #fb8c00;
  78. }
  79. .color-success {
  80. color: #4caf50;
  81. }
  82. .color-white {
  83. color: #fff;
  84. }
  85. .font-size-12 {
  86. font-size: 12px;
  87. }
  88. .font-size-13 {
  89. font-size: 13px;
  90. }
  91. .font-size-14 {
  92. font-size: 14px;
  93. }
  94. .font-size-15 {
  95. font-size: 15px;
  96. }
  97. .font-size-16 {
  98. font-size: 16px;
  99. }
  100. .font-size-17 {
  101. font-size: 17px;
  102. }
  103. .font-size-18 {
  104. font-size: 18px;
  105. }
  106. .font-size-19 {
  107. font-size: 19px;
  108. }
  109. .font-size-20 {
  110. font-size: 20px;
  111. }
  112. .border-bottom-primary {
  113. border-bottom: 1px solid var(--v-primary-base);
  114. }
  115. .border-bottom-error {
  116. border-bottom: 1px solid var(--v-error-base);
  117. }
  118. .border-bottom-warning {
  119. border-bottom: 1px solid var(--v-warning-base);
  120. }
  121. .buttons {
  122. height: 36px;
  123. width: 224px;
  124. }
  125. .half-button {
  126. height: 36px;
  127. width: 88px;
  128. }
  129. .default-width {
  130. width: 1184px;
  131. min-width: 1184px;
  132. max-width: 1184px;
  133. margin: 0 auto;
  134. }
  135. .defaultLink {
  136. color: #00B760;
  137. cursor: pointer;
  138. }
  139. .defaultLink-i {
  140. color: #00B760 !important;
  141. cursor: pointer !important;
  142. }
  143. .default-active {
  144. color: var(--v-primary-base) !important;
  145. }
  146. .border-bottom-dashed {
  147. border-bottom: 1px dashed var(--color-ccc);
  148. }
  149. .white-bgc {
  150. background-color: #fff;
  151. }
  152. .default-bgc {
  153. background-color: #f2f4f7;
  154. }
  155. .ellipsis {
  156. white-space: nowrap;
  157. text-overflow: ellipsis;
  158. overflow: hidden;
  159. }
  160. .ellipsis-2 {
  161. display: -webkit-box;
  162. -webkit-box-orient: vertical;
  163. -webkit-line-clamp: 2;
  164. overflow: hidden;
  165. }
  166. .septal-line {
  167. display: inline-block;
  168. width: 1px;
  169. height: 10px;
  170. vertical-align: middle;
  171. background-color: #e0e0e0;
  172. margin: 0 10px;
  173. }
  174. .default-text-color {
  175. color: #0E100F;
  176. }
  177. .absolute-center {
  178. position: absolute;
  179. top: 50%;
  180. left: 50%;
  181. transform: translate(-50%, -50%);
  182. }
  183. .resume-box {
  184. border-radius: 5px;
  185. padding: 20px 30px;
  186. background-color: #fff;
  187. }
  188. .resume-header {
  189. display: flex;
  190. justify-content: space-between;
  191. align-items: center;
  192. height: 36px;
  193. }
  194. .resume-title {
  195. font-weight: 700;
  196. font-size: 18px;
  197. border-left: 5px solid #00B760;
  198. padding-left: 12px;
  199. line-height: 17px;
  200. }
  201. .resumeNoDataText {
  202. color: var(--color-666);
  203. font-size: 14px;
  204. }
  205. .card-box {
  206. min-width: calc(100vw - 272px);
  207. height: 100%;
  208. min-height: 70vh;
  209. }
  210. .home-title {
  211. font-size: 30px;
  212. color: #333333;
  213. margin: 0 15px;
  214. position: relative;
  215. }
  216. .home-title-line {
  217. width: 223px;
  218. // background: linear-gradient(to right, #12ebb0, #427daa);
  219. background-color: #00B760;
  220. height: 9px;
  221. position: absolute;
  222. top: 45px;
  223. left: -50%;
  224. transform: translateX(5%);
  225. }
  226. .btnColor {
  227. color: #fff;
  228. opacity: .7;
  229. background-color: #00B760 !important;
  230. }
  231. .commonHover:hover {
  232. color: #00B760;
  233. border-bottom: 2px solid #00B760;
  234. }
  235. .commonHover2:hover {
  236. color: #00B760;
  237. font-weight: 700;
  238. }
  239. .close-position::after {
  240. content: '';
  241. position: absolute;
  242. left: 0;
  243. top: 0;
  244. width: 100%;
  245. height: 100%;
  246. background-color: #fff;
  247. opacity: .7;
  248. }
  249. .form-label {
  250. font-size: 14px;
  251. opacity: .6;
  252. }
  253. /* 均匀间隔显示的文本 */
  254. .justified-text {
  255. width: 70px;
  256. /* 设定固定长度 */
  257. text-align: justify;
  258. /* 使文本两端对齐 */
  259. text-justify: inter-word;
  260. /* 为了兼容性 */
  261. height: 100%;
  262. line-height: 100%;
  263. }
  264. .justified-text:after {
  265. content: '';
  266. display: inline-block;
  267. width: 100%;
  268. /* 设定额外间隔 */
  269. }
  270. .l-s-10 {
  271. letter-spacing: 10px;
  272. margin-right: -10px;
  273. }