fireworksEmergency.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792
  1. <template>
  2. <div class="container">
  3. <div class="event-box">
  4. <div class="box-header">
  5. <div class="title-box">
  6. <div class="title"><i class="icon-speaker" />重大事件信息</div>
  7. </div>
  8. <div class="more">查看更多>></div>
  9. </div>
  10. <div class="event-content">
  11. <div class="text1">{{ noticeBarState.event_title }}</div>
  12. <div class="text2">{{ noticeBarState.time }}</div>
  13. </div>
  14. </div>
  15. <div class="content" style="margin-top: 0">
  16. <div class="card-box">
  17. <div class="card-item">
  18. <div class="text1">事故数量</div>
  19. <div class="text-box">
  20. <div class="text2">47</div>
  21. <div class="text3">起</div>
  22. </div>
  23. </div>
  24. <div class="card-item">
  25. <div class="text1">威胁人口</div>
  26. <div class="text-box">
  27. <div class="text2">1,302</div>
  28. <div class="text3">人</div>
  29. </div>
  30. </div>
  31. <div class="card-item">
  32. <div class="text1">潜在经济损失</div>
  33. <div class="text-box">
  34. <div class="text2">34,221</div>
  35. <div class="text3">万</div>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. <div class="content" style="margin-top: 0">
  41. <div class="card">
  42. <div class="card-header">
  43. <i class="icon-line" />
  44. <div class="text">烟花爆竹隐患点情况</div>
  45. </div>
  46. <div class="card-content2">
  47. <div class="card1">
  48. <div class="text1">烟花爆竹隐患点总数</div>
  49. <div class="text-box">
  50. <div class="text-blue">10</div>
  51. <div class="text2">个</div>
  52. </div>
  53. </div>
  54. <div class="flex-box">
  55. <div class="card2">
  56. <div class="text1">高风险</div>
  57. <div class="text-box">
  58. <div class="text-red">2</div>
  59. <div class="text2">个</div>
  60. </div>
  61. </div>
  62. <div class="card3">
  63. <div class="text1">中风险</div>
  64. <div class="text-box">
  65. <div class="text-orange">3</div>
  66. <div class="text2">个</div>
  67. </div>
  68. </div>
  69. <div class="card4">
  70. <div class="text1">低风险</div>
  71. <div class="text-box">
  72. <div class="text-green">5</div>
  73. <div class="text2">个</div>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. <div class="content">
  81. <div class="card">
  82. <div class="card-header">
  83. <i class="icon-line" />
  84. <div class="text">事故统计</div>
  85. </div>
  86. <Chart :option="option1" style="height: 200px" />
  87. </div>
  88. </div>
  89. <div class="content">
  90. <div class="card">
  91. <div class="card-header">
  92. <i class="icon-line" />
  93. <div class="text">事件列表</div>
  94. </div>
  95. <div class="select-box" @click="showPicker = true">
  96. <div class="text1">年度</div>
  97. <div class="select-item">
  98. <div class="label">{{ yearLabel ? yearLabel : "请选择" }}</div>
  99. <i class="icon-down" />
  100. </div>
  101. </div>
  102. <el-table :data="detailsData.dataList" border table-layout="auto">
  103. <el-table-column label="类别" prop="data1" align="center" />
  104. <el-table-column label="位置" prop="data2" align="center" />
  105. <el-table-column label="发生时间" prop="data3" align="center" />
  106. <el-table-column label="受伤人数" prop="data4" align="center" />
  107. <el-table-column label="死亡人数" prop="data5" align="center" />
  108. </el-table>
  109. </div>
  110. </div>
  111. <van-popup v-model:show="showPicker" round position="bottom">
  112. <van-picker
  113. :columns="columns"
  114. @cancel="showPicker = false"
  115. @confirm="onPickerConfirm"
  116. />
  117. </van-popup>
  118. </div>
  119. </template>
  120. <script lang="ts" setup name="cityEmergencyEvent">
  121. import { reactive, ref } from "vue";
  122. import { useRouter } from "vue-router";
  123. import searchImg from "@/assets/images/search.png";
  124. import { getPointInfoComprehensiveSearch } from "@/api/globalMap";
  125. import { onClickOutside } from "@vueuse/core";
  126. import { chartOption6 } from "@/views/disasterRiskMonitor/chartOptions";
  127. import { ElTable, ElTableColumn } from "element-plus";
  128. const noticeBarState = reactive({
  129. show: false,
  130. event_id: "",
  131. time: "2024-03-01 12:12:12",
  132. event_title:
  133. "茂名市茂南区xxx发生烟花爆竹事故,今日凌晨三点在xx,发生原因是,事发当时地表温度高,收取的单基火药粉处于干燥状态,导致事故发生。…"
  134. });
  135. // 搜索
  136. const searchBoxRef = ref();
  137. let showSearch = ref();
  138. const total = ref(0);
  139. let loading = ref(false);
  140. let error = ref(false);
  141. let finished = ref(false);
  142. const queryParams = reactive({
  143. page: 0,
  144. page_size: 10,
  145. year: "",
  146. keywords: ""
  147. });
  148. let yearLabel = ref("");
  149. const searchList = ref([]);
  150. onClickOutside(searchBoxRef, event => {
  151. showSearch.value = false;
  152. });
  153. const getSearchList = () => {
  154. if (!queryParams.keywords) {
  155. return (loading.value = false);
  156. }
  157. queryParams.page++;
  158. getPointInfoComprehensiveSearch(queryParams)
  159. .then(res => {
  160. const items = res.data.list || [];
  161. total.value = res.data.total;
  162. if (queryParams.page == 1) {
  163. searchList.value = [];
  164. }
  165. items.forEach(val => {
  166. searchList.value.push(val);
  167. });
  168. if (queryParams.page_size * queryParams.page >= total.value) {
  169. finished.value = true;
  170. } else {
  171. finished.value = false;
  172. }
  173. showSearch.value = true;
  174. })
  175. .catch(() => {
  176. error.value = true;
  177. finished.value = false;
  178. })
  179. .finally(() => {
  180. loading.value = false;
  181. });
  182. };
  183. const onSearchKeyword = val => {
  184. queryParams.keywords = val;
  185. queryParams.page = 0;
  186. getSearchList();
  187. };
  188. const handleClickItem = item => {
  189. showSearch.value = false;
  190. queryParams.keywords = "";
  191. queryParams.page = 0;
  192. finished.value = false;
  193. searchList.value = [];
  194. };
  195. let eventDetails = ref({});
  196. let detailsData = ref({
  197. dataList: []
  198. });
  199. const option1 = ref(chartOption6);
  200. let showPicker = ref(false);
  201. let columns = reactive([
  202. { text: "2024年", value: "2024" },
  203. { text: "2023年", value: "2023" },
  204. { text: "2022年", value: "2022" },
  205. { text: "2021年", value: "2021" }
  206. ]);
  207. const getImageUrl = name => {
  208. return new URL(
  209. `../../assets/images/disasterRiskMonitor/cityEmergencyEvent/${name}`,
  210. import.meta.url
  211. ).href;
  212. };
  213. let iconList = reactive({
  214. "1": {
  215. image: getImageUrl("icon2.png"),
  216. size: [20, 20]
  217. },
  218. "2": {
  219. image: getImageUrl("icon1.png"),
  220. size: [20, 20]
  221. }
  222. });
  223. const onPickerConfirm = ({ selectedOptions }) => {
  224. showPicker.value = false;
  225. yearLabel.value = selectedOptions[0].text;
  226. queryParams.year = selectedOptions[0].value;
  227. };
  228. const initData = () => {
  229. option1.value.xAxis[0].data = [
  230. "2024-01",
  231. "2024-02",
  232. "2024-03",
  233. "2024-04",
  234. "2024-05",
  235. "2024-06"
  236. ];
  237. option1.value.series[0].data = [
  238. 502.84, 205.97, 332.79, 281.55, 398.35, 214.02
  239. ];
  240. option1.value.series[1].data = [
  241. 281.55, 398.35, 214.02, 179.55, 289.57, 356.14
  242. ];
  243. // 事件列表
  244. detailsData.value.dataList = [
  245. {
  246. data1: "一般事故",
  247. data2: "茂名市电白区黄岭镇石头村",
  248. data3: "2024-12-14 12:12:13",
  249. data4: 1,
  250. data5: 0,
  251. longitude: "110.719914",
  252. latitude: "21.609269",
  253. dataType: "1"
  254. },
  255. {
  256. data1: "重大事故",
  257. data2: "茂名市茂南区羊角镇",
  258. data3: "2024-10-07 08:00:00",
  259. data4: 2,
  260. data5: 0,
  261. longitude: "110.984948",
  262. latitude: "21.669318",
  263. dataType: "1"
  264. }
  265. ];
  266. detailsData.value.dataList.forEach(item => {
  267. const icon =
  268. item.dataType && !!iconList[item.dataType].image
  269. ? iconList[item.dataType].image
  270. : "";
  271. item.icon = icon;
  272. item.image = icon;
  273. item.imageHover = icon;
  274. item.size = iconList[item.dataType].size;
  275. item.lnglat = [item.longitude, item.latitude];
  276. });
  277. };
  278. initData();
  279. </script>
  280. <style lang="scss" scoped>
  281. .container {
  282. .map {
  283. width: 100%;
  284. height: 250px;
  285. }
  286. .event-box {
  287. position: relative;
  288. width: 375px;
  289. height: 117px;
  290. background: url("@/assets/images/disasterRiskMonitor/cityEmergencyEvent/box1.png")
  291. no-repeat;
  292. background-size: 100% 100%;
  293. box-shadow: 0 2px 4px 0 rgba(228, 240, 255, 1);
  294. .box-header {
  295. display: flex;
  296. justify-content: space-between;
  297. align-items: center;
  298. padding: 0 6px;
  299. .more {
  300. font-size: 12px;
  301. color: #2c81ff;
  302. }
  303. }
  304. .title-box {
  305. height: 30px;
  306. background-color: #ffffff; /* 背景颜色 */
  307. transform: skewX(-20deg); /* 斜切变形 */
  308. box-shadow: 0 2px 4px 0 rgba(250, 217, 97, 0.18);
  309. padding: 0 10px;
  310. display: flex;
  311. align-items: center;
  312. border-radius: 2px;
  313. &::after {
  314. content: "";
  315. position: absolute;
  316. top: 0;
  317. right: -6px;
  318. transform: skewX(20deg);
  319. width: 11px;
  320. height: 27px;
  321. background: url("@/assets/images/disasterRiskMonitor/riverMonitor/thickness.png")
  322. no-repeat;
  323. background-size: 100% 100%;
  324. }
  325. .title {
  326. font-size: 14px;
  327. color: #ffaf00;
  328. transform: skewX(20deg);
  329. display: flex;
  330. align-items: center;
  331. .icon-speaker {
  332. display: inline-block;
  333. width: 16px;
  334. height: 16px;
  335. background: url("@/assets/images/disasterRiskMonitor/riverMonitor/speaker.png")
  336. no-repeat;
  337. background-size: 100% 100%;
  338. margin-right: 5px;
  339. }
  340. }
  341. }
  342. .event-content {
  343. padding: 0 10px;
  344. }
  345. .text1 {
  346. display: -webkit-box;
  347. -webkit-line-clamp: 3;
  348. -webkit-box-orient: vertical;
  349. overflow: hidden;
  350. text-overflow: ellipsis;
  351. font-size: 14px;
  352. color: #414f64;
  353. }
  354. .text2 {
  355. font-size: 12px;
  356. color: rgba(0, 0, 0, 0.45);
  357. text-align: right;
  358. }
  359. }
  360. }
  361. .search-box {
  362. padding: 16px 16px 10px;
  363. }
  364. .search-list {
  365. position: absolute;
  366. top: 50px;
  367. left: 0;
  368. z-index: 9;
  369. width: 100%;
  370. height: calc(100vh - 400px);
  371. overflow-y: auto;
  372. background-color: #ffffff;
  373. border-top: 1px solid #eeeeee;
  374. .item {
  375. padding: 8px 15px;
  376. border-bottom: 1px solid #eeeeee;
  377. }
  378. }
  379. .common-search {
  380. border: 1px solid #dce0ee;
  381. border-radius: 2px;
  382. padding: 0;
  383. :deep(.van-field__control) {
  384. &::placeholder {
  385. color: #c9cfd9;
  386. }
  387. }
  388. :deep(.van-search__content) {
  389. background-color: #ffffff;
  390. border: none !important;
  391. }
  392. :deep(.van-field__left-icon) {
  393. .van-icon__image {
  394. width: 12px;
  395. height: 12px;
  396. }
  397. }
  398. :deep(.van-field__right-icon) {
  399. width: 30px;
  400. height: 30px;
  401. padding: 0;
  402. .van-icon__image {
  403. width: 30px;
  404. height: 30px;
  405. }
  406. }
  407. .search-btn {
  408. font-size: 14px;
  409. color: #2c81ff;
  410. }
  411. }
  412. .card {
  413. background-color: #ffffff;
  414. border: 1px solid #eaedf7;
  415. border-radius: 4px;
  416. padding: 2px;
  417. margin-top: 16px;
  418. &:first-child {
  419. margin-top: 0;
  420. }
  421. .card-header {
  422. font-size: 16px;
  423. color: #414f64;
  424. font-weight: bold;
  425. line-height: 26px;
  426. padding: 11px 10px;
  427. display: flex;
  428. align-items: center;
  429. border-top-left-radius: 4px;
  430. border-top-right-radius: 4px;
  431. background-image: linear-gradient(180deg, #f3f7fd 0%, #ffffff 100%);
  432. .icon-line {
  433. display: inline-block;
  434. width: 6px;
  435. height: 16px;
  436. background: url("@/assets/images/line.jpg") no-repeat;
  437. background-size: 100% 100%;
  438. margin-right: 3px;
  439. }
  440. }
  441. }
  442. .content {
  443. padding: 0 16px;
  444. margin-top: 16px;
  445. }
  446. .select-box {
  447. display: flex;
  448. justify-content: flex-end;
  449. align-items: center;
  450. margin-bottom: 10px;
  451. padding-right: 20px;
  452. .text1 {
  453. font-size: 14px;
  454. color: #414f64;
  455. margin-right: 5px;
  456. }
  457. .select-item {
  458. background-color: #f4f7fc;
  459. padding: 5px;
  460. min-width: 92px;
  461. height: 32px;
  462. border-raduis: 4px;
  463. font-size: 14px;
  464. color: #414f64;
  465. display: flex;
  466. align-items: center;
  467. .label {
  468. flex: 1;
  469. }
  470. .icon-down {
  471. flex-shrink: 0;
  472. display: inline-block;
  473. width: 14px;
  474. height: 14px;
  475. background: url("@/assets/images/down.png") no-repeat;
  476. background-size: 100% 100%;
  477. margin-left: 5px;
  478. }
  479. }
  480. }
  481. .card-box {
  482. display: flex;
  483. justify-content: space-between;
  484. padding: 15px 10px;
  485. .card-item {
  486. width: 101px;
  487. height: 104px;
  488. background: url("@/assets/images/disasterRiskMonitor/geologicalDisaster/card3.png")
  489. no-repeat;
  490. background-size: 100% 100%;
  491. display: flex;
  492. flex-direction: column;
  493. align-items: center;
  494. padding-top: 9px;
  495. &:nth-child(2) {
  496. background: url("@/assets/images/disasterRiskMonitor/geologicalDisaster/card4.png")
  497. no-repeat;
  498. background-size: 100% 100%;
  499. }
  500. &:nth-child(3) {
  501. background: url("@/assets/images/disasterRiskMonitor/geologicalDisaster/card5.png")
  502. no-repeat;
  503. background-size: 100% 100%;
  504. }
  505. .text1 {
  506. font-size: 14px;
  507. color: #414f64;
  508. line-height: 26px;
  509. }
  510. .text-box {
  511. display: flex;
  512. align-items: baseline;
  513. .text2 {
  514. font-size: 24px;
  515. font-weight: bold;
  516. color: #ff2f3c;
  517. }
  518. .text3 {
  519. font-size: 12px;
  520. color: #414f64;
  521. line-height: 26px;
  522. margin-left: 5px;
  523. }
  524. }
  525. }
  526. }
  527. .card {
  528. background-color: #ffffff;
  529. border: 1px solid #EAEDF7;
  530. box-shadow: 0 0 4px 0 #4554661a;
  531. border-radius: 4px;
  532. padding: 2px;
  533. margin-top: 16px;
  534. &:first-child {
  535. margin-top: 0;
  536. }
  537. .card-header {
  538. font-size: 16px;
  539. color: #414f64;
  540. font-weight: bold;
  541. line-height: 26px;
  542. padding: 11px 10px;
  543. display: flex;
  544. align-items: center;
  545. border-top-left-radius: 4px;
  546. border-top-right-radius: 4px;
  547. background-image: linear-gradient(180deg, #F3F7FD 0%, #FFFFFF 100%);
  548. .flex {
  549. display: flex;
  550. align-items: center;
  551. }
  552. .icon-line {
  553. display: inline-block;
  554. width: 6px;
  555. height: 16px;
  556. background: url("@/assets/images/line.jpg") no-repeat;
  557. background-size: 100% 100%;
  558. margin-right: 3px;
  559. }
  560. }
  561. .sub-text {
  562. font-size: 12px;
  563. padding: 0 5px;
  564. color: rgba(0, 0, 0, 0.45);
  565. margin-top: -7px;
  566. }
  567. .sub-text2 {
  568. font-size: 12px;
  569. font-weight: normal;
  570. padding: 0 5px;
  571. color: #7f8b9f;
  572. }
  573. .card-content {
  574. padding: 0 5px 13px 8px;
  575. //padding-bottom: 13px;
  576. display: flex;
  577. justify-content: space-between;
  578. .card1 {
  579. width: 147px;
  580. height: 99px;
  581. background: url("@/assets/images/disasterRiskMonitor/forestFirePrevention/card5.png") no-repeat;
  582. background-size: 100% 100%;
  583. box-shadow: 0 2px 11px 0 rgba(44, 129, 255, 0.1);
  584. padding: 5px 15px;
  585. color: #ff2f3c;
  586. .text1 {
  587. font-size: 16px;
  588. font-weight: bold;
  589. }
  590. .text2 {
  591. font-size: 18px;
  592. font-weight: bold;
  593. }
  594. .text {
  595. font-size: 14px;
  596. }
  597. }
  598. .card2 {
  599. width: 169px;
  600. height: 99px;
  601. padding: 5px 8px;
  602. background: url("@/assets/images/disasterRiskMonitor/forestFirePrevention/card6.png") no-repeat;
  603. background-size: 100% 100%;
  604. box-shadow: 0 2px 11px 0 rgba(44, 129, 255, 0.1);
  605. display: flex;
  606. flex-direction: column;
  607. justify-content: space-between;
  608. .tr {
  609. display: flex;
  610. justify-content: space-between;
  611. align-items: center;
  612. &:nth-child(1) {
  613. color: #ff2f3c;
  614. }
  615. &:nth-child(2) {
  616. color: #ff7d00;
  617. }
  618. &:nth-child(3) {
  619. color: #ffd45e;
  620. }
  621. .text1 {
  622. }
  623. .td {
  624. margin: 0 2px;
  625. font-size: 13px;
  626. &:nth-child(3) {
  627. font-size: 15px;
  628. font-weight: bold;
  629. }
  630. }
  631. }
  632. }
  633. }
  634. .card-content2 {
  635. padding-bottom: 7px;
  636. display: flex;
  637. flex-direction: column;
  638. align-items: center;
  639. .card1 {
  640. width: 341px;
  641. height: 84px;
  642. background: url("@/assets/images/disasterRiskMonitor/forestFirePrevention/card1.png")
  643. no-repeat;
  644. background-size: 100% 100%;
  645. padding: 5px 185px 5px 27px;
  646. display: flex;
  647. flex-direction: column;
  648. justify-content: center;
  649. align-items: center;
  650. }
  651. .text1 {
  652. font-size: 14px;
  653. color: #414f64;
  654. line-height: 26px;
  655. }
  656. .text-box {
  657. display: flex;
  658. align-items: center;
  659. .text-blue {
  660. font-size: 24px;
  661. color: #2c81ff;
  662. font-width: bold;
  663. }
  664. .text-red {
  665. font-size: 24px;
  666. color: #ff2f3c;
  667. font-width: bold;
  668. }
  669. .text-orange {
  670. font-size: 24px;
  671. color: #ffaf00;
  672. font-width: bold;
  673. }
  674. .text-green {
  675. font-size: 24px;
  676. color: #40c75f;
  677. font-width: bold;
  678. }
  679. .text2 {
  680. font-size: 12px;
  681. color: #414f64;
  682. }
  683. }
  684. .flex-box {
  685. width: 328px;
  686. display: flex;
  687. justify-content: space-between;
  688. }
  689. .card2 {
  690. background: url("@/assets/images/disasterRiskMonitor/forestFirePrevention/card2.png") no-repeat;
  691. }
  692. .card3 {
  693. background: url("@/assets/images/disasterRiskMonitor/forestFirePrevention/card3.png") no-repeat;
  694. box-shadow: 0 1px 6px 0 rgba(245, 225, 160, 0.24);
  695. }
  696. .card4 {
  697. background: url("@/assets/images/disasterRiskMonitor/forestFirePrevention/card4.png") no-repeat;
  698. box-shadow: 0 0 4px 0 rgba(69, 84, 102, 0.1);
  699. }
  700. .card2,
  701. .card3,
  702. .card4 {
  703. width: 106px;
  704. height: 71px;
  705. background-position: center center;
  706. background-size: 118px 84px;
  707. padding: 5px 27px 5px 27px;
  708. display: flex;
  709. flex-direction: column;
  710. justify-content: center;
  711. align-items: center;
  712. }
  713. }
  714. .card-content3 {
  715. .box1 {
  716. display: flex;
  717. align-items: center;
  718. margin: 12px 12px 12px 16px;
  719. .select-box {
  720. width: 80px;
  721. margin-left: 10px;
  722. display: flex;
  723. align-items: center;
  724. .icon-down {
  725. margin-left: 3px;
  726. display: inline-block;
  727. flex-shrink: 0;
  728. width: 14px;
  729. height: 14px;
  730. background: url("@/assets/images/down.png") no-repeat;
  731. background-size: 100% 100%;
  732. }
  733. }
  734. }
  735. .box2 {
  736. padding: 0 30px;
  737. display: flex;
  738. justify-content: space-between;
  739. .box-item {
  740. .icon1 {
  741. background: url("@/assets/images/disasterRiskMonitor/forestFirePrevention/icon1.png") no-repeat;
  742. }
  743. .icon2 {
  744. background: url("@/assets/images/disasterRiskMonitor/forestFirePrevention/icon2.png") no-repeat;
  745. }
  746. .icon3 {
  747. background: url("@/assets/images/disasterRiskMonitor/forestFirePrevention/icon3.png") no-repeat;
  748. }
  749. .icon1,
  750. .icon2,
  751. .icon3 {
  752. display: inline-block;
  753. width: 48px;
  754. height: 48px;
  755. background-size: 100% 100%;
  756. box-shadow:
  757. 0 2px 1px -1px #bcd7ffb5,
  758. inset 0 1px 3px 6px #ace2ff08;
  759. border-radius: 11px;
  760. }
  761. .text1 {
  762. font-size: 14px;
  763. color: #414f64;
  764. line-height: 26px;
  765. }
  766. .text-box {
  767. display: flex;
  768. align-items: center;
  769. .text-blue {
  770. font-size: 24px;
  771. margin-right: 5px;
  772. color: #80c2ff;
  773. }
  774. .text-orange {
  775. font-size: 24px;
  776. margin-right: 5px;
  777. color: #ffaf00;
  778. }
  779. .text-red {
  780. font-size: 24px;
  781. margin-right: 5px;
  782. color: #ff2f3c;
  783. }
  784. }
  785. }
  786. }
  787. }
  788. }
  789. </style>