@charset "utf-8";
body {
	overflow: hidden !important;
}

.header {
	position: fixed;
	z-index: 999;
	width: 100%;
	transition: all .5s;
}

.navbar {
	margin-bottom: 0;
}


/*头部背景色*/

.background {
	background: #fff;
	transition: all 0.5s;
	/*-webkit-transition: background-color 0.5s ease-in-out;*/
	box-shadow: 10px 0 4px #ddd;
}

.background .navbar-nav>li>a {
	color: #333;
}

.background .navbar-nav>.active>a {
	color: #d82430;
}


/*logo*/

.container-fluid>.navbar-header {
	display: flex;
	width: 16%;
	height: 120px;
	align-items: center;
	justify-content: center;
}

.container-fluid>.navbar-header>.navbar-brand {
	display: block;
	height: initial;
}


/*导航栏*/

.navbar-nav {
	display: flex;
	height: 120px;
	align-items: center;
	width: 68%;
	justify-content: center;
}

.nav>li>a {
	padding: 10px 30px;
}

.navbar-nav>li>a {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}


/*.navbar-nav>li:last-child>a {
	font-weight: normal;
	font-size: 20px;
}

.navbar-nav>li:last-child>a:hover {
	color: #fff;
}*/

.navbar-nav>li>a:hover {
	color: #d82430;
}

.navbar-nav>.active>a {
	color: #d82430;
}

.nav>li>a:hover {
	background-color: transparent;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
	background-color: transparent;
}