@charset "utf-8";
/* html{font-size:20px}

@media screen and (width: 1920px) {
      html { font-size: 100px;min-width: 100%;}
    } 
 @media screen and (min-width: 1024px) {
	html {font-size: 53.33333333px !important; }
}
@media screen and (min-width: 1366px) {
	html {font-size: 71.14583333px !important;}
}
@media screen and (min-width: 1280px) {
	html { font-size: 66.66666667px !important;}
}
@media screen and (min-width: 1440px) {
	html {  font-size: 75px !important;}
	}
@media screen and (min-width: 1600px) {
	html { font-size: 83.33333333px !important}
}
@media screen and (min-width: 1920px) {
	html {font-size: 100px !important;}
}  */

/* 移动端 */

 /* @media only screen and (min-width: 320px){
	   html {
	     font-size:16.666666667px !important;
	  }
	 }
	 @media only screen and (min-width: 640px){
	   html {
	     font-size: 33.33333333px !important;
	   }
   } 
     @media only screen and (min-width: 750px){
      html {
        font-size: 39.0625px !important;
      }
    } 
     @media only screen and (min-width: 1242px){
      html {
        font-size: 0.646875px !important;
      }
   } 
    @media only screen and (min-width:480px){
	   html{
		   font-size: 25px;
	   }
   }   */








body {
	margin: 0px;
	padding: 0px;
	font-family: "微软雅黑"; 
	font-size: 0.875rem;
}

/* CSS Document */

a:hover {
	color: #447fca
}

.three-d {
	/* 任务三、设置3D舞台布景 */
	-webkit-perspective: 200px;
	-moz-perspective: 200px;
	-ms-perspective: 200px;
	-o-perspective:200px;
	perspective: 200px;
	/*任务四、设置3D舞台布景过渡效果*/
	-webkit-transition: all .07s linear;
	-moz-transition: all .07s linear;
	-ms-transition: all .07s linear;
	-o-transition: all .07s linear;
	transition: all .7s linear;
	position: relative;
}

.three-d:not(.active):hover {
	cursor: pointer;
}


/*任务五、给不是当前状态的3D舞台的悬浮与聚焦状态设置变形效果*/

.three-d:not(.active):hover .three-d-box,
.three-d:not(.active):focus .three-d-box {
	-wekbit-transform: translateZ(-25px) rotateX(90deg);
	-moz-transform: translateZ(-25px) rotateX(90deg);
	-o-transform: translateZ(-25px) rotateX(90deg);
	-ms-transform: translateZ(-25px) rotateX(90deg);
	transform: translateZ(-25px) rotateX(90deg);
	/*    -webkit-transform:rotateX(90deg) translatez(-25px);*/
	/*   -webkit-transform:rotatex(90deg);*/
}

.three-d-box {
	/*任务六、给3D舞台中“.three-d-box”设置过渡与变形效果*/
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	-webkit-transform: translatez(-25px);
	-moz-transform: translatez(-25px);
	-ms-transform: translatez(-25px);
	-o-transform: translatez(-25px);
	transform: translatez(-25px);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	-o-pointer-events: none;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}


/*任务七、给导航设置3D前，与3D后变形效果*/

/* .front {
	-webkit-transform: rotatex(0deg) translatez(25px);
	-moz-transform: rotatex(0deg) translatez(25px);
	-ms-transform: rotatex(0deg) translatez(25px);
	-o-transform: rotatex(0deg) translatez(25px);
	transform: rotatex(0deg) translatez(25px);
}

.back {
	-webkit-transform: rotatex(-90deg) translatez(25px);
	-moz-transform: rotatex(-90deg) translatez(25px);
	-ms-transform: rotatex(-90deg) translatez(25px);
	-o-transform: rotatex(-90deg) translatez(25px);
	transform: rotatex(-90deg) translatez(25px);
	color: #FFE7C4;
}

.front,
.back {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	color: white;
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	-o-pointer-events: none;
	pointer-events: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
} */


/*任务八、设置导航当前状态与悬浮状态下的背景效果*/
.nav_list_li li .active,
.nav_list_li li a:hover ,
.nav_list_li li .active .front,
.nav_list_li li .active .back,
.nav_list_li li a:hover .front,
.nav_list_li li a:hover .back {
	/* background-color: #103887 !important; */
	background-color: rgba(57,78,119,0.8) !important;
	-webkit-background-size:5px 5px;
}

.nav_list_li ul {
	position: absolute;
	text-align: left;
	line-height:40px;
	font-size: 14px;
	width: 200px;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-ms-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform-origin: 0px 0px;
	-moz-transform-origin: 0px 0px;
	-ms-transform-origin: 0px 0px;
	-o-transform-origin: 0px 0px;
	transform-origin: 0px 0px;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	-ms-transform: rotateX(-90deg);
	-o-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
}

.splite{
	float: right;
	height: 22px !important;
	margin-top: 10px;
	width: 2px;
	background-color: #fff;
	vertical-align: middle;
}
/*任务九、显示下拉导航菜单，并其设置一个变形效果*/

.nav_list_li>li:hover ul {
	/*          display: block;*/
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	-o-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

input::-webkit-input-placeholder {
	/* WebKit browsers */
	font-size: 10px;
}

.jiansuo {
	font-size:12px;
	line-height: 16px;
}

.js_button {
	background-color: #447fca;
	padding: 2px 5px;
}

.t12_right img {
	width: 100%;
}

.zhongyaoxinwen h3 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
	font-family: "微软雅黑";
	color: #000;
}
.zhongyaoxinwen h3:hover{
	color: #447FCA;
}
.zhongyaoxinwen a{
	color: #333;
}
.zhongyaoxinwen a:hover{
	color: #447fca;
}
.zhongyaoxinwen h4 {
	font-size: 12px;
	color: #777;
	line-height: 20px;
	font-weight: 400;
	margin-top: 5px;
	font-family: "微软雅黑" !important;
	font-size: 14px !important;
}

.zhongyaoxinwen h5 p {
	float: left;
	line-height: 16px;
	color: #b1b1b1;
	font-weight: 400;
	margin-top: 5px;
}

.riqi {
	margin-left: 10px;
}

.zhongyaoxinwen li {
	margin-bottom: 20px;
	overflow: hidden;
	list-style: none;
}

.zhongyaoxinwen a {
	cursor: pointer;
}

.more_m {
	line-height: 20px !important;
	float: right;
	color: #447fca !important;
	font-size: 10px;
}

#msg_win {
	border: 10px solid #CCCCCC;
	background: #EAEAEA;
	width: 330px;
	position: absolute;
	right: 2px;
	margin: 0;
	display: none;
	overflow: hidden;
	z-index: 99;
	font-size: 13px;
}

#msg_win .icos {
	position: absolute;
	top: 2px;
	*top: 2px;
	right: 2px;
	z-index: 9;
}

.icos a {
	float: left;
	color: #833B02;
	margin: 1px;
	text-align: center;
	text-decoration: none;
	font-family: webdings;
}

.icos a:hover {
	color: #fff;
}

#msg_title {
	border-bottom: 1px solid #A67901;
	border-top:  1px solid #FFF;
	border-left: 1px solid #FFF;
	color: #FFFFFF;
	height: 25px;
	line-height: 25px;
	text-indent: 25px;
	text-align: center;
	background-color: #FF0000;
}

#msg_content {
	margin: 2px;
	width: 310px;
	height: 310px;
	overflow: hidden;
	line-height: 20px;
	padding: 20px;
	background-color: #FFFFFF;
}

#msg_content span {
	width: 96%;
	float: left;
	line-height: 12px;
	text-align: right;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.cl {
	clear: both;
}

