body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Microsoft YaHei UI";
  font-weight: 300;
}
li{
  list-style:none;
}
a {
  /* text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color:rgba(255,0,0,0); */
}
.clearFloat {
  zoom: 1;
}
.clearFloat:after {
  content: '';
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  clear: both;
}
*{
 /*  user-select: none;
  -webkit-user-select: none; */
}

/*滚动条样式*/
*::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: #fff;
}
/*滚动条里面小方块*/
*::-webkit-scrollbar-thumb {
	width: 6px;
	height: 6px;
	border-radius: 10px;
	background-color: #888;
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}

/*滚动条里面轨道*/
*::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
	background-color: #fff;
}

::-webkit-scrollbar-thumb:hover {
	background-color: rgb(13,134,215);
}
