index.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. :root {
  2. --zIndex-dialog: 9999;
  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. }
  23. // 长按钮
  24. .buttons {
  25. height: 36px;
  26. width: 224px;
  27. }
  28. // 短按钮
  29. .half-button {
  30. height: 36px;
  31. width: 88px;
  32. }
  33. // 个人端-默认宽度
  34. .default-width {
  35. width: 1184px;
  36. min-width: 1184px;
  37. max-width: 1184px;
  38. margin: 0 auto;
  39. }
  40. .defaultLink {
  41. // color:#5aabff;
  42. color:#008978;
  43. cursor:pointer;
  44. // text-decoration: underline;
  45. }
  46. // 高亮
  47. .default-active {
  48. color: var(--v-primary-base) !important;
  49. }
  50. .border-bottom-dashed {
  51. border-bottom: 1px dashed var(--color-ccc);
  52. }
  53. .white-bgc {
  54. background-color: #fff;
  55. }
  56. .ellipsis {
  57. white-space: nowrap;
  58. text-overflow: ellipsis;
  59. overflow: hidden;
  60. }
  61. .vline {
  62. display: inline-block;
  63. width: 1px;
  64. height: 10px;
  65. vertical-align: middle;
  66. background-color: #e0e0e0;
  67. margin: 0 10px;
  68. }
  69. // 个人简历
  70. .resume-box {
  71. border-radius: 5px;
  72. padding: 20px 30px;
  73. background-color: #fff;
  74. }
  75. .resume-header {
  76. display: flex;
  77. justify-content: space-between;
  78. align-items: center;
  79. height: 36px;
  80. }
  81. .resume-title {
  82. font-weight: 700;
  83. font-size: 18px;
  84. border-left: 5px solid #00897B;
  85. padding-left: 12px;
  86. line-height: 17px;
  87. }
  88. .resumeNoDataText {
  89. color: var(--color-666);
  90. font-size: 14px;
  91. }
  92. .card-box {
  93. width: 100%;
  94. height: 100%;
  95. }