/**************************************/
/*************[公用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;
	padding-top: 26px;
}
#header::before{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 335px;
	background-repeat: repeat-x;
	background-position: left 100%;
	background-image: url(../images/landi1.png);
	content:"";
	z-index: 15;
}
#header .container{
	position: relative;
	z-index: 30;
}
.logo{
	width: 578px;
}

.logo a,.logo img{
	display: block;
	width: 100%;
}


.header-1-right{
	font-size: 16px;
	color: #fff;
	white-space: nowrap;
	position: relative;
	padding-right: 75px;
	margin-top: 23px;
}

.header-1-right a img{
	margin-top: -3px;
	margin-right: 10px;
}
.header-1-right a:hover{
	font-weight: bold;
}

.search{
	position: absolute;
	right: 0;
	top: 5px;
	width: 47px;
	background-image: url(../images/ha2.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	padding-left: 23px;
}
.search a{
	display: block;
	width: 20px;
}
.search img{
	display: block;
	width: 100%;
}

.nav-wp{
	background-image: url(../images/nav-wp.png);
	background-repeat: repeat-x;
	background-position: 0 bottom;
	margin-top: 15px;
}


.nav ul{
	margin:0;
}

.nav>ul>li{
	float: left;
	width: 10%;
	text-align: center;
	position: relative;
}
.nav>ul>li+li{
	padding-left: 1px;
	background-image: url(../images/li.png);
	background-repeat: no-repeat;
	background-position: 0 center;
}
.nav>ul>li>a{
	font-size: 20px;
	color: #fff;
	display: block;
	line-height: 1;
	padding: 15px 0;
}
.nav>ul>li>a span{
	display: inline-block;
	position: relative;
}
.nav>ul>li.cur>a span::after{
	position: absolute;
	width: 100%;
	height: 3px;
	left: 0;
	bottom: -15px;
	content:"";
	background-color: #fff;
}
.nav>ul>li>ul{
	position: absolute;
	left: 1px;
	right: 0;
	top:100%;
	z-index: 600;
	display: none;
	background-color:#fff;
}
.nav>ul>li>ul>li>a{
	display: block;
	padding: 10px 5px;
	text-align: center;
	line-height: 1.6;
	font-size: 16px;
	color:#333;
	text-align: center;
}
.nav>ul>li>ul>li>a:hover{
	background-color: #0c66c8;
	color: #fff;
}






/**************************************************************/
/*header-over*/





/*main-start*/
/**************************************************************/

#main{

}

.fafa .flex-control-paging li a{
	width: 25px;
	height: 25px;
}

.fafa .flex-control-nav li{
	margin:0 4px;
}

