/* <!-- top --> */
.headTopTime{
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	background-color: #fff;
	border-bottom: 1px solid #d1dce6;
}
.headTopTime .mainsVw{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/* 日期 */
.headTopTime .dateTime{
	width: 48%;
	color: #666;
	display: flex;
}
.headTopTime .dateTime .imag{
	width: 15px;
	height: 15px;
	margin-right: 10px;
	vertical-align: middle;
}
.headTopTime .contactMode{
	width: 48%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.headTopTime .contactMode a{
	font-size: 14px;
	color: #1a5284;
}
.headTopTime .contactMode a img{
	width: 17px;
	height: 17px;
	margin: 0 2px 0 20px;
	vertical-align: middle;
}
.headTopTime .contactMode .wxlist{
	position: relative;
}
.headTopTime .contactMode .wxlist .wxlistBox:hover + .absoluteBox{
	display: block;
}
.headTopTime .contactMode .wxlist .absoluteBox{
	position: absolute;
	display: none;
	z-index: 100;
}
.headTopTime .contactMode .wxlist .absoluteBox img{
	width: 100px;
	height: 100px;
	margin-top: 5px;
}

/* <!-- Mid logo+搜索 --> */
.headMid{
	width: 100%;
	padding: 28px 0;
	background-image: url(../images/topbgnew.jpg);
	background-size:cover;
	-moz-background-size:cover; /* 老版本的 Firefox */
	background-repeat:no-repeat;
}
.headMid .mainsVw{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.headMid .midLogo{
	width: 60%;
}
.headMid .midsearch{
	width: 35%;
}
.headMid .midsearch .keyword{
	width: 100%;
	margin-bottom: 8px;
	display: flex;
	font-size: 14px;
	color: #333;
}
.headMid .midsearch .keyword a{
	margin: 0 6px;
}
.headMid .midsearch .keyword a:hover{
	color: #1a5284;
}

.headMid .midsearch .form{
	width: 100%;
	vertical-align: middle;
	/* background-color: red; */
}
.headMid .midsearch .form input{
	border: none;
	outline: none;
	text-indent: 20px;
	width: 82%;
	padding: 12.5px 0;
	background-color: #fff;
	vertical-align: middle;

}
.headMid .midsearch .form button{
	border: none;
	outline: none;
	margin-left: -4%;
	padding: 10.5px 6%;
	background-color: #1a5284;
	vertical-align: middle;
	cursor: pointer;
}

/* nav 导航栏 */
.headNav{
	width: 100%;
	position: relative;
	z-index: 99;
	background-color: #1a5284;
}
.headNav .nav{
	width: 100%;
	display: flex;
}
.headNav .nav>li{
	width: 15%;
	position: relative;
	padding: 14px 0;
	transition: all 0.5s;
}
.headNav .nav>li.action{
	background-color: #154977;
}
.headNav .nav>li:hover{
	background-color: #154977;
}
.headNav .nav>li>a{
	display: flex;
	justify-content: center;
	padding: 3px 0;
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	transition: all 0.5s;
	border-right: 1px solid #4776a0;
}
.headNav .nav>li>a:hover{
	border-right: 1px solid #1a5284;
}
.headNav .nav>li.action>a{
	border-right: 1px solid #1a5284;
}

.headNav .nav .iconImg{
	width: 20px;
	height: 20px;
	position: relative;
	margin-right: 5%;
}
.headNav .nav .iconImg img:nth-child(2){
	width: 100%;
	position: absolute;
	left: 0;
	top: 1px;
	opacity: 0;
	transition: all 0.5s;
}
.headNav .nav>li>a:hover .iconImg img:nth-child(2){
	opacity: 1;
}
/* 二级导航栏 */
.headNav .nav>li .absoluteBox{
        position: absolute;
        width: 100%;
        height: auto;
        top: 53px;
        display: none;
        border: 1px solid #1a5284;
        text-align: center;
        background-color: #1a5284;
}
.headNav .nav>li .absoluteBox ol li{
        border-bottom: 1px solid #ddd;
        list-style-type: none;
}
.headNav .nav>li .absoluteBox ol li:hover{
        background-color: #194770;
}
.headNav .nav>li .absoluteBox ol li:last-child{
        border-bottom: none;
}
.headNav .nav>li .absoluteBox a{
        color: #fff;
        padding: 12px 0;
        font-size: 15px;
}


/* 隐藏 手机端 */
.mobileTop{
	width: 100%;
	display: none;
}
@media (max-width: 992px) {
    /* 二级导航栏 */
    .headNav .nav>li .absoluteBox{
            display: none;
    }
	.headTopTime,.headMid{
		display: none;
	}
	.header{
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 99999;
	}
	/* 导航栏 */
	.headNav{
		display: none;
		background-color: #11497c;
                padding-bottom: 16px;
	}
	.headNav .mainsVw{
		width: 100%;
	}
	.headNav .nav{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.headNav .nav li:first-child{
		width: 100%;
		padding: 10px 0;
	}
	.headNav .nav li:first-child a{
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		justify-content: center;
	}
	.headNav .nav li:first-child .iconImg{
		margin: 0;
		margin-right: 5px;
	}
	.headNav .nav li:first-child a span{
		width: auto;
		text-align: left;
	}
	.headNav .nav li{
		width: 33%;
		padding: 12px 0;
		border-top: 1px solid #4776a0;
		border-bottom: none;
		transition: all 0.5s;
	}
	.headNav .nav li:nth-child(3n+3){
		border-left: 1px solid #4776a0;
		border-right: 1px solid #4776a0;
	}
	.headNav .nav li a{
		display: flex;
		flex-wrap: wrap;
		border-right: none;
		font-weight: initial;
		font-size: 15px;
	}
	.headNav .nav li a span{
		width: 100%;
		text-align: center;
	}
	.headNav .nav .iconImg{
		width: 25px;
		height: 25px;
		margin: 0 auto;
		margin-bottom: 10px;
	}


	/* 手机端  */

	.mobileTop{
		width: 100%;
		display: block;
	}

	/* 头部 logo+三横 */
	.mobileTop .moblieMid{
		width: 100%;
		background-color: #1a5284;
	}
	.mobileTop .moblieMid .mainsVw{
		width: 95%;
		padding: 10px 0;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.mobileTop .moblieMid .midLogo{
		width: calc(100% - 60px);
	}
	/* 三横 */
	.menuBtn{
		width: 50px;
		padding: 10px 0;
		position: relative;
		cursor: pointer;
		z-index: 9;
		display: block;
	}
	.menuBtn span{
		display: block;
		width: 25px;
		height: 2px;
		background-color: #fff;
		border-radius: 5px;
		margin: 6px auto;
		transition: all 0.5s;
	}

	/* 搜索 */
	.mobileTop .midsearch{
		width: 100%;
		display: none;
		background-color: #11497c;
	}
	.mobileTop .midsearch .mainsVw{
		width: 92%;
		margin: 0 auto;
		padding: 20px 0;
		display: flex;
		flex-wrap: wrap;
	}
	.mobileTop .midsearch .keyword{
		width: 100%;
		margin-bottom: 10px;
		display: flex;
		font-size: 12px;
		color: #fff;
	}
	.mobileTop .midsearch .keyword a{
		margin: 0 6px;
		color: #fff;
	}
	.mobileTop .midsearch .keyword a:hover{
		color: #1a5284;
	}

	.mobileTop .midsearch .form{
		width: 100%;
		padding: 8px 0;
		border-radius: 30px;
		background-color: #1a5284;
	}
	.mobileTop .midsearch .form input{
		outline: none;
		border: none;
		color: #fff;
		text-indent: 20px;
		background-color: #1A5284;
		width: calc(100% - 80px);
	}
	input::-webkit-input-placeholder{
		color:#48759d;
	}
	input::-moz-placeholder{   /* Mozilla Firefox 19+ */
		color:#48759d;
	}
	input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
		color:#48759d;
	}
	input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
		color:#9fc6ea;
	}
	.mobileTop .midsearch .form button{
		width: 60px;
		outline: none;
		border: none;
		cursor: pointer;
		border-left: 1px solid #48759d;
		background-color: #1A5284;
	}
	.mobileTop .midsearch .form button img{
		width: 20px;
		height: 20px;
	}
}


/* 底部 */
.fonter{
	width: 100%;
	margin-top: 30px;
	text-align: center;
	padding: 32px 0 40px 0;
	font-size: 14px;
	line-height: 28px;
	background-color: #1a5284;
}
.fonter .mainsVw{
	position: relative;
}
.fonter .time,
.fonter .flexlist{
	width: calc(100% - 160px);
	text-align: center;
}

.fonter a{
	display: inline-block;
}
.fonter .time p:hover,
.fonter .time p:hover a,
.fonter .flexlist p:hover,
.fonter .flexlist p:hover a{
	color: #d7e2ec;
}
.fonter .time,
.fonter .time a{
	color: #fff;
}
.fonter .time .list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.fonter .time .list p{
	margin-left: 2%;
}
.fonter .time .list p:first-child{
	margin-left: 0;
}
.fonter .flexlist{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.fonter .flexlist p{
	margin-left: 2%;
	color: #9fc6ea;
}
.fonter .flexlist p:first-child{
	margin-left: 0;
}
.fonter .flexlist a{
	color: #9fc6ea;
}
.fonter .wx{
	position: absolute;
	top: 0;
	right: 0;
	line-height: 26px;
	font-size: 14px;
	color: #9fc6ea;
}
.fonter .wx .wxImg{
	width: 154px;
	height: 154px;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 8px;
}
.fonter .wx p:last-child{
	margin-top: -4px;
}
@media (max-width: 925px) {
	.fonter .wx .wxImg{
		width: 110px;
		height: 110px;
	}
	.fonter .time .list,
	.fonter .flexlist:first-child{
		display: none;
	}
	.fonter .flexlist p{
		display: none;
	}
	.fonter .flexlist:nth-last-child(2) p,
	.fonter .flexlist:nth-last-child(3) p:first-child,
	.fonter .flexlist:nth-last-child(4) p:first-child,
	.fonter .flexlist:nth-last-child(4) p:last-child{
		display: block;
	}
	.fonter .flexlist:last-child p{
		display: block;
	}
}
@media (max-width: 760px) {
	.fonter{
		padding: 30px 0;
	}
	.fonter .wx{
		position: relative;
		width: 100%;
		display: flex;
		text-align: left;
		margin-bottom: 10px;
	}
	.fonter .wx .wxImg{
		width: 130px;
		height: 130px;
		text-align: left;
		margin: 0;
		margin-right: 10px;
		margin-bottom: 0px;
	}
	.fonter .flexlist{
		width: 100%;
		justify-content: flex-start;
	}

	.fonter .time{
		display: none;
	}
	.fonter .flexlist p{
		margin-right: 2%;
		margin-left: 0;
	}
	.fonter .flexlist:nth-last-child(2) p,
	.fonter .flexlist:nth-last-child(3) p:first-child{
		display: none;
	}
}



/* 悬浮窗 */
.suspensionWindow{
	position: fixed;
	top: 50%;
	right: 4%;
	text-align: right;
	width: 50px;
	z-index: 1000;
}
.suspensionWindow li{
	position: relative;
	margin-bottom: 5px;
}
.suspensionWindow li:last-child{
	display: none;
}
.suspensionWindow a{
	width: 50px;
	height: 50px;
	text-align: right;
	margin: 0 0 0 auto;
	border: 1px solid #9fc6ea;
        border-radius: 5px;
}
.suspensionWindow a img{
	width: 50px;
	height: 50px;
	text-align: right;
	margin: 0 auto 0 auto;
}
.suspensionWindow li .absoluteBox{
	position: absolute;
	left: 0;
	width: calc(100% - 60px);
	display: none;
	top: -280px;
}
.suspensionWindow li a:hover+.absoluteBox{
	display: block;
}
.suspensionWindow li a:hover+.absoluteBox img{
	max-width: 400px;
}
.suspensionWindow li #getTop img:last-child{
	display: none;
}
@media (max-width: 992px) {
	.suspensionWindow{
		top: 85%;
		right: 0;
	}
	.suspensionWindow li{
		display: none;
	}
	.suspensionWindow li:last-child{
		display: block;
		display: block;
	}
	.suspensionWindow li #getTop img:first-child{
		display: none;
	}
	.suspensionWindow a{
                width: 45px;
                height: 45px;
                border: 1px solid #9fc6ea;
                border-radius: 50%;
        }
	.suspensionWindow li #getTop img:last-child{
		display: block;
		width: 45px;
		height: 45px;
	}
}
	