.header {
	height: 86px;
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
	 z-index: 9999;
	 border-bottom: 2px solid #565f85;
}

.head {
	width: 1200px;
	height: 86px;
	margin: 0 auto
}

.tel {
	color: #7bcde7;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-top: 34px;
	font-size: 20px;
}


.logo {
	margin-top: 22px;
	float: left;
}

.nav {
	position: relative;
	left: 50px;
}

.nav>ul>li {
	float: left;
    height: 48px;
    padding-top: 18px;
    line-height: 48px;
    margin: 0px 20px;
    position: relative;
}

.nav>ul>li>a {
	display: block;
	font-size: 16px;
	color: #fff;
}
.nav>ul>li>a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: 100%;
    left: 0;
    background: #fff;
    transition: transform 0.5s;
    transform: scaleX(0);
}
.nav>ul>li>a:hover::after {
    transform: scaleX(1);
    /*transform-origin: left;*/
}
.nav>ul>li.focus>a{
	border-bottom: 3px solid #fff;
}
.subnav {
	position: absolute;
	left: -80px;
	top: 68px;
	z-index: 999;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	width: 220px;
	display: none;
	min-height: 130px;
	padding: 6px;
}

.subnav>li {
	height: 42px;
	line-height: 42px;
	text-align: center;
	width: 41%;
    float: left;
    margin-left: 13px
}

.subnav>li>a {
	display: block;
	height: 100%;
	color: #fff;
	font-size: 14px;
	border-bottom: 1px solid #ddd;
}
.subnav-list>li{
	display: flex;
}
.subnav-list>li>a{
	color: #fff;
	margin-left: 10px;
	font-size: 12px;
}
.subnav-list>li>a:hover{
	color: #2589ff;
}
.subnav-list>li:before{
	content: "▶";
	color: #fff;

}