/*头部*/
.home_header {
	width: 100%;
	height: 4.5rem;
	background: #fff;
	/*position: fixed;
	top: 0;*/
	z-index: 20;
	box-shadow: 0 0 5px #888;
}

.home_header_main {
	width: 95%;
	min-width: 75rem;
	max-width: 93.75rem;
	height: inherit;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home_header_main_frame1 {
	width: 10rem;
	display: flex;
	margin-right: 1rem;
}

.home_header_main_frame2 {
	width: 60%;
	display: flex;
	margin-right: 10px;
}

.home_header_main_frame3 {
	width: 28%;
	display: flex;
	justify-content: flex-end;
	overflow: hidden;
}

.home_header_logo {
	width: 100%;
	height: 3.5rem;
	background: url(../img/home1/logo.png) left no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	display: block;
}

.home_header_unit {
	height: 3.5rem;
	line-height: 3.5rem;
	font-size: 16px;
	color: #000;
	text-align: center;
	margin: auto;
	cursor: pointer;
	box-sizing: border-box;
	padding: 0 0.6rem;
}

.home_header_unit:hover {
	background: #3F51B5;
	color: #FFFFFF;
}

.home_header_unit:checked {
	background: #3F51B5;
	color: #FFFFFF;
}

.home_header_other {
	height: 4.5rem;
	line-height: 4.5rem;
	font-size: 16px;
	color: #000;
	text-align: center;
	margin: auto;
	margin-left: auto;
	cursor: pointer;
	text-decoration: none;
}

.home_header_other:hover {
	color: #01488A;
}

.home_header_name {
	height: 4.5rem;
	line-height: 4.5rem;
	font-size: 16px;
	color: #000;
	text-align: center;
	margin: auto;
	margin-left: auto;
	display: inline-block;
}

.home_header_qq {
	width: 30px;
	height: 30px;
	background: url(../img/home/qq.gif) no-repeat center;
	background-size: 100%;
	margin: auto 0;
	cursor: pointer;
	float: right;
}

.home_header_start {
	display: block;
	width: 12.5rem;
	height: 3.2rem;
	line-height: 3.2rem;
	background: #3F51B5;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
	color: #FFFFFF;
	font-size: 14px;
	margin: auto 0 auto 2%;
	text-decoration: none;
}

.home_header_start:hover {
	background: #5466cf;
}

.home_header_lang {
	width: 6.25rem;
	height: 4.5rem;
	line-height: 4.5rem;
	font-size: 14px;
	margin: auto 0 auto 10px;
	cursor: pointer;
	color: #333;
	display: block;
	text-align: center;
}

.home_header_lang:hover {
	color: #3F51B5;
}

/*下拉菜单*/
.home_header_unit_content {
	width: inherit;
	height: inherit;
	display: inline-block;
	text-decoration: none;
	appearance: none;
	color: inherit;
}

.home_header_dropdown {
	position: relative;
	display: inline-block;
	z-index: 999;
}

.home_header_dropdown_content {
	display: none;
	position: absolute;
	box-sizing: border-box;
	margin-top: -8px;
	margin-left: -50px;
	background-color: #FFFFFF;
	width: 200px;
	min-height: 0;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	color: #333;
	border-radius: 10px;
	overflow: hidden;
}

.home_header_dropdown:hover .home_header_dropdown_content {
	max-height: 3000px;
	display: block;
	transition: max-height .25s;
	animation: .25s, 100ms slide-down;
	-webkit-animation: .25s, 100ms slide-down;
}

@keyframes slide-down {
	0% {
		transform: scale(0, 0);
		opacity: 0;
	}

	100% {
		transform: scale(1, 1);
		opacity: 1;
	}
}

@-webkit-keyframes slide-down {
	0% {
		transform: scale(0, 0);
		opacity: 0;
	}

	100% {
		transform: scale(1, 1);
		opacity: 1;
	}
}

.home_header_dropdown_unit {
	display: block;
	color: black;
	text-decoration: none;
}

.home_header_dropdown_unit:hover {
	color: #fff;
	background: linear-gradient(to top,#3f51b5,#5c70e3);
}

/*.home_header_dropdown_content::after {*/
/*	width: 100%;*/
/*	height: 10px;*/
/*	position: absolute;*/
/*	top: -8px;*/
/*	left: 0;*/
/*	content: "";*/
/*	background: url(../img/home/triangle.png) center top no-repeat;*/
/*	background-size: auto 100%;*/
/*}*/

.home_lang_dropdown {
	display: inline-block;
	text-decoration: none;
	appearance: none;
	color: inherit;
}

.home_lang_dropdown_content {
	display: none;
	position: absolute;
	box-sizing: border-box;
	margin-top: 8px;
	background-color: #FFFFFF;
	width: 100px;
	min-height: 0;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	color: #333;
	padding: 15px 0;
	border-radius: 5px;
}

.home_lang_dropdown_content::after {
	width: 100%;
	height: 10px;
	position: absolute;
	top: -8px;
	left: 0;
	content: "";
	background: url(../img/home/triangle.png) left top no-repeat;
	background-size: auto 100%;
}


.home_lang_dropdown:hover .home_lang_dropdown_content {
	display: block;
	animation: .25s, 100ms slide-down;
}

.home_lang_dropdown_unit {
	line-height: 30px;
	text-align: center;
}

.home_lang_dropdown_unit:hover {
	color: #e7b52a;
}