@charset "UTF-8";
/*body {
	width: 100%;
	min-width: 1200px;
	margin: 0 auto;
	overflow-x: hidden;

}*/

/*.header {
	width: 100%;
	min-width: 1200px;
}
*/
.header .logo_box {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0.5% 5%;
	border-bottom: 1px solid #dcdcdc;
}

.header .logo_box .left_logo {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 20%;
}

.header .logo_box .right_logo {
	width: 18.8%;
}

.header .logo_box .right_logo img {
	width: 100%;
	cursor: pointer;
}
.header .logo_box .right_logo .menu{
	display: none;
}
.header .logo_box img {
	cursor: pointer;
}

.header .logo_box .left_logo img:nth-child(1) {
	width: 100%;
}

.header .logo_box .left_logo img:nth-child(2) {
	border-left: 2px solid #144e9e;
	padding-left: 2%;
	margin-left: 1%;
	width: 32.5%;
}

.header .nav_box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	z-index: 10;
	width: 90%;
	margin: 0 auto;
}

.header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	border-top: 0;
	border-bottom: 1px solid #f1f1f1;
	transition: all 0.3s linear;
	z-index: 10;
	background: #fff;
}

.header .nav_box .left_nav {
	width: calc(100% - 300px);
}

.header .nav_box .left_nav ul {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.header .nav_box .left_nav ul li {
	width: 130px;
}

.header .nav_box .left_nav ul li a {
	font-size: 16px;
	color: #333;
	height: 66px;
	line-height: 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 5%;
	position: relative;
	transition: all 0.1s linear;
}

.header .nav_box .left_nav ul li a:hover {
	font-weight: bold;
	color: #004497;
}

.header .nav_box .left_nav ul li>a:after {
	display: block;
	content: "";
	width: 100%;
	height: 3px;
	background: #004497;
	position: absolute;
	bottom: 20px;
	left: 0;
	opacity: 0;
	transition: all 0.3s linear;
}

.header .nav_box .left_nav ul li.current>a {
	color: #004497;
	font-weight: bold;
}

.header .nav_box .left_nav ul li.current>a:after {
	bottom: 0;
	opacity: 1;
}

.header .nav_box .left_nav ul li:hover>a:after {
	bottom: 0;
	opacity: 1;
}

.header .nav_box .right_box {
	width: 300px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

.header .nav_box .right_box .search_box {
	width: 180px;
	line-height: 30px;
	position: relative;
}

.header .nav_box .right_box .search_box .search_input {
	width: 100%;
	line-height: 30px;
	border: 1px solid #dfdfdf;
	padding: 0 8%;
}

.header .nav_box .right_box .search_box .search_btn {
	width: 30px;
	height: 30px;
	background: url(../images/header_search_icon.png) no-repeat center center;
	background-size: 16px 16px;
	position: absolute;
	top: 0;
	right: 0;
	border: none
}
/*jkl*/
.header .nav_box .right_box .search_box ul{
	position:absolute;
	z-index: 2;
	top:35px;
	left:0;
	background:#fff;
	width:100%;
	height:300px;
	border:1px solid #dfdfdf;
	border-radius:6px;
	display: none;
	overflow: auto;
}
.header .nav_box .right_box .search_box ul li{
	line-height: 30px;
	font-style: 14px;
	text-align: center;
	color:#555;
}
.header .nav_box .right_box .search_box ul li a{
	background: #fff;
	color:#555;
	display: block;
	width: 100%;
	line-height: 30px;
}
/*fgh*/

.header .nav_box .right_box .language {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-left: 20px;
}

.header .nav_box .right_box .language li {
	width: 26px;
	line-height: 26px;
	border-radius: 50%;
	text-align: center;
	background: #b5b5b5;
	color: #fff;
	font-size: 12px;
	margin: 0 3px;
}

.header .nav_box .right_box .language li.active {
	background: #9d1e25;
}

@media only screen  and (max-width: 1150px) {
	body{
		padding-top: 70px !important;
	}
	.header .logo_box{
		position: fixed;
		top:0;
		left:0;
		width: 100%;
		z-index: 30;
		background: #fff;
		height: 70px;
		padding: 10px 20px;
	}
	.header .logo_box .left_logo img:nth-child(1){
		display: none;
	}
	.header .logo_box .left_logo img:nth-child(2){
		border:none;
		width: auto;
		height: 40px;				
	}
	.header .logo_box .right_logo img{
		display: none;
	}
	.header .logo_box .right_logo .menu{
		float: right;
		display: block;
		text-align:center;
		font-size: 20px;
		color:#004497;
		font-weight: bold;
		
		cursor: pointer;
		border:1px solid #000088;
		width: 60px;
		padding: 10px 0;
		border-radius: 6px;
	}
	.header .nav_box{
		position: fixed;
		top:69px;
		right:0;
		width: 100%;
		display: block;
		z-index: 30;
		border-top:1px solid #ddd;
		border-bottom: 1px solid #ddd;
		height: calc(100% - 70px);
		overflow: auto;
		background: rgba(0,0,0,0.5);
		display: none;
	}
	.header .nav_box .left_nav{
		width: 100%;
		background: #fff;
	}
	.header .nav_box .left_nav ul{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.header .nav_box .left_nav ul li{
		width: 60%;
		border-bottom: 1px dashed #dfdfdf;
	}
	.header .nav_box .left_nav ul li:last-child{
		border:none
	}
	.header .nav_box .left_nav ul li a{
		height: 50px;
	}
	.header .nav_box .right_box{
		width: 100%;
		justify-content: center;
		margin-bottom: 30px;
		background: #fff;
		padding: 30px 0;
		border-radius: 0 0 10px 10px ;
	}
	.header .nav_box .right_box .search_box{
		width: 60%;

	}
}
/*******************/

.footer {
	background: url(../images/footer_bg.png) no-repeat center bottom #000;
	background-size:cover;
	padding: 3% 5%;
}

.footer .top_footer {
	border-bottom: 1px solid rgba(255, 255, 255, .4);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10px;
}

.footer .top_footer .left_list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.footer .top_footer .left_list li {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding: 0 50px 0 20px;
	background: url(../images/footer_right.png) no-repeat 90% center;
	cursor:pointer;
}

.footer .top_footer .left_list li span {
	margin-right: 10px;
}

.footer .top_footer .left_list li p {
	color: #fff;
	font-size: 18px;
}

.footer .top_footer .right_address p {
	color: #fff;
	font-size: 16px;
	line-height: 30px;
}

.footer .bottom_footer {
	padding-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.footer .bottom_footer .left_link {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	color: #fff;
}

.footer .bottom_footer .left_link h3 {
	font-weight: 100;
	font-size: 30px;
	padding-right: 30px;
}

.footer .bottom_footer .left_link ul {
	min-width: 700px;
	max-width:1050px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-end;
	flex-wrap: wrap;
}

.footer .bottom_footer .left_link ul li {
	width: calc(100% / 4);
	font-size: 12px;
	line-height: 30px;
	cursor: pointer;
}
.footer .bottom_footer .left_link ul li a{
	color:#fff;
}
.footer .bottom_footer .right_copy {
	font-size: 12px;
	color: #fff;
	line-height: 20px;
	padding: 5px 0;
}

.footer .bottom_footer ul {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	padding-top: 14px;
}

.footer .bottom_footer ul li {
	padding-right: 20px;
}
.footer .bottom_footer ul li img{
	width: 22px;
	height: 22px;
	-webkit-filter: grayscale(100%); 
	-moz-filter: grayscale(100%); 
	-ms-filter: grayscale(100%); 
	-o-filter: grayscale(100%); 
	filter: grayscale(100%); 
	filter: gray; 
	transition: all .3s linear;
}
.footer .bottom_footer ul li img:hover{
	-webkit-filter: grayscale(0%); 
	-moz-filter: grayscale(0%); 
	-ms-filter: grayscale(0%); 
	-o-filter: grayscale(0%); 
	filter: grayscale(0%); 
	filter: gray; 
}

@media only screen and (max-width: 1200px) {
	.footer .top_footer{
		justify-content: center;
	}
	.footer .top_footer .left_list{
		display: none;
	}
	.footer .bottom_footer .left_link{
		display: none;
	}
	.footer .bottom_footer{
		justify-content: center;
	}
	.footer .bottom_footer ul{
		justify-content: center;
	}
}
@media only screen and (max-width: 640px){
	.footer .top_footer .right_address p{
		font-size: 12px;
	}
	.footer .bottom_footer .right_copy{
		text-align: center;
	}
}
.indexsub_banner_box .sub_nav {
	width: 1600px;
	max-width: 1600px;
	margin: 0 auto;
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -800px;
	z-index: 10;
}

@media only screen and (min-width: 100px) and (max-width: 1620px) {
	.indexsub_banner_box .sub_nav {
		width: 90%;
		margin-left: -45%;
	}
}

.indexsub_banner_box .sub_nav li {
	float: left;
	width: calc(100% / 2 - 1px);
	background: #fff;
	margin-right: 1px;
	transition: all 0.3s linear;
}

@keyframes fadeInDown80 {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.fadeInDown80 {
	animation-name: fadeInDown80;
	animation-duration: 0.6s;
}

.indexsub_banner_box .sub_nav li:nth-child(2) {
	animation-delay: 0.6s;
}

.indexsub_banner_box .sub_nav li:nth-child(3) {
	animation-delay: 1.2s;
}

.indexsub_banner_box .sub_nav li:nth-child(4) {
	animation-delay: 1.8s;
}

.indexsub_banner_box .sub_nav li:nth-child(5) {
	animation-delay: 2.4s;
}

.indexsub_banner_box .sub_nav li a {
	display: flex;
	line-height: 20px;
	font-size: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 58px;
	color: #333333;
	transition: all 0.3s linear;
}

.indexsub_banner_box .sub_nav li.active,
.indexsub_banner_box .sub_nav li:hover {
	background: #567598;
}

.indexsub_banner_box .sub_nav li.active a,
.indexsub_banner_box .sub_nav li:hover a {
	color: #fff;
}
/*********************åˆ†é¡µ*********************/
.page_box {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.page_box ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
}

.page_box ul li a {
	width: 30px;
	height: 30px;
	background: #e2e2e2;
	display: block;
	text-align: center;
	line-height: 30px;
	margin: 0 7px;
	color: #333;
	transition: all .3s linear;
}

.page_box ul li.active a,
.page_box ul li:hover a {
	background: #074988;
	color: #fff;
}
/*********************åˆ†é¡µ*********************/


.title h4 {
	font-size: 30px;
	color: #333;
	line-height: 42px;
}

.title p {
	color: #666666;
	font-size: 18px;
	line-height: 48px;
	font-weight: bold;
}

.title p span {
	color: #184f9c;
	font-weight: 500;
}
.title em {
	display: block;
	width: 40px;
	height: 3px;
	background: #184f9c;
	margin-top: 8px;
}
.laboratory_detail_page .title,
.laboratory_box .title,
.service2 .title,
.sub_center_laboratory .title,
.service_detail_box .title,
.service_list_box .title,
.laboratory_page .black_shadow .title,
.sub_partner .title,
.recruit .title,
.sub_center_zzry .title,
.sub_center_zuzhi,
.sub_laboratory .title {
	text-align: center;
}
.laboratory_detail_page .title em,
.laboratory_box .title em,
.service2 .title em,
.sub_center_laboratory .title em,
.service_detail_box .title em,
.service_list_box .title em,
.laboratory_page .black_shadow .title em,
.sub_partner .title em,
.recruit .title em,
.sub_center_zzry .title em,
.sub_center_zuzhi em,
.laboratory .title em {
	margin: 0 auto;
}

.indexsub_banner img{
	width: 100%;
}
