Scale.vue 26 KB

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