/* 仅保留独有多浏览器前缀兼容 */
input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

a {
	color: #0090c5;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	color: #444;
	font-weight: 800;
}
h1 a, h2 a, h3 a, h4, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
	outline: 0;
}
b, strong {
	font-weight: 600;
	color: #444;
}
i, em {
	font-style: italic;
}
br.clear {
	clear: both;
}
sub {
	position: relative;
	top: 0.5em;
	font-size: 0.8em;
}
sup {
	position: relative;
	top: -0.5em;
	font-size: 0.8em;
}
hr {
	border: 0;
	border-top: solid 1px #eee;
}
blockquote {
	border-left: solid 0.5em #eee;
	padding: 1em 0 1em 2em;
	font-style: italic;
}

/* 容器基础（头部依赖） */
.container {
	margin: 0 auto;
	max-width: 100%;
	width: 1400px;
}
@media screen and (max-width: 1680px) {
	.container {
		width: 1200px;
	}
}
@media screen and (max-width: 1280px) {
	.container {
		width: 960px;
	}
}
@media screen and (max-width: 980px) {
	.container {
		width: 90%;
	}
}
@media screen and (max-width: 736px) {
	.container {
		width: 100%;
	}
}
