.bottom-nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
    background-color:#000; /* 黑色背景 */
	color: #ffffff; /* 白色文字 */
	max-width: 800px; /* 最大宽度为800px */
	margin: 0 auto; /* 居中显示 */
	position: fixed;
	padding: 5px 0px;
	bottom: 0px; /* 距离底部20px */
	
	width: 100%;
/* 	left: 50%;
	transform: translateX(-50%); */
	border-radius: 0px; /* 圆角效果 */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* 添加阴影效果 */
	z-index: 1000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
}
.nav-color-0 {
  color: #fff;
}
.nav-color-1 {
  color: #FF9000;
}
.nav-icon {
  width: 20px; /* 设置图标大小 */
  height: 20px;
  margin-bottom: 2px;
}