.zz {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

.tc {
	text-align: center;
}

.jiac {
	font-weight: bold;
}

.cur {
	cursor: pointer;
}

img {
	border: 0px;
}

.top {
	height: 250px;
	width: 100%;
	background-color: #9EC3B8;
	/* background: url(banner_nc.png) center 30px no-repeat; */
	/* background: url(banner_nc.png) center 30px repeat-x; */
	background: url(banner_nc_2023_5.png) center 30px repeat-x;
	position: relative;
	top: 0;
	left: 0;
	background-size: 1920px;
	box-sizing: border-box;
}
/* .topBgImg{
	height: 210px;
	width: 100%;
	box-sizing: border-box;
	margin:0 auto;
	background: url("../image/banner.svg") 0 0 no-repeat;

} */
/* .bgImg{
	height: 210px;
	width: 1920px;
	background: url("../image/banner.svg") -10px 0 no-repeat;
	background-repeat: no-repeat;
	background-size: 1920px;
	box-sizing: border-box;
    margin:0 auto
} */

.dibu1 {
	float: left;
	width: 100%;
}

.zy3 {
	float: left;
	width: 100%;
}

.t1 {
	width: 100%;
	height: 30px;
	line-height: 30px;
	color: #999;
	background-color: #394E77;
	z-index: 12;
	/* opacity: 0.5;*/
} 

.t1 .t1_cont {
	width: 1200px;
	height:30px;
	margin-left: auto;
	margin-right: auto;
	font-weight: bold;
	color: white;
	font-family: "微软雅黑";
	
	/* float:right;
	color:#fff; */
}
.search{
	float: right;
	margin-left: 10px;
    margin-right: 10px;
    margin-top: 2px;
	position: relative;
	/* display: block;
	height:20px;
	border-radius: 10px; */
}
.search input{
	display: inline-block;
	width: 210px;
	border-radius: 15px;
	height: 25px;
	text-indent:15px;
	/* border: 1px solid ; */
	border:none;
	/* outline: none; */
}
.search input:focus{
	border:0px;
	border-color:white;
	border-radius: 15px;
	outline: none;
}
.search i{
	position: absolute;
	right: 15px;
	/* top:3px; */
	color:#0A2458;
	vertical-align: middle;
	line-height: 25px;
}
.fanhuiBtn{
	display: block;
	width:115px;
	text-align: center;
	margin-top: 2px;
	padding:0,15px;
	position: relative;
	color:#0A2458;
	background-color: rgba(255,255,255,0.5);
	border-radius: 20px; 
	height: 25px;
	line-height: 25px;
}
.fanhuiBtn i,.fanhuiBtn a{
	/* color:#0A2458 !important */
}

.t1 .t1_cont span {
	float: right;
	color: #fff;
}

.t1 .t1_cont span a {
	color: #fff;
	font-weight: normal;
	margin-left:5px;
	margin-right: 5px;
}

.t12 {
	height: 280px;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.t12_title {
	float: left;
	margin-left: 20px;
	margin-top: 35px;
	color: white;
}

.t12_title h4 {
	font-size: 18px;
	font-family: "微软雅黑";
	font-weight: 400;
}

.t12 .t12_right {
	width: 80px;
	padding-top: 40px;
	float: right;
	text-align: center;
	margin-right: 100px;
}

.t12 .t12_right span,
.t12 .t12_right p {
	padding: 0px 10px;
	font-size: 14px;
	color: #B10202;
	font-family: "微软雅黑";
}

.t12 .t12_right p {
	padding-top: 10px;
}

.top .top_nav {
	width: 100%;
	/*height: 243px;*/
	height: 43px;
	position: relative;
	/* background: url(nav_bg.jpg) repeat-x; */
	background-color: #0A2458;
	z-index: 99999999;
	position: absolute;
	bottom: 0;
}

.top .top_nav .nav_list {
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.nav_list .nav_list_li li {
	height: 43px;
	overflow: hidden;
	float: left;
	display: inline-block;
	/* background: url(nav_li_bg.jpg) no-repeat right center; */
}

.nav_list li .nav_a {
	display: block;
	float: left;
	width: 132px;
	height: 43px;
	line-height:  43px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-family: "微软雅黑";
	font-weight: 100;
}

.logo3 {
	float: right;
	height: 50px;
	width: 230px;
	margin-top: 80px;
}

.logo3 span {
	float: left;
	margin-top: 5px;
	width: 220px;
	margin-left: 10px;
}

.logo3 span a {
	color: #666;
}

.logo {
	width: 100px;
	height: 150px;
	float: right;
}

.logo2 {
	float: right;
	height: 50px;
	width: 214px;
	margin-top: 50px;
	margin-right: 10px;
	font-family: "微软雅黑";
	font-size: 14px;
	color: #999;
}

.logo2 a {
	color: #999
}

.logo2 a:hover {
	color: #ee7d29
}

.tubiao {
	height: 50px;
	width: 200px;
	position: absolute;
	right: 300px;
	top: -15px;
	float: right;
	margin-top: 50px;
}

.tubiao li {
	float: left;
	height: 50px;
	width: 50px;
	overflow: hidden;
	list-style: none;
}

.tubiao li a {
	float: left;
	height: 50px;
	width: 50px;
	display: block;
	cursor: pointer;
	text-indent: -300px;
	overflow: hidden;
}

.tubiao .app a {
	background: url("../image/mainbg.png")/*tpa=http://www.liangjiang.gov.cn/img/mainbg.png*/
	0 -120px no-repeat;
}

.tubiao .app a:hover {
	background-position: 0 -170px;
}

.tubiao .wb a {
	background: url("../image/mainbg.png")/*tpa=http://www.liangjiang.gov.cn/img/mainbg.png*/
	-50px -120px no-repeat;
}

.tubiao .wb a:hover {
	background-position: -50px -170px;
}

.tubiao .wx a {
	background: url("../image/mainbg.png")/*tpa=http://www.liangjiang.gov.cn/img/mainbg.png*/
	-100px -120px no-repeat;
}

.tubiao .wx a:hover {
	background-position: -100px -170px;
}

.tubiao .lx a {
	background: url("../image/mainbg.png")/*tpa=http://www.liangjiang.gov.cn/img/mainbg.png*/
	-150px -120px no-repeat;
}

.tubiao .lx a:hover {
	background-position: -150px -170px;
}

.logo img {
	margin-top: 45px;
	float: right;
}

.t12 img {
	float: left;
}

.yy {
	height: 10px;
	width: 100%;
	background-image: url("../image/yy.png");
	background-repeat: repeat-x;
}


/*add*/

.nav_img {
	clear: both;
	width: 100%;
	height: 190px;
	background: url(nav_img_bg.jpg);
}

.nav_img_cont {
	width: 1200px;
	margin: 0 auto;
}

.nav_img_cont .cont_box {
	width: 277px;
	height: 160px;
	float: left;
	margin: 10px 10px;
	padding: 0;
	display: inline;
}

.box_a1,
.box_a2,
.box_a3,
.box_a4 {
	display: block;
	width: 100%;
	height: 100%;
}

.box_a1 {
	background: url("../image/box_0a1.png");
}

.box_a2 {
	background: url("../image/box_0a2.png");
}

.box_a3 {
	background: url("../image/box_0a3.png");
}

.box_a4 {
	background: url("../image/box_0a4.png");
}

.box_a1:hover,
.box_a2:hover,
.box_a3:hover,
.box_a4:hover {
	display: block;
	width: 100%;
	height: 100%;
}

.box_a1:hover {
	background: url("../image/box_a1.png");
}

.box_a2:hover {
	background: url("../image/box_a2.png");
}

.box_a3:hover {
	background: url("../image/box_a3.png");
}

.box_a4:hover {
	background: url("../image/box_a4.png");
}


/*/add*/

.main {
	width: 1200px;
	/*height:2000px;*/
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	margin-bottom: 55px;
}


/*add*/

.main .notice {
	width: 1200px;
	height: 70px;
	background-color: #eeedec;
}

.notice .notice_img {
	width: 125px;
	height: 7px;
	background: url(notice1.jpg) no-repeat;
	float: left;
	font-size: 18px;
	color: #FFF;
	text-align: center;
	line-height: 70px;
	font-family: "微软雅黑";
	font-weight: 400;
}

.wrap {
	position: relative;
	width: 900px;
	float: left;
	margin-left: 20px;
}
.wrap ul li{
	font-size: 12px;
}
#news_rolling ul li a{
	width: 76%;
	display: block;
	float: left;
}
#news_rolling ul li p{
	width: 20%;
	float: right;
	font-size: 12px;
	font-family: "微软雅黑";
	color: #777;
}
.notice #news_rolling {
	width: 100%;
	height: 70px;
	overflow: hidden;
	line-height: 30px;
}

#news_rolling ul li {
	margin-right: 40px;
	float: left;
	height: 70px;
	line-height: 32px;
	font-family: "微软雅黑" !important;
	font-size: 14px !important;
	width: 45%;
    text-overflow:ellipsis; 
    white-space: nowrap;
}

#news_rolling a {
	color: #447fca;
	overflow:hidden;
    text-overflow:ellipsis; 
    white-space: nowrap;
}

.notice_more {
	width: 100px;
	float: right;
	margin-right: 10px;
	margin-top: 35px;
}

.notice_more a {
	line-height: 35px;
	color: #447fca;
	font-weight: 400;
		font-family: "微软雅黑" !important;
	font-size: 14px !important;
	
}

.notice a:hover {
	color: #333;
}

#news_rolling_down {
	position: absolute;
	right: -100px;
	top: 15px;
}

#news_rolling_up {
	position: absolute;
	right: -70px;
	top: 15px;
}


/*/add*/

.main4 {
	width: 1200px;
	overflow: hidden;
	margin: 0 auto;	
}

.main3 {
	width: 1050px;
	margin-right: auto;
	margin-left: auto;
	color: #06F;
	padding-top: 20px;
}

.main2 {
	width: 1200px;
	height: 650px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

*body .history-date ul li dl dt {
	_font-size: 12px !important;
	_font-weight: bold;
}

*body .history-date ul li dl dt span {
	_font-weight: normal !important;
}

*body .history-date ul li.green dl dt a {
	_background: transparent !important;
	*background: transparent !important;
	*font-size: 12px !important;
	_font-weight: normal !important;
}

.pagemain {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

html {
	overflow: auto !important;
	overflow: hidden;
}

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-attachment: fixed;
}

.cer {
	clear: both;
}

.showbox {
	background-color: #FFF;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
}

.showboxtt {
	background-color: #E6E9EC;
	padding: 10px;
	font-family: "微软雅黑";
	color: #FFF;
}

.boxt h3 {
	color: #FFF;
	font-family: "微软雅黑";
	font-size: 20px;
	font-weight: normal;
}

.boxtinfo {
	color: #FFF;
	font-size: 14px;
	font-family: "微软雅黑";
	line-height: 26px;
	margin-top: 10px;
}

.other .boxt h3 {
	color: #333;
}

.other .boxtinfo {
	color: #333;
	font-size: 14px;
	font-family: "微软雅黑";
	line-height: 26px;
	margin-top: 10px;
}

.other {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 15px;
	padding-bottom: 15px;
}

#pagemain .sanjiao {
	background-image: url("../image/xie.gif");
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 50px;
}

