index.css 4.7 KB

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