job-detail.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .job-detail-container.data-v-2bde8e2a {
  27. padding: 20rpx;
  28. position: relative;
  29. background-color: #f5f5f5;
  30. min-height: 100vh;
  31. }
  32. .job-header.data-v-2bde8e2a {
  33. padding: 20rpx 0;
  34. }
  35. .job-title.data-v-2bde8e2a {
  36. font-size: 36rpx;
  37. font-weight: bold;
  38. color: #333;
  39. margin-bottom: 10rpx;
  40. }
  41. .job-salary.data-v-2bde8e2a {
  42. font-size: 32rpx;
  43. color: #ff6b00;
  44. margin-bottom: 10rpx;
  45. }
  46. .job-department.data-v-2bde8e2a {
  47. font-size: 28rpx;
  48. color: #666;
  49. margin-bottom: 20rpx;
  50. }
  51. .job-requirements.data-v-2bde8e2a {
  52. display: flex;
  53. flex-direction: column;
  54. align-items: flex-start;
  55. flex-wrap: wrap;
  56. margin-bottom: 20rpx;
  57. }
  58. .requirement-item.data-v-2bde8e2a {
  59. display: flex;
  60. align-items: center;
  61. font-size: 26rpx;
  62. color: #666;
  63. }
  64. .dot.data-v-2bde8e2a {
  65. width: 13px;
  66. height: 13px;
  67. border-radius: 50%;
  68. background-color: #0052d9;
  69. margin-right: 10rpx;
  70. }
  71. .time-icon.data-v-2bde8e2a {
  72. width: 26rpx;
  73. height: 26rpx;
  74. background-color: #999;
  75. border-radius: 50%;
  76. margin-right: 10rpx;
  77. display: flex;
  78. justify-content: center;
  79. align-items: center;
  80. font-size: 18rpx;
  81. color: #fff;
  82. }
  83. .section.data-v-2bde8e2a {
  84. margin-bottom: 30rpx;
  85. background-color: #fff;
  86. border-radius: 16rpx;
  87. padding: 20rpx;
  88. }
  89. .section-title.data-v-2bde8e2a {
  90. font-size: 32rpx;
  91. font-weight: bold;
  92. color: #333;
  93. margin-bottom: 20rpx;
  94. }
  95. .map-container.data-v-2bde8e2a {
  96. position: relative;
  97. border-radius: 16rpx;
  98. overflow: hidden;
  99. }
  100. .map.data-v-2bde8e2a {
  101. width: 100%;
  102. height: 500rpx;
  103. border-radius: 16rpx;
  104. }
  105. .location-text.data-v-2bde8e2a {
  106. position: absolute;
  107. left: 20rpx;
  108. bottom: 20rpx;
  109. background-color: rgba(0, 0, 0, 0.6);
  110. color: #fff;
  111. font-size: 24rpx;
  112. padding: 6rpx 12rpx;
  113. border-radius: 6rpx;
  114. }
  115. .benefits-list.data-v-2bde8e2a {
  116. display: flex;
  117. flex-wrap: wrap;
  118. }
  119. .benefit-tag.data-v-2bde8e2a {
  120. background-color: #f5f5f5;
  121. color: #666;
  122. font-size: 26rpx;
  123. padding: 10rpx 20rpx;
  124. border-radius: 6rpx;
  125. margin-right: 20rpx;
  126. margin-bottom: 20rpx;
  127. }
  128. .description-subtitle.data-v-2bde8e2a {
  129. font-size: 28rpx;
  130. font-weight: bold;
  131. color: #333;
  132. margin-bottom: 20rpx;
  133. }
  134. .description-content.data-v-2bde8e2a {
  135. padding-left: 10rpx;
  136. }
  137. .description-item.data-v-2bde8e2a {
  138. display: flex;
  139. margin-bottom: 20rpx;
  140. /* * {
  141. background-color: #fff !important;
  142. color: #333 !important;
  143. }
  144. strong {
  145. font-weight: bold;
  146. } */
  147. }
  148. .blue-dot.data-v-2bde8e2a {
  149. min-width: 16rpx;
  150. height: 16rpx;
  151. border-radius: 50%;
  152. background-color: #0039b3 !important;
  153. margin-right: 10rpx;
  154. margin-top: 12rpx;
  155. }
  156. .description-item text.data-v-2bde8e2a {
  157. font-size: 26rpx;
  158. color: #666;
  159. line-height: 1.6;
  160. }
  161. .interview-button.data-v-2bde8e2a {
  162. position: fixed;
  163. right: 0;
  164. top: 50%;
  165. transform: translateY(-50%);
  166. background-color: #0039b3;
  167. color: #fff;
  168. -webkit-writing-mode: vertical-lr;
  169. writing-mode: vertical-lr;
  170. padding: 30rpx 20rpx;
  171. font-size: 32rpx;
  172. border-top-left-radius: 16rpx;
  173. border-bottom-left-radius: 16rpx;
  174. }
  175. .description-text.data-v-2bde8e2a {
  176. font-size: 26rpx;
  177. color: #333;
  178. line-height: 1.6;
  179. flex: 1;
  180. }
  181. .description-text.data-v-2bde8e2a p {
  182. margin: 0;
  183. }
  184. .description-text.data-v-2bde8e2a a {
  185. color: #0039b3;
  186. text-decoration: none;
  187. }
  188. .description-text.data-v-2bde8e2a strong {
  189. font-weight: bold;
  190. }