/* 顶部样式 */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 124px;
	background-color: #ffffff;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	z-index: 99;
}

/* 顶部信息 */
#header ul.top_info{
	width: 100%;
	height: 40px;
	padding: 0 calc((100% - 1200px) / 2);
	background-color: #426a9e;
}
#header ul.top_info>li{
	font-size: 14px;
	line-height: 20px;
	text-align: left;
	color: #ffffff;
	padding-top: 10px;
}
#header ul.top_info>li.left{
	float: left;
	
}
#header ul.top_info>li.right{
	float: right;
}
#header ul.top_info>li.right a{
	color: #ffffff;
	transition: all 0.3s;
}

#header ul.top_info>li.right a:hover{
	color: #426a9e;
	transition: all 0.3s;
}

#header ul.top_info>li.search button{
	height: 20px;
	padding: 0 20px;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	margin: 0 0 0 20px;
	cursor: pointer;
}
#header ul.top_info>li.search img{
	height: 100%;
	width: auto;
}
/* 搜索功能 */
.search_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: rgba(170, 211, 83, 0.98);
}

.search_box {
	position: fixed;
	z-index: 100001;
	top: 40px;
	left: 0;
	width: 100%;
	height: 84px;
}

.btn--search-close {
	position: absolute;
	top: 26px;
	right: calc((100% - 1200px) / 2);
	width: 32px;
	height: 32px;
	margin: 0;
	padding: 0;
	display: none;
	cursor: pointer;
}

.btn--search-close {
	display: block;
}

.search_input_box {
	width: 1000px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 0 20px;
}

.search__input {
	float: left;
	width: calc(100% - 40px);
	font-family: inherit;
	font-size: 16px;
	line-height: 40px;
	display: block;
	color: #ffffff;
}

.search__input::-webkit-input-placeholder {
	opacity: 0.9;
	color: #ffffff;
}

.search__input::-moz-placeholder {
	opacity: 0.9;
	color: #ffffff;
}

.search__input:-ms-input-placeholder {
	opacity: 0.9;
	color: #ffffff;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.search__input::-ms-clear {
	display: none;
}

.search_btn{
	float: right;
	height: 40px;
	cursor: pointer;
}
.search_btn img{
	height: 28px;
	margin-top: 6px;
}


/************************/
/* Transitions 			*/
/************************/

.search_box {
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s;
}

.search--open {
	pointer-events: auto;
	opacity: 1;
}

/* Border */
.search_box::before,
.search_box::after {
	transition: transform 0.5s;
}

.search_box::before {
	transform: translate3d(-15px, -15px, 0);
}

.search_box::after {
	transform: translate3d(15px, 15px, 0);
}

.search--open::before,
.search--open::after {
	transform: translate3d(0, 0, 0);
}

