@charset "utf-8";

/*头部样式*/
.header_common {
	width: 100%;
	height: 500px;
	background: url(../images/header_combg.png) no-repeat left top;
}

/*顶部样式*/
.navBox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 20px;
	overflow: hidden;
	height: 60px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	box-shadow: 0 1px 3px rgba(49, 49, 49, 0.1);
}

.logo {
	height: 100%;
	padding: 5px 0;
}

.logo img {
	height: 100%;
}

.navBox_right {
	width: 100%;
	height: 100%;
	margin-left: 20px;
	display: flex;
}

.nav {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.nav .left {
	height: 100%;
}

.nav .left a {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	color: #1D2129;
}

@media screen and (max-width: 768px) {
	.navBox {
		padding: 0 10px;
		height: 56px;
	}
}