/*reset*/
html, body, div, img, a, span, form, label, input, p, ul, li, button,em{
    margin: 0;
    border: 0;
    padding: 0;
    font-style: normal;
    font: 12px/1.5 tahoma,arial,'Microsoft YaHei';
}
img {
	vertical-align: middle;
}
a {
	text-decoration: none;
	cursor: pointer;
}
p{
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
}
ul,li{
	list-style: none;
}
input, textarea {
    background-color: transparent;
    
}
input::-webkit-input-placeholder{
	color: #999;
}
select{
	outline: 0;
	border-radius: 0;
}
input:focus, select:focus, textarea:focus {
	box-shadow: 0 0 4px #0096ff;
}

html{
	height: 100%;
	position: relative;
}
body{
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	background-size: 100% 100%;
	position: relative;
}
.left{
	float: left;
}
.right{
	float: right;
}
i.icon{
	display: inline-block;
}

/*首页*/
.headBox{
	width: 1200px;
	height: 74px;
	margin: 0 auto;
}
.headBox img{
	width: 240px;
}
.headBox .menuBox a{
	line-height: 74px;
	margin-left: 30px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
}
.headBox .menuBox a:hover{
	color: #0b318f;
	text-decoration: underline;
}
.navBox{
	width: 100%;
	height: 78px;
	background: #0b318f;
}
.nav{
	width: 1200px;
	height: 78px;
	margin: 0 auto;
	position: absolute;
	left:0;
	right: 0;

}
.nav .nav_li{
	float: left;
	box-sizing: border-box;
	/*width: 96px;*/
	height: 78px;
	line-height: 78px;
	position: relative;
}
.nav .nav_li .nav_a{
	display: block;
	box-sizing: border-box;
	min-width: 96px;
	height: 78px;
	line-height: 78px;
	color: #fff;
	text-align: center;
	cursor: pointer;
	padding: 0 18px;
	font-size: 13px;
}
.nav .nav_li.active .nav_a{
	color: #ffe100;
}	
.nav .nav_li:hover{
	background: rgba(255,255,255,.1);
}
.nav .nav_li:hover .nav_a{
	color: #ffe100;
}
.nav .nav_li i.icon{
	width: 12px;
	height: 7px;
	background: url(../img/arrow_down.png) 0 0/cover no-repeat;
	transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform-origin: 50% 50% 0;
	transition: transform .2s ease-in 0s;
	margin-left: 5px;
}
.nav .nav_li:hover i.icon{
	background-image: url(../img/arrow_down_active.png);
	transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform-origin: 50% 50% 0;
	transition: transform .2s ease-in 0s;
}
.nav .nav_li.active i{
	background-image: url(../img/arrow_down_active.png);
}
.drop_down_listBox{
	width: 228px;
    height: auto;
    position: absolute;
    left: 0px;
    top: 78px;
    z-index: 9999;
    display: none;
}   
.drop_down_list .arrow{
	width: 120px;
	height: 12px;
	position: relative;
}
.drop_down_list .arrow i{
	width: 0;
    height: 0;
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 35px;
    top: 4px;
    z-index: 1;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #0b318f;
}
.drop_down_list ul{
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    border-radius: 5px;
    background: #0b318f;
}
.drop_down_listBox .drop_down_li{
	border-bottom: 1px solid rgba(255,255,255,.2);    
}
.drop_down_listBox .drop_down_li:last-child{
	border-bottom: 0;
}
.drop_down_listBox .drop_down_li:hover{
	background: rgba(255,255,255,.1);
}
.drop_down_listBox .drop_down_li a{
	display: block;
    box-sizing: border-box;
	padding-left: 20px;
	width: 228px;
	height: 36px;
	line-height: 36px;
	text-align: left;
	color: #fff;
	cursor: pointer;
	transform: translateX(0px);
	-moz-transform: translateX(0px);
	-webkit-transform: translateX(0px);
	-o-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform-origin: 50% 50% 0;
	transition: transform .2s ease-in 0s;
}
.drop_down_listBox .drop_down_li span{
	margin-right: 5px;
}
.drop_down_listBox .drop_down_li a:hover{
	color: #ffe100;
	transform: translateX(10px);
	-moz-transform: translateX(10px);
	-webkit-transform: translateX(10px);
	-o-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform-origin: 50% 50% 0;
	transition: transform .2s ease-in 0s;
}
.drop_down_listBox_long{
	width: 360px;
}
.drop_down_listBox_long .drop_down_li a{
	width: 360px;
}



/*banner*/
.flexslider{
	position: relative;
	height: 525px;
	overflow: hidden;
	background: url(../img/loading.gif) 50% no-repeat;
}
.slides{
	position: relative;
	z-index: 1;
}
.slides li{
	height: 525px;
}
.flex-control-nav{
	position: absolute;
	bottom: 20px;
	z-index: 2;
	padding: 0;
	width: 100%;
	text-align: center;
}
.flex-control-nav li{
	width: 14px;
	height: 14px;
	margin: 0 6px;
	display: inline;
	zoom: 1;
}
.flex-control-nav a{
	display: inline-block;
	width: 16px;
	height: 16px;
	font-size: 0;
	overflow:  hidden;
	background: url(../img/dot1.png) 0 0 no-repeat;
	cursor: pointer;
	color: white;
}
.flex-control-nav .flex-active{
	background-position: right 0;
}
.slides li{
	width: 100%;
	height: 525px;
}
.banner1{
	background: url(../img/banner1.jpg) center center no-repeat;
}
.banner_animate{
	width: 1200px;
	height: 525px;
	margin: 0 auto;
	position: relative;
}
.banner1 .a_1,.banner1 .a_2,.banner1 .a_3,.banner1 .a_4{
	position: absolute;
	width: 180px;
	height: 76px;
	filter: drop-shadow(0 5px 10px  rgba(0,0,0,.2));
	-webkit-filter: drop-shadow(0 5px 10px  rgba(0,0,0,.2));
}
.banner1 .a_1{
	right: 514px;
	top: 144px;
	background: url(../img/a_1.png);
	-webkit-animation: zoomIn 1s ease-out 1;
}
.banner1 .a_2{
	right: 308px;
	top: 144px;
	background: url(../img/a_2.png);
	-webkit-animation: bounceInDown 2s ease-out 1;
}
.banner1 .a_3{
	right: 386px;
	top: 232px;
	background: url(../img/a_3.png);
	-webkit-animation: fadeInLeftBig 3s ease-out 1;
}
.banner1 .a_4{
	right: 180px;
	top: 232px;
	background: url(../img/a_4.png);
	-webkit-animation: fadeInRightBig 4s ease-out 1;
}

