/**************************************/
/*************[公用start]**************/
/**************************************/

/*主站变灰*/
/*html {
-webkit-filter:grayscale(100%);
-moz-filter:grayscale(100%);
-ms-filter:grayscale(100%);
-o-filter:grayscale(100%);
filter:grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)
}
* {
-moz-filter: grayscale(100%); 
-ms-filter: grayscale(100%); 
-o-filter: grayscale(100%); 
filter: gray;
}*/
/*主站变灰*/

/*淘宝变灰*/
/* body, html {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    }*/

/*淘宝变灰*/

/*百度百科變灰*/


/*body.memorial>* {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1)
}
*/


/*百度百科變灰*/
div.clear{
	clear: both;
	height: 0;
	width: 0;
}




a{
	text-decoration: none;
	color:inherit;
	cursor: pointer;
}

img{
	border:0;
	max-width: 100%;
}


div.wp{
	width: 1200px; /*主要内容区尺寸大小，每次制作前更新！！！ */
	margin:0 auto;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.tran{
	transition: all .3s ease-out 0s;
}
.tver{
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}



/*图片中心放大代码区域*/

.img-box{/*图片盒子类名*/

	overflow: hidden;
}

.img-box img{
	transition: .3s;
	width: 100%;
	max-width: 100%;
}

.img-box:hover img{
	/*图片中心放大代码*/
	  -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/*图片中心放大代码区域*/


.imgbox_a{
	position:relative;
	padding-bottom: 100%;
	overflow:hidden;
	display: block;
}

.imgbox_a>img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%!important;
	height: 100%!important;
}
.imgbox_hover>img{
	/* ueco 时间曲线*/
	/*transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s; */
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;

}
.imgbox_hover:hover>img{
	-webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
/**************************************/
/************[公用over]****************/
/**************************************/




/*header-start*/
/**************************************************************/

#header{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	background-repeat: repeat-x;
	background-position: 0 100%;
	background-image: url(../images/header-bg.png);
}
#header::before{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	background-repeat: repeat-x;
	background-position: 0 center;
	background-image: url(../images/header.png);
	z-index: 5;
	height: 234px;
	content:"";
}
#header .container{
	position: relative;
	z-index: 50;
}

.header-div{
	height: 160px;
	padding-top: 26px;
}


.logo{
	width: 347px;
}

.logo a,.logo img{
	display: block;
	width: 100%;
}

.search{
	width: 52px;
	margin-top: 7px;
	margin-left: 31px;
}

.search a,.search img{
	display: block;
	width: 100%;
}
.header-dl{
	margin-top: 23px;
}
.header-dl dl{
	margin:0;
}

.header-dl dd{
	float: left;
	white-space: normal;
	font-size: 14px;
	color: #fff;
}
.header-dl dd img{
	margin-top: -3px;
	margin-right: 11px;
}
.header-dl dd+dd{
	margin-left: 40px;
}

.nav{
	margin-top: 27px;
}
.nav ul{
	margin:0;
}

.nav>ul>li{
	float: left;
	width: 6.5%;
	text-align: center;
	font-size: 0;
	position: relative;
}
.nav>ul>li+li{
	/*padding-right: 23px;*/
	width: 8.5%;
	
}
.nav>ul>li+li::after{
	position: absolute;
	background-image: url(../images/jiao1.png);
	background-repeat: no-repeat;
	background-position: center;
	width: 12px;
	height: 7px;
	top: 8px;
	right: 8px;
	content:"";
}
.nav>ul>li>a{
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 16px;
	position: relative;
}
.nav>ul>li.cur>a::after{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 2px;
	background-color: #fff;
	content:"";
}


.nav>ul>li>ul{
	position: absolute;
	left: 50%;
	top:100%;
	z-index: 600;
	background-color: #fff;
	display: none;
	width:120px;
	margin-left: -60px;
}
.nav>ul>li>ul>li>a{
	display: block;
	padding: 10px 5px;
	text-align: center;
	line-height: 1.6;
	font-size: 14px;
	color:#333;
	/*transition: .3s;*/
	text-align: center;
}
.nav>ul>li>ul>li>a:hover{
	background-color: #0e458d;
	color: #fff;
}






/**************************************************************/
/*header-over*/





/*main-start*/
/**************************************************************/

