/* 全局样式 - 现代化升级 */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden; /* 恢复隐藏溢出，避免页面滚动条 */
    font-family: "微软雅黑", "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, 
        #0a0e27 0%, 
        #1a1a2e 25%, 
        #16213e 50%, 
        #0f3460 75%, 
        #0e4b99 100%);
    background-attachment: fixed;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: backgroundShift 20s ease-in-out infinite;
}

/* 背景动态效果 */
@keyframes backgroundShift {
    0%, 100% { 
        background: linear-gradient(135deg, 
            #0a0e27 0%, 
            #1a1a2e 25%, 
            #16213e 50%, 
            #0f3460 75%, 
            #0e4b99 100%);
    }
    50% { 
        background: linear-gradient(135deg, 
            #0e4b99 0%, 
            #0f3460 25%, 
            #16213e 50%, 
            #1a1a2e 75%, 
            #0a0e27 100%);
    }
}

/* 全屏地图容器 */
.map-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; /* 使用视口高度单位 */
    z-index: 1; /* 低层级，作为背景 */
    pointer-events: none; /* 初始不接收鼠标事件，让事件穿透到地图 */
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.map-container #main-map {
    width: 100% !important;
    height: 100% !important;
    pointer-events: auto; /* 地图可以接收鼠标事件 */
}

/* 全屏地图容器 */
.map-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* 低层级，作为背景 */
    pointer-events: none; /* 初始不接收鼠标事件，让事件穿透到地图 */
}

.map-container #main-map {
    width: 100% !important;
    height: 100% !important;
    pointer-events: auto; /* 地图可以接收鼠标事件 */
}

.map-title {
    position: absolute;
    top: 70px; /* 保持位置 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    color: #e90909; /* 金色 */
    font-size: 20px;
    background: rgba(40, 44, 52, 0.85); /* 更深的背景颜色 */
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(241, 9, 9, 0.5); /* 金色边框 */
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); /* 金色阴影 */
    /* backdrop-filter: blur(5px); */ /* 移除模糊效果 */
}

.map-title img {
    height: 20px;
    width: auto;
}


/* 添加全局过渡效果 */
.content_left > div, .content_center > div, .content_right > div {
    transition: all 0.3s ease-in-out;
}

/* 添加卡片悬浮效果 */
.content_left > div:hover, .content_center > div:hover, .content_right > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(13, 72, 224, 0.5);
}

/* 修改整体容器样式 */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden; /* 修改为hidden，防止出现滚动条 */
    background-color: transparent; /* 改为透明，显示地图背景 */
    color: #fff;
    font-family: "微软雅黑";
    display: flex;
    flex-direction: column;
}

/* 现代化头部样式 */
header {
    width: 100%;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, 
        rgba(0, 20, 40, 0.95) 0%, 
        rgba(13, 72, 224, 0.85) 50%, 
        rgba(0, 246, 255, 0.75) 100%);
    /* backdrop-filter: blur(15px); */ /* 移除模糊效果 */
    border-bottom: 2px solid rgba(0, 246, 255, 0.3);
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: clamp(22px, 3.5vw, 32px);
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
    z-index: 100;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 20px rgba(0, 246, 255, 0.3);
    animation: headerGlow 3s ease-in-out infinite;
}

/* 头部发光动画 */
@keyframes headerGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 246, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.4);
        box-shadow: 0 2px 20px rgba(0, 246, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 246, 255, 1), 0 0 40px rgba(255, 255, 255, 0.6);
        box-shadow: 0 2px 30px rgba(0, 246, 255, 0.5);
    }
}

#content {
    width: 100%;
    height: calc(100vh - 60px); /* 只减去header高度，确保填满整个视口 */
    margin: 0 auto;
    padding: 5px; /* 添加均匀的内边距 */
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap; /* 防止换行 */
    justify-content: space-between;
    align-items: stretch; /* 拉伸子元素以填充容器高度 */
    overflow: hidden;
    position: relative; /* 添加相对定位 */
    z-index: 10; /* 确保在地图上方 */
    pointer-events: none; /* 初始不接收鼠标事件，让事件穿透到地图 */
    background: none; /* 移除背景 */
}

/* 左侧栏 */
/* 修复左侧内容区域 */
#content .content_left {
    width: 22%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 5px;
    box-sizing: border-box;
    overflow: hidden; /* 修改为hidden，防止出现滚动条 */
    justify-content: space-between; /* 确保内容均匀分布 */
    pointer-events: auto; /* 恢复鼠标事件 */
    z-index: 11; /* 确保在地图上方 */
}

