/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
    margin: 0;
    padding: 0;
}

/** 设置默认字体 **/
body,button, input, select, textarea /* for ie */ {
    font: 14px/1.0 "Arial","Microsoft YaHei","黑体","宋体","KaiTi",sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal;}
address, cite, dfn, em, var, i { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读, 让 small 正常化 */

/** 重置列表元素 **/
ul, ol { list-style: none; }

/** 重置文本格式元素 **/
a { text-decoration: none; -webkit-tap-highlight-color: rgba(0,0,0,0);}
a:hover { text-decoration: none; cursor: pointer; }

sup { vertical-align: text-top; } /* 重置, 减少对行高的影响 */
sub { vertical-align: text-bottom; }

/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车：让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; outline: none;} /* 使得表单元素在 ie 下能继承字体大小 */
input::-ms-clear{display:none;}/*隐藏文本框叉子*/
input::-ms-reveal{display:none;}/*隐藏密码框小眼睛*/
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }

/* 重置 HTML5 元素 */
article, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
    display: block;
    margin: 0;
    padding: 0;
}

html{
	/* background: #f6f6f6 */
	background: #fff;
	overflow-x: hidden;
}
body{
	
}
.clear_both::after{
	content:".";
	display:block;
	height:0;
	visibility:hidden;
	clear:both;
}



.head_box{
	height: 76px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 34px;
	box-shadow: inset 0 1px 0 #f5f5f5, 0 1px 0px rgba(0,0,0,0.08), 0 2px 2px rgba(0,0,0,0.05);
	background: #fff;
	position: relative;
	z-index: 9;
}
.head_box>a{
	float: left;
	vertical-align: top;
	width: 336px;
	height: 100%;
	background: url(../img/logo.png) no-repeat left center;
}
.head_box #w_ul{
	height: 100%;
	font-size: 0;
	vertical-align: top;
	text-align: center;
}
.head_box #w_ul>li{
	vertical-align: top;
	height: 100%;
	display: inline-block;
	padding: 0 24px;
}
.head_box #w_ul>li>a{
	line-height: 76px;
	font-size: 16px;
    color: #333;
    display: inline-block;
	height: 100%;
	font-weight: bold;
	position: relative;
	z-index: 8;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box #w_ul>li.active_li>a{
	color: #fff;
}
.head_box #w_ul>li:hover>a{
	color: #fff;
}
.head_box .menu_div{
	display: none;
	float: right;
    width: 60px;
    height: 100%;
    text-align: center;
    position: relative;
}
.head_box .menu_div span{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 2.2rem;
    font-size: 0;
}
.head_box .menu_div span i{
	display: inline-block;
    width: 36px;
	height: 4px;
	border-radius: 2px;
    background: #df3c3d;
    margin: 4px 0;
    opacity: 1;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .active_div i:nth-of-type(1){
    -webkit-transform: rotate(45deg) translate(9px, 8px);
    transform: rotate(45deg) translate(9px, 8px);
}
.head_box .active_div i:nth-of-type(2){
    opacity: 0;
}
.head_box .active_div i:nth-of-type(3){
    -webkit-transform: rotate(-45deg) translate(9px, -8px);
    transform: rotate(-45deg) translate(9px, -8px);
}
.head_box .m_ul{
	display: none;
	position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
	z-index: 11;
	box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}
.head_box .m_ul>li{
	padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
	position: relative;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .m_ul>.active_li{
	background: #fafafa;
}
.head_box .m_ul>li a{
	display: block;
    height: 100%;
    color: #333;
    font-size: 16px;
    height: 45px;
    line-height: 45px;
}
.head_box .m_ul>li>a i{
	font-size: 20px;
	opacity: 0.3;
	float: right;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .m_ul>li a .active_i{
	float: right;
	-webkit-transform: rotate(45deg);
  	transform: rotate(45deg);
}
.head_box .m_ul ol{
	display: none;
}
.head_box .m_ul ol li{
	padding: 0 20px;
}
.head_box .abg{
	display: block;
    width: 4em;
    padding: 0 24px;
    height: 36px;
    background-color: #df0024;
    border-radius: 18px;
    position: absolute;
    top: 20px;
    left: 300px;
    /* transition: 0.5s;
    -webkit-transition: 0.5s; */
}
.head_box #w_ul dl{
	position: absolute;
	width: 100%;
	background-color: #fefefe;
	left: 0;
	top: 76px;
	padding: 3% 4%;
	display: none;
	box-sizing: border-box;
}
.head_box #w_ul li dl::after{
	content:".";
	display:block;
	height:0;
	visibility:hidden;
	clear:both;
}
.head_box #w_ul li dl dt{
    float: left;
    width: 320px;
    height: 100%;
    padding-right: 20px;
	text-align: center;
}
.head_box #w_ul li dl dt h6{
	font-size: 20px;
	color: #333;
	line-height: 1.5;
}
.head_box #w_ul li dl dt p{
	color: #666;
    font-size: 14px;
}
.head_box #w_ul li dl dt img{
	display: block;
	margin: 80px auto 0;
	width: 180px;
	height: 180px;
	border-radius: 50%;
}
.head_box #w_ul li dl dd{
	width: calc(100% - 341px);
	box-sizing: border-box;
	float: left;
	text-align: left;
	padding: 0 4%;
	border-left: 1px solid #ccc;
}
.head_box #w_ul li dl dd a{
	display: inline-block;
	font-size: 16px;
	line-height: 40px;
	height: 40px;
	width: 25%;
	color: #333;
	/* margin-right: 6%; */
	margin-bottom: 2%;
	box-sizing: border-box;
	padding-left: 20px;
	border-radius: 20px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.head_box #w_ul li dl dd a i{
	margin-right: 8px;
	font-size: 18px;
	vertical-align: middle;
	margin-top: -4px;
	display: inline-block;
}
/* .head_box #w_ul li dl dd a:last-of-type{
	margin-right: 0;
} */
/* .head_box #w_ul li dl dd a::before{
	content: "›";
	vertical-align: middle;
	margin-top: -8px;
	display: inline-block;
	font-size: 24px;
	margin-right: 10px;
} */
.head_box #w_ul li dl dd a:hover{
	color: #fff;
	background: #df0024;
}
.head_box>form{
	float: right;
	height: 28px;
	width: 28px;
	position: relative;
	margin-top: 24px;
	z-index: 9;
}
.head_box>form input{
	font-size: 16px;
	color: #333;
	background: #fff;
	width: 0;
	top: 0;
	right: 28px;
	height: 28px;
	position: absolute;
	border: none;
	border-bottom: 2px solid #aaa;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.head_box>form button{
	position: relative;
	z-index: 3;
	width: 28px;
	height: 28px;
	border: none;
	cursor: pointer;
	background: url(../img/sousuo.png) no-repeat;
}
.head_box>form:hover input{
	width: 140px;
}
#menu{
	position: absolute;
	top: 50%;
	right: 45px;
	transform: translateY(-50%);
}
#menu li{
	margin: 8px 0;
}
#menu li a{
	display: block;
	text-align: center;
}
#menu li a span{
	font-size: 18px;
	height: 0px;
	opacity: 0;
	overflow: hidden;
	color: #fff;
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
#menu li a i{
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #eee;
	border-radius: 5px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
