TestRecord.vue 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866
  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 { getUnread, planNumGet } from '../utils/test'
  6. //持久化设置 菜单状态
  7. import { menuStatusStore, userInfoStore } from '@/stores'
  8. // import router from '@/router';
  9. import { useRouter } from 'vue-router';
  10. import { getDataApi } from '@/api/plan';
  11. import { userPlanApi, userPlanDetailApi } from '@/api/home';
  12. const router = useRouter()
  13. const menuStatus = menuStatusStore();
  14. menuStatus.saveActiveIndex('5')
  15. const userInfo = userInfoStore()
  16. //分页设计
  17. //当前页
  18. //是哪一页
  19. const pageNum = ref<number>(1)
  20. //一页显示多少条
  21. const pageSize = ref<number>(5)
  22. //数据总共多少条
  23. const totol = ref<number>(0)
  24. //显示是否是在加载中
  25. const isLoading = ref<boolean>(false)
  26. //是否显示noMore
  27. const noMore = ref<boolean>(false)
  28. //页面返回的数据
  29. const list = ref<any>([])
  30. //获取数据报
  31. const getData = async () => {
  32. //判断总条数是否大于当前页面的数据
  33. //先判断
  34. if (totol.value == list.value.length) {
  35. //显示noMore
  36. if (totol.value == 0) {
  37. noMore.value = false;
  38. } else {
  39. noMore.value = true;
  40. }
  41. return
  42. }
  43. //先是加载中的话就不加载了
  44. if (isLoading.value) {
  45. return
  46. }
  47. isLoading.value = true;
  48. //参数构造
  49. pageNum.value++
  50. //到这里就可以显示加载中
  51. let res = await initData()
  52. isLoading.value = false;
  53. }
  54. const initData = async () => {
  55. //判断用户登录没有
  56. if (!userInfo.token) {
  57. return
  58. }
  59. let params = {
  60. pageNum: pageNum.value,
  61. pageSize: pageSize.value,
  62. userNo: userInfo.userInfo.userNo
  63. }
  64. let res: any = await getDataApi(params)
  65. if (res.code == 200) {
  66. //在这里需要将已经测试完成的测试计划下的---的题目都标记出来
  67. // list.value.push(...res.data)
  68. if (res.data.content.length > 0) {
  69. let listInit = []
  70. listInit.push(...res.data.content)
  71. // list.value.push(...res.data.content)
  72. //在这里进行循环--将需要显示的报告查询出来放入数组
  73. for (let i = 0; i < listInit.length; i++) {
  74. // list.value[i].listLin = []
  75. let params = {
  76. planId: listInit[i].id,
  77. userNo: userInfo.userInfo.userNo
  78. }
  79. let temp: any = await userPlanDetailApi(params)
  80. //在这里循环//且类型等于0 量表的 得到量表的列表
  81. let scaleList = []
  82. for (let j = 0; j < temp.data.length; j++) {
  83. if (temp.data[j].isDisplayed == '1' && temp.data[j].contentType == '0') {
  84. // if (temp.data[j].flag != '20210617140713') {
  85. scaleList.push(temp.data[j])
  86. // }
  87. }
  88. }
  89. listInit[i].scaleList = scaleList;
  90. //在这里循环 //且类型为等于1的量表 得到量表列表
  91. let taskList = []
  92. for (let j = 0; j < temp.data.length; j++) {
  93. if (temp.data[j].isDisplayed == '1' && temp.data[j].contentType == '1') {
  94. taskList.push(temp.data[j])
  95. }
  96. }
  97. listInit[i].taskList = taskList;
  98. // list.value[i].list = temp.data
  99. // list.value[i].listLin = []
  100. }
  101. list.value.push(...listInit)
  102. totol.value = res.data.totalElements
  103. } else {
  104. list.value = []
  105. totol.value = 0
  106. // totalElements
  107. }
  108. }
  109. }
  110. //先判断总条数是否等于 当前页面的参数
  111. //如果等于的话--显示nomore
  112. //如果总条数大于 当前页面的总条数就显示loading
  113. //刚进入页面就将高度设置为页面需要的
  114. onMounted(() => {
  115. initData()
  116. if (userInfo.token) {
  117. getUnread()
  118. planNumGet()
  119. }
  120. //进到界面开始轮询
  121. })
  122. //界面销毁函数
  123. //跳转页面切换页面
  124. const viewReport = (val: any) => {
  125. router.push({ name: 'report', params: { planId: val.planId, flag: val.flag, name: val.name } })
  126. // router.push({ name: 'report', params: { planId: 'a', flag: 'b' } })
  127. // router.push({ name: 'report' })
  128. // router.push({ name: 'plan' })
  129. }
  130. //轮旋切换页面的方法
  131. //退出页面销毁 方法
  132. onUnmounted(() => {
  133. })
  134. </script>
  135. <template>
  136. <div class="home_header_out">
  137. <div class=" home_header_inner">
  138. <CpmdHeader />
  139. <div style="text-align: center;">
  140. <!-- <img class="xlts_img" style="margin-top:40px" src="../assets/home/other_text.png" /> -->
  141. </div>
  142. </div>
  143. <div class="leave_message">
  144. <!-- <img class="img" src="../assets/zs/community.png" alt=""> -->
  145. <div class="font_blue"> 测试记录 </div>
  146. </div>
  147. <div class="kply">
  148. <div class="kply_inner">
  149. <!-- -->
  150. <div>
  151. <!-- <div style="width: 1200px;margin-left:32px; box-shadow: 0px 4px 32px 0px rgba(0,0,0,0.17);"
  152. v-show="list.length == 0">
  153. <img width="400px" src="../assets/planNo.png">
  154. </div> -->
  155. <div style="box-shadow: 0px 4px 32px 0px rgba(0,0,0,0.17);width: 1200px;margin-left:32px"
  156. v-show="list.length == 0">
  157. <div style="padding:10% 20%;display: flex;justify-content: center ;">
  158. <!-- <img width="100%" src="../assets/planNo.png"> -->
  159. <img width="400px" src=" ../assets/planNo.png">
  160. </div>
  161. </div>
  162. <div class="infinite-list-wrapper" style="overflow: auto" v-infinite-scroll="getData">
  163. <div>
  164. <div v-for="item in list" class='record_zt'>
  165. <div class="test_record">
  166. <span class="test_plan_name">{{ item.planName }}
  167. <span class="unread_status" style="" v-show="item.isRead == 0">未读</span>
  168. <span class="read_status" v-show="item.isRead == 1">已读</span>
  169. </span>
  170. </div>
  171. <div class="test_time">
  172. <span>测试时间:{{ item.taskStartTime }}~{{ item.taskEndTime }}</span>
  173. </div>
  174. <div class="content_out">
  175. <div class="content_inner">
  176. <div class="task_out">
  177. <div class="content_title">1.问答测试</div>
  178. <div class="task_inner">
  179. <div class="task_inner_single" v-for="subItem in item.scaleList"
  180. :key="subItem.id">
  181. <div class="task_inner_one">
  182. <img style="width: 80px;height: 80px"
  183. src="../assets/kepu/xlwht_active.png" alt="">
  184. <div class="task_content">
  185. <div class="title">{{ subItem.name }}</div>
  186. <!-- <div class="des" v-show="subItem.isCompleted != '1'">预计用时:{{
  187. subItem.expectTime }}</div> -->
  188. <div class="des" v-show="subItem.isCompleted == '1'">实际用时:{{
  189. subItem.useTime }}</div>
  190. <!-- <div class="noCompleted" v-show="subItem.isCompleted != '1'">
  191. <div class='noCompleted_status'> 未完成</div>
  192. </div> -->
  193. <div class="isCompleted"
  194. v-show="subItem.isCompleted == '1'">
  195. <div @click="viewReport(subItem)"
  196. class='isCompleted_status'> 查看报告 <img
  197. style='height: 12px;margin-left:4px'
  198. src='../assets/zs/jian.png' /></div>
  199. </div>
  200. <!-- {{ subItem.isRequired }} -->
  201. <div class="isMust" v-show="subItem.isRequired == '1'">必做
  202. </div>
  203. <div class="isChoosable" v-show="subItem.isRequired == '0'">
  204. 选做
  205. </div>
  206. </div>
  207. </div>
  208. </div>
  209. </div>
  210. </div>
  211. <div class="task_out">
  212. <div class="content_title">2.认知评估</div>
  213. <div class="task_inner">
  214. <div class="task_inner_single" v-for="subItem in item.taskList">
  215. <div class="task_inner_one">
  216. <img style="width: 80px;height: 80px"
  217. src="../assets/kepu/task_active.png" alt="">
  218. <div class="task_content">
  219. <div class="title">{{ subItem.name }}</div>
  220. <!-- <div class="des" v-show="subItem.isCompleted != '1'">预计用时:{{
  221. subItem.expectTime }}</div> -->
  222. <div class="des" v-show="subItem.isCompleted == '1'">实际用时:{{
  223. subItem.useTime }}</div>
  224. <!-- <div class="noCompleted" v-show="subItem.isCompleted != '1'">
  225. <div class='noCompleted_status'> 未完成</div>
  226. </div> -->
  227. <div class="isCompleted"
  228. v-show="subItem.isCompleted == '1'">
  229. <div @click="viewReport(subItem)"
  230. class='isCompleted_status'> 查看报告 <img
  231. style='height: 12px;margin-left:4px'
  232. src='../assets/zs/jian.png' /></div>
  233. </div>
  234. <div class="isMust" v-show="subItem.isRequired == '1'">必做
  235. </div>
  236. <div class="isChoosable" v-show="subItem.isRequired == '0'">
  237. 选做
  238. </div>
  239. </div>
  240. </div>
  241. </div>
  242. </div>
  243. </div>
  244. </div>
  245. <div></div>
  246. </div>
  247. <!-- <div class="record_out">
  248. <div class="record_score">
  249. <span>得&nbsp;&nbsp;&nbsp;&nbsp;分:</span>
  250. <span>{{ item.score }}</span>
  251. </div>
  252. <div class="record_result">
  253. <span>结&nbsp;&nbsp;&nbsp;&nbsp;论:</span>
  254. </div>
  255. </div> -->
  256. </div>
  257. </div>
  258. <div style="text-align: center;margin-top:20px" v-show="isLoading">努力加载中...</div>
  259. <div style="text-align: center;;margin-top:20px" v-show="noMore">没有更多了</div>
  260. </div>
  261. <!-- 测试记录列表 -->
  262. </div>
  263. </div>
  264. </div>
  265. </div>
  266. <div class="home_footer_out">
  267. <CpmdFooter />
  268. </div>
  269. </template>
  270. <style lang="scss" scoped>
  271. .home_footer_out {
  272. width: 100%;
  273. background-color: #000000;
  274. }
  275. .home_header_out {
  276. // scroll-snap-align: start;
  277. // position: relative;
  278. padding-bottom: 60px;
  279. width: 100%;
  280. min-width: 1200px;
  281. // background-image: url('../assets/home/bg_ty.png');
  282. background-repeat: no-repeat;
  283. background-size: contain;
  284. flex: 1;
  285. // background-color: #B3F1DA; //估计是需要动态
  286. //获取屏幕宽度home_header_out 这个div的宽度--然后宽度*1000再除1920即为当前div的宽度
  287. .home_header_inner {
  288. min-height: 1;
  289. left: 0;
  290. right: 0;
  291. margin: auto;
  292. // height: 100px;
  293. width: 100%;
  294. .xlts_img {
  295. height: 60px;
  296. }
  297. }
  298. .leave_message {
  299. left: 0;
  300. right: 0;
  301. margin: auto;
  302. width: 1200px;
  303. margin-bottom: 20px;
  304. margin-top: 20px;
  305. .font_blue {
  306. position: relative;
  307. color: #00DE7E;
  308. font-weight: 700;
  309. font-size: 22px;
  310. font-family: 'Rammetto One-Regular';
  311. padding-top: 30px;
  312. z-index: 10;
  313. background: url(../assets/zs/test_record1.png) no-repeat;
  314. background-size: auto 50px;
  315. }
  316. }
  317. .kply {
  318. width: 100%;
  319. // background-color: #FAFAFA;
  320. .kply_inner {
  321. // padding: 20px 20px;
  322. left: 0;
  323. right: 0;
  324. margin: auto;
  325. width: 1264px;
  326. background-color: #ffffff;
  327. border-radius: 40px;
  328. // margin-bottom: 20px;
  329. // height: 1000px;
  330. .infinite-list-wrapper {
  331. padding: 32px;
  332. // max-height: 900px;
  333. // max-height: 500px;
  334. // min-height: 500px;
  335. .record_zt {
  336. box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.17);
  337. margin-bottom: 40px;
  338. box-sizing: border-box;
  339. padding: 32px 20px;
  340. }
  341. .kepu_title {
  342. display: flex;
  343. flex-direction: row;
  344. justify-content: space-between;
  345. align-items: center;
  346. .kepu_title_des {
  347. font-family: Alibaba PuHuiTi 2.0;
  348. font-weight: 600;
  349. font-size: 30px;
  350. color: #000000;
  351. }
  352. .home_mid_plan_button {
  353. width: 100%;
  354. display: flex;
  355. flex-direction: row;
  356. justify-content: end;
  357. // text-align: right;
  358. .pub_button {
  359. cursor: pointer;
  360. // width: 100px;
  361. border-radius: 12px;
  362. border: 3px solid #48D68E;
  363. color: #ffffff;
  364. background-color: #000000;
  365. padding: 8px 30px;
  366. cursor: pointer;
  367. display: flex;
  368. align-items: center;
  369. }
  370. }
  371. }
  372. .com_out {
  373. min-height: 500px;
  374. padding: 20px 20px;
  375. }
  376. .test_record {
  377. display: flex;
  378. align-items: center;
  379. img {
  380. width: 50px;
  381. }
  382. .test_plan_name {
  383. background-image: url('../assets/zs/plan_line.png');
  384. background-repeat: no-repeat;
  385. background-size: contain;
  386. padding-bottom: 10px;
  387. background-position: bottom;
  388. position: relative;
  389. .read_status {
  390. font-size: 14px;
  391. line-height: 24px;
  392. font-weight: 100;
  393. background-color: #1673FF;
  394. color: #ffffff;
  395. width: 50px;
  396. top: -20px;
  397. text-align: center;
  398. border-radius: 6px;
  399. position: absolute;
  400. }
  401. .unread_status {
  402. font-size: 14px;
  403. line-height: 24px;
  404. font-weight: 100;
  405. background-color: #00DE7E;
  406. color: #ffffff;
  407. width: 50px;
  408. top: -20px;
  409. text-align: center;
  410. border-radius: 6px;
  411. position: absolute;
  412. }
  413. }
  414. span {
  415. font-size: 22px;
  416. font-weight: 700;
  417. letter-spacing: 3px;
  418. }
  419. }
  420. .test_time {
  421. margin-bottom: 10px;
  422. display: flex;
  423. flex-direction: row;
  424. justify-content: space-between;
  425. align-items: center;
  426. span {
  427. color: #000000;
  428. opacity: 0.4;
  429. font-size: 18px;
  430. }
  431. div {
  432. cursor: pointer;
  433. // width: 100px;
  434. border-radius: 12px;
  435. border: 3px solid #48D68E;
  436. color: #ffffff;
  437. background-color: #000000;
  438. margin-right: 20px;
  439. padding: 8px 30px;
  440. cursor: pointer;
  441. display: flex;
  442. align-items: center;
  443. }
  444. }
  445. .record_out {
  446. margin-top: 30px;
  447. background-color: #F7F7F7;
  448. padding: 30px 40px;
  449. border-radius: 40px;
  450. .record_score {
  451. color: #48D68E;
  452. margin-bottom: 5px;
  453. font-size: 20px;
  454. letter-spacing: 3px;
  455. }
  456. .record_result {
  457. line-height: 30px;
  458. color: #48D68E;
  459. margin-bottom: 10px;
  460. font-size: 20px;
  461. letter-spacing: 3px;
  462. }
  463. }
  464. .content_out {
  465. display: flex;
  466. flex-direction: column;
  467. width: 100%;
  468. // height: 200px;
  469. background-color: #F7F7F7;
  470. border-radius: 5px;
  471. .content_inner {
  472. padding: 20px 40px;
  473. .content_title {
  474. margin-bottom: 0px;
  475. font-weight: 700;
  476. font-size: 18px;
  477. }
  478. .content_one {
  479. border-radius: 20px;
  480. // padding: 10px 20px;
  481. display: flex;
  482. background-color: #ffffff;
  483. width: 45%;
  484. align-items: center;
  485. .content_single {
  486. border-radius: 20px;
  487. padding: 10px 20px;
  488. display: flex;
  489. background-color: #ffffff;
  490. width: 45%;
  491. align-items: center;
  492. .content_detail {
  493. display: flex;
  494. margin-left: 15px;
  495. justify-content: start;
  496. height: 80px;
  497. flex-direction: column;
  498. .title {
  499. font-weight: 700;
  500. font-size: 18px;
  501. }
  502. .des {
  503. color: #999999;
  504. font-size: 14px;
  505. }
  506. }
  507. }
  508. }
  509. .task_out {
  510. margin-top: 20px;
  511. display: flex;
  512. flex-direction: column;
  513. .task_inner {
  514. display: flex;
  515. flex-direction: row;
  516. justify-content: space-between;
  517. flex-wrap: wrap;
  518. .task_inner_single {
  519. margin-top: 20px;
  520. height: 100px;
  521. border-radius: 20px;
  522. width: 45%;
  523. display: flex;
  524. flex-direction: row;
  525. background-color: #ffffff;
  526. align-items: center;
  527. .task_inner_one {
  528. padding: 10px 20px;
  529. border-radius: 20px;
  530. width: 100%;
  531. display: flex;
  532. flex-direction: row;
  533. background-color: #ffffff;
  534. align-items: center;
  535. .task_content {
  536. position: relative;
  537. height: 80px;
  538. margin-left: 10px;
  539. display: flex;
  540. flex-direction: column;
  541. width: 100%;
  542. .isMust {
  543. position: absolute;
  544. right: 0;
  545. background-color: #00DE7E;
  546. font-size: 10px;
  547. color: #ffffff;
  548. padding: 4px 10px;
  549. border-radius: 3px;
  550. }
  551. .isChoosable {
  552. position: absolute;
  553. right: 0;
  554. background-color: #FF8400;
  555. font-size: 10px;
  556. color: #ffffff;
  557. padding: 4px 10px;
  558. border-radius: 3px;
  559. // border: 1px solid #00DE7E;
  560. }
  561. .title {
  562. font-weight: 700;
  563. font-size: 18px;
  564. width: 100%;
  565. letter-spacing: 2px;
  566. }
  567. .des {
  568. color: #999999;
  569. font-size: 14px;
  570. line-height: 24px;
  571. letter-spacing: 2px;
  572. }
  573. .noCompleted {
  574. width: 100%;
  575. color: #ffffff;
  576. display: flex;
  577. justify-content: end;
  578. .noCompleted_status {
  579. line-height: 24px;
  580. font-size: 14px;
  581. border-radius: 20px;
  582. text-align: center;
  583. right: 0px;
  584. width: 70px;
  585. background-color: red;
  586. }
  587. }
  588. .isCompleted {
  589. width: 100%;
  590. color: #ffffff;
  591. display: flex;
  592. justify-content: end;
  593. .isCompleted_status {
  594. padding: 8px 20px;
  595. display: flex;
  596. line-height: 18px;
  597. font-size: 14px;
  598. align-items: center;
  599. text-align: center;
  600. right: 0px;
  601. width: 70px;
  602. border-radius: 4px;
  603. border: 1px solid #48D68E;
  604. color: #ffffff;
  605. background-color: #3B3B3B;
  606. cursor: pointer
  607. }
  608. }
  609. }
  610. }
  611. }
  612. }
  613. }
  614. }
  615. }
  616. }
  617. }
  618. }
  619. }
  620. .home_mid {
  621. // background-color: blanchedalmond;
  622. width: 1200px;
  623. left: 0;
  624. right: 0;
  625. margin: auto;
  626. margin-top: 40px;
  627. // position: relative;
  628. .kepu_title {
  629. text-align: center;
  630. font-size: 50px;
  631. color: #111111;
  632. line-height: 95px;
  633. // width: 100%;
  634. // left: 0;
  635. // right: 0;
  636. // margin: auto
  637. }
  638. .kepu_title_sub {
  639. margin-top: 30px;
  640. text-align: center;
  641. font-size: 28px;
  642. color: #48D68E;
  643. line-height: 26px;
  644. }
  645. .man1_group {
  646. margin-top: 60px;
  647. height: 100%;
  648. display: flex;
  649. .man1 {
  650. position: relative;
  651. width: 327px;
  652. // height: 100%;
  653. // height: 100%
  654. .man1_img {
  655. position: absolute;
  656. bottom: 0;
  657. /* bottom: 0px; */
  658. /* height: auto; */
  659. width: 100%;
  660. left: 100px
  661. }
  662. }
  663. .des {
  664. border: #48D68E solid 5px;
  665. border-radius: 40px;
  666. padding: 20px;
  667. letter-spacing: 6px;
  668. flex: 1;
  669. .des_inner {
  670. border: 1px dashed #48D68E;
  671. border-radius: 40px;
  672. padding-bottom: 40px;
  673. padding-top: 30px;
  674. padding-left: 100px;
  675. padding-right: 20px;
  676. letter-spacing: 6px;
  677. font-weight: normal;
  678. font-size: 24px;
  679. color: #333333;
  680. line-height: 40px;
  681. }
  682. }
  683. }
  684. .man2_group {
  685. margin-top: 60px;
  686. height: 100%;
  687. display: flex;
  688. .man2 {
  689. position: relative;
  690. width: 327px;
  691. // height: 100%;
  692. // height: 100%
  693. .man2_img {
  694. position: absolute;
  695. bottom: 0;
  696. /* bottom: 0px; */
  697. /* height: auto; */
  698. width: 100%;
  699. left: -100px
  700. }
  701. }
  702. .des2 {
  703. border: #48D68E solid 5px;
  704. border-radius: 40px;
  705. padding: 20px;
  706. letter-spacing: 6px;
  707. flex: 1;
  708. .des2_inner {
  709. border: 1px dashed #48D68E;
  710. border-radius: 40px;
  711. padding-bottom: 40px;
  712. padding-top: 30px;
  713. padding-left: 20px;
  714. padding-right: 100px;
  715. letter-spacing: 6px;
  716. font-weight: normal;
  717. font-size: 24px;
  718. color: #333333;
  719. line-height: 40px;
  720. }
  721. }
  722. }
  723. .get_more {
  724. text-align: center;
  725. img {
  726. width: 300px;
  727. margin-top: 60px;
  728. margin-bottom: 60px;
  729. }
  730. }
  731. }
  732. // .home_footer_out {
  733. // width: 100%;
  734. // background-color: #000000;
  735. // }</style>