/* 1. 运动容器 */
.floating-popover {
	position: absolute;
	top: 0px; left: 0px;
	z-index: 1150;
	user-select: none;
}

/* 2. 核心弹框样式 */
.floating-popover .popover {
	position: relative; 
	width: 306px;       
	height: auto;      
	max-width: 306px;
	max-height: 360px;   
	display: flex;      
	flex-direction: column;
	padding: 30px 20px 15px 20px;
	box-sizing: border-box;  
	background-color: rgba(150, 3, 3, 1);
	border-radius: 5px;
	border: none; 
	box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
}

/* 3. 标题样式 */
.floating-popover .popover-header { 
	margin-bottom: 10px; 
	width: 100%; 
	font-size: 20px; 
	font-weight: bold;
	color: #ffffff; 
	background-color: transparent; 
	border-bottom: none; 
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis; 
}

/* 4. 正文样式 */
.floating-popover .popover-body { 
	width: 100%;       
	height: auto;      
	overflow-wrap: break-word; 
	color: rgba(251, 250, 250, 1); 
	font-size: 15px;    
	font-family: 'SourceHanSansCN-Normal', sans-serif; 
	font-weight: 400;   
	text-align: left;   
	line-height: 24px;
	word-break: break-all;
	overflow: hidden;
}

/* 关键信息高亮 */
.floating-popover .popover-body strong {
	color: #ffffff;
	font-weight: bold;
}

/* 5. 右上角的 X 关闭按钮样式 */
.close-btn {
	position: absolute;
	top: 10px;
	right: 12px;
	font-size: 24px;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	line-height: 1;
	z-index: 10; 
	transition: all 0.2s;
}
.close-btn:hover {
	color: #fff;
	background-color: rgba(255,255,255,0.2); 
	border-radius: 3px;
}