#sticky-bar {
	position: fixed;
	top: -60px;
	left: 0;
	width: 100%;
	height: 60px;
	background: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	padding: 0 20px;
	box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
	transition: top 0.3s ease-in-out;
	z-index: 999;
}

.barLeft {
	position: relative;
	display: flex;
	align-items: center;
	height: 90%;
	width: auto;
}

.barLeft a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: black;
	height: 100%;
}

.barLeft img {
	height: 80%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	margin-right: 10px;
}

.barLeft span {
	font-size: 18px;
	font-weight: bold;
}

/* 右侧菜单 */
.navMenu {
	position: relative;
	display: flex;
	right: 2%;
	gap: 15px;
}

.navMenu ul {
	list-style: none;
	display: flex;
}

.navMenu li {
	margin: 0;
	display: flex;
	justify-content: center;
}

.navMenu a {
	text-decoration: none;
	color: black;
	padding: 10px;
}

.sidebarBtn {
	display: none;
	object-fit: contain;
	align-items: center;
	background-color: #ffffff;
	justify-content: center;
	color: black;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
}

.sidebarBtn:hover {
	background-color: rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
}