/*CSS样式重写*/
body,p,h1,h2,h3,h4,h5,h6,ul,li,dl,dt,dd,pre{
    margin:0;
    padding:0;
    border:none;
    list-style:none;
    box-sizing: border-box;
}
body{
    font-family: "microsoft yahei","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #333;
    min-width: 1200px;
}
a{
    color: #333;
    text-decoration:none;
    transition: .3s;
}
a:hover{
  	color: #005C9E ;
    text-decoration:none;
}
input,button{
    outline:0;
}
img{
    vertical-align: middle;
    border: 0;
}
.ellipsis-2 {  overflow:hidden; display: -webkit-box; -webkit-line-clamp: 2; max-height: 3.4em; -webkit-box-orient: vertical;}
/*通用样式*/
.lf{
    float: left;
}
.rt{
    float: right;
}
.active{
    display: block;
}
.container{
    width: 1380px;
    margin: 0 auto;
    position: relative;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.ptbox {
	position: relative;
}

.ptbox .inner {
	overflow: hidden;
	padding-bottom: 64%;
	position: relative;
}

.ptbox .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.ptbox .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 0.3s ease-out 0s;
}

.ptbox .pic:hover .img {
	transform: scale(1.1);
}

.ptbox .img a {
	display: block;
	height: 100%;
}
/* 列表带短横线 */
.list1 li {
	padding:12px 0;
	display: flex;
	align-items: center;
	position: relative;
	border-bottom: 1px solid #e8e8e8;
}
.list1 li::before{
	display: block;
	content: '';
	width:7px;
	height: 7px;
	background-color: #E5E5E5;
	margin-right: 8px;
}
.list1 li span {
	margin-left: 25px;
	color: #888;
}

.list1 li a {
	color: #000;
	flex: 1;
}
.list3{
   display:flex;
   flex-wrap:wrap;
   margin-bottom: 20px;
}
.list3 li{
	display: inline-flex;
	padding: 0px 35px 10px 5px;
	font-size: 16px;
	align-items: center;
    width:20%;
}
.list3 li::before{
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: #324ac2;
	margin-right: 10px;
	border-radius: 50%;
}
table { border-collapse: collapse; border-spacing: 0 }

/*头部*/
.header .top{
    height: 150px;
    position: relative;
  	background:url(../images/headerbg.jpg) no-repeat center bottom;
      background-size: cover;
}
.header .logo{
    width: 100%;
    line-height: 150px;
}
/*导航栏*/
.nav{
    height: 55px;
    background: #F7F7F7;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.12), 0 5px 12px 4px rgba(0,0,0,0.1);
}
.menu{
    display: flex;
}
.menu>li{
    flex:1;
    position: relative;
}
.menu>li:nth-child(5){
  	width: 180px;
}
.menu>li>a{
    position: relative;
    display: block;
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    text-align: center;
}
.menu>li>a:after{
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    right: -1px;
    border-right: 1px dotted #B1B1B1;
}
.menu>li:hover>a{
    color: #fff;
    text-decoration: none;
  	background: #5F7ADB ;
   /* background: #186345;*/
}
.menu>li:last-child>a:after,
.menu>li:hover>a:after {
    display: none;
}

.menu .sub-menu{
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.8);
    z-index: 9999;
    display: none;
    box-shadow: inset 0 -1px 0 0 rgba(123,147,167,0.10);
}
.menu .sub-menu li a{
    display: block;
    color: #333;
    font-size: 16px;
    height: 45px;
    line-height: 45px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid #eee;
}
.menu .sub-menu li a:hover{
    background: rgba(95,122,219,0.80);
    text-decoration: none;
    color: #fff;
}

.search{
    float: right;
    position: relative;
    top: 24px;
}
.search>p{
    margin-bottom: 16px;
    padding-left: 20px;
    color: #fff;
    text-align: right;
}
.search>p>a{
    color: #fff;
    margin: 0 3px;
}
.search .form{
    background-color: #fff;
    padding: 2px 10px;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
	position: relative;
	border-radius: 20px;
}
.search input[type='text']{
    width: 196px;
    height: 33px;
    line-height: 33px;
    padding: 0 30px 0 10px;
    border: 0;
}
.search .searchbtn{
    position: absolute;
    top: 0;
	bottom: 0;
    right: 10px;
	width:25px;
	background: url(../images/search.png) no-repeat center;
	border: 0 none;
	cursor: pointer;
}

.section{
    min-height: 500px;
}
.flexbox{
	display: flex;
}
/*尾部*/
.footer{
    padding : 35px 0 20px;
    color: #fff;
    line-height: 1.8;
	background-color: #6178D6;
	
}
.footer .container>p{
	text-align: center;
	padding-top: 25px;
}
.footerL{
	flex: 1;
	padding-right: 30px;
}
.footerL dl{
	display: flex;
}
.footerL dl dt{
	width: 180px;
	font-size: 24px;
}
.footerL dl dd{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	padding-top: 5px;
}
.footerL dl dd a{
	display: inline-flex;
	width: 33.33%;
	padding:2px 0;
}
.footerR{
	background: url(../images/flogo.png) no-repeat;
	padding-left: 104px;
	height:98px;
	font-size: 14px;
	line-height: 2;
	margin: 0 auto;
}
.footer a{color: #fff;}