/* 初始化标签在所有浏览器中的margin、padding值 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button,
img {
	margin: 0;
	padding: 0;
}
html {
	_background: url(about:blank);
}
/* 酌情修改 */
body {
	font-family: -apple-system, 'Helvetica Neue', 'Roboto', sans-serif;
}
body,
th,
td,
input,
select,
textarea,
button {
	line-height: 1;
	font-size: 14px;
} /* 重置页面文字属性 */
/* 短引用的内容可取值：''或"" */
blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
} /* 重置嵌套引用 */
/* 缩写，图片等无边框 */
fieldset,
img,
abbr,
acronym {
	border: 0 none;
} /* 重置fieldset（表单分组）、图片的边框为0 */
img {
	vertical-align: top;
} /* 图片在当前行内的垂直位置 */
abbr,
acronym {
	font-variant: normal;
}
legend {
	color: #000;
}
blockquote,
q {
	quotes: none;
} /* 重置嵌套引用的引号类型 */
div {
	box-sizing: border-box;
}
/* 清除特殊标记的字体和字号 */
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
} /* 重置样式标签的样式 */
/* 上下标 */
/* 统一上标和下标 */
sub,
sup {
	position: relative;
	line-height: 0;
	vertical-align: baseline;
	font-size: 75%;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0 */
/* 表格标题及内容居左显示 */
caption {
	display: none;
} /* 重置表格标题为隐藏 */
caption,
th {
	text-align: left;
}
/* 清除列表样式 */
dl,
ul,
ol,
menu,
li {
	list-style: none;
} /* 重置类表前导符号为onne,menu在HTML5中有效 */
input,
button,
textarea,
select,
optgroup,
option {
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	font-size: inherit;
} /* 输入控件字体 */
input,
select,
textarea,
button {
	outline: none;
	vertical-align: middle;
} /* 重置表单控件垂直居中 */
textarea {
	resize: none;
}
input[type='submit'] {
	cursor: pointer;
} /* 鼠标样式 */
button {
	border: 0 none;
	background-color: transparent;
	cursor: pointer;
} /* 重置表单button按钮效果 */
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
/* 标题元素样式清除, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: 100%;
}
.my-title {
	padding: 18px 20px;
	border-bottom: 1px solid #ebeef5;
	box-sizing: border-box;
	margin-bottom: 10px;
}

a {
	text-decoration: none;
}
