From e79d2888cc8f21dd9e9a2addfd33a8b2871abef6 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 15 Nov 2024 19:35:22 +0800
Subject: [PATCH] 突发事件模拟调整

---
 src/styles/base/dc-base.scss |   83 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 83 insertions(+), 0 deletions(-)

diff --git a/src/styles/base/dc-base.scss b/src/styles/base/dc-base.scss
index 9b0e8e2..8bb2edb 100644
--- a/src/styles/base/dc-base.scss
+++ b/src/styles/base/dc-base.scss
@@ -182,6 +182,89 @@
   }
 }
 
+.dynamic-event-profile-map-popup {
+  padding: 32px 30px;
+
+  position: absolute;
+  left: 100%;
+  bottom: 0;
+  width: 320px;
+  font-weight: bold;
+  font-style: italic;
+
+  .arrow {
+    position: absolute;
+    left: 0;
+    bottom: 0;
+    width: 45px;
+    height: 2px;
+    transform: rotate(-45deg);
+    background: red;
+    transform-origin: left bottom;
+  }
+
+  .content-wrap {
+    position: relative;
+    color: #fff;
+    background: rgba(255, 0, 0, 0.2);
+
+    &::after {
+      content: '';
+      position: absolute;
+      top: -0.8px;
+      /* 调整以匹配所需的发光区域 */
+      left: 0px;
+      /* 同上 */
+      right: 0px;
+      bottom: calc(100% - 0.8px);
+      background: white;
+      box-shadow: 0 0 8px red, inset 0 0 8px red;
+      animation: pulse-glow 3s infinite;
+    }
+
+    &::before {
+      content: '';
+      position: absolute;
+      top: calc(100% - 0.8px);
+      /* 调整以匹配所需的发光区域 */
+      left: 0px;
+      /* 同上 */
+      right: 0px;
+      bottom: -0.8px;
+      background: white;
+      box-shadow: 0 0 8px red, inset 0 0 8px red;
+      animation: pulse-glow 3s infinite;
+    }
+
+    .title {
+      position: relative;
+      height: 30px;
+      line-height: 30px;
+      font-size: 18px;
+
+
+      &::before {
+        content: '';
+        position: absolute;
+        top: calc(100% - 0.8px);
+        /* 调整以匹配所需的发光区域 */
+        left: 0px;
+        /* 同上 */
+        right: 40%;
+        bottom: -0.8px;
+        background: white;
+        box-shadow: 0 0 8px red, inset 0 0 8px red;
+        animation: pulse-glow 3s infinite;
+      }
+    }
+
+    .content {
+      text-indent: 2em;
+      line-height: 28px;
+    }
+  }
+}
+
 .widget.location-bar {
   position: absolute;
   left: 620px !important;

--
Gitblit v1.9.3