.boxleft {
	float: left;
}
.box ul{
	margin-top: 10px;
}
.boxright {
	float: right;
}

#webname,
#webtel {
	background-color: #1E2A38;
	border: 1px solid #182027;
	height: 30px;
	width: 300px;
	color: #FFF;
	line-height: 30px;
	font-family: "微软雅黑";
}

#webbutton {
	background-color: #1E2A38;
	height: 30px;
	width: 80px;
	border: 1px solid #182027;
	color: #FFF;
	font-family: "微软雅黑";
	font-size: 14px;
}

#webinfo {
	background-color: #1E2A38;
	border: 1px solid #182027;
	color: #FFF;
	width: 300px;
	height: 60px;
	font-family: "微软雅黑";
}

.boxtinfo a {
	color: #FFF;
}

.msok {
	height: 400px;
	color: #FFF;
	text-align: center;
	font-size: 80px;
	font-family: "微软雅黑";
	line-height: 200px;
}

.showboxinfo a {
	color: #06F;
}

.showboxinfo a:hover {
	color: #F00;
}

.pagenum a {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	width: 40px;
	text-align: center;
	background-color: #182029;
	margin-left: 10px;
	border-radius: 5px;
	color: #FFF;
	text-decoration: none;
}

.pagenum {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: center;
}

.pagenum span,
.pagenum a:hover {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	width: 40px;
	text-align: center;
	background-color: #00AEFF;
	margin-left: 10px;
	border-radius: 5px;
	color: #FFF;
	text-decoration: none;
}

ul.gallery li {
	float: left;
	margin: 0px;
	padding: 0;
	text-align: center;
	display: inline;
}

ul.gallery {
	width: 1000px;
	list-style: none;
	margin: 0 auto;
	padding: 0;
}

ul.gallery li a.thumb {
	width: 200px;
	height: 70px;
	cursor: pointer;
	display: block;
}

ul.gallery li span {
	width: 200px;
	height: 70px;
	overflow: hidden;
	display: block;
}

.xgcaseli {
	width: 240px;
	margin-left: 5px;
	margin-right: 5px;
	background-color: #FFF;
	height: 154px;
	float: left;
}

.xgcase {
	background-color: #FFF;
	padding-top: 5px;
	padding-bottom: 5px;
}

.xgcaseli a {}

.xgcaseli a:hover {
	background-color: #00aeff;
}

.content {
	width: 980px;
	margin: 50px auto
}
.ql_1{
	width: 33.3%;
	float: left;
}
.ql_2{
	width: 50% !important;
	float: left;
}
.color_left{
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #447fca;
	float: left;
	margin-top: 16px;
	margin-right: 15px;
}
.ql_1 p{
	float: left;
	color: #333;
	width: 80%;
	display: block;
	font-size: 14px;
	line-height: 38px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	
}
.ql_1 p:hover{
	color: #447fca;
}
.more_3{
	text-align: right;
	color: #666 !important;
	position: absolute;
	bottom: -50px;
	left: 280px;
	
}
.btm {
	margin: 30px auto
}

.logo span {
	float: left;
	background-image: url("../image/h1.png");
}

.btm p {
	font: normal 12px/24px 'Microsoft YaHei';
	text-align: center
}


/*end globel style*/


/*index content*/

.da-thumbs {
	list-style: none;
	height: 118px;
	position: relative;
	margin: 0 0 25px 0;
	padding: 0
}

.da-thumbs li {
	float: left;
	margin-right: 30px;
	background: #fff;
	position: relative;
	border: 2px solid #fafafa
}

.da-thumbs li a,
.da-thumbs li a img {
	display: block;
	position: relative
}

.da-thumbs li a div {
	position: absolute;
	background: #333;
	background: rgba(1, 152, 117, 0.9);
	*background: #fff;
	background: #fff;
	filter: alpha(Opacity=90);
	width: 100%;
	height: 100%
}

.da-thumbs li a em {
	display: block;
	width: 92px;
	height: 8px;
	background: rgba(255, 255, 255, 0.3);
	*background: #fff;
	background: #fff;
	filter: alpha(Opacity=30);
	margin: 0 10px
}

.da-thumbs li a {
	color: #fff;
	overflow: hidden
}

.da-thumbs li a h2 {
	font-size: 20px;
	margin: 6px 8px;
	font-weight: normal;
	text-align: center
}

.da-thumbs li a p {
	margin: 8px 13px;
	font: normal 14px/18px 'Microsoft YaHei'
}

.da-thumbs li.subscribe {
	border: none;
	width: 76px;
	height: 101px;
	margin-right: 0;
	background: #18a181;
	padding: 8px
}

.da-thumbs li.subscribe h2 {
	font-size: 33px;
	line-height: 36px;
	margin: 0;
	text-align: center;
}

.da-thumbs li.subscribe h2 span {
	font-size: 16px;
	float: right;
	margin-right: 5px;
	line-height: 30px
}

.da-thumbs li.subscribe img {
	clear: right;
	float: right;
	margin: 7px 5px 0 0px
}

