Bläddra i källkod

Merge remote-tracking branch 'origin/dev' into lhh

citygis-lhh 3 veckor sedan
förälder
incheckning
1dfd9d686f

+ 3 - 3
package-lock.json

@@ -3277,9 +3277,9 @@
       "integrity": "sha512-AidaH9JETVRr9DIPGfp1kAarm/W6hRJTPuCnkF+2MqhF4KaAgRIcBc8nvjk+YMXZhwfISof/7WG29eS4iGxQLQ=="
     },
     "node_modules/element-plus": {
-      "version": "2.9.5",
-      "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.9.5.tgz",
-      "integrity": "sha512-r+X79oogLbYq8p9L5f9fHSHhUFNM0AL72aikqiZVxSc2/08mK6m/PotiB9e/D90QmWTIHIaFnFmW65AcXmneig==",
+      "version": "2.9.6",
+      "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.9.6.tgz",
+      "integrity": "sha512-D9zU28Ce0s/9O/Vp3ewemikxzFVA6gdZyMwmWijHijo+t5/9H3sHRTIm1WlfeNpFW2Yq0y8nHXD0fU5YxU6qlQ==",
       "dependencies": {
         "@ctrl/tinycolor": "^3.4.1",
         "@element-plus/icons-vue": "^2.3.1",

BIN
src/assets/img/提示框1.png


BIN
src/assets/img/提示框2.png


+ 19 - 0
src/assets/styles/index.scss

@@ -49,3 +49,22 @@ html {
     }
 
 
+// .el-tooltip {
+//   user-select: text !important;
+//   touch-action: auto !important;
+// }
+
+.el-tooltip__popper {
+  pointer-events: auto !important;
+  user-select: text !important;
+  touch-action: auto !important;
+}
+
+
+.el-tooltip__popper {
+  background: rgba(0, 0, 0, 0.8) !important;
+  color: white !important;
+  padding: 8px;
+  border-radius: 4px;
+  font-size: 14px;
+}

+ 28 - 28
src/views/left/comp/RiskReport.vue

@@ -9,11 +9,11 @@
     </div>
     <div class="risk_report_bottom">
       <div v-for="item in levelList" class="risk_report_level">
-        <div class="risk_report_level_count">
-          <img :src="getImgSrc(item.level)" alt="" />
-          <div>{{ item.count }}</div>
-        </div>
-        <div class="line" v-if="item.level!=='D'"></div>
+          <div class="risk_report_level_count">
+            <img :src="getImgSrc(item.level)" alt="" />
+            <div>{{ item.count }}</div>
+          </div>
+        <div class="line" v-if="item.level !== 'D'"></div>
       </div>
     </div>
   </div>
@@ -31,7 +31,6 @@ let levelList = ref([])
 watch(
   () => props.levelObj,
   (newObj, oldObj) => {
-
     let obj = toRaw(newObj)
     name.value = obj.name
     count.value = obj.count
@@ -43,7 +42,7 @@ watch(
   }
 )
 
-function getImgSrc (picName) {
+function getImgSrc(picName) {
   return new URL(`../../../assets/img/等级${picName}.png`, import.meta.url).href
 }
 </script>
@@ -56,7 +55,7 @@ function getImgSrc (picName) {
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
-  padding:22px 0 ;
+  padding: 22px 0;
   box-sizing: border-box;
 
   .risk_report_top {
@@ -70,14 +69,14 @@ function getImgSrc (picName) {
     // min-width: 183px;
     // height: 58px;
 
-    >img {
+    > img {
       // width: 23px;
       // height: 26px;
       width: 60px;
       height: 60px;
     }
 
-    >div {
+    > div {
       font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
       font-weight: normal;
       font-size: 20px;
@@ -86,7 +85,7 @@ function getImgSrc (picName) {
       font-style: normal;
       text-transform: none;
       /* 金属光泽渐变效果 */
-      background: linear-gradient(to top, #88EAFF 4%, #e2ffff 100%);
+      background: linear-gradient(to top, #88eaff 4%, #e2ffff 100%);
       -webkit-background-clip: text;
       /* 文字应用渐变 */
       background-clip: text;
@@ -99,7 +98,7 @@ function getImgSrc (picName) {
       transition: all 0.3s ease;
     }
 
-    >span {
+    > span {
       font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
       font-weight: 400;
       font-size: 32px;
@@ -137,22 +136,22 @@ function getImgSrc (picName) {
       align-items: center;
       justify-content: space-between;
       // color: #88EAFF;
-        text-transform: none;
-          /* 金属光泽渐变效果 */
-          background: linear-gradient(to top, #88EAFF 4%, #ffffff 40%);
-          -webkit-background-clip: text;
-          /* 文字应用渐变 */
-          background-clip: text;
-          /* 使文字透明,背景渐变会应用到文字 */
-          color: transparent;
-          /* 光泽效果:文本阴影 */
-          // text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.4), -2px -2px 5px rgba(0, 0, 0, 0.4);
-        
-          /* 给文字加一些柔和的过渡效果 */
-          transition: all 0.3s ease;
-      .risk_report_level_count{
+      text-transform: none;
+      /* 金属光泽渐变效果 */
+      background: linear-gradient(to top, #88eaff 4%, #ffffff 40%);
+      -webkit-background-clip: text;
+      /* 文字应用渐变 */
+      background-clip: text;
+      /* 使文字透明,背景渐变会应用到文字 */
+      color: transparent;
+      /* 光泽效果:文本阴影 */
+      // text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.4), -2px -2px 5px rgba(0, 0, 0, 0.4);
+
+      /* 给文字加一些柔和的过渡效果 */
+      transition: all 0.3s ease;
+      .risk_report_level_count {
         text-align: center;
-        >img{
+        > img {
           width: 41px;
           height: 24px;
         }
@@ -161,9 +160,10 @@ function getImgSrc (picName) {
         height: 24px;
         width: 2px;
         background: linear-gradient(0deg, rgba(34, 73, 127, 0) 0%, rgba(136, 234, 255, 0.6) 50%, rgba(34, 73, 127, 0) 100%);
-        margin:0 15px;
+        margin: 0 15px;
       }
     }
   }
 }
 </style>
+

+ 145 - 23
src/views/left/comp/RiskTwoView.vue

@@ -5,7 +5,7 @@
         <div class="title_content">
           <div class="title">
             <img src="../../../assets/img/Group 4645(1).png" alt="" />
-            <span> {{ name }}</span>
+            <span>{{ name }}</span>
           </div>
           <span>
             {{ count }}
@@ -15,17 +15,42 @@
       </div>
     </div>
     <div class="risk_report_bottom">
-      <div v-for="(item, index) in levelList" class="risk_report_level">
-        <div class="risk_report_level_count">
-          <img :src="getImgSrc(item.level)" alt="" />
-          <div>{{ item.count }}</div>
-        </div>
+      <div v-for="(item, index) in levelList" :key="index" class="risk_report_level">
+
+        <el-tooltip placement="top" effect="customized" trigger="hover" :key="index" popper-class="custom-tooltip">
+          <template #content>
+            <div class="tooltip-content">
+              <div>2024.11.20</div>
+              <div class="tooltip-content_top">
+                <img src="../../../assets/img/提示框1.png" alt="" />
+                <span>进博会保障</span>
+              </div>
+              <div class="tooltip-content_bottom">
+                <div class="tooltip-content_bottom_left">
+                  <img src="../../../assets/img/提示框2.png" alt="" />
+                  <span>处置中</span>
+                </div>
+
+                <div class="tooltip-content_bottom_right">
+                  <span>1</span>
+                  例
+                </div>
+              </div>
+            </div>
+          </template>
+          <div class="risk_report_level_count">
+            <img :src="getImgSrc(item.level)" alt="" />
+            <div>{{ item.count }}</div>
+          </div>
+        </el-tooltip>
+
         <div class="line" v-if="index !== levelList.length - 1"></div>
       </div>
     </div>
   </div>
 </template>
 <script setup>
+import { ElTooltip } from 'element-plus'
 import { ref, toRaw, reactive, toRefs, onBeforeMount, onMounted, watch } from 'vue'
 const props = defineProps({
   levelObj: {}
@@ -34,13 +59,13 @@ const props = defineProps({
 let name = ref('')
 let count = ref(0)
 let levelList = ref([])
+const visible = ref(false)
 
 watch(
   () => props.levelObj,
   (newObj, oldObj) => {
-  
     let obj = toRaw(newObj)
-   
+
     name.value = obj.name
     count.value = obj.count
     levelList.value = obj.levelList
@@ -51,7 +76,7 @@ watch(
   }
 )
 
-function getImgSrc (picName) {
+function getImgSrc(picName) {
   return new URL(`../../../assets/img/等级${picName}.png`, import.meta.url).href
 }
 </script>
@@ -67,6 +92,7 @@ function getImgSrc (picName) {
   // justify-content: space-between;
   justify-content: space-around;
   box-sizing: border-box;
+
   .risk_report_top {
     height: 28px;
     display: flex;
@@ -101,12 +127,12 @@ function getImgSrc (picName) {
           font-style: normal;
           text-transform: none;
 
-          >img {
+          > img {
             margin-right: 10px;
           }
         }
 
-        >span {
+        > span {
           font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
           font-weight: 400;
           font-size: 28px;
@@ -153,26 +179,33 @@ function getImgSrc (picName) {
       align-items: center;
       justify-content: space-between;
       // color: #88EAFF;
-      text-transform: none;
+      // text-transform: none;
       /* 金属光泽渐变效果 */
-      background: linear-gradient(to top, #88EAFF 4%, #ffffff 40%);
-      -webkit-background-clip: text;
+      // background: linear-gradient(to top, #88eaff 4%, #ffffff 40%);
+      // -webkit-background-clip: text;
       /* 文字应用渐变 */
-      background-clip: text;
-      /* 使文字透明,背景渐变会应用到文字 */
-      color: transparent;
+      // background-clip: text;
+      // /* 使文字透明,背景渐变会应用到文字 */
+      // color: transparent;
       /* 光泽效果:文本阴影 */
       // text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.4), -2px -2px 5px rgba(0, 0, 0, 0.4);
 
       /* 给文字加一些柔和的过渡效果 */
-      transition: all 0.3s ease;
+      // transition: all 0.3s ease;
+      color: #88eaff;
 
       .risk_report_level_count {
         text-align: center;
-          >img {
-              width: 41px;
-              height: 24px;
-            }
+        cursor: pointer; /* 可选:增加鼠标指针提示 */
+        // pointer-events: auto;
+        pointer-events: auto !important; // 强制允许接收事件
+        position: relative; // 确保元素在布局中可交互
+        z-index: 3; // 避免被父元素覆盖
+
+        > img {
+          width: 41px;
+          height: 24px;
+        }
       }
 
       .line {
@@ -183,9 +216,98 @@ function getImgSrc (picName) {
         height: 24px;
         width: 2px;
         background: linear-gradient(0deg, rgba(34, 73, 127, 0) 0%, rgba(136, 234, 255, 0.6) 50%, rgba(34, 73, 127, 0) 100%);
-        margin:0 15px;
+        margin: 0 15px;
+      }
+    }
+  }
+}
+
+/* 自定义 Tooltip 样式 */
+.tooltip-content {
+  padding: 6px 12px;
+  box-sizing: border-box;
+  min-width: 103px;
+  min-height: 76px;
+  background: rgba(16, 104, 179, 0.3) !important;
+  border: 1px solid #1d85a9 !important;
+  box-shadow: inset 0px 0px 8px 0px rgba(64, 211, 255, 0.5) !important;
+  border-radius: 4px 4px 4px 4px;
+  font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
+  font-weight: normal;
+  font-size: 12px;
+  color: #a6b9cc;
+  font-style: normal;
+  text-transform: none;
+
+  .tooltip-content_top {
+    display: flex;
+    align-items: center;
+
+    > img {
+      margin-right: 3px;
+      width: 17px;
+      height: 17px;
+    }
+  }
+
+  .tooltip-content_bottom {
+    display: flex;
+    align-items: center;
+
+    > div {
+      display: flex;
+      align-items: center;
+
+      > img {
+        margin-right: 3px;
+        width: 17px;
+        height: 17px;
+      }
+    }
+
+    .tooltip-content_bottom_left {
+      margin-right: 16px;
+    }
+
+    .tooltip-content_bottom_right {
+      font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
+      font-weight: normal;
+      font-size: 12px;
+      color: #ffffff;
+      font-style: normal;
+      text-transform: none;
+
+      > span {
+        font-family: Roboto, Roboto;
+        font-weight: 600;
+        font-size: 16px;
+        color: #70eeff;
+        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
+        font-style: normal;
+        text-transform: none;
       }
     }
   }
 }
 </style>
+
+<style>
+/* .el-popper.is-customized {
+  padding: 6px 12px;
+  background: rgba(16, 104, 179, 0.3) !important;
+  border: 1px solid #1d85a9 !important;
+  color: #fff;
+  box-shadow: inset 0px 0px 8px 0px rgba(64, 211, 255, 0.5) !important;
+  border-radius: 4px 4px 4px 4px;
+} */
+
+.el-popper.is-customized .el-popper__arrow::before {
+  /* background: linear-gradient(45deg, rgba(16, 104, 179, 0.3), rgba(16, 104, 179, 0.3)); */
+  background: transparent;
+  right: 0;
+}
+
+.custom-tooltip {
+  z-index: 9999 !important;
+}
+</style>

+ 74 - 56
src/views/left/dialog/AiPublicRiskDialog.vue

@@ -6,84 +6,98 @@
       AI应急助手
     </div>
     <el-scrollbar class="ai-public-content">
-      <div class="title-box">
+      <div class="title-box" @click="showBigContent = !showBigContent">
         <div class="content">疾病判断</div>
-      </div>
-      <div class="content-box">
-        <div class="text-content">
-          <span>根据病例的临床表现和检测结果,初步排除了常见的呼吸道传染病病原体,考虑不明原因肺炎的可能性大,包括:</span>
-        </div>
-        <div class="show-content">
-          <span class="content">1.罕见或新发的病原体感染:如SARS、人感染动物源性流感、MERS等</span>
-        </div>
-        <div class="show-content">
-          <span class="content">2.细菌性或真菌性肺炎:如肺炎克雷伯菌感染、肺炎链球菌感染、肺孢子菌感染等</span>
+        <div class="arrow-box">
+          <el-icon v-if="showBigContent" color="#67f6fe"><ArrowDownBold /></el-icon>
+          <el-icon v-else color="#67f6fe"><ArrowUpBold /></el-icon>
         </div>
       </div>
-      <div class="title-box">
-        <div class="content">疾病概述</div>
-      </div>
 
-      <div class="content-box">
-        <div class="show-content" @click="showContent = !showContent">
-          <span class="content">1.罕见或新发的病原体感染:如SARS、人感染动物源性流感、MERS等</span>
-          <div class="arrow-box">
-            <el-icon v-if="showContent"><CaretTop /></el-icon>
-            <el-icon v-else><CaretBottom /></el-icon>
+      <transition name="Bigfade">
+        <div class="content-box"  v-if="showBigContent">
+          <div class="text-content">
+            <span>根据病例的临床表现和检测结果,初步排除了常见的呼吸道传染病病原体,考虑不明原因肺炎的可能性大,包括:</span>
           </div>
-        </div>
-        <transition name="fade">
-          <div class="bottom-content-box" v-if="showContent">
-            SARS(传染性非典型肺炎)是由SARS冠状病毒(SARS-CoV)引起的一种急性呼吸道传染病。
-            <br />
-            (1) 法定传染病:乙类传染病,按照甲类传染病管理。 (2)
-            <br />
-            病原体:SARS冠状病毒,属于冠状病毒科,是一种单链RNA病毒。 (3) 流行病学
-            <br />
-            · 传染源:病人是最主要的传染源。
-            <br />
-            · 传播途径:近距离呼吸道飞沫传播、密切接触传播。
-            <br />
-            · 易感人群:青壮年、医护人员、免疫力低下者。 (4) 临床表现:
-            <br />
-            · 潜伏期:1-16天,常见为3-5天。
-            <br />
-            · 症状:起病急,以高热(体温常超过38℃)为首发症状,可伴有头痛、肌肉酸痛、乏力、腹泻等。发病3-7天后出现干咳、少痰,部分患者有血丝痰。重症患者可出现呼吸窘迫综合征(ARDS)、休克和多器官功能衰竭。
-            <br />
-            (5) 流行特征
-            <br />
-            · 地区分布:2002年11月至2003年7月全球首次SARS流行中,全球共报告SARS临床诊断病例8096例,死亡774例,发病波及29个国家和地区。病例主要分布于亚洲、欧洲、美洲等地区。中国内地总发病数达5327例,死亡349例,病死率为6.6%,病例主要集中在北京、广东、山西、内蒙古、河北、天津等地。
-            <br />
-            · 时间分布:发病主要集中在2003年3月中旬至5月中。
-            <br />
-            · 人群分布:主要发病年龄
-            <br />
-            在20~60岁之间。男女性别间发病无显著差异。人群职业分布有医务人员明显高发的特点。
-            <br />
+          <div class="show-content">
+            <span class="content">1.罕见或新发的病原体感染:如SARS、人感染动物源性流感、MERS等</span>
+          </div>
+          <div class="show-content">
+            <span class="content">2.细菌性或真菌性肺炎:如肺炎克雷伯菌感染、肺炎链球菌感染、肺孢子菌感染等</span>
           </div>
-        </transition>
+        </div>
+      </transition>
 
-        <div class="show-content">
-          <span class="content">2.细菌性或真菌性肺炎:如肺炎克雷伯菌感染、肺炎链球菌感染、肺孢子菌感染等</span>
+      <div class="title-box" @click="showBigContent = !showBigContent">
+        <div class="content">疾病概述</div>
+        <div class="arrow-box">
+          <el-icon v-if="showBigContent" color="#67f6fe"><ArrowDownBold /></el-icon>
+          <el-icon v-else color="#67f6fe"><ArrowUpBold /></el-icon>
         </div>
       </div>
+      <transition name="Bigfade">
+        <div class="content-box">
+          <div class="show-content" @click="showContent = !showContent">
+            <span class="content">1.罕见或新发的病原体感染:如SARS、人感染动物源性流感、MERS等</span>
+            <div class="arrow-box">
+              <el-icon v-if="showContent"><CaretTop /></el-icon>
+              <el-icon v-else><CaretBottom /></el-icon>
+            </div>
+          </div>
+          <transition name="fade">
+            <div class="bottom-content-box" v-if="showContent">
+              SARS(传染性非典型肺炎)是由SARS冠状病毒(SARS-CoV)引起的一种急性呼吸道传染病。
+              <br />
+              (1) 法定传染病:乙类传染病,按照甲类传染病管理。 (2)
+              <br />
+              病原体:SARS冠状病毒,属于冠状病毒科,是一种单链RNA病毒。 (3) 流行病学
+              <br />
+              · 传染源:病人是最主要的传染源。
+              <br />
+              · 传播途径:近距离呼吸道飞沫传播、密切接触传播。
+              <br />
+              · 易感人群:青壮年、医护人员、免疫力低下者。 (4) 临床表现:
+              <br />
+              · 潜伏期:1-16天,常见为3-5天。
+              <br />
+              · 症状:起病急,以高热(体温常超过38℃)为首发症状,可伴有头痛、肌肉酸痛、乏力、腹泻等。发病3-7天后出现干咳、少痰,部分患者有血丝痰。重症患者可出现呼吸窘迫综合征(ARDS)、休克和多器官功能衰竭。
+              <br />
+              (5) 流行特征
+              <br />
+              · 地区分布:2002年11月至2003年7月全球首次SARS流行中,全球共报告SARS临床诊断病例8096例,死亡774例,发病波及29个国家和地区。病例主要分布于亚洲、欧洲、美洲等地区。中国内地总发病数达5327例,死亡349例,病死率为6.6%,病例主要集中在北京、广东、山西、内蒙古、河北、天津等地。
+              <br />
+              · 时间分布:发病主要集中在2003年3月中旬至5月中。
+              <br />
+              · 人群分布:主要发病年龄
+              <br />
+              在20~60岁之间。男女性别间发病无显著差异。人群职业分布有医务人员明显高发的特点。
+              <br />
+            </div>
+          </transition>
+
+          <div class="show-content">
+            <span class="content">2.细菌性或真菌性肺炎:如肺炎克雷伯菌感染、肺炎链球菌感染、肺孢子菌感染等</span>
+          </div>
+        </div>
+      </transition>
     </el-scrollbar>
   </div>
 </template>
 
 <script setup>
 import { ref } from 'vue'
-import { CaretTop, CaretBottom } from '@element-plus/icons-vue'
+import { CaretTop, CaretBottom, ArrowUpBold, ArrowDownBold } from '@element-plus/icons-vue'
 import { useDialogStore } from '@/store/dialog'
 let dialogStore = useDialogStore()
-import { right } from "@antv/x6/lib/registry/port-layout/line";
+import { right } from '@antv/x6/lib/registry/port-layout/line'
 
 const emit = defineEmits(['closeClick'])
 
 const handleClose = () => {
-    dialogStore.setRiskAIDialogOpen(false)
+  dialogStore.setRiskAIDialogOpen(false)
 }
-const showContent = ref(false)
+const showBigContent = ref(false);
+const showContent = ref(false);
 </script>
 
 <style lang="scss" scoped>
@@ -147,6 +161,10 @@ const showContent = ref(false)
       padding-left: 15px;
       border-bottom: 1px solid;
       border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(0, 240, 255, 0) 47%) 2 2;
+      display: flex;
+      justify-content: space-between;
+      align-items: center;
+      padding-right: 10px;
       .content {
         border-radius: 0px 0px 0px 0px;
         height: 100%;

+ 2 - 1
src/views/left/dialog/ProgressInDisposalDialog.vue

@@ -133,7 +133,8 @@ function handleRowClick() {}
     height: 820px;
     padding: 20px;
     box-sizing: border-box;
-    background: url(../../../assets/img/突发公共卫生风险信息接报报表(弹窗).png);
+    background: url(../../../assets/img/突发公共卫生风险信息接报报表(弹窗).png) no-repeat;
+    background-size: 100% 100%;
     // .dispose_table_container_title{
     //   height: 28px;
     //   margin-top: 10px;

+ 0 - 36
src/views/left/dialog/components/DisposalProgressContent copy 2.vue

@@ -339,45 +339,9 @@ onMounted(() => {
   // 添加边
   graph.addEdges(edges)
 
-  handleLayout()
 })
 
-// 画布格式化
-const handleLayout = () => {
-  const g = new dagre.graphlib.Graph()
 
-  // 设置图的属性
-  g.setGraph({
-    rankdir: 'LR' // 设置布局方向为横向,从左到右
-  })
-
-  g.setDefaultEdgeLabel(() => ({}))
-
-  // 获取 X6 的节点
-  const nodes = graph.getNodes()
-  nodes.forEach(node => {
-    const { width, height } = node.size()
-    g.setNode(node.id, { width, height })
-  })
-
-  // 获取 X6 的边
-  const edges = graph.getEdges()
-  edges.forEach(edge => {
-    g.setEdge(edge.getSourceCellId(), edge.getTargetCellId())
-  })
-
-  // 运行 dagre 布局算法
-  dagre.layout(g)
-
-  // 根据布局结果更新节点位置
-  g.nodes().forEach(id => {
-    const node = g.node(id)
-    const graphNode = graph.getCellById(id)
-    if (graphNode) {
-      graphNode.position(node.x, node.y)
-    }
-  })
-}
 </script>
 
 <style scoped>

+ 1 - 1
src/views/left/dialog/components/DisposalProgressContent.vue

@@ -399,7 +399,7 @@ onMounted(() => {
 })
 </script>
 
-<style scoped>
+<style scoped lang="scss">
 .container {
   width: 100%;
   height: 100%;

+ 5 - 5
src/views/left/modules/BigRiskTable.vue

@@ -227,7 +227,7 @@ function goBack() {
     // display: flex;
     height: 28px;
     width: 100%;
-
+    margin-bottom: 14px;
     .title_content {
       width: 100%;
       display: flex;
@@ -268,10 +268,10 @@ function goBack() {
 
     .line {
       margin-top: 5px;
-      width: 100%;
-      height: 1px;
-      background: linear-gradient(90deg, rgba(59, 220, 255, 0) 0%, rgba(59, 220, 255, 0.6) 34%, rgba(59, 220, 255, 0) 100%);
-      border-radius: 0px 0px 0px 0px;
+    width: 100%;
+    height: 1px;
+    background: linear-gradient(90deg, rgba(59, 220, 255, 0) 0%, rgba(59, 220, 255, 0.6) 34%, rgba(59, 220, 255, 0) 100%);
+    border-radius: 0px 0px 0px 0px;
     }
   }
 }