Scale.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868
  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. //判断当前 flag 是可选的三个吗
  187. //如果是的话---
  188. if (flag == '20210617020516' || flag == '20210913093250' || flag == '20210617000853') {
  189. //判断是否是做完了
  190. if (topicIndex.value == scaleList.value.length) {
  191. //这时是全部的都做完了
  192. //做完后目前先跳转到测试计划页面
  193. ElMessage({
  194. message: '提交完成',
  195. type: "success",
  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. ElMessage({
  206. message: '提交完成',
  207. type: "success",
  208. })
  209. router.push({ name: 'plan' })
  210. }
  211. // isCompleted.value = true
  212. //跳转到缓冲中间件
  213. // setTimeout(() => {
  214. // isLock.value = false;
  215. // router.push({
  216. // name: 'scaleMid', params: {
  217. // planId: planId.value,
  218. // planName: planName.value,
  219. // flag: flag.value,
  220. // flagName: flagName.value,
  221. // // num: num.value
  222. // }
  223. // })
  224. // }, 1500)
  225. }
  226. //根据计划ID查询问题
  227. const queryNeedScale = async () => {
  228. //
  229. //查询需要测试的计划
  230. //如果在就是登录了
  231. if (userInfo.token) {
  232. let userNo = ''
  233. //登录的话
  234. //判断当前是否有后台管理
  235. userNo = userInfo.userInfo.userNo
  236. //调用根据用户查询计划的API
  237. let res: any = await userPlanApi(userNo)
  238. //
  239. for (let i = 0; i < res.data.length; i++) {
  240. if (res.data[i].id = planId.value) {
  241. planObj.value = res.data[i]
  242. }
  243. }
  244. //将list赋值进去
  245. planObj.value.list = [];
  246. let params = {
  247. planId: planObj.value.id,
  248. userNo: userInfo.userInfo.userNo
  249. }
  250. //调用详细的API
  251. let temp: any = await userPlanDetailApi(params)
  252. planObj.value.list = temp.data
  253. //判断是否需要
  254. //判断量表中有几个是必须测试的且不显示的
  255. let list = []
  256. for (let i = 0; i < planObj.value.list.length; i++) {
  257. //先判断类型--在判断必做且不显示的---将这个写存储在数组
  258. if (planObj.value.list[i].contentType == '0' && planObj.value.list[i].isAvailable == '1' && planObj.value.list[i].isDisplayed == '0') {
  259. //修改
  260. //
  261. list.push(planObj.value.list[i])
  262. }
  263. }
  264. //将对象的list字段设置新的需要测试的
  265. planObj.value.list = list;
  266. //以此查询出来需要需要做的但是未完成的
  267. //必做的全部计算出来全部需要做的题
  268. let listNeedAll = []
  269. let listIsComplate = []
  270. let listNoComplate = []
  271. for (let i = 0; i < planObj.value.list.length; i++) {
  272. //查询出全部的问题
  273. //根据flag查询出来的题
  274. //let res: any = await queryScaleDetailApi(planObj.value.list[i].flag)
  275. if (planObj.value.list[i].isCompleted == '1') {
  276. let res: any = await getScaleApi(planObj.value.list[i].flag)
  277. listIsComplate.push(...res.data)
  278. listNeedAll.push(...res.data)
  279. }
  280. //计算未完成数目
  281. if (planObj.value.list[i].isCompleted == '0') {
  282. let res: any = await getScaleApi(planObj.value.list[i].flag)
  283. listNoComplate.push(...res.data)
  284. listNeedAll.push(...res.data)
  285. }
  286. //查询出来后将值赋值给另一数组
  287. //总共需要做的题的数目
  288. }
  289. //测试全部数字
  290. planAllNum.value = listNeedAll.length;
  291. //测试已完成
  292. planIsComplateNum.value = listIsComplate.length;
  293. //测试未完成
  294. planNoComplateNum.value = 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. }
  311. }
  312. //根据flag查询量表详情
  313. // scaleName.value = res.data.name;
  314. // detail.value = res.data.description;
  315. // theory.value = res.data.theory;
  316. // //参考文献
  317. // reference.value = res.data.reference.split('//');
  318. const productData = (data: any) => {
  319. //循环列表
  320. //查看isCheck字段
  321. //根据字段拿出答案
  322. //将答案放入数组
  323. let testRecord = []
  324. for (let i = 0; i < data.length; i++) {
  325. for (let k = 0; k < data[i].answerList.length; k++) {
  326. if (data[i].isCheck === data[i].answerList[k].name) {
  327. //r
  328. testRecord.push(data[i].answerList[k])
  329. }
  330. }
  331. }
  332. return testRecord
  333. }
  334. //上一题的方法
  335. const lastTopic = () => {
  336. if (topicIndex.value == 1) {
  337. ElMessage({
  338. message: '已经是第一题了',
  339. type: "warning",
  340. })
  341. return
  342. }
  343. topicIndex.value--
  344. }
  345. //点击选中选项的事件
  346. const radioFun = () => {
  347. nextTopic()
  348. }
  349. //刚进入页面就将高度设置为页面需要的
  350. onMounted(() => {
  351. flag.value = route.params.flag as string;
  352. planId.value = route.params.planId as string
  353. planName.value = route.params.planName as string
  354. flagName.value = route.params.flagName as string
  355. num.value = route.params.num as string
  356. isComplate.value = route.params.isComplate as string
  357. //进到界面开始轮询
  358. // 判断是否SCL90
  359. if (flag.value == '20210617140713') {
  360. //如果是的话--判断scl90的状态
  361. if (isComplate.value == '0') {
  362. getScaleFun(flag.value)
  363. } else if (isComplate.value == '2') {
  364. queryNeedScale();
  365. }
  366. } else {
  367. getScaleFun(flag.value)
  368. }
  369. getStartTime()
  370. //判断是否是完成了
  371. //如果标志是
  372. })
  373. //获取当前时间
  374. const getStartTime = () => {
  375. let date = new Date()
  376. startTime.value = format(date, "yyyy-MM-dd HH:mm:ss");
  377. }
  378. //根据flag 获取当前的题目
  379. const getScaleFun = async (val: string) => {
  380. scaleList.value = []
  381. let res: any = await getScaleApi(val)
  382. scaleList.value = res.data
  383. for (let i = 0; i < scaleList.value.length; i++) {
  384. scaleList.value[i].isCheck = ''
  385. }
  386. }
  387. //界面销毁函数
  388. //轮旋切换页面的方法
  389. //退出页面销毁 方法
  390. onUnmounted(() => {
  391. })
  392. </script>
  393. <template>
  394. <div class="home_header_out">
  395. <div class=" home_header_inner">
  396. <CpmdHeader />
  397. <div class="report_top">
  398. <div class="report_jt">
  399. <span v-if="!(flag == '20210617140713' && isComplate == '2')">{{ flagName }}</span>
  400. <span v-if="flag == '20210617140713' && isComplate == '2'"> 症状自评量表(附加题)</span>
  401. <span v-show="!isCompleted" class="des">请根据您的表现回答下列问题,每道题请选择最符合您的情况的选项。</span>
  402. </div>
  403. <img v-show="!isCompleted" class="xlts_img" src="../assets/scale/scale.png" />
  404. </div>
  405. </div>
  406. <div class="kply">
  407. <div class="kply_inner" :style="{ border: isCompleted ? '8px solid #ffffff' : '8px solid #B2F2D2' }">
  408. <div style="padding :10px 100px">
  409. <el-progress v-if="!(flag == '20210617140713' && isComplate == '2')" :text-inside="true"
  410. :stroke-width="20" :percentage="(topicIndex / scaleList.length) * 100" color="#48D68E">
  411. <span style="color:#000000">{{ topicIndex }}/{{ scaleList.length }}</span>
  412. </el-progress>
  413. <el-progress v-if="flag == '20210617140713' && isComplate == '2'" :text-inside="true"
  414. :stroke-width="20" :percentage="((topicIndex + planIsComplateNum) / planAllNum) * 100"
  415. color="#48D68E">
  416. <span style="color:#000000">{{ topicIndex + planIsComplateNum }}/{{ planAllNum }}</span>
  417. </el-progress>
  418. <div v-if="scaleList.length > 0">
  419. <div class="scale_title" v-if="!(flag == '20210617140713' && isComplate == '2')">{{ topicIndex
  420. }}:{{ scaleList[topicIndex - 1].content }}</div>
  421. <div class="scale_title" v-if="flag == '20210617140713' && isComplate == '2'">{{ topicIndex +
  422. planIsComplateNum }}:{{ scaleList[topicIndex - 1].content }}</div>
  423. <el-radio-group v-model="scaleList[topicIndex - 1].isCheck" class="scale_radio_group">
  424. <el-radio-button
  425. v-for="item in scaleList[topicIndex - 1].checkItems.split(';').sort(() => { return Math.random() - 0.5 }) "
  426. @change="radioFun" :label="item" :value="item" />
  427. </el-radio-group>
  428. <div class="scale_button">
  429. <el-row>
  430. <el-col :span="12" class="scale_button_inner">
  431. <div v-show="topicIndex > 1" class="scale_button_self" @click="lastTopic">上一题
  432. </div>
  433. </el-col>
  434. <el-col :span="12" class="scale_button_inner">
  435. <div v-show="topicIndex < scaleList.length" class="scale_button_self"
  436. @click="nextTopic">下一题</div>
  437. <!-- <div v-show="topicIndex == scaleList.length" class="scale_button_self"
  438. @click="subScaleData">提交</div> -->
  439. </el-col>
  440. </el-row>
  441. </div>
  442. </div>
  443. </div>
  444. </div>
  445. </div>
  446. </div>
  447. </template>
  448. <style lang="scss" scoped>
  449. :deep(.el-progress-bar__outer) {
  450. background-color: #f3f3f3;
  451. border-radius: 100px;
  452. height: 6px;
  453. overflow: hidden;
  454. position: relative;
  455. vertical-align: middle;
  456. }
  457. :deep(.el-radio-group) {
  458. align-items: center;
  459. display: flex;
  460. flex-wrap: wrap;
  461. font-size: 0;
  462. flex-direction: column;
  463. }
  464. :deep(.el-radio-button) {
  465. display: inline-block;
  466. outline: none;
  467. position: relative;
  468. width: 80% !important;
  469. }
  470. :deep(.el-radio-button__inner) {
  471. width: 100%;
  472. border-radius: 40px !important;
  473. margin-top: 10px;
  474. border: 4px solid #B2F2D2;
  475. border-left: 4px solid #B2F2D2 !important;
  476. padding: 10px 10px;
  477. font-size: 14px;
  478. font-weight: 700;
  479. text-align: left;
  480. }
  481. :deep(.el-radio-button__inner:hover) {
  482. width: 100%;
  483. border-radius: 40px !important;
  484. margin-top: 10px;
  485. border: 4px solid #B2F2D2;
  486. border-left: 4px solid #B2F2D2 !important;
  487. padding: 10px 10px;
  488. font-size: 14px;
  489. font-weight: 700;
  490. text-align: left;
  491. color: #000000;
  492. background-color: #48D68E;
  493. color: #ffffff;
  494. }
  495. // :deep().el-radio-button__original-radio:checked+.el-radio-button__inner {
  496. // background-color: #48D68E !important;
  497. // border-color: #B2F2D2 !important;
  498. // box-shadow: 0 0 0 0 var(--el-radio-button-checked-border-color, var(--el-color-primary)) !important;
  499. // color: var(--el-radio-button-checked-text-color, var(--el-color-white));
  500. // }
  501. :deep().el-radio-button.is-active .el-radio-button__original-radio:not(:disabled)+.el-radio-button__inner {
  502. background-color: #48D68E !important;
  503. border-color: #B2F2D2 !important;
  504. box-shadow: 0 0 0 0 var(--el-radio-button-checked-border-color, var(--el-color-primary)) !important;
  505. color: var(--el-radio-button-checked-text-color, var(--el-color-white));
  506. }
  507. .home_header_out {
  508. // position: relative;
  509. padding-bottom: 60px;
  510. width: 100%;
  511. min-width: 1200px;
  512. background-image: url('../assets/home/bg_ty.png');
  513. background-repeat: no-repeat;
  514. background-size: contain;
  515. background-color: #FAFAFA; //估计是需要动态
  516. //获取屏幕宽度home_header_out 这个div的宽度--然后宽度*1000再除1920即为当前div的宽度
  517. .home_header_inner {
  518. min-height: 1;
  519. left: 0;
  520. right: 0;
  521. margin: auto;
  522. // height: 100px;
  523. width: 1200px;
  524. .report_top {
  525. width: 860px;
  526. margin-left: 170px;
  527. margin-top: 20px;
  528. display: flex;
  529. flex-direction: row;
  530. justify-content: space-between;
  531. align-items: center;
  532. margin-bottom: 0px;
  533. .xlts_img {
  534. margin-right: 60px;
  535. // width: 100px;
  536. }
  537. .report_jt {
  538. display: flex;
  539. flex-direction: column;
  540. font-size: 20px;
  541. font-weight: 700;
  542. letter-spacing: 3px;
  543. .des {
  544. color: #888888;
  545. // opacity: 0.4;
  546. font-size: 15px;
  547. letter-spacing: 0px;
  548. margin-top: 10px;
  549. }
  550. }
  551. }
  552. }
  553. .kply {
  554. width: 100%;
  555. margin-top: 10px;
  556. margin-bottom: 9px;
  557. // width: 860px;
  558. // background-color: #FAFAFA;
  559. .kply_inner {
  560. // border: 8px solid #B2F2D2;
  561. min-height: 500px;
  562. left: 0;
  563. right: 0;
  564. margin: auto;
  565. width: 860px;
  566. // padding: 20px 20px;
  567. background-color: #ffffff;
  568. border-radius: 40px;
  569. .scale_title {
  570. margin-top: 20px;
  571. font-size: 18px;
  572. letter-spacing: 2px;
  573. line-height: 20px;
  574. .scale_radio_group {
  575. display: flex;
  576. flex-direction: column;
  577. }
  578. }
  579. .scale_button {
  580. margin-top: 60px;
  581. margin-bottom: 20px;
  582. .scale_button_inner {
  583. text-align: center;
  584. display: flex;
  585. justify-content: center;
  586. .scale_button_self {
  587. border-radius: 12px;
  588. border: 3px solid #48D68E;
  589. color: #ffffff;
  590. background-color: #000000;
  591. margin-right: 20px;
  592. padding: 10px 40px;
  593. cursor: pointer;
  594. display: flex;
  595. align-items: center;
  596. font-size: 14px;
  597. }
  598. }
  599. }
  600. .finish_calss {
  601. display: flex;
  602. flex-direction: column;
  603. .finish_img {
  604. margin-top: 60px;
  605. display: flex;
  606. flex-direction: column;
  607. align-items: center;
  608. .finish_font {
  609. margin-top: 40px;
  610. font-size: 30px;
  611. margin-bottom: 100px;
  612. }
  613. }
  614. }
  615. }
  616. }
  617. }
  618. .home_mid {
  619. // background-color: blanchedalmond;
  620. width: 1200px;
  621. left: 0;
  622. right: 0;
  623. margin: auto;
  624. margin-top: 40px;
  625. // position: relative;
  626. .kepu_title {
  627. text-align: center;
  628. font-size: 50px;
  629. color: #111111;
  630. line-height: 95px;
  631. // width: 100%;
  632. // left: 0;
  633. // right: 0;
  634. // margin: auto
  635. }
  636. .kepu_title_sub {
  637. margin-top: 30px;
  638. text-align: center;
  639. font-size: 28px;
  640. color: #48D68E;
  641. line-height: 26px;
  642. }
  643. .man1_group {
  644. margin-top: 60px;
  645. height: 100%;
  646. display: flex;
  647. .man1 {
  648. position: relative;
  649. width: 327px;
  650. // height: 100%;
  651. // height: 100%
  652. .man1_img {
  653. position: absolute;
  654. bottom: 0;
  655. /* bottom: 0px; */
  656. /* height: auto; */
  657. width: 100%;
  658. left: 100px
  659. }
  660. }
  661. .des {
  662. border: #48D68E solid 5px;
  663. border-radius: 40px;
  664. padding: 20px;
  665. letter-spacing: 6px;
  666. flex: 1;
  667. .des_inner {
  668. border: 1px dashed #48D68E;
  669. border-radius: 40px;
  670. padding-bottom: 40px;
  671. padding-top: 30px;
  672. padding-left: 100px;
  673. padding-right: 20px;
  674. letter-spacing: 6px;
  675. font-weight: normal;
  676. font-size: 24px;
  677. color: #333333;
  678. line-height: 40px;
  679. }
  680. }
  681. }
  682. .man2_group {
  683. margin-top: 60px;
  684. height: 100%;
  685. display: flex;
  686. .man2 {
  687. position: relative;
  688. width: 327px;
  689. // height: 100%;
  690. // height: 100%
  691. .man2_img {
  692. position: absolute;
  693. bottom: 0;
  694. /* bottom: 0px; */
  695. /* height: auto; */
  696. width: 100%;
  697. left: -100px
  698. }
  699. }
  700. .des2 {
  701. border: #48D68E solid 5px;
  702. border-radius: 40px;
  703. padding: 20px;
  704. letter-spacing: 6px;
  705. flex: 1;
  706. .des2_inner {
  707. border: 1px dashed #48D68E;
  708. border-radius: 40px;
  709. padding-bottom: 40px;
  710. padding-top: 30px;
  711. padding-left: 20px;
  712. padding-right: 100px;
  713. letter-spacing: 6px;
  714. font-weight: normal;
  715. font-size: 24px;
  716. color: #333333;
  717. line-height: 40px;
  718. }
  719. }
  720. }
  721. .get_more {
  722. text-align: center;
  723. img {
  724. width: 300px;
  725. margin-top: 60px;
  726. margin-bottom: 60px;
  727. }
  728. }
  729. }
  730. // .home_footer_out {
  731. // width: 100%;
  732. // background-color: #000000;
  733. // }</style>