/* 现代化左侧组件样式 */
.content_left .dtuplc {
    width: 100%;
    height: 160px;
    padding: 15px;
    background: linear-gradient(135deg, 
        rgba(0, 20, 40, 0.8) 0%, 
        rgba(13, 72, 224, 0.6) 50%, 
        rgba(0, 246, 255, 0.4) 100%);
    /* backdrop-filter: blur(20px); */ /* 移除模糊效果 */
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 15px;
    background-clip: padding-box;
    box-shadow: 
        0 8px 32px rgba(0, 246, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(0, 246, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content_left .dtuplc::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 246, 255, 0.2), 
        transparent);
    transition: left 0.5s;
}

.content_left .dtuplc:hover::before {
    left: 100%;
}

.content_left .dtuplc:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 246, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(0, 246, 255, 0.7);
}

.dtu {
    width: 100%; /* 修改宽度为100% */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.content_left .online {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, 
        rgba(0, 40, 20, 0.8) 0%, 
        rgba(0, 100, 50, 0.6) 50%, 
        rgba(0, 255, 128, 0.4) 100%);
    /* backdrop-filter: blur(20px); */ /* 移除模糊效果 */
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    border-radius: 15px;
    background-clip: padding-box;
    box-shadow: 
        0 8px 32px rgba(0, 255, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(0, 255, 128, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content_left .online::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 128, 0.2), 
        transparent);
    transition: left 0.5s;
}

.content_left .online:hover::before {
    left: 100%;
}

.content_left .online:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 255, 128, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(0, 255, 128, 0.7);
}

.content_left .industry {
    width: 100%;
    flex-grow: 1;
    background: linear-gradient(135deg, 
        rgba(40, 20, 0, 0.8) 0%, 
        rgba(100, 50, 0, 0.6) 50%, 
        rgba(255, 165, 0, 0.4) 100%);
    /* backdrop-filter: blur(20px); */ /* 移除模糊效果 */
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    border-radius: 15px;
    background-clip: padding-box;
    box-shadow: 
        0 8px 32px rgba(255, 165, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 165, 0, 0.5);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content_left .industry::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 165, 0, 0.2), 
        transparent);
    transition: left 0.5s;
}

.content_left .industry:hover::before {
    left: 100%;
}

.content_left .industry:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 165, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 165, 0, 0.7);
}

/* 现代化标题样式 */
.content_left .title,
.content_right .title {
    width: 100%;
    height: 60px;
    line-height: 60px;
    float: none;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
    background: linear-gradient(135deg, 
        rgba(70, 130, 180, 0.8) 0%, 
        rgba(100, 149, 237, 0.6) 50%, 
        rgba(135, 206, 250, 0.4) 100%);
    /* backdrop-filter: blur(15px); */ /* 移除模糊效果 */
    border-radius: 12px 12px 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 20px rgba(70, 130, 180, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content_left .title::before,
.content_right .title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s;
}

.content_left .title:hover::before,
.content_right .title:hover::before {
    left: 100%;
}

.content_left .title:hover,
.content_right .title:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* 优化左侧扇形图 */
.online .online_con {
    width: 100%;
    height: calc(100% - 50px);
    padding: 5px;
    float: none;
    box-sizing: border-box;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: none; /* 移除之前的偏移 */
}

#container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 优化左侧标题 */
.content_left .title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    float: none;
    margin-bottom: 5px;
    position: relative;
    z-index: 10; /* 提高z-index，防止被遮挡 */
    padding-top: 5px; /* 增加顶部内边距，防止文字被遮挡 */
}

#content .content_right {
    width: 22%; /* 增加宽度，确保内容不超出 */
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 5px;
    box-sizing: border-box;
    overflow: hidden; /* 修改为hidden，防止出现滚动条 */
    pointer-events: auto; /* 恢复鼠标事件 */
    z-index: 11; /* 确保在地图上方 */
}

.content_left .title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    float: none;
    margin-bottom: 5px;
    position: relative;
    z-index: 10;
    padding-top: 10px; /* 保持顶部内边距 */
    font-weight: bold; /* 保持加粗标题 */
    letter-spacing: 1px; /* 保持字间距 */
    color: #ffffff; /* 白色 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* 清晰的阴影 */
    border-bottom: none; /* 移除底部边框 */
}

.industry .industry_con {
    width: 100%;
    height: calc(100% - 50px);
    padding: 5px;
    float: none;
    box-sizing: border-box;
    /* 移除aspect-ratio属性，让高度自适应 */
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    transform: translateX(10px); /* 向右移动10px */
    flex: 1; /* 填充剩余空间 */
    min-height: 0; /* 允许容器缩小 */
}