.banner1 .a_5{
	position: absolute;
	width: 178px;
	height: 34px;
	right: 180px;
	top: 342px;
	background: url(../img/a_5.png);
	-webkit-animation: bounceInUp 5s ease-out 1;
}



.banner1 .a_6,.banner1 .a_7,.banner1 .a_8{
	position: absolute;
	filter: drop-shadow(0 5px 10px  rgba(0,0,0,.2));
	-webkit-filter: drop-shadow(0 5px 10px  rgba(0,0,0,.2));
}
.banner1 .a_6{
	width: 374px;
	height: 126px;
	right: 220px;
	top: 116px;
	background: url(../eng-img/a_6.png) 0 0/374px 126px no-repeat;
	-webkit-animation: bounceInDown 1.5s ease-out 1;
}
.banner1 .a_7{
	width: 497px;
	height: 126px;
	right: 0px;
	top: 226px;
	background: url(../eng-img/a_7.png) 0 0/497px 126px no-repeat;
	-webkit-animation: fadeInRightBig 2.0s ease-out 1;
}
.banner1 .a_8{
	width: 260px;
	height: 72px;
	right: 0px;
	top: 356px;
	background: url(../eng-img/a_8.png) 0 0/260px 72px no-repeat;
	-webkit-animation: bounceInUp 3s ease-out 1;
}


.banner2{
	background: url(../img/banner2.jpg) center center no-repeat;
}
.banner3{
	background: url(../img/banner3.jpg) center center no-repeat;
}
.banner4{
	background: url(../img/banner4.jpg) center center no-repeat;
}
.banner5{
	background: url(../img/banner5.jpg) center center no-repeat;
}
.banner6{
	background: url(../img/banner6.jpg) center center no-repeat;
}
.banner7{
	background: url(../img/banner7.jpg) center center no-repeat;
}
.banner8{
	background: url(../img/banner8.jpg) center center no-repeat;
}
.banner9{
	background: url(../img/banner9.jpg) center center no-repeat;
}
@media screen and (max-height: 700px){
	.flexslider{
		position: relative;
		height: 410px;
		overflow: hidden;
		background: url(../img/loading.gif) 50% no-repeat;
	}
	.slides{
		position: relative;
		z-index: 1;
	}
	.slides li{
		height: 410px;
	}
	.banner_animate{	
		height: 410px;
	}
	.banner1 .a_1{
		top: 84px;
	}
	.banner1 .a_2{
		top: 84px;
	}
	.banner1 .a_3{
		top: 172px;
	}
	.banner1 .a_4{
		top: 172px;
	}
	.banner1 .a_5{
		top: 278px;
	}

	.banner1 .a_6{
		width: 320px;
		height: 108px;
		right: 314px;
		top: 56px;
		background: url(../eng-img/a_6.png) 0 0/320px 108px no-repeat;
	}
	.banner1 .a_7{
		width: 426px;
		height: 108px;
		right: 144px;
		top: 162px;
		background: url(../eng-img/a_7.png) 0 0/426px 108px no-repeat;
	}
	.banner1 .a_8{
		width: 222px;
		height: 61px;
		right: 140px;
		top: 280px;
		background: url(../eng-img/a_8.png) 0 0/222px 61px no-repeat;
	}


	.banner2{
		background: url(../img/banner2_1.jpg) center center no-repeat;
	}
	.banner3{
		background: url(../img/banner3_1.jpg) center center no-repeat;
	}
	.banner4{
		background: url(../img/banner4_1.jpg) center center no-repeat;
	}
	.banner5{
		background: url(../img/banner5_1.jpg) center center no-repeat;
	}
	.banner6{
		background: url(../img/banner6_1.jpg) center center no-repeat;
	}
	.banner8{
		background: url(../img/banner8_1.jpg) center center no-repeat;
	}
	.banner9{
		background: url(../img/banner9_1.jpg) center center no-repeat;
	}

}
.containerBox{
	width: 100%;
}
.section{
	width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}
