HomeIndex.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837
  1. <!--
  2. * @Description: 首页
  3. * @Author: 空白格
  4. * @Date: 2022-08-10 11:26:40
  5. * @LastEditors: 空白格
  6. * @LastEditTime: 2022-08-17 17:49:33
  7. * @FilePath: \veterans_client_web\src\views\Home\HomeIndex.vue
  8. * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
  9. -->
  10. <template>
  11. <div class="home app-main">
  12. <!-- 轮播图 -->
  13. <div class="home-carousel">
  14. <el-carousel :interval="5000" arrow="always" height="400px">
  15. <el-carousel-item v-for="(item, index) in bannerList" :key="index">
  16. <el-image class="image" :src="item.bannerUrl" fit="contain">
  17. <div slot="placeholder" class="image-slot">
  18. 加载图片中<span class="dot">...</span>
  19. </div>
  20. </el-image>
  21. </el-carousel-item>
  22. </el-carousel>
  23. </div>
  24. <!-- 菜单 -->
  25. <div class="home-menu" :class="{ 'home-menu-fixed': scrollTop > 473 }">
  26. <div class="home-menu-list">
  27. <div
  28. class="home-menu-list-item"
  29. :class="{ active: index === 0 }"
  30. v-for="(item, index) in menuList"
  31. :key="index"
  32. @click="jumpPage(item.path)"
  33. >
  34. {{ item.name }}
  35. </div>
  36. </div>
  37. </div>
  38. <div class="home-main" :class="{ 'home-main-top': scrollTop > 473 }">
  39. <!-- 新闻最新一条 -->
  40. <div class="home-main-latest">
  41. <div class="home-main-latest-content">
  42. <div class="hmlc-title">{{ latestNews.artTitle }}</div>
  43. <div class="hmlc-content" v-html="latestNews.artContent"></div>
  44. </div>
  45. </div>
  46. <div class="home-main-box">
  47. <!-- 新闻部分 -->
  48. <el-row :gutter="0" class="home-main-news">
  49. <el-col :xs="24" :sm="24" :md="12" :lg="12" :xl="12">
  50. <div class="home-main-news-left">
  51. <el-carousel :interval="5000" arrow="never" height="395px">
  52. <el-carousel-item
  53. v-for="(item, index) in newsList"
  54. :key="index"
  55. >
  56. <el-image
  57. class="image"
  58. :src="
  59. item.artImage ||
  60. require('@/assets/images/default-news.jpg')
  61. "
  62. fit="cover"
  63. >
  64. <div slot="placeholder" class="image-slot">
  65. 加载图片中<span class="dot">...</span>
  66. </div>
  67. <div slot="error" class="image-slot">
  68. <el-image
  69. class="image"
  70. :src="require('@/assets/images/default-news.jpg')"
  71. fit="fill"
  72. ></el-image>
  73. </div>
  74. </el-image>
  75. <div class="title">
  76. {{ item.artTitle || "" }}
  77. </div>
  78. </el-carousel-item>
  79. </el-carousel>
  80. </div>
  81. </el-col>
  82. <el-col :xs="24" :sm="24" :md="12" :lg="12" :xl="12">
  83. <div class="home-main-news-right">
  84. <el-tabs v-model="activeName" @tab-click="handleClick">
  85. <el-tab-pane label="新闻动态" name="first">
  86. <ul class="news-infomation">
  87. <li
  88. class="news-infomation-item"
  89. v-for="(item, index) in newsList"
  90. :key="index"
  91. >
  92. <div class="title">{{ item.artTitle }}</div>
  93. <div class="date">
  94. {{ parseTime(item.createTime, "{y}-{m}-{d}") }}
  95. </div>
  96. </li>
  97. </ul>
  98. </el-tab-pane>
  99. <el-tab-pane label="通知公告" name="second">
  100. <ul class="news-infomation">
  101. <li
  102. class="news-infomation-item"
  103. v-for="(item, index) in noticeList"
  104. :key="index"
  105. >
  106. <div class="title">{{ item.content }}</div>
  107. <div class="date">
  108. {{ parseTime(item.releasTime, "{y}-{m}-{d}") }}
  109. </div>
  110. </li>
  111. </ul>
  112. </el-tab-pane>
  113. </el-tabs>
  114. </div>
  115. </el-col>
  116. </el-row>
  117. <!-- 政策咨询部分 -->
  118. <el-row :gutter="0" class="home-main-policy">
  119. <el-col :span="24" class="home-main-policy-carousel">
  120. <el-carousel :interval="5000" arrow="never" height="140px">
  121. <el-carousel-item
  122. v-for="(item, index) in policyObj.bannerList"
  123. :key="index"
  124. >
  125. <el-image
  126. class="image"
  127. :src="
  128. item.bannerUrl ||
  129. require('@/assets/images/default-news.jpg')
  130. "
  131. fit="cover"
  132. >
  133. <div slot="placeholder" class="image-slot">
  134. 加载图片中<span class="dot">...</span>
  135. </div>
  136. <div slot="error" class="image-slot">
  137. <el-image
  138. class="image"
  139. :src="require('@/assets/images/default-news.jpg')"
  140. fit="cover"
  141. ></el-image>
  142. </div>
  143. </el-image>
  144. <div class="title">
  145. {{ item.artTitle || "" }}
  146. </div>
  147. </el-carousel-item>
  148. </el-carousel>
  149. </el-col>
  150. <el-col
  151. :span="24"
  152. class="home-main-policy-content"
  153. v-loading="policyObj.loading"
  154. >
  155. <el-row :gutter="54">
  156. <el-col :xs="24" :sm="24" :md="16" :lg="16" :xl="16">
  157. <div class="hmpc-left">
  158. <el-tabs
  159. v-model="policyObj.tabCur"
  160. @tab-click="handlePolicyClick"
  161. >
  162. <el-tab-pane
  163. v-for="(item, index) in policyObj.policyTypeList"
  164. :key="index"
  165. :label="item.label"
  166. :name="item.text"
  167. >
  168. <div
  169. class="hmpc-left-list"
  170. v-if="policyObj.policyList.length"
  171. >
  172. <div
  173. class="hmpc-left-list-item"
  174. v-for="(item, index) in policyObj.policyList"
  175. :key="index"
  176. >
  177. <div class="title">{{ item.artTitle }}</div>
  178. <div class="date">
  179. {{ parseTime(item.artPostTime, "{y}-{m}-{d}") }}
  180. </div>
  181. </div>
  182. </div>
  183. <el-empty description="列表为空" v-else></el-empty>
  184. </el-tab-pane>
  185. </el-tabs>
  186. </div>
  187. </el-col>
  188. <el-col :xs="24" :sm="24" :md="8" :lg="8" :xl="8">
  189. <div class="hmpc-right">
  190. <div class="hmpc-right-title">退役军人服务</div>
  191. <div class="hmpc-right-list">
  192. <div
  193. class="hmpc-right-list-btn hmpc-right-list-btn-1"
  194. ></div>
  195. <div
  196. class="hmpc-right-list-btn hmpc-right-list-btn-2"
  197. ></div>
  198. <div
  199. class="hmpc-right-list-btn hmpc-right-list-btn-3"
  200. ></div>
  201. <div
  202. class="hmpc-right-list-btn hmpc-right-list-btn-4"
  203. ></div>
  204. <div
  205. class="hmpc-right-list-btn hmpc-right-list-btn-5"
  206. ></div>
  207. </div>
  208. </div>
  209. </el-col>
  210. </el-row>
  211. </el-col>
  212. </el-row>
  213. <!-- 院校合作 -->
  214. <institutional-cooperation />
  215. <!-- 企业合作 -->
  216. <enterprise-cooperation />
  217. </div>
  218. </div>
  219. <!-- 友情链接 -->
  220. <friendship-link/>
  221. </div>
  222. </template>
  223. <script>
  224. import { parseTime } from "@/utils/utils";
  225. import {
  226. getBannerList,
  227. getNewsList,
  228. getNoticeList,
  229. getNewsData,
  230. } from "@/api/Home";
  231. import { getDictData } from "@/api/Dict";
  232. import { getPolicyData } from "@/api/PolicyAdvice";
  233. import InstitutionalCooperation from "./components/InstitutionalCooperation";
  234. import EnterpriseCooperation from "./components/EnterpriseCooperation";
  235. import FriendshipLink from "./components/FriendshipLink";
  236. export default {
  237. name: "HomeIndex",
  238. components: {
  239. InstitutionalCooperation,
  240. EnterpriseCooperation,
  241. FriendshipLink
  242. },
  243. data() {
  244. return {
  245. bannerList: [],
  246. menuList: [
  247. {
  248. name: "首页",
  249. icon: require("@/assets/images/home-menu-icon/home-menu-icon-1.svg"),
  250. },
  251. {
  252. name: "政策咨询",
  253. icon: require("@/assets/images/home-menu-icon/home-menu-icon-1.svg"),
  254. path: "/policyadvice",
  255. },
  256. {
  257. name: "招聘就业",
  258. icon: require("@/assets/images/home-menu-icon/home-menu-icon-2.svg"),
  259. path: "/recruitmentemployment",
  260. },
  261. {
  262. name: "合作企业",
  263. icon: require("@/assets/images/home-menu-icon/home-menu-icon-3.svg"),
  264. path: "/cooperativeenterprise",
  265. },
  266. {
  267. name: "合作院校",
  268. icon: require("@/assets/images/home-menu-icon/home-menu-icon-4.svg"),
  269. path: "/cooperativecolleges",
  270. },
  271. {
  272. name: "技能培训",
  273. icon: require("@/assets/images/home-menu-icon/home-menu-icon-5.svg"),
  274. path: "/skilltraining",
  275. },
  276. {
  277. name: "适应性培训",
  278. icon: require("@/assets/images/home-menu-icon/home-menu-icon-6.svg"),
  279. path: "/adaptivetraining",
  280. },
  281. {
  282. name: "学历提升",
  283. icon: require("@/assets/images/home-menu-icon/home-menu-icon-7.svg"),
  284. path: "/educationpromote",
  285. },
  286. {
  287. name: "创业指引",
  288. icon: require("@/assets/images/home-menu-icon/home-menu-icon-8.svg"),
  289. path: "/workguide",
  290. },
  291. ],
  292. latestNews: {},
  293. newsList: [],
  294. noticeList: [],
  295. activeName: "first",
  296. parseTime: parseTime,
  297. scrollTop: 0,
  298. policyObj: {
  299. loading: false,
  300. tabCur: "",
  301. policyTypeList: [],
  302. bannerList: [],
  303. policyList: [],
  304. },
  305. };
  306. },
  307. created() {
  308. this.initData();
  309. },
  310. mounted() {
  311. const that = this;
  312. window.addEventListener("scroll", that.scrollHander);
  313. },
  314. destroyed() {
  315. window.removeEventListener("scroll", this.scrollHander);
  316. },
  317. methods: {
  318. scrollHander(e) {
  319. this.scrollTop = e.srcElement.scrollingElement.scrollTop;
  320. },
  321. initData() {
  322. this.getDict();
  323. this.getBanner();
  324. this.getNews();
  325. this.getNotice();
  326. this.getPolicyBannerList();
  327. },
  328. /**
  329. * 获取字典数据
  330. * @date 2022-08-17
  331. * @returns {any}
  332. */
  333. getDict() {
  334. getDictData({ key: "policy_type" }).then((res) => {
  335. this.policyObj.policyTypeList = res?.data;
  336. this.policyObj.policyTypeList.length &&
  337. (this.policyObj.tabCur = this.policyObj.policyTypeList[0].text) &&
  338. this.getPolicyList();
  339. });
  340. },
  341. /**
  342. * 获取轮播图
  343. * @date 2022-08-10
  344. * @returns {any}
  345. */
  346. getBanner() {
  347. getBannerList({ type: 0 }).then((res) => {
  348. this.bannerList = res.data;
  349. });
  350. },
  351. /**
  352. * 获取新闻
  353. * @date 2022-08-10
  354. * @returns {any}
  355. */
  356. getNews() {
  357. getNewsList({
  358. artCategoryId: 2,
  359. pageNum: 1,
  360. pageSize: 10,
  361. }).then((res) => {
  362. this.newsList = res?.rows ?? [];
  363. if (this.newsList.length) {
  364. this.getNewsInfo(this.newsList[0].artId);
  365. }
  366. });
  367. },
  368. /**
  369. * 获取新闻详情
  370. * @date 2022-08-17
  371. * @param {any} id
  372. * @returns {any}
  373. */
  374. getNewsInfo(id) {
  375. getNewsData({ id }).then((res) => {
  376. this.latestNews = res?.data ?? [];
  377. });
  378. },
  379. /**
  380. * 获取公告
  381. * @date 2022-08-10
  382. * @returns {any}
  383. */
  384. getNotice() {
  385. getNoticeList().then((res) => {
  386. this.noticeList = res?.data ?? [];
  387. });
  388. },
  389. /**
  390. * tab点击事件
  391. * @date 2022-08-10
  392. * @param {any} tab
  393. * @returns {any}
  394. */
  395. handleClick(tab) {
  396. switch (tab.name) {
  397. case "first":
  398. this.getNews();
  399. break;
  400. case "second":
  401. this.getNotice();
  402. break;
  403. }
  404. },
  405. /**
  406. * 获取政策咨询轮播
  407. * @date 2022-08-17
  408. * @returns {any}
  409. */
  410. getPolicyBannerList() {
  411. getBannerList({ type: 2 }).then((res) => {
  412. this.policyObj.bannerList = res.data;
  413. });
  414. },
  415. /**
  416. * 获取咨询列表
  417. * @date 2022-08-17
  418. * @returns {any}
  419. */
  420. getPolicyList() {
  421. this.policyObj.loading = true;
  422. getPolicyData({
  423. pageNum: 1,
  424. pageSize: 10,
  425. artCategoryId: this.policyObj.tabCur,
  426. }).then((res) => {
  427. this.policyObj.policyList = res?.rows;
  428. this.policyObj.loading = false;
  429. });
  430. },
  431. /**
  432. * 政策咨询tab切换触发
  433. * @date 2022-08-17
  434. * @param {any} tab
  435. * @returns {any}
  436. */
  437. handlePolicyClick(tab) {
  438. this.policyObj.tabCur = tab.name;
  439. this.getPolicyList();
  440. },
  441. /**
  442. * 跳转到指定页面
  443. * @date 2022-08-11
  444. * @param {any} path
  445. * @returns {any}
  446. */
  447. jumpPage(path) {
  448. if (path) {
  449. this.$router.push(path);
  450. }
  451. },
  452. },
  453. };
  454. </script>
  455. <style lang="scss" scoped>
  456. .home {
  457. &-carousel {
  458. .image {
  459. width: 100%;
  460. height: 100%;
  461. }
  462. .image-slot {
  463. line-height: 400px;
  464. text-align: center;
  465. }
  466. :deep(.el-carousel__arrow) {
  467. border: solid 1px rgba($color: #fff, $alpha: 0.7);
  468. }
  469. :deep(.el-carousel__button) {
  470. // 指示器按钮
  471. width: 10px;
  472. height: 10px;
  473. border: none;
  474. border-radius: 50%;
  475. background-color: #fff;
  476. }
  477. :deep(.is-active .el-carousel__button) {
  478. // 指示器激活按钮
  479. width: 18px;
  480. border-radius: 10px;
  481. }
  482. }
  483. &-menu {
  484. background-color: #416050;
  485. width: 100%;
  486. line-height: 104px;
  487. &-list {
  488. width: 70%;
  489. min-width: 600px;
  490. display: flex;
  491. flex-wrap: wrap;
  492. // justify-content: space-between;
  493. margin: 0 auto;
  494. &-item {
  495. color: #fff;
  496. font-size: 22px;
  497. padding: 0 30px;
  498. cursor: pointer;
  499. &:hover {
  500. background-color: #478364;
  501. }
  502. }
  503. .active {
  504. background-color: #478364;
  505. }
  506. }
  507. }
  508. .home-menu-fixed {
  509. position: fixed;
  510. top: 0;
  511. left: 0;
  512. z-index: 111;
  513. }
  514. &-main {
  515. &-latest {
  516. background-color: #fff;
  517. &-content {
  518. width: 70%;
  519. margin: 0 auto;
  520. min-width: 600px;
  521. padding: 17px 0;
  522. .hmlc-title {
  523. font-size: 28px;
  524. color: #ff001a;
  525. text-align: center;
  526. margin-bottom: 10px;
  527. }
  528. .hmlc-content {
  529. font-size: 12px;
  530. line-height: 17px;
  531. overflow: hidden;
  532. text-overflow: ellipsis;
  533. text-overflow: -o-ellipsis-lastline;
  534. display: -webkit-box;
  535. -webkit-line-clamp: 2; /* 块元素显示的文本的行数 */
  536. line-clamp: 2;
  537. -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 ,盒子行数根据高度来计算 */
  538. overflow-wrap: break-word; /* 设置div换行 */
  539. p {
  540. img {
  541. display: none !important;
  542. }
  543. }
  544. }
  545. }
  546. }
  547. &-box {
  548. width: 70%;
  549. margin: 0 auto;
  550. min-width: 600px;
  551. }
  552. &-news {
  553. width: 100%;
  554. padding: 47px 0;
  555. border-radius: 5px;
  556. margin-top: 14px;
  557. &-left {
  558. margin-right: 30px;
  559. .image {
  560. width: 100%;
  561. height: 100%;
  562. border-radius: 2px;
  563. }
  564. .title {
  565. width: calc(100% - 26px);
  566. height: 43px;
  567. line-height: 43px;
  568. padding: 0 13px;
  569. background-color: rgba($color: #000000, $alpha: 0.6);
  570. color: #fff;
  571. white-space: nowrap;
  572. overflow: hidden;
  573. text-overflow: ellipsis;
  574. word-break: break-all;
  575. position: absolute;
  576. bottom: 0;
  577. font-size: 14px;
  578. font-weight: blod;
  579. }
  580. :deep(.el-carousel__indicators) {
  581. // 指示器
  582. left: auto;
  583. right: -20px;
  584. }
  585. :deep(.el-carousel__button) {
  586. // 指示器按钮
  587. width: 7px;
  588. height: 7px;
  589. border: none;
  590. border-radius: 50%;
  591. background-color: #fff;
  592. }
  593. :deep(.is-active .el-carousel__button) {
  594. // 指示器激活按钮
  595. width: 16px;
  596. border-radius: 10px;
  597. background-color: #f00;
  598. }
  599. }
  600. &-right {
  601. :deep(.el-tabs__item) {
  602. font-size: 20px;
  603. font-weight: 500;
  604. color: #000000;
  605. }
  606. :deep(.el-tabs__item:hover) {
  607. color: #163da5;
  608. }
  609. :deep(.el-tabs__item.is-active) {
  610. color: #163da5;
  611. }
  612. :deep(.el-tabs__active-bar) {
  613. background-color: #163da5;
  614. }
  615. .news-infomation {
  616. &-item {
  617. display: flex;
  618. justify-content: space-between;
  619. margin-bottom: 10px;
  620. font-size: 14px;
  621. color: #373737;
  622. cursor: pointer;
  623. &:hover {
  624. text-decoration: underline;
  625. }
  626. .title {
  627. width: 80%;
  628. white-space: nowrap;
  629. overflow: hidden;
  630. text-overflow: ellipsis;
  631. word-break: break-all;
  632. }
  633. .date {
  634. width: 20%;
  635. white-space: nowrap;
  636. overflow: hidden;
  637. text-overflow: ellipsis;
  638. word-break: break-all;
  639. text-align: right;
  640. color: #797979;
  641. }
  642. }
  643. }
  644. }
  645. }
  646. &-policy {
  647. padding: 40px 0;
  648. &-carousel {
  649. :deep(.el-carousel__button) {
  650. // 指示器按钮
  651. width: 7px;
  652. height: 7px;
  653. border: none;
  654. border-radius: 50%;
  655. background-color: #fff;
  656. }
  657. :deep(.is-active .el-carousel__button) {
  658. // 指示器激活按钮
  659. width: 16px;
  660. border-radius: 10px;
  661. }
  662. .image {
  663. width: 100%;
  664. height: 100%;
  665. }
  666. }
  667. &-content {
  668. margin-top: 50px;
  669. .hmpc-left {
  670. margin-bottom: 20px;
  671. :deep(.el-tabs__item) {
  672. font-size: 20px;
  673. font-weight: 500;
  674. color: #666666;
  675. }
  676. :deep(.el-tabs__item:hover) {
  677. color: #163da5;
  678. }
  679. :deep(.el-tabs__item.is-active) {
  680. color: #163da5;
  681. }
  682. :deep(.el-tabs__active-bar) {
  683. background-color: #163da5;
  684. }
  685. &-list {
  686. padding: 10px 0;
  687. &-item {
  688. display: flex;
  689. justify-content: space-between;
  690. margin-bottom: 10px;
  691. font-size: 14px;
  692. color: #373737;
  693. cursor: pointer;
  694. &:hover {
  695. text-decoration: underline;
  696. }
  697. .title {
  698. width: 80%;
  699. white-space: nowrap;
  700. overflow: hidden;
  701. text-overflow: ellipsis;
  702. word-break: break-all;
  703. }
  704. .date {
  705. width: 20%;
  706. white-space: nowrap;
  707. overflow: hidden;
  708. text-overflow: ellipsis;
  709. word-break: break-all;
  710. text-align: right;
  711. color: #797979;
  712. }
  713. }
  714. }
  715. }
  716. .hmpc-right {
  717. margin-bottom: 20px;
  718. &-title {
  719. font-size: 26px;
  720. color: #163da5;
  721. margin-bottom: 10px;
  722. }
  723. &-list {
  724. &-btn {
  725. width: 100%;
  726. text-align: center;
  727. height: 47px;
  728. line-height: 47px;
  729. border-radius: 5px;
  730. cursor: pointer;
  731. font-size: 18px;
  732. margin-bottom: 7px;
  733. position: relative;
  734. &:hover {
  735. opacity: 0.8;
  736. }
  737. &::before {
  738. content: "";
  739. display: inline-block;
  740. width: 25px;
  741. height: 25px;
  742. background-size: 100% 100%;
  743. background-repeat: no-repeat;
  744. background-position: center center;
  745. vertical-align: middle;
  746. position: absolute;
  747. left: calc(45% - 35px);
  748. top: 50%;
  749. margin-top: -12.5px;
  750. }
  751. &::after {
  752. position: absolute;
  753. left: 45%;
  754. }
  755. }
  756. &-btn-1 {
  757. background-image: linear-gradient(
  758. 137deg,
  759. #c5fff6 0%,
  760. #5debd8 100%
  761. );
  762. color: #028170;
  763. &::before {
  764. background-image: url("./../../assets/images/zhengcezixun.svg");
  765. }
  766. &::after {
  767. content: "政策咨询";
  768. }
  769. }
  770. &-btn-2 {
  771. background-image: linear-gradient(
  772. 137deg,
  773. #fff6e3 0%,
  774. #f7b6a3 100%
  775. );
  776. color: #ff6253;
  777. &::before {
  778. background-image: url("./../../assets/images/woyaojiuye.svg");
  779. }
  780. &::after {
  781. content: "我要就业";
  782. }
  783. }
  784. &-btn-3 {
  785. background-image: linear-gradient(
  786. 137deg,
  787. #fff6e3 0%,
  788. #fae08a 100%
  789. );
  790. color: #ff8d34;
  791. &::before {
  792. background-image: url("./../../assets/images/woyaoxuejineng.svg");
  793. }
  794. &::after {
  795. content: "我要学技能";
  796. }
  797. }
  798. &-btn-4 {
  799. background-image: linear-gradient(
  800. 137deg,
  801. #eee3ff 0%,
  802. #d3b9ff 100%
  803. );
  804. color: #8454d3;
  805. &::before {
  806. background-image: url("./../../assets/images/woxiangshengxueli.svg");
  807. }
  808. &::after {
  809. content: "我要升学历";
  810. }
  811. }
  812. &-btn-5 {
  813. background-image: linear-gradient(
  814. 137deg,
  815. #c9e9ff 0%,
  816. #95d2fc 100%
  817. );
  818. color: #1b74b4;
  819. &::before {
  820. background-image: url("./../../assets/images/woxiangchuangye.svg");
  821. }
  822. &::after {
  823. content: "我想创业";
  824. }
  825. }
  826. }
  827. }
  828. }
  829. }
  830. }
  831. .home-main-top {
  832. margin-top: 104px;
  833. }
  834. }
  835. </style>