pay.vue 22 KB

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