@charset "utf-8";
/* CSS Document */

body {
	font-size: 12px;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans SC";
}


/*头部*/
.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: 58%;
	display: flex;
	margin-right: 10px;
}
.home_header_main_frame3 {
	width: 33%;
	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 {
	width: 100%;
	height: 4.5rem;
	line-height: 4.5rem;
	font-size: 16px;
	color: #000;
	text-align: center;
	margin: auto;
	cursor: pointer;
}

.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;
	text-decoration: none;
	appearance: none;
	color: inherit;
	display: box;
	box-orient: horizontal;
	box-pack: center;
	box-align: center;
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-pack: center;
	-webkit-box-align: center;
}

.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;
	background-color: #FFFFFF;
	width: 230px;
	min-height: 0;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	color: #333;
	padding: 15px 0;
	border-radius: 10px;
}

.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: #3F51B5;
}

.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: 25px;
	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;
}

/*footer*/
.home_footer {
	width: 100%;
	background: whitesmoke;
	overflow: hidden;
}

.home_footer_main {
	width: 80%;
	line-height: 25px;
	margin: 0 auto;
	padding: 10px 0;
	box-sizing: border-box;
	text-align: center;
	font-size: 14px;
	color: #333;
}

/*******************遮罩弹窗*****************/
.shape_popup {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
}

.shape_popup_main {
	width: 30%;
	height: 18rem;
	margin: 200px auto;
	background: #FFFFFF;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 16px;
}

.shape_popup_main_frame {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 13%;
}

.shape_popup_main_unit {
	width: 40%;
}

.shape_popup_main_user {
	width: 6.5rem;
	height: 6.5rem;
	background: url(../img/home/user.png) no-repeat;
	background-size: cover;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	cursor: pointer;
	margin: 0 auto;
}

.shape_popup_main_user:hover {
	background: url(../img/home/user-b.png) no-repeat;
	background-size: cover;
}

.shape_popup_main_visitor {
	width: 6.5rem;
	height: 6.5rem;
	background: url(../img/home/visitor.png) no-repeat;
	background-size: cover;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	cursor: pointer;
	margin: 0 auto;
}

.shape_popup_main_visitor:hover {
	background: url(../img/home/visitor-b.png) no-repeat;
	background-size: cover;
}

.shape_popup_main_unit_title {
	text-align: center;
	font-size: 1.125rem;
	color: #333333;
	margin-top: 20%;
}

/******************联系我们******************/
.popup_link {
	width: 50px;
	height: 120px;
	background: #5466CF;
	color: #FFFFFF;
	position: fixed;
	top: 30%;
	right: 0;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
	border-radius: 10px 0 0 10px;
	cursor: pointer;
	box-sizing: border-box;
	padding: 10px;
	z-index: 20;
}

.popup_link_font {
	font-size: 14px;
	line-height: 30px;
	text-align: center;
}

.popup_link_pic {
	width: 28px;
	height: 28px;
	background: url(../img/home/link.png) no-repeat;
	background-size: cover;
	margin: 5px auto;
}
