pay.vue 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004
  1. <template>
  2. <view style="display: flex;flex-direction: column;height: 100vh;">
  3. <!-- 固定顶部导航栏 -->
  4. <view class="navbar-content" :style="{ paddingTop: (12 + statusBarHeight) + 'px' }">
  5. <view class="nav-left" @click="goBack">
  6. <u-icon name="arrow-leftward" color="#000" size="32"></u-icon>
  7. </view>
  8. <view class="nav-title">职位详情</view>
  9. <view class="nav-right"></view>
  10. </view>
  11. <!-- 审核失败 -->
  12. <view v-if="info.status === 3" style="display: flex;flex-direction: column;overflow: auto;flex: 1;">
  13. <!-- 审核状态提示 -->
  14. <view class="status-section">
  15. <view class="status-icon">
  16. <image src="../../static/images/index/redGantan.svg" class="status-icon-img"></image>
  17. </view>
  18. <view class="status-title">职位审核失败</view>
  19. </view>
  20. <!-- 职位信息卡片 -->
  21. <view class="job-info-card">
  22. <view class="job-header">
  23. <view class="job-title-section">
  24. <text class="job-title">{{ info.stationName }}</text>
  25. </view>
  26. <view class="job-status">
  27. <text class="status-text">审核未通过</text>
  28. </view>
  29. </view>
  30. <view class="job-info">
  31. <text class="job-details">{{ info.county }} {{ info.education }} {{ info.experience }}
  32. {{ info.salaryRange }} {{ info.postType }}</text>
  33. </view>
  34. </view>
  35. <!-- 失败原因 -->
  36. <view class="failure-reason-section">
  37. <view class="section-title">失败原因</view>
  38. <view class="reason-list">
  39. <view class="reason-item">
  40. <text class="reason-text">{{ info.auditContent || '暂无数据' }}</text>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <!-- 其他状态 -->
  46. <view v-if="info.status !== 3" style="display: flex;flex-direction: column;overflow: auto;flex: 1;">
  47. <view class="remarks flex justify-center">
  48. <view class="remarks-box flex justify-between align-center">
  49. <text style="color: rgba(1, 107, 246, 1);font-weight: bold;">{{ info.status == 1 ? '待审核' :
  50. (info.status == 2 ? '进行中' : (info.status == 3 ? '已拒绝' : (info.status == 4 ? '已取消' : info.status
  51. == 5 ? '已关闭' : '暂存')))
  52. }}</text>
  53. <text style="color: rgba(156, 164, 171, 1);font-size: 24rpx;">{{ info.createTime }}</text>
  54. </view>
  55. </view>
  56. <view class="remarks flex justify-center" v-if="info.isOverdue == 1">
  57. <view class="remarks-box flex justify-between align-center">
  58. <text style="color: #000000;font-weight: bold;">已到期</text>
  59. <text style="color: #000000;font-size: 24rpx;">{{ info.overdueTime }}</text>
  60. </view>
  61. </view>
  62. <!-- 岗位要求 -->
  63. <view class="job flex justify-center">
  64. <view class="job-info flex justify-center">
  65. <view class="job-info-c">
  66. <view class="job-info-c-header">
  67. <view class="job-info-c-title">
  68. {{ info.ruleClassifyName }}
  69. </view>
  70. <view class="job-info-c-price">
  71. {{ info.salaryRange }}
  72. </view>
  73. </view>
  74. <!-- 地址 -->
  75. <view class="job-info-c-address">
  76. <u-icon name="map" color="rgba(58, 57, 67, 1)" style="margin-right: 10rpx;"
  77. size="24"></u-icon>
  78. {{ info.city }} {{ info.county }} {{ info.address }}
  79. </view>
  80. <view class="job-info-c-label flex align-center flex-wrap">
  81. <view class="job-info-c-label-item">
  82. {{ info.experience }}
  83. </view>
  84. <view class="job-info-c-label-item">
  85. {{ info.education }}
  86. </view>
  87. <view class="job-info-c-label-item">
  88. {{ info.industry }}
  89. </view>
  90. </view>
  91. <view class="warning-box">
  92. <image src="@/static/images/index/tishi.png" />
  93. <view class="warning-txt">请注意辨认信息真伪,拒绝交纳报名费、线下交易等要求,谨防上当受骗</view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. <!-- 急聘 -->
  99. <view class="urgent-banner" v-if="info.isDue == 1">
  100. <view class="urgent-left-section flex align-center">
  101. <view class="urgent-star-icon-wrapper flex align-center justify-center">
  102. <u-icon name="star-fill" color="rgba(251, 231, 185, 1)" size="40rpx"></u-icon>
  103. </view>
  104. <view class="urgent-text-content">
  105. <view class="urgent-main-title">急聘职位 | 2天后到期</view>
  106. <view class="urgent-sub-description">急聘免费体验中,升级正式版享受更多权益</view>
  107. <view class="urgent-benefits flex align-center">今日剩余权益:5次沟通,0次查看 <u-icon name="arrow-right"
  108. color="#FFFFFF" size="20rpx" style="margin-left: 10rpx;"></u-icon></view>
  109. </view>
  110. </view>
  111. <view class="urgent-upgrade-button">
  112. 升级正式版
  113. </view>
  114. </view>
  115. <!-- 岗位介绍 -->
  116. <view class="jobRemarks flex justify-center">
  117. <view class="jobRemarks-box flex justify-center">
  118. <view class="jobRemarks-box-c">
  119. <view class="jobRemarks-box-c-title flex align-center">
  120. <image src="/static/images/index/ins.png" class="title-icon"></image>
  121. <text>职位说明</text>
  122. </view>
  123. <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-if="info.tag">
  124. <view class="jobRemarks-box-c-label-item" v-for="(item, index) in info.tag.split(',')"
  125. :key="index">
  126. {{ item }}
  127. </view>
  128. </view>
  129. <!--
  130. <view class="job-description">
  131. <view class="description-item">1.负责Amazon英国、欧洲站、制定推广与销售计划,达成团队要求的销售业绩;</view>
  132. <view class="description-item">2.做好数据的统计分析工作,收集、分析市场信息,竞争对手状况,并根据产品销售与排名变化,及时制定和调整产品的销售策略;</view>
  133. <view class="description-item">3.熟悉Amazon店铺操作,负责店铺产品编辑上传,精准把握关键词选择,负责标题,详情页面的优化;</view>
  134. <view class="description-item">4.熟悉Amazon平台规则,熟悉Amazon站内广告投放和促销式,站外促销,找红人营销等提高曝光率和转化率的引流方;</view>
  135. <view class="description-item">5.控制产品风险,合理规划FBA库存,及时合理处理滞销FBA库存;</view>
  136. <view class="description-item">6.对产品销售进行跟踪,分析,及时汇报销售中存在的问题,并给出可行性意见;</view>
  137. <view class="description-item">7.及时处理客户留言及回评,解答客户相关咨询与投诉,并进行问题整理统计分析,提高店铺的好评率,确保账号安全;</view>
  138. <view class="description-item">8.每月定期整理分析运营各项数据,并提出相应的合理化建议。</view>
  139. </view> -->
  140. <view class="jobRemarks-box-c-con" v-if="info.positionDetails">
  141. <view class="jobRemarks-box-c-con-item" v-html="info.positionDetails">
  142. </view>
  143. </view>
  144. <view class="jobRemarks-box-c-line"></view>
  145. <view class="jobRemarks-box-c-title flex align-center" style="margin-top: 25rpx;">
  146. <image src="/static/images/index/welfare.png" class="title-icon"></image>
  147. <text>岗位福利</text>
  148. </view>
  149. <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-if="info.welfareTag">
  150. <view class="jobRemarks-box-c-label-item"
  151. v-for="(item, index) in info.welfareTag ? info.welfareTag.split(';') : []" :key="index">
  152. {{ item }}
  153. </view>
  154. </view>
  155. <view class="jobRemarks-box-c-label flex align-center flex-wrap" v-else>
  156. <view class="jobRemarks-box-c-label-item">
  157. 暂无
  158. </view>
  159. </view>
  160. <!-- <view class="job-description">
  161. <view class="description-item">1.完整的晋升机制,每年2次调薪机会;</view>
  162. <view class="description-item">2.满一年五天带薪年假;</view>
  163. <view class="description-item">3.每月员工下午茶;</view>
  164. <view class="description-item">4.各类大促活动有对应的激励方案;</view>
  165. <view class="description-item">5.丰厚的提成和年终奖励;</view>
  166. <view class="description-item">6.开设员工俱乐部:羽毛球、篮球、舞蹈、瑜伽等等。</view>
  167. </view> -->
  168. </view>
  169. </view>
  170. </view>
  171. <!-- 企业简介 -->
  172. <view class="enterprise">
  173. <!-- 公司介绍卡片 -->
  174. <view class="company-intro-card">
  175. <!-- @click="goInfo(info.company.companyId)" -->
  176. <view class="company-avatar">
  177. <image :src="info.company ? info.company.companyLogo : '../../../static/logo.png'"
  178. style="width: 95rpx;height: 95rpx;border-radius: 50%;" mode="aspectFill"></image>
  179. </view>
  180. <view class="company-info">
  181. <view class="company-name">{{ info.company ? info.company.companyAllName : '' }}</view>
  182. <view class="company-details">{{ info.company ? info.company.companyPeople : '' }} ·
  183. {{ info.company ? info.company.companyScope : '' }}
  184. </view>
  185. </view>
  186. <view class="company-arrow">
  187. <u-icon name="arrow-right" color="rgba(51, 51, 51, 1)" size="32"></u-icon>
  188. </view>
  189. </view>
  190. <!-- 地图区域 -->
  191. <view class="enterprise-box flex justify-center">
  192. <view class="enterprise-box-c">
  193. <view class="enterprise-box-c-bto flex align-center justify-between" @click.stop="gotoMap()">
  194. <view class="enterprise-box-c-bto-l flex align-center">
  195. <u-icon name="map" color="#016BF6" style="margin-left: 20rpx;margin-right: 10rpx;"
  196. size="28"></u-icon>
  197. <!-- {{info.province}}{{info.city}}{{info.county}} -->{{ info.address }}
  198. </view>
  199. <view class="enterprise-box-c-bto-r">
  200. <u-icon name="arrow-right" color="#016BF6" style="margin-right: 20rpx;"
  201. size="28"></u-icon>
  202. </view>
  203. </view>
  204. </view>
  205. </view>
  206. <!-- 职位招聘数据 -->
  207. <view class="postNum">
  208. <view style="font-size: 16px;font-weight: 600;">职位招聘数据</view>
  209. <view class="postNum-ul flex justify-around align-center">
  210. <view class="postNum-li">
  211. <view class="postNum-li-num align-center">{{ postData.chatCount||0 }}</view>
  212. <view class="postNum-li-txt">沟通过</view>
  213. </view>
  214. <view class="postNum-li ">
  215. <view class="postNum-li-num">{{ postData.viewCount||0 }}</view>
  216. <view class="postNum-li-txt">查看过</view>
  217. </view>
  218. <!-- <view class="postNum-li">
  219. <view class="postNum-li-num">34</view>
  220. <view class="postNum-li-txt">分享</view>
  221. </view> -->
  222. <view class="postNum-li">
  223. <view class="postNum-li-num">{{ postData.collectCount||0 }}</view>
  224. <view class="postNum-li-txt">收藏</view>
  225. </view>
  226. </view>
  227. <view style="font-size: 22rpx;color: rgba(102, 102, 102, 1);">职位发布时间:{{ info.createTime }}</view>
  228. </view>
  229. </view>
  230. </view>
  231. <!-- 底部操作 -->
  232. <view>
  233. <!-- <view class="btn flex justify-center" v-if="info.status == 1">
  234. <view class="btn-box bgBox flex justify-center align-center" @click="cancelProject">
  235. 取消招聘
  236. </view>
  237. </view> -->
  238. <view class="btn flex justify-center"
  239. v-if="info.status == 1 || info.status == 3 || info.status == 4 || info.status == 6"
  240. @click="updataServeType(info.postPushId, 'save')">
  241. <view class="btn-box bgBox flex justify-center align-center">
  242. 重新发布
  243. </view>
  244. </view>
  245. <view class="btn flex justify-center" v-if="info.status == 1 || info.status == 3 || info.status == 6">
  246. <view class="btn-box bgBox flex justify-center align-center"
  247. @click="updataServeType(info.postPushId, 'update')"
  248. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  249. 编辑
  250. </view>
  251. </view>
  252. <view class="btn flex justify-center" v-if="info.status == 2">
  253. <view class="btn-box flex justify-between">
  254. <!-- <view class="btn-box bgBox btn-boxs flex justify-center align-center"
  255. @click="updataServeType(info.postPushId, 'update')"
  256. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  257. 编辑
  258. </view> -->
  259. <view class="btn-box bgBox btn-boxs flex justify-center align-center"
  260. @click="closeOpenJob('close')">
  261. 关闭岗位
  262. </view>
  263. </view>
  264. </view>
  265. <view class="btn flex justify-center" v-if="info.status == 5">
  266. <view class="btn-box flex justify-between">
  267. <!-- <view class="btn-box bgBox btn-boxs flex justify-center align-center"
  268. @click="updataServeType(info.postPushId, 'update')"
  269. style="background-color: #ffffff;border: 1px solid #016bf6;color: #016bf6;">
  270. 编辑
  271. </view> -->
  272. <view class="btn-box bgBox btn-boxs flex justify-center align-center" @click="closeOpenJob('open')">
  273. 开启岗位
  274. </view>
  275. </view>
  276. </view>
  277. </view>
  278. </view>
  279. </template>
  280. <script>
  281. export default {
  282. data() {
  283. return {
  284. statusBarHeight: 0, // 状态栏高度
  285. postPushId: '',
  286. info: {}, //岗位详情
  287. postData: {
  288. chatCount: 0,
  289. collectCount: 0,
  290. viewCount: 0,
  291. },//岗位招聘数据
  292. };
  293. },
  294. onLoad(option) {
  295. // 获取状态栏高度
  296. let systemInfo = uni.getSystemInfoSync();
  297. this.statusBarHeight = systemInfo.statusBarHeight || 0;
  298. this.postPushId = option.postPushId
  299. this.getInfo();
  300. this.getPostData();
  301. },
  302. methods: {
  303. //返回上一页
  304. goBack() {
  305. // 检查页面栈,如果没有可返回的页面,则跳转到职位管理
  306. const pages = getCurrentPages()
  307. if (pages.length > 1) {
  308. uni.navigateBack()
  309. } else {
  310. // 如果没有可返回的页面,跳转到职位管理页面
  311. uni.navigateTo({
  312. url: '/pages/jobManagement/jobManagement'
  313. })
  314. }
  315. },
  316. //修改岗位
  317. updataServeType(postPushId, type) {
  318. let companyStatus = uni.getStorageSync('companyStatus')
  319. if (companyStatus == 1) {
  320. uni.showToast({
  321. title: '企业认证审核中,请审核通过后操作!',
  322. icon: 'none'
  323. })
  324. return
  325. }
  326. if (companyStatus == 3) {
  327. uni.showToast({
  328. title: '企业认证审核未通过,请重新认证!',
  329. icon: 'none'
  330. })
  331. return
  332. }
  333. uni.navigateTo({
  334. url: '/pages/my/jobPosting?postPushId=' + postPushId + '&type=' + type
  335. })
  336. },
  337. //取消招聘
  338. cancelProject() {
  339. let that = this
  340. uni.showModal({
  341. content: '确认取消该招聘?',
  342. title: '提示',
  343. confirmColor: '#016BF6',
  344. success(iet) {
  345. if (iet.confirm) {
  346. let data = {
  347. postPushId: that.postPushId
  348. }
  349. that.$Request.postT('/app/postPush/cancelPostPush', data).then(res => {
  350. if (res.code == 0) {
  351. uni.showToast({
  352. title: '取消成功',
  353. duration: 1500,
  354. complete() {
  355. that.getInfo()
  356. }
  357. })
  358. } else {
  359. uni.showToast({
  360. title: res.msg,
  361. icon: 'none'
  362. })
  363. }
  364. uni.hideLoading()
  365. })
  366. }
  367. }
  368. })
  369. },
  370. //关闭/开启岗位
  371. closeOpenJob(type) {
  372. let that = this
  373. uni.showModal({
  374. title: '提示',
  375. content: type == 'close' ? '关闭岗位后,该岗位不会再推荐给用户,是否关闭?' : '开启岗位后,该岗位会重新推荐给用户,是否开启?',
  376. complete(ret) {
  377. if (ret.confirm) {
  378. that.$Request.getT('/app/postPush/closeOrOpen', {
  379. postPushId: that.postPushId
  380. }).then(res => {
  381. if (res.code == 0) {
  382. uni.showToast({
  383. title: type == 'close' ? '已关闭' : '已开启',
  384. duration: 1500,
  385. complete() {
  386. that.getInfo()
  387. }
  388. })
  389. } else {
  390. uni.showToast({
  391. title: res.msg,
  392. icon: 'none'
  393. })
  394. }
  395. })
  396. }
  397. }
  398. })
  399. },
  400. //拉起地图导航
  401. gotoMap() {
  402. let that = this
  403. uni.openLocation({
  404. latitude: that.info.lat,
  405. longitude: that.info.lng,
  406. address: that.info.province + '' + that.info.city + '' + that.info.county + '' + that.info
  407. .address,
  408. name: that.info.address,
  409. // complete(ret) {
  410. // }
  411. })
  412. },
  413. /**
  414. * 获取岗位详情
  415. */
  416. getInfo() {
  417. this.$Request.getT("/app/postPush/selectPostPushDetails", {
  418. // userId:uni.getStorageSync('userId'),
  419. postPushId: this.postPushId
  420. }).then(res => {
  421. if (res.code == 0) {
  422. this.info = res.data
  423. }
  424. })
  425. },
  426. // 获取岗位招聘数据
  427. getPostData() {
  428. this.$Request.get('/app/postPush/postPushData', {
  429. postPushId: this.postPushId
  430. }).then(res => {
  431. if (res.code == 0) {
  432. this.postData = {
  433. ...this.postData, ...res.data
  434. }
  435. } else {
  436. this.$queue.showToast(res.msg);
  437. }
  438. });
  439. }
  440. }
  441. }
  442. </script>
  443. <style lang="scss">
  444. page {
  445. // background-color: #F2F2F7;
  446. // padding-top: 160rpx;
  447. }
  448. .warning-box {
  449. background: rgba(255, 251, 232, 1);
  450. color: rgba(237, 106, 12, 1);
  451. font-family: Microsoft YaHei UI;
  452. font-size: 22rpx;
  453. font-weight: 400;
  454. letter-spacing: 0px;
  455. padding: 20rpx 32rpx;
  456. box-sizing: border-box;
  457. text-align: left;
  458. margin-top: 20rpx;
  459. display: flex;
  460. align-items: center;
  461. .warning-txt {
  462. flex: 1;
  463. overflow: hidden;
  464. white-space: nowrap;
  465. text-overflow: ellipsis;
  466. }
  467. image {
  468. width: 32rpx;
  469. height: 32rpx;
  470. flex-shrink: 0;
  471. margin-right: 20rpx;
  472. }
  473. }
  474. .navbar-content {
  475. width: 100%;
  476. padding: 24rpx 32rpx 20rpx 32rpx;
  477. box-sizing: border-box;
  478. color: #000;
  479. font-family: DM Sans;
  480. font-size: 30rpx;
  481. font-weight: 700;
  482. line-height: 26px;
  483. display: flex;
  484. // justify-content: center;
  485. align-items: center;
  486. position: relative;
  487. z-index: 9999;
  488. .nav-left,
  489. .nav-right {
  490. width: 32.61px;
  491. height: 26px;
  492. }
  493. .nav-title {
  494. flex: 1;
  495. text-align: center;
  496. }
  497. }
  498. .status-section {
  499. display: flex;
  500. justify-content: center;
  501. align-items: center;
  502. margin: 40rpx 0rpx 40rpx 0rpx;
  503. .status-icon {
  504. margin-right: 20rpx;
  505. display: flex;
  506. align-items: center;
  507. .status-icon-img {
  508. width: 48rpx;
  509. height: 48rpx;
  510. }
  511. }
  512. .status-title {
  513. color: rgba(29, 33, 41, 1);
  514. font-family: DM Sans;
  515. font-size: 36rpx;
  516. font-weight: 500;
  517. line-height: 48rpx;
  518. letter-spacing: 0%;
  519. text-align: left;
  520. display: flex;
  521. align-items: center;
  522. }
  523. }
  524. .job-info-card {
  525. background: #ffffff;
  526. border-radius: 12rpx;
  527. margin: 0 40rpx 40rpx 40rpx;
  528. padding: 32rpx;
  529. border: 0.5px solid rgba(227, 231, 236, 1);
  530. .job-header {
  531. display: flex;
  532. justify-content: space-between;
  533. align-items: flex-start;
  534. margin-bottom: 16rpx;
  535. .job-title-section {
  536. flex: 1;
  537. .job-title {
  538. color: rgba(153, 153, 153, 1);
  539. font-family: DM Sans;
  540. font-size: 28rpx;
  541. font-weight: 400;
  542. line-height: 44rpx;
  543. letter-spacing: 0.5%;
  544. text-align: left;
  545. }
  546. }
  547. .job-status {
  548. .status-text {
  549. color: rgba(153, 153, 153, 1);
  550. font-family: DM Sans;
  551. font-size: 18rpx;
  552. font-weight: 400;
  553. line-height: 20rpx;
  554. letter-spacing: -0.5px;
  555. text-align: right;
  556. }
  557. }
  558. }
  559. .job-info {
  560. .job-details {
  561. color: rgba(153, 153, 153, 1);
  562. font-family: DM Sans;
  563. font-size: 28rpx;
  564. font-weight: 400;
  565. line-height: 36rpx;
  566. letter-spacing: 0.5%;
  567. text-align: left;
  568. }
  569. }
  570. }
  571. .failure-reason-section {
  572. margin: 0 40rpx;
  573. .section-title {
  574. color: rgba(31, 44, 55, 1);
  575. font-family: DM Sans;
  576. font-size: 28rpx;
  577. font-weight: 500;
  578. line-height: 44rpx;
  579. letter-spacing: 0.5%;
  580. text-align: left;
  581. margin-bottom: 20rpx;
  582. }
  583. .reason-list {
  584. .reason-item {
  585. margin-bottom: 16rpx;
  586. .reason-text {
  587. color: rgba(153, 153, 153, 1);
  588. font-family: DM Sans;
  589. font-size: 24rpx;
  590. font-weight: 500;
  591. line-height: 48rpx;
  592. letter-spacing: 0.5%;
  593. text-align: left;
  594. }
  595. }
  596. }
  597. }
  598. .remarks {
  599. width: 100%;
  600. margin-top: 30rpx;
  601. .remarks-box {
  602. width: 686rpx;
  603. border-radius: 24rpx;
  604. background-color: #ffffff;
  605. padding: 0rpx 20rpx;
  606. color: red;
  607. }
  608. }
  609. .job {
  610. width: 100%;
  611. margin-top: 30rpx;
  612. .job-info {
  613. width: 686rpx;
  614. height: 100%;
  615. border-radius: 24rpx;
  616. background-color: #ffffff;
  617. .job-info-c {
  618. // width: 626rpx;
  619. width: 100%;
  620. height: 100%;
  621. padding: 30rpx 20rpx;
  622. }
  623. .job-info-c-header {
  624. display: flex;
  625. justify-content: space-between;
  626. align-items: center;
  627. }
  628. .job-info-c-address {
  629. color: rgba(156, 164, 171, 1);
  630. font-family: DM Sans;
  631. font-size: 24rpx;
  632. font-weight: 400;
  633. line-height: 26rpx;
  634. letter-spacing: 0.5%;
  635. text-align: left;
  636. padding: 20rpx 0;
  637. }
  638. .job-info-c-title {
  639. color: rgba(58, 57, 67, 1);
  640. font-family: DM Sans;
  641. font-size: 48rpx;
  642. font-weight: 700;
  643. line-height: 60rpx;
  644. letter-spacing: 0px;
  645. text-align: left;
  646. }
  647. .job-info-c-label {
  648. // margin-top: 30rpx;
  649. .job-info-c-label-item {
  650. color: rgba(153, 153, 153, 1);
  651. font-family: DM Sans;
  652. font-size: 24rpx;
  653. font-weight: 400;
  654. line-height: 20rpx;
  655. letter-spacing: 0.5%;
  656. padding: 12rpx;
  657. text-align: left;
  658. margin-right: 30rpx;
  659. border-radius: 12rpx;
  660. background: rgba(198, 198, 198, 0.1);
  661. }
  662. }
  663. .job-info-c-price {
  664. color: rgba(1, 107, 246, 1);
  665. font-family: DM Sans;
  666. font-size: 32rpx;
  667. font-weight: 700;
  668. line-height: 40rpx;
  669. letter-spacing: 0.5%;
  670. text-align: right;
  671. }
  672. }
  673. }
  674. .jobRemarks {
  675. width: 100%;
  676. padding: 0 20rpx;
  677. .jobRemarks-box {
  678. width: 100%;
  679. height: 100%;
  680. background-color: #ffffff;
  681. border-radius: 24rpx;
  682. .jobRemarks-box-c {
  683. width: 100%;
  684. height: 100%;
  685. padding: 30rpx 20rpx;
  686. }
  687. .jobRemarks-box-c-title {
  688. color: rgba(1, 107, 246, 1);
  689. font-size: 32rpx;
  690. padding: 8px 12px;
  691. border-radius: 36px;
  692. font-weight: 500;
  693. background: rgba(246, 246, 246, 1);
  694. .title-icon {
  695. width: 32rpx;
  696. height: 32rpx;
  697. }
  698. }
  699. .job-description {
  700. margin-top: 20rpx;
  701. margin-bottom: 20rpx;
  702. .description-item {
  703. color: rgba(97, 110, 124, 1);
  704. font-family: DM Sans;
  705. font-size: 26rpx;
  706. font-weight: 400;
  707. line-height: 16px;
  708. letter-spacing: 0px;
  709. text-align: left;
  710. margin-bottom: 8rpx;
  711. }
  712. }
  713. .jobRemarks-box-c-label {
  714. width: 100%;
  715. margin-top: 25rpx;
  716. .jobRemarks-box-c-label-item {
  717. color: rgba(1, 107, 246, 1);
  718. font-size: 20rpx;
  719. padding: 10rpx 15rpx;
  720. background-color: #F6F6F6;
  721. border-radius: 10rpx;
  722. margin-right: 20rpx;
  723. margin-bottom: 10rpx;
  724. background: rgba(252, 233, 220, 1);
  725. }
  726. }
  727. .jobRemarks-box-c-con {
  728. width: 100%;
  729. margin-top: 25rpx;
  730. .jobRemarks-box-c-con-item {
  731. margin-bottom: 10rpx;
  732. color: #141414;
  733. font-size: 28rpx;
  734. font-weight: 500;
  735. }
  736. }
  737. .jobRemarks-box-c-line {
  738. width: 100%;
  739. border: 1rpx solid #E6E6E6;
  740. margin-top: 25rpx;
  741. }
  742. }
  743. }
  744. .enterprise {
  745. width: 100%;
  746. margin-top: 25rpx;
  747. padding: 0 20rpx;
  748. .company-intro-card {
  749. width: 100%;
  750. background-color: #ffffff;
  751. border-radius: 24rpx;
  752. padding: 12rpx 24rpx;
  753. margin-bottom: 20rpx;
  754. display: flex;
  755. align-items: center;
  756. border: 0.5px solid rgba(227, 231, 236, 1);
  757. .company-avatar {
  758. flex-shrink: 0;
  759. margin-right: 24rpx;
  760. }
  761. .company-info {
  762. flex: 1;
  763. .company-name {
  764. color: rgba(51, 51, 51, 1);
  765. font-size: 26rpx;
  766. font-weight: 600;
  767. line-height: 1.4;
  768. margin-bottom: 8rpx;
  769. }
  770. .company-details {
  771. color: rgba(153, 153, 153, 1);
  772. font-size: 24rpx;
  773. font-weight: 400;
  774. line-height: 1.4;
  775. }
  776. }
  777. .company-arrow {
  778. flex-shrink: 0;
  779. margin-left: 48rpx;
  780. }
  781. }
  782. .enterprise-box {
  783. width: 100%;
  784. background-color: #ffffff;
  785. height: 100%;
  786. padding-bottom: 25rpx;
  787. border-radius: 24rpx;
  788. .enterprise-box-c {
  789. width: 100%;
  790. height: 100%;
  791. }
  792. .enterprise-box-c-bto {
  793. width: 100%;
  794. // padding-top: 15rpx;
  795. padding-bottom: 15rpx;
  796. background-color: #EDFFFB;
  797. border-radius: 30rpx;
  798. margin-top: 20rpx;
  799. color: #016BF6;
  800. font-size: 24rpx;
  801. font-weight: 500;
  802. }
  803. }
  804. }
  805. .postNum {
  806. padding: 12rpx;
  807. }
  808. .postNum-ul {
  809. margin: 22px auto;
  810. font-family: DM Sans;
  811. }
  812. .postNum-li-num {
  813. font-size: 32rpx;
  814. font-weight: 600;
  815. line-height: 48rpx;
  816. text-align: center;
  817. }
  818. .postNum-li-txt {
  819. font-size: 26rpx;
  820. font-weight: 600;
  821. line-height: 48rpx;
  822. text-align: center;
  823. }
  824. .urgent-banner {
  825. width: 686rpx;
  826. height: 150rpx;
  827. background: linear-gradient(180deg, rgba(255, 181, 60, 1) 100%, rgba(251, 231, 185, 1) 50%);
  828. border-radius: 16rpx;
  829. display: flex;
  830. align-items: flex-start;
  831. justify-content: space-between;
  832. padding: 20rpx 30rpx;
  833. margin: 0 auto 20rpx auto;
  834. .urgent-left-section {
  835. flex: 1;
  836. display: flex;
  837. align-items: center;
  838. .urgent-star-icon-wrapper {
  839. width: 72rpx;
  840. height: 72rpx;
  841. border-radius: 50%;
  842. background: linear-gradient(90deg, rgba(255, 65, 86, 1) 0%, rgba(255, 102, 0, 0.35) 100%);
  843. margin-right: 24rpx;
  844. flex-shrink: 0;
  845. }
  846. .urgent-text-content {
  847. flex: 1;
  848. .urgent-main-title {
  849. color: rgba(255, 255, 255, 1);
  850. font-family: DM Sans;
  851. font-size: 24rpx;
  852. font-weight: 500;
  853. line-height: 32rpx;
  854. letter-spacing: 0%;
  855. text-align: left;
  856. margin-bottom: 8rpx;
  857. }
  858. .urgent-sub-description {
  859. color: rgba(255, 255, 255, 1);
  860. font-family: DM Sans;
  861. font-size: 20rpx;
  862. font-weight: 400;
  863. line-height: 26rpx;
  864. letter-spacing: 0%;
  865. text-align: left;
  866. margin-bottom: 6rpx;
  867. }
  868. .urgent-benefits {
  869. color: rgba(255, 255, 255, 1);
  870. font-family: DM Sans;
  871. font-size: 20rpx;
  872. font-weight: 400;
  873. line-height: 26rpx;
  874. letter-spacing: 0%;
  875. text-align: left;
  876. }
  877. }
  878. }
  879. .urgent-upgrade-button {
  880. background: linear-gradient(90deg, rgba(255, 65, 86, 1) 0%, rgba(255, 102, 0, 0.35) 100%);
  881. padding: 8rpx;
  882. border-radius: 8rpx;
  883. color: rgba(255, 255, 255, 1);
  884. font-family: DM Sans;
  885. font-size: 16rpx;
  886. font-weight: 400;
  887. line-height: 20rpx;
  888. letter-spacing: -0.5px;
  889. text-align: right;
  890. margin-left: 20rpx;
  891. }
  892. }
  893. .bgBox {
  894. color: #ffffff;
  895. background-color: rgba(1, 107, 246, 1);
  896. font-weight: bold;
  897. border-radius: 50rpx;
  898. }
  899. .btn {
  900. width: 100%;
  901. height: 88rpx;
  902. margin: 30rpx 0rpx;
  903. border-radius: 40rpx;
  904. .btn-boxs {
  905. width: 49% !important;
  906. }
  907. .btn-box {
  908. width: 686rpx;
  909. height: 100%;
  910. }
  911. }
  912. </style>