/* 中间栏 */
#content .content_center {
    width: 56%; /* 略微减少宽度 */
    height: 100%;
    overflow: hidden;
    padding: 0 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    z-index: 11; /* 确保在地图上方 */
}

/* 右侧栏 */
/* 修复右侧内容区域 */
#content .content_right {
    width: 22%; /* 增加宽度，确保内容不超出 */
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 5px;
    box-sizing: border-box;
    overflow: hidden; /* 修改为hidden，防止出现滚动条 */
    pointer-events: auto; /* 恢复鼠标事件 */
    z-index: 11; /* 确保在地图上方 */
    justify-content: space-between; /* 均匀分布子元素 */
}

/* 现代化右侧报警面板 */
.content_right .report {
    width: 100%;
    height: auto;
    min-height: 180px; /* 增加最小高度 */
    padding: 30px 20px; /* 增加上下padding，为圆形提供更多空间 */
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    align-items: center;
    float: none;
    position: relative;
    margin-bottom: 15px;
    background: linear-gradient(135deg, 
        rgba(0, 40, 60, 0.8) 0%, 
        rgba(0, 100, 150, 0.6) 50%, 
        rgba(0, 191, 255, 0.4) 100%);
    /* backdrop-filter: blur(20px); */ /* 移除模糊效果 */
    border: 2px solid transparent;
    border-radius: 15px;
    background-clip: padding-box;
    box-shadow: 
        0 8px 32px rgba(0, 191, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(0, 191, 255, 0.5);
    flex-shrink: 0;
    overflow: visible; /* 允许圆形完全显示，不被切割 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content_right .report::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 191, 255, 0.2), 
        transparent);
    transition: left 0.5s;
}

.content_right .report:hover::before {
    left: 100%;
}

.content_right .report:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 191, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(0, 191, 255, 0.7);
}

/* 现代化圆形数据显示 */
.report1, .report2 {
    width: 45%;
    height: 120px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, 
        rgba(0, 50, 100, 0.9) 0%, 
        rgba(0, 100, 200, 0.7) 50%, 
        rgba(0, 150, 255, 0.5) 100%);
    /* backdrop-filter: blur(15px); */ /* 移除模糊效果 */
    border-radius: 50%;
    border: 3px solid rgba(0, 191, 255, 0.8);
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.6),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible; /* 允许圆形完全显示，不被切割 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-glow 3s ease-in-out infinite;
}

/* 移除旋转动画效果 */
.report1::before, .report2::before {
    display: none; /* 完全隐藏旋转动画元素 */
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 191, 255, 0.6),
            inset 0 2px 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 191, 255, 0.8),
            inset 0 2px 15px rgba(255, 255, 255, 0.3);
    }
}

.report1:hover, .report2:hover {
    transform: scale(1.05) translateY(-3px);
    border-color: rgba(0, 246, 255, 1);
    box-shadow: 
        0 0 35px rgba(0, 246, 255, 0.8),
        inset 0 2px 15px rgba(255, 255, 255, 0.4);
}

.report1 {
    margin-left: 5px; /* 左侧圆形向右移动 */
}

.report2 {
    margin-right: 5px; /* 右侧圆形向左移动 */
}

/* 修改选中状态样式 */
.content_right .report:active::before,
.content_right .report:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(0, 246, 255, 0.8);
    border-radius: 8px;
    pointer-events: none;
}


/* 优化文字大小 */
.report p {
    margin: 0 0 5px 0;
    font-size: 14px; /* 减小字体大小 */
    font-weight: bold;
}

.report small {
    font-size: 18px; /* 减小字体大小 */
}

/* 现代化右侧记录面板 */
.content_right .news_report,
.content_right .data_box {
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 30, 60, 0.9) 0%, 
        rgba(0, 50, 100, 0.8) 50%, 
        rgba(0, 80, 160, 0.7) 100%);
    /* backdrop-filter: blur(8px); */ /* 移除模糊效果 */
    margin-bottom: 15px;
    float: none;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0, 191, 255, 0.4);
    border-radius: 15px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 191, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content_right .news_report::before,
.content_right .data_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 0, 128, 0.2), 
        transparent);
    transition: left 0.5s;
}

.content_right .news_report:hover::before,
.content_right .data_box:hover::before {
    left: 100%;
}

.content_right .news_report:hover,
.content_right .data_box:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 191, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 246, 255, 0.6);
}