.padd{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.main1{
	padding: 60px 0 75px;
	background-image: url(../images/main1-bg.jpg);
}

.main1-1{
	width: 1060px;
}
.title-00{
	padding-bottom: 33px;
}
.title-00-1{
	font-size: 18px;
	color: #005dad;
	opacity: 0.7;
	text-transform: uppercase;
	font-family: "Georgia";
	line-height: 1;
}

.title-00-2{
	font-size: 36px;
	color: #222;
	font-weight: bold;
	line-height: 1;
	margin-top: 8px;
}

.title-00 .fr{
	white-space: nowrap;
	padding-right: 70px;
	position: relative;
	margin-top: 35px;
}
.title-00 .fr::after{
	position: absolute;
	width: 62px;
	height: 13px;
	content:"";
	right: 0;
	top: 50%;
	margin-top: -6px;
	background-repeat: no-repeat;
	background-position: right center;
	background-image: url(../images/fr.png);
}
.title-00 .fr a:hover{
	color: #0762b6;
}

.main-div{
	padding: 20px;
	background-color: #fff;
	box-shadow: 0px 0px 10px 2px rgba(3, 67, 132, 0.13);
}

.main1-1-item{
	padding-bottom: 125px;
	position: relative;
}
.main1-1-pic-wp{
	width: 612px;
	margin-right: 25px;
}

.main1-1-pic .imgbox_a{
	padding-bottom: 66.83%;
}

.main1-con{
	position: absolute;
	left: 15px;
	right: 15px;
	height: 155px;
	background-color: #fff;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	z-index: 30;
	bottom: 0;
	padding: 22px 35px 0;
}

.main1-h1{
	font-size: 20px;
	color: #222;
	font-weight: bold;
	line-height: 1.6;
	height: 3.2em;
	overflow: hidden;
}
.main1-h1 a:hover{
	color: #0762b6;
}
.fmain1 .flex-control-paging li a{
	width: 20px;
	height: 20px;
	background-image: url(../images/arrow-b2.png);
}
.fmain1 .flex-control-paging li a.flex-active {
    background-image: url(../images/arrow-b2-h.png);
}

.fmain1 .flex-control-nav li{
	margin:0 3px;
}


.fmain1 .flex-control-nav{
	height: 0;
	bottom: 35px;
}

.fmain1 .flex-direction-nav .flex-prev{
	width: 33px;
	height: 33px;
	top: auto;
	margin-top: 0;
	bottom: 8px;
	left: 170px;
	border-radius: 50%;
	box-shadow: 0 0 10px 1px rgba(0,0,0,0.15);
}
.fmain1 .flex-direction-nav .flex-next{
	width: 33px;
	height: 33px;
	top: auto;
	margin-top: 0;
	bottom: 8px;
	right: 170px;
	border-radius: 50%;
	box-shadow: 0 0 10px 1px rgba(0,0,0,0.15);
}

.main1-1-list{
	overflow: hidden;
}

.main1-1-list dl{
	margin:0;
}
.main1-1-list dd{
	padding-left: 35px;
	background-image: url(../images/dd1.png);
	background-repeat: no-repeat;
	background-position: 0 18px;
}

.main1-1-list-item{
	border-bottom: 1px dashed #ebecec;
	padding: 15px 0 12px;
}

.main1-h2{
	font-size: 18px;
	color: #222;
	line-height: 1.5;
	height: 3em;
	overflow: hidden;
}
.main1-h3{
	font-size: 16px;
	color: #0062b2;
	margin-top: 2px;
}

.main1-1-list dd:hover{
	background-image: url(../images/dd1h.png);
}
.main1-1-list dd:hover .main1-h2{
	color: #0762b6;
	font-weight: bold;
}

.main1-2{
	width: 480px;
}

.main1-2-list dl{
	margin:0;
}
.main1-2-list dd+dd{
	margin-top: 20px;
	padding-top: 19px;
	border-top: 1px solid #f1f0f0;
}

.main1-2-date{
	width: 75px;
	height: 75px;
	background-color: #f4f4f4;
	border-radius: 3px;
	text-align: center;
	margin-right: 30px;
	padding-top: 11px;
}
.main1-2-date1{
	font-size: 30px;
	color: #005dad;
	line-height: 1;
	font-weight: bold;
}
.main1-2-date2{
	font-size: 13px;
	color: #005dad;
	line-height: 1;
	margin-top: 5px;
}

.main1-2-con{
	overflow: hidden;
	padding-top: 7px;
}

.main1-2-a{
	font-size: 18px;
	color: #222;
	line-height: 1.7;
	height: 3.4em;
	overflow: hidden;
}
.main1-2-a a:hover{
	color: #0762b6;
	font-weight: bold;
}


.main2{
	background-image: url(../images/main2-bg.jpg);
	padding: 70px 0 110px;
}

.main2-1{
	width: 48%;
}
.main2-list{
	padding: 0 20px 30px;
}
.main2-list dl{
	margin:0;
}

.main2-list dd{
	position: relative;
	font-size: 18px;
	color: #222;
	height: 57px;
	line-height: 56px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-left: 22px;
	background-repeat: no-repeat;
	background-position: 2px center;
	background-image: url(../images/dian1.jpg);
	padding-right: 105px;
	border-bottom: 1px dashed #cccccc;
}
.main2-list dd:hover{
	background-image: url(../images/dian1h.jpg);
}
.main2-list dd:hover a{
	color: #0762b6;
}
.main2-list dd span.span_001{
	position: absolute;
	right:7px;
	top: 0;
	font-size: 16px;
	color: #999;
}


.main2 .main-div{
	border-top: 4px solid #0d6bc2;
}


.main3{
	background-image: url(../images/main3-bg.jpg);
	padding: 50px 0 85px;
}


.tui-pic{
	width: 288px;
	margin-right: 25px
}
.tui-pic .imgbox_a{
	padding-bottom: 70.83333%;
}
.tui-con{
	overflow: hidden;
	padding-top: 15px;
}

.tui-h1{
	font-size: 18px;
	color: #222;
	line-height: 1.6;
	height: 3.2em;
	overflow: hidden;
}
.tui-h1 a:hover{
	color: #0762b6;
}
.tui-p{
	font-size: 16px;
	color: #999;
	line-height: 1.6;
	height: 3.2em;
	overflow: hidden;
	margin-top: 10px;
}
.tui-h2{
	font-size: 16px;
	color: #999;
	margin-top: 22px;
}
.tui-h2 img{
	margin-top: -3px;
	margin-right: 8px;
}
.main3-list{
	position: relative;
	margin-top: 23px;
	padding-top: 23px;
	padding-bottom: 20px;
}
.main3-list::before{
	position: absolute;
	left: -20px;
	right: -20px;
	top: 0;
	height: 1px;
	content:"";
	background-color: #d9e0e6;
}
.main3-list dl{
	margin:0;
}

.main3-list dd{
	position: relative;
	font-size: 18px;
	color: #222;
	height: 20px;
	line-height: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-left: 35px;
	background-repeat: no-repeat;
	background-position: 5px center;
	background-image: url(../images/shu.png);
	padding-right: 60px;
}
.main3-list dd+dd{
	margin-top: 20px;
}
.main3-list dd a:hover{
	color: #0762b6;
}
.main3-list dd span.span_002{
	position: absolute;
	right:0px;
	top: 0;
	font-size: 16px;
	color: #222;
}


.title-00x .title-00-1{
	color: #222;
}


.main4{
	background-image: url(../images/main4-bg.jpg);
	padding: 60px 0 105px;
}

.main5{
	background-image: url(../images/main5-bg.jpg);
	padding: 65px 0 100px;
}

.title-00.title-00-hua .fr{display: none;}
.title-00.title-00-hua .fr.frr{display: block;}

.title-00.title-00-hua .fl{
	cursor: pointer;
	position: relative;
}
.title-00.title-00-hua .fl.cur .title-00-2{opacity: 0.53;}
.title-00.title-00-hua .fl+.fl{
	margin-left: 55px;
}
.title-00.title-00-hua .fl+.fl::before{
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #d8dce3;
	content:"";
	left: -30px;
}

.main5-list-div-wp{
	margin-top: 7px;
	position: relative;
	margin-left: -10px;
	margin-right: -10px;
}

.main5-list-div{
	position: absolute;
	width: 100%;
	left: 1500%;
	top: 0;
}

.main5-list-div.cur{
	position: relative;
	left: 0;
}
.main5-list .item{
	padding: 10px;

}
.main5-item{
	background-color: #fff;
	padding: 10px 10px 20px;
	box-shadow: 0px 0px 10px 2px rgba(3, 67, 132, 0.13);
}

.main5-list1 .main5-pic .imgbox_a{
	padding-bottom: 125%;
}
.main5-list2 .main5-pic .imgbox_a{
	padding-bottom: 73%;
}
.main5-h1{
	font-size: 18px;
	color: #222;
	line-height: 1.5;
	height: 3em;
	overflow: hidden;
	margin-top: 15px;
	padding: 0 5px;
}
.main5-item:hover .main5-h1{
	color: #236fb7;
}

.main5-list .owl-nav button.owl-prev{
  position: absolute;
  left:-50px;
  top: 50%;
  margin-top: -7px;
  width: 9px;
  height: 15px;
  background-image: url(../images/left.png);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center ;
  font-size: 0;
  z-index: 50;
}

.main5-list .owl-nav button.owl-next{
  position: absolute;
  right:-50px;
  top: 50%;
  margin-top: -7px;
  width: 9px;
  height: 15px;
  background-image: url(../images/right.png);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center ;font-size: 0;
  z-index: 50;
}


body{
	overflow-x: hidden;
}

/**************************************************************/
/*main-over*/





/*footer-start*/
/**************************************************************/

#footer{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../images/footer-bg.jpg);
}
.footer-1{
	padding: 60px 0 35px;
}

