index.vue 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  1. <template>
  2. <div class="scroll_content">
  3. <div class="select_box">
  4. <el-radio-group v-model="errorType" size="medium" @change="_queryStudentErrorQuestion">
  5. <el-radio-button :label="-1">全部试题({{ allErrorCount }})</el-radio-button>
  6. <el-radio-button :label="0">未掌握({{ unMasterCount }})</el-radio-button>
  7. <el-radio-button :label="1">已掌握({{ masterCount }})</el-radio-button>
  8. <el-radio-button :label="2">复习题({{ reviewCount }})</el-radio-button>
  9. </el-radio-group>
  10. </div>
  11. <div class="content">
  12. <div class="right_btn" v-if="errorType !== 1">
  13. <el-button size="medium" :disabled="!canBtnClick"
  14. @click="downloadDialogVisible = true; isVariation = 0">下载错题本</el-button>
  15. <el-button :disabled="!canBtnClick" type="primary" size="medium"
  16. @click="downLoadPapers">下载个性化提升手册</el-button>
  17. </div>
  18. <Download :visible.sync="downloadDialogVisible" :examId="examId" :subjectCode="subjectCode"
  19. :isVariation="isVariation" :questionList="questionList" />
  20. <template v-if="questionList.length > 0">
  21. <div v-for="(question, index) in questionList" :key="question.questionId">
  22. <div class="question_card">
  23. <div class="card_top">
  24. <div class="card_top_info">
  25. <div class="left">
  26. <span class="number mr_10">{{ countGlobalIndex(index + 1) }}</span>
  27. <span class="gray">试题类型:<span v-if="!question.questionType">暂无试题类型</span></span>
  28. <span class="black mr_10" style="font-weight: 500;">
  29. {{ question.questionType }}
  30. </span>
  31. <span class="tag" v-if="question.classScoreRate < 40">高频错题</span>
  32. </div>
  33. </div>
  34. <div class="question_content line_height_20">
  35. <template v-if="question.questionData?.questionStem || question.questionImg">
  36. <Preview :type="question.sourceType" :content="question.questionData?.questionStem"
  37. :imgBase64="question.questionImg" />
  38. </template>
  39. <template v-else>
  40. <div style="color: #999;">暂无数据</div>
  41. </template>
  42. </div>
  43. <div class="card_footer">
  44. <div class="footer_item">
  45. <span class="gray">满分:</span>
  46. <span class="blue">{{ question.fullScore }}</span>
  47. <span class="gray">分</span>
  48. </div>
  49. <div class="footer_item">
  50. <span class="gray">我的得分:</span>
  51. <span class="blue">{{ question.score }}</span>
  52. <span class="gray">分</span>
  53. </div>
  54. <div class="footer_item">
  55. <span class="gray">难度:</span>
  56. <span style="font-weight: bold;" :class="countDiffcutyClass(question.difficulty)">
  57. {{ question.difficulty }}
  58. </span>
  59. </div>
  60. </div>
  61. </div>
  62. <div class="card_buttom">
  63. <div class="btn_box">
  64. <span class="black ml_30" :class="{ blue: question.answerShow }" size="small"
  65. @click="ShowAnserAndParse(1, question);">
  66. <i class="iconfont icon_daan"></i>
  67. 我的答案
  68. <i class="answerShow_content" v-if="question.answerShow && !question.parseShow"></i>
  69. </span>
  70. <span class="black ml_30" :class="{ blue: question.parseShow }" size="small"
  71. @click="ShowAnserAndParse(2, question);">
  72. <i class="iconfont icon_jiexi"></i>
  73. 查看解析
  74. <i class="parseShow_content" v-if="question.parseShow && !question.answerShow"></i>
  75. </span>
  76. <template v-if="question.errorStatus === 0">
  77. <template v-if="errorType === -1 || errorType === 0">
  78. <span class="black ml_30" size="small"
  79. @click="_markStudentErrorQuestion(question, 1)">
  80. <i class="iconfont icon_biaojiyizhangwo"></i>
  81. 标记为已掌握
  82. </span>
  83. <span class="black ml_30" size="small"
  84. @click="_markStudentErrorQuestion(question, 2)">
  85. <i class="iconfont icon_jiarufuxiben"></i>
  86. 加入复习本
  87. </span>
  88. </template>
  89. </template>
  90. <template v-if="errorType === 1 || question.errorStatus === 1">
  91. <span class="black ml_30" size="small"
  92. @click="_markStudentErrorQuestion(question, 0)">
  93. <i class="iconfont icon_biaojiweizhangwo"></i>
  94. 标记为未掌握
  95. </span>
  96. </template>
  97. <template v-if="errorType === 2 || question.errorStatus === 2">
  98. <span class="black ml_30" size="small"
  99. @click="_markStudentErrorQuestion(question, 0)">
  100. <i class="iconfont icon_yichufuxiben"></i>
  101. 移除复习本
  102. </span>
  103. </template>
  104. </div>
  105. <div class="content" v-if="question.parseShow && !question.answerShow">
  106. <div class="flex">
  107. <template v-if="question.knowledgePoint && question.knowledgePoint.length > 0">
  108. <div class="flex_left" style="line-height: 28px;">【知识点】</div>
  109. <div class="flex_right">
  110. <KnowledgePoint v-for="know in question.knowledgePoint" :key="know"
  111. :text="know" />
  112. </div>
  113. </template>
  114. <template v-else>
  115. <div class="flex_left">【知识点】</div>
  116. <div class="flex_right">
  117. <div style="color: #999;">暂无数据</div>
  118. </div>
  119. </template>
  120. </div>
  121. <div class="flex">
  122. <div class="flex_left">【答&nbsp;&nbsp;&nbsp;&nbsp;案】</div>
  123. <div class="flex_right">
  124. <template
  125. v-if="question.questionData?.answer || question.answerImg || question.answer">
  126. <template v-if="question.isObjective === 1">
  127. <div>{{ question.answer }}</div>
  128. </template>
  129. <template v-else>
  130. <Preview :type="question.sourceType"
  131. :content="question.questionData?.answer"
  132. :imgBase64="question.answerImg" />
  133. </template>
  134. </template>
  135. <template v-else>
  136. <div style="color: #999;">暂无数据</div>
  137. </template>
  138. </div>
  139. </div>
  140. <div class="flex">
  141. <div class="flex_left">【解&nbsp;&nbsp;&nbsp;&nbsp;析】</div>
  142. <div class="flex_right">
  143. <template v-if="question.questionData?.analysis || question.parseImg">
  144. <Preview :type="question.sourceType"
  145. :content="question.questionData?.analysis"
  146. :imgBase64="question.parseImg" />
  147. </template>
  148. <template v-else>
  149. <div style="color: #999;">暂无数据</div>
  150. </template>
  151. </div>
  152. </div>
  153. </div>
  154. <div class="content" v-if="question.answerShow && !question.parseShow">
  155. <template v-if="question.isObjective === 1">
  156. <div v-if="question.studentAnswer">{{ question.studentAnswer }}</div>
  157. <div v-else style="color: #999;">暂无数据</div>
  158. </template>
  159. <template v-else>
  160. <template v-if="picUrl && questionVOS">
  161. <div style="height: 300px;">
  162. <PaperImage :imageIndex="index" :scoreFontSize="20" :rtOrWrSize="10"
  163. :paperImgUrl="picUrl" :drawData="questionVOS" />
  164. </div>
  165. </template>
  166. <div v-else style="color: #999;">暂无数据</div>
  167. </template>
  168. </div>
  169. </div>
  170. </div>
  171. <!-- 变式题推送 -->
  172. <div class="question_card" v-if="question.variationQuestion">
  173. <div class="card_top">
  174. <div class="card_top_info">
  175. <div class="left">
  176. <span class="number mr_10"
  177. :class="countLevel(question.variationQuestion.questionLevel).color">
  178. {{ countLevel(question.variationQuestion.questionLevel).text }}
  179. </span>
  180. <span class="gray">试题类型:</span>
  181. <span class="black" style="margin-right: 20px;">
  182. {{ question.variationQuestion.questionType }}
  183. </span>
  184. <span class="gray">难度:</span>
  185. <span style="font-weight: bold;"
  186. :class="countDiffcutyClass(question.variationQuestion.difficulty)">
  187. {{ question.variationQuestion.difficulty }}
  188. </span>
  189. </div>
  190. </div>
  191. <div class="question_content line_height_20">
  192. <Preview :type="1" :content="question.variationQuestion?.questionStem" />
  193. </div>
  194. <!-- <div class="yuwen">
  195. <span class="btn_span active">1</span>
  196. <span class="btn_span">2</span>
  197. <div class="question_list"></div>
  198. </div> -->
  199. <div class="card_footer">
  200. <div class="gray">知识点:</div>
  201. <template v-for="(know, index) in question.variationQuestion.knowledgePoint">
  202. <KnowledgePoint :text="know" />
  203. </template>
  204. </div>
  205. </div>
  206. </div>
  207. </div>
  208. <div style="text-align: right;">
  209. <el-pagination background layout="prev, pager, next" :total="pageParam.total"
  210. :page-size="pageParam.pageSize" :current-page="pageParam.pageNum"
  211. @current-change="handleCurrentChange">
  212. </el-pagination>
  213. </div>
  214. </template>
  215. <NoData v-else>暂无数据</NoData>
  216. </div>
  217. </div>
  218. </template>
  219. <script>
  220. import {
  221. queryStudentErrorQuestion,
  222. markStudentErrorQuestion,
  223. downloadStudentErrorQuestion,
  224. findStudentCard
  225. } from '../../../http/api/errorQuestion';
  226. import Download from './Download.vue';
  227. import { mergeImage } from './loadImg.js'
  228. import { Loading } from 'element-ui';
  229. import NoData from './NoData/NoData.vue';
  230. import KnowledgePoint from './KnowledgePoint.vue';
  231. import Preview from './Preview.vue';
  232. import PaperImage from '@/components/PaperImage.vue';
  233. import { confirm } from '../../../utils/common.js'
  234. export default {
  235. components: {
  236. Download,
  237. NoData,
  238. KnowledgePoint,
  239. Preview,
  240. PaperImage,
  241. },
  242. data() {
  243. return {
  244. pageParam: {
  245. pageNum: 1,
  246. pageSize: 10,
  247. total: 0,
  248. },
  249. questionList: [],
  250. allErrorCount: 0,
  251. unMasterCount: 0,
  252. masterCount: 0,
  253. reviewCount: 0,
  254. answerUrls: [],
  255. uploadPaperUrls: [],
  256. errorType: -1, // -1全部 0未掌握 1已掌握 2复习题
  257. examId: null,
  258. examType: null,
  259. gradeCode: null,
  260. downloadDialogVisible: false,
  261. isVariation: 0,
  262. picUrl: null,
  263. questionVOS: [],
  264. };
  265. },
  266. computed: {
  267. subjectCode() {
  268. return this.$store.state.report.filterObject.subjectCode;
  269. }, //分析报告公共参数变量
  270. IsVariation() {
  271. return this.$store.state.question.isVariation;
  272. },
  273. canBtnClick() {
  274. const has = this.questionList.find(question => {
  275. return !question.questionImg && !question.questionData?.questionStem
  276. })
  277. console.log('has', has)
  278. if (has) {
  279. this.$store.commit('question/setCanDownloanBtnClick', false)
  280. return false
  281. } else {
  282. this.$store.commit('question/setCanDownloanBtnClick', true)
  283. return true
  284. }
  285. }
  286. },
  287. watch: {
  288. subjectCode(newVal, oldVal) {
  289. if (newVal !== oldVal) {
  290. this._queryStudentErrorQuestion();
  291. }
  292. },
  293. IsVariation(newVal) {
  294. if (newVal === 0 || newVal === 1) {
  295. this.downloadDialogVisible = true
  296. this.isVariation = newVal
  297. }
  298. },
  299. },
  300. created() {
  301. const ExamInfoItem = JSON.parse(localStorage.getItem("ExamInfoItem") || "{}");
  302. const reportExamCourseItem = JSON.parse(localStorage.getItem("reportExamCourseItem") || "{}");
  303. this.examId = reportExamCourseItem.examId;
  304. this.gradeCode = ExamInfoItem.examData.gradeCode;
  305. this.examType = ExamInfoItem.examData.examType;
  306. },
  307. async mounted() {
  308. await this._queryStudentErrorQuestion();
  309. },
  310. methods: {
  311. countGlobalIndex(index) {
  312. return (this.pageParam.pageNum - 1) * this.pageParam.pageSize + index;
  313. },
  314. countDiffcutyClass(difficulty) {
  315. // 容易:#90CB75 较易:#FAC858 一般:#5470C6 较难:#EA7ACB 困难:#EE6666
  316. const classMap = {
  317. '容易': 'easy',
  318. '较易': 'medium_easy',
  319. '一般': 'medium',
  320. '较难': 'medium_hard',
  321. '困难': 'hard'
  322. }
  323. return classMap[difficulty] || ''
  324. },
  325. countLevel(num) {
  326. // 1 :拔高题 2:进阶题 3:巩固题
  327. const arr = ['拔高题', '进阶题', '巩固题']
  328. const color = ['bg_hard', 'bg_medium', 'bg_easy',]
  329. return {
  330. text: arr[num - 1],
  331. color: color[num - 1],
  332. }
  333. },
  334. ShowAnserAndParse(type, question) {
  335. if (type === 1) {
  336. if (question.isObjective === 1) {
  337. question.answerShow = !question.answerShow;
  338. question.parseShow = false
  339. return;
  340. }
  341. findStudentCard({
  342. examId: this.examId,
  343. subjectCode: this.subjectCode,
  344. questionId: question.questionId,
  345. }).then(res => {
  346. if (res.code === 200) {
  347. if (res.data && res.data.pageVOS && res.data.pageVOS.length > 0) {
  348. const data = res.data.pageVOS[0]
  349. this.picUrl = data.picUrl;
  350. this.questionVOS = data.questionVOS.map(item => {
  351. return {
  352. ...item,
  353. samplingPosition: '{"x":195,"y":247,"page":1}'
  354. }
  355. });
  356. } else {
  357. this.picUrl = null;
  358. this.questionVOS = [];
  359. }
  360. question.answerShow = !question.answerShow;
  361. question.parseShow = false
  362. }
  363. })
  364. }
  365. if (type === 2) {
  366. question.parseShow = !question.parseShow;
  367. question.answerShow = false
  368. }
  369. },
  370. async _queryStudentErrorQuestion() {
  371. const instance = Loading.service({ fullscreen: true });
  372. const { subjectCode, gradeCode, examType, examId, errorType, pageParam: { pageNum, pageSize } } = this
  373. const res = await queryStudentErrorQuestion({ subjectCode, gradeCode, examType, examId, errorType, pageNum, pageSize });
  374. if (res.code === 200) {
  375. const { allErrorCount, unMasterCount, masterCount, reviewCount, questionList, answerUrls, uploadPaperUrls } = res.data.records[0];
  376. this.allErrorCount = allErrorCount;
  377. this.masterCount = masterCount;
  378. this.unMasterCount = unMasterCount;
  379. this.reviewCount = reviewCount;
  380. this.answerUrls = answerUrls;
  381. this.uploadPaperUrls = uploadPaperUrls;
  382. this.pageParam.total = res.data.total * 1;
  383. // 并行合并图片:先为每道题准备 promise,然后使用 Promise.all 并发执行
  384. const processedQuestions = await Promise.all(questionList.map(async (q) => {
  385. q.answerShow = false;
  386. q.parseShow = false;
  387. const { sourceType, titleCoordinates, answerCoordinates, parseCoordinates } = q;
  388. if (sourceType === 2) {
  389. try {
  390. const [questionImg, answerImg, parseImg] = await Promise.all([
  391. mergeImage(this.uploadPaperUrls, titleCoordinates),
  392. mergeImage(this.answerUrls, answerCoordinates),
  393. mergeImage(this.answerUrls, parseCoordinates),
  394. ]);
  395. q.questionImg = questionImg || '';
  396. q.answerImg = answerImg || '';
  397. q.parseImg = parseImg || '';
  398. } catch (e) {
  399. // 如果合并过程中某张图失败,记录空字符串并继续,避免阻塞全部渲染
  400. q.questionImg = q.questionImg || '';
  401. q.answerImg = q.answerImg || '';
  402. q.parseImg = q.parseImg || '';
  403. }
  404. }
  405. return q;
  406. }));
  407. this.questionList = processedQuestions;
  408. // 缓慢滚动到顶部
  409. this.scrollToTop();
  410. }
  411. instance.close();
  412. },
  413. scrollToTop() {
  414. // 等待 DOM 更新完成
  415. this.$nextTick(() => {
  416. const container = document.querySelector('.content_right');
  417. if (container) {
  418. container.scrollTo({ top: 0, behavior: 'smooth' });
  419. }
  420. });
  421. },
  422. async _markStudentErrorQuestion(question, markStatus) {
  423. const res = await markStudentErrorQuestion({
  424. questionId: question.questionId,
  425. examId: this.examId,
  426. subjectCode: this.subjectCode,
  427. markStatus
  428. })
  429. if (res.code === 200) {
  430. this.$message.success('操作成功');
  431. await this._queryStudentErrorQuestion();
  432. } else {
  433. this.$message.error(res.message || '操作失败');
  434. }
  435. },
  436. async handleCurrentChange(page) {
  437. this.pageParam.pageNum = page;
  438. await this._queryStudentErrorQuestion();
  439. },
  440. hasTuozhan() {
  441. // 查看题目中第一个 变式题为空 的题目
  442. const questionWithVariation = this.questionList.find(q => !q.variationQuestion);
  443. if (questionWithVariation) {
  444. return false; // 存在题目没有变式题
  445. }
  446. return true; // 所有题目都有变式题
  447. },
  448. downLoadPapers() {
  449. const hasVariation = this.hasTuozhan();
  450. if (!hasVariation) {
  451. confirm('教师还未确认变式题,是否继续下载?', () => {
  452. this.downloadDialogVisible = true;
  453. this.isVariation = 1;
  454. })
  455. } else {
  456. this.downloadDialogVisible = true;
  457. this.isVariation = 1;
  458. }
  459. }
  460. },
  461. }
  462. </script>
  463. <style scoped lang="scss">
  464. .flex {
  465. display: flex;
  466. margin-bottom: 10px;
  467. .flex_left {
  468. width: 80px;
  469. }
  470. .flex_right {
  471. flex: 1;
  472. display: flex;
  473. flex-wrap: wrap;
  474. }
  475. }
  476. .bg_easy {
  477. background-color: #3BA272 !important;
  478. }
  479. .bg_medium {
  480. background-color: #5470C6 !important;
  481. }
  482. .bg_hard {
  483. background-color: #EE6666 !important;
  484. }
  485. .select_box {
  486. background-color: #ffffff;
  487. border-radius: 10px;
  488. padding: 10px;
  489. margin-bottom: 10px;
  490. }
  491. .content {
  492. background-color: #ffffff;
  493. border-radius: 10px;
  494. padding: 20px;
  495. margin-bottom: 10px;
  496. }
  497. .right_btn {
  498. display: flex;
  499. justify-content: flex-end;
  500. margin-bottom: 10px;
  501. }
  502. .question_card {
  503. margin-bottom: 20px;
  504. border: 1px solid #ebeef5;
  505. border-radius: 10px;
  506. overflow: hidden;
  507. .card_top {
  508. padding: 20px;
  509. }
  510. .card_top_info {
  511. display: flex;
  512. justify-content: space-between;
  513. margin-bottom: 20px;
  514. .left {
  515. display: flex;
  516. align-items: center;
  517. span {
  518. font-size: 14px;
  519. }
  520. .tag {
  521. color: #ffffff;
  522. padding: 4px 5px;
  523. font-size: 12px;
  524. background-color: #F56C6C;
  525. border-radius: 2px;
  526. position: relative;
  527. &::before {
  528. content: '';
  529. position: absolute;
  530. left: -5px;
  531. top: 50%;
  532. transform: translateY(-50%);
  533. width: 0;
  534. height: 0;
  535. border-top: 5px solid transparent;
  536. border-bottom: 5px solid transparent;
  537. border-right: 5px solid #EE6666;
  538. }
  539. }
  540. }
  541. }
  542. .number {
  543. color: #ffffff;
  544. font-size: 14px;
  545. padding: 5px 9px;
  546. background-color: #2E64FA;
  547. border-radius: 4px;
  548. }
  549. .btn_span {
  550. color: #2E64FA;
  551. font-size: 14px;
  552. padding: 5px 9px;
  553. border: 1px solid #2E64FA;
  554. border-radius: 4px;
  555. cursor: pointer;
  556. margin-right: 10px;
  557. &.active {
  558. color: #ffffff;
  559. background-color: #2E64FA;
  560. border-radius: 4px;
  561. }
  562. }
  563. .gray {
  564. color: #999;
  565. }
  566. .black {
  567. color: #333;
  568. }
  569. .blue {
  570. color: #2E64FA;
  571. }
  572. .question_content {
  573. margin-bottom: 20px;
  574. }
  575. .yuwen {
  576. margin-top: 20px;
  577. .question_list {
  578. margin-top: 20px;
  579. height: 100px;
  580. padding-top: 20px;
  581. border-top: 1px solid #EBEEF5;
  582. }
  583. }
  584. .card_footer {
  585. display: flex;
  586. align-items: center;
  587. padding-top: 20px;
  588. border-top: 1px solid #EBEEF5;
  589. .footer_item {
  590. margin-right: 40px;
  591. }
  592. }
  593. .card_buttom {
  594. background-color: #f7f7f8;
  595. padding: 15px 20px;
  596. .btn_box {
  597. display: flex;
  598. justify-content: flex-end;
  599. span {
  600. cursor: pointer;
  601. }
  602. }
  603. .content {
  604. padding: 20px;
  605. background-color: #ffffff;
  606. margin-top: 20px;
  607. border-radius: 10px;
  608. .content_inner {
  609. border: 2px dotted #DCDFE6;
  610. border-radius: 4px;
  611. padding: 10px;
  612. }
  613. }
  614. .parseShow_content {
  615. position: relative;
  616. &::before {
  617. content: '';
  618. position: absolute;
  619. right: 20px;
  620. /* 根据需要调整三角水平位置 */
  621. top: 24px;
  622. /* 三角放置在外部,超出上方 */
  623. width: 0;
  624. height: 0;
  625. border-left: 10px solid transparent;
  626. border-right: 10px solid transparent;
  627. border-bottom: 12px solid #ffffff;
  628. z-index: 2;
  629. }
  630. }
  631. .answerShow_content {
  632. position: relative;
  633. &::before {
  634. content: '';
  635. position: absolute;
  636. right: 20px;
  637. /* 根据需要调整三角水平位置 */
  638. top: 24px;
  639. /* 三角放置在外部,超出上方 */
  640. width: 0;
  641. height: 0;
  642. border-left: 10px solid transparent;
  643. border-right: 10px solid transparent;
  644. border-bottom: 12px solid #ffffff;
  645. z-index: 2;
  646. }
  647. }
  648. }
  649. ::v-deep .qml-answer {
  650. margin-left: 0;
  651. margin-bottom: 0;
  652. }
  653. ::v-deep .qml-explanation .qml-seg p {
  654. margin-left: 0 !important;
  655. }
  656. ::v-deep .qml-explanation .qml-seg p,
  657. ::v-deep .qml-exps-sq {
  658. margin-left: 0 !important;
  659. }
  660. }
  661. </style>