.m2 {
	height: 500px;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.navBar {
	position: relative;
	z-index: 999;
	height: 120px;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.navBar1 {
	position: relative;
	z-index: 999;
	height: 120px;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.navBar {
	position: relative;
	z-index: 999;
	height: 120px;
	width: 1200px;
	float: left;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

.i6 {
	float: left;
	height: 160px;
	width: 100%;
}

.nav {
	width: 1200px;
	height: 120px;
	background: url("../image/index_nav2.png")/*tpa=http://www.liangjiang.gov.cn/img/index_nav2.png*/
	no-repeat top;
	position: absolute;
	left: 0px;
	top: -30px;
}

.nav .m {
	position: relative;
	float: left;
	width: 150px;
	height: 120px;
	display: inline;
	text-align: center;
	cursor: pointer;
}

.nav h2 {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 20px;
	color: #8a8a8a;
	height: 20px;
	padding-top: 60px;
}

.nav h3 {
	font-size: 18px;
	font-family: "微软雅黑";
	line-height: 25px;
	height: 25px;
}

.nav h3 a {
	zoom: 1;
	display: block;
	color: #999;
	text-decoration: none
}

.nav .on h3 a {
	color: #333;
}

.nav .sub {
	display: none;
	/*默认隐藏*/
	width: 150px;
	height: 280px;
	position: absolute;
	left: 0px;
	top: -220px;
	background: #fff;
}

.nav .sub a {
	width: 150px;
	height: 280px;
	display: block;
	cursor: pointer;
}

.nav .bg1 {
	background: url("../image/index_nav3.jpg") 0 0 no-repeat;
}

.nav .bg2 {
	background: url("../image/index_nav3.jpg") -150px 0 no-repeat;
}

.nav .bg3 {
	background: url("../image/index_nav3.jpg") -300px 0 no-repeat;
}

.nav .bg4 {
	background: url("../image/index_nav3.jpg") -450px 0 no-repeat;
}

.nav .bg5 {
	background: url("../image/index_nav3.jpg") -600px 0 no-repeat;
}

.nav .bg6 {
	background: url("../image/index_nav3.jpg") -750px 0 no-repeat;
}

.nav .bg7 {
	background: url("../image/index_nav3.jpg") -900px 0 no-repeat;
}

.nav .bg8 {
	background: url("../image/index_nav3.jpg") -1050px 0 no-repeat;
}

.mleft {
	float: left;
	height: 280px;
	width: 280px;
	border: 1px solid #D9D9D9;
	margin-top: 20px;
	margin-right: 50px;
}

.l1 {
	height: 95px;
	width: 250px;
	float: left;
	background-image: url(l1.gif);
	background-repeat: repeat-x;
	padding-top: 5px;
	padding-left: 30px;
}

.l1 #localtime {
	float: right;
	height: 40px;
	width: 130px;
	margin-top: 30px;
	font-size: 14px;
	color: #FFF;
}

.l2 {
	height: 80px;
	width: 230px;
	margin-left: 21px;
	float: left;
	line-height: 25px;
	color: #999;
	font-family: "微软雅黑";
	font-size: 14px;
	padding-top: 10px;
	padding-left: 15px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCC;
}

.l2 a {
	color: #666
}

.l2 a:hover {
	color: #37AFFF;
}

.l3 {
	height: 80px;
	width: 230px;
	margin-left: 21px;
	float: left;
	line-height: 25px;
	color: #333;
	font-family: "微软雅黑";
	font-size: 14px;
	padding-top: 10px;
	padding-left: 15px;
}

.l3 a {
	color: #37AFFF;
}

.l3 a:hover {
	color: #333;
}


/*add*/

.lanrenzhijia {
	width: 350px;
	height: 300px;
	float: right;
}

.lanrenzhijia .tab {
	overflow: hidden;
	background: #EFEFEF;
}

.lanrenzhijia .tab a {
	display: block;
	float: left;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	padding-top: 5px;
	padding-bottom: 3px;
	font-family: '微软雅黑';
	width: 33.1%;
	text-align: center;
}

.lanrenzhijia .tab a:hover {
	z-index: 1;
	background: #E64E3F;
	color: #fff;
	text-decoration: none;
	font-family: '微软雅黑';
}

.lanrenzhijia .tab a.on {
	background: #fff;
	color: #333;
	text-decoration: none;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #447fca;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #e3e3e3;
	border-left-color: #e3e3e3;
	z-index: 2;
}

.lanrenzhijia .content,
.gjzc_top .content {
	overflow: hidden;
	padding: 8px 0;
	float: left;
	height: 255px;
	width: 350px;
	margin-top: 0px;
}

.lanrenzhijia .content li,
.gjzc_top .content li {
	display: none;
	font-size: 12px;
	color: #999;
	width: 350px;
}

.lanrenzhijia a,
.gjzc_top a {
	color: #333;
	font-family: "微软雅黑";
	line-height: 27px;
}

.lanrenzhijia a:hover,
.gjzc_top a:hover {
	color: #447fca;
	line-height: 27px;
}

.gjzc {
	width: 460px;
	height: 37px;
	background: url(zc.jpg) no-repeat;
	color: #fff;
	overflow: hidden;
	line-height: 30px;
	font-size: 14px;
	font-family: "微软雅黑";
}

.gjzc b {
	padding-left: 20px;
}


/*/add*/

.boxb h3 {
	border-top: 2px solid #A60804;
	border-bottom: 1px solid #ddd;
	font-size: 18px;
	font-weight: normal;
	padding: 5px;
}

.boxb h3 a {
	color: #333;
}

.boxb ul {
	text-align: center;
}

.boxb ul {
	list-style: none;
	text-align: center;
}

.boxb ul p {
	font-size: 14px;
	color: #950013;
}
.dibu {
	height: 285px;
	width: 1200px;
	margin-top: 15px;
	margin-right: auto;
	margin-left: auto;
	border:solid 1px #e3e3e3;
	border-radius: 5px;
}

.d1 {
	height: 38px;
	width: 1190px;
	line-height: 38px;
	font-size: 14px;
	color: #447fca;
	font-weight: 600;
	font-family: "微软雅黑";
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
	background: #EFEFEF;
	border-top: 3px solid #447fca;
	border-bottom: solid 1px #d9d9d9;
}

.d2 {
	width: 405px;
	float: left;
	margin-top: 15px;
	border: 1px solid #e3e3e3;
	border-radius: 5px;
	margin-left: 15px;
}

.d21 {
	float: left;
	height: 60px;
	margin: 20px 26px 20px 26px;
}

.d21 img {
	width: 118px;
	height: 45px;
}

.d21 a:hover img,
.Contentbox a:hover img {
	filter: alpha(opacity=0.5);
	opacity: 0.5;
	-moz-opacity: 0.5;
}

.d3 {
	height: 2px;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	margin-top: 10px;
}

.d4 {
	height: 248px;
	width: 100%;
	color: #F5F5F5;
	text-align: center;
	line-height: 28px;
	/*background-color: #9BACC0;*/
	background-color: #394E77;
	/* padding-top: 10px; */
	float: left;
	/* margin-top: 15px; */
}
.footLink{
	height:68px;
	background-color: #0A2458;
	line-height: 68px;
}
.footLink a{
	margin-left: 5px;
	margin-right: 5px;
	color: #fff;
}
.footer{
	margin-top: 15px;
}
.foot-bottom{
	width: 1200px;
	margin:0 auto;
	display: flex;
}
.footer-left{
	margin-left: 286px; 
	float: left;
	text-align: left;
	/* margin: 0 auto; */
}
.footer-QR{
	width: 80px;
	height: 80px;
    /* float: left; */
    margin-left: 20px;
	margin-top:10px;
}
.footmore{
	font-size: 12px;
}
.footmore i{
	padding-left: 5px;
	font-size: 5px;
}

.d4 a:hover font {
	color: #096dc2;
}

.d5 {
	text-align: center;
	height: 114px;
	width: 500px;
	margin-right: auto;
	margin-left: auto;
}

.gg {
	height: 98px;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.d4 a {
	color: #fff;
}

.d4 a:hover {
	color: #559cda;
}

.end {
	height: 580px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	float: left;
}

.e1 {
	height: 104px;
	width: 106px;
	margin-top: 20px;
	text-align: center;
	float: left;
	margin-right: 25px;
	margin-left: 30px;
	line-height: 20px;
	color: #666;
}

.e2 {
	height: 104px;
	width: 700px;
	margin-right: auto;
	margin-left: auto;
}

.zy {
	height: 150px;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
}

.zy2 {
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	background-color: #F6F6F6;
}

.z1 {
	float: left;
	height: 50px;
	width: 1100px;
	margin-left: 50px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #e3e3e3;
}

.z11 {
	float: left;
	height: 22px;
	width: 22px;
	margin-top: 20px;
}

.z12 {
	float: left;
	height: 16px;
	width: 300px;
	margin-top: 20px;
	color: #32498c;
	padding-top: 6px;
}

.z12 a {
	color: #32498c;
}

.z2 {
	float: left;
	width: 1100px;
	margin-top: 20px;
	margin-left: 50px;
	text-align: left;
	line-height: 25px;
}

.z2 h1 {
	font-family: "微软雅黑";
	color: #333;
}

.new {
	float: left;
	height: 300px;
	width: 1200px;
	margin-top: 20px;
	font-family: 微软雅黑;
}
/* 新增 */

.pane1{
	float: left;
	height: 540px;
	width: 1200px;
	margin-top: 20px;
	font-family: 微软雅黑;
	display: flex;
}
.lunbo{
	/* position: absolute; */
	width:780px;
	height: 540px;
	left:0;
	top:0;
	/* background-color: #005c81; */
	position:relative;
	/* width:405px;
	height:300px; */
	background-color: #000;
	float: left;
	overflow: hidden;
}
.lunbo img{ 
	width: 780px; 
	height:540px;
}
.lunbo .btn{ position:absolute; bottom:34px; left:510px; overflow:hidden; zoom:1;} 
.lunbo .btn a{position:relative; display:inline; width:13px; height:13px; border-radius:7px; margin:0 5px;color:#B0B0B0;font:12px/15px "\5B8B\4F53"; text-decoration:none; text-align:center; outline:0; float:left; background:#D9D9D9; }  
.lunbo .btn a:hover,.lunbo .btn a.current{  cursor:pointer;background:#fc114a;}  
.lunbo .fPic{ position:absolute; left:0px; top:0px; }  
.lunbo .D1fBt{ overflow:hidden; zoom:1;  height:16px; z-index:10;  }  
.lunbo .shadow{ width:100%; position:absolute; bottom:0; left:0px; z-index:10; height:60px; line-height: 50px; background:rgba(57,78,119,0.8);    
filter:progid:DXImageTransform.Microsoft.gradient( GradientType = 0,startColorstr = '#80000000',endColorstr = '#80000000')\9;  display:block;  text-align:left; }  
.lunbo .shadow a{ text-decoration:none; color:#fff; font-size:16px; overflow:hidden; margin-left:10px; font-family: "\5FAE\8F6F\96C5\9ED1";}  
.lunbo .fcon{ position:relative; width:100%; float:left;  display:none; background:#000  }  
.lunbo .fcon img{ display:block; }  
.lunbo .fbg{bottom:5px; right:30px; position:absolute; height:21px; text-align:center; z-index: 200; }  
.lunbo .fbg div{margin:4px auto 0;overflow:hidden;zoom:1;height:14px}    
.lunbo .D1fBt a{position:relative; display:inline; width:12px; height:12px; border-radius:7px; margin:0 5px;color:#B0B0B0;font:12px/15px "\5B8B\4F53"; text-decoration:none; text-align:center; outline:0; float:left; background:#D9D9D9; }    
.lunbo .D1fBt .current,.lunbo .D1fBt a:hover{background:#0A2458;}    
.lunbo .D1fBt img{display:none}    
.lunbo .D1fBt i{display:none; font-style:normal; }    
.lunbo .prev,.lunbo .next{position:absolute;width:40px;height:74px;background: url(focus_btn.png) no-repeat;}
.lunbo .prev{top: 50%;margin-top: -37px; left: 0;background-position:0 -74px; cursor:pointer; }  
.lunbo .next{top: 50%;margin-top: -37px; right: 0;  background-position:-40px -74px;  cursor:pointer;}  
.lunbo .prev:hover{  background-position:0 0; }  
.lunbo .next:hover{  background-position:-40px 0;}  
.toutiaoNews{
	width:410px; 
	height:540px; 
	float:left; 
	margin-left:15px; 
	background-color: #FFFFFF;
	border: 1px solid #e3e3e3;
	border-radius: 10px;
	box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2);
}

.cardTitle{
	background-color: #0A2458;
	width: 100%;
	height:64px;
	color:#FFFFFF;
	line-height: 64px;
	font-size: 22px;
	

}
/* .cardTitle{
	margin-bottom: 0.1rem;
} */
.cardTitle span{
	margin-left:10px;
}
.icontoutiao{
	display: inline-block;
	width: 30px;
	height: 30px;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background-color: #FFFFFF;
	color:#0A2458;
	font-weight: 500;
	/* margin-left:0.1rem; */
}
#tabs {
	overflow: hidden;
	width: 102%;
	margin: 0;
	padding: 0;
	list-style: none;
	line-height:18px;
	overflow: hidden;
	display: flex;
	background-color: #394E77;
}

#tabs li {
	float: left;
	width: 51%;
	text-align: center;
	background-color: #394E77;
}

#tabs a {
	position: relative;
	background: #394E77;
	width: 100%;
	padding: 15px 0;
	float: left;
	text-decoration: none;
	color: #FFF;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
	box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
	font-size: 14px;
	font-family: "微软雅黑";
}

/* #tabs a:hover,
#tabs a:hover::after, */
#tabs a:focus,
#tabs a:focus::after {
	background: #fff;
	font-size: 14px;
	color:#394E77;
	font-weight: bold;
}

#tabs a:focus {
	outline: 0;
	font-size:14px;
	color:#394E77;
	font-weight: bold;
	-webkit-border-radius:5px 5px  0 0;
	-moz-border-radius:5px 5px  0 0;
	border-radius:5px 5px 0 0;
	
}
#tabs a:focus::after{
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

#tabs a::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	background: #394E77;
	-moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, .4);
	-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, .4);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, .4);
	
}

