Cognize.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  1. <script setup lang="ts">
  2. import CpmdHeader from '@/components/CpmdHeader.vue';
  3. import CpmdFooter from '@/components/CpmdFooter.vue'
  4. import { onMounted, onUnmounted, ref } from 'vue'
  5. import pdf3 from '../assets/cognize/goNogo.pdf'
  6. import pdf4 from '../assets/cognize/dtc.pdf'
  7. import { useRoute, useRouter } from 'vue-router';
  8. import { queryCognizeDetailApi } from '@/api/plan';
  9. import { userInfoStore } from '@/stores';
  10. const router = useRouter()
  11. const route = useRoute()
  12. const flag = ref<string>('')
  13. const planName = ref<string>('')
  14. const planId = ref<string>('')
  15. const type = ref<string>('')
  16. const cognizeDetail = ref<any>({})
  17. const isPass = ref<boolean>(false)
  18. // 查看PDF
  19. //刚进入页面就将高度设置为页面需要的
  20. onMounted(() => {
  21. //获取参数传过来的ID
  22. //获取参数传过来的planId
  23. flag.value = route.params.flag as string;
  24. planId.value = route.params.planId as string
  25. planName.value = route.params.planName as string
  26. type.value = route.params.type as string
  27. if (flag.value == 'ETB01') {
  28. isPass.value = userInfoStore().isPassETB01
  29. }
  30. if (flag.value == 'FDOT') {
  31. isPass.value = userInfoStore().isPassDot
  32. }
  33. if (flag.value == 'EMOTION_STROOP') {
  34. isPass.value = userInfoStore().isStroop
  35. }
  36. //根据flag 查询认知任务详情
  37. //进到界面开始轮询
  38. if (type.value == '1') {
  39. queryScaleDetail()
  40. }
  41. })
  42. const queryScaleDetail = async () => {
  43. //根据flag查询量表详情
  44. let res: any = await queryCognizeDetailApi(flag.value)
  45. cognizeDetail.value = res.data
  46. }
  47. const centerDialogVisible = ref<boolean>(false)
  48. const viewPDF = () => {
  49. centerDialogVisible.value = true
  50. }
  51. // vue3+vite 实现动态加载图片
  52. const requireImg = () => {
  53. // return new URL(`${path}`, import.meta.url).href
  54. // ../assets/cognize/goNogo.pdf
  55. //判断当前flag是多少
  56. //如果是
  57. //修改文本
  58. let name = 'yd'
  59. if (flag.value == 'EMOTION_STROOP') {
  60. name = 'Stroop'
  61. }
  62. if (flag.value == 'ETB01') {
  63. name = 'rl'
  64. }
  65. if (flag.value == 'FDOT') {
  66. name = 'dt'
  67. }
  68. return new URL(`../assets/cognize/${name}.pdf`, import.meta.url).href
  69. }
  70. const requireVideo = () => {
  71. // return new URL(`${path}`, import.meta.url).href
  72. // ../assets/cognize/goNogo.pdf
  73. //判断当前flag是多少
  74. //如果是
  75. //修改文本
  76. let name = 'Stroop'
  77. if (flag.value == 'EMOTION_STROOP') {
  78. name = 'Stroop'
  79. }
  80. return new URL(`../assets/cognize/${name}.mp4`, import.meta.url).href
  81. }
  82. const startCog = (val: number) => {
  83. // router.push(
  84. // {
  85. // name: 'shapeIntuitionRandom',
  86. // params: { planId: planId.value, planName: planName.value, flag: flag.value, flagName: cognizeDetail.value.name, formalTest: val }
  87. // })
  88. //更改到 跳转到人脸表情这里的认知任务
  89. if (flag.value == 'ETB01') {
  90. router.push(
  91. {
  92. name: 'ETBexperimentNew',
  93. params: { planId: planId.value, planName: planName.value, flag: flag.value, flagName: cognizeDetail.value.name, formalTest: val }
  94. })
  95. }
  96. if (flag.value == 'FDOT') {
  97. router.push(
  98. {
  99. name: 'cognizeFaceDot',
  100. params: { planId: planId.value, planName: planName.value, flag: flag.value, flagName: cognizeDetail.value.name, formalTest: val }
  101. })
  102. }
  103. if (flag.value == 'EMOTION_STROOP') {
  104. router.push(
  105. {
  106. name: 'Stroop',
  107. params: { planId: planId.value, planName: planName.value, flag: flag.value, flagName: cognizeDetail.value.name, formalTest: val }
  108. })
  109. }
  110. // if (num.value == '3') {
  111. // router.push({ name: 'cognizeGoNoGo', params: { currentType: val } })
  112. // } else if (num.value == '4') {
  113. // router.push({ name: 'cognizeFaceDot', params: { currentType: val } })
  114. // }
  115. }
  116. //界面销毁函数
  117. //轮旋切换页面的方法
  118. //退出页面销毁 方法
  119. onUnmounted(() => {
  120. })
  121. </script>
  122. <template>
  123. <div class="home_header_out" ref="homeHeaderOut">
  124. <div class=" home_header_inner">
  125. <CpmdHeader />
  126. <div style="text-align: center;">
  127. <!-- <img class="xlts_img" style="margin-top:20px" src="../assets/home/other_text.png" /> -->
  128. </div>
  129. </div>
  130. <div class="leave_message">
  131. <!-- <img class="img" src="../assets/zs/community.png" alt=""> -->
  132. <div class="font_blue"> 测试介绍 </div>
  133. </div>
  134. <div class="kply">
  135. <div class="kply_inner">
  136. <div
  137. style="box-shadow: 0px 4px 32px 0px rgba(0,0,0,0.17);box-sizing: border-box;padding: 20px;border-radius: 48px;">
  138. <!-- <div class="cognize_title">
  139. {{ cognizeDetail.name }}
  140. </div> -->
  141. <div class="cognize_img_out">
  142. <img src="../assets/kepu/task_active.png" width=" 100px" height="100px"
  143. style="margin-right: 20px;" />
  144. <!-- <img src="../assets/cognize/c2.png" v-show="num == '4'" width="100px"
  145. style="margin-right: 20px;" /> -->
  146. <div class="cognize_des">
  147. <div
  148. style="display: flex; justify-content: space-between; align-items: center;margin-bottom: 10px;">
  149. <span class="cognize_title">
  150. {{ cognizeDetail.name }}
  151. </span>
  152. <div class="scale_button">
  153. <div class="scale_button_inner" v-show="!isPass">
  154. <div class="scale_button_self" @click="startCog(0)">练习测试<img
  155. style="height: 12px;margin-left: 8px;" src="../assets/zs/jian.png"
  156. alt="">
  157. </div>
  158. </div>
  159. <div :span="12" class="scale_button_inner" v-show="isPass">
  160. <div class="scale_button_self" @click="startCog(1)">开始测试 <img
  161. style="height: 12px;margin-left: 8px;" src="../assets/zs/jian.png"
  162. alt=""></div>
  163. </div>
  164. </div>
  165. </div>
  166. <div class="cognize_js">
  167. <span class="cpjs">测评介绍:</span>
  168. <span class="cpjs_detail">{{ cognizeDetail.testExplain }}</span>
  169. </div>
  170. <div class="cpll">
  171. <span class="cpll_title">理论:</span>
  172. <span class="cpll_detail">{{ cognizeDetail.theory }}</span>
  173. </div>
  174. <div class="czsm">
  175. <span class="czsm_title">操作说明:</span>
  176. <span class="czsm_detail">
  177. {{ cognizeDetail.description }}
  178. {{ cognizeDetail.testDescription }}
  179. </span>
  180. </div>
  181. </div>
  182. </div>
  183. <!-- <div class="cpll">
  184. <span class="cpll_title">理论:</span>
  185. <span class="cpll_detail">{{ cognizeDetail.theory }}</span>
  186. </div>
  187. <div class="czsm">
  188. <span class="czsm_title">操作说明:</span>
  189. <span class="czsm_detail">
  190. {{ cognizeDetail.description }}
  191. {{ cognizeDetail.testDescription }}
  192. </span>
  193. </div> -->
  194. <!-- <div class="cognize_title2"> {{ cognizeDetail.name }}演示视频:</div> -->
  195. <!-- <div class="cognize_video">
  196. <video width="60%" height="100%" controls style="border-radius: 40px;">
  197. <source src="../assets/cognize/yd.mp4" type="video/mp4" v-if="flag != 'EMOTION_STROOP'">
  198. <source src="../assets/cognize/Stroop.mp4" v-if="flag == 'EMOTION_STROOP'" type="video/mp4">
  199. 您的浏览器不支持 video 标签。
  200. </video>
  201. </div> -->
  202. <!-- <div class="scale_button">
  203. <div class="scale_button_inner" v-show="!isPass">
  204. <div class="scale_button_self" @click="startCog(0)">练习测试
  205. </div>
  206. </div>
  207. <div :span="12" class="scale_button_inner" v-show="isPass">
  208. <div class="scale_button_self" @click="startCog(1)">开始测试</div>
  209. </div>
  210. </div> -->
  211. <!--
  212. <div class="pdf_op">
  213. <div class="pdf_sc">
  214. <img @click="viewPDF" src="../assets/cognize/pdf.png" width="30px"
  215. style="margin-right:10px" />
  216. <div @click="viewPDF">测试手册</div>
  217. </div>
  218. <div class="pdf_sc">
  219. </div>
  220. </div> -->
  221. </div>
  222. <div class="cognize_yanshi_out">
  223. <img class="img_jiao" src="../assets/cognize/jiao.png" alt="">
  224. <div class="cognize_yanshi">
  225. <div class="cognize_video">
  226. <!-- poster="../assets/cognize/bg_ty.png" -->
  227. <video width="100%" height="100%" controls style="border-radius: 40px;padding-right: 1px;">
  228. <source src="../assets/cognize/rl.mp4" type="video/mp4" v-if="flag == 'ETB01'">
  229. <!-- <source src="../assets/cognize/Stroop.mp4" type="video/mp4"> -->
  230. <!-- <source :src="requireVideo" type="video/mp4"> -->
  231. <!-- <source src="../assets/cognize/Stroop.mp4" type="video/mp4"> -->
  232. <source src="../assets/cognize/Stroop.mp4" v-if="flag == 'EMOTION_STROOP'"
  233. type="video/mp4">
  234. <source src="../assets/cognize/dt.mp4" v-if="flag == 'FDOT'" type="video/mp4">
  235. <!-- <source src="movie.ogg" type="video/ogg"> -->
  236. 您的浏览器不支持 video 标签。
  237. </video>
  238. </div>
  239. <div class="cognize_pdf">
  240. <div class="pdf_icon">
  241. <img style="width: 30%;cursor: pointer;" @click="viewPDF"
  242. src="../assets/cognize/pdf_new.png" alt="">
  243. </div>
  244. </div>
  245. <!-- <div>111111</div> -->
  246. </div>
  247. <div class="congnize_des_new">
  248. <div class="cognize_des_vd"><span class="cognize_des_line">{{ cognizeDetail.name }}演示视频</span>
  249. </div>
  250. <div class="cognize_des_sc">
  251. <span class="cognize_des_line">{{ cognizeDetail.name }}测试手册</span>
  252. <span class="view" @click="viewPDF">预览</span>
  253. </div>
  254. </div>
  255. </div>
  256. <div class="reference_cla" v-if="cognizeDetail.reference">
  257. <div class="reference_title">参考文献:</div>
  258. <div class="reference_detail" v-for="item, index in cognizeDetail.reference.split('//')"
  259. :key="item">
  260. <div>[{{ index + 1 }}] </div>
  261. <div> {{ item }}</div>
  262. </div>
  263. </div>
  264. </div>
  265. </div>
  266. <el-dialog v-model="centerDialogVisible" title="预览" width="90%" top="2vh" center>
  267. <span>
  268. <!-- :src="requireImg('../assets/cognize/goNogo.pdf')" -->
  269. <!-- <embed width="100%" height=500px v-show="num == '3'" src='../assets/cognize/goNogo.pdf'>
  270. </embed> -->
  271. <!-- <embed width="100%" height=500px v-show="num == '3'" :src="pdf3">
  272. </embed> -->
  273. <embed width="100%" height=700px :src="requireImg()">
  274. </embed>
  275. <!-- <embed width="100%" height=500px v-show="num == '4'" :src="pdf4">
  276. </embed> -->
  277. </span>
  278. </el-dialog>
  279. </div>
  280. <!-- <div class="cognize_real_out">
  281. 我是认知任务
  282. </div> -->
  283. <div class="home_footer_out">
  284. <CpmdFooter />
  285. </div>
  286. </template>
  287. <style lang="scss" scoped>
  288. .home_footer_out {
  289. width: 100%;
  290. background-color: #000000;
  291. }
  292. .cognize_yanshi_out {
  293. margin-top: 50px;
  294. box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.17);
  295. position: relative;
  296. height: 100%;
  297. border-radius: 40px;
  298. padding: 20px;
  299. display: flex;
  300. flex-direction: column;
  301. background-color: #ffffff;
  302. }
  303. .img_jiao {
  304. position: absolute;
  305. height: 30px;
  306. top: -30px;
  307. left: 60px;
  308. }
  309. .cognize_yanshi {
  310. position: relative;
  311. height: 100%;
  312. border-radius: 40px;
  313. display: flex;
  314. justify-content: space-between;
  315. }
  316. .congnize_des_new {
  317. display: flex;
  318. margin-top: 20px;
  319. .cognize_des_vd {
  320. width: 50%;
  321. text-align: center;
  322. color: #333333;
  323. font-weight: 700;
  324. .cognize_des_line {
  325. padding-bottom: 5px;
  326. background: url(../assets/zs/plan_line.png) no-repeat;
  327. background-size: contain;
  328. background-position: bottom
  329. }
  330. }
  331. .cognize_des_sc {
  332. text-align: center;
  333. width: 50%;
  334. color: #333333;
  335. font-weight: 700;
  336. .cognize_des_line {
  337. padding-bottom: 5px;
  338. background: url(../assets/zs/plan_line.png) no-repeat;
  339. background-size: contain;
  340. background-position: bottom
  341. }
  342. .view {
  343. color: #008CFF;
  344. font-size: 12px;
  345. margin-left: 4px;
  346. cursor: pointer;
  347. }
  348. }
  349. }
  350. .cognize_real_out {
  351. background-color: #b64d4d;
  352. color: #41348a;
  353. position: fixed;
  354. z-index: 100;
  355. top: 0;
  356. width: 100vw;
  357. height: 100vh;
  358. }
  359. .home_header_out {
  360. // scroll-snap-align: start;
  361. padding-bottom: 60px;
  362. width: 100%;
  363. min-width: 1200px;
  364. // background-image: url('../assets/home/bg_ty.png');
  365. background-repeat: no-repeat;
  366. background-size: contain;
  367. // background-color: #B3F1DA; //估计是需要动态
  368. .home_header_inner {
  369. min-height: 1;
  370. left: 0;
  371. right: 0;
  372. margin: auto;
  373. width: 100%;
  374. .xlts_img {
  375. height: 40px;
  376. }
  377. }
  378. .leave_message {
  379. left: 0;
  380. right: 0;
  381. margin: auto;
  382. width: 860px;
  383. margin-bottom: 20px;
  384. margin-top: 20px;
  385. .font_blue {
  386. position: relative;
  387. color: #00DE7E;
  388. font-weight: 700;
  389. font-size: 22px;
  390. font-family: 'Rammetto One-Regular';
  391. padding-top: 30px;
  392. z-index: 10;
  393. background: url(../assets/zs/introduction_testing.png) no-repeat;
  394. background-size: auto 50px;
  395. }
  396. }
  397. .kply {
  398. width: 100%;
  399. margin-top: 20px;
  400. .kply_inner {
  401. min-height: 500px;
  402. left: 0;
  403. right: 0;
  404. margin: auto;
  405. width: 860px;
  406. // padding: 20px 20px;
  407. background-color: #ffffff;
  408. border-radius: 40px;
  409. .reference_cla {
  410. margin-top: 10px;
  411. .reference_title {
  412. font-size: 14px;
  413. color: #a9a9a9;
  414. line-height: 24px;
  415. }
  416. .reference_detail {
  417. font-size: 14px;
  418. color: #a9a9a9;
  419. line-height: 24px;
  420. letter-spacing: 3px;
  421. display: flex;
  422. }
  423. }
  424. .cpll {
  425. margin-top: 10px;
  426. background-color: #F6F6F6;
  427. padding: 20px;
  428. .cpll_title {
  429. font-size: 14px;
  430. color: #333333;
  431. font-weight: 700;
  432. }
  433. .cpll_detail {
  434. color: #818996;
  435. font-size: 14px;
  436. letter-spacing: 3px;
  437. line-height: 24px;
  438. }
  439. }
  440. .czsm {
  441. margin-top: 10px;
  442. background-color: #F6F6F6;
  443. padding: 20px;
  444. .czsm_title {
  445. color: #333333;
  446. font-weight: 700;
  447. line-height: 24px;
  448. font-size: 14px;
  449. }
  450. .czsm_detail {
  451. color: #818996;
  452. line-height: 24px;
  453. font-size: 14px;
  454. letter-spacing: 3px;
  455. }
  456. }
  457. .cognize_title {
  458. font-size: 20px;
  459. letter-spacing: 3px;
  460. font-weight: 700;
  461. display: inline-flex;
  462. // margin-bottom: 10px;
  463. background-image: url('../assets/zs/plan_line.png');
  464. background-repeat: no-repeat;
  465. background-size: contain;
  466. padding-bottom: 10px;
  467. background-position: bottom;
  468. }
  469. .cognize_title2 {
  470. font-size: 20px;
  471. letter-spacing: 3px;
  472. // font-weight: 700;
  473. margin-top: 10px;
  474. margin-bottom: 20px;
  475. }
  476. .cognize_js {
  477. background-color: #F6F6F6;
  478. padding: 20px;
  479. border-radius: 5px;
  480. color: #333333;
  481. }
  482. .cognize_img_out {
  483. display: flex;
  484. justify-content: center;
  485. .cognize_des {
  486. letter-spacing: 2px;
  487. line-height: 20px;
  488. font-size: 16px;
  489. .cpjs {
  490. color: #333333;
  491. font-weight: 700;
  492. font-size: 14px;
  493. line-height: 24px;
  494. }
  495. .cpjs_detail {
  496. color: #818996;
  497. line-height: 24px;
  498. letter-spacing: 3px;
  499. font-size: 14px;
  500. }
  501. }
  502. }
  503. .cognize_video_out {
  504. display: flex;
  505. width: 48%;
  506. height: 100%;
  507. flex-direction: column;
  508. // justify-content: center;
  509. }
  510. .cognize_video {
  511. display: flex;
  512. width: 48%;
  513. height: 100%;
  514. flex-direction: column;
  515. // justify-content: center;
  516. }
  517. .cognize_pdf {
  518. width: 48%;
  519. background-color: #D9D9D9;
  520. border-radius: 28px;
  521. .pdf_icon {
  522. display: flex;
  523. width: 100%;
  524. height: 100%;
  525. background-color: #D9D9D9;
  526. border-radius: 28px;
  527. display: flex;
  528. justify-content: center;
  529. align-items: center;
  530. }
  531. }
  532. .pdf_op {
  533. margin-top: 20px;
  534. display: flex;
  535. justify-content: space-between;
  536. align-items: center;
  537. .pdf_sc {
  538. display: flex;
  539. // justify-content: space-between;
  540. align-items: center;
  541. cursor: pointer;
  542. .view {
  543. margin-left: 10px;
  544. color: #3E43FF;
  545. }
  546. }
  547. }
  548. .scale_button {
  549. display: flex;
  550. // justify-content: space-around;
  551. .scale_button_inner {
  552. text-align: center;
  553. display: flex;
  554. justify-content: center;
  555. .scale_button_self {
  556. border-radius: 5px;
  557. border: 1px solid #48D68E;
  558. color: #ffffff;
  559. background-color: #3B3B3B;
  560. margin-right: 20px;
  561. padding: 10px 40px;
  562. cursor: pointer;
  563. display: flex;
  564. align-items: center;
  565. font-size: 16px;
  566. }
  567. }
  568. }
  569. }
  570. }
  571. }
  572. .home_mid {
  573. // background-color: blanchedalmond;
  574. width: 1200px;
  575. left: 0;
  576. right: 0;
  577. margin: auto;
  578. margin-top: 40px;
  579. // position: relative;
  580. .kepu_title {
  581. text-align: center;
  582. font-size: 50px;
  583. color: #111111;
  584. line-height: 95px;
  585. // width: 100%;
  586. // left: 0;
  587. // right: 0;
  588. // margin: auto
  589. }
  590. .kepu_title_sub {
  591. margin-top: 30px;
  592. text-align: center;
  593. font-size: 28px;
  594. color: #48D68E;
  595. line-height: 26px;
  596. }
  597. .man1_group {
  598. margin-top: 60px;
  599. height: 100%;
  600. display: flex;
  601. .man1 {
  602. position: relative;
  603. width: 327px;
  604. // height: 100%;
  605. // height: 100%
  606. .man1_img {
  607. position: absolute;
  608. bottom: 0;
  609. /* bottom: 0px; */
  610. /* height: auto; */
  611. width: 100%;
  612. left: 100px
  613. }
  614. }
  615. .des {
  616. border: #48D68E solid 5px;
  617. border-radius: 40px;
  618. padding: 20px;
  619. letter-spacing: 6px;
  620. flex: 1;
  621. .des_inner {
  622. border: 1px dashed #48D68E;
  623. border-radius: 40px;
  624. padding-bottom: 40px;
  625. padding-top: 30px;
  626. padding-left: 100px;
  627. padding-right: 20px;
  628. letter-spacing: 6px;
  629. font-weight: normal;
  630. font-size: 24px;
  631. color: #333333;
  632. line-height: 40px;
  633. }
  634. }
  635. }
  636. .man2_group {
  637. margin-top: 60px;
  638. height: 100%;
  639. display: flex;
  640. .man2 {
  641. position: relative;
  642. width: 327px;
  643. // height: 100%;
  644. // height: 100%
  645. .man2_img {
  646. position: absolute;
  647. bottom: 0;
  648. /* bottom: 0px; */
  649. /* height: auto; */
  650. width: 100%;
  651. left: -100px
  652. }
  653. }
  654. .des2 {
  655. border: #48D68E solid 5px;
  656. border-radius: 40px;
  657. padding: 20px;
  658. letter-spacing: 6px;
  659. flex: 1;
  660. .des2_inner {
  661. border: 1px dashed #48D68E;
  662. border-radius: 40px;
  663. padding-bottom: 40px;
  664. padding-top: 30px;
  665. padding-left: 20px;
  666. padding-right: 100px;
  667. letter-spacing: 6px;
  668. font-weight: normal;
  669. font-size: 24px;
  670. color: #333333;
  671. line-height: 40px;
  672. }
  673. }
  674. }
  675. .get_more {
  676. text-align: center;
  677. img {
  678. width: 300px;
  679. margin-top: 60px;
  680. margin-bottom: 60px;
  681. }
  682. }
  683. }
  684. // .home_footer_out {
  685. // width: 100%;
  686. // background-color: #000000;
  687. // }</style>