.foo1-1{
	width: 620px;
	margin-right: 40px;
}

.foo-logo{
	width: 293px;
}

.foo-logo a,.foo-logo img{
	display: block;
	width: 100%;
}

.foo1-1-list{
	margin-top: 33px;
}

.foo1-1-list dl{
	margin:0;
}
.foo1-1-list dd{
	font-size: 16px;
	color: #fff;
	line-height: 2;
}

.er{
	font-size: 16px;
	color: #fff;
	text-align: center;
	margin-top: 23px;
	margin-left: 185px;
}
.er img{
	display: block;
	width: 132px;
	margin:0 auto 15px;
}

.foo1-1-con{
	overflow: hidden;
}

.foo1-1-con p{
	margin:0;
}
.foo1-2{
	overflow: hidden;
	padding-top: 20px;
}
.foo1-2-h1 img{
	margin-top: -3px;
	margin-right: 8px;
}
.foo1-2-h1{
	font-size: 16px;
	color: #fff;
}

.foo1-2-dl dl{
	margin:0;
	margin-left: -3%;
}

.foo1-2-dl dd{
	float: left;
	width: 47%;
	margin-left: 3%;
	margin-top: 3%;
}
.foo1-2-dl dd select:focus{
	outline: none;
}
.foo1-2-dl dd select{
	display: block;
	width: 100%;
	height: 46px;
	border:0;
	border-radius: 4px;
	background-color: #b1c6e0;
	font-size: 16px;
	padding-left: 15px;
}