/* Close button */
.btn--search-close {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .btn--search-close {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

/* Search form with input and description */
.search_input_box {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .search_input_box {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.search__suggestion {
	opacity: 0;
	transform: translate3d(0, -30px, 0);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .search__suggestion {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.search--open .search__suggestion:nth-child(2) {
	transition-delay: 0.1s;
}

.search--open .search__suggestion:nth-child(3) {
	transition-delay: 0.2s;
}


/* 顶部导航 */
#header ul.top {
	width: 1200px;
	height: 84px;
	margin: 0 auto;
}

#header ul.top>li {
	float: left;
}

/* LOGO */
.logo_box {
	width: auto;
	height: 72px;
	margin-top: 6px;
}

.logo_box a {
	height: 100%;
}

.logo_box img {
	width: auto;
	height: 100%;
}

/* 顶部导航 */
#header ul.top>li.header_nav {
	float: right;
	width: 72%;
}

.navbar {
	width: 100%;
	border-radius: 0;
	margin-bottom: 0;
	border-width: 0;
}

.navbar-nav {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}

.navbar-nav>li {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}

.navbar-nav>li>a {
	display: block;
	line-height: 84px;
	font-size: 16px;
	color: #4c4c4c;
	text-align: right;
	padding: 0;
	transition: all 0.3s;
}

.navbar-nav>li>a:hover {
	background-color: #ffffff;
}

.navbar-nav>li:hover {
	background-color: #ffffff;
}

.navbar-nav>li::after {
	content: "";
	width: 0;
	height: 3px;
	background: #426a9e;
	position: absolute;
	bottom: 0;
	right: 0;
	transition: all 0.5s ease 0s;
}

.navbar-nav>li:hover::after {
	width: 64px;
}

.navbar-nav>li.active::after {
	width: 64px;
}

.navbar-nav>li.active>a {
	color: #426a9e;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
	-moz-box-shadow: 0px 0px 0px;
	-webkit-box-shadow: 0px 0px 0px;
	-o-box-shadow: 0px 0px 0px;
	box-shadow: 0px 0px 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	padding: 0;
	width: 100%;
	min-width: auto;
	background: #fff;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	border: none;
	margin-left: calc(50% - 32px);
	text-align: center;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li>a {
	display: block;
	line-height: 22px;
	font-size: 14px;
	color: #666;
	background-color: #fff;
	text-align: center;
	padding: 10px 6px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li:last-child>a {
	border-bottom: 1px solid rgba(0, 0, 0, 0);
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li>a:hover {
	background-color:#426a9e;
	color: #fff;
	transition: all 0.3s;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu ul.dropdown-menu {
	top: -3px;
	left: 100%;
	margin-left: 0;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu li.dropdown>a.dropdown-toggle:before {
	font-family: 'FontAwesome';
	float: right;
	content: "\f105";
	margin-top: 0;
}

nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li.dropdown>a.dropdown-toggle:before {
	font-family: 'FontAwesome';
	float: left;
	content: "\f104";
	margin-top: 0;
}

.nav>li>a:focus,
.nav>li>a:hover {
	text-decoration: none;
	background-color: #ffffff;
}


/* 手机版导航 */
.m_nav_box {
	display: none;
}

/* 底部导航 */

.bottom_nav {
	display: none;
}
.nav_k{
	display: none;
}


@media (max-width:1200px) {
	#header {
		display: none;
	}
	/* 手机版导航 */
	.m_nav_box {
		display: block;
		height: 48px;
	}
	.sp_header {
		height: 48px;
		overflow: hidden;
		background: #fff;
		position: fixed;
		z-index: 10000;
		width: 100%;
		padding: 0 2%;
		box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
	}
	
	.sp_logo {
		float: left;
		height: 36px;
		margin-top: 6px;
	}
	.sp_logo a{
		display: block;
		height: 100%;
	}
	
	.sp_logo img {
		display: block;
		height: 100%;
		width: auto;
	}
	.sp_search{
		float: right;
		width: 30px;
		height: 30px;
		margin-top: 9px;
		margin-right: 24px;
	}
	.sp_search img{
		width: 100%;
	}
	.search_box {
		top: 48px;
		height: 64px;
	}
	.search_input_box {
		width:80%;
		margin-left: -10%;
	}
	
	.btn--search-close {
		top: 22px;
		right: 16px;
		width: 20px;
		height: 20px;
	}
	.btn--search-close img{
		width: 100%;
	}
	
	.sp_nav {
		width: 36px;
		float: right;
		position: relative;
		cursor: pointer;
		height: 30px;
		margin-top: 13px
	}
	
	.sp_nav span {
		display: block;
		background: #426a9e;
		width: 36px;
		height: 2px;
		position: absolute;
		left:0;
		transition: all ease 0.35s
	}
	
	.sp_nav span:nth-of-type(1) {
		top: 0px
	}
	
	.sp_nav span:nth-of-type(2) {
		top: 10px
	}
	
	.sp_nav span:nth-of-type(3) {
		top: 20px
	}
	
	.sp_nav_se span:nth-of-type(1) {
		top: 10px;
		transform: rotate(45deg)
	}
	
	.sp_nav_se span:nth-of-type(2) {
		width: 0
	}
	
	.sp_nav_se span:nth-of-type(3) {
		top: 10px;
		transform: rotate(-45deg)
	}
	.header_nav_m {
		position: fixed;
		z-index: 9999;
		background: #eee;
		width: 100%;
		height: calc(100% - 96px);
		top: -100%;
		left: 0;
		overflow: auto;
		overflow-x: hidden;
		transition: top ease 0.35s;
		display: block;
		background: rgba(255, 255, 255, 1);
		padding-left: 2%;
	}
	.nav_show {
		top: 48px
	}
	
	.header_nav_m>ul {
		
	}
	
	.header_nav_m>ul>li:first-child {
		overflow: hidden;
		border-top: 0
	}
	
	.header_nav_m>ul>li a {
		font-size: 18px;
		line-height: 60px;
		color: #666666;
	}
	
	.header_nav_m ul li i {
		position: absolute;
		top: 12px;
		right: 0px;
		border-left: 1px #ddd solid;
		height: 36px;
		padding: 0px 11px;
	}
	
	.header_nav_m ul li i svg {
		transform: rotate(-90deg);
		transition: all ease 0.35s;
	}
	
	.header_nav_m ul li .header_nav_m_i_se svg {
		transform: rotate(0deg);
	}
	
	.header_nav_m ul li {
		border-top: 1px #ddd solid;
		margin-left: 0;
		position: relative;
		font-size: 14px;
	}
	
	.header_nav_m>ul>li:last-child {
		border-bottom: 1px #ddd solid;
	}
	
	.header_nav_m ul li ul {
		display: none;
	}
	
	.header_nav_m ul li a {
		color: #666;
		width: 100%;
	}
	
	.header_nav_m ul li ul li {
		margin-left: 2%;
	}
	
	.header_nav_m ul li ul li a {
		font-size: 16px;
		color: #999;
		display: block;
		text-align: left;
	}
	
	.header_nav_m ul li i svg {
		width: 20px;
		height: 20px;
		fill: #555;
		margin-top: 8px;
	}
	
	.header_nav_m ul li .header_nav_m_i_se svg {
		fill: #426a9e;
	}
	
	.header_nav_m ul li ul li>ul {
		margin-left: 10px;
	}
	
	/* 底部导航 */
	.nav_k {
		display: block;
		width: 100%;
		padding-bottom: 49px;
	}
	
	.bottom_nav {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 49px;
		background-color: #f7f7f7;
		border-top: 1px solid #dfdfdf;
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		z-index: 999999;
	}
	
	.bottom_nav li {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		flex: 1;
		text-align: center;
		padding-top: 6px;
	}
	
	.bottom_nav li img {
		height: 18px;
		width: auto;
		margin: 0 auto;
	}
	
	.bottom_nav li a {
		font-size: 12px;
		line-height: 1;
		color: #262626;
		position: relative;
	}
	
	.bottom_nav li p {
		padding-top: 6px;
	}
	
	.bottom_nav li.active a {
		color: ##426a9e;
	}
	
}