index.scss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. :root {
  2. --zIndex-dialog: 999;
  3. --default-bgc: #f2f4f7;
  4. --v-primary-base: #00897B;
  5. --v-error-base: #fe574a;
  6. --v-primary-lighten1: #26A69A;
  7. --v-primary-lighten2: #4DB6AC;
  8. --v-primary-lighten3: #80CBC4;
  9. --v-primary-lighten4: #B2DFDB;
  10. --v-primary-lighten5: #b2dfdb9c;
  11. --color-222: #222;
  12. --color-333: #333;
  13. --color-666: #666;
  14. --color-777: #777;
  15. --color-999: #999;
  16. --color-ccc: #ccc;
  17. --color-f3: #f3f3f3;
  18. --color-f2f4f742: #f2f4f742;
  19. --color-f8: #f8f8f8;
  20. --color-f2f4f7: #f2f4f7;
  21. --color-d5e6e8: #d5e6e8;
  22. --zIndex-breadcrumbs: 999;
  23. // el
  24. // --el-component-size: 40px !important;
  25. --el-fill-color-blank: #ffffff00 !important;
  26. --el-input-text-color: #3b3b3b !important;
  27. --el-color-primary: #00897B !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: #00897B !important;
  35. --el-cascader-tag-background: #e2f0ef !important;
  36. }
  37. .color-222 { color: #222; }
  38. .color-333 { color: #333; }
  39. .color-666 { color: #666; }
  40. .color-777 { color: #777; }
  41. .color-999 { color: #999; }
  42. .color-ccc { color: #ccc; }
  43. .color-f3f3f3 { color: #f3f3f3; }
  44. .color-f2f4f742 { color: #f2f4f742; }
  45. .color-f8f8f8 { color: #f8f8f8; }
  46. .color-f2f4f7 { color: #f2f4f7; }
  47. .color-d5e6e8 { color: #d5e6e8; }
  48. .color-error { color: #fe574a; }
  49. .color-primary { color: #00897B; }
  50. .color-warning { color: #fb8c00; }
  51. .color-success { color: #4caf50; }
  52. .color-white { color: #fff; }
  53. .font-size-12 { font-size: 12px; }
  54. .font-size-13 { font-size: 13px; }
  55. .font-size-14 { font-size: 14px; }
  56. .font-size-15 { font-size: 15px; }
  57. .font-size-16 { font-size: 16px; }
  58. .font-size-17 { font-size: 17px; }
  59. .font-size-18 { font-size: 18px; }
  60. .font-size-19 { font-size: 19px; }
  61. .font-size-20 { font-size: 20px; }
  62. .border-bottom-primary { border-bottom: 1px solid var(--v-primary-base); }
  63. .border-bottom-error { border-bottom: 1px solid var(--v-error-base); }
  64. .border-bottom-warning { border-bottom: 1px solid var(--v-warning-base); }
  65. // 长按钮
  66. .buttons {
  67. height: 36px;
  68. width: 224px;
  69. }
  70. // 短按钮
  71. .half-button {
  72. height: 36px;
  73. width: 88px;
  74. }
  75. // 个人端-默认宽度
  76. .default-width {
  77. width: 1184px;
  78. min-width: 1184px;
  79. max-width: 1184px;
  80. margin: 0 auto;
  81. }
  82. .defaultLink {
  83. // color:#5aabff;
  84. color:#008978;
  85. cursor:pointer;
  86. // text-decoration: underline;
  87. }
  88. .defaultLink-i {
  89. color:#008978 !important;
  90. cursor:pointer !important;
  91. }
  92. // 高亮
  93. .default-active {
  94. color: var(--v-primary-base) !important;
  95. }
  96. .border-bottom-dashed {
  97. border-bottom: 1px dashed var(--color-ccc);
  98. }
  99. .white-bgc {
  100. background-color: #fff;
  101. }
  102. .ellipsis {
  103. white-space: nowrap;
  104. text-overflow: ellipsis;
  105. overflow: hidden;
  106. }
  107. // 超出2行显示省略号
  108. .ellipsis-2 {
  109. display: -webkit-box;
  110. -webkit-box-orient: vertical;
  111. -webkit-line-clamp: 2;
  112. overflow: hidden;
  113. }
  114. // 分隔线
  115. .septal-line {
  116. display: inline-block;
  117. width: 1px;
  118. height: 10px;
  119. vertical-align: middle;
  120. background-color: #e0e0e0;
  121. margin: 0 10px;
  122. }
  123. // 居中
  124. .absolute-center {
  125. position: absolute;
  126. top: 50%;
  127. left: 50%;
  128. transform: translate(-50%, -50%);
  129. }
  130. // 个人简历
  131. .resume-box {
  132. border-radius: 5px;
  133. padding: 20px 30px;
  134. background-color: #fff;
  135. }
  136. .resume-header {
  137. display: flex;
  138. justify-content: space-between;
  139. align-items: center;
  140. height: 36px;
  141. }
  142. .resume-title {
  143. font-weight: 700;
  144. font-size: 18px;
  145. border-left: 5px solid #00897B;
  146. padding-left: 12px;
  147. line-height: 17px;
  148. }
  149. .resumeNoDataText {
  150. color: var(--color-666);
  151. font-size: 14px;
  152. }
  153. .card-box {
  154. width: 100%;
  155. height: 100%;
  156. min-height: 70vh;
  157. }
  158. .home-title {
  159. font-size: 30px;
  160. font-weight: 600;
  161. color: rgb(51, 51, 51);
  162. margin: 0 15px;
  163. position: relative;
  164. &-line {
  165. width: 223px;
  166. background: linear-gradient(to right, rgb(18, 235, 176), rgb(66, 125, 170));
  167. height: 9px;
  168. position: absolute;
  169. top: 37px;
  170. left: -50%;
  171. transform: translateX(5%);
  172. }
  173. }
  174. .btnColor {
  175. color: #fff;
  176. opacity: .7;
  177. background-color: #00887A !important;
  178. }
  179. .commonHover:hover {
  180. color: #00887A;
  181. // font-weight: 700;
  182. // text-decoration: underline;
  183. border-bottom: 2px solid #00887A;
  184. }
  185. .commonHover2:hover {
  186. color: #00887A;
  187. font-weight: 700;
  188. }
  189. // 已关闭职位遮罩层
  190. .close-position::after {
  191. content: '';
  192. position: absolute;
  193. left: 0;
  194. top: 0;
  195. width: 100%;
  196. height: 100%;
  197. background-color: #fff;
  198. opacity: .7;
  199. }
  200. .form-label {
  201. font-size: 14px;
  202. opacity: .6;
  203. }
  204. /* 均匀间隔显示的文本 */
  205. .justified-text {
  206. width: 70px; /* 设定固定长度 */
  207. text-align: justify; /* 使文本两端对齐 */
  208. text-justify: inter-word; /* 为了兼容性 */
  209. height: 100%;
  210. line-height: 100%;
  211. }
  212. .justified-text:after {
  213. content: '';
  214. display: inline-block;
  215. width: 100%; /* 设定额外间隔 */
  216. }
  217. .l-s-10 {
  218. letter-spacing: 10px;
  219. margin-right: -10px;
  220. }