.content_right .news_report {
    height: auto;
    max-height: 350px; /* 增加最大高度，从280px改为350px */
    min-height: 250px; /* 增加最小高度，从200px改为250px */
    overflow: hidden; /* 移除滚动条 */
}

.content_right .data_box {
    flex: 1; /* 填充剩余空间 */
    min-height: 0; /* 允许容器缩小 */
    margin-bottom: 0; /* 移除底部间距，使其与页面底部对齐 */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 底部对齐 */
}

.content_right .title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    float: none;
    margin-bottom: 5px;
    color: #ffffff; /* 白色 */
    font-weight: bold; /* 加粗标题 */
    letter-spacing: 1px; /* 字间距 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* 清晰的阴影 */
    border-bottom: none; /* 移除底部边框 */
    padding-top: 10px; /* 顶部内边距 */
    position: relative;
    z-index: 10;
}

/* 优化报警记录区域 */
.news_list {
    width: 100%;
    height: calc(100% - 50px);
    padding: 8px 0px 5px 8px; /* 调整内边距，使文字靠左靠上 */
    float: none;
    box-sizing: border-box;
    text-align: left;
    margin-top: 0;
    border-radius: 0 0 5px 5px; /* 添加圆角 */
}

/* 优化报警记录文字 */
/* 报警项样式 */
.alarm-item {
    background: rgba(30, 30, 40, 0.9); /* 更深的背景颜色 */
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 8px 10px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3); /* 白色阴影效果 */
    transition: all 0.3s ease;
    border-left: 5px solid #ff4d4f; /* 加粗左侧边框 */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* 添加顶部边框 */
    border-right: 1px solid rgba(255, 255, 255, 0.2); /* 添加右侧边框 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* 添加底部边框 */
}

.alarm-item:hover {
    transform: translateX(5px);
    background: rgba(60, 30, 60, 0.9); /* 更改为紫色调背景 */
    box-shadow: 0 4px 12px rgba(255, 0, 255, 0.5); /* 紫色悬停阴影 */
    border-left: 5px solid #ff00ff; /* 紫色左侧边框 */
}

/* 新报警闪烁动画 */
@keyframes newAlarmBlink {
    0% { background: rgba(30, 30, 40, 0.9); } /* 与普通报警项背景一致 */
    50% { background: rgba(255, 0, 0, 0.6); } /* 更鲜艳的红色警报 */
    100% { background: rgba(30, 30, 40, 0.9); } /* 与普通报警项背景一致 */
}

.new-alarm {
    animation: newAlarmBlink 2s ease-in-out infinite;
}

/* 报警信息各部分样式 */
.alarm-time {
    color: #87ceeb; /* 天蓝色 */
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* 清晰的阴影 */
}

.alarm-location {
    color: #ffffff; /* 纯白色 */
    font-size: 13px;
    margin-bottom: 3px;
    white-space: normal;
    line-height: 1.3;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5); /* 添加文字阴影 */
}

.alarm-device {
    color: #ffa500; /* 温和的橙色 */
    font-size: 13px;
    margin-bottom: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* 清晰的阴影 */
}

.alarm-device span {
    font-weight: bold;
    word-break: break-all;
    display: inline-block;
    max-width: calc(100% - 70px);
}

.alarm-type {
    color: #ff4d4f;
    font-size: 13px;
}