#tabs #current a,
#tabs #current a::after {
	background: #fff;
	z-index: 3;
	color: #0A2458;
	font-size: 14px;
	font-weight: bold;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
	box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
	/* font-size: 14px; */
	font-family: "微软雅黑";
}

.newsTips{
	margin: 15px;
	padding-bottom: 40px;
	position: relative;
	/* height: 45px; */
	/* text-align: center; */
	/* margin-bottom:0.15rem;
	border-bottom:1px dashed #394E77 */
}
.newsTips h3{
	text-align: center;
}
.newsTips p{
	/* position: absolute; */
	overflow: hidden;
	box-sizing: border-box;
    line-height:23px;
	color: #0A2458;
	font-size: 13px;
	text-indent:20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
	-o-text-overflow:ellipsis;
	-webkit-text-overflow:ellipsis;
	-moz-text-overflow:ellipsis;
	height: 92px;


    /* white-space:pre-wrap; */
}
.newsTips p:after{
	/*content:"...";
	position: absolute;
	bottom: 45px;*/
	/* right: 1px; */
	/* background: #fff; */
	/* padding: 0.2em; */
}
.newsBtn{
	margin-top:10px;
	border-radius: 20px;
	border:none;
	width: 96px;
	height: 28px;
	background-color: #394E77;
	font-size: 14px;
	color:#FFF;
	text-align: center;
	float: right;
}
.newsBtn a{
	color:#fff !important;
}
.newsBtn i{
	font-weight: bold;
	font-size: 14px;
}
.tab1 hr{
	width: 90%;
	margin:0 auto;
	border:none;	
	height: 1px;
	background-image: linear-gradient(to right, #ccc 0%, #394E77 50%, transparent 50%);
	background-size: 8px 1px;
	background-repeat: repeat-x;
	
}
.newsList{
	margin: 15px;
	padding-bottom: 40px;
	box-sizing: border-box;
}
.newsList ul li{
	/* display: inline-block; */
	line-height: 22px;
	font-size: 13px;
    text-align: left !important;
    padding: auto;
    overflow: hidden; 
    white-space: nowrap;
    text-overflow: ellipsis;
}
.newsList .newsBtn{
	margin-bottom: 10px;
}
.pane2{
	float: left;
	height:410px;
	width: 1200px;
	margin-top: 15px;
	font-family: 微软雅黑;
	display: flex;
	flex-wrap: wrap;
}
.topic{
	width:388px; 
	/* flex:1; */
	height:410px; 
	float:left; 
	left:0;
	top:0;
	background-color: #FFFFFF;
	border: 1px solid #e3e3e3;
	box-sizing: border-box;
	border-radius: 10px;
	box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2);
}
.topic1{
	background-color: #F21115;
	width: 100%;
	height:95px;
	box-sizing: border-box;
	border-radius: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.more{
	font-size: 16px;
	float: right;
	margin-right: 15px;
}
.work-coop{
	width:796px;
	height: 410px;
	margin-left:15px; 
	background-color: #FFFFFF;
	border: 1px solid #e3e3e3;
	box-sizing: border-box;
	border-radius: 10px;
	box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2);
}
.workTop{
	height: 15px;
	width: 100%;
	background-color: #0A2458;
}
.work-coop hr{
	width: 95%;
	margin:0 auto;
	border:none;	
	height: 1px;
	background-image: linear-gradient(to right, #ccc 0%, #394E77 50%, transparent 50%);
	background-size: 8px 1px;
	background-repeat: repeat-x;
}
.workTitle{
	margin:0,0,10px,10px;
	height: 60px;
	line-height: 45px;
	font-weight: 600;
}
#worktabs li{
	float: left;
	font-size: 22px;
	width:auto ;
	padding-left:15px;
	padding-right: 15px;
	/* list-style-type: disc !important; */
}
#worktabs li a{
	color:#7A7A7A ;
	padding-bottom: 5px;
}
#worktabs li a:focus{
	color:#191919;
	/* padding-bottom: 0.05rem; */
	border-bottom: 3px solid #0A2458;
}
#worktabs #current a,
#worktabs #current a::after {
	color:#191919;
	/* padding-bottom: 0.05rem; */
	border-bottom: 3px solid #0A2458;
}
.workTab p{
  padding-left:25px;
  padding-right: 25px;
  margin-top:10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.wcTitle{
  width:618px;
  display: inline-block;
  text-align: left !important;
  padding: auto;
  overflow: hidden; 
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wcTime{
  float: right;
  /* display: inline-block; */
  box-sizing: border-box;
}
.pane3{
	float: left;
	height: 420px;
	width: 1200px;
	margin-top: 15px;
	font-family: 微软雅黑;
	display: flex;
	flex-wrap: wrap;
}
.work{
	width:389px; 
	height:420px; 
	left:0;
	top:0;
	background-color: #FFFFFF;
	border: 1px solid #e3e3e3;
	box-sizing: border-box;
	border-radius: 10px;
	box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2);
}
.work1{
	width: 100%;
	height:75px;
	line-height: 75px;
	box-sizing: border-box;
	border-radius: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left:36px;
	/* background: #555; */
	background: -moz-linear-gradient(right, #394E77 0%, #4C6EB4 100%);
    background: -webkit-gradient(linear, right, color-stop(0%,#0A2458), color-stop(100%,#4C6EB4));
    background: -webkit-linear-gradient(right, #394E77 0%,#4C6EB4 100%);
    background: -o-linear-gradient(right, #394E77 0%,#4C6EB4 100%);
    background: -ms-linear-gradient(right, #394E77 0%,#4C6EB4 100%);
    background: linear-gradient(to right, #394E77 0%,#4C6EB4 100%);
}
.work1 span{
	font-size: 24px;
	color: #fff;
}
.work1 i {
	font-size: 42px;
	float: right;
	margin-right: 15px;
	color:#fff
}
.recruit{
	width:389px; 
	height:420px; 
	float:left; 
	margin-left:15px; 
	background-color: #FFFFFF;
	border: 1px solid #e3e3e3;
	box-sizing: border-box;
	/* border-radius: 10px; */
	box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2);
}
.recruitCard,.noticeCard{
	/* width: 100%; */
	margin-left:10px;
	margin-right: 10px;
}
.recruit1{
	border-bottom: 1px dashed ;
}
.recruit1{
	width: 100%;
	height:75px;
	line-height: 25px;
	box-sizing: border-box;
	/* border-radius: 15px; */
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left:10px;
	padding-top:10px;
	padding-bottom: 10px;
	/* background-color: #C1D6D0; */
	display: flex;
	color:#0A2458
}
.rtime{
	/* vertical-align: middle; 
	 border-right: 2px solid #0A2458;
	padding-right: 15px; 
	 box-sizing: border-box; */
	 vertical-align: middle; 
	 /* border-right: 4px solid #fff; */
	padding-right: 15px; 
	 box-sizing: border-box;
	background-color: #394E77;
	text-align: center;
	color:#fff;
}
.rtime span {
    padding-left: 20px;
}

.rDate{
	font-size: 20px;
	font-weight: bold;

}
.ryear{
  position: relative;
  font-size: 14px;
  font-weight: 600;
}
.rtitle{
	padding-left: 15px;
	padding-right: 10px;
	font-size: 16px;
	line-height: 25px;
}
.notication{
	width:389px; 
	height:420px; 
	float:left; 
	margin-left:15px; 
	background-color: #FFFFFF;
	/* border: 1px solid #e3e3e3;
	box-sizing: border-box;
	border-radius: 0.1rem;
	box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2); */
}
.notice1{
	background-color: #fff;
	width: 100%;
	height:108px;
	line-height: 25px;
	box-sizing: border-box;
	border-radius: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border: 1px solid #e3e3e3;
	box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2);

}
.noticeTitle{
	width: 100%;
	height: 35px;
	line-height: 35px;
	padding-left: 25px;
	background-color: #394E77;
	box-sizing: border-box;
	border-radius: 15px;
	color:#FFF;
	font-size: 16px;
	font-weight: 600;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	
}
.noticeTitle a{
color:#fff !important;
}
.noticeDetail{
	padding-left:25px;
	line-height: 25px;
	/*padding-top:15px;*/
	padding-top:10px;
	color:#0A2458;
	font-size: 16px;
}
.zfpane{
	width: 1200px;
	/* float: left; */
	margin-top: 20px;
	font-family: 微软雅黑;
	border: 1px solid #e3e3e3;
	border-radius: 10px;
	box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	/* display: flex; */
}
.zfpane1{
	min-height: 156px;

}
.zfpane2{
	min-height: 1000px;

}
.zfpane3{
	min-height: 500px;
}
.paneTop{
	background-color: #0A2458;
	height: 15px;
	width: 100%;
}
.zfpaneContent{
	margin-left: 30px;
	margin-right: 30px;
	box-sizing: border-box;
	/* display: flex; */
}
.zfTitle{
	display: flex;
}
.zfTilteRight{
	height: 60px;
	line-height: 60px;
	float: right;
	font-size: 14px;
	color: #ADADAD;
	width: 260px;
	text-align: right;
	/* margin-right: 10px; */
}
.gangLeft span{
	width: 3px;
	height: 20px;
	display: block;
	background-color: #C1D6D0;
	transform: rotate(-10deg);
	margin-left: 2px;
	margin-right: 2px;
}
.gangLeft,.gangRight{
display: flex;
margin:0 auto;
}
.zfLabel{
	background-color: #fff;
	position: relative;
	display: flex;
	margin-top: -12px;
	width:  220px;
	margin-left: 50px;
}
.paneTitle{
	margin:0 20px;
	font-size: 20px;
	font-weight: 600;
	margin-top: -8px;
	color:#075B44;
}
.gangRight span{
	width: 3px;
	height: 20px;
	display: block;
	background-color: #C1D6D0;
	transform: rotate(10deg);
	margin-left: 2px;
	margin-right: 2px;
}
.zfcon1{
	display: flex;
	box-sizing: border-box;
}
.zfcon1 input {
	background-color: #C1D6D0;
	border-radius: 30px;
	border:none;
	outline: none;
	height:42px;
	font-size: 14px;
	color:#0A2458;
}
.zfsearch input{
	width: 350px;
	text-indent: 4em;
	overflow: hidden;
}
::-webkit-input-placeholder { /* WebKit browsers */
	color: #0A2458;
	font-size: 14px !important;
	font-weight: 600;
  }
  
  ::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #0A2458;
	font-size: 14px !important;
	font-weight: 600;
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #0A2458;
	font-size: 14px !important;
	font-weight: 600;
  }   
.zfsearch i{
	position: relative;
	left: 40px;
	color:#0A2458;
	vertical-align: middle;
}
.searcBtn input{
	margin-left:20px;
	width:80px;
	font-weight: 600;
}
.database{
	/* text-align: left; */
	font-size: 14px;
	/* padding-left: 10px; */
	border-collapse: collapse;
}
.database th{
	color:#0A2458;
	text-align: start;
	background-color: #C1D6D0;
	padding-left: 10px;
	border:0 px;
	margin:0
}

.database tr{
	line-height: 24px;
}
.database tr td span{
	height:30px;
	line-height: 30px;
}
.database tr a{
	color:#505050;
}
.database tr a:hover{
	color:#0A2458;
}
/*add*/

.hydt {
	height: 37px;
	font-family: 微软雅黑;
	color: #fff;
	font-size: 14px;
	padding-left: 20px;
	line-height: 30px;
	overflow: hidden;
	background: url(xw.jpg) no-repeat;
}


/*/add*/

#tab {
	position: relative;
}

#tab .tabList ul li {
	float: left;
	background: #EFEFEF;
	width: 93px;
	text-align: center;
	position: relative;
	cursor: pointer;
	list-style-type: none;
	padding-top: 8px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
	font-size: 16px;
	font-family: "微软雅黑";
}

#tab .tabCon {
	position: absolute;
	left: -1px;
	top: 32px;
	width: 350px;
	height: 250px;
	font-size: 12px;
	line-height: 27px;
	margin-top: 10px;
}

#tab .tabCon a {
	color: #333
}

#tab .tabCon a：hover {
	color: #096dc2
}

