html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
}

li {
	list-style: none;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

HTML {
	-webkit-text-size-adjust: none;
}

/*控制反选时的颜色*/
::selection {
	background-color: #CCC;
	color: #ffffff;
}

::-moz-selection {
	background-color: #CCC;
	color: #ffffff;
}

textarea:focus,
input:focus {
	outline: none;
	/*去除safari输入框点击后的篮框*/
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
	content: '';
	display: table;
}

.clearfix:after {
	clear: both;
}

html,
body {
	-webkit-text-size-adjust: none;
}

body {
	background: #FFF;
	margin: 0;
	padding: 0;
	color: #333;
	font-size: .875rem;
	line-height: 1.8em;
	font-family: Helvetica, "微软雅黑", Airal, sans-serif, "宋体";
}

form {
	margin: 0;
	padding: 0;
}

.input,
textarea {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

img {
	border: none;
	max-width: 100%;
	font-size: 0;
}

.clear {
	clear: both;
}

a,
.hand {
	cursor: pointer;
}

a:link,
a:visited {
	text-decoration: none;
}

.wrapper {
	max-width: 1200px;
	margin: 0 auto;
	min-height: 1px;
}

.row:after,
.server_box:after,
.wrapper:after {
	clear: both;
	display: table;
	content: ''
}

.float-left {
	float: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.6;
}

h1 {
	font-size: 2.5em;
	/*40*/
}

h2 {
	font-size: 2.25em;
	/*36px*/
}

h3 {
	font-size: 1.725em;
	/*28px;*/
}

h4 {
	font-size: 1.5em;
	/*24px;*/
}

h5 {
	font-size: 1.125em;
	/*18px;*/
}

h6 {
	font-size: 0.875px;
	/*14px;*/
}

.flex-box{
	display: flex;
}

.wd100{
	width: 100% !important;
}
.wd50{
	width: 50% !important;
}
.wd33{
	width: 33.33% !important;
}
.wd25{
	width: 25% !important;
}

*::-webkit-scrollbar {/*滚动条整体样式*/

	width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/

	height: 1px;

}

*::-webkit-scrollbar-thumb {/*滚动条里面小方块*/

	border-radius: 10px;

	 -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);

	background: #535353;

}

*::-webkit-scrollbar-track {/*滚动条里面轨道*/

	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);

	border-radius: 10px;

	background: #EDEDED;

}