.alarm-type-label {
    display: inline-block;
    background: linear-gradient(90deg, #ff4d4f, #ff7875);
    color: #fff;
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 4px;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(255,77,79,0.5);
}

/* 优化数据记录图表 */
.data_box .data_con {
    width: 100%;
    height: calc(100% - 50px);
    padding: 5px;
    float: none;
    box-sizing: border-box;
    flex: 1; /* 填充剩余空间 */
    min-height: 0; /* 允许容器缩小 */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px; /* 添加圆角 */
}


/* 移除所有float属性，使用flex布局替代 */
.content_left .dtuplc,
.content_left .online,
.content_left .industry,
.content_center .center_top,
.content_center .center_bot,
.content_right .report,
.content_right .news_report,
.content_right .data_box {
    float: none;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

#content .content_center {
    width: 56%; /* 略微减少宽度 */
    height: 100%;
    overflow: hidden;
    padding: 0 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    z-index: 11; /* 确保在地图上方 */
}

/* 调整中间区域的上下分布 */
.content_center .center_top {
    height: 72%; /* 增加地图区域高度 */
    min-height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: -15px; /* 向上移动地图区域 */
    border: none; /* 移除边框 */
    border-radius: 8px; /* 添加圆角 */
    overflow: hidden; /* 确保内容不溢出 */
    pointer-events: none; /* 不接收鼠标事件，让事件穿透到地图 */
    box-shadow: none; /* 移除阴影 */
}



/* 现代化监控列表表格 */
.panel-table {
    text-align: left;
    color: #ffffff;
    margin: 0 auto !important;
    width: 100%; /* 调整为100%宽度 */
    margin-top: 5px !important;
    padding: 0 !important;
    font-size: 0.9rem; /* 减小字体 */
    border-collapse: collapse;
    background: linear-gradient(135deg, 
        rgba(30, 60, 90, 0.9) 0%, 
        rgba(40, 80, 120, 0.8) 50%, 
        rgba(50, 100, 150, 0.7) 100%); /* 更清晰的蓝色渐变 */
    border: 1px solid rgba(135, 206, 235, 0.4); /* 天蓝色边框 */
    border-radius: 8px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

/* 移除表格动画效果，保持简洁 */

.panel-table:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 现代化表格行样式 */
tr.aaa {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

tr.aaa:hover {
    background: linear-gradient(90deg, 
        rgba(0, 255, 128, 0.2) 0%, 
        rgba(0, 255, 128, 0.4) 50%, 
        rgba(0, 255, 128, 0.2) 100%);
    cursor: pointer;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 255, 128, 0.3);
}

/* 现代化表格标题样式 */
.panel-table th {
    background: linear-gradient(135deg, 
        rgba(50, 100, 150, 0.9) 0%, 
        rgba(70, 130, 180, 0.8) 100%); /* 蓝色渐变 */
    padding: 8px 6px; /* 减小内边距 */
    text-align: center;
    font-weight: bold;
    color: #ffffff; /* 白色文字 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(135, 206, 235, 0.6); /* 天蓝色边框 */
    position: relative;
    z-index: 3;
    font-size: 0.85rem; /* 减小字体 */
}

/* 移除表头动画效果 */

.panel-table td {
    padding: 6px 4px; /* 减小内边距 */
    text-align: center;
    border-top: 1px solid rgba(135, 206, 235, 0.2); /* 天蓝色边框 */
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* 清晰阴影 */
    position: relative;
    z-index: 2;
    font-size: 0.8rem; /* 减小字体 */
    white-space: nowrap; /* 防止文字换行 */
    overflow: hidden; /* 隐藏溢出 */
    text-overflow: ellipsis; /* 文字溢出显示省略号 */
}

.panel-table tr:nth-child(odd) {
    background: rgba(30, 60, 90, 0.3); /* 蓝色调 */
}

.panel-table tr:nth-child(even) {
    background: rgba(40, 80, 120, 0.2); /* 稍深的蓝色调 */
}

/* 表格行悬停效果 */
.panel-table tbody tr:hover {
    background: rgba(70, 130, 180, 0.4) !important; /* 悬停时的蓝色高亮 */
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* 现代化中间区域底部 */
.content_center .center_bot {
    height: 30%; /* 保持高度 */
    min-height: 170px;
    max-height: 230px;
    background: linear-gradient(135deg, 
        rgba(0, 30, 60, 0.9) 0%, 
        rgba(0, 50, 100, 0.8) 30%, 
        rgba(0, 80, 160, 0.7) 70%, 
        rgba(0, 100, 200, 0.6) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 191, 255, 0.4);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 191, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center; /* 保持水平居中 */
    padding: 15px;
    margin-top: 15px;
    box-sizing: border-box;
    overflow: auto;
    position: relative;
    pointer-events: auto; /* 保持鼠标事件 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content_center .center_bot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.8s;
}

.content_center .center_bot:hover::before {
    left: 100%;
}

.content_center .center_bot:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 191, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 246, 255, 0.6);
}




.b1 {
    width: 70px;
    height: 25px;
    background: #FF0000;
    cursor: pointer;
    color: #FFFFFF;
    border: none;
    border-radius: 3px;
}

.b2 {
    width: 70px;
    height: 25px;
    background: #2897c4;
    cursor: pointer;
    color: #FFFFFF;
    border: none;
    border-radius: 3px;
}

.b3 {
    width: 70px;
    height: 25px;
    background: #36791a;
    cursor: pointer;
    color: #FFFFFF;
    border: none;
    border-radius: 3px;
}

#content .content_right {
    width: 22%; /* 增加宽度，确保内容不超出 */
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 5px;
    box-sizing: border-box;
    overflow: hidden; /* 修改为hidden，防止出现滚动条 */
    pointer-events: auto; /* 恢复鼠标事件 */
    z-index: 11; /* 确保在地图上方 */
}

.content_right .report {
    width: 325px;
    height: 145px;
    line-height: 20px;
    float: left;
    background: url(../images/zuoyi.png) top no-repeat;
    padding: 35px 30px 0 30px;
}

.report1 {
    width: 134px;
    height: 110px;
    background: url(../images/report01.png) center no-repeat;
    float: left;
    text-align: center;
    padding-top: 24px;
}

.report2 {
    width: 134px;
    height: 110px;
    background: url(../images/report02.png) center no-repeat;
    float: right;
    text-align: center;
    padding-top: 24px;
}

.report p {
    font-weight: bold;
    font-size: 18px;
    color: #ff0000;
}

.report small {
    font-size: 24px;
}

.content_right .news_report {
    width: 385px;
    height: 330px;
    margin-top: 20px;
    float: left;
    background: url(../images/bg_report.png) no-repeat;
}

.content_right .title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    float: none;
    margin-bottom: 5px;
    position: relative;
    z-index: 10; /* 保持z-index */
    padding-top: 5px; /* 保持顶部内边距 */
    color: #ffd700; /* 金色 */
    font-size: 18px;
    text-align: center;
    background: rgba(40, 44, 52, 0.85); /* 更深的背景颜色 */
    /* backdrop-filter: blur(5px); */ /* 移除模糊效果 */
    border-bottom: 1px solid rgba(255, 215, 0, 0.4); /* 金色边框 */
    border-radius: 8px 8px 0 0;
}

.content_right .title img {
    vertical-align: middle;
}

.news_list {
    width: 100%;
    height: calc(100% - 50px);
    padding: 8px 12px 5px 12px;
    float: none;
    box-sizing: border-box;
    text-align: left;
    margin-top: 0;
    border-radius: 0 0 5px 5px;
    overflow-y: auto;
    overflow-x: hidden; /* 确保没有横向滚动条 */
    word-wrap: break-word;
    word-break: break-all; /* 强制换行，避免横向溢出 */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 191, 255, 0.8) rgba(0, 30, 60, 0.3);
    flex: 1;
    min-height: 0;
    max-width: 100%;
}
.news_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news_list ul li {
    width: 100%;
    height: auto;
    float: left;
    line-height: 1.4rem;
    padding-left: 15px;
    padding-right: 5px;
    word-wrap: break-word;
    word-break: break-all; /* 强制换行，避免横向溢出 */
    white-space: normal;
    overflow: hidden;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 8px;
    max-width: 100%; /* 确保不超出容器宽度 */
    box-sizing: border-box;
    text-overflow: ellipsis; /* 文本溢出时显示省略号 */
}
.li01{background: url(../images/new_list01.png) left center no-repeat;}
.li02{background: url(../images/new_list02.png) left 3px no-repeat; color: #FF0000; padding-top: 0; margin-top: 0;}

/* 现代化报警搜索框样式 */
.alarm-search {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 8px;
    background: linear-gradient(135deg, 
        rgba(0, 30, 60, 0.8) 0%, 
        rgba(0, 50, 100, 0.6) 100%);
    /* backdrop-filter: blur(5px); */ /* 移除模糊效果 */
    border-radius: 12px;
    border: 2px solid rgba(0, 191, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.alarm-search:hover {
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(0, 191, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.alarm-search input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    /* backdrop-filter: blur(3px); */ /* 移除模糊效果 */
}

.alarm-search input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.alarm-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.alarm-search button {
    margin-left: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, 
        rgba(0, 123, 255, 0.8) 0%, 
        rgba(0, 191, 255, 0.6) 100%);
    border: 1px solid rgba(0, 191, 255, 0.4);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(3px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.alarm-search button:hover {
    background: linear-gradient(135deg, 
        rgba(0, 123, 255, 1) 0%, 
        rgba(0, 191, 255, 0.8) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    border-color: rgba(0, 191, 255, 0.6);
}

.alarm-search button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}
.content_right .data_box {
    width: 385px;
    height: 420px;
    margin-top: 20px;
    float: left;
    background: url(../images/bg_data.png) no-repeat;
}

.data_con {
    width: 365px;
    height: 350px; /* 增加高度，垂直拉伸 */
    float: left;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}




/* 聚合点静态样式 */
.cluster-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
}

    @keyframes pulse-ring {
        0% {
            transform: scale(0.8);
            opacity: 0.6;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }
    /* 优化小屏幕适配 */
    @media screen and (max-width: 1366px) {
        #content {
            flex-direction: row; /* 保持水平布局 */
            overflow: hidden; /* 防止滚动 */
            flex-wrap: wrap; /* 允许换行 */
        }
        
        #content .content_left {
            width: 25%;
        }
        
        #content .content_center {
            width: 50%;
            order: 0; /* 保持原有顺序 */
        }
        
        #content .content_right {
            width: 25%;
        }
        
        .content_center .center_top {
            height: 65%;
        }
        
        .content_center .center_bot {
            height: 35%;
        }
    }

/* 中等屏幕适配 */
@media screen and (min-width: 1367px) and (max-width: 1600px) {
    #content .content_left,
    #content .content_right {
        width: 20%;
    }
    
    #content .content_center {
        width: 60%;
    }
}
/*弹窗*/
.pop,.pop2,.pop3 {display: none;  width: 800px; min-height: 570px;  max-height: 750px;  height:570px;  position: absolute;  left: 0;  right: 0; margin:auto;  padding: 25px;  z-index: 130;  border-radius: 3px;  background-color: #23509a; border: #fff solid 1px;  box-shadow: 0 5px 18px rgba(100, 0, 0, .5);  }
.pop-top{ text-align: center; font-size: 20px; font-weight:bold; color: #ff6f05; height:40px;  width:100%; background: url(../images/line.png) no-repeat bottom center;}
.pop-top span{  float: right;  cursor: pointer; color: #fff; font-weight: bold; display:black}
.pop-foot{  height:50px;  line-height:50px;  width:100%;  border-top: 1px #5682dc solid;  text-align: right;  }
.pop-cancel{  padding:8px 15px;  margin:15px 5px;  border: none;  border-radius: 5px;  background-color: #ff6f05;  color: #fff;  cursor:pointer;  }
.pop-content{  height: 480px;}
.bgPop,.bgPop2,.bgPop3{  display: none;  position: absolute;  z-index: 129;  left: 0;  top: 0;  width: 100%;  height: 100%;  background: rgba(0,0,0,.2);}

/* 添加全局动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 246, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 246, 255, 0.8); }
}

/* 应用动画效果 */
.content_left > div, .content_center > div, .content_right > div {
    animation: fadeIn 0.8s ease-out;
}

.report1, .report2 {
    animation: glow 3s infinite ease-in-out;
}
.bgPop,.bgPop2,.bgPop3{  display: none;  position: absolute;  z-index: 129;  left: 0;  top: 0;  width: 100%;  height: 100%;  background: rgba(0,0,0,.2);}

/* 优化标题图标 */
.title img {
    vertical-align: middle;
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.title:hover img {
    transform: scale(1.1); /* 悬浮时放大图标 */
}

/* 现代化数字和文本样式 */
.report1 .num, .report2 .num {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(0, 246, 255, 0.9),
        0 0 30px rgba(0, 246, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
    line-height: 1;
    font-family: 'Arial', 'Microsoft YaHei', sans-serif;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.report1 .txt, .report2 .txt {
    font-size: 13px;
    color: #e0f7ff;
    text-shadow: 
        0 0 8px rgba(224, 247, 255, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.report1:hover .num, .report2:hover .num {
    transform: scale(1.1);
    text-shadow: 
        0 0 20px rgba(0, 246, 255, 1),
        0 0 40px rgba(0, 246, 255, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.6);
}

.report1:hover .txt, .report2:hover .txt {
    color: #ffffff;
    text-shadow: 
        0 0 12px rgba(255, 255, 255, 1),
        0 1px 3px rgba(0, 0, 0, 0.6);
}

/* 优化报警设备数和在线总数 */
.report p {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: bold;
    color: #ffd700; /* 金色 */
}

.report small {
    font-size: 22px;
    display: block;
    margin-top: 5px;
    color: #e6e6e6; /* 浅灰色 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* 清晰阴影 */
}
.bgPop,.bgPop2,.bgPop3{  display: none;  position: absolute;  z-index: 129;  left: 0;  top: 0;  width: 100%;  height: 100%;  background: rgba(0,0,0,.2);}
/* 覆盖全局hover效果，为report添加特殊规则 */
.content_right .report:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* 完全移除伪元素边框 */
.content_right .report::before,
.content_right .report::after,
.content_right .report:hover::before,
.content_right .report:hover::after,
.content_right .report:active::before,
.content_right .report:active::after {
    display: none !important;
    content: none !important;
    border: none !important;
}

/* 确保没有outline */
.content_right .report {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* 报警搜索框样式优化 */
.alarm-search {
    width: 350px;
    height: 36px;
    margin: 5px 0 5px 15px;
    display: flex;
    align-items: center;
    background: rgba(0, 30, 60, 0.3);
    border: 1px solid #0d48e0;
    border-radius: 4px;
    padding: 0 5px;
    box-shadow: 0 0 10px rgba(13, 72, 224, 0.3);
}

.alarm-search input {
    width: 75%;
    height: 28px;
    background: rgba(0, 10, 30, 0.2);
    border: 1px solid rgba(13, 72, 224, 0.5);
    border-radius: 3px;
    color: #87ceeb; /* 天蓝色 */
    padding: 0 10px;
    font-size: 14px;
    margin-right: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.alarm-search input:focus {
    border-color: #87ceeb; /* 天蓝色 */
    box-shadow: 0 0 8px rgba(0, 246, 255, 0.5);
}

.alarm-search input::placeholder {
    color: rgba(0, 246, 255, 0.5);
}

.alarm-search button {
    width: 22%;
    height: 28px;
    background: linear-gradient(to bottom, #0d48e0, #0a2d8a);
    border: none;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 5px rgba(13, 72, 224, 0.5);
    display: flex; /* 使用弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    line-height: 1; /* 重置行高 */
    padding: 0; /* 移除内边距 */
}

.alarm-search button:hover {
    background: linear-gradient(to bottom, #0a2d8a, #0d48e0);
    box-shadow: 0 0 10px rgba(0, 246, 255, 0.5);
    transform: translateY(-1px);
}

.alarm-search button:active {
    transform: translateY(1px);
    box-shadow: 0 0 5px rgba(0, 246, 255, 0.3);
}

.alarm-search button#clearSearchBtn {
    width: 18%;
    height: 28px;
    background: linear-gradient(to bottom, #666, #333);
    border: none;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 246, 255, 0.3);
    box-shadow: 0 0 5px rgba(13, 72, 224, 0.5);
    display: flex; /* 使用弹性布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    line-height: 1; /* 重置行高 */
    padding: 0; /* 移除内边距 */
}

.alarm-search button#clearSearchBtn:hover {
    background: linear-gradient(to bottom, #333, #666);
    box-shadow: 0 0 10px rgba(0, 246, 255, 0.5);
    transform: translateY(-1px);
}

.bgPop,.bgPop2,.bgPop3{  display: none;  position: absolute;  z-index: 129;  left: 0;  top: 0;  width: 100%;  height: 100%;  background: rgba(0,0,0,.2);}
/* 现代化自定义滚动条样式 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, 
        rgba(0, 20, 40, 0.6) 0%, 
        rgba(0, 40, 80, 0.4) 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 191, 255, 0.1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, 
        rgba(0, 123, 255, 0.8) 0%, 
        rgba(0, 191, 255, 0.9) 50%, 
        rgba(0, 246, 255, 0.7) 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 191, 255, 0.4);
    box-shadow: 
        0 2px 8px rgba(0, 191, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
        rgba(0, 191, 255, 1) 0%, 
        rgba(0, 246, 255, 0.9) 50%, 
        rgba(100, 255, 255, 0.8) 100%);
    box-shadow: 
        0 4px 12px rgba(0, 246, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 246, 255, 0.6);
    transform: scale(1.1);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, 
        rgba(0, 100, 200, 1) 0%, 
        rgba(0, 150, 255, 1) 100%);
    box-shadow: 
        0 2px 6px rgba(0, 150, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-corner {
    background: rgba(0, 20, 40, 0.6);
    border-radius: 8px;
}
.bgPop,.bgPop2,.bgPop3{  display: none;  position: absolute;  z-index: 129;  left: 0;  top: 0;  width: 100%;  height: 100%;  background: rgba(0,0,0,.2);}
/* 覆盖全局hover效果，为report添加特殊规则 */
.content_right .report:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* 自定义报警弹窗样式 */
#customAlertBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-container {
    background: linear-gradient(135deg, #001529, #002140);
    border: 2px solid #00f6ff;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.3);
    animation: alertAppear 0.3s ease-out;
}

.alert-header {
    background: linear-gradient(90deg, #00f6ff, #0d48e0);
    padding: 12px 20px;
    border-radius: 6px 6px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.alert-close {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alert-close:hover {
    transform: scale(1.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.alert-content {
    padding: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.alert-icon {
    color: #ff4d4f;
    font-size: 24px;
    margin-right: 15px;
    animation: alertBlink 1.5s infinite;
}

#alertMessage {
    flex: 1;
    word-break: break-all;
}

@keyframes alertAppear {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes alertBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