#tab .tabCon div {
	padding: 10px;
	position: absolute;
	opacity: 0;
	filter: alpha(opacity=0);
}

#tab .tabList li.cur {
	background: #fff;
	border-top-width: 2px;
	border-top-style: solid;
	border-bottom-style: none;
	border-top-color: #1370D7;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #e4e4e4;
	border-left-color: #e4e4e4;
	height: 19px;
}

#tab .tabCon div.cur {
	opacity: 1;
	filter: alpha(opacity=100);
	font-size: 12px;
}

.tab .cur a:hover {
	color: #096dc2
}

.vedio {
	float: left;
	height: 300px;
	width: 353px;
	border: 1px solid #ddd;
	margin-left: 15px;
	border-top: none;
	border-radius: 5px;
}

.v1 {
	float: left;
	height: 25px;
	width: 353px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	font-size: 16px;
	padding-top: 5px;
	line-height: 0;
	background-image: -moz-linear-gradient(top, #e5e5e5, #f5f5f5);
	/* Firefox */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e5e5e5), color-stop(1, #f5f5f5));
	border-radius: 5px 5px 0 0;
}
.tab_title h2{
	font-family: "微软雅黑";
    width: 105px;
    text-align: center;
    border-bottom: 3px solid #447fca;
    line-height: 30px;
    font-size: 14px;
    color: #447fca;
    float: left;
}
.tab_more{
		
	width: 60px;
	float: right;
	line-height: 30px;

}
.new3_n10{
	margin-top: 0;
}
.tab_title{
    height: 30px;
    line-height: 30 px;
    border-bottom: 1px solid #d6d6d6;
}
.v1 h3 {
	padding-left: 20px;
	font-weight: bold;
	font-family: "微软雅黑";
	font-size: 14px;
	line-height: 20px;
	color: #447fca;
}
.v1 a:hover{
	color:#447fca;
}
.v1 a {
	color: #999;
	padding-left: 10px;
	font-family: "微软雅黑";
	float: right;
	font-size: 12px;
	font-weight: normal;
	margin-right: 20px;
}

.v2 {
	float: left;
	margin-top: 10px;
	margin-left: 15px;
}

.v3 {
	float: left;
	height: 20px;
	width: 300px;
	margin-top: 50px;
}

.new2 {
	float: left;
	width: 840px;
	margin-top: 20px;
}

.bn1 {
	float: left;
	height: 210px;
	width: 830px;
}

.bn2 {
	float: left;
	height: 100px;
	width: 830px;
}

.new3 {
	float: left;
	width: 830px;
}

.new4 {
	float: left;
	height: 275px;
	width: 353px;
	margin-top: 20px;
	margin-left: 15px;
	border: solid 1px #E3E3E3;
	border-radius: 5px;
}

.bn21 {
	float: left;
	height: 100px;
	width: 400px;
}

.bn3 {
	height: 100px;
	width: 830px;
	margin-top: 10px;
	float: left;
}

.bn4 {
	height: 150px;
	width: 830px;
	float: left;
	margin-top: -10px;
}

.bn22 {
	float: left;
	height: 100px;
	width: 400px;
	margin-left: 30px;
}

#full-screen-slider {
	width: 100%;
	height: 350px;
	float: left;
	position: relative
}

#slides {
	display: block;
	width: 100%;
	height: 350px;
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative
}

#slides li {
	display: block;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	position: absolute;
	height: 350px;
}

#slides li a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999px
}

#pagination {
	display: block;
	list-style: none;
	position: absolute;
	left: 50%;
	top: 320px;
	z-index: 998;
	padding: 5px 15px 5px 0;
	margin: 0
}

#pagination li {
	display: block;
	list-style: none;
	width: 30px;
	height: 10px;
	float: left;
	margin-left: 8px;
	background: #edf4f6;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

#pagination li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	text-indent: -9999px;
}

#pagination li.current {
	background: #0099cb
}

.nTab {
	float: left;
	width: 830px;
	background-position: left;
	background-repeat: repeat-y;
	margin-bottom: 0;
	/*text-align: center;*/
	/*background-color: #efefef;*/
	margin-right: 0;
	/*font-size: 16px;*/
}

.none {
	display: none;
}

.TabContent10 a {
	color: #333;
	font-size: 12px;
}


/*.TabContent9 a{font-size: 12px;color:#333}
.TabContent10 a:hover{color:#39F}
.TabContent9 a:hover{color:#39F}
*/


/*add*/

