job-detail.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. align-items: center;
  54. margin-bottom: 20rpx;
  55. }
  56. .requirement-item.data-v-2bde8e2a {
  57. display: flex;
  58. align-items: center;
  59. margin-right: 30rpx;
  60. font-size: 26rpx;
  61. color: #666;
  62. }
  63. .dot.data-v-2bde8e2a {
  64. width: 16rpx;
  65. height: 16rpx;
  66. border-radius: 50%;
  67. background-color: #0052d9;
  68. margin-right: 10rpx;
  69. }
  70. .time-icon.data-v-2bde8e2a {
  71. width: 26rpx;
  72. height: 26rpx;
  73. background-color: #999;
  74. border-radius: 50%;
  75. margin-right: 10rpx;
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. font-size: 18rpx;
  80. color: #fff;
  81. }
  82. .section.data-v-2bde8e2a {
  83. margin-bottom: 30rpx;
  84. background-color: #fff;
  85. border-radius: 16rpx;
  86. padding: 20rpx;
  87. }
  88. .section-title.data-v-2bde8e2a {
  89. font-size: 32rpx;
  90. font-weight: bold;
  91. color: #333;
  92. margin-bottom: 20rpx;
  93. }
  94. .map-container.data-v-2bde8e2a {
  95. position: relative;
  96. border-radius: 16rpx;
  97. overflow: hidden;
  98. }
  99. .map.data-v-2bde8e2a {
  100. width: 100%;
  101. height: 500rpx;
  102. border-radius: 16rpx;
  103. }
  104. .location-text.data-v-2bde8e2a {
  105. position: absolute;
  106. left: 20rpx;
  107. bottom: 20rpx;
  108. background-color: rgba(0, 0, 0, 0.6);
  109. color: #fff;
  110. font-size: 24rpx;
  111. padding: 6rpx 12rpx;
  112. border-radius: 6rpx;
  113. }
  114. .benefits-list.data-v-2bde8e2a {
  115. display: flex;
  116. flex-wrap: wrap;
  117. }
  118. .benefit-tag.data-v-2bde8e2a {
  119. background-color: #f5f5f5;
  120. color: #666;
  121. font-size: 26rpx;
  122. padding: 10rpx 20rpx;
  123. border-radius: 6rpx;
  124. margin-right: 20rpx;
  125. margin-bottom: 20rpx;
  126. }
  127. .description-subtitle.data-v-2bde8e2a {
  128. font-size: 28rpx;
  129. font-weight: bold;
  130. color: #333;
  131. margin-bottom: 20rpx;
  132. }
  133. .description-content.data-v-2bde8e2a {
  134. padding-left: 10rpx;
  135. }
  136. .description-item.data-v-2bde8e2a {
  137. display: flex;
  138. margin-bottom: 20rpx;
  139. /* * {
  140. background-color: #fff !important;
  141. color: #333 !important;
  142. }
  143. strong {
  144. font-weight: bold;
  145. } */
  146. }
  147. .blue-dot.data-v-2bde8e2a {
  148. min-width: 16rpx;
  149. height: 16rpx;
  150. border-radius: 50%;
  151. background-color: #0039b3 !important;
  152. margin-right: 10rpx;
  153. margin-top: 12rpx;
  154. }
  155. .description-item text.data-v-2bde8e2a {
  156. font-size: 26rpx;
  157. color: #666;
  158. line-height: 1.6;
  159. }
  160. .interview-button.data-v-2bde8e2a {
  161. position: fixed;
  162. right: 0;
  163. top: 50%;
  164. transform: translateY(-50%);
  165. background-color: #0039b3;
  166. color: #fff;
  167. -webkit-writing-mode: vertical-lr;
  168. writing-mode: vertical-lr;
  169. padding: 30rpx 20rpx;
  170. font-size: 32rpx;
  171. border-top-left-radius: 16rpx;
  172. border-bottom-left-radius: 16rpx;
  173. }
  174. .description-text.data-v-2bde8e2a {
  175. font-size: 26rpx;
  176. color: #333;
  177. line-height: 1.6;
  178. flex: 1;
  179. }
  180. .description-text.data-v-2bde8e2a p {
  181. margin: 0;
  182. }
  183. .description-text.data-v-2bde8e2a a {
  184. color: #0039b3;
  185. text-decoration: none;
  186. }
  187. .description-text.data-v-2bde8e2a strong {
  188. font-weight: bold;
  189. }