index.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840
  1. <template>
  2. <div class="body1" v-loading="isLoading">
  3. <!-- 教师数据 -->
  4. <div class="left">
  5. <div class="top">
  6. <div class="titleBox">
  7. <div class="title">基础概况</div>
  8. </div>
  9. <div class="dataBox">
  10. <div class="teafre">
  11. <div class="teaLeft">
  12. <div>教师总数</div>
  13. <div>{{ count }}</div>
  14. </div>
  15. <div class="teaLeft teaRigth">
  16. <div>周使用频次</div>
  17. <div>{{ weekCount }}</div>
  18. </div>
  19. </div>
  20. <div class="teafre" style="margin: 10px auto">
  21. <div class="teaLeft">
  22. <div>登录频次</div>
  23. <div>{{ loginCount }}</div>
  24. </div>
  25. <div class="teaLeft teaRigth">
  26. <div>人均使用频次</div>
  27. <div>{{ (loginCount / count).toFixed(0) }}</div>
  28. </div>
  29. </div>
  30. <TeaFre
  31. style="height: calc(100% - 150px)"
  32. :monthArray="loginCountMonthArray"
  33. ></TeaFre>
  34. </div>
  35. </div>
  36. <div class="bottom">
  37. <div class="titleBox">
  38. <div class="title">教师活跃度</div>
  39. </div>
  40. <div class="dataBox">
  41. <TeaAct
  42. style="height: calc(100% - 20px)"
  43. :cWorkSum="cWorkSum"
  44. ></TeaAct>
  45. </div>
  46. </div>
  47. </div>
  48. <div class="center">
  49. <div class="top">
  50. <div class="titleBox">
  51. <div class="title">教师行为数据</div>
  52. </div>
  53. <div class="dataBox">
  54. <div class="teafre" style="justify-content: flex-start">
  55. <div
  56. class="teaLeft"
  57. style="align-items: flex-end; width: calc(100% / 4 - 10px)"
  58. >
  59. <div>上传课程总数</div>
  60. <div>{{ courseCount }}</div>
  61. </div>
  62. <div
  63. class="teaLeft teaRigth"
  64. style="align-items: flex-end; width: calc(100% / 4 - 10px)"
  65. >
  66. <div>各年级课程上传平均数</div>
  67. <div>{{ gradeCourse.toFixed(0) }}</div>
  68. </div>
  69. <div
  70. class="teaLeft"
  71. style="align-items: flex-end; width: calc(100% / 4 - 10px)"
  72. >
  73. <div>各学科课程上传平均数</div>
  74. <div>{{ subjectCourse.toFixed(0) }}</div>
  75. </div>
  76. </div>
  77. <TeaData
  78. style="height: calc(100% - 62px)"
  79. :courseArray="courseArray"
  80. @openCourse="openCourse2"
  81. ></TeaData>
  82. </div>
  83. </div>
  84. <div class="bottom">
  85. <div class="titleBox">
  86. <div class="title">平台使用深度</div>
  87. </div>
  88. <div class="dataBox">
  89. <div class="allBox">
  90. <div class="allBox_left">
  91. <FunPlot :pusaDep="pusaDep"></FunPlot>
  92. </div>
  93. <div class="allBox_right">
  94. <div class="depth">
  95. <span>上传课程</span>
  96. <div>
  97. <el-progress
  98. :width="80"
  99. type="circle"
  100. :percentage="
  101. lightJson.upCourseTeachers
  102. ? (
  103. (lightJson.upCourseTeachers / lightJson.teachers) *
  104. 100
  105. ).toFixed(0)
  106. : 0
  107. "
  108. :stroke-width="15"
  109. :format="format"
  110. color="#106BFF"
  111. ></el-progress>
  112. </div>
  113. </div>
  114. <div class="depth">
  115. <span>创设项目</span>
  116. <div>
  117. <el-progress
  118. :width="80"
  119. type="circle"
  120. :percentage="
  121. lightJson.upCourseUsers
  122. ? (
  123. (lightJson.upCourseUsers / lightJson.teachers) *
  124. 100
  125. ).toFixed(0)
  126. : 0
  127. "
  128. :stroke-width="15"
  129. :format="format"
  130. color="#106BFF"
  131. ></el-progress>
  132. </div>
  133. </div>
  134. <div class="depth">
  135. <span>协同合作</span>
  136. <div>
  137. <el-progress
  138. :width="80"
  139. type="circle"
  140. :percentage="
  141. lightJson.upgCourseTeachers
  142. ? (
  143. (lightJson.upgCourseTeachers / lightJson.teachers) *
  144. 100
  145. ).toFixed(0)
  146. : 0
  147. "
  148. :stroke-width="15"
  149. :format="format"
  150. color="#106BFF"
  151. ></el-progress>
  152. </div>
  153. </div>
  154. <div class="depth">
  155. <span>互动交流</span>
  156. <div>
  157. <el-progress
  158. :width="80"
  159. type="circle"
  160. :percentage="
  161. lightJson.commentUsers
  162. ? (
  163. (lightJson.commentUsers / lightJson.teachers) *
  164. 100
  165. ).toFixed(0)
  166. : 0
  167. "
  168. :stroke-width="15"
  169. :format="format"
  170. color="#106BFF"
  171. ></el-progress>
  172. </div>
  173. </div>
  174. <div class="depth">
  175. <span>添加目标</span>
  176. <div>
  177. <el-progress
  178. :width="80"
  179. type="circle"
  180. :percentage="
  181. lightJson.evaTeachers
  182. ? (
  183. (lightJson.evaTeachers / lightJson.teachers) *
  184. 100
  185. ).toFixed(0)
  186. : 0
  187. "
  188. :stroke-width="15"
  189. :format="format"
  190. color="#106BFF"
  191. ></el-progress>
  192. </div>
  193. </div>
  194. <div class="depth">
  195. <span>使用工具</span>
  196. <div>
  197. <el-progress
  198. :width="80"
  199. type="circle"
  200. :percentage="
  201. lightJson.toolUsers
  202. ? (
  203. (lightJson.toolUsers / lightJson.teachers) *
  204. 100
  205. ).toFixed(0)
  206. : 0
  207. "
  208. :stroke-width="15"
  209. :format="format"
  210. color="#106BFF"
  211. ></el-progress>
  212. </div>
  213. </div>
  214. <div class="depth">
  215. <span>设置评价</span>
  216. <div>
  217. <el-progress
  218. :width="80"
  219. type="circle"
  220. :percentage="
  221. lightJson.tevaTeachers
  222. ? (
  223. (lightJson.tevaTeachers / lightJson.teachers) *
  224. 100
  225. ).toFixed(0)
  226. : 0
  227. "
  228. :stroke-width="15"
  229. :format="format"
  230. color="#106BFF"
  231. ></el-progress>
  232. </div>
  233. </div>
  234. <div class="depth">
  235. <span>学生评价</span>
  236. <div>
  237. <el-progress
  238. :width="80"
  239. type="circle"
  240. :percentage="
  241. lightJson.sevaTeachers
  242. ? (
  243. (lightJson.sevaTeachers / lightJson.teachers) *
  244. 100
  245. ).toFixed(0)
  246. : 0
  247. "
  248. :stroke-width="15"
  249. :format="format"
  250. color="#106BFF"
  251. ></el-progress>
  252. </div>
  253. </div>
  254. </div>
  255. </div>
  256. </div>
  257. </div>
  258. </div>
  259. <div class="right">
  260. <div class="top">
  261. <div class="titleBox">
  262. <div class="title">教学活动</div>
  263. </div>
  264. <div class="dataBox">
  265. <WorkNum
  266. :workNumList="workNumList"
  267. @openCourse="openCourse"
  268. ></WorkNum>
  269. </div>
  270. </div>
  271. <div class="bottom">
  272. <div class="titleBox">
  273. <div class="title">在线时长</div>
  274. </div>
  275. <div class="dataBox">
  276. <div class="teafre">
  277. <div class="teaLeft">
  278. <div>累计在线时长</div>
  279. <div>{{ loginTime.toFixed(0) }}小时</div>
  280. </div>
  281. <div class="teaLeft teaRigth">
  282. <div>师均时长</div>
  283. <div>{{ loginTime ? (loginTime / count).toFixed(0) : loginTime }}小时</div>
  284. </div>
  285. </div>
  286. <WorkTime
  287. style="height: calc(100% - 62px)"
  288. :workTime="workTime"
  289. ></WorkTime>
  290. </div>
  291. </div>
  292. </div>
  293. </div>
  294. </template>
  295. <script>
  296. import TeaFre from "./chartList/teaFre.vue";
  297. import TeaAct from "./chartList/teaAct.vue";
  298. import TeaData from "./chartList/teaData.vue";
  299. import FunPlot from "./chartList/funPlot.vue";
  300. import WorkNum from "./chartList/workNum.vue";
  301. import WorkTime from "./chartList/workTime.vue";
  302. export default {
  303. components: {
  304. TeaFre,
  305. TeaAct,
  306. TeaData,
  307. FunPlot,
  308. WorkNum,
  309. WorkTime,
  310. },
  311. props: {
  312. oid: {
  313. type: String,
  314. },
  315. org: {
  316. type: String,
  317. },
  318. },
  319. data() {
  320. return {
  321. isLoading: false,
  322. count: 0,
  323. loginCount: 0,
  324. loginTime: 0,
  325. courseCount: 0,
  326. loginCountMonthArray: [],
  327. weekCount: 0,
  328. gradeCourse: 0,
  329. subjectCourse: 0,
  330. courseArray: [],
  331. workNumList: [],
  332. grade: [],
  333. subject: [],
  334. theme: [],
  335. lightJson: {
  336. users: 0,
  337. teachers: 0,
  338. students: 0,
  339. upCourseTeachers: 0,
  340. upCourseUsers: 0,
  341. toolUsers: 0,
  342. upgCourseTeachers: 0,
  343. commentUsers: 0,
  344. evaTeachers: 0,
  345. tevaTeachers: 0,
  346. sevaTeachers: 0,
  347. },
  348. pusaDep: [
  349. { value: 0, name: "登录" },
  350. { value: 0, name: "创建" },
  351. { value: 0, name: "授课" },
  352. { value: 0, name: "评价" },
  353. ],
  354. cWorkSum: [],
  355. workTime: [],
  356. };
  357. },
  358. mounted() {
  359. this.getData();
  360. },
  361. methods: {
  362. openCourse2(classIndex, subIndex) {
  363. console.log(classIndex, subIndex);
  364. // console.log(this.courseArray);
  365. // console.log(this.courseArray[classIndex].id,this.courseArray[classIndex].subject[subIndex].id || '');
  366. window.parent.postMessage(
  367. {
  368. tools: "openCourse",
  369. typea: this.courseArray[classIndex].id,
  370. typed: this.courseArray[classIndex].subject[subIndex].id || "",
  371. },
  372. "*"
  373. );
  374. },
  375. openCourse(cid) {
  376. window.parent.postMessage({ cid: cid, screenType: "3" }, "*");
  377. },
  378. getData() {
  379. this.isLoading = true;
  380. let params = [
  381. {
  382. oid: this.oid,
  383. org: this.org,
  384. },
  385. ];
  386. this.ajax
  387. .post(this.$store.state.api + "selectDataBoardTeacher", params)
  388. .then((res) => {
  389. this.isLoading = false;
  390. this.count = res.data[0][0].count;
  391. this.loginCount = res.data[1][0].loginCount;
  392. this.loginTime = parseInt(res.data[2][0].time) / 60 / 60;
  393. this.courseCount = res.data[5][0].courseCount;
  394. let loginCountMonthArray = [];
  395. const date = new Date();
  396. var Month = date.getMonth() + 1;
  397. var Year = date.getFullYear();
  398. for (var i = Month; i > Month - 6; i--) {
  399. if (i <= 0) {
  400. loginCountMonthArray.push({
  401. Year: Year - 1,
  402. Month: 12 + i,
  403. teacher: 0,
  404. });
  405. } else {
  406. loginCountMonthArray.push({
  407. Month: i,
  408. Year: Year,
  409. teacher: 0,
  410. });
  411. }
  412. }
  413. loginCountMonthArray = loginCountMonthArray.reverse();
  414. let teacherLoginCountYear = res.data[3]; // 教师半年登录次数统计
  415. for (var i = 0; i < teacherLoginCountYear.length; i++) {
  416. let _date = new Date(teacherLoginCountYear[i].create_at);
  417. var _month = _date.getMonth() + 1;
  418. var _year = _date.getFullYear();
  419. for (var j = 0; j < loginCountMonthArray.length; j++) {
  420. if (
  421. _month == loginCountMonthArray[j].Month &&
  422. _year == loginCountMonthArray[j].Year
  423. ) {
  424. loginCountMonthArray[j].teacher++;
  425. break;
  426. }
  427. }
  428. }
  429. this.loginCountMonthArray = loginCountMonthArray;
  430. this.weekCount = res.data[4][0].count;
  431. let _grade = res.data[6]; //年级
  432. let _subject = res.data[7]; //学科
  433. let _course = res.data[8]; //课程
  434. let _gradeCourse = 0; //各年级上传课程
  435. let _subjectCourse = 0; //各学科上传课程
  436. let _courseArray = [];
  437. _subject.push({ name: "其他" });
  438. for (var i = 0; i < _grade.length; i++) {
  439. _courseArray.push({
  440. name: _grade[i].name,
  441. id: _grade[i].id,
  442. courseid: [],
  443. subject: [],
  444. });
  445. for (var z = 0; z < _course.length; z++) {
  446. if (_course[z].typeid == _grade[i].id) {
  447. _gradeCourse++;
  448. if (
  449. _courseArray[i].courseid.indexOf(_course[z].courseid) === -1
  450. ) {
  451. _courseArray[i].courseid.push(_course[z].courseid);
  452. }
  453. }
  454. }
  455. for (var j = 0; j < _subject.length; j++) {
  456. _courseArray[i].subject.push({
  457. name: _subject[j].name,
  458. id: _subject[j].id,
  459. course: 0,
  460. });
  461. for (var z = 0; z < _course.length; z++) {
  462. if (
  463. _course[z].typeid == _subject[j].id &&
  464. _courseArray[i].courseid.indexOf(_course[z].courseid) !== -1
  465. ) {
  466. _courseArray[i].subject[j].course++;
  467. }
  468. }
  469. }
  470. let sum = 0;
  471. for (var j = 0; j < _courseArray[i].subject.length - 1; j++) {
  472. sum += _courseArray[i].subject[j].course;
  473. }
  474. _courseArray[i].subject[_courseArray[i].subject.length - 1].course =
  475. _courseArray[i].courseid.length - sum < 0
  476. ? 0
  477. : _courseArray[i].courseid.length - sum;
  478. }
  479. for (var j = 0; j < _subject.length; j++) {
  480. for (var z = 0; z < _course.length; z++) {
  481. if (_course[z].typeid == _subject[j].id) {
  482. _subjectCourse++;
  483. }
  484. }
  485. }
  486. this.gradeCourse = _gradeCourse / _grade.length;
  487. this.subjectCourse = _subjectCourse / _subject.length;
  488. this.courseArray = _courseArray;
  489. this.grade = _grade;
  490. this.subject = _subject;
  491. this.theme = res.data[9]; //主题
  492. var _workCourse = res.data[10]; //带作业的课程
  493. var wList = [];
  494. for (var i = 0; i < _workCourse.length; i++) {
  495. if (!wList[_workCourse[i].courseId]) {
  496. wList[_workCourse[i].courseId] = {
  497. cid: _workCourse[i].courseId,
  498. title: _workCourse[i].title,
  499. task: 0,
  500. work: 0,
  501. };
  502. let chapters = JSON.parse(_workCourse[i].chapters);
  503. for (var j = 0; j < chapters.length; j++) {
  504. if (wList[_workCourse[i].courseId].task == 0) {
  505. wList[_workCourse[i].courseId].task =
  506. chapters[j].chapterInfo[0].taskJson.length;
  507. } else {
  508. wList[_workCourse[i].courseId].task +=
  509. chapters[j].chapterInfo[0].taskJson.length;
  510. }
  511. }
  512. }
  513. }
  514. for (var i = 0; i < _workCourse.length; i++) {
  515. let a = Object.keys(wList);
  516. for (var j = 0; j < Object.keys(wList).length; j++) {
  517. if (_workCourse[i].courseId == wList[a[j]].cid) {
  518. wList[a[j]].work++;
  519. }
  520. }
  521. }
  522. var workNumList = Object.values(wList).map((item) => [
  523. item.task,
  524. item.work,
  525. item.title,
  526. item.cid,
  527. ]);
  528. this.workNumList = workNumList;
  529. let _teachers = res.data[11][0].count; //老师数量
  530. let _students = res.data[12][0].count; //学生数量
  531. let _upCourseTeachers = res.data[13][0].count; //上传课程老师的数量
  532. let _upCourseUsers = res.data[14][0].count; //上传项目的用户
  533. let _toolUsers = res.data[15][0].count; //使用工具的用户
  534. let _upgCourseTeachers = res.data[16][0].count; //参与协同课程的老师
  535. let _commentUsers = res.data[17][0].count; //参与互动交流的用户
  536. let _evaTeachers = res.data[18][0].count; //查询添加目标的老师
  537. let _tevaTeachers = res.data[19][0].count; //查询创建课程有添加目标的老师
  538. let _sevaTeachers = res.data[20][0].count; //查询对作业评价的老师
  539. this.lightJson = {
  540. users: this.count,
  541. teachers: _teachers,
  542. students: _students,
  543. upCourseTeachers: _upCourseTeachers,
  544. upCourseUsers: _upCourseUsers,
  545. toolUsers: _toolUsers,
  546. upgCourseTeachers: _upgCourseTeachers,
  547. commentUsers: _commentUsers,
  548. evaTeachers: _evaTeachers,
  549. tevaTeachers: _tevaTeachers,
  550. sevaTeachers: _sevaTeachers,
  551. };
  552. let _loginCount = res.data[21][0].count; //漏斗图查询登录
  553. let _workTeaCount = res.data[22][0].count; //漏斗图查询有交作业的课程老师数量
  554. // let allCount = _loginCount + _upCourseTeachers + _workTeaCount + _sevaTeachers;
  555. for (var i = 0; i < this.pusaDep.length; i++) {
  556. if (this.pusaDep[i].name == "登录") {
  557. this.pusaDep[i].value = ((_loginCount / _teachers) * 100).toFixed(
  558. 0
  559. );
  560. } else if (this.pusaDep[i].name == "创建") {
  561. this.pusaDep[i].value = (
  562. (_upCourseTeachers / _teachers) *
  563. 100
  564. ).toFixed(0);
  565. } else if (this.pusaDep[i].name == "授课") {
  566. this.pusaDep[i].value = (
  567. (_workTeaCount / _teachers) *
  568. 100
  569. ).toFixed(0);
  570. } else if (this.pusaDep[i].name == "评价") {
  571. this.pusaDep[i].value = (
  572. (_sevaTeachers / _teachers) *
  573. 100
  574. ).toFixed(0);
  575. }
  576. }
  577. let _cWorkSum = res.data[23]; //查询课程名称和作业数量
  578. this.cWorkSum = _cWorkSum;
  579. let _workTime = res.data[24]; //查询教研室在线时长
  580. var mergedArray = [];
  581. _workTime.forEach((obj) => {
  582. var foundItem = mergedArray.find((item) => item.name === obj.name);
  583. if (foundItem) {
  584. foundItem.text = String(
  585. Number(foundItem.text) + Number(obj.text)
  586. );
  587. } else {
  588. mergedArray.push({ name: obj.name, text: obj.text });
  589. }
  590. });
  591. mergedArray.forEach((obj) => {
  592. obj.text = (Number(obj.text) / 3600).toFixed(2); // 秒转小时,并保留两位小数
  593. });
  594. this.workTime = mergedArray;
  595. this.$forceUpdate();
  596. })
  597. .catch((err) => {
  598. this.isLoading = false;
  599. console.error(err);
  600. });
  601. },
  602. format(percentage) {
  603. return percentage + '%';
  604. },
  605. },
  606. };
  607. </script>
  608. <style scoped>
  609. .body1 {
  610. width: 100%;
  611. height: 100%;
  612. display: flex;
  613. padding: 20px;
  614. box-sizing: border-box;
  615. overflow: hidden;
  616. }
  617. .left {
  618. width: calc(100% / 4 * 1);
  619. height: 100%;
  620. }
  621. .left > .top {
  622. width: 100%;
  623. height: calc(100% / 2 - 10px);
  624. background: #fff;
  625. border-radius: 5px;
  626. margin: 0 0 20px 0;
  627. }
  628. .left > .bottom {
  629. width: 100%;
  630. height: calc(100% / 2 - 10px);
  631. background: #fff;
  632. border-radius: 5px;
  633. }
  634. .center {
  635. width: calc(100% / 4 * 2 - 40px);
  636. height: 100%;
  637. margin: 0 20px;
  638. }
  639. .center > .top {
  640. width: 100%;
  641. height: calc(100% / 5 * 3 - 10px);
  642. background: #fff;
  643. border-radius: 5px;
  644. margin: 0 0 20px 0;
  645. }
  646. .center > .bottom {
  647. width: 100%;
  648. height: calc(100% / 5 * 2 - 10px);
  649. background: #fff;
  650. border-radius: 5px;
  651. }
  652. .right {
  653. width: calc(100% / 4 * 1);
  654. height: 100%;
  655. }
  656. .right > .top {
  657. width: 100%;
  658. height: calc(100% / 2 - 10px);
  659. background: #fff;
  660. border-radius: 5px;
  661. margin: 0 0 20px 0;
  662. }
  663. .right > .bottom {
  664. width: 100%;
  665. height: calc(100% / 2 - 10px);
  666. background: #fff;
  667. border-radius: 5px;
  668. }
  669. .titleBox {
  670. height: 40px;
  671. display: flex;
  672. align-items: center;
  673. padding: 0 15px;
  674. width: 100%;
  675. }
  676. .dataBox {
  677. height: calc(100% - 40px);
  678. width: 100%;
  679. }
  680. .middleBox {
  681. display: flex;
  682. flex-direction: row;
  683. flex-wrap: nowrap;
  684. align-items: center;
  685. }
  686. .title {
  687. font-weight: bold;
  688. color: #060e17;
  689. font-size: 18px;
  690. }
  691. .teafre {
  692. display: flex;
  693. flex-direction: row;
  694. flex-wrap: nowrap;
  695. align-items: center;
  696. width: 95%;
  697. margin: 0 auto;
  698. justify-content: space-evenly;
  699. }
  700. .teaLeft,
  701. .teaMiddle {
  702. width: calc(100% / 2 - 10px);
  703. height: 60px;
  704. border-radius: 8px;
  705. /* border: 1px solid #e0eafb; */
  706. display: flex;
  707. flex-direction: column;
  708. align-items: flex-start;
  709. justify-content: center;
  710. padding: 0 10px;
  711. margin-right: 10px;
  712. }
  713. .teaMiddle {
  714. width: calc(100% / 3 - 10px);
  715. }
  716. .teaLeft {
  717. width: 95%;
  718. background: linear-gradient(
  719. 180deg,
  720. rgba(224, 234, 251, 0.2) 0%,
  721. rgba(54, 130, 252, 0.3) 100%
  722. );
  723. }
  724. .teaRigth {
  725. background: linear-gradient(
  726. 180deg,
  727. rgb(211, 246, 228, 0.2) 0%,
  728. rgb(23, 196, 105, 0.3) 100%
  729. ) !important;
  730. }
  731. .cNum {
  732. background: linear-gradient(
  733. 180deg,
  734. rgb(125, 227, 174, 0.2) 0%,
  735. rgb(23, 196, 105, 0.3) 100%
  736. ) !important;
  737. }
  738. .tNum {
  739. background: linear-gradient(
  740. 180deg,
  741. rgb(174, 204, 254, 0.2) 0%,
  742. rgb(54, 129, 252, 0.3) 100%
  743. ) !important;
  744. }
  745. .tSum {
  746. background: linear-gradient(
  747. 180deg,
  748. rgb(125, 227, 174, 0.2) 0%,
  749. rgb(23, 196, 105, 0.3) 100%
  750. ) !important;
  751. }
  752. .teaLeft > div:first-child,
  753. .teaMiddle > div:first-child {
  754. font-size: 12px;
  755. font-weight: 400;
  756. color: #565e6a;
  757. }
  758. .teaLeft > div:last-child,
  759. .teaMiddle > div:last-child {
  760. font-size: 22px;
  761. font-weight: bold;
  762. color: #060e17;
  763. }
  764. .halfBox {
  765. width: 50%;
  766. }
  767. .allBox {
  768. width: 100%;
  769. height: 100%;
  770. display: flex;
  771. flex-direction: row;
  772. flex-wrap: nowrap;
  773. align-items: center;
  774. }
  775. .allBox_left {
  776. width: 30%;
  777. height: 100%;
  778. }
  779. .allBox_right {
  780. display: flex;
  781. flex-wrap: wrap;
  782. height: 100%;
  783. width: 70%;
  784. margin: 0 auto;
  785. overflow: hidden;
  786. justify-content: space-between;
  787. }
  788. .depth {
  789. width: calc(100% / 4 - 10px);
  790. display: flex;
  791. flex-direction: column;
  792. align-items: center;
  793. justify-content: center;
  794. }
  795. .depth > span:nth-child(1) {
  796. font-size: 14px;
  797. font-weight: 700;
  798. margin: 0 0 10px;
  799. }
  800. .depth > div:nth-child(1) {
  801. }
  802. </style>