#main{

}
.fafa .flex-control-nav{
	height: 0;
	bottom: 42px;
}
.fafa .flex-control-nav li{
	margin:0 10px;
}
.fafa .flex-control-paging li a{
	width: 48px;
	height: 3px;
	background-image: none!important;
	background-color: #fff;
	opacity: 0.5;
	transition: opacity .3s;
}
.fafa .flex-control-paging li a.flex-active{
	opacity: 1;
}


.padd{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.main-top{
	padding: 80px 0;
	background-image: url(../images/main-top-bg.jpg);
}
.main-middle2{
	padding: 50px 0 45px;
	background-image: url(../images/main-middle-bg.jpg);
	margin-top: 40px;
}
.main-bottom{
	padding: 80px 0;
	background-image: url(../images/main-bottom-bg.jpg);
}
.title-11{
	position: relative;
	padding-bottom: 27px;
}
.title-11::before{
	position: absolute;
	width: 162px;
	height: 53px;
	content:"";
	background-image: url(../images/title-11-1.png);
	left: -8px;
	bottom: 0;
}
.title-11::after{
	position: absolute;
	width: 26px;
	height: 1px;
	content:"";
	background-image: url(../images/title-11-2.png);
	right: 16px;
	bottom: 15px;
}
.title-11-line{
	position: absolute;
	height: 1px;
	background-color: #5186c5;
	left: 153px;
	right: 48px;
	bottom: 15px;
}
.title-11-left{
	line-height: 1;
	padding-left: 35px;
	position: relative;
	z-index: 50;
}
.title-11-left i{
	font-family: "Times New Roman";
	font-size: 18px;
	color: #bac2cb;
	text-transform: uppercase;
}
.title-11-left span{
	font-size: 30px;
	color: #333;
	font-weight: bold;
	padding-right: 11px;
}
.title-11-left span b{
	color: #0752ad;
}

.title-11-a a{
	display: block;
	width: 104px;
	height: 32px;
	line-height: 32px;
	font-family: "Times New Roman";
	font-size: 18px;
	color: #0752ad;
	font-style: italic;
	background-image: url(../images/title-11-a.png);
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
	transition: background-image .3s,color .3s;
}
.title-11-a a:hover{
	background-image: url(../images/title-11-ah.png);
	color:#fff;
}


.main-bottom-list{
	margin-top:40px;
}
.main-bottom-list dl{
	margin:0;
	margin-left: -1%;
}

.main-bottom-list dd{
	float: right;
	margin-left: 1%;
	width: 24%;
}
.main-bottom-list dd .imgbox_a{
	padding-bottom: 65.84%;
}
.main-bottom-list dd:nth-child(2),
.main-bottom-list dd:nth-child(3){
	margin-bottom: 1%;
}

.main-bottom-list dd:first-child{
	width: 49%;
}
.main-bottom-list dd:first-child .imgbox_a{
	padding-bottom: 66.5%;
}

.main1-1{
	width: 1020px;
}
.main1-2{
	width: 475px;
}

.main2{
	margin-top: 80px;
}

.main2-item{
	width: 48.5%;
}

.main2-middle2-dl dl{
	margin:0;
	font-size: 0;
	text-align: center;
}
.main2-middle2-dl dd{
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	color: #fff;
}
.main2-middle2-dl dd+dd{
	margin-left: 145px;
}
.main2-middle2-dl dd img{
	display: block;
	width: 88px;
	margin:0 auto 25px;
}
.main2-middle2-dl dd a:hover{
	font-weight: bold;
}

.main2-div{
	margin-top: 40px;
}
.tui1-pic{
	width: 240px;
	margin-right: 20px;
}
.tui1-pic .imgbox_a{
	padding-bottom: 66.67%;
}
.tui1-con{
	overflow: hidden;
}

.tui1-h1{
	font-size: 22px;
	font-weight: bold;
	color: #0752ad;
}

.tui1-p{
	font-size: 16px;
	font-weight: 100;
	color: #666;
	line-height: 2;
	height: 4em;
	overflow: hidden;
	margin-top: 15px;
}

.tui1-h2{
	font-size:18px;
	font-family: 'Times New Roman';
	color: #999;
	padding-left: 27px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/time.png);
	margin-top: 23px;
}

.main2-list{
	margin-top: 10px;
}
.main2-list dl{
	margin:0;
}

.main2-list dd{
	position: relative;
	font-size: 18px;
	color: #333;
	height: 67px;
	line-height: 66px;
	border-bottom: 1px dashed #cccccc;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-left: 25px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/dian1.png);
	padding-right: 90px;
}

