* {
	box-sizing: border-box;
}

aside,
nav,
footer,
header,
body,
ol,
ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
br,
hr,
table,
tr,
td,
dl,
dt,
dd,
form,
button,
input {
	margin: 0;
	padding: 0;
}

body {
	-webkit-user-select: none;
	-webkit-text-size-adjust: none;
	-moz-box-sizing: border-box;
	/* Firefox */
	-webkit-box-sizing: border-box;
	/* Safari */
	text-align: center;
	font-family: "microsoft yahei", "微软雅黑", helvetica, arial;
	font-weight: normal;
	margin: 0 auto;
	color: #333;
	width: 100%;
	height: 100%;
	background: #ffffff;
}

.clearfix:after {
	content: '';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.flex {
	display: flex;
	align-items: center;
}

.flexCenter {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flexStart {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.flexEnd {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.hide {
	display: none;
}

ul,
ol,
li {
	list-style: none;
}

img {
	border: none;
	width: 100%;
}

/*一般链接*/
a {
	text-decoration: none;
	color: #555;
}

a.block {
	display: block;
}

span.block,
i.block {
	display: inline-block;
}

html,
body {
	width: 100%;
	height: 100%;
}

input,
select,
textarea,
button {
	vertical-align: middle;
	border: none;
	cursor: pointer;
	outline: 0;
}

input[type=button],
input[type=submit],
input[type=file],
button,
select {
	/*!*取消苹果机的自带按钮样式*!*/
	cursor: pointer;
	-webkit-appearance: none;
}

.linearBg {
	background-image: linear-gradient(#668A20, #7FA129, #89AD29, #97B82D, #A4C133);
	color: #ffffff;
}