

html {
	font-size: 16px;
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-track {
	/* border-radius: 10px; */
	background-color: #E2E2E2;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #555;
}

::selection {
	background-color: #1A2C5C;
	color: #fff;
}

::-moz-selection {
	background-color: #1A2C5C;
	color: #fff;
}

::-webkit-selection {
	background-color: #1A2C5C;
	color: #fff;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}

body {
	font-family: 'Lato', "Microsoft YaHei", sans-serif;
	min-width: 1200px;
	font-size: 14px;
}

:focus {
	outline: 1;
}

li {
	list-style: none;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	outline: 0;
}

a {
	text-decoration: none;
	color: #666;
	outline: 0;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}

/* header开始 */
header {
	height: 120px;
	display: flex;
	flex-direction: column;
}
header > section#top {
	height: 30px;
	background-color: #1a2c5c;
	color: #f2f2f2;
	/* font-size: 13px; */
}
header > section#top > .top {
	height: inherit;
	width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header > section#top > .top > div {
	height: inherit;
	display: flex;
	align-items: center;
}
header > section#top > .top > div > img {
	width: 20px;
	margin-right: 3px;
}
header > nav {
	height: 90px;
	flex: 1;
	/* outline: 1px solid red; */
	box-shadow: 0 3px 10px #d2d2d2;
	z-index: 999;
}
header > nav > .nav {
	height: inherit;
	width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
header > nav > .nav > .logo {
	height: inherit;
	display: flex;
	align-items: center;
}
header > nav > .nav > ul#nav {
	display: flex;
	flex: 1;
}
header > nav > .nav > ul#nav > li.nLi {
	width: 16.66666%;
	display: flex;
	flex-direction: column;
	position: relative;
}
header > nav > .nav > ul#nav > li.nLi > a {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	font-size: 16px;
}
header > nav > .nav > ul#nav > li.nLi > a:hover {
	color: #1A2C5C;
	font-weight: 600;
}
header > nav > .nav > ul#nav > li.nLi.on > a {
	color: #1A2C5C;
	font-weight: 600;
}
header > nav > .nav > ul#nav > li.nLi > ul.sub {
	display: none;
	position: absolute;
	top: 90px;
	background-color: rgba(255,255,255,.9);
	width: 100%;
	z-index: 9;
}
header > nav > .nav > ul#nav > li.nLi > ul.sub > li {
	width: 100%;
	display: flex;
}
header > nav > .nav > ul#nav > li.nLi > ul.sub > li > a {
	height: 45px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	/* color: #f2f2f2; */
}
header > nav > .nav > ul#nav > li.nLi > ul.sub > li > a:hover {
	background-color: #1A2C5C;
	color: #f2f2f2;
}
/* header结束 */

/* footer开始 */
footer {
	/* height: 200px; */
	background-color: #313131;
}
footer > .footer {
	padding: 30px 35px;
	box-sizing: border-box;
	width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
footer > .footer > div {
	display: flex;
	flex-direction: column;
}
footer > .footer > div > span {
	font-size: 16px;
	color: #FFFFFF;
	margin-bottom: 15px;
}
footer > .footer > div > a {
	margin-bottom: 10px;
	color: #d2d2d2;
}
footer > .footer > a {
	display: flex;
	flex-direction: column;
	padding-left: 15px;
}
footer > .footer > a > span {
	margin-top: 8px;
	text-align: center;
	color: #d2d2d2;
}
footer > .footer > div > span > a{color: #fff;display: block;}
/* footer结束 */