.new3_cont {
	float: left;
	width: 405px;
	overflow: hidden;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.new3_n5 {
	height: 25px;
	width: 385px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #e3e3e3;
	background-image: -moz-linear-gradient(top, #e5e5e5, #f5f5f5);
	/* Firefox */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e5e5e5), color-stop(1, #f5f5f5));
	/* Saf4+, Chrome */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c6ff00', endColorstr='#538300', GradientType='0');
	/* IE*/
	padding-left: 20px;
	padding-top: 5px;
	font-weight: bold;
	font-family: "微软雅黑";
	font-size: 14px;
	color: #447fca;
}

.new3_n6 {
	float: left;
	height: 250px;
	width: 370px;
	line-height: 25px;
	margin-left: 15px;
	margin-top: 10px;
	font-size: 14px;
	font-family: "微软雅黑";
}

.new3_n6 a {
	color: #333;
}

.new3_n6 a:hover {
	color: #096dc2;
}

.new3_n5 span {
	float: right;
	margin-top: 0px;
	font-size: 12px;
	font-weight: normal;
	margin-right: 20px;
}

.new3_n5 span a {
	color: #999
}
.new3_n5 span a:hover{
	color: #447fca;
}

/*/add*/

a,
a:visited {
	text-decoration: none;
}

.clear {
	display: block;
	overflow: hidden;
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-table;
}


/* Hides from IE-mac \*/

*html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}


/* End hide from IE-mac */

*+html .clearfix {
	min-height: 1%;
}

body {
	font: 12px/180% Arial, Lucida, Verdana, "宋体", Helvetica, sans-serif;
	color: #333;
	background: #fff;
}


/* shortcut */

.shortcut {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
}

*html,
*html body
/* 修正IE6振动bug */

{
	background-image: url(about:blank);
	background-attachment: fixed;
}

*html .shortcut {
	position: absolute;
	top: expression(eval(document.documentElement.scrollTop));
}

.shortcut {
	height: 28px;
	line-height: 28px;
	font-size: 12px;
	background: #EEEEEE;
	text-transform: uppercase;
	box-shadow: 1px 0px 2px rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid #DDDDDD;
}

.shortcut h1 {
	font-size: 14px;
	font-family: "微软雅黑", "宋体";
}

.shortcut a,
.shortcut h1 {
	padding: 0px 10px;
	letter-spacing: 1px;
	color: #333;
	text-shadow: 0px 1px 1px #fff;
	display: block;
	float: left;
}

.shortcut a:hover {
	background: #fff;
}

.shortcut span.right {
	float: right;
}

.shortcut span.right a {
	float: left;
	display: block;
	color: #ff6600;
	font-weight: 800;
}

.headeline {
	height: 40px;
	overflow: hidden;
}

.adv960x90 {
	width: 960px;
	height: 90px;
	overflow: hidden;
	border: solid 1px #E6E6E6;
	margin: 0 auto;
}

.adv728x90 {
	width: 728px;
	height: 90px;
	overflow: hidden;
	border: solid 1px #E6E6E6;
	margin: 0 auto;
}

.cp {
	float: left;
	height: 150px;
	width: 1200px;
	margin-top: 15px;
}

.marqueeleft {
	height: 136px;
	width: 1180px;
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
}

.marqueeleft ul {
	float: left;
}

.marqueeleft li {
	float: left;
	margin: 0 5px;
	display: inline;
	width: 148px;
	height: 133px;
	overflow: hidden;
}

.marqueeleft li .pic {
	display: block;
	border: #ccc 1px solid ;
	width: 135px;
	height: 104px;
	padding: 2px;
	overflow: hidden;
}

.marqueeleft li .txt {
	text-align: center;
	height: 23px;
	line-height: 23px;
}


/* marqueetop */

.marqueetop {
	height: 429px;
	width: 148px;
	overflow: hidden;
	margin: 40px auto;
}

.marqueetop li {
	padding: 5px 0;
	width: 148px;
	height: 133px;
	overflow: hidden;
}

.marqueetop li .pic {
	display: block;
	border: #ccc 1px solid;
	width: 135px;
	height: 104px;
	padding: 2px;
	overflow: hidden;
}

.marqueetop li .txt {
	text-align: center;
	height: 23px;
	line-height: 23px;
}

.more1 {
	float: right;
	height: 20px;
	width: 30px;
	margin-top: 20px;
	margin-right: 20px;
}

.txt a {
	color: #666
}

.new5 {
	float: left;
	height: 150px;
	width: 300px;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 20px;
}

.n5 {
	height: 25px;
	width: 280px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #e3e3e3;
	background-image: -moz-linear-gradient(top, #fff, #f7f7f7);
	/* Firefox */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #f7f7f7));
	/* Saf4+, Chrome */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c6ff00', endColorstr='#538300', GradientType='0');
	/* IE*/
	padding-left: 20px;
	padding-top: 5px;
	font-weight: bold;
	font-family: "微软雅黑";
	font-size: 14px;
	color: #a20c18;
}

.n6 {
	float: left;
	height: 100px;
	width: 300px;
	line-height: 25px;
	margin-top: 10px;
	margin-left: 15px;
}

.n5 span {
	float: right;
	margin-top: 0px;
	font-size: 12px;
	font-weight: normal;
	margin-right: 20px;
}

.n5 span a {
	color: #999
}

*html {
	background-image: url(about:blank);
	background-attachment: fixed;
}


/*解决IE6下滚动抖动的问题*/


/*解决IE6下不兼容 position:fixed 的问题*/

#code,
#code_hover,
#gotop {
	width: 36px;
	height: 48px;
	background: url(icon.png) no-repeat;
	position: fixed;
	right: 50px;
	cursor: pointer;
	_position: absolute;
	_bottom: auto;
	_top: expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop, 10)||0)-(parseInt(this.currentStyle.marginBottom, 10)||0)));
}

#code {
	background-position: -276px -258px;
	bottom: 120px;
	_margin-bottom: 120px;
}

#code_hover {
	background-position: -316px -258px;
	bottom: 120px;
	_margin-bottom: 120px;
}

#gotop {
	background-position: -276px -310px;
	bottom: 67px;
	_margin-bottom: 67px;
}

#code_img {
	z-index: 9999;
	width: 270px;
	height: 355px;
	background: url(icon.png) -4px -3px no-repeat;
	position: fixed;
	right: 90px;
	bottom: 67px;
	cursor: pointer;
	display: none;
	_position: absolute;
	_bottom: auto;
	_top: expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop, 10)||0)-(parseInt(this.currentStyle.marginBottom, 10)||0)));
	_margin-bottom: 67px;
}

.l2 span {
	padding-right: 15px;
	padding-left: 15px;
	float: left;
}

.l3 span {
	float: left;
	padding-right: 15px;
	padding-left: 15px;
}

.n6 a {
	color: #666
}

.n6 a:hover {
	color: #096dc2
}

.bm {
	height: 100px;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #CCC;
	margin-top: 30px;
}

.bm1 {
	background-color: #32498c;
	float: left;
	height: 90px;
	width: 32px;
	color: #FFF;
	text-align: center;
	font-family: "微软雅黑";
	font-weight: bold;
	padding-top: 10px;
}

.bm2 {
	float: left;
	height: 90px;
	width: 105px;
	color: #005c81;
	padding-top: 10px;
	line-height: 28px;
	margin-left: 20px;
	font-size: 14px;
	font-weight: bold;
}

.bm3 {
	float: left;
	height: 90px;
	width: 940px;
	color: #005c81;
	padding-top: 10px;
	line-height: 28px;
	font-size: 12px;
}

.bm3 a {
	color: #005c81
}

.bm3 a:hover {
	color: #e00001
}

.bm4 {
	float: left;
	height: 90px;
	width: 50px;
	color: #005c81;
	padding-top: 10px;
	line-height: 28px;
	margin-left: 20px;
	font-size: 12px;
	font-weight: bold;
}

.bm4 a {
	color: #005c81;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
}

.cpp {
	float: left;
	height: 31px;
	background-color: #f4f4f4;
	margin-bottom: 20px;
	margin-top: 20px;
}

.cp1 {
	float: left;
	width: 127px;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
}

.cp1:hover {
	background-color: #2980cd;
	color: #fff
}

.yjxd {
	height: 255px;
	width: 748px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 15px;
}

.quyu {
	width: 1180px;
	height: 270px;
	-webkit-box-shadow: #ccc 0px 0px 10px;
	-moz-box-shadow: #ccc 0px 0px 10px;
	box-shadow: #ccc 0px 0px 10px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	padding-top: 15px;
}

.zbbt {
	height: 40px;
	width: 500px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
}

@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.slider,
.slider .slider-img {
	overflow: hidden;
	height: 100px;
}

.slider {
	width: 1200px;
	position: relative;
}

.slider:hover .slider-btn {
	color: #fff;
	text-shadow: 0 0 5px #666;
}

.slider .slider-img {
	width: 12000px;
	position: relative;
}

.slider .slider-img .slider-img-ul {
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
}

.slider .slider-img .slider-img-ul li {
	float: left;
}

.slider .slider-img .slider-img-ul li img {
	width: 1200px;
}

.slider .slider-dot ul {
	position: absolute;
	right: 50px;
	bottom: 30px;
}

.slider .slider-dot ul li {
	cursor: pointer;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	border: 2px solid #fff;
	float: left;
	margin-left: 10px;
}

.slider .slider-dot ul li.active,
.slider .slider-dot ul li:hover {
	background: #fff;
}

.slider .slider-btn {
	position: absolute;
	width: 50px;
	height: 100px;
	top: 50%;
	line-height: 100px;
	text-align: center;
	color: #fff;
	font-size: 28px;
	text-decoration: none;
	font-family: '黑体';
	color: rgba(255, 255, 255, 0);
}

.slider .slider-btn:hover {
	background: rgba(125, 125, 125, .3);
}

.slider .slider-btn.slider-btn-left {
	left: 0;
	margin-top: -50px;
}

.slider .slider-btn.slider-btn-right {
	right: 0;
	margin-top: -50px;
}

.new_left {
	width: 170px;
	height: 90px;
	overflow: hidden;
	float: left;
	position: relative;
}

.new_left p {
	position: absolute;
	display: block;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-size: 14px;
	line-height: 28px;
}

.new_right {
	float: right;
	width: 180px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}

.new_bottom {
	float: left;
	margin-top: 5px;
}

.hot {
	color: #447fca !important;
	font-weight: bold;
}

.new_left1 {
	height: 130px;
	width: 150px;
}

.new_title {
	font-size: 14px;
	margin-left: 10px;
}

