/* 基础样式 */
html,
body {
	font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
	color: #515a6e;
	background-color: #fff;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*,
:after,
:before {
	box-sizing: border-box;
}

article,
aside,
blockquote,
body,
button,
dd,
details,
div,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
input,
legend,
li,
menu,
nav,
ol,
p,
section,
td,
textarea,
th,
ul {
	margin: 0;
	padding: 0;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

input::-ms-clear,
input::-ms-reveal {
	display: none;
}

a {
	color: #409eff;
	background: transparent;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	transition: color 0.2s ease;
}

a:hover {
	color: #a0cfff;
}

a:active {
	color: #409eff;
}

a:active,
a:hover {
	outline: 0;
	text-decoration: none;
}

a[disabled] {
	color: #ccc;
	cursor: not-allowed;
	pointer-events: none;
}

code,
kbd,
pre,
samp {
	font-family: Consolas, Menlo, Courier, monospace;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: 100%;
}

ol,
ul {
	list-style: none;
}

fieldset,
img {
	border: 0;
}

