body {
	margin: 0;
	padding: 0;
	position: relative;
}

#cesiumContainer,
.cesiumContainer {
	width: 100vw;
	height: 100vh;
}

.cesium-viewer-bottom {
	display: none;
}

:root {
	--auto-color: #234ef5;
}

.billboard_Dialog {
	position: absolute;
	background-color: #ffffffa1;
	/* padding: 20px; */
	box-shadow: inset 0 0 10px var(--auto-color);
	max-width: 260px;
	overflow: hidden;
}
.billboard_Dialog2 {
	position: absolute;
	background-color: #ffffffa1;
	/* padding: 20px; */
	/* box-shadow: inset 0 0 10px var(--auto-color); */
	max-width: 260px;
	overflow: hidden;
}

.angle_border {
	position: absolute;
	width: 10px;
	height: 10px;
}

.left_top_border {
	top: 0;
	left: 0;
	border-left: 4px solid var(--auto-color);
	border-top: 4px solid var(--auto-color);
}

.right_top_border {
	top: 0;
	right: -0px;
	border-right: 4px solid var(--auto-color);
	border-top: 4px solid var(--auto-color);
}

.left_bottom_border {
	bottom: 0;
	left: 0;
	border-bottom: 4px solid var(--auto-color);
	border-left: 4px solid var(--auto-color);
}

.right_bottom_border {
	bottom: 0;
	right: -0px;
	border-right: 4px solid var(--auto-color);
	border-bottom: 4px solid var(--auto-color);
}

.close_Dialog {
	right: 6px;
	top: 6px;
	width: 15px;
	height: 15px;
	line-height: 15px;
	color: #333;
	cursor: pointer;
	border: none;
	text-align: center;
	padding: 0;
	background-color: #f0f0f0;
	font-size: 15px;
}

.billboard_Dialog .info {
	max-height: 160px;
	overflow-y: auto;
	padding: 0 20px 20px;
	margin-top: 25px;
}

/* 滚动条轨道样式 */
.billboard_Dialog .info::-webkit-scrollbar {
	width: 6px;
	/* 设置滚动条宽度 */
}

/* 滚动条滑块样式 */
.billboard_Dialog .info::-webkit-scrollbar-thumb {
	background-color: #234ef5;
	/* 设置滑块背景颜色 */
	border-radius: 4px;
	/* 设置滑块圆角 */
}
.billboard_Dialog2 .info::-webkit-scrollbar-thumb {
	background-color: #999;
	/* 设置滑块背景颜色 */
	border-radius: 4px;
	/* 设置滑块圆角 */
}

/* 滚动条轨道hover状态样式 */
.billboard_Dialog .info::-webkit-scrollbar-track:hover {
	background-color: #f1f1f1;
	/* 设置轨道hover状态时的背景颜色 */
}

/* 滚动条滑块hover状态样式 */
.billboard_Dialog .info::-webkit-scrollbar-thumb:hover {
	background-color: #555;
	/* 设置滑块hover状态时的背景颜色 */
}

.billboard_Dialog .info p {
	margin: 0 auto;
	line-height: 1.6em;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
}