#menu li.active a span{
	font-size: 18px;
	height: 18px;
	opacity: 1;
	color: #df3c3d;
	display: block;
	margin-bottom: 8px;
}
#menu li.active a i{
	height: 80px;
	width: 8px;
	border-radius: 4px;
	background: #df3c3d;
}
.w80{
	width: 72%;
	margin: 0 auto;
	display: block;
}
.title_box{

}
.title_box .img_div{
	position: relative;
}
.title_box .img_div img{
	width: 100%;
	vertical-align: top;
}
.title_box .img_div h2{
	position: absolute;
	font-size: 54px;
	color: #fff;
	top: 50%;
	left: 14%;
	transform: translateY(-50%);
}
.title_box .nav_div{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	background: #fff;
}
.title_box .nav_div p{
	font-size: 0;
	height: 94px;
	line-height: 94px;
	display: flex;
}
.title_box .nav_div p a{
	display: block;
	font-size: 20px;
	text-align: center;
	color: #666;
	-webkit-flex: 1;
    flex: 1;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.title_box .nav_div p a:last-of-type{
	margin-right: 0;
}
.title_box .nav_div p a i{
	display: inline-block;
	font-size: 24px;
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 5px;
}
.title_box .nav_div p a.active_a{
	color: #ec1c24;
}
.title_box .nav_div p a:hover{
	color: #ec1c24;
}
.title_box .nav_div span{
	display: block;
	height: 5px;
	background: #ec1c24;
	border-radius: 2.5px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.foot_box{
	background: #000a25;
	padding: 30px 40px;
	font-size: 0;
}
.foot_box>a{
	line-height: 16px;
	font-size: 14px;
	color: rgba(153,153,153,0.5);
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.foot_box>i{
	display: inline-block;
    height: 16px;
    width: 1px;
    background: #999;
    vertical-align: top;
    margin: 0 22px;
}
.foot_box>p{
	float: right;
	font-size: 14px;
	line-height: 16px;
    color: rgba(153,153,153,0.5);
}
.foot_box>p span{
	margin-right: 20px;
}
.foot_box>p a{
	color: rgba(153,153,153,0.5);
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.foot_box a:hover{
	color: rgba(153,153,153,1);
}
.title_h5{
	font-size: 48px;
	color: #333;
	margin-bottom: 5%;
}
.page_box{
	padding: 22px 0;
	text-align: center;
	font-size: 0;
	text-align: center;
	background: #eee;
}
.page_box a{
	display: inline-block;
	margin: 0 10px;
	width: 46px;
	height: 46px;
	line-height: 48px;
	font-size: 18px;
	color: #666;
	vertical-align: top;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.page_box a.page_a{
	font-size: 24px;
	line-height: 43px;
}
.page_box a.active_a{
	background: #da333a;
	color: #fff;
}
.page_box a:hover{
	background: #da333a;
	color: #fff;
}
.body_box{
	padding: 5% 0 3%;
}



.culture_box{
	background: url(../img/wz2.png) no-repeat 12% center fixed;
}
.culture_box dl{
	font-size: 0;
	padding: 40px 0;
	border-bottom: 1px solid #dbd9da;
}
.culture_box dt{
	display: inline-block;
	width: 250px;
	vertical-align: middle;
	text-align: center;
}
.culture_box dd{
	display: inline-block;
	width: calc(100% - 250px);
	vertical-align: middle;
	box-sizing: border-box;
	padding-left: 6%;
}
.culture_box dt strong{
	display: block;
	font-size: 36px;
	color: #ec1c24;
	font-weight: normal;
}
.culture_box dt span{
	font-size: 24px;
	color: #666;
	display: block;
	margin-top: 24px;
}
.culture_box dd h6{
	font-size: 16px;
	color: #333;
	font-weight: bold;
	margin-top: 24px;
	padding-left: 16px;
}
.culture_box dd h6:first-of-type{
	margin-top: 0;
}
.culture_box dd p{
	font-size: 16px;
	color: #333;
	margin-top: 16px;
	padding-left: 16px;
	position: relative;
	line-height: 1.5;
}
.culture_box dd p::before{
	content: "○";
	position: absolute;
	top: 0;
	left: 0;
}



.news_box{
	
}
.news_box .news_div{

}
.news_box .news_div>a{
	float: left;
	width: 33.33%;
	height: 760px;
	box-sizing: border-box;
	padding: 18px;
	border-left: 1px solid #eee;
	position: relative;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.news_box .news_div>a:nth-of-type(3n+3){
	border-right: 1px solid #eee;
}
.news_box .news_div>a em{
	display: block;
	font-size: 16px;
	color: #333;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.news_box .news_div>a em b{
	font-size: 75px;
	color: #e0e0e0;
	display: block;
	margin-bottom: 14%;
	margin-left: -5px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.news_box .news_div>a span{
	display: block;
	font-size: 16px;
	color: #ba2427;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-bottom: 50px;
	margin-top: 20px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.news_box .news_div>a small{
	width: 100%;
	overflow: hidden;
	display: block;
}
.news_box .news_div>a small img{
	width: 100%;
	vertical-align: top;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.news_box .news_div>a p{
	font-size: 13px;
	color: #999;
	line-height: 2;
	margin-top: 20px;
	max-height: 156px;
	overflow: hidden;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.news_box .news_div>a i{
	position: absolute;
	right: 18px;
	bottom: 5%;
	width: 35px;
	height: 18px;
	background: url(../img/jt3.png) no-repeat -35px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.news_box .news_div>a:hover{
	background: #da333a;
}
.news_box .news_div>a:hover em{
	color: #fff;
}
.news_box .news_div>a:hover em b{
	color: #fff;
}
.news_box .news_div>a:hover span{
	color: #fff;
}
.news_box .news_div>a:hover p{
	color: #fff;
}
.news_box .news_div>a:hover i{
	background: url(../img/jt3.png) no-repeat 0;
}
.news_box .news_div>a:hover small img{
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}



.news_info_box{

}
.news_info_box .title_div{
	text-align: center;
	color: #333;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 24px;
	margin-bottom: 30px;
}
.news_info_box .title_div h5{
	font-size: 30px;
	margin-bottom: 24px;
	line-height: 1.5;
}
.news_info_box .title_div span{
	font-size: 18px;
}
.news_info_box .content_div{
	
}
.news_info_box .content_div p{
	font-size: 18px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 20px;
}
.news_info_box .content_div p img{
	vertical-align: top;
	width: auto;
	height: auto;
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.news_info_box .page_div{
	background: #e5e5e5;
	font-size: 0;
	margin-top: 40px;
}
.news_info_box .page_div::after{
	content:".";
	display:block;
	height:0;
	visibility:hidden;
	clear:both;
}
.news_info_box .page_div a{
	display: inline-block;
	vertical-align: top;
	width: 50%;
	box-sizing: border-box;
	padding: 40px 20px;
	color: #333;
	line-height: 80px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.news_info_box .page_div a i{
	font-size: 30px;
	line-height: 76px;
}
.news_info_box .page_div a p{
	font-size: 18px;
	width: calc(100% - 190px);
	height: 80px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	box-sizing: border-box;
}
.news_info_box .page_div a img{
	width: 120px;
	height: 80px;
}
.news_info_box .page_div a:hover{
	background: #df2432;
	color: #fff;
}
.news_info_box .page_div a.left_a{
	border-right: 1px solid #ddd;
	float: left;
}
.news_info_box .page_div a.left_a i{
	float: left;
	margin-right: 30px;
	margin-left: 10px;
}
.news_info_box .page_div a.left_a p{
	float: left;
	border-left: 1px solid #ccc;
	padding-left: 20px;
}
/* .news_info_box .page_div a.left_a p::before{
	content: "";
	display: inline-block;
	height: 50px;
	width: 1px;
	background: #ccc;
	vertical-align: middle;
	margin-right: 20px;
} */
.news_info_box .page_div a.left_a img{
	float: right;
}
.news_info_box .page_div a.right_a{
	float: right;
}
.news_info_box .page_div a.right_a i{
	float: right;
	margin-left: 30px;
	margin-right: 10px;
}
.news_info_box .page_div a.right_a p{
	float: right;
	text-align: right;
	border-right: 1px solid #ccc;
	padding-right: 20px;
}
/* .news_info_box .page_div a.right_a p::after{
	content: "";
	display: inline-block;
	height: 50px;
	width: 1px;
	background: #ccc;
	vertical-align: middle;
	margin-left: 20px;
} */
.news_info_box .page_div a.right_a img{
	float: left;
}



.science_box{

}
.science_box .science_div{
	
}
.science_box .science_div dl{
	font-size: 0;
	border-bottom: 1px solid #d2d2d2;
	padding-bottom: 4%;
	margin-bottom: 4%;
}
.science_box .science_div dl dt{
	width: 458px;
	display: inline-block;
	vertical-align: middle;
}
.science_box .science_div dl dt img{
	vertical-align: top;
	width: 100%;
}
.science_box .science_div dl dd{
	width: calc(100% - 458px);
	display: inline-block;
	box-sizing: border-box;
	padding-left: 40px;
	vertical-align: middle;
}
.science_box .science_div dl dd p{
	font-size: 18px;
	color: #333;
	line-height: 1.5;
	text-indent: 36px;
	text-align: justify;
}
.science_box .science_div>p{
	font-size: 18px;
	color: #333;
	line-height: 1.5;
	text-indent: 36px;
	text-align: justify;
	margin-bottom: 4%;
	padding-bottom: 4%;
	border-bottom: 1px solid #d2d2d2;
}
.science_box .science_div .jg_div{
	text-align: center;
}
.science_box .science_div .jg_div h6{
	text-align: left;
	font-size: 24px;
	color: #333;
	margin-bottom: 4%;
}
.science_box .science_div .jg_div img{
	width: auto;
	height: auto;
	max-width: 100%;
}



.research_box{
	background: url(../img/wz6.png) no-repeat right 10% center fixed;
}
.research_box .research_div{
	
}
.research_box .research_div div{
	background: url(../img/bg4.png) no-repeat center;
	background-size: contain;
	position: relative;
	padding-bottom: 70%;
}
.research_box .research_div div img{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 54%;
}
.research_box .research_div div i{
	/* position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(../img/wz6.png) no-repeat right 10% center fixed; */
}
.research_box .research_div dl{
	font-size: 0;
}
.research_box .research_div dl dt{
	width: calc(100% - 498px);
	vertical-align: middle;
	display: inline-block;
	box-sizing: border-box;
	padding-right: 40px;
}
.research_box .research_div dl dt p{
	font-size: 18px;
	color: #333;
	line-height: 1.5;
	text-align: justify;
	text-indent: 36px;
}
.research_box .research_div dl dd{
	width: 498px;
	vertical-align: middle;
	display: inline-block;
}
.research_box .research_div dl dd img{
	vertical-align: top;
	width: 100%;
}



.results_box{

}
.results_box .results_div{

}
.results_box .results_div h6{
	font-size: 18px;
	color: #333;
}
.results_box .results_div ul{
	padding: 4% 0;
	border-bottom: 1px solid #e5e5e5;
}
.results_box .results_div ul{
	font-size: 0;
}
.results_box .results_div ul:last-of-type{
	border-bottom: none;
	padding: 4% 0 0;
}
.results_box .results_div ul li{
	display: inline-block;
	width: 33.33%;
	text-align: center;
	vertical-align: middle;
}
.results_box .results_div ul li img{
	vertical-align: top;
	width: auto;
	height: auto;
	max-width: 95%;
}



.talent_body{
	background: #f8f8fa;
}
.talent_box{
	background: url(../img/wz7.png) no-repeat right 10% center fixed;
}
.talent_box .talent_div{
	
}
.talent_box .talent_div .title_div{
	width: 60%;
	margin-bottom: 4%;
}
.talent_box .talent_div .title_div h6{
	font-size: 24px;
	color: #333;
	margin-bottom: 10px;
}
.talent_box .talent_div .title_div p{
	font-size: 18px;
	color: #666;
	line-height: 1.5;
}
.talent_box .jh_div{
	padding: 80px 0;
}
.talent_box .jh_div dl{
	margin: 0 auto;
	width: 45%;
	padding-bottom: 45%;
	position: relative;
	border-radius: 50%;
	background: url(../img/yuan.png) no-repeat;
	background-size: contain;
}
.talent_box .jh_div dt{
	
}
.talent_box .jh_div dt div{
	position: absolute;
	width: 60%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
	text-align: center;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.talent_box .jh_div dt div.active_div{
	opacity: 1;
}
.talent_box .jh_div dt div p{
	font-size: 16px;
	color: #666;
	line-height: 1.5;
	margin-top: 12px;
}
.talent_box .jh_div dt div img{

}
.talent_box .jh_div dd{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.talent_box .jh_div dd span{
	position: absolute;
	width: 80px;
	height: 80px;
	white-space: nowrap;
	cursor: pointer;
}
.talent_box .jh_div dd span em{
	position: absolute;
	font-size: 20px;
	color: #333;
	cursor: pointer;
}
.talent_box .jh_div dd span em::before{
	content: "";
	display: block;
	width: 40px;
	height: 6px;
	background: #df3c3d;
	margin-left: 2px;
	margin-bottom: 18px;
}
.talent_box .jh_div dd span:nth-of-type(1){
	left: -26px;
	top: 50%;
	margin-top: -27px;
	background: url(../img/tb5.png) no-repeat center #f8f8fa;
}
.talent_box .jh_div dd span:nth-of-type(2){
	top: -26px;
	left: 50%;
	margin-left: -27px;
	background: url(../img/tb6.png) no-repeat center #f8f8fa;
}
.talent_box .jh_div dd span:nth-of-type(3){
	right: -26px;
	top: 50%;
	margin-top: -27px;
	background: url(../img/tb7.png) no-repeat center #f8f8fa;
}
.talent_box .jh_div dd span:nth-of-type(4){
	bottom: -26px;
	left: 50%;
	margin-left: -27px;
	background: url(../img/tb8.png) no-repeat center #f8f8fa;
}
.talent_box .jh_div dd span:nth-of-type(1) em{
	right: 76px;
	top: 12px;
}
.talent_box .jh_div dd span:nth-of-type(2) em{
	bottom: 76px;
    left: 16px;
}
.talent_box .jh_div dd span:nth-of-type(3) em{
	left: 76px;
	top: 12px;
}
.talent_box .jh_div dd span:nth-of-type(4) em{
	top: 76px;
	left: 16px;
}



.recruitment_box{
	background: url(../img/wz9.png) no-repeat right 10% center fixed;
}
.recruitment_box .recruitment_div{

}
.recruitment_box .recruitment_div dl{
	border: 1px solid #bfbfbf;
	margin-top: -1px;
}
.recruitment_box .recruitment_div dt{
	height: 70px;
	line-height: 70px;
	font-size: 18px;
	color: #333;
	font-weight: bold;
	padding: 0 30px;
	cursor: pointer;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.recruitment_box .recruitment_div dt span{
	display: inline-block;
	height: 20px;
	line-height: 20px;
	vertical-align: middle;
}
.recruitment_box .recruitment_div dt em{
	display: inline-block;
	border-left: 3px solid #aaa;
	height: 20px;
	line-height: 20px;
	vertical-align: middle;
	padding-left: 20px;
	margin-left: 30px;
}
.recruitment_box .recruitment_div dt i{
	float: right;
	margin-top: 25px;
	width: 22px;
	height: 22px;
	background: url(../img/shang.png) no-repeat center;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.recruitment_box .recruitment_div dt.active_dt{
	background: #dbd9da;
}
.recruitment_box .recruitment_div dt.active_dt i{
	background: url(../img/xia.png) no-repeat center;
}
.recruitment_box .recruitment_div dt:hover{
	background: #dbd9da;
}
.recruitment_box .recruitment_div dd{
	display: none;
}
.recruitment_box .recruitment_div dd div{
	border-top: 1px solid #bfbfbf;
	padding: 30px;
}
.recruitment_box .recruitment_div dd div h6{
	font-size: 22px;
	color: #ec1c24;
	font-weight: bold;
	height: 44px;
	line-height: 44px;
	margin-bottom: 20px;
}
.recruitment_box .recruitment_div dd div h6::before{
	content: "";
	display: inline-block;
	width: 4px;
	height: 34px;
	vertical-align: middle;
	background: #ec1c24;
	margin-top: -4px;
	margin-right: 15px;
}
.recruitment_box .recruitment_div dd div h6 a{
	float: right;
	height: 44px;
	width: 120px;
	border-radius: 8px;
	background: #dbd9da;
	font-size: 16px;
	color: #333;
	text-align: center;
	font-weight: normal;
}
.recruitment_box .recruitment_div dd div p{
	font-size: 18px;
	color: #666;
	line-height: 1.5;
}



.industry_box{

}
.industry_box .swiper_div{
	position: relative;
}
.industry_box .swiper-container{
	width: 88%;
}
.industry_box .swiper-container img{
	width: 100%;
	height: 100%;
}
.industry_box .swiper_div .swiper-button-next{
	right: 0;
	background: url(../img/jty1.png);
	width: 32px;
	height: 56px;
	outline: none;
}
.industry_box .swiper_div .swiper-button-prev{
	left: 0;
	background: url(../img/jtz1.png);
	width: 32px;
	height: 56px;
	outline: none;
}
.industry_box .swiper_div .swiper-pagination-bullet-active{
	background: #df3c3d;
}
.industry_box .content_div{
	width: 88%;
	margin: 0 auto;
	padding-top: 20px;
}
.industry_box .content_div p{
	font-size: 20px;
	color: #666;
	line-height: 1.5;
	margin-top: 30px;
}



.implement_box{

}
.implement_box ul{
	
}
.implement_box ul li{
	width: 31.3%;
	float: left;
	margin-right: 3%;
	margin-bottom: 5%;
}
.implement_box ul li:nth-of-type(3n+3){
	margin-right: 0;
}
.implement_box ul li em{
	display: block;
	position: relative;
	overflow: hidden;
}
.implement_box ul li em img{
	vertical-align: top;
	width: 100%;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.implement_box ul li em::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	margin: auto;
	bottom: 0;
	right: 0;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.implement_box ul li p{
	font-size: 16px;
	color: #333;
	margin-top: 28px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.implement_box ul li:hover em::after{
	width: 92%;
	height: 84%;
	opacity: 1;
}
.implement_box ul li:hover em img{
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}



.party_box{
	padding-bottom: 0;
}
.party_box .page_div{
	text-align: right;
	margin-bottom: 30px;
}
.party_box .page_div a{
	display: inline-block;
	margin-left: 14px;
	height: 34px;
	width: 80px;
	border: 1px solid #bfbfbf;
	text-align: center;
	line-height: 30px;
	font-size: 30px;
	color: #333;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.party_box .page_div a:hover{
	background: #da333a;
	border: 1px solid #da333a;
	color: #fff;
}
.party_box ul{
	position: relative;
	width: 100%;
	padding-bottom: 40.71%;
}
.party_box ul li{
	position: absolute;
	overflow: hidden;
}
.party_box ul li:nth-child(1){
	width: 58%;
	height: 100%;
	top: 0;
	left: 0;
}
.party_box ul li:nth-child(2){
	width: calc(42% - 20px);
	height: calc(50% - 10px);
	top: 0;
	right: 0;
}
.party_box ul li:nth-child(3){
	width: calc(42% - 20px);
	height: calc(50% - 10px);
	bottom: 0;
	right: 0;
}
.party_box ul li img{
	vertical-align: top;
	width: 100%;
	height: 100%;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.party_box ul li p{
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	padding: 3% 5%;
	left: 0;
	bottom: -100px;
	box-sizing: border-box;
	background: url(../img/bg7.png) no-repeat;
	background-size: cover;
	font-size: 16px;
	color: #fff;
	line-height: 1.5;
	opacity: 0;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.party_box ul li:hover p{
	bottom: 0;
	opacity: 1;
}
.party_box ul li:hover img{
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.party_box .content_div{
	border-top: 8px solid #da333a;
	margin-top: 5%;
	position: relative;
	width: 100%;
	padding-bottom: 31.25%;
	background: url(../img/bg5.jpg) no-repeat left bottom fixed;
	background-size: cover;
}
.party_box .content_div p{
	font-size: 18px;
	color: #fff;
	line-height: 1.8;
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	text-align: justify;
	text-indent: 36px;
}
.party_box .title_p{
	font-size: 18px;
	color: #333;
	line-height: 1.5;
	margin-bottom: 4%;
	margin-top: -2%;
}
.party_box ol{
	padding-bottom: 4%;
}
.party_box ol li{
	width: 32.33%;
	float: left;
	margin-top: 20px;
	margin-right: 1.5%;
	position: relative;
	overflow: hidden;
}
.party_box ol li:nth-of-type(3n+3){
	margin-right: 0;
}
.party_box ol li img{
	vertical-align: top;
	width: 100%;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.party_box ol li p{
	position: absolute;
    width: 100%;
    box-sizing: border-box;
    padding: 3% 5%;
    left: 0;
    bottom: -100px;
    box-sizing: border-box;
    background: url(../img/bg7.png) no-repeat;
    background-size: cover;
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    opacity: 0;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.party_box ol li:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.party_box ol li:hover p{
	bottom: 0;
	opacity: 1;
}



.member_box{
	background: url(../img/bg2.png) no-repeat center bottom fixed;
}
.member_box ul{
	
}
.member_box ul li{
	height: 50px;
	line-height: 50px;
	padding: 0 3%;
	margin: 8px 0;
}
.member_box ul li:nth-of-type(odd){
	background: rgba(218, 51, 58, 0.15);
}
.member_box ul li a{
	display: block;
	font-size: 20px;
	color: #333;
}



.institutions_box{
	background: url(../img/bg3.png) no-repeat center fixed;
}
.institutions_box p{
	text-align: center;
}
.institutions_box p img{
	width: auto;
	height: auto;
	max-width: 100%;
}



.honor_box{
	background: url(../img/bg8.jpg) no-repeat bottom fixed;
}
.honor_box .swiper_div{
	
}
.honor_box .swiper_div .switch_div{
	position: relative;
	text-align: right;
	font-size: 0;
	height: 28px;
	margin-bottom: 2%;
}
.honor_box .swiper_div .swiper-button-next{
	position: static;
	display: inline-block;
	width: 16px;
	height: 28px;
	background: url(../img/jty2.png) no-repeat right;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	outline: none;
	padding-left: 20px;
	border-left: 1px solid #bfbfbf;
}
.honor_box .swiper_div .swiper-button-next:hover{
	background: url(../img/jty2h.png) no-repeat right;
}
.honor_box .swiper_div .swiper-button-prev{
	position: static;
	display: inline-block;
	width: 16px;
	height: 28px;
	background: url(../img/jtz2.png) no-repeat;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	outline: none;
	padding-right: 20px;
}
.honor_box .swiper_div .swiper-button-prev:hover{
	background: url(../img/jtz2h.png) no-repeat;
}
.honor_box .swiper_div .slide_div{
	width: 100%;
	font-size: 0;
}
.honor_box .swiper_div .slide_div em{
	display: inline-block;
	vertical-align: middle;
	width: 32.3%;
	margin: 10px 1.5% 10px 0;
	background: #fff;
	padding: 14px;
	box-sizing: border-box;
}
.honor_box .swiper_div .slide_div em:nth-of-type(3n+3){
	margin-right: 0;
}
.honor_box .swiper_div .slide_div em img{
	width: 100%;
}



.qualification_box{
	background: url(../img/bg2.png) no-repeat center bottom fixed;
}
.qualification_box dl{
	font-size: 0;
}
.qualification_box dl dt{
	display: inline-block;
	width: 40%;
	box-sizing: border-box;
	padding-right: 7%;
	vertical-align: top;
	border-right: 4px solid #ec1c24;
}
.qualification_box dl dt img{
	width: 100%;
}
.qualification_box dl dd{
	display: inline-block;
	width: 60%;
	box-sizing: border-box;
	padding-left: 5%;
	vertical-align: top;
}
.qualification_box dl dd h5{
	font-size: 48px;
	color: #ec1c24;
	text-transform: uppercase;
	font-weight: bold;
}
.qualification_box dl dd p{
	font-size: 18px;
	color: #333;
	line-height: 1.8;
	text-indent: 36px;
	text-align: justify;
	margin-top: 8%;
}
.qualification_box ul{
	font-size: 0;
	margin-top: 5%;
}
.qualification_box ul li{
	display: inline-block;
	width: 33.33%;
}
.qualification_box ul li:nth-of-type(3n+1){
	text-align: left;
}
.qualification_box ul li:nth-of-type(3n+2){
	text-align: center;
}
.qualification_box ul li:nth-of-type(3n+3){
	text-align: right;
}
.qualification_box ul li img{
	vertical-align: top;
	width: auto;
	height: auto;
	max-width: 96%;
}



.course_box{
	background: url(../img/wz5.png) no-repeat 14% 24% fixed;
}
.course_box ul{
	position: relative;
}
.course_box ul::after{
	content: "";
	position: absolute;
	border-left: 1px dashed #df3c3d;
	height: calc(100% - 200px);
	top: 100px;
	left: 50%;
}
.course_box ul li{
	text-align: left;
	position: relative;
	z-index: 9;
}
.course_box ul li dl{
	font-size: 0;
	width: 50%;
	display: inline-block;
	vertical-align: top;
}
.course_box ul li dl dt{
	display: inline-block;
	vertical-align: middle;
	width: 200px;
}
.course_box ul li dl dd{
	display: inline-block;
	vertical-align: middle;
	text-align: right;
	width: calc(100% - 200px);
	box-sizing: border-box;
	padding: 0 40px;
	position: relative;
}
.course_box ul li dl dd::after{
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	right: -9px;
	top: 50%;
	margin-top: -8px;
	background: #22713e;
	z-index: 8;
}
.course_box ul li dl dt img{
	border-radius: 50%;
	vertical-align: top;
	width: 100%;
}
.course_box ul li dl dd h6{
	font-size: 50px;
	font-weight: bold;
	color: #22713e;
	margin-bottom: 16px;
}
.course_box ul li dl dd p{
	font-size: 16px;
	color: #666;
	margin-top: 10px;
	line-height: 1.5;
}
.course_box ul li:nth-of-type(odd){
	text-align: right;
}
.course_box ul li:nth-of-type(odd) dl dd{
	text-align: left;
}
.course_box ul li:nth-of-type(odd) dl dd::after{
	content: "";
	display: none;
}
.course_box ul li:nth-of-type(odd) dl dd::before{
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	left: -8px;
	top: 50%;
	margin-top: -8px;
	background: #b3bd3c;
	z-index: 8;
}
.course_box ul li:nth-of-type(odd) dl dd h6{
	color: #b3bd3c;
}



.contact_box{
	padding-left: 10%;
}
.contact_box dl{
	background: #f8f8fa;
	padding: 5% 0;
	height: 650px;
	font-size: 0;
}
.contact_box dl dt{
	display: inline-block;
	width: 30%;
	height: 100%;
	vertical-align: top;
	overflow: hidden;
	box-sizing: border-box;
	padding: 0 4%;
}
.contact_box dl dt .list_div{
	border-bottom: 1px solid #ccc;
	margin-bottom: 30px;
	padding-bottom: 20px;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}
.contact_box dl dt .list_div:last-of-type{
	margin-bottom: 0;
}
.contact_box dl dt .list_div::before{
	content: "";
	position: absolute;
	width: 20px;
	height: 26px;
	background: url(../img/tb4.png) no-repeat;
	left: 0;
	top: 0;
}
.contact_box dl dt div h6{
	font-size: 20px;
	color: #333;
	margin-bottom: 16px;
}
.contact_box dl dt div p{
	font-size: 18px;
	color: #666;
	margin-top: 10px;
}
.contact_box dl dd{
	display: inline-block;
	width: 70%;
	height: 100%;
	vertical-align: top;
}
.contact_box dl dd #dituContent{
	width: 100%;
	height: 100%;
}
.contact_box dl dd #dituContent .BMap_bubble_title{
	font-size: 18px;
	color: #333;
}
.contact_box dl dd #dituContent .BMap_bubble_content{
	font-size: 14px;
	color: #333;
	margin-top: 8px;
	line-height: 1.5;
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	background-color: rgba(0,0,0,0.5) !important;
	filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
	background-color: rgba(0,0,0,0.8) !important;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)"; 
}



.about_box{

}
.about_box dl{
	font-size: 0;
}
.about_box dl dt{
	display: inline-block;
	vertical-align: top;
	width: 360px;
	position: relative;
}
.about_box dl dt::after{
	content: "";
	position: absolute;
	position: absolute;
    width: 50%;
    padding-bottom: 50%;
    background: #df0024;
	top: -20px;
	right: 0;
}
.about_box dl dt img{
	width: 340px;
	position: relative;
	z-index: 3;
}
.about_box dl dd{
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 360px);
	box-sizing: border-box;
	padding-right: 40px;
	padding-top: 30px;
}
.about_box dl dd p{
	font-size: 18px;
	color: #333;
	line-height: 1.8;
	text-indent: 36px;
}
.about_box .data_ol{
	color: #ce0d17;
	font-size: 0;
	padding: 2% 14%;
	background: #eee;
}
.about_box .data_ol li{
	display: inline-block;
	width: 33.33%;
	vertical-align: top;
	text-align: center;
}
.about_box .data_ol li span{
	display: inline-block;
	vertical-align: top;
	text-align: center;
}
.about_box .data_ol li span strong{
	font-size: 80px;
	font-weight: normal;
	display: block;
}
.about_box .data_ol li span em{
	font-size: 18px;
	display: block;
	margin-top: 16px;
}
.about_box .data_ol li small{
	font-size: 14px;
	vertical-align: top;
	display: inline-block;
	padding-top: 10px;
	margin-left: 15px;
}
.about_box .introduce_div{
	font-size: 18px;
	color: #333;
	line-height: 1.8;
	padding: 3% 0;
}
.about_box .video_div{
	position: relative;
	width: 100%;
	padding-bottom: 27%;
	border-top: 12px solid #ec1c24;
	background: #111;
}
.about_box .video_div video{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.about_box .video_div em{
	background: url(../img/bg6.jpg) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.about_box .video_div i{
	width: 99px;
	height: 99px;
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 8;
	background: url(../img/tb3.png);
	cursor: pointer;
}



.search_box p{
	font-size: 14px;
	color: #999;
	height: 40px;
	line-height: 40px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 30px;
}
.search_box h5{
	font-size: 18px;
	color: #333;
	margin-bottom: 20px;
}
.search_box ul{
	margin-bottom: 50px;
}
.search_box ul li{
	height: 40px;
	line-height: 40px;
	border-bottom: 1px solid #ccc;
}
.search_box ul li a{
	display: block;
	color: #333;
}



@media screen and (max-width: 1500px){
	.contact_box{
		padding-left: 0;
	}
	.w80{
		width: 80%;
	}
	.title_box .img_div h2{
		left: 10%;
	}
	.news_box .news_div>a{
		height: 720px;
	}
}
@media screen and (max-width: 1400px){
	.contact_box dl{
		height: 550px;
	}
	.talent_box .talent_div .title_div{
		width: 100%;
	}
	.news_box .news_div>a{
		height: 700px;
	}
}
@media screen and (max-width: 1360px){
	.head_box>a {
		width: 200px;
		background-size: contain;
	}
}
@media screen and (max-width: 1200px){
	.head_box #w_ul{
		display: none;
	}
	.head_box .menu_div{
		display: block;
	}
	.head_box .abg{
		display: none;
	}
	.head_box>form{
		display: none;
	}
	.title_box .img_div{
		overflow: hidden;
	}
	.title_box .nav_div{
		display: none;
	}
	.title_box .img_div h2{
		font-size: 36px;
	}
	.contact_box dl dt div h6{
		font-size: 16px;
	}
	.contact_box dl dt div p{
		font-size: 14px;
	}
	.contact_box dl dt{
		width: 100%;
	}
	.contact_box dl dd{
		display: none;
	}
	.contact_box dl{
		height: auto;
	}
	.talent_box{
		background: none;
	}
	.title_h5{
		font-size: 32px;
	}
	.talent_box .jh_div{
		padding: 0;
	}
	.talent_box .jh_div dl{
		background: none;
		width: 100%;
		padding-bottom: 0;
	}
	.talent_box .jh_div dt{
		display: none;
	}
	.talent_box .jh_div dd{
		position: static;
	}
	.talent_box .jh_div dd span{
		background: none !important;
		position: static;
		display: block;
		width: 100%;
		height: auto;
		margin-top: 0 !important;
		margin-left: 0 !important;
		margin-bottom: 20px;
	}
	.talent_box .jh_div dd span em{
		position: static;
	}
	.recruitment_box{
		background: none;
	}
	.party_box .content_div p{
		font-size: 16px;
	}
	.party_box ul li p{
		font-size: 14px;
	}
	.party_box ol li p{
		font-size: 14px;
	}
	.news_box .news_div>a p{
		display: none;
	}
	.news_box .news_div>a{
		height: auto;
	}
	.news_box .news_div>a i{
		bottom: auto;
		top: 24px;
	}
	.news_box .news_div>a{
		width: 50%;
	}
	.news_info_box .title_div h5{
		font-size: 24px;
		margin-top: 3%;
	}
	.news_info_box .title_div span{
		font-size: 14px;
	}
	.news_info_box .content_div p{
		font-size: 16px;
	}
	.news_info_box .page_div a{
		padding: 20px;
	}
	.news_info_box .page_div a img{
		display: none;
	}
	.news_info_box .page_div a p{
		width: calc(100% - 50px);
	}
	.science_box .science_div dl dd p{
		font-size: 16px;
	}
	.science_box .science_div>p{
		font-size: 16px;
	}
	.science_box .science_div .jg_div h6{
		font-size: 20px;
	}
	.science_box .science_div dl dt{
		width: 400px;
	}
	.science_box .science_div dl dd{
		width: calc(100% - 400px);
	}
	.research_box{
		background: none;
	}
	.research_box .research_div dl dt p{
		font-size: 16px;
	}
	.research_box .research_div dl dt{
		width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}
	.research_box .research_div dl dd{
		display: block;	
		margin: 0 auto;
	}
	.results_box .results_div ul li{
		width: 50%;
		margin-bottom: 20px;
	}
	.results_box .results_div h6{
		font-size: 16px;
		line-height: 1.5;
	}
	.industry_box .content_div p{
		font-size: 16px;
	}
	.implement_box ul li{
		width: 49%;
		margin-right: 2%;
	}
	.implement_box ul li:nth-of-type(3n+3){
		margin-right: 2%;
	}
	.implement_box ul li:nth-of-type(even){
		margin-right: 0;
	}
	.about_box dl dd p{
		font-size: 16px;
	}
	.about_box .data_ol li span strong{
		font-size: 70px;
	}
	.about_box .introduce_div{
		font-size: 16px;
	}
	.qualification_box dl dd h5{
		font-size: 36px;
	}
	.qualification_box dl dd p{
		margin-top: 5%;
	}
	.course_box{
		background: none;
	}
	.course_box ul::after{
		display: none;
	}
	.course_box ul li dl{
		width: 100%;
		padding: 20px 0;
		border-bottom: 1px dashed #ba2427;
	}
	.honor_box .swiper_div .slide_div em{
		width: 49%;
		margin-right: 2%;
	}
	.honor_box .swiper_div .slide_div em:nth-of-type(3n+3){
		margin-right: 2%;
	}
	.honor_box .swiper_div .slide_div em:nth-of-type(even){
		margin-right: 0;
	}
	.culture_box dt strong{
		font-size: 28px;
	}
	.culture_box dt span{
		font-size: 20px;
	}
	.culture_box dd p{
		font-size: 14px;
	}
	.culture_box{
		background: none;
	}
	.member_box ul li a{
		font-size: 18px;
	}
}
@media screen and (max-width: 1000px){
	.culture_box dt{
		width: 100%;
		display: block;
		margin-bottom: 8%;
	}
	.culture_box dd{
		width: 100%;
		display: block;
		padding-left: 0;
	}
	.culture_box dt strong{
		font-size: 28px;
	}
	.culture_box dt span{
		font-size: 20px;
	}
	.science_box .science_div dl dd{
		width: 100%;
		padding-left: 0;
		padding-top: 20px;
	}
	.qualification_box dl dt{
		width: 100%;
		padding-right: 0;
		border-right: 0;
	}
	.qualification_box dl dd{
		width: 100%;
		padding-left: 0;
		margin-top: 20px;
	}
	.course_box ul li dl dt{
		width: 140px;
	}
	.course_box ul li dl dd{
		width: calc(100% - 140px);
		padding: 0 30px;
	}
}
@media screen and (max-width: 768px){
	.w80{
		width: 92%;
	}
	.body_box{
		padding: 5% 0 8%;
	}
	.title_h5{
		margin-bottom: 8%;
		margin-top: 3%;
	}
	.talent_box .talent_div .title_div{
		margin-bottom: 8%;
	}
	.talent_box .talent_div .title_div h6{
		font-size: 18px;
	}
	.talent_box .talent_div .title_div p{
		font-size: 16px;
	}
	.head_box{
		height: 60px;
		padding: 0 0 0 12px;
		border-bottom: 1px solid #e7e7e8;
	}
	.title_box .img_div img{
		margin-left: -140px;
		height: 200px;
		width: auto;
	}
	.foot_box{
		padding: 20px 10%;
	}
	.foot_box>p{
		float: none;
		margin-top: 12px;
	}
	.foot_box>p span{
		margin-right: 0;
		display: block;
		margin-bottom: 12px;
	}
	.page_box{
		padding: 12px 0;
	}
	.page_box a{
		display: none;
	}
	.page_box a.page_a{
		display: inline-block;
		width: 100px;
	}
	.recruitment_box .recruitment_div dt{
		padding: 0 10px;
		font-stretch: 16px;
	}
	.recruitment_box .recruitment_div dt em{
		padding-left: 10px;
		margin-left: 10px;
		font-size: 14px;
	}
	.recruitment_box .recruitment_div dd div{
		padding: 20px 10px;
	}
	.recruitment_box .recruitment_div dd div h6{
		font-size: 20px;
	}
	.recruitment_box .recruitment_div dd div p{
		font-size: 16px;
	}
	.party_box ul{
		position: static;
		padding-bottom: 0;
	}
	.party_box ul li{
		position: static;
		width: 100% !important;
		margin-bottom: 20px;
	}
	.party_box ul li p{
		position: static;
		background: #eee;
		color: #333;
		opacity: 1;
		padding: 4%;
	}
	.party_box .page_div{
		display: none;
	}
	.party_box .content_div{
		position: static;
		padding: 0;
		background-size: cover;
	}
	.party_box .content_div p{
		position: static;
		transform: translateY(0);
		padding: 20px 0;
		font-size: 14px;
	}
	.party_box{
		padding-bottom: 0;
	}
	.party_box .title_p{
		font-size: 16px;
	}
	.party_box ol li{
		width: 100%;
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 20px;
	}
	.party_box ol li p{
		position: static;
		background: #eee;
		color: #333;
		opacity: 1;
		padding: 4%;
	}
	.news_box .news_div>a{
		width: 100%;
		padding: 0;
		border: none;
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid #ccc;
	}
	.news_box .news_div>a i{
		display: none;
	}
	.news_box .news_div>a em{
		line-height: 34px;
	}
	.news_box .news_div>a em b{
		margin-bottom: 0;
		font-size: 60px;
		vertical-align: bottom;
		line-height: 60px;
	}
	.news_box .news_div>a em b{
		display: inline-block;
	}
	.news_box .news_div>a span{
		margin-bottom: 10px;
		margin-top: 10px;
	}
	.news_info_box .page_div a p{
		display: none;
	}
	.news_info_box .page_div a i{
		line-height: 20px;
	}
	.science_box .science_div dl dt{
		width: 100%;
	}
	.science_box .science_div>p{
		margin-bottom: 8%;
	}
	.science_box .science_div .jg_div h6{
		text-align: center;
		margin-bottom: 8%;
	}
	.research_box .research_div div{
		padding-bottom: 100%;
	}
	.research_box .research_div div img{
		width: 76%;
	}
	.research_box .research_div dl dd{
		width: 100%;
	}
	.industry_box .swiper_div .swiper-button-next{
		display: none;
	}
	.industry_box .swiper_div .swiper-button-prev{
		display: none;
	}
	.industry_box .swiper-container{
		width: 100%;
	}
	.industry_box .content_div{
		width: 100%;
		padding-top: 0;
	}
	.implement_box ul li{
		width: 100%;
		margin-right: 0;
		margin-bottom: 8%;
	}
	.implement_box ul li p{
		margin-top: 20px;
	}
	.about_box dl dd{
		width: 100%;
		padding: 0;
	}
	.about_box dl dt{
		width: 100%;
		margin-top: 20px;
	}
	.about_box dl dt img{
		width: 100%;
	}
	.about_box dl dt::after{
		right: -20px;
	}
	.about_box .data_ol{
		padding: 4%;
	}
	.about_box .data_ol li span strong{
		font-size: 32px;
		font-weight: bold;
	}
	.about_box .data_ol li span em{
		font-size: 14px;
	}
	.about_box .data_ol li small{
		display: block;
		padding-top: 10px;
		margin: 0;
	}
	.about_box .video_div{
		padding-bottom: 200px;
	}
	.about_box .video_div i{
		width: 60px;
		height: 60px;
		background-size: contain;
	}
	.qualification_box ul li{
		width: 100%;
		text-align: center !important;
	}
	.qualification_box dl dd h5{
		text-align: center;
	}
	.course_box ul li dl dt{
		width: 100px;
	}
	.course_box ul li dl dd{
		width: calc(100% - 100px);
		padding: 0 10px;
	}
	.course_box ul li dl dd h6{
		font-size: 28px;
	}
	.course_box ul li:nth-of-type(odd) dl dd::before{
		display: none;
	}
	.course_box ul li dl dd::after{
		display: none;
	}
	.honor_box .swiper_div .slide_div em{
		padding: 6px;
	}
}
























































































































































