* {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'SAlibaba-PuHuiTi';
	src: url('font/Alibaba-PuHuiTi-Regular.otf');
}

body {
	background-color: whitesmoke;
	font-size: 13px;
	font-family: 'Alibaba-PuHuiTi';
	line-height: 1.5em; 
	color: black;
	min-width: 1190px;
}

.w {
	width: 1190px;
}


header,
footer {
	padding: 9px 9px;
	background: #28292aa8;
	display: flex;
	justify-content: center;
}

.header,
.footer {
	color: #c4c7c5;
	font-size: 11px;
	display: flex;
	justify-content: space-between;
} 
a,
a:link {
	color:#c4c7c5;
}

a:hover {
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}
.header a
{
	margin: 0 0.5rem;
}
nav {
	margin: 0 auto 1em auto;
	display: flex;
	justify-content: space-between;
}

.logo {
	margin: 5px;
	width: 120px;
	height: 60px;
	background-image: url(../images/logo_blue_128.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.menu {
	display: flex;
}

.menu a {
	margin: -0.3em 0.5em 0 0;
	border-radius: 0.2em; 
	color: #595957;
	font-size: 22px;
	padding: 35px 10px 3px 10px;
	transition: all 300ms;
}


.menu a:hover {
	z-index: 9;
	background-color: #008eda;
	color: #E5E4DF;
	border-radius: 0.2em;
	box-shadow: 10px 10px 12px grey;
	transform: translateY(-3px);
}

 
 