/*PC导航*/
.header{
	height: 120px;
	line-height: 120px;
	background: #2F9FAB;
}
.header-left{
	float: left;
}
.header-left img{
	vertical-align: middle;
}
.header-right{
	float: right;
}
.header-right>li{
	float: left;
	height: 40px;
	line-height: 40px;
	margin-top: 40px;
	position: relative;
}
.header-right>li span{
	display: inline-block;
	height: 2px;
	width: 0;
	left: 50%;
	position: absolute;
	bottom: 0;
	background: #fff;
}
.header-right>li:hover span{
	transform: translateX( -50% );
	animation: headerani 1s ease;
    width: 100%; 
}
/*鼠标滑过动效*/
@keyframes headerani {
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
}
.header-right>li>a{
	display: inline-block;
	font-size: 24px;
	color: #fff;
	letter-spacing: 5px;
	height: 20px;
    line-height: 20px;
    padding: 0 15px;
    border-right: 1px solid #fff;
}
.header-right>li:last-child>a{
	border-right: 0;
	padding-right: 0;
}
/*下拉*/
.headerxiala{
	position: absolute;
	top: 40px;
	width: 100%;
	background: #2F9FAB;
	display: none;
    z-index: 1000;
}
.headerxiala li{
	text-align: center;
	height: 45px;
	line-height: 45px;
	border-bottom: 1px dashed #fff;
}
.headerxiala li:first-child{
	height: 40px;
	line-height: 40px;
	border-bottom: 0;
}
.headerxiala li:last-child{
	border-bottom: 0;
}
.headerxiala li a{
	font-size: 16px;
	color: #fff;
	letter-spacing: 2px;
}
.headerxiala li:hover{
	background: #fff;
}
.headerxiala li:hover a{
	color: #2F9FAB;
}
.headerxiala li:first-child:hover{
	background: #2F9FAB;
}

/*手机端*/
.header-nolg{
    width: 100%;
	height: 80px;
	line-height: 80px;
	background: #2F9FAB;
	position: fixed;
	top: 0;
	z-index: 10000;
}
.header-nolglist{
	width: 90%;
	margin: 0 auto;
	position: relative;
}
.header-nolglist img{
	vertical-align: middle;
}
.header-nolglist span{
	position: absolute;
    right: 0;
    top: 30%;
    font-size: 24px;
    width: 34px;
    height: 32px;
    text-align: center;
    background: #fff;
    color: #2F9FAB;
    padding-top: 4px;
    border-radius: 4px;
	
}
.header-nolgnav{
	position: fixed;
	top: 80px;
	background: rgba(0,0,0,.4);
	width: 100%;
	z-index: 10000;
	color: #fff;
	display: none;
}
.header-nolgnav>li{
	border-bottom: 1px solid #fff;
	text-indent:2.5%;
}
.header-nolgnav>li>a{
	display: inline-block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	color: #fff;
	font-size: 16px;
}
.headerxiala-xs{
	display: none;
}
.headerxiala-xs li{
	height: 40px;
	line-height: 40px;
	text-indent: 14%;
	border-bottom: 1px solid #fff;
}
.headerxiala-xs li:last-child{
	border-bottom: 0;
}
.headerxiala-xs li a{
	color: #fff;
	font-size: 14px;
}


/*底部*/
.footerbg{
	padding-top: 20px;
	padding-bottom: 40px;
	background: #2F9FAB;
}
.footer-list{
	text-align: center;
	color: #fff;
	font-size: 12px;
}
.footer-list li{
	height: 24px;
	line-height: 24px;
}
.footer-list li:first-child{
	height: auto;
	line-height: auto;
}
.footer-list li:nth-child(3){
	margin-top: 10px;
}

@media (max-width: 1199px){
	.contentZwc{
		margin-top: 80px;
	}
	.footer-list li:first-child img{
		width: 140px;
		height: 40px;
	}
	
}
@media (min-width: 992px) and (max-width: 1199px) {
	
	
}
@media (min-width: 768px) and (max-width: 991px) {
	
}




@media (max-width: 767px){
	.footerbg{
		padding-bottom: 20px;
	}
	.footer-list li{
		height: auto;
	}
	.footer-list li:nth-child(3){
		margin-top: 4px;
	}
	
}