index.scss 1.4 KB

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