/* 全局样式 */
body,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
fieldset,
table,
td,
img,
div {
	margin: 0;
	padding: 0;
	border: 0;
}
h4,
h5,
h6 {
	font-weight: 400;
}
body {
	background: #fff;
	color: #333;
	font-size: 12px;
	margin-top: 5px;
	font-family: "SimSun", "宋体", "Arial Narrow";
}
ul,
ol {
	list-style-type: none;
}
select,
input,
img,
select {
	vertical-align: middle;
}
a {
	text-decoration: none;
	color: #fff;
}

a:hover,
a:active,
a:focus {
	color: #fff;
	text-decoration: none;
}

.flex {
	display: flex;
}
.flex-x-center {
	justify-content: center;
}
.flex-y-center {
	align-items: center;
}
.flex-x-lr {
	justify-content: space-between;
}
.flex-y-lr {
	justify-content: space-between;
}
.flex-h {
	flex-direction: column;
}
