
/* 菜单相关样式 */

#menuBar {
	width: 100%;
	min-width: 320px;
	height: 60px;
	background: rgba(0, 0, 0, 0);
	box-sizing: border-box;
	padding: 0px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 9999;
}

/* 白色logo */
#menuBar .logo-icon {
	width: 113px;
	height: 28px;
	background-image: url('../images/logo.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* 黑色logo */
#menuBar .logo-icon-dark {
	width: 113px;
	height: 28px;
	background-image: url('../images/logo_dark.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* 白色查询图标 */
#menuBar .query-icon {
	width: 90px;
	line-height: 24px;
	letter-spacing: 0.5px;
	background-image: url('../images/query.png');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 24px 24px;
	padding-left: 30px;
	color: #ffffff;
	position: absolute;
	right: 55px;
}

/* 黑色查询图标 */
#menuBar .query-icon-dark {
	width: 90px;
	line-height: 24px;
	letter-spacing: 0.5px;
	background-image: url('../images/query_dark.png');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 24px 24px;
	padding-left: 30px;
	color: #000000;
	position: absolute;
	right: 55px;
}

/* 白色菜单按钮 */
#menuBar .menu-icon {
	width: 18px;
	height: 18px;
	background-image: url('../images/menu.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* 黑色菜单按钮 */
#menuBar .menu-icon-dark {
	width: 18px;
	height: 18px;
	background-image: url('../images/menu_dark.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* 白色热线号码 */
#menuBar .hot-line {
	text-decoration: none;
	color: #ffffff;
	font-size: 14px;
	position: absolute;
	right: 55px;
	bottom: 2px;
}

/* 黑色热线号码 */
#menuBar .hot-line-dark {
	text-decoration: none;
	color: #000000;
	font-size: 14px;
	position: absolute;
	right: 55px;
	bottom: 2px;	
}

/* 下拉菜单列表 */
#menuList {
	width: 100%;
	min-width: 320px;
	height: 0vh;
	box-sizing: border-box;
	background: rgba(10, 93, 102, 0.98);
	color: #ffffff;
	overflow: auto;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 9980;
	transition: all 0.5s;
}

#menuList > div {
	margin: 20px 0px 20px 28px;
	font-size: 24px;
	opacity: 0;
	transition: all 0.3s;
	transform: translateY(-10px);
}

#menuList > div:nth-child(1) {
	margin-top: 150px;
}