.title{
	height: 80px;
	line-height: 60px;
	font-size: 28px;
	font-weight: bold;
	color: #0b318f;
}
.areaBox ul{
	overflow: hidden;
}
.areaBox li{
    box-sizing: border-box;
    float: left;
    width: 310px;
    padding: 16px 12px;
    cursor: pointer;
}
.areaBox li img{
	width: 70px;
	height: 70px;
	vertical-align: middle;
}
.areaBox .textBox{
	margin-left: 25px;
	width: 180px;
}
.areaBox .textBox .name{
	font-size: 20px;
	color: #475e74;
}
.areaBox .textBox .text{
	color: #4e5f6f;
	height: 40px;
	line-height: 18px;
	text-indent: 2em;
	overflow: hidden;
 	text-overflow: ellipsis;
	display: -webkit-box;
 	-webkit-line-clamp: 2;
 	-webkit-box-orient: vertical;
}
.areaBox li:hover{
	background: rgba(11,49,143,.1);
}
.areaBox li:hover .text{
	text-decoration: underline;
}
.areaBox li:hover .area_icon{
	-webkit-animation: swing 1s ease-out 1;
}
.fullBg{background: #fff;}

.grayBg{
	background: #f4f4f4;
}
.main{
	overflow: hidden;
}
.newsBox{
	box-sizing: border-box;
	/*width: 776px;*/
	/*height: 418px;*/
	background: #e5e5e5;
	border-radius: 5px;
	padding: 18px;
	overflow: hidden;
	margin:0 20px;
}
.newsBox .main_new{
	width: 320px;
	cursor: pointer;
	margin-right: 20px;
}
.newsBox .main_new:hover .main_title{
	color: #0b318f;
}
.newsBox .main_new:hover .main_detail{
	text-decoration: underline;
}
.newsBox .mainImg{
	position: relative;
}
.newsBox .mainImg img{
	width: 320px;
	height: 264px;
}
.newsBox .mainImg .date{
	position: absolute;
	left: 0;
	top: 0;
	width: 118px;
	height: 30px;
	background: rgba(0,0,0,.2);
	color: #fff;
	text-align: center;
	line-height: 30px;
}
.newsBox  .main_title{
	height: 34px;
	line-height: 34px;
	font-size: 18px;
	color: #333;
	width: 320px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.newsBox .main_detail{
	height: 62px;
	line-height: 20px;
	text-indent: 2em;
	color: #666;
	overflow: hidden;
 	text-overflow: ellipsis;
	display: -webkit-box;
 	-webkit-line-clamp: 3;
 	-webkit-box-orient: vertical;
}
.newsBox_right {
	margin: 0 0 20px 0;
}
.main_sub{
	display: flex;
}
.main_sub_title {
	font-size: 16px;
	color: #0b318f;
	font-weight: bold;
	margin-bottom: 15px;
}

.new_list{
	/*margin-left: 20px;*/
}
.new_list li{
	box-sizing: border-box;
	width: 360px;
	padding: 10px 10px;
	overflow: hidden;
	background: rgba(11,49,143,.1);
	margin-bottom: 8px;
	cursor: pointer;
	height:84px;
}

.newsBox_right li {
	padding: 8px 10px;
	height: 38px;
}

.new_list li:last-child{
	margin-bottom: 0;
}
.new_list li:hover,.new_list li.bg:hover{
	background: #0b318f;
}
.new_list li:hover .news_title,.new_list li:hover .news_date,.new_list li:hover .news_main{
	color: #fff;
	transform: scale(1.05,1.05);
	-webkit-transform: scale(1.05,1.05);
	-moz-transform: scale(1.05,1.05);
	-o-transform: scale(1.05,1.05);
	-ms-ransform: scale(1.05,1.05);
}
.new_list .news_title{
	width: 260px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #333;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-ransform: scale(1,1);
	font-size: 14px;
}
.new_list .news_date{
	width: 64px;
	color: #666;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-ransform: scale(1,1);
}
.new_list .news_head{
    overflow: hidden;
    margin-bottom: 5px;
}
.new_list .news_main{
    height: 37px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.restBox .duty{
	box-sizing: border-box;
	padding-left: 30px;
	width: 376px;
	height: 188px;
	border-radius: 5px;
	border: 1px solid #eee;
	/*background: url(../img/duty_icon.png) right 20px bottom -4px/82px 92px #ffdbcd no-repeat;*/
	background: url(../img/index_dutyBg.jpg) 0 0/376px 188px no-repeat;
	cursor: pointer;
}
.restBox .duty:hover{
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
	background-color: #ffd7c7;
}
.duty_title{
	font-size: 24px;
	color: #dd3047;
	line-height: 82px;
}
.duty_main{
	color: #333;
	line-height: 24px;
}
.restBox .magazine{
	box-sizing: border-box;
	padding-left: 30px;
	width: 376px;
	height: 188px;
	border-radius: 5px;
	margin-top: 20px;
	border: 1px solid #d7d3bf;
	background: url(../eng-img/index_magBg.jpg) 0 0/376px 188px no-repeat;
	cursor: pointer;
}
/*.restBox .magazine:hover{*/
	/*box-shadow: 0 0 10px 0 rgba(0,0,0,.2);*/
	/*background-color: #fbf8e7;*/
/*}*/
/*.magazine_title img{*/
	/*width: 154px;*/
	/*margin-top: 10px;*/
	/*!*margin-left: 10px;*!*/
	/*vertical-align: bottom;*/
/*}*/
/*.magazine_title span{*/
	/*margin-left: 20px;*/
	/*font-size: 18px;*/
	/*color: #a02a2a;*/
/*}*/
/*.magazine_list{*/
	/*margin-top: 6px;*/
/*}*/
/*.magazine_list li{*/
	/*line-height: 28px;*/
/*}*/
/*.magazine_list span{*/
	/*display: inline-block;*/
	/*width: 4px;*/
	/*height: 4px;*/
	/*margin-right: 10px;*/
	/*border-radius: 50%;*/
	/*background-color: #333;*/
	/*vertical-align: 3px;*/
/*}*/
/*.magazine_list a{*/
	/*font-size: 14px;*/
	/*color: #333;*/
/*}*/
/*.magazine_list a:hover{*/
	/*text-decoration: underline;*/
	/*color: #0b318f;*/
/*}*/
.subordinate_list {
	overflow: hidden;
	margin-top: -10px;
}
.subordinate_list li{
	box-sizing: border-box;
	margin: 6px 20px;
	float: left;

}
.subordinate_list li a{
	display: block;
	width: 258px;
	height: 40px;
	border-radius: 27px;
	border: 1px solid #0b318f;
	text-align: center;
	line-height: 40px;
	font-size: 12px;
	color: #0b318f;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 0 8px;
	box-sizing: border-box;

}
.subordinate_list li a:hover{
	background-color: #0b318f;
	color: #fff;
	-webkit-animation: pulse 1s ease-out 1;
	font-size: 11px;
}
.subordinate_list li a.long:hover {
	width: 300px;
	margin-left: -21px;
	margin-right: -21px;
	font-size: 11px;
}

.footBox{
	width: 100%;
	background: #0b318f;
	height: 145px;
}
.footBox .foot{
	width: 1200px;
	padding-top: 20px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.footBox .qrodeBox{
	margin-left: 10px;
	width: 222px;
}
.footBox .qrode{
	margin: 0 15px;
	text-align: center;
}
.footBox .qrode img{
	width: 78px;
	height: 78px;
}
.footBox .qrode p{
	width: 102px;
	text-align: center;
	height: 44px;
	line-height: 44px;
	color: #fff;
}
.footBox .registerBox{
	margin-right: 10px;
	color: #fff;
	line-height: 24px;
	margin-top: 18px;
}
.footBox .contactBox{
	margin-top: 10px;
	margin-left: 24px;
}
.footBox .contactBox li{
	box-sizing: border-box;
	padding: 5px 10px;
}
.footBox .contactBox li:hover{
	background: rgba(255,255,255,.1);
}
.footBox .contactBox .icon{
	width: 26px;
	height: 26px;
	margin-right: 20px;
	vertical-align: middle;
	background-color: #fff;
	border-radius: 50%;
}
i.icon_email{
	background: url(../img/email.png) 0 0/26px 26px no-repeat;
}
i.icon_fax{
	background: url(../img/fax.png) 0 0/26px 26px no-repeat;
}
i.icon_phone{
	background: url(../img/phone.png) 0 0/26px 26px no-repeat;
}

i.icon_home{
	background: url(../img/home.png) 0 0/26px 26px no-repeat;

}
.footBox .contactBox span{
	color: #fff;
}
.footBox .contactBox li:hover .foot_icon{
	background-color: #ffe100;
}
.footBox .contactBox li img{
	width: 116px;
	margin-left: -4px;
	vertical-align: -6px;
}


/*内页*/
.bannerBox{
	width: 100%;
	height: 240px;
}
.banner_about{
	background: url(../eng-img/banner_about.jpg) center center no-repeat;
}
.banner_area{
	background: url(../eng-img/banner_area.jpg) center center no-repeat;
}
.banner_news{
	background: url(../eng-img/banner_news.jpg) center center no-repeat;
}
.banner_culture{
	background: url(../eng-img/banner_culture.jpg) center center no-repeat;
}
.banner_duty{
	background: url(../eng-img/banner_duty.jpg) center center no-repeat;
}
.banner_join{
	background: url(../eng-img/banner_join.jpg) center center no-repeat;
}
.banner_contact{
	background: url(../eng-img/banner_contact.jpg) center center no-repeat;
}
.banner_map{
	background: url(../eng-img/banner_map.jpg) center center no-repeat;
}

.banner_subordinate{
	background: url(../eng-img/banner_subordinate.jpg) center center no-repeat;
}

.mainBox{
	width: 1200px;
	margin: 20px auto;
	overflow: hidden;
	padding: 0 20px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 5px;
	min-height: 385px;
	display: flex;
}
.sub_nav{
	width: 300px;
	margin-right: 30px;
	margin-bottom: 30px;
}
.sub_nav .title{
	line-height: 80px;
}
.sub_nav li{
	box-sizing: border-box;
	width: 238px;
	background: #f4f4f4;
	cursor: pointer;
	transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-out;
}
.sub_nav li a{
	display: block;
	box-sizing: border-box;
	margin: 0 10px;
	padding-left: 14px;
	height: 46px;
	line-height: 46px;
	font-size: 13px;
	color: #333;
	border-bottom: 1px solid #dce2e9;
}


.sub_nav li a.last{
	border-bottom: 0;
}





.sub_nav li span{
	margin-right: 14px;
}
.sub_nav li.active,.sub_nav li:hover{
	background: #0b318f;
	width: 266px;
}
.sub_nav li.active .sub_nav_a,.sub_nav li:hover .sub_nav_a{
	color: #fff;
	border-bottom: none;
	padding-left: 50px;
}
.sub_title{
	line-height: 50px;
	color: #0b318f;
	font-size: 20px;
}
.main_containBox{
	margin-bottom: 20px;
}
.main_contain{
	width: 830px;
}

/*新闻*/
.main_contain .news_list li{
	overflow: hidden;
	padding: 20px 0;
	border-bottom: 1px solid #e5e5e5;
}
.main_contain .news_list li:first-child{
	padding-top: 0;
}
.main_contain .news_list .new_date{
	width: 80px;
	height: 80px;
	background: url(../img/line1.png) center center/80px 80px #e5e5e5;
	margin-right: 20px;
	text-align: center;
	border-radius: 5px;
	position: relative;
}
.main_contain .news_list p.p1{
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 16px;
	color: #0b318f;
}
.main_contain .news_list p.p2{
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 14px;
	color: #0b318f;
}
.main_contain .news_list .new_containBox{
	width: 730px;
	cursor: pointer;
}
.main_contain .news_list .new_title{
	font-size: 18px;
	color: #333;
	line-height: 30px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	color:#0b318f;
}
.main_contain .news_list .new_contain{
	margin-top: 10px;
	color: #666;	
	line-height: 20px;
}
.main_contain .news_list .new_contain i{
	width: 18px;
	height: 15px;
	background: url(../img/more.png) left bottom/14px 12px no-repeat;
	margin-left: 10px;
}
.main_contain .news_list .new_containBox:hover .new_title{
	color: #0b318f;

}
.main_contain .news_list .new_containBox:hover .new_contain{
	text-decoration: underline;
}
.pagination{
	margin-top: 20px;
	overflow: hidden;
}
.pagination li{
	float: left;
	margin-right: 10px;
}
.pagination a{
	display: block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	color: #868686;
	background-color: #f4f4f4;
	border: 1px solid #e5e5e5;
}
.pagination a.active,.pagination a:hover{
	background-color: #0b318f;
	color: #fff;
}
.pagination a.previous{
	background: url(../img/previous.png) center center/17px 14px #f4f4f4 no-repeat;
}
.pagination a.previous:hover{
	background: url(../img/previous_active.png) center center/17px 14px #0b318f no-repeat;
}
.pagination a.next{
	background: url(../img/next.png) center center/17px 14px #f4f4f4 no-repeat;
}
.pagination a.next:hover{
	background: url(../img/next_active.png) center center/17px 14px #0b318f no-repeat;
}
.pagination a.unable{
	opacity: .5;
	cursor: default;
}
.pagination a.unable:hover{
	background: url(../img/previous.png) center center/17px 14px #f4f4f4 no-repeat;
}

.pagination a.unableNext{
	opacity: .5;
	cursor: default;
}
.pagination a.unableNext:hover{
	background: url(../img/next.png) center center/17px 14px #f4f4f4 no-repeat;
}



.yearBox{
	height: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}
.yearBox span{

}
.yearBox select{
	width: 140px;
    height: 30px;
    background: #fff;
    border-color: #e7e7e7;
    color: #6f6f6f;
}
.news_page2 .news_list li:first-child{
	padding-top: 20px;
}

/*关于宁兴*/
.tabBox{
	overflow: hidden;
	margin-bottom: 20px;
}
.tab{
	float: left;
	width: 140px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	color: #0b318f;
	border-radius: 20px;
	border: 1px solid #0b318f;
	margin-right: 20px;
	cursor: pointer;
}
.tab.active,.tab:hover{
	background: #0b318f;
	color: #fff;
}
/*.tab_list{*/
	/*display: none;*/
/*}*/
#directorate{
	display: block;
}
.tab_list li{
	padding: 20px 0;
	border-bottom: 1px solid #e5e5e5;	
}
.tab_list .identity{
	color: #0b318f;
}	
.tab_list .identity span{
	font-size: 14px;
	display: inline-block;
}
.tab_list .identity span.s1{
	width: 208px;
}
.tab_list .identity span.s2{
	width: 148px;
}
.tab_list .identity span.s3{
	width: 60px;
}
.tab_list .identity span.s4{
	width: 148px;
}
.tab_list .introduction{
	color: #666;
	margin-top: 10px;
	line-height: 20px;
}
.paragraph .line{
	width: 830px;
	height: 42px;
	background-color: #f9f9f9;
}
.paragraph .line_bg{
	background-color: #deebf7;
}
.paragraph .half{
	box-sizing: border-box;
	width: 680px;
	line-height: 42px;
	padding-left: 10px;
	font-size: 14px;
	color: #333;
}
.paragraph .half span{
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #333;
    vertical-align: 2px;
}
.honor_list{
	margin-bottom: 30px;
}
.historyBox{
	overflow: hidden;
}
.historyBox .beeline{
	width: 2px;
	height: 2010px;
	margin-top: 20px;
	margin-left: 20px;
	background-color: #c5cad9;
}
.historyBox li{
	overflow: visible;
}
.historyBox li img{
	width: 22px;
	float: left;
	margin-left: -12px;
	margin-top: 15px;

}
.histroy_mianBox{
	margin-left:10px;
	margin-bottom: 18px;
}
.histroy_mianBox span{
    display: inline-block;
    float: left;
    margin-top: 15px;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-right: 10px solid #406eb3;
}
.light .histroy_mianBox span{
    border-right: 10px solid #deebf7;
}
.histroy_mian{
	box-sizing: border-box;
	width: 600px;
	border-radius: 10px;
	padding: 0 20px 10px 20px;
	background-color: #406eb3;
	margin-left: 10px;
}
.light .histroy_mian{
	background-color: #deebf7;
}
.histroy_mian p.time{
	font-size: 16px;
	color: #ffe100;
	line-height: 40px;
	text-indent: 0;
}
.light .histroy_mian p.time{
	color: #0b318f;
}
.histroy_mian p.event{
	color: #fff;
	line-height: 20px;
}
.light .histroy_mian p.event{
	color: #333;
}

/*经营领域*/
.paragraph p{
	font-size: 14px;
	color: #333;
	line-height: 22px;
	text-indent: 2em;
	text-align: justify;
}
.paragraph_company p{
	font-size: 14px;
	color: #333;
	line-height: 22px;

	text-align: justify;
}

.paragraph p.futitle
{
	color: #0b318f;
	font-weight: bold;
	margin: 10px 0;
}

.subsidiary {
	margin-top: 40px;
}
.subsidiary_title{
	font-size: 16px;
	color: #0b318f;
	font-weight: normal;
	margin-bottom: 10px;
}
.subsidiary li {
	line-height: 30px;
	color: #333;
}

.subsidiary li a{
	line-height: 30px;
	color: #333;
}
.subsidiary li a:hover{
	color: #0b318f;
	text-decoration: underline;
}
.subsidiary li a.unabled{
	cursor: default;
}
.subsidiary li a.unabled:hover{
	text-decoration: none;
	color: #333;
}
.subsidiary li.subs_li {
	float: left;
	width: 400px;
}
.subsidiary li.subs_li a {
	display: block;

}

/*文化*/
.maga_list{
	overflow: hidden;
}
/*.maga_list li{
	overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}
.maga_list li:first-child{
	padding-top: 0;
}
.maga_list .new_date {
    width: 68px;
    height: 44px;
    background: #e5e5e5;
    margin-right: 20px;
    text-align: center;
}
.maga_list .new_date p.p1{
	font-size: 16px;
    color: #333;
    height: 22px;
    line-height: 26px;
}
.maga_list .new_date p.p2{
	font-size: 12px;
	color: #666;
}
.maga_list .new_title{
	line-height: 44px;
	font-size: 14px;
}*/
.maga_list li{
	float: left;
	margin: 13px;
	width: 178px;
	position: relative;
	cursor: pointer;
	border: 1px solid #e5e5e5;
}
.maga_list li img{
	width: 178px;
	height: 243px;
}
.maga_list li .journal{
	box-sizing: border-box;
	padding: 0 10px;
	position: absolute;
	width: 178px;
	height: 44px;
	top: 199px;
	left: 0;
	color: #fff;
	line-height: 24px;
	background-color: rgba(0,0,0,.4);
}
.maga_list li .journal span{
	margin-left: 15px;
}
.maga_list .cover{
	position: absolute;
	left: 0;
	top: 0;
	width: 178px;
	height: 243px;
	text-align: center;
	line-height: 243px;
	color: #fff;
	font-size: 14px;
	background-color: rgba(11,49,143,.7);
	display: none;
}
.maga_list .date{
	box-sizing: border-box;
	position: absolute;
	padding-left: 10px; 
	left: 0;
	top: 0;
	width: 88px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	background-color: rgba(0,0,0,.4);
}

.ns_cultureList li{
	overflow: hidden;
	padding: 10px 20px;
	background-color: #f9f9f9;
}
.ns_cultureList li.li_bg{
	background-color: #deebf7;
}
.ns_cultureList .cul_left{
	width: 110px;
	color: #0b318f;
	font-size: 14px;
	font-weight: bold;
	border-right: 1px dashed #b0c7dd;
}
.ns_cultureList .cul_right{
	width: 658px;
	margin-left: 20px;
	font-size: 14px;
	color: #333;
}
.ns_cultureList img{
	width: 60px;
	margin-right: 20px;
	margin-top: 9px;
}
.ns_cultureList span{
	font-size: 14px;
	line-height: 22px;
	color: #333;
}
.ns_cultureList .first_li{
	line-height: 66px;
}



.ns_cul_title{
	font-size: 16px;
	font-weight: bold;
	color: #0b318f;
	margin: 20px 0 10px 0;

}
.ns_cul_main {
	overflow: hidden;
}
.ns_cul_main img{
	width: 96px;
	margin-right: 20px;
}
.ns_cul_main span{
	float: left;
	display: block;
	font-size: 14px;
	line-height: 22px;
	width: 680px;
	color: #333;
}

/*社会责任*/
.duty_list li{
	margin-bottom: 50px;
	background-color: #fff;
}
.imgBox{
	/*margin: 10px 0;*/
	text-align: center;
}
.imgBox img{
	max-width: 100%;
}


.ns_cultureList .imgBox img {
	width: 870px;
	/*height: 200px;*/
}
.ns_cultureList .imgBox img:last-child {
	margin: 0;
}
.duty_main{
	width: 100%;
	line-height: 22px;
	font-size: 14px;
	color: #333;
	text-indent: 2em;
}
.ns_cul_title{
	font-size: 16px;
	font-weight: bold;
	color: #0b318f;
	margin: 20px 0 10px 0;

}
.ns_cul_main {
	overflow: hidden;
}
.ns_cul_main img{
	width: 96px;
	margin-right: 20px;
}
.ns_cul_main span{
	float: left;
	display: block;
	font-size: 14px;
	line-height: 22px;
	width: 680px;
	color: #333;
}
/*联系我们*/
.connectBox{
	padding: 20px;
	border-radius: 10px;
	background-color: #f4f4f4;
}
.connectBox p{
	color: #333;
	line-height: 24px;
}
.connectBox .link {
	color: #333;
	font-size: 14px;
	line-height: 36px;
}
.connectBox img.icon {
	width: 18px;
	margin-right: 10px;
	margin-top: -3px;
}
.opinoinBox{
	margin-bottom: 20px;
}
.opinoinBox span{
	font-size: 14px;
	color: #333;
	height: 36px;
	margin-right: 10px;
}
.opinoinBox select{
	width: 200px;
    height: 30px;
    background: #fff;
    border-color: #e7e7e7;
    color: #6f6f6f;
}
.opinoin_title{
	margin-bottom: 20px;
}
.opinoin_title span{
	font-size: 14px;
	color: #333;
	display: inline-block;
	width: 97px;
}
.opinoin_title input{
	width: 384px;
	height: 30px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    color: #666;
    padding: 0 10px;
}
.opinoin_main{
	margin-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #e5e5e5;
}
.opinoin_main span{
	vertical-align: 98px;
	font-size: 14px;
	color: #333;
	display: inline-block;
	width: 97px;
}
.opinoin_main textarea{
	width: 384px;
	height: 100px;
	border-color: #fff;
	border: 1px solid #e7e7e7;
    border-radius: 5px;
    color: #666;
    padding: 10px;
}
.person_contactBox span{
	display: inline-block;
	width: 97px;
}


.person_contactBox .person_tit{
	font-size: 14px;
	color: #333;
	margin: 20px 0;
}
.opinoin_title span.mail{
	letter-spacing: 2.5px;
}
.submitBtn button{
	width: 142px;
	height: 42px;
	border-radius: 5px;
	background: #0b318f;
	color: #fff;
	cursor: pointer;
	transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-out;
}
.submitBtn button:hover{
	transform: scale(1.05,1.05);
	-webkit-transform: scale(1.05,1.05);
	-moz-transform: scale(1.05,1.05);
	-o-transform: scale(1.05,1.05);
	-ms-ransform: scale(1.05,1.05);
	box-shadow: 0 0 4px rgba(0,0,0,.5);
	color: #ffe100;
}

/*新闻正文*/
.path{
	font-size: 14px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
	height: 60px;
	line-height: 100px;
	color: #333;
}
.path i{
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #0b318f;
	border-radius: 50%;
}
.path a{
	margin: 0 10px;
	color: #333;
}
.path a:hover{
	color: #0b318f;
	text-decoration: underline;
}
.path span{
	margin: 0 10px;
	color: #0b318f;
}
.editBox {
	margin-top: 10px;
}
.editBox .edit_tit{
	margin: 20px 0;
	font-weight: bold;
	font-size: 20px;
	color: #333;
}
.editBox .edit_time{
	height: 30px;
	color: #666;
	border-bottom: 1px dashed #e5e5e5;
}
.editBox .edit_text{
	padding: 10px 0;
}
.editBox p{
	text-indent: 2em;
	font-size: 14px;
	color: #333;
	line-height: 22px;
	margin: 10px 0;
}
.editBox img{
	max-width: 772px;
}

/*网站地图*/
.map_list{
	min-height: 140px;
}
.map_list p{
	font-size: 18px;
	color: #0b318f;
	margin: 10px 0;
	margin-right: 50px;
}
.map_list ul{
	padding-left: 38px;
}
.map_list span{
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #666;
	vertical-align: 2px;
	margin-right: 10px;
}
.map_list a{
	line-height: 24px;
	color: #666;
}
.map_list a:hover {
	color: #0b318f;
	text-decoration: underline;
}
/*子菜单*/
.third_nav {
	display: none;
}
li.active .third_nav{
	display: block;
}
.third_nav li{
	width: 266px;
	background:#7fbaf1;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.third_nav li:hover {
	background:#7fbaf1;
}

.third_nav li a{
	border-bottom: 0;
	color: #fff;
	padding-left: 102px;
	height: 30px;
	line-height: 30px;
	font-size: 12px;
}
.third_nav li a.current{
	color: #ffe100;
}
.third_nav li a:hover {
	color: #ffe100;
}

/*年份*/
.yearBox li{
	float: left;
	margin-right: 10px;
}
.yearBox a{
	display: block;
	width: 44px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	color: #868686;
	background-color: #e5e5e5;
	border: 1px solid #e5e5e5;
}
.yearBox a:hover,.yearBox a.active{
	background-color: #0b318f;
	color: #fff;
}

.yearBox a.previous{
	background: url(../img/previous.png) center center/17px 14px #e5e5e5 no-repeat;
}
.yearBox a.previous:hover{
	background: url(../img/previous_active.png) center center/17px 14px #0b318f no-repeat;
}
.yearBox a.next{
	background: url(../img/next.png) center center/17px 14px #e5e5e5 no-repeat;
}
.yearBox a.next:hover{
	background: url(../img/next_active.png) center center/17px 14px #0b318f no-repeat;
}
.yearBox a.unable{
	opacity: .5;
	cursor: default;
}
.yearBox a.unable:hover{
	background: url(../img/previous.png) center center/17px 14px #f4f4f4 no-repeat;
}


.yearBox a.unableNext{
	opacity: .5;
	cursor: default;
}
.yearBox a.unableNext:hover{
	background: url(../img/next.png) center center/17px 14px #f4f4f4 no-repeat;
}


/*加入宁兴*/
.positionBox li{
	background-color: #f9f9f9;
	padding: 10px 20px;
	border-radius: 5px;
	margin-bottom: 20px;
	overflow: hidden;
}
.positionBox li.bg{
	background-color: #deebf7;
}
.position_title{
	/*border-bottom: 1px solid #ececec;*/
}
/*.positionBox li.bg .position_title{*/
	/*border-bottom: 1px solid #cde0f3;*/
/*}*/
.position_title a{
	font-size: 16px;
	color: #333;
	font-weight: bold;
	border-bottom: 10px;
}
.position_title a:hover{
	color: #0b318f;
}
.position_title span{
	margin-right: 40px;
	color: #666;
	line-height: 40px;
}
.position_title em{
	color: #0b318f;
}
.position_detail{
	padding: 10px 0;
	border-bottom: 1px solid #ececec;
}
/*.positionBox li.bg .position_detail{*/
	/*border-bottom: 1px solid #cde0f3;*/
/*}*/
.position_detail p{
	line-height: 30px;
	text-indent: 0;
}
.btnBox button{
	width: 100px;
	height: 40px;
	border-radius: 5px;
	margin-right: 20px;
	margin-top: 10px;
	color: #fff;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}

.btnBox{
	margin-top: 2px;
}

.btnBox button{
	background-color: #2c76d2;
}
/*.btnBox button:last-child{*/
	/*background-color: #0b318f;*/
/*}*/
.btnBox button:hover{
	transform: scale(1.05,1.05);
	-webkit-transform: scale(1.05,1.05);
	-moz-transform: scale(1.05,1.05);
	-o-transform: scale(1.05,1.05);
	-ms-ransform: scale(1.05,1.05);
	box-shadow: 0 0 4px rgba(0,0,0,.5);
	color: #ffe100;
}

.job_title{
	font-size: 22px;
	font-weight: bold;
	color: #0b318f;
	line-height: 60px;
}
.job_detail{
	background-color: #deebf7;
	border-radius: 5px;
	padding: 10px 20px;
	overflow: hidden;
}
.job_detail li{
	float: left;
	width: 260px;
	line-height: 30px;
	font-size: 14px;
	color: #333;
}
.job_main{
	margin-top: 20px;
}
.job_subtitle{
	font-size: 14px;
	color: #0b318f;
	line-height: 38px;
}
.jobconnectBox{
	padding: 20px;
	border-radius: 10px;
	background-color: #deebf7;
}
.jobconnectBox .link {
	color: #333;
	font-size: 14px;
	line-height: 36px;
}
.jobconnectBox img.icon {
	width: 18px;
	margin-right: 10px;
	margin-top: -3px;
}


.sub_navs{
	width: 300px;
	margin-right: 30px;
	margin-bottom: 20px;
}
.sub_navs .title{
	line-height: 80px;
}
.sub_navs li{
	box-sizing: border-box;
	width: 270px;
	background: #f4f4f4;
	cursor: pointer;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.sub_navs li a{
	display: block;
	box-sizing: border-box;
	margin: 0 10px;
	padding-left: 14px;
	height: 46px;
	line-height: 46px;
	font-size: 12px;
	color: #333;
	border-bottom: 1px solid #dce2e9;
}
.sub_navs li:last-child a{
	border-bottom: 0;
}


.sub_navs li a.last{
	border-bottom: 0;
}






/*下属企业*/
.subordinateBox .sub_navs li{
	width: 250px;
}
.subordinateBox .sub_navs a{
	padding:10px 0 10px 10px;
	overflow: hidden;
	height: auto;
}
.subordinateBox  .sub_navs li span {
	/*margin-right: 10px;*/
}
.subordinateBox .sub_navs li .icon_left{
	margin-right: 10px;
	display: inline-block;
	line-height: 20px;
}
.subordinateBox .sub_navs li .text_right{
	display: inline-block;
	width:200px;
	line-height: 20px;

}

.subordinateBox .sub_navs li.active, .subordinateBox .sub_navs li:hover {
	background: #0b318f;
	width: 278px;
}
.subordinateBox .sub_navs li.active .sub_navs_a,
.subordinateBox .sub_navs li:hover .sub_navs_a {
	color: #fff;
	border-bottom: none;
	padding-left: 25px;
}
/*边距*/
.borderMargin
{
	margin:  0px 65px;
}
.borderMarginFu
{
	margin:  0px 35px;
}
.borderMarginZheng
{
	margin:  0px 80px;
}

.borderMarginAreaSteel
{
	margin:  0px 80px;
}


.paragraph .signImg{
	float: right;
	/*width: 140px;*/
	margin-right: 40px;
	margin-top: 35px;
}
.paragraph .signImg img{
	width: 140px;
	vertical-align: -30px;
}

.speechBox{
	width: 580px;
	margin-left:20px;
}

.card {
	box-sizing: border-box;
	float: left;
	width: 395px;
	padding: 20px;
	margin-right: 20px;
	border: 1px dashed #b0c7dd;
	border-radius: 5px;
	margin-bottom: 20px;
	min-height: 420px;
}

.half-imgBox{
	width: 442px;
	margin-right: 20px;
}
.half-imgBox img{
	width: 442px;
	border: 1px dashed #b0c7dd;
	border-radius: 5px;
}
.half-textBox {
	width: 300px;
	text-align:justify
}
.clear{
	clear:both;
}


.duty_list .imgBox{
	text-align: center;
}
.duty_list .imgBox img{
	width: 672px;
}



.sub_nav li:last-child a{
	border-bottom: 0;
}


.restBox .rest{
	box-sizing: border-box;
	width: 200px;
	height: 130px;
	border-radius: 5px;
	border: 1px solid #eee;
	cursor: pointer;
	margin: 0 20px;
}
.restBox .duty{
	background: url(../eng-img/index_dutyBg.jpg) 0 0/200px 130px no-repeat;
	cursor: pointer;
}
.restBox .rest:hover{
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
	background-color: #ffd7c7;
}
.restBox .magazine{
	padding-left: 10px;

	background: url(../eng-img/index_magBg.jpg)  0 0/200px 130px no-repeat;
}
.restBox .advertising{
	background: url(../eng-img/index_advertising.jpg) 0 0/200px 130px no-repeat;
}



.restBox .magazine:hover{
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
	background-color: #fbf8e7;
}
.magazine_title img{
	width: 86px;
	margin-top: 10px;
	vertical-align: bottom;
}
.magazine_title span{
	margin-left: 20px;
	font-size: 16px;
	color: #a02a2a;
}
.magazine_list{
	margin-top: 10px;
}
.magazine_list li{
	line-height: 20px;
}
.magazine_list span{
	display: inline-block;
	width: 4px;
	height: 4px;
	margin-right: 8px;
	border-radius: 50%;
	background-color: #333;
	vertical-align: 3px;
}
.magazine_list a{
	font-size: 12px;
	color: #333;
}
.magazine_list a:hover{
	text-decoration: underline;
	color: #0b318f;
}
.restBox .culture{
	background: url(../eng-img/index_culture.jpg) 0 0/200px 130px no-repeat;
}
.restBox .leader_mail{
	background: url(../eng-img/index_mailBg.jpg) 0 0/200px 130px no-repeat;
}
.restBox .join{
	background: url(../eng-img/index_joinBg.jpg) 0 0/200px 130px no-repeat;
}



.new_list li.bg{
	background: #cad5e8;
}

/*集团新闻*/
.companynews_list li{
	overflow: hidden;
	padding: 20px 0;
	border-bottom: 1px solid #e5e5e5;
}
.thumbnail{
	margin-right: 20px;
}
.thumbnail img{
	width: 162px;
	height: 90px;
}
.companynews_list .new_contentBox{
	width: 648px;
}
.companynews_list .new_title{
	font-size: 18px;
	color: #333;
	line-height: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.new_contentBox p{
	color: #666;
	line-height: 20px;
}
.companynews_list .new_contain{
	color: #666;
	line-height: 20px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


/*宁兴风采*/
.mien_list li{
	background-color: #f9f9f9;
	padding: 10px 20px;
	border-radius: 5px;
	margin-bottom: 20px;
}
.mien_list li.blue{
	background-color: #deebf7;
}
.mien_list li:hover{
	cursor: pointer;
}
.mien_list li a{
	display: block;
}
.mien_title{
	color: #0b318f;
	font-size: 16px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.mien_date{
	font-size: 12px;
	color: #666;
	line-height: 30px;
}
.mien_content{
	font-size: 14px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.mien_content:hover{
	text-decoration: underline;
}
/*搜索*/
.searchIcon {
	line-height: 70px;
	margin-left: 30px;
}
.searchIcon img,.searchInput img{
	width: 20px;
	cursor: pointer;
}
.searchIcon img:hover,.searchInput img:hover {
	opacity: .7;
}
.searchBox {
	margin-right: 20px;
	padding: 12px;
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0;
	transform-origin: right center;
	transform: scale3d(0, 0, 0);
	transition: transform .3s, opacity .3s;
}
.searchBox.show {
	transform: scale3d(1, 1, 1);
	opacity: 1;
}
.searchInput {
	box-sizing: border-box;
	width: 400px;
	height: 48px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 0 20px;
	outline: 0;
}
.searchInput.focus {
	border: 1px solid #afd8ff;
}
.searchInput input {
	box-sizing: border-box;
	width: 330px;
	height: 46px;
	padding: 10px 0;
	font-size: 14px;
	color: #333;
	outline: 0;
}
.searchInput input:focus {
	box-shadow: none;
}
.searchInput img {
	margin-left: 4px;
	vertical-align: -5px;
}
.searchBox .close {
	padding: 13px;
	margin-left: 20px;
	cursor: pointer;
}
.searchBox .close img {
	width: 20px;
}
.searchBox .close:hover {
	opacity: .7;
}
.coverBlack {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 74px;
	background: #000;
	opacity: .4;
	z-index: 10;
	display: none;
}
.headBox .menuBox.hide {
	opacity: 0;
	transform: scale3d(0, 0, 0);
}

/*搜索结果*/
.sr-title.title {
	font-size: 20px;
	font-weight: 400;
	line-height: 90px;
}
.sr-searchBox .searchInput {
	width: 830px;
	border-width: 2px;
}
.sr-searchBox .searchInput input {
	width: 756px;
	height: 44px;
}
.sortBox {
	margin: 10px;
	overflow: hidden;
}
.sortBox span {
	font-size: 14px;
	color: #333;
}
.sortBox span.date {
	cursor: pointer;
}
.sortBox em {
	font-size: 14px;
	color: #0b318f;
}
.sortBox i.icon {
	width: 8px;
	height: 10px;
}
.sortBox i.date_up {
	background: url(../img/date_up.png) 0 0/8px 10px no-repeat;
}
.sortBox i.date_down {
	background: url(../img/date_down.png) 0 0/8px 10px no-repeat;
}
.result_empty {
	margin: 10px;
	font-size: 14px;
}
.result_empty em {
	font-size: 14px;
	color: red;
}
.sr-listBox li {
	box-sizing: border-box;
	padding: 20px;
	width: 830px;
	border-radius: 5px;
	background: #f8f8f8;
	border-bottom: 2px solid #e5e5e5;
}
.sr-listBox li .head {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}
.sr-listBox li .head  em{
	font-size: 18px;
	font-weight: bold;
	color: #ff0000;
	margin-bottom: 10px;
}
.sr-listBox li .text {
	font-size: 14px;
	color: #666;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.sr-listBox li .text em{
	font-size: 14px;
	color: #ff0000;



}
.sr-listBox li .time {
	color: #666;
	font-size: 14px;
	margin-bottom: 10px;
}

.steelImg {
	width: 490px;
	border: 1px dashed #b0c7dd;
	border-radius: 5px;
	margin-left: 10px;
}


/*视频播放*/
.video-p{
	width:430px;
	height:300px;
	margin-top: 10px;
	background-color: #e9eeee;
	display:flex;
	justify-content: space-around;
	text-align: center;
	margin: 10px;
}
.video1,.video2{
	width:615px;
	height:160px;
}
.img-play{
	margin-top: 5px;
}
.img-play:hover{
	cursor: pointer;
}
.caption{
	float: right;
	margin-top: 65px;
	padding-right: 200px;
}
.caption1{
	float:right;
	margin-top: 65px;
	padding-right: 265px;
	/*width: 50%*/
}
.caption span,.caption1 span{
	color: #fff;
}
.video1{
	background-image: url(../image/v1.jpg);
}
.video2{
	background-image: url(../image/v2.jpg);
}
#videobox,#videobox1,#videobox2,#videobox3,#videobox4{
	width: 830px;
	height: 500px;
	background-color: #fff;
	border: 1px solid #ddd;
	position: fixed;
	top: 50%;
	margin-top: -250px;
	left: 50%; margin-left: -250px;
	z-index: 999;
	display: none;
}
#closex,#closex1,#closex2,#closex3,#closex4{
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1000;
	display: block;
	width: 20px;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
}
