#mainBox {
	display: flex;
	min-width: 1300px;
	flex-flow: column nowrap;
	background-color: rgb(2, 4, 25);
}

.highlight {
	position: absolute;
	top: 0;
	width: 100%;
	height: calc(100% - 4px);
	background: linear-gradient(to top, rgba(53, 42, 17, 0.8), rgba(255, 255, 255, 0));
	border-bottom: rgba(243, 194, 88, 1) solid 4px;
}

#highlightColor {
	color: rgba(255, 134, 74, 1.0);
}

.highlight0 {
	position: absolute;
	top: 0;
	width: 100%;
	height: calc(100% - 4px);
	background: linear-gradient(to top, rgba(53, 42, 17, 0.8), rgba(255, 255, 255, 0));
	border-bottom: rgba(243, 146, 61, 1.0) solid 4px;
}

#highlightColor0 {
	color: rgba(255, 120, 58, 1.0);
}

h2 {
	display: flex;
	justify-content: center;
}

#navigatorBox {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	flex-grow: 1;
}

#navigatorBox>a {
	text-decoration: none;
	/* 移除下划线 */
	/* 继承父元素的文本颜色 */
	cursor: pointer;
	/* 鼠标指针样式 */
}

/* 自定义样式 */
#navigatorBox>a:hover {}

.navigatorOption {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	font-size: 16px;
	font-weight: 600;
	color: aliceblue;
	user-select: none;
	cursor: pointer;
}

.fas,
.fab {
	margin-right: 4px;
}

#logoImg {
	width: 20%;
	min-width: 100px;
	max-width: 250px;
	height: auto;
}

#backgroundHeadBox {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	background-color: rgb(43, 48, 55);
}

#backgroundBodyBox {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	background-color: rgb(2, 4, 25);
	margin-bottom: 50px;
}

#headBox {
	margin-top: 10px;
	min-width: 1200px;
	max-width: 1650px;
	flex-grow: 1;
	display: flex;
	flex-flow: row nowrap;
}

#bodyBox {
	margin-top: 20px;
	min-width: 1200px;
	max-width: 1650px;
	flex-grow: 1;
	display: flex;
	flex-flow: row nowrap;
	border-radius: 5px;
	border: #ffff00 2px solid;
	min-height: 900px;
}

#bodyBox>#bodyLeft {
	min-width: 85%;
	display: flex;
	flex-flow: column nowrap;
}

#bodyBox>#bodyRight {
	border-left: #3e355a 4px solid;
	padding: 0 5px;
	max-width: 15%;
	display: flex;
	flex-flow: column nowrap;
	justify-content: start;
	align-items: center;
	background-color: beige;
	color: #3e355a;
}

.contentBox {
	flex-grow: 1;
	background-color: beige;
}

.contentBox>h2 {
	border-radius: 5px;
	padding: 3px 0;
	background-color: rgba(124, 174, 255, 0.4);

}

.textBox {
	margin: 0 10px;
}

.textBox>h4 {
	color: rgba(186, 62, 21, 1);
	font-weight: 800;
	font-size: 20px;
}

.textBox>p {
	margin: 4px 0;
	margin-left: 10px;
}

.textBox>img {
	margin-left: 10px;
}



/* 全屏显示时图片的样式 */
.fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	/* 背景色，这里设置为半透明黑色 */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	/* 确保在最顶层显示 */
}

.fullscreen img {
	max-width: 90%;
	max-height: 90%;
	cursor: pointer;
	/* 当鼠标悬停在图片上时显示指针 */
	border: 4px solid #ff7b07;
	/* 添加白色边框，可以根据需要调整颜色和宽度 */
	box-sizing: border-box;
	/* 边框宽度包含在盒子大小内 */
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 50px;
	cursor: pointer;
	color: #fff;
	font-size: 50px;
	z-index: 10000;
	/* 确保关闭按钮在图片之上 */
}

.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #fff;
	font-size: 50px;
	z-index: 10000;
	background-color: rgba(244, 244, 244, 0.4);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	/* 禁止选中 */
	/* 确保箭头在图片之上 */
}

.arrow.left {
	left: 10%;
}

.arrow.right {
	right: 10%;
}

.arrow.left:hover {
	color: #ff5500;
}

.arrow.right:hover {
	color: #ff5500;
}

.fa-location-arrow {
	color: rgb(0, 170, 0);
}

.fa-star {
	color: rgb(0, 170, 255);
}
.fa-heart{
	color: rgb(255, 0, 127);
}
.fa-user-plus{
	color: rgb(0, 255, 0);
}
.fa-leaf{
	color: rgb(170, 85, 255);
}