.main2-list dd a:hover{
	color: #0752ad;
	font-weight: bold;
}
.main2-list dd span.span_0020{
	position: absolute;
	right:0px;
	top: 0;
	font-size:18px;
	font-family: 'Times New Roman';
	color: #999;
}
.main1-2-list{
	margin-top: 30px;
}
.main1-2-list dl{
	margin:0;
}

.main1-2-list dd+dd{
	margin-top: 28px;
}

.main1-2-date{
	margin-right: 25px;
	text-align: center;
}

.main1-2-date1{
	font-size: 48px;
	color: #0752ad;
	line-height: 1;
	font-family: "Times New Roman";
	font-style: italic;
}
.main1-2-date2{
	font-size: 16px;
	color: #0752ad;
	line-height: 1;
	font-family: "Times New Roman";
}

.main1-2-con{
	overflow: hidden;
	padding-top: 5px;
}

.main1-2-a{
	font-size: 18px;
	color: #333;
	line-height: 1.6;
	height: 3.2em;
	overflow: hidden;
}

.main1-2-list dd:hover .main1-2-a{
	color: #0752ad;
	font-weight: bold;
}

.main1-1-div{
	margin-top: 40px;
}

.main1-1-left{
	width: 580px;
	margin-right: 30px;
}

.main1-1-pic .imgbox_a{
	padding-bottom: 64.138%;
}

.main1-1-pic-date{
	position: absolute;
	width: 52px;
	height: 52px;
	z-index: 15;
	right: 0;
	bottom: 0;
	background-color: #0752ad;
	text-align: center;
	padding-top: 3px;
}
.main1-1-pic-date1{
	font-size: 28px;
	color: #fff;
	font-family: "Times New Roman";
	font-style: italic;
	line-height: 1;
}
.main1-1-pic-date2{
	font-size: 12px;
	color: #fff;
	font-family: "Times New Roman";
	line-height: 1;
	margin-top: 3px;
}

.main1-1-con{
	background-color: #fff;
	padding: 20px 40px 25px;
	box-shadow: 0 0 10px 1px rgba(0,0,0,0.05);
}

.main1-1-h1{
	font-size: 18px;
	color: #333;
	line-height: 1.8;
	height: 3.6em;
	overflow: hidden;
}
.main1-1-h1 a:hover{
	color: #0752ad;
	font-weight: bold;
}
.main1-1-p{
	font-size: 16px;
	color: #666;
	font-weight: 100;
	margin-top: 10px;
}
.main1-1-list{
	overflow: hidden;
}
.main1-1-list dl{
	margin:0;
}

.main1-1-list dd+dd{
	margin-top: 25px;
}

