html,
body,
div,
span,
applet,
object,
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-family: PingFang SC, Helvetica Neue, Hiragino Sans GB, Segoe UI, Microsoft YaHei, 微软雅黑, sans-serif;
	vertical-align: baseline;
	-webkit-tap-highlight-color: transparent;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
	width: 2px;
	height: 4px;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #f5f5f5;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #e2e2e2;
}
/* 定义内层轨道 滚动条中间部分 */
::-webkit-scrollbar-track-piece {
	background-color: #fff;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
ol,
ul,
li {
	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;
}
th,
td {
	vertical-align: middle;
}
/* custom */
a {
	outline: none;
	color: #16418a;
	text-decoration: none;
	cursor: default;
	-webkit-backface-visibility: hidden;
}
a:focus {
	outline: none;
}
input:focus,
select:focus,
textarea:focus {
	outline: none;
}
html,
body {
	height: 100%;
	font-size: 12px;
	-webkit-overflow-scrolling: touch;
	background-color: #f7f7f7;
}

input,
textarea {
	-webkit-appearance: none;
	border: 0;
	background-color: transparent;
}

::-webkit-input-placeholder {
	color: #c1c1c1;
	font-size: 15px;
}

::-moz-placeholder {
	color: #c1c1c1;
	font-size: 15px;
}

:-ms-input-placeholder {
	color: #c1c1c1;
	font-size: 15px;
}
