index.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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. --color-222: #222;
  11. --color-333: #333;
  12. --color-666: #666;
  13. --color-777: #777;
  14. --color-999: #999;
  15. --color-ccc: #ccc;
  16. --color-f3: #f3f3f3;
  17. --color-f2f4f742: #f2f4f742;
  18. --color-f8: #f8f8f8;
  19. --color-f2f4f7: #f2f4f7;
  20. --color-d5e6e8: #d5e6e8;
  21. --zIndex-breadcrumbs: 999;
  22. --el-fill-color-blank: #ffffff00 !important;
  23. --el-input-text-color: #3b3b3b !important;
  24. --el-color-primary: #00897B !important;
  25. --el-border-color: #999 !important;
  26. --el-input-border: #333 !important;
  27. --el-border-color-hover: #333 !important;
  28. --el-text-color-regular: #333 !important;
  29. --el-fill-color-light: #f3f3f3 !important;
  30. --el-input-border: 1px solid #000 !important;
  31. }
  32. .color-222 {
  33. color: #222;
  34. }
  35. .color-333 {
  36. color: #333;
  37. }
  38. .color-666 {
  39. color: #666;
  40. }
  41. .color-777 {
  42. color: #777;
  43. }
  44. .color-999 {
  45. color: #999;
  46. }
  47. .color-ccc {
  48. color: #ccc;
  49. }
  50. .color-f3f3f3 {
  51. color: #f3f3f3;
  52. }
  53. .color-f2f4f742 {
  54. color: #f2f4f742;
  55. }
  56. .color-f8f8f8 {
  57. color: #f8f8f8;
  58. }
  59. .color-f2f4f7 {
  60. color: #f2f4f7;
  61. }
  62. .color-d5e6e8 {
  63. color: #d5e6e8;
  64. }
  65. .color-error {
  66. color: #fe574a;
  67. }
  68. .color-primary {
  69. color: #00897B;
  70. }
  71. .color-warning {
  72. color: #fb8c00;
  73. }
  74. .color-white {
  75. color: #fff;
  76. }
  77. .font-size-12 {
  78. font-size: 12px;
  79. }
  80. .font-size-13 {
  81. font-size: 13px;
  82. }
  83. .font-size-14 {
  84. font-size: 14px;
  85. }
  86. .font-size-15 {
  87. font-size: 15px;
  88. }
  89. .font-size-16 {
  90. font-size: 16px;
  91. }
  92. .font-size-17 {
  93. font-size: 17px;
  94. }
  95. .font-size-18 {
  96. font-size: 18px;
  97. }
  98. .font-size-19 {
  99. font-size: 19px;
  100. }
  101. .font-size-20 {
  102. font-size: 20px;
  103. }
  104. .buttons {
  105. height: 36px;
  106. width: 224px;
  107. }
  108. .half-button {
  109. height: 36px;
  110. width: 88px;
  111. }
  112. .default-width {
  113. width: 1184px;
  114. min-width: 1184px;
  115. max-width: 1184px;
  116. margin: 0 auto;
  117. }
  118. .defaultLink {
  119. color: #008978;
  120. cursor: pointer;
  121. }
  122. .defaultLink-i {
  123. color: #008978 !important;
  124. cursor: pointer !important;
  125. }
  126. .default-active {
  127. color: var(--v-primary-base) !important;
  128. }
  129. .border-bottom-dashed {
  130. border-bottom: 1px dashed var(--color-ccc);
  131. }
  132. .white-bgc {
  133. background-color: #fff;
  134. }
  135. .ellipsis {
  136. white-space: nowrap;
  137. text-overflow: ellipsis;
  138. overflow: hidden;
  139. }
  140. .septal-line {
  141. display: inline-block;
  142. width: 1px;
  143. height: 10px;
  144. vertical-align: middle;
  145. background-color: #e0e0e0;
  146. margin: 0 10px;
  147. }
  148. .absolute-center {
  149. position: absolute;
  150. top: 50%;
  151. left: 50%;
  152. transform: translate(-50%, -50%);
  153. }
  154. .resume-box {
  155. border-radius: 5px;
  156. padding: 20px 30px;
  157. background-color: #fff;
  158. }
  159. .resume-header {
  160. display: flex;
  161. justify-content: space-between;
  162. align-items: center;
  163. height: 36px;
  164. }
  165. .resume-title {
  166. font-weight: 700;
  167. font-size: 18px;
  168. border-left: 5px solid #00897B;
  169. padding-left: 12px;
  170. line-height: 17px;
  171. }
  172. .resumeNoDataText {
  173. color: var(--color-666);
  174. font-size: 14px;
  175. }
  176. .card-box {
  177. width: 100%;
  178. height: 100%;
  179. min-height: 70vh;
  180. }
  181. .home-title {
  182. font-size: 30px;
  183. font-weight: 600;
  184. color: #333333;
  185. margin: 0 15px;
  186. position: relative;
  187. }
  188. .home-title-line {
  189. width: 223px;
  190. background: linear-gradient(to right, #12ebb0, #427daa);
  191. height: 9px;
  192. position: absolute;
  193. top: 37px;
  194. left: -50%;
  195. transform: translateX(5%);
  196. }
  197. .btnColor {
  198. color: #fff;
  199. opacity: .7;
  200. background-color: #00887A !important;
  201. }
  202. .commonHover:hover {
  203. color: #00887A;
  204. font-weight: 700;
  205. text-decoration: underline;
  206. }
  207. .commonHover2:hover {
  208. color: #00887A;
  209. font-weight: 700;
  210. }
  211. .close-position::after {
  212. content: '';
  213. position: absolute;
  214. left: 0;
  215. top: 0;
  216. width: 100%;
  217. height: 100%;
  218. background-color: #fff;
  219. opacity: .7;
  220. }
  221. .form-label {
  222. font-size: 14px;
  223. opacity: .6;
  224. }