LearnHelper.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. <template>
  2. <div class="learn_container">
  3. <el-card class="header" style="padding-bottom: 0">
  4. <div class="tab">
  5. <div
  6. class="tab_item pointer"
  7. v-for="item in tabList"
  8. :class="tabActive == item.value ? 'tab_active' : ''"
  9. @click="switchTab(item.value)"
  10. >
  11. {{ item.label }}
  12. </div>
  13. </div>
  14. </el-card>
  15. <!-- 收藏夹 -->
  16. <div class="content">
  17. <collect v-if="tabActive == 0"></collect>
  18. <!-- 错题本 -->
  19. <mistake v-if="tabActive == 1"></mistake>
  20. <!-- 学习记录 -->
  21. <div class="record_content" v-show="tabActive == 2">
  22. <div class="record_contian">
  23. <div class="tit">数据统计(总)</div>
  24. <div style="display: flex; justify-content: space-between">
  25. <div class="count_item">
  26. <img src="" alt="" />
  27. <div class="count_intro">
  28. <p style="color: #ff974d">{{ learnInfo.videoCount }}</p>
  29. <p class="gary">共看完视频(节)</p>
  30. </div>
  31. </div>
  32. <div class="count_item">
  33. <img src="" alt="" />
  34. <div class="count_intro">
  35. <p style="color: #89928a">{{ learnInfo.videoMinutes }}</p>
  36. <p class="gary">共看完视频时长(分钟)</p>
  37. </div>
  38. </div>
  39. <div class="count_item">
  40. <img src="" alt="" />
  41. <div class="count_intro">
  42. <p style="color: #86dcf2">{{ learnInfo.questionCount }}</p>
  43. <p class="gary">共完成习题</p>
  44. </div>
  45. </div>
  46. <div class="count_item">
  47. <img src="" alt="" />
  48. <div class="count_intro">
  49. <p style="color: #ee625c">
  50. {{
  51. learnInfo.correctPercent == "" ? 0 : learnInfo.correctPercent
  52. }}
  53. </p>
  54. <p class="gary">正确率</p>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. <div class="record_contian">
  60. <div class="tit">数据统计(周)</div>
  61. <el-form
  62. :inline="true"
  63. :model="dateForm"
  64. :rules="dateRule"
  65. ref="ruleForm"
  66. class="demo-form-inline"
  67. >
  68. <div class="date_contain">
  69. <el-form-item label="日期" prop="year">
  70. <el-select
  71. v-model="dateForm.year"
  72. placeholder="年份"
  73. size="small"
  74. >
  75. <el-option
  76. v-for="(item, index) in dateYears"
  77. :key="index"
  78. :value="item"
  79. :label="item + '年'"
  80. >
  81. </el-option>
  82. </el-select>
  83. </el-form-item>
  84. <el-form-item label="" prop="month">
  85. <el-select
  86. v-model="dateForm.month"
  87. placeholder="月份"
  88. size="small"
  89. >
  90. <el-option
  91. v-for="(item, index) in dateMonth"
  92. :key="index"
  93. :value="item"
  94. :label="item + '月'"
  95. >
  96. </el-option>
  97. </el-select>
  98. </el-form-item>
  99. <el-form-item label="周" prop="week">
  100. <el-select
  101. v-model="dateForm.week"
  102. placeholder="第几周"
  103. size="small"
  104. >
  105. <el-option
  106. v-for="(item, index) in dateWeek"
  107. :key="index"
  108. :value="item"
  109. :label="'第' + item + '周'"
  110. >
  111. </el-option>
  112. </el-select>
  113. </el-form-item>
  114. <el-button
  115. style="margin-left: 24px; width: 100px; height: 40px"
  116. type="primary"
  117. icon="el-icon-search"
  118. @click="searchData"
  119. ></el-button>
  120. </div>
  121. </el-form>
  122. <div style="display: flex; justify-content: space-around">
  123. <div style="width: 300px; height: 269px" id="echarts_quecount"></div>
  124. <div style="width: 320px; height: 269px" id="echarts_queBySub"></div>
  125. <div
  126. style="width: 300px; height: 269px"
  127. id="echarts_videocount"
  128. ></div>
  129. <div style="width: 320px; height: 269px" id="echarts_vidBysub"></div>
  130. </div>
  131. </div>
  132. <div class="record_contian">
  133. <div class="tit">学习记录</div>
  134. <div class="video_contian" v-if="videoRecord.length > 0">
  135. <div class="video_item" v-for="item in videoRecord" :key="item.id">
  136. <img :src="item.pict" alt="" />
  137. <p>{{ item.title }}</p>
  138. <p>
  139. {{ item.percent > 90 ? "已看完" : "观看" + item.percent + "%" }}
  140. </p>
  141. </div>
  142. </div>
  143. <div class="empty" v-else>
  144. <img src="@/assets/images/icon_data.png" />
  145. <span>没有信息</span>
  146. </div>
  147. </div>
  148. <div class="record_contian">
  149. <div class="tit">知识点诊断记录</div>
  150. <div>
  151. <el-table :data="knowRecord" style="width: 100%">
  152. <el-table-column prop="day" label="日期"> </el-table-column>
  153. <el-table-column prop="coursename" label="科目"> </el-table-column>
  154. <el-table-column prop="knowledgeName" label="知识点" width="500">
  155. </el-table-column>
  156. <el-table-column label="用时">
  157. <template slot-scope="scope">
  158. {{
  159. scope.row.seconds != "null"
  160. ? Math.ceil(scope.row.seconds / 60) + "分钟"
  161. : scope.row.seconds
  162. }}
  163. </template>
  164. </el-table-column>
  165. <el-table-column prop="wrongs" label="正确率">
  166. <template slot-scope="scope">
  167. {{ (scope.row.rights / 10) * 100 }}%
  168. </template>
  169. </el-table-column>
  170. <template slot="empty">
  171. <div class="empty">
  172. <img src="@/assets/images/icon_data.png" />
  173. <span>没有信息</span>
  174. </div>
  175. </template>
  176. </el-table>
  177. </div>
  178. </div>
  179. </div>
  180. </div>
  181. </div>
  182. </template>
  183. <script>
  184. import Collect from './components/collect'
  185. import Mistake from './components/mistake'
  186. import {
  187. summary,
  188. questionStatsByDay,
  189. videoStatsBySubject,
  190. videoStatsByDay,
  191. questionStatsBySubject,
  192. videoWatchRecords,
  193. knowRecords,
  194. queCancelCollect,
  195. queCollect,
  196. } from "@/api/webApi/webQue.js";
  197. const echarts = require("echarts/lib/echarts");
  198. require("echarts/lib/component/title");
  199. require("echarts/lib/component/tooltip");
  200. require("echarts/lib/component/grid");
  201. require("echarts/lib/component/legend");
  202. require("echarts/lib/chart/line");
  203. require("echarts/lib/chart/pie");
  204. var date = new Date();
  205. var myChart1;
  206. var myChart2;
  207. var myChart3;
  208. var myChart4;
  209. var flag = 1;
  210. export default {
  211. components: {Collect,Mistake},
  212. data() {
  213. return {
  214. tabActive: 0,
  215. tabList: [
  216. {
  217. label:'收藏夹',
  218. value:0
  219. },
  220. {
  221. label:'错题本',
  222. value:1
  223. },
  224. {
  225. label:'学习记录',
  226. value:2
  227. }
  228. ],
  229. dateYears: [2021, 2020],
  230. dateMonth: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
  231. dateWeek: [1, 2, 3, 4, 5],
  232. form: {
  233. type: "",
  234. subjectName: "",
  235. qtype: "",
  236. worngSubjectName: "",
  237. wrongType: "",
  238. },
  239. types: [
  240. { type: "question", name: "试题收藏" },
  241. { type: "paper", name: "试卷收藏" },
  242. ],
  243. subjects: [],
  244. queTypes: [],
  245. collectQue: [],
  246. collectPaper: [],
  247. pageSize: 10,
  248. pageNum: 1,
  249. total: 0,
  250. learnInfo: {},
  251. dateForm: {
  252. year: date.getFullYear(),
  253. month: date.getMonth() + 1,
  254. week: date.getDay / 7 > 0 ? date.getDay / 7 : 5,
  255. },
  256. dateRule: {
  257. year: [{ required: true, message: "请选择年份", trigger: "change" }],
  258. month: [{ required: true, message: "请选择月份", trigger: "change" }],
  259. week: [{ required: true, message: "请选择周数", trigger: "change" }],
  260. },
  261. knowRecord: [],
  262. videoRecord: [],
  263. // 数据统计-做题数量
  264. queCountOption: {
  265. title: {
  266. text: "做题数目(道数)",
  267. textStyle: {
  268. color: "#676767",
  269. fontWeight: "400",
  270. fontSize: 16,
  271. },
  272. },
  273. tooltip: {
  274. trigger: "axis",
  275. },
  276. xAxis: {
  277. type: "category",
  278. data: ["周一", "周二", "周三", "周四", "周五", "周六", "周七"],
  279. axisTick: {
  280. show: false,
  281. },
  282. },
  283. yAxis: {
  284. type: "value",
  285. axisTick: {
  286. show: false,
  287. },
  288. axisLine: { show: false },
  289. },
  290. series: [
  291. {
  292. data: [0, 0, 0, 0, 0, 0, 0],
  293. type: "line",
  294. name: "做题数",
  295. lineStyle: {
  296. color: "#47c6a2",
  297. width: 2,
  298. },
  299. itemStyle: {
  300. normal: {
  301. color: "#47c6a2",
  302. borderColor: "#47c6a2", //拐点边框颜色
  303. },
  304. },
  305. },
  306. ],
  307. },
  308. // 数据统计-视频时长
  309. videoCountOption: {
  310. title: {
  311. text: "看视频时长(分钟)",
  312. textStyle: {
  313. color: "#676767",
  314. fontWeight: "400",
  315. fontSize: 16,
  316. },
  317. },
  318. tooltip: {
  319. trigger: "axis",
  320. },
  321. xAxis: {
  322. type: "category",
  323. data: ["周一", "周二", "周三", "周四", "周五", "周六", "周七"],
  324. axisTick: {
  325. show: false,
  326. },
  327. },
  328. yAxis: {
  329. type: "value",
  330. axisTick: {
  331. show: false,
  332. },
  333. axisLine: { show: false },
  334. },
  335. series: [
  336. {
  337. data: [0, 0, 0, 0, 0, 0, 0],
  338. type: "line",
  339. name: "观看时长",
  340. lineStyle: {
  341. color: "#2EC7C9",
  342. width: 2,
  343. },
  344. itemStyle: {
  345. normal: {
  346. color: "#2EC7C9",
  347. borderColor: "#2EC7C9", //拐点边框颜色
  348. },
  349. },
  350. },
  351. ],
  352. },
  353. // 数据统计-做题数量 根据科目
  354. queSubCount: {
  355. title: {
  356. text: "学科分类数据(道数)",
  357. textStyle: {
  358. color: "#676767",
  359. fontWeight: "400",
  360. fontSize: 16,
  361. },
  362. },
  363. tooltip: {
  364. trigger: "item",
  365. },
  366. color: [
  367. "#5B8FF9",
  368. "#5AD8A6",
  369. "#DEEAFF",
  370. "#FFE18B",
  371. "#FEB3A2",
  372. "#BAEF83",
  373. "#DBC7FA",
  374. "#FFE6D2",
  375. "#76DDDC",
  376. ],
  377. legend: {
  378. orient: "vertical",
  379. left: "right",
  380. align: "left",
  381. icon: "circle",
  382. top: "20",
  383. },
  384. series: [
  385. {
  386. name: "做题数",
  387. type: "pie",
  388. radius: "70%",
  389. data: [
  390. { value: 0, name: "语文" },
  391. { value: 0, name: "数学" },
  392. { value: 0, name: "英语" },
  393. { value: 0, name: "物理" },
  394. { value: 0, name: "化学" },
  395. { value: 0, name: "生物" },
  396. { value: 0, name: "历史" },
  397. { value: 0, name: "地理" },
  398. { value: 0, name: "政治" },
  399. ],
  400. left: "-80",
  401. label: {
  402. position: "inside",
  403. formatter: "{c}",
  404. color: "#000000",
  405. },
  406. labelLine: {
  407. show: false,
  408. },
  409. },
  410. ],
  411. },
  412. // 数据统计-视频时长 根据科目
  413. vidSubCount: {
  414. title: {
  415. text: "学科分类数据(分钟)",
  416. textStyle: {
  417. color: "#676767",
  418. fontWeight: "400",
  419. fontSize: 16,
  420. },
  421. },
  422. tooltip: {
  423. trigger: "item",
  424. },
  425. color: [
  426. "#5B8FF9",
  427. "#5AD8A6",
  428. "#DEEAFF",
  429. "#FFE18B",
  430. "#FEB3A2",
  431. "#BAEF83",
  432. "#DBC7FA",
  433. "#FFE6D2",
  434. "#76DDDC",
  435. ],
  436. legend: {
  437. orient: "vertical",
  438. left: "right",
  439. align: "left",
  440. icon: "circle",
  441. top: "20",
  442. },
  443. series: [
  444. {
  445. name: "做题时长",
  446. type: "pie",
  447. radius: "70%",
  448. data: [
  449. { value: 0, name: "语文" },
  450. { value: 0, name: "数学" },
  451. { value: 0, name: "英语" },
  452. { value: 0, name: "物理" },
  453. { value: 0, name: "化学" },
  454. { value: 0, name: "生物" },
  455. { value: 0, name: "历史" },
  456. { value: 0, name: "地理" },
  457. { value: 0, name: "政治" },
  458. ],
  459. label: {
  460. position: "inside",
  461. formatter: "{c}",
  462. color: "#000000",
  463. },
  464. left: "-80",
  465. labelLine: {
  466. show: false,
  467. },
  468. },
  469. ],
  470. },
  471. };
  472. },
  473. created() {
  474. // 设置默认高亮
  475. this.tabActive = this.$route.query.tabActive
  476. ? this.$route.query.tabActive
  477. : 0;
  478. this.switchTab(this.tabActive);
  479. },
  480. methods: {
  481. switchTab(index) {
  482. this.tabActive = index;
  483. if (this.tabActive == 1) {
  484. } else if (this.tabActive == 2 && flag == 1) {
  485. let queCountChart = document.getElementById("echarts_quecount");
  486. myChart1 = echarts.init(queCountChart);
  487. myChart1.setOption(this.queCountOption);
  488. let videoCountChart = document.getElementById("echarts_videocount");
  489. myChart2 = echarts.init(videoCountChart);
  490. myChart2.setOption(this.videoCountOption);
  491. let queBySubChart = document.getElementById("echarts_queBySub");
  492. myChart3 = echarts.init(queBySubChart);
  493. myChart3.setOption(this.queSubCount);
  494. let vidBySubChart = document.getElementById("echarts_vidBysub");
  495. myChart4 = echarts.init(vidBySubChart);
  496. myChart4.setOption(this.vidSubCount);
  497. flag++;
  498. }
  499. if (index == 2) {
  500. this.getSummary();
  501. this.searchData();
  502. }
  503. },
  504. getSummary() {
  505. summary().then((res) => {
  506. this.learnInfo = res.data;
  507. console.log(res);
  508. });
  509. },
  510. // 数据统计-做题数量-按天
  511. getQuestionStatsByDay() {
  512. questionStatsByDay({
  513. year: this.dateForm.year,
  514. month: this.dateForm.month,
  515. week: this.dateForm.week,
  516. }).then((res) => {
  517. let arr = [];
  518. const kesArr = Object.keys(res.data).sort();
  519. for (const key of kesArr) {
  520. arr.push(res.data[key]);
  521. }
  522. this.queCountOption.series[0].data = arr;
  523. myChart1.setOption(this.queCountOption);
  524. });
  525. },
  526. // 数据统计-视频观看时长 - 按天
  527. getVideoStatsByDay() {
  528. videoStatsByDay({
  529. year: this.dateForm.year,
  530. month: this.dateForm.month,
  531. week: this.dateForm.week,
  532. }).then((res) => {
  533. let arr = [];
  534. const kesArr = Object.keys(res.data).sort();
  535. for (const key of kesArr) {
  536. arr.push(res.data[key]);
  537. }
  538. this.videoCountOption.series[0].data = arr;
  539. myChart2.setOption(this.videoCountOption);
  540. });
  541. },
  542. // 数据统计-视频观看时长 - 按学科
  543. getVideoStatsBySubject() {
  544. videoStatsBySubject({
  545. year: this.dateForm.year,
  546. month: this.dateForm.month,
  547. week: this.dateForm.week,
  548. }).then((res) => {
  549. console.log(res);
  550. if (Object.keys(res.data).length > 0) {
  551. console.log(res);
  552. let objArr = [];
  553. for (const key in res.data) {
  554. objArr.push({ name: key, value: res.data[key] });
  555. }
  556. console.log(objArr);
  557. this.vidSubCount.series[0].data = objArr;
  558. myChart4.setOption(this.vidSubCount);
  559. } else {
  560. this.vidSubCount.series[0].data = [
  561. { value: 0, name: "语文" },
  562. { value: 0, name: "数学" },
  563. { value: 0, name: "英语" },
  564. { value: 0, name: "物理" },
  565. { value: 0, name: "化学" },
  566. { value: 0, name: "生物" },
  567. { value: 0, name: "历史" },
  568. { value: 0, name: "地理" },
  569. { value: 0, name: "政治" },
  570. ];
  571. myChart4.setOption(this.vidSubCount);
  572. }
  573. });
  574. },
  575. // 数据统计-做题数量 - 按学科
  576. getQuestionStatsBySubject() {
  577. questionStatsBySubject({
  578. year: this.dateForm.year,
  579. month: this.dateForm.month,
  580. week: this.dateForm.week,
  581. }).then((res) => {
  582. if (Object.keys(res.data).length > 0) {
  583. console.log(res);
  584. let objArr = [];
  585. for (const key in res.data) {
  586. objArr.push({ name: key, value: res.data[key] });
  587. }
  588. console.log(objArr);
  589. this.queSubCount.series[0].data = objArr;
  590. myChart3.setOption(this.queSubCount);
  591. } else {
  592. this.queSubCount.series[0].data = [
  593. { value: 0, name: "语文" },
  594. { value: 0, name: "数学" },
  595. { value: 0, name: "英语" },
  596. { value: 0, name: "物理" },
  597. { value: 0, name: "化学" },
  598. { value: 0, name: "生物" },
  599. { value: 0, name: "历史" },
  600. { value: 0, name: "地理" },
  601. { value: 0, name: "政治" },
  602. ];
  603. myChart3.setOption(this.queSubCount);
  604. }
  605. });
  606. },
  607. // 视频学习记录
  608. getVideoRecord() {
  609. videoWatchRecords({
  610. year: this.dateForm.year,
  611. month: this.dateForm.month,
  612. week: this.dateForm.week,
  613. }).then((res) => {
  614. this.videoRecord = res.data;
  615. console.log(res);
  616. });
  617. },
  618. // 知识点诊断记录
  619. getKnowRecords() {
  620. knowRecords({
  621. year: this.dateForm.year,
  622. month: this.dateForm.month,
  623. week: this.dateForm.week,
  624. }).then((res) => {
  625. this.knowRecord = res.data;
  626. console.log(this.knowRecord);
  627. });
  628. },
  629. searchData() {
  630. console.log(this.dateForm);
  631. this.$refs.ruleForm.validate((valid) => {
  632. if (valid) {
  633. this.getQuestionStatsByDay();
  634. this.getVideoStatsByDay();
  635. this.getQuestionStatsBySubject();
  636. this.getVideoStatsBySubject();
  637. this.getVideoRecord();
  638. this.getKnowRecords();
  639. /* this.getVideoStatsByDay();
  640. this.getQuestionStatsBySubject(); */
  641. } else {
  642. console.log("error submit!!");
  643. return false;
  644. }
  645. });
  646. },
  647. toCollectQue(item) {
  648. queCollect({ questionId: item.id }).then((res) => {
  649. item.collect = !item.collect;
  650. this.msgSuccess("收藏成功");
  651. console.log(res);
  652. });
  653. },
  654. toCancelCollectQue(item) {
  655. queCancelCollect({ questionId: item.id }).then((res) => {
  656. item.collect = !item.collect;
  657. this.msgSuccess("取消收藏成功");
  658. console.log(res);
  659. });
  660. },
  661. },
  662. };
  663. </script>
  664. <style scoped>
  665. .empty {
  666. display: flex;
  667. justify-content: center;
  668. flex-direction: column;
  669. align-items: center;
  670. font-size: 14px;
  671. color: #909399;
  672. }
  673. .learn_container {
  674. padding: 20px;
  675. background: #f7f7f7;
  676. min-height: 100vh;
  677. }
  678. .header {
  679. margin-bottom: 16px;
  680. }
  681. .content {
  682. background: #fff;
  683. padding: 20px;
  684. }
  685. .record_content .record_contian {
  686. border-radius: 8px;
  687. margin-bottom: 20px;
  688. background: #fff;
  689. padding: 32px 28px;
  690. }
  691. .record_content .record_contian .tit {
  692. color: #47c6a2;
  693. margin-bottom: 36px;
  694. }
  695. .record_content .record_contian .count_item img {
  696. margin-right: 16px;
  697. }
  698. .tab {
  699. display: flex;
  700. margin-bottom: 14px;
  701. border-bottom: 1px solid #dedede;
  702. }
  703. .delete > div:first-child > span {
  704. color: #f44949;
  705. }
  706. .tab .tab_item {
  707. flex: 1;
  708. cursor: pointer;
  709. text-align: center;
  710. font-size: 16px;
  711. font-family: PingFangSC-Medium, PingFang SC;
  712. font-weight: 500;
  713. line-height: 22px;
  714. padding-bottom: 28px;
  715. position: relative;
  716. }
  717. .tab .tab_active {
  718. color: #47c6a2;
  719. }
  720. .tab .tab_active::after {
  721. content: "";
  722. height: 4px;
  723. width: 100%;
  724. background: #47c6a2;
  725. position: absolute;
  726. transform: translateY(50%);
  727. left: 0;
  728. bottom: 0;
  729. }
  730. .gary {
  731. margin-top: 8px;
  732. font-size: 16px;
  733. font-family: PingFangSC-Regular, PingFang SC;
  734. font-weight: 400;
  735. color: #7a7a7a;
  736. line-height: 22px;
  737. }
  738. .date_contain > span {
  739. display: inline-block;
  740. border-radius: 1px;
  741. margin-right: 16px;
  742. font-size: 16px;
  743. }
  744. .video_contian {
  745. display: flex;
  746. }
  747. .video_contian img {
  748. width: 200px;
  749. }
  750. .video_contian .video_item {
  751. margin-right: 80px;
  752. }
  753. .video_contian .video_item > p:first-child {
  754. color: #4a4a4a;
  755. font-size: 14px;
  756. margin-top: 7px;
  757. margin-bottom: 4px;
  758. }
  759. .video_contian .video_item > p:last-child {
  760. font-size: 12px;
  761. color: #bdbdbd;
  762. }
  763. </style>