.new_right1 {
	width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.new_right1 h6 {
	margin-left: 10px;
	margin-right: 10px;
	width: 170px;
	white-space: normal;
	word-break: break-all;
	overflow: hidden;
	color: #333;
	font-weight: normal;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	font-family: "微软雅黑" !important;
	font-size: 14px !important;
}

.new_bottom1 {
	margin-top: 5px;
	line-height: 24px;
	font-family: "微软雅黑" !important;
	font-size: 14px !important;
}

.new_bottom1 a {
	color: #333;
}

.new_bottom1 a:hover {
	color: #447fca;
}

.clear {
	clear: both;
}

.container {}

.container .nav1 {
	width: 93% !important;
	border: 1px solid #ccc;
	margin: 0 auto;	
	display: block;
	margin-top: 20px;
}

.container .nav1 span {
	display: block;
	width: 33.13%;
	text-align: center;
	line-height: 30px;
	color: #666;
	float: left;
	cursor: pointer;
	border-right: 1px solid #ccc !important;
	font-size: 14px;
	font-family: "微软雅黑";
	font-weight: bold;
}

.container .nav1 span.active {
	background: #447fca;
	color: #fff;
}

.container .nav1 span:first-child {
	border: 0px
}

.content {
	margin-top: 20px;
	width: 330px;
	position: relative;
	overflow: hidden;
	height: 200px;
	margin-left: 15px !important;
}


/*定位一般设置为relative，overflow设置为hidden来隐藏外面的内容*/

.content .box {
	position: absolute;
	width: 1101px;
	height: 200px;
}


/*这个定位设置为absolute, 因为要操作这个的位置来切换内容*/

.content ul {
	float: left;
	width: 330px;
}

.content ul li {
	display: block;
	float: left;
	position: relative;
}

.content ul li+li {
	margin-left: -1px;
}

.doc-list li.ppt:before {
	background: url(PPT.gif) no-repeat;
}

.doc-list li.doc:before {
	background: url(word.gif) no-repeat;
}

.doc-list li.pdf:before {
	background: url(PDF.gif) no-repeat;
}

.doc-list li:before {
	width: 16px;
	height: 16px;
	display: inline-block;
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	background-color: #fff;
}

.doc-list li a {
	margin-left: 18px;
	float: left;
	cursor: pointer;
}

.doc-list li h6 {
	font-weight: 400;
	text-align: right;
	color: #b1b1b1;
}

.rdjj-list li:before {
	width: 16px;
	height: 16px;
	display: inline-block;
	position: absolute;
	content: "";
	left: 0;
	top: 8px;
	background-color: #c0c0c0;
}

.rdjj-list li {
	line-height: 33px;
	padding-left: 11px;
	position: relative;
}

.boxbox {
	width: 746px;
	position: relative;
	overflow: hidden;
	margin-top: 30px;
	margin-left: 15px;
	margin-right: 15px;
	height: 230px;
	
}

.picbox {
	width: 746px;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.piclist {
	height: 200px;
	position: absolute;
	left: 0px;
	top: 0px
}

.piclist li {
	margin-right: 10px;
	float: left;
}

.swaplist {
	position: absolute;
	left: -756px;
	top: 0px
}

.og_prev,
.og_next {
	width: 30px;
	height: 50px;
	background: url(icon.png) no-repeat;
	background: url(icon_ie6.png) no-repeat\9;
	position: absolute;
	top: 65px;
	z-index: 99;
	cursor: pointer;
	filter: alpha(opacity=70);
	opacity: 0.7;
}

.og_prev {
	background-position: 0 -60px;
}

.og_next {
	background-position: 0 0;
	right: 0px;
}

.piclist li {
	width: 179px;
	overflow: hidden;
	height: 200px;
}

.piclist li h6 {
	color: white;
	text-align: center;
	line-height: 30px;
	position: absolute;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	width: 179px;
}

.bs1 {
	width: 33.3%;
	height: 24px;
	float: left;
}

.bs2 {
	width: 33.3%;
	height: 24px;
	float: left;
}

.bs3 {
	width: 33.3%;
	height: 24px;
	float: left;
}

.wsb img {
	display: block;
	float: left;
}

.wsb h5 {
	float: left;
	font-family: "微软雅黑";
	color: #333;
	margin-left: 10;
	font-weight: 500;
	font-size: 14px;
}

.wsb h5:hover {
	color: #447fca;
}

.bs_list1 {
	margin: 15px 0;
	overflow: hidden;
}

#tab {
	position: relative;
}

#tab .tabList ul li {
	float: left;
	background: #fefefe;
	background: -moz-linear-gradient(top, #fefefe, #ededed);
	background: -o-linear-gradient(left top, left bottom, from(#fefefe), to(#ededed));
	background: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#ededed));
	border: 1px solid #ccc;
	padding: 5px 0;
	width: 100px;
	text-align: center;
	margin-left: -1px;
	position: relative;
	cursor: pointer;
}

#tab .tabCon {
	border-top: none;
	width: 780px;
}

#tab .tabCon div {
	padding: 10px;
	position: absolute;
	opacity: 0;
	filter: alpha(opacity=0);
}

#tab .tabList li.cur {
	border-bottom: none;
	background: #fff;
}

#tab .tabList li {
	height: 25px;
}

#tab .tabCon div.cur {
	opacity: 1;
	filter: alpha(opacity=100);
}

.d_right {
	width: 750px;
	height: 250px;
	float: right;
	margin-top: 15px;
	border: 1px solid #e3e3e3;
	border-radius: 5px;
	margin-right: 15px;
	overflow: hidden;
}

.tnm {
	margin: 0 !important;
}



/* ------------------------------------------------- */

#content {
	background: #fff;
	padding-top: 100px !important;
	padding: 2em;
	position: relative;
	z-index: 2;
	-moz-border-radius: 0 5px 5px 5px;
	-webkit-border-radius: 0 5px 5px 5px;
	border-radius: 0 5px 5px 5px;
	-moz-box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
	-webkit-box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
	box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
}

#content h2,
#content h3,
#content p {
	margin: 0 0 15px 0;
}


/* ------------------------------------------------- */

#about {
	color: #999;
}

#about a {
	color: #eee;
}

#content img {
	display: block;
	float: left;
	margin-right: 5px;
}

#content h6 {
	font-family: "微软雅黑";
	float: left;
	font-weight: 400;
	cursor: pointer;
	color:#333;
	font-size: 14px;
}

#content h6:hover {
	color: #447fca;
}

#content li {
	margin-right: 10px;
	overflow: hidden;
	float: left;
	width: 105px;
	overflow: hidden;
	font-size: 14px;
}

#content ul {
	margin: 25px 0;
	overflow: hidden;
}

.ul_no {
	margin-top: 15px !important;
}
.table1{
	FONT-SIZE: 14px;
    COLOR: #333;
    LINE-HEIGHT: 18px;
    FONT-FAMILY: "微软雅黑";
    TEXT-ALIGN: left;
    TEXT-DECORATION: none !important;
}
.table1 a{
	color: #666;
}
.table1 a:hover{
	color: #447fca;
}
#tab1{
	width: 100%;
}
.table_left{
	width: 80%;
	line-height: 36px;
}
#tab1 ul{
	margin: 11px 0;
}
#tab1 ul li{
	width: 130px;
}
#tab1 ul li h4{
	background-color: #447FCA;
	line-height: 27px;
	text-align: center;
	color: white;
	font-weight: 400;
	font-family: "微软雅黑";
	border-radius: 5px;
	font-size: 14px;
}

#tab1 ul li a img{
	margin-top: 2px;
}
#tab1 ul li a h6{
	margin-top: 3px;
	font-size: 14px;
}
.tab3_top{
	width: 100%;
}
.tab3_top li{
	width: 20% !important;
	margin: 0 !important;
}
.tab3_top li h6{
	font-size: 14px;
	border: solid 1px #447fca;
	border-radius: 5px;
	padding: 5px 30px;
	margin: 0 10px;
}
.tab3_top li h6:hover{
	background-color: #447FCA;
	color: white !important;
}
#tab5 li{
	width: 33.3% !important;
	display: block;
	float: left;
	margin: 0 !important;
}
#tab5 li img{
	width: 130px;
	height: 130px;
	display: block;
	margin-left: 52px;
}
#tab5 li h3{
	float: left;
	font-size: 14px;
	font-family: "微软雅黑";
	text-align: center;
	font-weight: 400;
	width: 100%;
	color: #447FCA;
}
#tab6 li img{
	margin-top:5px ;
}
#tab6 li{
	width: 33.3%;
	margin: 0;
	line-height: 30px;
}
#toTop {
    display: none;
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 64px;
    height: 64px;
    background-image: url(top.png);
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: alpha(opacity=40); /* For IE8 and earlier */
}
#toTop:hover {
    opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
}
#content li{
	font-size: 14px !important;
	font-family:"微软雅黑" !important;
}

.child1{
	top: 43px;
	width: 130px !important;
	background: #B8CBC6;
	color: white;
	border: solid 1px #B8CBC6;
	
}
.child1 li {
	width: 100%;
	border-bottom: solid 1px #B8CBC6;
	text-align: center;
	font-family: "微软雅黑";
	font-size: 14px;
	cursor: pointer;
}
.child1 a li {
	color: white;
}
.child1 li:hover{
	background-color: #0A2458;
}