Scale.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866
  1. <script setup lang="ts">
  2. import { format } from 'date-fns/format';
  3. import CpmdHeader from '@/components/CpmdHeader.vue';
  4. import { onMounted, onUnmounted, ref } from 'vue'
  5. import { Check } from '@element-plus/icons-vue'
  6. import { number } from 'echarts';
  7. import { ElMessage } from 'element-plus';
  8. import { useRouter, useRoute } from 'vue-router';
  9. import { getScaleApi, queryScaleDetailApi, saveScaleApi } from '@/api/plan';
  10. import { userInfoStore } from '@/stores'
  11. // 加一个锁表示不能重复点击
  12. const isLock = ref<boolean>(false)
  13. import { isHaveManage } from '@/utils/test'
  14. import { userPlanApi, userPlanDetailApi } from '@/api/home';
  15. import { id } from 'element-plus/es/locales.mjs';
  16. const userInfo = userInfoStore()
  17. const router = useRouter()
  18. const route = useRoute()
  19. //持久化设置 菜单状态
  20. // import { menuStatusStore } from '@/stores'
  21. // const menuStatus = menuStatusStore();
  22. // menuStatus.saveActiveIndex('3')
  23. //当前量表是否已经提交
  24. const isCompleted = ref<boolean>(false)
  25. const planObj = ref<any>({})
  26. const flag = ref<string>('')
  27. const flagName = ref<string>('')
  28. const planId = ref<string>('')
  29. const planName = ref<string>('')
  30. const startTime = ref<string>('')
  31. const num = ref<string>('')
  32. const isComplate = ref<string>('')
  33. //测试全部数字
  34. const planAllNum = ref<number>(0);
  35. //测试已完成的
  36. const planIsComplateNum = ref<number>(0);
  37. //测试未完成的
  38. const planNoComplateNum = ref<number>(0);
  39. //获取到的题目数组
  40. const scaleList = ref<any>([
  41. // {
  42. // id: '',
  43. // questionNo: '1',
  44. // serialNo: '',
  45. // content: '我发现我自己被一些琐碎的事情弄得很不开心',
  46. // checkItems: '非常符合;大部分符合;小部分符合;完全不符合',
  47. // questionType: '0',
  48. // questionParam: '',
  49. // weight: '',
  50. // score: '',
  51. // scoreDirection: '',
  52. // flag: '',
  53. // isCheck: '',
  54. // answerList: [{ name: '' }]
  55. // }
  56. ])
  57. //当前题的对象
  58. //刚进页面时第几题
  59. const topicIndex = ref<number>(1)
  60. //存储--方法的
  61. //有三个储存数组分别储存
  62. //抑郁自评量表
  63. //抑郁自评量表flag是"20210617020516"
  64. const listDepressed = ref<any>([])
  65. //知觉压力问卷
  66. //知觉压力量表flag是"20210913093250"
  67. const listStress = ref<any>([])
  68. //焦虑自评量表
  69. //焦虑自评量表flag是"20210617000853"
  70. const listAnxiety = ref<any>([])
  71. //下一题的方法
  72. const nextTopic = () => {
  73. //当前选项的flag //是多少题
  74. //判断当前索引下的数组中是否有isCheck为空
  75. //先判断这个是不是
  76. if (scaleList.value[topicIndex.value - 1].isCheck == '') {
  77. ElMessage({
  78. message: '请选择当前题目',
  79. type: "warning",
  80. })
  81. return
  82. }
  83. //已经选择的话---需要拿到当前对象---判断flag是另外三个的flag吗
  84. //如果是--则判断是否在数组里边--如果不在则存储
  85. //将抑郁自评量表的数据存储进数组
  86. if (scaleList.value[topicIndex.value - 1].flag == '20210617020516' && !listDepressed.value.includes(scaleList.value[topicIndex.value - 1].id)) {
  87. listDepressed.value.push(scaleList.value[topicIndex.value - 1].id)
  88. //判断抑郁压力数组的长度是20 调用保存接口
  89. //循环到数组 当前中所有flag 等于抑郁自评量表的数组--然后传输给保存方法
  90. //判断此数组长度是多少
  91. if (listDepressed.value.length == 20) {
  92. let list = []
  93. for (let i = 0; i < scaleList.value.length; i++) {
  94. if (scaleList.value[i].flag == '20210617020516') {
  95. list.push(scaleList.value[i])
  96. }
  97. }
  98. let listTm = JSON.parse(JSON.stringify(list))
  99. subScaleData(listTm, "20210617020516")
  100. }
  101. }
  102. //将知觉压力问卷的数据存储进数组
  103. if (scaleList.value[topicIndex.value - 1].flag == '20210913093250' && !listStress.value.includes(scaleList.value[topicIndex.value - 1].id)) {
  104. listStress.value.push(scaleList.value[topicIndex.value - 1].id)
  105. //调用知觉压力数据保存接口
  106. //如果长度达到指定数目
  107. if (listStress.value.length == 30) {
  108. let list = []
  109. for (let i = 0; i < scaleList.value.length; i++) {
  110. if (scaleList.value[i].flag == '20210913093250') {
  111. list.push(scaleList.value[i])
  112. }
  113. }
  114. let listTm = JSON.parse(JSON.stringify(list))
  115. subScaleData(listTm, "20210913093250")
  116. }
  117. }
  118. //将焦虑自评量的数据存储进数组
  119. if (scaleList.value[topicIndex.value - 1].flag == '20210617000853' && !listAnxiety.value.includes(scaleList.value[topicIndex.value - 1].id)) {
  120. listAnxiety.value.push(scaleList.value[topicIndex.value - 1].id)
  121. //调用焦虑
  122. if (listAnxiety.value.length == 20) {
  123. let list = []
  124. for (let i = 0; i < scaleList.value.length; i++) {
  125. if (scaleList.value[i].flag == '20210617000853') {
  126. list.push(scaleList.value[i])
  127. }
  128. }
  129. let listTm = JSON.parse(JSON.stringify(list))
  130. subScaleData(listTm, "20210617000853")
  131. }
  132. }
  133. //判断当前是不是最后一题
  134. //如果是最后一题就不++了
  135. if (topicIndex.value == scaleList.value.length) {
  136. // 最后一题就进行提交了
  137. //判断不是这三个的话
  138. if (scaleList.value[topicIndex.value - 1].flag != '20210617020516' && scaleList.value[topicIndex.value - 1].flag != '20210913093250' && scaleList.value[topicIndex.value - 1].flag != '20210617000853') {
  139. let listTm = JSON.parse(JSON.stringify(scaleList.value))
  140. subScaleData(listTm, flag.value)
  141. }
  142. // subScaleData(listTm, "20210617000853")
  143. return
  144. }
  145. topicIndex.value++
  146. }
  147. //将选择的传输给方法---自带flag
  148. const subScaleData = async (data: any, flag: string) => {
  149. if (isLock.value) {
  150. return
  151. }
  152. isLock.value = true
  153. // if (scaleList.value[topicIndex.value - 1].isCheck == '') {
  154. // ElMessage({
  155. // message: '请选择当前题目',
  156. // type: "warning",
  157. // })
  158. // return
  159. // }
  160. //开始调用提交数据的方法
  161. // testRecord: JSON.stringify(productData()),
  162. //开始处理数据
  163. // productData()
  164. let params = {
  165. beginTime: startTime.value,
  166. orgName: userInfo.userInfo.orgName,
  167. orgNo: userInfo.userInfo.orgNo,
  168. planId: planId.value,
  169. planName: planName.value,
  170. taskFlag: flag,
  171. taskName: flagName.value,
  172. testRecord: JSON.stringify(productData(data)),
  173. type: '0',
  174. userName: userInfo.userInfo.userName,
  175. userNo: userInfo.userInfo.userNo,
  176. }
  177. const res = await saveScaleApi(params)
  178. //1.先判断是否需要做附加题---根据查询出来列表 --不显示但是必做的---且状态含有未完成,
  179. //2.接下来查看需要看总共几个需要做的附加题---将未完成的题目---合并到一块---到时候
  180. //3.判断做完的有且有多少个题目-----未做完的量表有多少个题目
  181. isLock.value = false
  182. ElMessage({
  183. message: '提交完成',
  184. type: "success",
  185. })
  186. //判断当前 flag 是可选的三个吗
  187. //如果是的话---
  188. if (flag == '20210617020516' || flag == '20210913093250' || flag == '20210617000853') {
  189. //判断是否是做完了
  190. if (topicIndex.value == scaleList.value.length) {
  191. //这时是全部的都做完了
  192. //做完后目前先跳转到测试计划页面
  193. router.push({ name: 'plan' })
  194. }
  195. }
  196. if (flag == '20210617140713') {
  197. queryNeedScale()
  198. //如果是排除是其他两个则直接返回
  199. } else if (flag != '20210617020516' && flag != '20210913093250' && flag != '20210617000853') {
  200. //此时做完需要跳转到计划页面
  201. router.push({ name: 'plan' })
  202. }
  203. // isCompleted.value = true
  204. //跳转到缓冲中间件
  205. // setTimeout(() => {
  206. // isLock.value = false;
  207. // router.push({
  208. // name: 'scaleMid', params: {
  209. // planId: planId.value,
  210. // planName: planName.value,
  211. // flag: flag.value,
  212. // flagName: flagName.value,
  213. // // num: num.value
  214. // }
  215. // })
  216. // }, 1500)
  217. }
  218. //根据计划ID查询问题
  219. const queryNeedScale = async () => {
  220. //
  221. //查询需要测试的计划
  222. //如果在就是登录了
  223. if (userInfo.token) {
  224. let userNo = ''
  225. //登录的话
  226. //判断当前是否有后台管理
  227. userNo = userInfo.userInfo.userNo
  228. //调用根据用户查询计划的API
  229. let res: any = await userPlanApi(userNo)
  230. //
  231. for (let i = 0; i < res.data.length; i++) {
  232. if (res.data[i].id = planId.value) {
  233. planObj.value = res.data[i]
  234. }
  235. }
  236. //将list赋值进去
  237. planObj.value.list = [];
  238. let params = {
  239. planId: planObj.value.id,
  240. userNo: userInfo.userInfo.userNo
  241. }
  242. //调用详细的API
  243. let temp: any = await userPlanDetailApi(params)
  244. planObj.value.list = temp.data
  245. console.log('planObj')
  246. console.log(planObj.value)
  247. //判断是否需要
  248. //判断量表中有几个是必须测试的且不显示的
  249. let list = []
  250. for (let i = 0; i < planObj.value.list.length; i++) {
  251. //先判断类型--在判断必做且不显示的---将这个写存储在数组
  252. if (planObj.value.list[i].contentType == '0' && planObj.value.list[i].isAvailable == '1' && planObj.value.list[i].isDisplayed == '0') {
  253. //修改
  254. //
  255. list.push(planObj.value.list[i])
  256. }
  257. }
  258. //将对象的list字段设置新的需要测试的
  259. planObj.value.list = list;
  260. //以此查询出来需要需要做的但是未完成的
  261. //必做的全部计算出来全部需要做的题
  262. let listNeedAll = []
  263. let listIsComplate = []
  264. let listNoComplate = []
  265. for (let i = 0; i < planObj.value.list.length; i++) {
  266. //查询出全部的问题
  267. //根据flag查询出来的题
  268. //let res: any = await queryScaleDetailApi(planObj.value.list[i].flag)
  269. if (planObj.value.list[i].isCompleted == '1') {
  270. let res: any = await getScaleApi(planObj.value.list[i].flag)
  271. listIsComplate.push(...res.data)
  272. listNeedAll.push(...res.data)
  273. }
  274. //计算未完成数目
  275. if (planObj.value.list[i].isCompleted == '0') {
  276. let res: any = await getScaleApi(planObj.value.list[i].flag)
  277. listNoComplate.push(...res.data)
  278. listNeedAll.push(...res.data)
  279. }
  280. //查询出来后将值赋值给另一数组
  281. //总共需要做的题的数目
  282. }
  283. //测试全部数字
  284. planAllNum.value = listNeedAll.length;
  285. //测试已完成
  286. planIsComplateNum.value = listIsComplate.length;
  287. //测试未完成
  288. planNoComplateNum.value = listNoComplate.length;
  289. console.log('总长度')
  290. console.log(listNeedAll.length)
  291. console.log('已经测过的长度')
  292. console.log(listIsComplate.length)
  293. console.log('未测过的长度')
  294. console.log(listNoComplate.length)
  295. //判断 如果总长度是0的话--需要跳转到测试计划页
  296. if (planAllNum.value == 0) {
  297. //跳转计划页面
  298. router.push({ name: 'plan' })
  299. } else {
  300. //如果长度不是0的话--需要修改文本
  301. //设置标志为2
  302. isComplate.value = '2'
  303. }
  304. //这时应该清空一下index
  305. topicIndex.value = 1
  306. scaleList.value = listNoComplate
  307. for (let i = 0; i < scaleList.value.length; i++) {
  308. scaleList.value[i].isCheck = ''
  309. }
  310. console.log(scaleList.value)
  311. }
  312. }
  313. //根据flag查询量表详情
  314. // console.log(res)
  315. // scaleName.value = res.data.name;
  316. // detail.value = res.data.description;
  317. // theory.value = res.data.theory;
  318. // //参考文献
  319. // console.log(res.data.reference)
  320. // reference.value = res.data.reference.split('//');
  321. // console.log(reference.value)
  322. const productData = (data: any) => {
  323. //循环列表
  324. //查看isCheck字段
  325. //根据字段拿出答案
  326. //将答案放入数组
  327. let testRecord = []
  328. for (let i = 0; i < data.length; i++) {
  329. for (let k = 0; k < data[i].answerList.length; k++) {
  330. if (data[i].isCheck === data[i].answerList[k].name) {
  331. //r
  332. testRecord.push(data[i].answerList[k])
  333. }
  334. }
  335. }
  336. return testRecord
  337. }
  338. //上一题的方法
  339. const lastTopic = () => {
  340. if (topicIndex.value == 1) {
  341. ElMessage({
  342. message: '已经是第一题了',
  343. type: "warning",
  344. })
  345. return
  346. }
  347. topicIndex.value--
  348. }
  349. //点击选中选项的事件
  350. const radioFun = () => {
  351. nextTopic()
  352. }
  353. //刚进入页面就将高度设置为页面需要的
  354. onMounted(() => {
  355. flag.value = route.params.flag as string;
  356. planId.value = route.params.planId as string
  357. planName.value = route.params.planName as string
  358. flagName.value = route.params.flagName as string
  359. num.value = route.params.num as string
  360. isComplate.value = route.params.isComplate as string
  361. //进到界面开始轮询
  362. // 判断是否SCL90
  363. if (flag.value == '20210617140713') {
  364. //如果是的话--判断scl90的状态
  365. if (isComplate.value == '0') {
  366. getScaleFun(flag.value)
  367. } else if (isComplate.value == '2') {
  368. queryNeedScale();
  369. }
  370. } else {
  371. getScaleFun(flag.value)
  372. }
  373. getStartTime()
  374. //判断是否是完成了
  375. //如果标志是
  376. })
  377. //获取当前时间
  378. const getStartTime = () => {
  379. let date = new Date()
  380. startTime.value = format(date, "yyyy-MM-dd HH:mm:ss");
  381. console.log(startTime.value)
  382. }
  383. //根据flag 获取当前的题目
  384. const getScaleFun = async (val: string) => {
  385. scaleList.value = []
  386. let res: any = await getScaleApi(val)
  387. console.log(res.data)
  388. scaleList.value = res.data
  389. for (let i = 0; i < scaleList.value.length; i++) {
  390. scaleList.value[i].isCheck = ''
  391. }
  392. }
  393. //界面销毁函数
  394. //轮旋切换页面的方法
  395. //退出页面销毁 方法
  396. onUnmounted(() => {
  397. })
  398. </script>
  399. <template>
  400. <div class="home_header_out">
  401. <div class=" home_header_inner">
  402. <CpmdHeader />
  403. <div class="report_top">
  404. <div class="report_jt">
  405. <span v-if="!(flag == '20210617140713' && isComplate == '2')">{{ flagName }}</span>
  406. <span v-if="flag == '20210617140713' && isComplate == '2'"> 症状自评量表(附加题)</span>
  407. <span v-show="!isCompleted" class="des">请根据您的表现回答下列问题,每道题请选择最符合您的情况的选项。</span>
  408. </div>
  409. <img v-show="!isCompleted" class="xlts_img" src="../assets/scale/scale.png" />
  410. </div>
  411. </div>
  412. <div class="kply">
  413. <div class="kply_inner" :style="{ border: isCompleted ? '8px solid #ffffff' : '8px solid #B2F2D2' }">
  414. <div style="padding :10px 100px">
  415. <el-progress v-if="!(flag == '20210617140713' && isComplate == '2')" :text-inside="true"
  416. :stroke-width="20" :percentage="(topicIndex / scaleList.length) * 100" color="#48D68E">
  417. <span style="color:#000000">{{ topicIndex }}/{{ scaleList.length }}</span>
  418. </el-progress>
  419. <el-progress v-if="flag == '20210617140713' && isComplate == '2'" :text-inside="true"
  420. :stroke-width="20" :percentage="((topicIndex + planIsComplateNum) / planAllNum) * 100"
  421. color="#48D68E">
  422. <span style="color:#000000">{{ topicIndex + planIsComplateNum }}/{{ planAllNum }}</span>
  423. </el-progress>
  424. <div v-if="scaleList.length > 0">
  425. <div class="scale_title">{{ topicIndex }}:{{ scaleList[topicIndex - 1].content }}</div>
  426. <el-radio-group v-model="scaleList[topicIndex - 1].isCheck" class="scale_radio_group">
  427. <el-radio-button
  428. v-for="item in scaleList[topicIndex - 1].checkItems.split(';').sort(() => { return Math.random() - 0.5 }) "
  429. @change="radioFun" :label="item" :value="item" />
  430. </el-radio-group>
  431. <div class="scale_button">
  432. <el-row>
  433. <el-col :span="12" class="scale_button_inner">
  434. <div v-show="topicIndex > 1" class="scale_button_self" @click="lastTopic">上一题
  435. </div>
  436. </el-col>
  437. <el-col :span="12" class="scale_button_inner">
  438. <div v-show="topicIndex < scaleList.length" class="scale_button_self"
  439. @click="nextTopic">下一题</div>
  440. <!-- <div v-show="topicIndex == scaleList.length" class="scale_button_self"
  441. @click="subScaleData">提交</div> -->
  442. </el-col>
  443. </el-row>
  444. </div>
  445. </div>
  446. </div>
  447. </div>
  448. </div>
  449. </div>
  450. </template>
  451. <style lang="scss" scoped>
  452. :deep(.el-progress-bar__outer) {
  453. background-color: #f3f3f3;
  454. border-radius: 100px;
  455. height: 6px;
  456. overflow: hidden;
  457. position: relative;
  458. vertical-align: middle;
  459. }
  460. :deep(.el-radio-group) {
  461. align-items: center;
  462. display: flex;
  463. flex-wrap: wrap;
  464. font-size: 0;
  465. flex-direction: column;
  466. }
  467. :deep(.el-radio-button) {
  468. display: inline-block;
  469. outline: none;
  470. position: relative;
  471. width: 80% !important;
  472. }
  473. :deep(.el-radio-button__inner) {
  474. width: 100%;
  475. border-radius: 40px !important;
  476. margin-top: 10px;
  477. border: 4px solid #B2F2D2;
  478. border-left: 4px solid #B2F2D2 !important;
  479. padding: 10px 10px;
  480. font-size: 14px;
  481. font-weight: 700;
  482. text-align: left;
  483. }
  484. :deep(.el-radio-button__inner:hover) {
  485. width: 100%;
  486. border-radius: 40px !important;
  487. margin-top: 10px;
  488. border: 4px solid #B2F2D2;
  489. border-left: 4px solid #B2F2D2 !important;
  490. padding: 10px 10px;
  491. font-size: 14px;
  492. font-weight: 700;
  493. text-align: left;
  494. color: #000000;
  495. background-color: #48D68E;
  496. color: #ffffff;
  497. }
  498. :deep().el-radio-button__original-radio:checked+.el-radio-button__inner {
  499. background-color: #48D68E;
  500. border-color: #B2F2D2;
  501. box-shadow: 0 0 0 0 var(--el-radio-button-checked-border-color, var(--el-color-primary));
  502. color: var(--el-radio-button-checked-text-color, var(--el-color-white));
  503. }
  504. .home_header_out {
  505. // position: relative;
  506. padding-bottom: 60px;
  507. width: 100%;
  508. min-width: 1200px;
  509. background-image: url('../assets/home/bg_ty.png');
  510. background-repeat: no-repeat;
  511. background-size: contain;
  512. background-color: #FAFAFA; //估计是需要动态
  513. //获取屏幕宽度home_header_out 这个div的宽度--然后宽度*1000再除1920即为当前div的宽度
  514. .home_header_inner {
  515. min-height: 1;
  516. left: 0;
  517. right: 0;
  518. margin: auto;
  519. // height: 100px;
  520. width: 1200px;
  521. .report_top {
  522. width: 860px;
  523. margin-left: 170px;
  524. margin-top: 20px;
  525. display: flex;
  526. flex-direction: row;
  527. justify-content: space-between;
  528. align-items: center;
  529. margin-bottom: 0px;
  530. .xlts_img {
  531. margin-right: 100px;
  532. width: 100px;
  533. }
  534. .report_jt {
  535. display: flex;
  536. flex-direction: column;
  537. font-size: 20px;
  538. font-weight: 700;
  539. letter-spacing: 3px;
  540. .des {
  541. color: #888888;
  542. // opacity: 0.4;
  543. font-size: 15px;
  544. letter-spacing: 0px;
  545. margin-top: 10px;
  546. }
  547. }
  548. }
  549. }
  550. .kply {
  551. width: 100%;
  552. margin-top: 10px;
  553. margin-bottom: 9px;
  554. // width: 860px;
  555. // background-color: #FAFAFA;
  556. .kply_inner {
  557. // border: 8px solid #B2F2D2;
  558. min-height: 500px;
  559. left: 0;
  560. right: 0;
  561. margin: auto;
  562. width: 860px;
  563. // padding: 20px 20px;
  564. background-color: #ffffff;
  565. border-radius: 40px;
  566. .scale_title {
  567. margin-top: 20px;
  568. font-size: 18px;
  569. letter-spacing: 2px;
  570. line-height: 20px;
  571. .scale_radio_group {
  572. display: flex;
  573. flex-direction: column;
  574. }
  575. }
  576. .scale_button {
  577. margin-top: 60px;
  578. margin-bottom: 20px;
  579. .scale_button_inner {
  580. text-align: center;
  581. display: flex;
  582. justify-content: center;
  583. .scale_button_self {
  584. border-radius: 12px;
  585. border: 3px solid #48D68E;
  586. color: #ffffff;
  587. background-color: #000000;
  588. margin-right: 20px;
  589. padding: 10px 40px;
  590. cursor: pointer;
  591. display: flex;
  592. align-items: center;
  593. font-size: 14px;
  594. }
  595. }
  596. }
  597. .finish_calss {
  598. display: flex;
  599. flex-direction: column;
  600. .finish_img {
  601. margin-top: 60px;
  602. display: flex;
  603. flex-direction: column;
  604. align-items: center;
  605. .finish_font {
  606. margin-top: 40px;
  607. font-size: 30px;
  608. margin-bottom: 100px;
  609. }
  610. }
  611. }
  612. }
  613. }
  614. }
  615. .home_mid {
  616. // background-color: blanchedalmond;
  617. width: 1200px;
  618. left: 0;
  619. right: 0;
  620. margin: auto;
  621. margin-top: 40px;
  622. // position: relative;
  623. .kepu_title {
  624. text-align: center;
  625. font-size: 50px;
  626. color: #111111;
  627. line-height: 95px;
  628. // width: 100%;
  629. // left: 0;
  630. // right: 0;
  631. // margin: auto
  632. }
  633. .kepu_title_sub {
  634. margin-top: 30px;
  635. text-align: center;
  636. font-size: 28px;
  637. color: #48D68E;
  638. line-height: 26px;
  639. }
  640. .man1_group {
  641. margin-top: 60px;
  642. height: 100%;
  643. display: flex;
  644. .man1 {
  645. position: relative;
  646. width: 327px;
  647. // height: 100%;
  648. // height: 100%
  649. .man1_img {
  650. position: absolute;
  651. bottom: 0;
  652. /* bottom: 0px; */
  653. /* height: auto; */
  654. width: 100%;
  655. left: 100px
  656. }
  657. }
  658. .des {
  659. border: #48D68E solid 5px;
  660. border-radius: 40px;
  661. padding: 20px;
  662. letter-spacing: 6px;
  663. flex: 1;
  664. .des_inner {
  665. border: 1px dashed #48D68E;
  666. border-radius: 40px;
  667. padding-bottom: 40px;
  668. padding-top: 30px;
  669. padding-left: 100px;
  670. padding-right: 20px;
  671. letter-spacing: 6px;
  672. font-weight: normal;
  673. font-size: 24px;
  674. color: #333333;
  675. line-height: 40px;
  676. }
  677. }
  678. }
  679. .man2_group {
  680. margin-top: 60px;
  681. height: 100%;
  682. display: flex;
  683. .man2 {
  684. position: relative;
  685. width: 327px;
  686. // height: 100%;
  687. // height: 100%
  688. .man2_img {
  689. position: absolute;
  690. bottom: 0;
  691. /* bottom: 0px; */
  692. /* height: auto; */
  693. width: 100%;
  694. left: -100px
  695. }
  696. }
  697. .des2 {
  698. border: #48D68E solid 5px;
  699. border-radius: 40px;
  700. padding: 20px;
  701. letter-spacing: 6px;
  702. flex: 1;
  703. .des2_inner {
  704. border: 1px dashed #48D68E;
  705. border-radius: 40px;
  706. padding-bottom: 40px;
  707. padding-top: 30px;
  708. padding-left: 20px;
  709. padding-right: 100px;
  710. letter-spacing: 6px;
  711. font-weight: normal;
  712. font-size: 24px;
  713. color: #333333;
  714. line-height: 40px;
  715. }
  716. }
  717. }
  718. .get_more {
  719. text-align: center;
  720. img {
  721. width: 300px;
  722. margin-top: 60px;
  723. margin-bottom: 60px;
  724. }
  725. }
  726. }
  727. // .home_footer_out {
  728. // width: 100%;
  729. // background-color: #000000;
  730. // }</style>