html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family:"microsoft yahei";
	font-size: 14px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
	box-sizing: border-box;
	/*-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;*/
}
*:focus {
	outline: none;
}
a {
	text-decoration: none;
	color: inherit;
}
button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
strong{
	font-weight: bold;
}
:root {
	--orange-color: #f5a200;
	--green-color: #2c9b45;
	--black-color: #000;
	--ltblue-color: #f3f3f3;
	--greenw-color: #44716d;
}
.container{
	padding: 0px 10%;
}
@media (max-width:992px) {
	.container{
		width: 100%;
		padding: 0px 15px;
	}
}
@keyframes mapscale {
	0% {
		transform: translate(-50%, -50%) scale(0);
		opacity: 0;
	}
	70% {
		opacity: 0.2;
	}
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0;
	}
}