.main1-1-list dd:hover .main1-1-date{
	background-image: url(../images/main1-1-date-bgh.png);

}
.main1-1-list dd:hover .main1-1-date1{color: #fff;}
.main1-1-list dd:hover .main1-1-date2{color: #fff;}

.main1-1-list dd:hover .main1-1-list-a{
	color: #0752ad;
	font-weight: bold;
}

.main1-1-date{
	margin-right: 10px;
	text-align: center;
	width: 82px;
	height: 82px;
	background-image: url(../images/main1-1-date-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	padding-top: 13px;
	/*transition: background-image .3s;*/
}

.main1-1-date1{
	font-size: 30px;
	color: #0752ad;
	line-height: 1;
	font-family: "Times New Roman";
	font-weight: bold;
	font-style: italic;
	/*transition: color .3s;*/
}
.main1-1-date2{
	font-size: 16px;
	color: #0752ad;
	line-height: 1;
	font-family: "Times New Roman";
	margin-top: 3px;
	/*transition: color .3s;*/
}

.main1-1-list-con{
	overflow: hidden;
	padding-top: 8px;
}

.main1-1-list-a{
	font-size: 18px;
	color: #333;
	line-height: 1.8;
	height: 3.6em;
	overflow: hidden;
}


/**************************************************************/
/*main-over*/





/*footer-start*/
/**************************************************************/

#footer{
	background-image: url(../images/footer-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.footer-1{
	padding: 30px 0;
}

.foo1-logo{
	width: 347px;
}

.foo1-logo a,.foo1-logo img{
	display: block;
	width: 100%;
}

.foo1-right{
	width: 570px;
	margin-top: 13px;
}

.foo1-sel{
	width:260px;
}

.foo1-sel select:focus{
	outline: none;
}
.foo1-sel select{
	display: block;
	width: 100%;
	font-size: 14px;
	color: #fff;
	height: 36px;
	border:1px solid #8c95a0;
	background-color: transparent;
	padding-left:8px;
}
.foo1-sel select option{
	color: #333;
}
.footer-2-div{
	border-top: 1px solid #3d547b;
	padding: 30px 0 22px;
}

.er-wp{
	width: 410px;
	margin-top: 15px;
}

.er{
	width: 110px;
	font-size: 14px;
	color: #fff;
	font-weight: 100;
	text-align: center;
}
.er img{
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

.er+.er{
	margin-left: 40px;
}


.foo2-con{
	width: 250px;
}

.foo2-h1{
	font-size: 18px;
	color: #fff;
}
.foo2-p{
	font-size: 14px;
	color: #fff;
	font-weight: 100;
	line-height: 2.4;
	margin-top: 20px;
}
.foo2-p p{margin:0;}

.footer-3{
	padding:8px 0;
	font-size: 12px;
	color: #fff;
	font-weight: 100;
	line-height: 2;
	border-top: 1px solid #3d547b;
}








/**************************************************************/
/*footer-over*/





/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/

#header-2{
	display: none;
	height: 75px;
	/*border-bottom:0px solid #035cac;*/
	box-shadow: 0 4px 8px -3px #000;
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	z-index: 1001;
	background-color: #1857b2;

}
.nav-2{
	display: none;
	background-color: #fff;
	position: relative;
	z-index:900;

}

.nav-2>ul>li{

	border-top: 1px dotted #ccc;
	position: relative;
}

.jiaspan{
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: url(../images/jia2.png);
	background-repeat: no-repeat;
	background-position: center ;
	top: 5px;

	right: 14px;
}
.jiaspan.cur{
	background-image: url(../images/jia2h.png);

}
.nav-2>ul{
	margin:0;
	max-height: calc(100vh - 129px);
	overflow-y: auto;
}
.nav-2>ul>li:first-child{
	/*border-top: 0;*/
}
.nav-2>ul>li>a{

	padding:8px 10px;
	display: block;
	font-size: 16px;
	width: 100%;
	color:#333;
	font-family: "anb";
	text-transform: uppercase;

}
.nav-2>ul>li>ul{
	padding-bottom: 10px;
	display: none;
}
.nav-2>ul>li>ul>li>a{
	padding: 6px 10px;
	display: block;
	font-size: 14px;
	padding-left: 25px;
	width: 100%;
	color:#666;
}
/*.downla-2 {
	padding: 5px 0 10px;
	display: none;
}
.downla-2 dd{
	padding-left: 30px;
}
.downla-2 dd a{
	font-size: 14px;
	display: inline-block;
	padding: 3px 0;
	width: auto;
}*/
/*.nav-2 li a:hover{
	color:#1a0d07;
}*/

.nav-2-form{
	padding: 10px;
	position: relative;
}
.nav-2-form input[type="image"]{
	position: absolute;
	right: 19px;
    top: 18px;
    width: 18px;

}

.nav-2-form .form-control{padding-right: 50px;}
.logo-2 {
   font-size: 0;
   width: 230px;
    margin-left: 15px;
    margin-top: 15px;
}

.logo-2 img{
	display: block;
	width: 100%;
}


.menu2{

	margin-right: 15px;
	height: 75px;
	font-size: 0;

}
.menu2 li{
	cursor:pointer ;
	margin-left: 15px;
	float: right;
	margin-top: 29px;
}
.menu2 li+li{
	margin-top: 21px;
}
.menu2 li img{
	/*vertical-align: middle;*/


}

.chenggao{
		display: none;
		height: 75px;
	}


#nav-2-heidi{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 800;
	background-image: url(../images/heidi.png);
	display: none;

}


/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/



.banner-2{
	height: 600px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	padding-top: 290px;
}
.banner-2 .container{
	position: relative;
	z-index: 15;
}
.banner-2-bg{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
}


.banner-2-h1{
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	font-style: italic;
	padding-left: 36px;
	padding-bottom: 42px;
	background-image: url(../images/banner-2-h1.png);
	background-repeat: no-repeat;
	background-position: 0 100%;
}

.mianbaoxie-wp{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	background-color: rgba(7,82,173,0.7);
	z-index: 30;
}

.mianbaoxie{
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	color: #fff;
	text-align: right;
}

.erji{
	padding: 70px 0 145px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-image: url(../images/erji-bg.jpg);
	min-height:800px;
}
.erji-title{
	position: relative;
	padding-top: 18px;
	padding-bottom: 35px;
}
.erji-title i{
	font-size: 36px;
	color: #0752ad;
	font-weight: bold;
	line-height: 1;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	font-style: normal;
	font-family: 'Times New Roman';
	text-transform: uppercase;
	background-image: linear-gradient(#2567b7, #e8eff7);
  -webkit-background-clip: text; /* Safari 和 Chrome */
  -webkit-text-fill-color: transparent; /* Safari 和 Chrome */
  background-clip: text; /* 标准语法 */
  color: transparent; /* 标准语法 */
  opacity: 0.5;
}
.erji-title span{
	font-size: 36px;
	color: #333;
	font-weight: bold;
	line-height: 1;
	position: relative;
	z-index: 50;
}

.erji-div{
	margin-top: 40px;
}

.menu{
	width: 240px;
	margin-top: 90px;
}

.menu dl{
	margin:0;
}

.menu dd>a{
	display: block;
	height: 77px;
	line-height: 76px;
	border-bottom: 1px solid #e7eef7;
	font-size: 20px;
	color: #333;
	text-align: center;
	position: relative;
}
.menu dd.cur>a{
	background-color: #e7eef7;
	color: #1857b2;
	font-weight: bold;
}
.menu dd.cur>a::before{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #1857b2;
	content:"";
}
.menu dd.cur>a::after{
	position: absolute;
	left: 2px;
	top: 50%;
	margin-top: -10px;
	width: 47px;
	height: 20px;
	background-image: url(../images/hua.png);
	background-repeat: no-repeat;
	background-position: center;
	content:"";
}
.menu dd>a:hover{
	color: #1857b2;
	font-weight: bold;
}



.erji-content{
	width: 1250px;
}
.erji-content-title{
	border-bottom: 1px solid #d6d6d6;
}
.erji-content-title .fl{
	font-size: 22px;
	color: #333;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 16px;
	border-bottom: 2px solid #1857b2;
	position: relative;
	top: 1px;
}
.news-list{
	padding-top: 25px;
}
.news-list dl{
	margin:0;
}
.news-list dd{
	border-bottom: 1px dashed #d6d6d6;
}
.news-item{
	padding: 25px;
	padding-right: 75px;
	background-repeat: no-repeat;
	background-position: right 0;
	background-size: cover;
}

.news-pic{
	width: 288px;
	margin-right: 35px;
}

.news-pic .imgbox_a{
	padding-bottom: 69.4444%;
}

.news-con{
	overflow: hidden;
	padding-top: 25px;
}

.news-h1{
	display: inline-block;
	font-size: 16px;
	color: #0d3993;
	padding-bottom: 6px;
	border-bottom: 1px solid #0d3993;
	line-height: 1;
	font-family: 'Times New Roman';
	font-weight: bold;
}

.news-h2{
	font-size: 22px;
	color: #333;
	margin:25px 0 10px;
}

.news-p{
	font-size:16px;
	color: #999999;
	font-weight: 100;
	line-height: 2;
	max-height: 4em;
	overflow: hidden;
}


.news-item:hover{
	background-image: url(../images/news-item.jpg);
	/*background-color: #09529b;*/
}

.news-item:hover .news-h1{
	color: #fff;
	border-color:#fff;
}

.news-item:hover .news-h2{
	color: #fff;
	font-weight: bold;
}

.news-item:hover .news-p{
	color: #fff;
}



.fenye{
	text-align: center;
	margin-top: 60px;
}
.fenye ul{
	margin: 0;
}

.mm50{
	margin-top: 50px;
}

.about-h1{
	font-size: 22px;
	color: #333;
	font-weight: bold;
	text-align: center;	
}

.about-p{
	font-size: 18px;
	color: #333;
	line-height: 2.2;
	margin-top: 30px;
}

.tongzhi-list dl{
	margin:0;
	padding-top: 20px;
}

.tongzhi-list dd{
	padding: 20px 0;
	border-bottom: 1px dashed #d6d6d6;
}

.tongzhi-date{
	width: 70px;
	height: 79px;
	border:1px solid #1857b2;
	margin-right: 20px;
}

.tongzhi-date1{
	height: 41px;
	line-height: 41px;
	background-color: #fff;
	font-size: 30px;
	color: #0d3993;
	font-weight: bold;
	font-family: 'Times New Roman';
	text-align: center;
	font-style: italic;
}

.tongzhi-date2{
	height: 36px;
	line-height: 36px;
	background-color: #1857b2;
	font-size: 16px;
	color: #fff;
	font-family: 'Times New Roman';
	text-align: center;
}

.tongzhi-con{
	overflow: hidden;
	padding-top: 10px;
}

.tongzhi-h1{
	font-size: 20px;
	color: #333;
}

.tongzhi-h1 a:hover{
	color: #1857b2;
	font-weight: bold;
}

.tongzhi-p{
	font-size: 16px;
	color: #999;
	font-weight: 100;
	margin-top: 10px;
}


.xiazai-list .tongzhi-con{
	padding-top: 23px;
	position: relative;
	padding-right: 65px;
	padding-bottom: 14px;
}

.xiazai-a{
	position: absolute;
	width: 44px;
	right: 0;
	top: 18px;
}

.xiazai-a a{
	display: block;
	height: 44px;
	background-image: url(../images/xiazai.jpg);
	background-size: 100%;
}

.xiazai-a a:hover{
	background-image: url(../images/xiazaih.jpg);

}

.lingdao-list dl{
	margin:0;
	margin-left: -2%;
}

.lingdao-list dd{
	float: left;
	width: 23%;
	margin-left: 2%;
	margin-top: 2%;
	background-color: #edeef7;
	background-image: url(../images/j1.jpg);;
	background-repeat: no-repeat;
	background-position: right top;
	padding: 30px;
}

.lingdao-pic .imgbox_a{
	padding-bottom: 124.9%;
}
.lingdao-con{
	margin-top: 25px;
}
.lingdao-h1{
	font-size: 24px;
	color: #333;
	font-weight: bold;
	line-height: 1;
}
.lingdao-h2{
	font-size: 14px;
	color: #333;
	margin-top: 10px;
}

.lingdao-list dd:hover{
	background-color: #1857b2;
	background-image: url(../images/j2.jpg);;
}

.lingdao-list dd:hover .lingdao-h1{color: #fff;}
.lingdao-list dd:hover .lingdao-h2{color: #fff;}
.menu-left.menu{
	width: 255px;
}
.menu-left.menu dd>a{
	text-align: left;
	padding-left: 68px;
}


.danpian-h1{
	font-size: 30px;
	font-weight: bold;
	color: #333;
	text-align: center;
}

.danpian-h2{
	font-size: 12px;
	color: #999;
	text-align: right;
	margin-top:30px;
	position: relative;
}
.danpian-h2 img{
	margin-top: -3px;
	margin-right: 8px;
}

.danpian-ziti{
	font-size: 16px;
	color: #999;
	text-align: center;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}
.danpian-ziti i{
	font-style: normal;
	display: inline-block;
	width: 26px;
	height: 26px;
	line-height: 26px;
	border-radius: 50%;
	cursor: pointer;
}
.danpian-ziti i.cur{
	background-color: #1857b2;
	color: #fff;
}

.danpian-con{
	margin-top: 30px;
	font-size: 16px;
	color: #666;
	line-height: 2.4;
}
.danpian-con *{
	font-size: 16px!important;
}
.danpian-con.cur1 *{
	font-size: 18px!important;
}
.danpian-con.cur2 *{
	font-size: 14px!important;
}
.danpian-con img{
	display: block;
	margin:0 auto 10px;
}
.dan-page{
	padding-top: 10px;
	border-top: 1px solid #ddd;
	margin-top: 20px;
}
.dan-a{
	margin-top: 12px;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.dan-a a{
	font-size: 16px;
	color:#666;
}
.dan-a a:hover{
	color:#1857b2;
}

.mm30{margin-top: 30px;}

.shizi1{
	background-color: #edeef7;
}
.shizi1-pic{
	width: 200px;
}

.shizi1-pic .imgbox_a{
	padding-bottom: 120%;
}

.shizi1-con{
	overflow: hidden;
	padding: 40px 60px 0;
}

.shizi1-h1{
	font-size: 18px;
	color: #0d3993;
	line-height: 1;
	padding-bottom: 16px;
	border-bottom: 1px solid #a9b7d9;
}

.shizi1-h1 span{
	font-weight: bold;
	color: #333;
	font-size: 26px;
	padding-right: 65px;
}

.shizi1-con-p{
	margin-top: 30px;
	font-size: 18px;
	color: #666;
	line-height: 2;
}

.shizi1-con-p p{
	margin:0;
}

.shizi1-con-p p+p{
	margin-top: 10px;
}

.shizi2{
	margin-top: 95px;
}

.shizi2-h1{
	font-size: 26px;
	color: #0d3993;
}

.shizi2-p{
	font-size: 18px;
	color: #666;
	line-height: 2;
	margin-top: 30px;
}