.footer-2{
	padding:15px 0;
	border-top: 1px solid rgba(255,255,255,0.2);
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
}


/**************************************************************/
/*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: #0d67cb;

}
.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: 300px;
    margin-left: 15px;
    margin-top: 21px;
}

.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: 499px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.erji{
	min-height: 1000px;
	background-repeat: no-repeat;
	background-position: center 100%;
	background-image: url(../images/erji-bg.jpg);
	position: relative;
	z-index: 100;
	background-color: #f7f9ff;
}


.menu{
	width: 280px;
	margin-top: -112px;
	background-color: #0d67ca;
}

.menu-h1{
	height: 112px;
	line-height: 112px;
	font-size: 34px;
	color: #fff;
	text-align: center;
	background-image: url(../images/menu-h1.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.menu-list{
	border-top: 1px solid #2879d2;
	padding: 40px;
}
.menu-list dl{
	margin:0;
}

.menu-list dd+dd{
	margin-top: 25px;
}
.menu-list dd{
	font-size: 18px;
	color: #9ec2e9;
	line-height: 20px;
	padding-right: 10px;
	background-repeat: no-repeat;
	background-position: 192px 5px;
	background-image: url(../images/jt2.png);
	position: relative;
}
.menu-list dd.cur{
	background-image: url(../images/jt2h.png);
	padding-left: 55px;
	font-size: 20px;
	color: #fff;
}

.menu-list dd.cur::before{
	width: 40px;
	position: absolute;
	left: 0;
	top: 9px;
	content:"";
	background-color: #fff;
	height: 1px;
}


.menu-list dd a:hover{
	color: #fff;
}



.erji-content{
	width: 1260px;
	padding: 40px 0 45px;
}

.erji-title{
	border-bottom: 1px solid #eae9e9
}

.erji-title .fl{
	line-height: 1;
	padding-bottom: 25px;
	border-bottom: 3px solid #0762b6;
	font-size: 26px;
	color: #333;
	font-weight: bold;
}

.mianbaoxie{
	font-size: 14px;
	color: #666;
	padding-left: 26px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/fang.png);
	margin-top: 10px;
}
.tongzhi-list{
	padding-top: 27px;
}
.tongzhi-list dl{
	margin:0;
}

.tongzhi-list dd{
	padding: 23px 0;
	border-bottom: 1px dashed #c7ced9;
}

.tongzhi-date{
	width: 80px;
	height: 77px;
	background-color: #fff;
	border-top: 2px solid #1a478d;
	text-align: center;
	line-height: 1;
	padding-top: 10px;
	margin-right: 30px;
}

.tongzhi-date1{
	font-size: 30px;
	color: #1a478d;
	font-style: italic;
}
.tongzhi-date2{
	font-size: 14px;
	color: #1a478d;
	font-style: italic;
	margin-top: 7px;
}

.tongzhi-con{
	overflow: hidden;
	padding-top: 21px;
}

.tongzhi-a{
	font-size: 20px;
	color: #222;
}

.tongzhi-list dd:hover .tongzhi-date{background-color: #0762b6;border-color:#4494eb;}
.tongzhi-list dd:hover .tongzhi-date1{color: #fff;}
.tongzhi-list dd:hover .tongzhi-date2{color: #fff;}
.tongzhi-list dd:hover .tongzhi-a{color: #1a478d;}

.tongzhi-a a:hover{
	font-weight: bold;
}

.fenye{
	text-align: center;
	margin-top:60px;
}
.fenye ul{
	margin:0;
}

.erji-div{
	margin-top: 50px;
}

.danpian-h1{
	font-size: 32px;
	color: #333;
	text-align: center;
}
.danpian-h2{
	font-size: 14px;
	color: #999;
	margin-top: 13px;
	text-align: center;
}

.danpian-con{
	margin:30px 0;
	padding: 30px 0;
	border-top: 1px solid #e7e7e7;
	border-bottom: 1px dashed #d6d8db;
}

.danpian-con *{
	font-size: 18px!important;
	color: #333!important;
	line-height: 2!important;
}

.danpian-con img{
	display: block;
	margin:0 auto 10px;
}

.danpian-page{
	font-size: 16px;
	color: #333;
}
.danpian-page .fl,
.danpian-page .fr{
	max-width: 48%;
}
.danpian-page a:hover{
	color: #0d66d5;
}

.dongtai-list{
	padding-top: 5px;
}
.dongtai-list dl{
	margin:0;
}

.dongtai-list dd{
	padding: 35px 0;
	border-bottom: 1px dashed #c7ced9;
}

.dongtai-item{
	position: relative;
}

.dongtai-pic{
	width:251px;
	margin-right: 57px;
}

.dongtai-pic .imgbox_a{
	padding-bottom: 72%;
}

.dongtai-con{
	overflow: hidden;
	padding-top: 23px;
}

.dongtai-h1{
	font-size: 22px;
	color: #333;
}

.dongtai-h1 a:hover{
	color: #0762b6;
}

.dongtai-p{
	font-size: 16px;
	color: #666;
	line-height: 2;
	height: 4em;
	overflow: hidden;
	margin-top: 35px;
}


.dongtai-date{
	position: absolute;
	width: 72px;
	height: 70px;
	border-radius: 4px;
	background-color: #0762b6;
	text-align: center;
	top: 50%;
	margin-top: -35px;
	left: 220px;
	z-index: 50;
	padding-top: 8px;
}

.dongtai-date1{
	font-size: 30px;
	color: #fff;
	line-height: 1;
}

.dongtai-date2{
	font-size: 13px;
	color: #fff;
	margin-top: 6px;
	line-height: 1;
}

.main5-phone-div+.main5-phone-div{
		margin-top: 30px;
	}



.list03 dl{
	margin:0;
}

.list03 dd{
	float: left;
	width: 50%;
	padding: 35px 0;
	border-bottom: 1px solid #ddd;
}
.list03 dd:nth-child(odd){
	padding-right: 40px;
}
.list03 dd:nth-child(even){
	padding-left: 40px;
}
.list03-pic{
	width: 160px;
	margin-right: 30px;
}

.list03-pic .imgbox_a{
	padding-bottom: 125%;
}

.list03-con{
	padding-top: 8px;
}

.list03-h1{
	font-size: 22px;
	color: #333;
	font-weight: bold;
}

.list03-h1 a:hover{
	color: #0d67ca;
}

.list03-h2{
	font-size: 18px;
	color: #333;
	margin-top: 8px;
}

.list03-p{
	font-size: 16px;
	color: #666;
	line-height: 2;
	height: 4em;
	overflow:hidden;
	margin-top: 10px;
}

.list03-a{
	margin-top: 22px;
	font-size: 14px;
	color: #666;
	white-space: nowrap;
}
.list03-a img{
	margin-top: -3px;
	margin-left: 5px;
}
.list03-a a:hover{
	color: #0d67ca;
}



.fagui-list dl{
	margin:0;
	padding-top: 10px;
}

.fagui-list dd{
	position: relative;
	padding-right: 125px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: 18px;
	color: #333;
	height:60px;
	line-height: 59px;
	background-image: url(../images/dian1.png);
	background-repeat: no-repeat;
	background-position: 2px center;
	padding-left: 22px;
	border-bottom: 1px dashed #d7d7d7;
}
.fagui-list dd a:hover{
	color: #0e68c1;
}
.fagui-list dd span.span_001{
	position: absolute;
	right:25px;
	top: 0;
	font-size: 16px;
	color: #999;
}