onlineResume.vue 28 KB

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