resumeDetail.vue 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004
  1. <template>
  2. <view class="resume-detail" :style="{ paddingTop: (12 + statusBarHeight + 88 - 60) + 'px' }">
  3. <!-- 固定顶部导航栏 -->
  4. <view class="fixed-nav" :style="{ paddingTop: (12 + statusBarHeight) + 'px' }">
  5. <view class="navbar">
  6. <view class="navbar-content">
  7. <view class="navbar-left" @click="goBack">
  8. <u-icon name="arrow-leftward" size="38" color="#333"></u-icon>
  9. </view>
  10. <view class="navbar-title">简历详情</view>
  11. <view class="navbar-right"></view>
  12. </view>
  13. </view>
  14. </view>
  15. <!-- 用户信息区域 -->
  16. <view class="user-profile">
  17. <view class="profile-header">
  18. <view class="name-section">
  19. <view class="user-name">{{resumeData.name || '李世明'}}</view>
  20. <view class="status-tag">热门搜索</view>
  21. </view>
  22. <view class="avatar-container">
  23. <image :src="resumeData.avatar || '../../static/logo.png'" class="user-avatar" mode="aspectFill"></image>
  24. <view class="notification-badge"></view>
  25. </view>
  26. </view>
  27. <view class="current-job">
  28. <image src="../../static/images/aixin.svg" class="job-icon" mode="aspectFit"></image>
  29. <text class="job-text">{{resumeData.currentJob || '世迪贸易-亚马逊运营'}}</text>
  30. </view>
  31. <view class="availability">
  32. <text class="status-text">{{resumeData.status || '离职&随时到岗位'}}</text>
  33. </view>
  34. <view class="summary-info">
  35. <view class="summary-item">
  36. <text class="summary-text">{{resumeData.experience || '4年'}}</text>
  37. </view>
  38. <view class="summary-item">
  39. <text class="summary-text">{{resumeData.education || '本科'}}</text>
  40. </view>
  41. <view class="summary-item">
  42. <text class="summary-text">{{resumeData.age || '25岁'}}</text>
  43. </view>
  44. </view>
  45. </view>
  46. <!-- 内容区域 -->
  47. <view class="content-section">
  48. <!-- 个人优势 -->
  49. <view class="section-item">
  50. <view class="advantage-content">
  51. {{resumeData.advantage || '这是求职者的个人优势这是求职者的个人优势这是求职者的个人优势这是求职者的个人优势这是求职者的个人优势这是求职者的个人优势这是求职者的个人优。(最多展示三行)'}}
  52. </view>
  53. </view>
  54. <!-- 附件简历 -->
  55. <view class="attachment-section">
  56. <view class="attachment-btn">
  57. <image src="../../static/images/fujian.svg" class="attachment-icon" mode="aspectFit"></image>
  58. <text class="attachment-text">已上传附件简历</text>
  59. </view>
  60. </view>
  61. <!-- 求职期望 -->
  62. <view class="expectation-card">
  63. <view class="card-header">
  64. <text class="header-title">求职期望</text>
  65. </view>
  66. <view class="job-expectation">
  67. <text class="expectation-text">亚马逊店铺运营, 深圳</text>
  68. <text class="salary-range">24-36K</text>
  69. </view>
  70. </view>
  71. <view class="jobRemarks-box-c-title flex align-center">
  72. <image src="/static/images/index/ins.png" class="title-icon"></image>
  73. <text>工作经历</text>
  74. </view>
  75. <!-- 工作经历 -->
  76. <view class="work-experience-section">
  77. <view class="section-header">
  78. <view class="section-title">
  79. <text class="required-mark">*</text>
  80. <text class="required-title">工作经历</text>
  81. <view class="section-desc">请填写专属跨境行业的工作经验</view>
  82. </view>
  83. <view class="edit-icon">
  84. <image src="../../static/images/index/Combined-Shape.svg" style="width: 48rpx;height: 48rpx;" mode=""></image>
  85. </view>
  86. </view>
  87. <view class="experience-list">
  88. <view class="experience-item">
  89. <view class="company-logo">
  90. <image src="../../static/images/index/changsha.svg" class="logo-img" mode="aspectFit"></image>
  91. </view>
  92. <view class="experience-content">
  93. <view class="job-info-row">
  94. <view class="job-title">资深亚马逊运营</view>
  95. <view class="job-department">运营部</view>
  96. </view>
  97. <view class="company-period-row">
  98. <view class="company-name">深圳市世迪贸易科技有限公司</view>
  99. <view class="work-period">2019.02-至今</view>
  100. </view>
  101. <view class="job-description">
  102. 负责Amazon英国、欧洲站、制定推广与销售计划,达成团队要求的销售业绩;做好数据的统计分析工作,收集、分析市场信息,竞争对手状况,并根据产品销售与排名变化,及时制定和调整产品的销售...
  103. </view>
  104. <view class="skill-tags">
  105. <view class="tag">精品铺货</view>
  106. <view class="tag">独立站</view>
  107. <view class="tag">3C数码</view>
  108. <view class="tag">品类运营</view>
  109. </view>
  110. </view>
  111. </view>
  112. <view class="experience-item">
  113. <view class="company-logo">
  114. <image src="../../static/images/index/changsha.svg" class="logo-img" mode="aspectFit"></image>
  115. </view>
  116. <view class="experience-content">
  117. <view class="job-info-row">
  118. <view class="job-title">高级ebay运营</view>
  119. <view class="job-department">运营部</view>
  120. </view>
  121. <view class="company-period-row">
  122. <view class="company-name">深圳市世迪贸易科技有限公司</view>
  123. <view class="work-period">2018.01-2019.01</view>
  124. </view>
  125. <view class="job-description">
  126. 负责Amazon英国、欧洲站、制定推广与销售计划,达成团队要求的销售业绩;做好数据的统计分析工作,收集、分析市场信息,竞争对手状况,并根据产品销售与排名变化,及时制定和调整产品的销售....
  127. </view>
  128. <view class="skill-tags">
  129. <view class="tag">精品铺货</view>
  130. <view class="tag">独立站</view>
  131. <view class="tag">3C数码</view>
  132. <view class="tag">品类运营</view>
  133. </view>
  134. </view>
  135. </view>
  136. <view class="experience-item">
  137. <view class="company-logo">
  138. <image src="../../static/images/index/changsha.svg" class="logo-img" mode="aspectFit"></image>
  139. </view>
  140. <view class="experience-content">
  141. <view class="job-info-row">
  142. <view class="job-title">高级产品开发经理</view>
  143. <view class="job-department">产品开发部</view>
  144. </view>
  145. <view class="company-period-row">
  146. <view class="company-name">深圳虾皮科技有限公司</view>
  147. <view class="work-period">2023.04 -至今</view>
  148. </view>
  149. <view class="job-description">
  150. 这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容这是简历填写的内容...
  151. </view>
  152. <view class="skill-tags">
  153. <view class="tag">技能标签</view>
  154. <view class="tag">技能标签</view>
  155. <view class="tag">技能标签</view>
  156. <view class="tag">技能标签</view>
  157. <view class="tag">技能标签</view>
  158. <view class="tag">技能标签</view>
  159. </view>
  160. </view>
  161. </view>
  162. </view>
  163. </view>
  164. <!-- 教育经历 -->
  165. <view class="education-section">
  166. <view class="section-header">
  167. <view class="section-title">
  168. <text>教育经历</text>
  169. </view>
  170. <view class="edit-icon">
  171. <image src="../../static/images/index/Combined-Shape.svg" style="width: 48rpx;height: 48rpx;" mode=""></image>
  172. </view>
  173. </view>
  174. <view class="education-list">
  175. <view class="education-item">
  176. <view class="school-logo">
  177. <image src="../../static/images/index/wuhan.svg" class="logo-img" mode="aspectFit"></image>
  178. </view>
  179. <view class="education-content">
  180. <view class="school-name">武汉工程大学</view>
  181. <view class="degree-info">硕士 • 高分子化学与物理 • 2014-2017</view>
  182. <view class="education-description">
  183. 这是简历填写的内容这是简历填写的内容内容这是简历填写的内是简历填写的内容这是简历填写的内容...
  184. </view>
  185. </view>
  186. </view>
  187. <view class="education-item">
  188. <view class="school-logo">
  189. <image src="../../static/images/index/wuhan.svg" class="logo-img" mode="aspectFit"></image>
  190. </view>
  191. <view class="education-content">
  192. <view class="school-name">武汉工程大学</view>
  193. <view class="degree-info">硕士 • 高分子化学与物理 • 2014-2017</view>
  194. <view class="education-description">
  195. 这是简历填写的内容这是简历填写的内容这是简的内容这是的内容这是简历填写的内容这是简历填写的内容...
  196. </view>
  197. </view>
  198. </view>
  199. </view>
  200. </view>
  201. <!-- 资格证书 -->
  202. <view class="certificates-section">
  203. <view class="section-header">
  204. <view class="section-title">
  205. <text>资格证书</text>
  206. </view>
  207. </view>
  208. <view class="certificates-grid">
  209. <view class="certificate-tag" v-for="cert in resumeData.certificates || defaultCertificates" :key="cert">{{cert}}</view>
  210. </view>
  211. </view>
  212. <!-- 专业技能 -->
  213. <view class="skills-section">
  214. <view class="section-header">
  215. <view class="section-title">
  216. <text>专业技能</text>
  217. </view>
  218. </view>
  219. <view class="skills-content">
  220. {{resumeData.skills || '熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练使用熟练'}}
  221. </view>
  222. </view>
  223. </view>
  224. <!-- 底部操作按钮 -->
  225. <view class="bottom-actions">
  226. <view class="action-btn contact-btn" @click="contactCandidate">
  227. <text>立即联系</text>
  228. </view>
  229. </view>
  230. </view>
  231. </template>
  232. <script>
  233. export default {
  234. data() {
  235. return {
  236. statusBarHeight: 0, // 状态栏高度
  237. resumeId: '',
  238. resumeData: {},
  239. defaultExpectations: [
  240. {
  241. title: '亚马逊运营总监',
  242. salary: '30-40K',
  243. type: '不限',
  244. location: '深圳'
  245. },
  246. {
  247. title: 'TikTok运营总监',
  248. salary: '30-40K',
  249. type: '精品铺货',
  250. location: '深圳'
  251. }
  252. ],
  253. defaultWorkExperience: [
  254. {
  255. position: '资深亚马逊运营',
  256. department: '运营部',
  257. company: '深圳市世迪贸易科技有限公司',
  258. period: '2019.02-至今',
  259. description: '负责Amazon英国、欧洲站、制定推广与销售计划,达成团队要求的销售业绩;做好数据的统计分析工作,收集、分析市场信息,竞争对手状况,并根据产品销售与排名变化,及时制定和调整产品的销售...',
  260. skills: ['精品铺货', '独立站', '3C数码', '品类运营']
  261. }
  262. ],
  263. defaultEducation: [
  264. {
  265. school: '武汉工程大学',
  266. degree: '硕士',
  267. major: '高分子化学与物理',
  268. period: '2014-2017',
  269. description: '这是简历填写的内容这是简历填写的内容内容这是简历填写的内是简历填写的内容这是简历填写的内容...'
  270. }
  271. ],
  272. defaultSkills: ['Design & Creative', 'Wireframing UX', 'Figma', 'UI Design', 'Prototype', 'Adobe XD', 'UX Design', 'Front End'],
  273. defaultCertificates: ['大学英语六级', '计算机职业资格', '初级会计师', '中级会计师', '高级会计师', '注册会计师']
  274. }
  275. },
  276. onLoad(options) {
  277. // 获取状态栏高度
  278. let systemInfo = uni.getSystemInfoSync();
  279. this.statusBarHeight = systemInfo.statusBarHeight || 0;
  280. if (options.resumeId) {
  281. this.resumeId = options.resumeId;
  282. this.loadResumeData();
  283. }
  284. },
  285. methods: {
  286. goBack() {
  287. uni.navigateBack();
  288. },
  289. loadResumeData() {
  290. // 这里应该根据 resumeId 加载简历数据
  291. // 暂时使用默认数据
  292. console.log('加载简历数据:', this.resumeId);
  293. },
  294. contactCandidate() {
  295. uni.showToast({
  296. title: '功能开发中',
  297. icon: 'none'
  298. });
  299. }
  300. }
  301. }
  302. </script>
  303. <style lang="scss" scoped>
  304. .resume-detail {
  305. min-height: 100vh;
  306. padding-bottom: 120rpx;
  307. // padding-top 已改为动态计算,在模板中通过 :style 设置
  308. }
  309. .fixed-nav {
  310. position: fixed;
  311. top: 0;
  312. left: 0;
  313. right: 0;
  314. z-index: 9999;
  315. background-color: #ffffff;
  316. padding: 0 32rpx;
  317. // padding-top 已改为动态计算,在模板中通过 :style 设置
  318. }
  319. // 顶部导航栏
  320. .navbar {
  321. background: #fff;
  322. height: 88rpx;
  323. padding: 0 8rpx;
  324. // padding: 80rpx 0 40rpx 0; // 已移除,因为现在是固定导航栏
  325. .navbar-content {
  326. display: flex;
  327. align-items: center;
  328. justify-content: space-between;
  329. padding: 0 30rpx;
  330. height: 60rpx;
  331. .navbar-left {
  332. width: 60rpx;
  333. height: 60rpx;
  334. display: flex;
  335. align-items: center;
  336. justify-content: center;
  337. }
  338. .navbar-title {
  339. color: rgba(23, 23, 37, 1);
  340. font-family: DM Sans;
  341. font-size: 38rpx;
  342. font-weight: 700;
  343. line-height: 52rpx;
  344. letter-spacing: 0%;
  345. text-align: center;
  346. }
  347. .navbar-right {
  348. width: 60rpx;
  349. height: 60rpx;
  350. }
  351. }
  352. }
  353. // 用户信息区域
  354. .user-profile {
  355. background: #fff;
  356. padding: 30rpx;
  357. .profile-header {
  358. display: flex;
  359. justify-content: space-between;
  360. align-items: flex-start;
  361. margin-bottom: 20rpx;
  362. .name-section {
  363. flex: 1;
  364. display: flex;
  365. align-items: center;
  366. justify-content: flex-start;
  367. gap: 12rpx;
  368. .user-name {
  369. color: rgba(58, 57, 67, 1);
  370. font-family: DM Sans;
  371. font-size: 48rpx;
  372. font-weight: 700;
  373. line-height: 60rpx;
  374. letter-spacing: 0px;
  375. text-align: left;
  376. margin-right: 12rpx;
  377. }
  378. .status-tag {
  379. background: rgba(252, 233, 220, 1);
  380. color: rgba(1, 107, 246, 1);
  381. font-family: DM Sans;
  382. font-size: 18rpx;
  383. padding: 4rpx 8rpx;
  384. border-radius: 8rpx;
  385. display: inline-block;
  386. }
  387. }
  388. .avatar-container {
  389. position: relative;
  390. .user-avatar {
  391. width: 72rpx;
  392. height: 72rpx;
  393. border-radius: 50%;
  394. }
  395. .notification-badge {
  396. position: absolute;
  397. top: 0;
  398. right: 0;
  399. width: 20rpx;
  400. height: 20rpx;
  401. background: #FF3B30;
  402. border-radius: 50%;
  403. border: 2rpx solid #fff;
  404. }
  405. }
  406. }
  407. .current-job {
  408. display: flex;
  409. align-items: center;
  410. gap: 8rpx;
  411. margin-bottom: 12rpx;
  412. .job-icon {
  413. width: 36rpx;
  414. height: 36rpx;
  415. }
  416. .job-text {
  417. color: rgba(156, 164, 171, 1);
  418. font-family: DM Sans;
  419. font-size: 24rpx;
  420. font-weight: 400;
  421. line-height: 40rpx;
  422. letter-spacing: 0.5%;
  423. text-align: left;
  424. }
  425. }
  426. .availability {
  427. display: flex;
  428. align-items: center;
  429. gap: 8rpx;
  430. margin-bottom: 12rpx;
  431. .status-text {
  432. color: rgba(156, 164, 171, 1);
  433. font-family: DM Sans;
  434. font-size: 24rpx;
  435. font-weight: 400;
  436. line-height: 32rpx;
  437. letter-spacing: 0%;
  438. text-align: left;
  439. }
  440. }
  441. .summary-info {
  442. display: flex;
  443. gap: 12rpx;
  444. margin-right: 12rpx;
  445. .summary-item {
  446. .summary-text {
  447. color: rgba(153, 153, 153, 1);
  448. font-family: DM Sans;
  449. font-size: 20rpx;
  450. font-weight: 400;
  451. line-height: 20rpx;
  452. letter-spacing: -0.5px;
  453. text-align: left;
  454. padding: 12rpx;
  455. border-radius: 8rpx;
  456. background: rgba(198, 198, 198, 0.1);
  457. }
  458. }
  459. }
  460. }
  461. // 内容区域
  462. .content-section {
  463. padding: 0 30rpx 30rpx 30rpx;
  464. .section-item {
  465. background: #fff;
  466. border-radius: 12rpx;
  467. padding: 30rpx;
  468. margin-bottom: 20rpx;
  469. box-sizing: border-box;
  470. .advantage-content {
  471. color: rgba(97, 110, 124, 1);
  472. font-family: DM Sans;
  473. font-size: 26rpx;
  474. font-weight: 400;
  475. line-height: 32rpx;
  476. letter-spacing: 0px;
  477. text-align: left;
  478. }
  479. }
  480. .attachment-section {
  481. margin-bottom: 20rpx;
  482. .attachment-btn {
  483. background: rgba(246, 246, 246, 1);
  484. border-radius: 8rpx;
  485. padding: 20rpx;
  486. display: flex;
  487. align-items: center;
  488. gap: 12rpx;
  489. .attachment-icon {
  490. width: 32rpx;
  491. height: 32rpx;
  492. }
  493. .attachment-text {
  494. color: rgba(1, 107, 246, 1);
  495. font-family: DM Sans;
  496. font-size: 24rpx;
  497. font-weight: 400;
  498. line-height: 32rpx;
  499. letter-spacing: 0px;
  500. text-align: left;
  501. }
  502. }
  503. }
  504. // 求职期望卡片样式
  505. .expectation-card {
  506. background: #ffffff;
  507. border-radius: 12rpx;
  508. padding: 30rpx;
  509. margin-bottom: 20rpx;
  510. box-sizing: border-box;
  511. .card-header {
  512. margin-bottom: 20rpx;
  513. .header-title {
  514. color: rgba(34, 37, 42, 1);
  515. font-family: DM Sans;
  516. font-size: 32rpx;
  517. font-weight: 400;
  518. line-height: 48rpx;
  519. letter-spacing: 0px;
  520. text-align: left;
  521. }
  522. }
  523. .job-expectation {
  524. display: flex;
  525. justify-content: space-between;
  526. align-items: center;
  527. .expectation-text {
  528. color: rgba(153, 153, 153, 1);
  529. font-family: DM Sans;
  530. font-size: 24rpx;
  531. font-weight: 500;
  532. line-height: 48rpx;
  533. letter-spacing: 0.5%;
  534. text-align: left;
  535. }
  536. .salary-range {
  537. color: rgba(1, 107, 246, 1);
  538. font-family: DM Sans;
  539. font-size: 32rpx;
  540. font-weight: 700;
  541. line-height: 40rpx;
  542. letter-spacing: 0.5%;
  543. text-align: right;
  544. }
  545. }
  546. }
  547. // 工作经历部分样式
  548. .work-experience-section {
  549. background: #fff;
  550. border-radius: 12px;
  551. padding: 30rpx;
  552. margin-bottom: 20rpx;
  553. box-sizing: border-box;
  554. border: 1px solid rgba(1, 107, 246, 1);
  555. .section-header {
  556. display: flex;
  557. align-items: center;
  558. justify-content: space-between;
  559. margin-bottom: 30rpx;
  560. .section-title {
  561. display: flex;
  562. align-items: center;
  563. .required-mark {
  564. color: #FF3B30;
  565. font-size: 18px;
  566. font-weight: 600;
  567. margin-right: 8rpx;
  568. }
  569. .required-title {
  570. font-family: DM Sans;
  571. font-size: 28rpx;
  572. font-weight: 700;
  573. line-height: 52rpx;
  574. letter-spacing: 0%;
  575. text-align: left;
  576. margin-right: 12rpx;
  577. }
  578. text {
  579. color: rgba(23, 23, 37, 1);
  580. font-family: Inter;
  581. font-size: 20px;
  582. font-weight: 600;
  583. line-height: 24px;
  584. }
  585. }
  586. .section-desc {
  587. color: rgba(1, 107, 246, 1);
  588. font-family: DM Sans;
  589. font-size: 20rpx;
  590. font-weight: 400;
  591. line-height: 44rpx;
  592. letter-spacing: 0%;
  593. text-align: left;
  594. }
  595. }
  596. .experience-list {
  597. .experience-item {
  598. display: flex;
  599. padding: 24rpx 0;
  600. border-bottom: 1rpx solid #F0F0F0;
  601. &:last-child {
  602. border-bottom: none;
  603. }
  604. .company-logo {
  605. width: 90rpx;
  606. height: 90rpx;
  607. margin-right: 24rpx;
  608. flex-shrink: 0;
  609. border-radius: 8px;
  610. background: rgba(246, 246, 246, 1);
  611. .logo-img {
  612. width: 100%;
  613. height: 100%;
  614. border-radius: 8rpx;
  615. }
  616. }
  617. .experience-content {
  618. flex: 1;
  619. .job-info-row {
  620. display: flex;
  621. align-items: center;
  622. margin-bottom: 4rpx;
  623. }
  624. .job-title {
  625. color: rgba(23, 23, 37, 1);
  626. font-family: DM Sans;
  627. font-size: 28rpx;
  628. font-weight: 400;
  629. line-height: 44rpx;
  630. letter-spacing: 0%;
  631. text-align: left;
  632. margin-right: 12rpx;
  633. }
  634. .job-department {
  635. color: rgba(120, 130, 138, 1);
  636. font-family: DM Sans;
  637. font-size: 20rpx;
  638. font-weight: 400;
  639. line-height: 44rpx;
  640. letter-spacing: 0%;
  641. text-align: left;
  642. }
  643. .company-period-row {
  644. display: flex;
  645. align-items: center;
  646. justify-content: flex-start;
  647. margin-bottom: 12rpx;
  648. gap: 12rpx;
  649. padding: 12rpx 0;
  650. }
  651. .company-name {
  652. color: rgba(120, 130, 138, 1);
  653. font-family: DM Sans;
  654. font-size: 20rpx;
  655. font-weight: 400;
  656. line-height: 10px;
  657. letter-spacing: 0.5%;
  658. text-align: left;
  659. }
  660. .work-period {
  661. color: rgba(120, 130, 138, 1);
  662. font-family: DM Sans;
  663. font-size: 20rpx;
  664. font-weight: 400;
  665. line-height: 10px;
  666. letter-spacing: 0.5%;
  667. text-align: left;
  668. }
  669. .job-description {
  670. color: rgba(120, 130, 138, 1);
  671. font-family: DM Sans;
  672. font-size: 16rpx;
  673. font-weight: 400;
  674. line-height: 24rpx;
  675. letter-spacing: 0%;
  676. text-align: left;
  677. }
  678. .skill-tags {
  679. display: flex;
  680. flex-wrap: wrap;
  681. gap: 8rpx;
  682. margin-top: 12rpx;
  683. .tag {
  684. background: rgba(153, 153, 153, 0.1);
  685. border-radius: 12rpx;
  686. padding: 6rpx;
  687. color: rgba(102, 102, 102, 1);
  688. font-family: DM Sans;
  689. font-size: 16rpx;
  690. font-weight: 400;
  691. letter-spacing: 0%;
  692. text-align: left;
  693. }
  694. }
  695. }
  696. }
  697. }
  698. }
  699. // 教育经历部分样式
  700. .education-section {
  701. background: #fff;
  702. border-radius: 12px;
  703. padding: 30rpx;
  704. margin-bottom: 20rpx;
  705. box-sizing: border-box;
  706. border: 1px solid rgba(227, 231, 236, 1);
  707. .section-header {
  708. display: flex;
  709. align-items: center;
  710. justify-content: space-between;
  711. margin-bottom: 30rpx;
  712. .section-title {
  713. text {
  714. color: rgba(23, 23, 37, 1);
  715. font-family: Inter;
  716. font-size: 20px;
  717. font-weight: 600;
  718. line-height: 24px;
  719. }
  720. }
  721. }
  722. .education-list {
  723. .education-item {
  724. display: flex;
  725. padding: 24rpx 0;
  726. border-bottom: 1rpx solid #F0F0F0;
  727. &:last-child {
  728. border-bottom: none;
  729. }
  730. .school-logo {
  731. width: 90rpx;
  732. height: 90rpx;
  733. margin-right: 24rpx;
  734. flex-shrink: 0;
  735. border-radius: 8px;
  736. background: rgba(246, 246, 246, 1);
  737. .logo-img {
  738. width: 100%;
  739. height: 100%;
  740. border-radius: 8rpx;
  741. }
  742. }
  743. .education-content {
  744. flex: 1;
  745. .school-name {
  746. color: rgba(23, 23, 37, 1);
  747. font-family: DM Sans;
  748. font-size: 18px;
  749. font-weight: 400;
  750. line-height: 22px;
  751. letter-spacing: 0%;
  752. text-align: left;
  753. }
  754. .degree-info {
  755. color: rgba(120, 130, 138, 1);
  756. font-family: DM Sans;
  757. font-size: 20rpx;
  758. font-weight: 500;
  759. line-height: 24px;
  760. letter-spacing: 0%;
  761. text-align: left;
  762. padding: 12rpx 0;
  763. }
  764. .education-description {
  765. color: rgba(120, 130, 138, 1);
  766. font-family: DM Sans;
  767. font-size: 20rpx;
  768. font-weight: 400;
  769. line-height: 16px;
  770. letter-spacing: 0%;
  771. text-align: left;
  772. }
  773. }
  774. }
  775. }
  776. }
  777. // 资格证书部分样式
  778. .certificates-section {
  779. background: #fff;
  780. border-radius: 12px;
  781. padding: 30rpx;
  782. margin-bottom: 20rpx;
  783. box-sizing: border-box;
  784. .section-header {
  785. margin-bottom: 30rpx;
  786. .section-title {
  787. text {
  788. color: rgba(34, 37, 42, 1);
  789. font-family: DM Sans;
  790. font-size: 32rpx;
  791. font-weight: 400;
  792. line-height: 48rpx;
  793. letter-spacing: 0px;
  794. text-align: left;
  795. }
  796. }
  797. }
  798. .certificates-grid {
  799. display: flex;
  800. flex-wrap: wrap;
  801. gap: 12rpx;
  802. .certificate-tag {
  803. padding: 8rpx 16rpx;
  804. color: rgba(1, 107, 246, 1);
  805. font-family: DM Sans;
  806. font-size: 16rpx;
  807. font-weight: 400;
  808. line-height: 20rpx;
  809. letter-spacing: -0.5px;
  810. text-align: left;
  811. border-radius: 8rpx;
  812. background: rgba(252, 233, 220, 1);
  813. }
  814. }
  815. }
  816. // 专业技能部分样式
  817. .skills-section {
  818. background: #fff;
  819. border-radius: 12px;
  820. padding: 30rpx;
  821. margin-bottom: 20rpx;
  822. box-sizing: border-box;
  823. .section-header {
  824. margin-bottom: 30rpx;
  825. .section-title {
  826. text {
  827. color: rgba(34, 37, 42, 1);
  828. font-family: DM Sans;
  829. font-size: 32rpx;
  830. font-weight: 400;
  831. line-height: 48rpx;
  832. letter-spacing: 0px;
  833. text-align: left;
  834. }
  835. }
  836. }
  837. .skills-content {
  838. color: rgba(97, 110, 124, 1);
  839. font-family: DM Sans;
  840. font-size: 24rpx;
  841. font-weight: 400;
  842. line-height: 32rpx;
  843. letter-spacing: 0px;
  844. text-align: left;
  845. }
  846. }
  847. // 工作经历标题样式
  848. .jobRemarks-box-c-title {
  849. color: rgba(1, 107, 246, 1);
  850. font-size: 32rpx;
  851. padding: 8px 12px;
  852. border-radius: 36px;
  853. font-weight: 500;
  854. background: rgba(246, 246, 246, 1);
  855. display: flex;
  856. align-items: center;
  857. margin-bottom: 20rpx;
  858. .title-icon {
  859. width: 32rpx;
  860. height: 32rpx;
  861. margin-right: 12rpx;
  862. }
  863. text {
  864. color: rgba(1, 107, 246, 1);
  865. font-family: DM Sans;
  866. font-size: 32rpx;
  867. font-weight: 500;
  868. line-height: 48rpx;
  869. letter-spacing: 0px;
  870. text-align: left;
  871. }
  872. }
  873. }
  874. // 底部操作按钮
  875. .bottom-actions {
  876. position: fixed;
  877. bottom: 0;
  878. left: 0;
  879. right: 0;
  880. background: #fff;
  881. padding: 30rpx;
  882. box-shadow: 0 -2rpx 10rpx rgba(0,0,0,0.1);
  883. .action-btn {
  884. width: 100%;
  885. height: 88rpx;
  886. border-radius: 44rpx;
  887. display: flex;
  888. align-items: center;
  889. justify-content: center;
  890. font-size: 32rpx;
  891. font-weight: 500;
  892. }
  893. .contact-btn {
  894. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  895. color: #fff;
  896. }
  897. }
  898. </style>