/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
q,
blockquote,
pre,
cite,
a,
abbr,
address,
big,
small,
del,
ins,
dfn,
em,
strong,
img,
code,
kbd,
var,
samp,
sub,
sup,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
form,
label,
input,
select,
textarea,
table,
caption,
thead,
tbody,
tfoot,
tr,
th,
td,
canvas,
details,
section,
article,
aside,
footer,
header,
nav,
figure,
figcaption,
menu,
output,
ruby,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	/* color: #333; */
}

/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
	display: block;
}

body {
	font: 16px / 1.2 '微软雅黑', 'Microsoft Yahei', Tahoma, Arial, Helvetica, sans-serif;
	word-break: break-all;
	word-wrap: break-word;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 自行添加 */
a {
	text-decoration: none;
	color: #333;
	border: 0;
	outline: 0;
}

img {
	border: none;
	/* 去除下部白边 */
	vertical-align: top;
}

em,
i {
	font-style: normal;
}

b,
strong,
th {
	/* font-weight: normal; */
}

textarea {
	resize: vertical;
	overflow: auto;
	border: 0;
	outline: 0;
}

input,
select {
	border: 0;
	outline: 0;
}

select {
	/* 将默认的select选择框样式清除 */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
	display: none;
}