招聘网页
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. :root {
  2. font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  3. line-height: 1.5;
  4. font-weight: 400;
  5. color-scheme: light dark;
  6. color: rgba(255, 255, 255, 0.87);
  7. background-color: #242424;
  8. font-synthesis: none;
  9. text-rendering: optimizeLegibility;
  10. -webkit-font-smoothing: antialiased;
  11. -moz-osx-font-smoothing: grayscale;
  12. }
  13. a {
  14. font-weight: 500;
  15. color: #646cff;
  16. text-decoration: inherit;
  17. }
  18. a:hover {
  19. color: #535bf2;
  20. }
  21. body {
  22. margin: 0;
  23. display: flex;
  24. place-items: center;
  25. min-width: 320px;
  26. min-height: 100vh;
  27. }
  28. h1 {
  29. font-size: 3.2em;
  30. line-height: 1.1;
  31. }
  32. button {
  33. border-radius: 8px;
  34. border: 1px solid transparent;
  35. padding: 0.6em 1.2em;
  36. font-size: 1em;
  37. font-weight: 500;
  38. font-family: inherit;
  39. background-color: #1a1a1a;
  40. cursor: pointer;
  41. transition: border-color 0.25s;
  42. }
  43. button:hover {
  44. border-color: #646cff;
  45. }
  46. button:focus,
  47. button:focus-visible {
  48. outline: 4px auto -webkit-focus-ring-color;
  49. }
  50. .card {
  51. padding: 2em;
  52. }
  53. #app {
  54. width: 100%;
  55. height: 100%;
  56. overflow: hidden;
  57. overflow: auto;
  58. background-color: #f0f0f0 !important;
  59. }
  60. ::-webkit-scrollbar {
  61. /* 设置滚动条宽度 */
  62. width: 0px;
  63. height: 0px;
  64. }
  65. @media (prefers-color-scheme: light) {
  66. :root {
  67. color: #213547;
  68. background-color: #ffffff;
  69. }
  70. a:hover {
  71. color: #747bff;
  72. }
  73. button {
  74. background-color: #f9f9f9;
  75. }
  76. }
  77. .content-padding-inline {
  78. padding-inline: 50px;
  79. }
  80. /* 从右开始 */
  81. .horizontal-flex-end {
  82. display: flex;
  83. justify-content: flex-end;
  84. }
  85. .main-color {
  86. color: #4FBE70;
  87. }
  88. .fs-white {
  89. color: #ffffff !important;
  90. }
  91. .ant-tabs-tab-btn {
  92. color: #4FBE70 !important;
  93. }
  94. .ant-btn-primary {
  95. background-color: #4FBE70 !important;
  96. border-color: #4FBE70 !important;
  97. }
  98. .ant-menu-submenu-selected::after {
  99. border-bottom-color: #4FBE70 !important;
  100. }
  101. .ant-menu-item-selected::after {
  102. color: #4FBE70 !important;
  103. }
  104. .ant-pagination-item-active {
  105. border-color: #4FBE70 !important;
  106. }
  107. .ant-pagination-item-active a {
  108. color: #4FBE70 !important;
  109. }
  110. .ant-switch-checked {
  111. background: #4FBE70 !important;
  112. }
  113. .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  114. background: #4FBE70 !important;
  115. border-color: #4FBE70 !important;
  116. color: #ffffff !important;
  117. }
  118. /* .ant-radio-button-wrapper:hover {
  119. color: #4FBE70 !important;
  120. background: #ffffff !important;
  121. } */
  122. /*
  123. .ant-radio-button-checked {
  124. color: #ffffff !important;
  125. background: #4FBE70 !important;
  126. } */
  127. .ant-checkbox-checked .ant-checkbox-inner {
  128. background: #4FBE70 !important;
  129. border-color: #4FBE70 !important;
  130. }
  131. .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before {
  132. background-color: none !important;
  133. }
  134. .resume-form {
  135. background-color: #f8f8f8;
  136. padding: 16px;
  137. border-radius: 8px;
  138. }
  139. pre {
  140. width: 100%;
  141. overflow: hidden;
  142. text-overflow: ellipsis;
  143. white-space: nowrap;
  144. }