html,
body,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
form,
input,
textarea,
th,
td,
select {
	margin: 0;
	padding: 0;
}
* {
	box-sizing: border-box;
}

.clear{
    clear:both;
}
html,
body {
	min-height: 100%;
  box-sizing: border-box;
  overflow: auto;
}

body {
	/* font-family: "Source Han Sans"; */
  font-family: "微软雅黑";
	/*font-size: 14px;*/
	color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}
ul,
li {
	list-style: none;
}

img {
	border: none;
	vertical-align: middle;
}

a {
	text-decoration: none;
	color: #232323;
}

table {
	border-collapse: collapse;
	table-layout: fixed;
}

input,
textarea {
	outline: none;
	border: none;
}

textarea {
	resize: none;
	overflow: auto;
}
i{
	font-style: normal;
}


/*滚动条样式*/
  *::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  *::-webkit-scrollbar-thumb {
    border-radius: 10px;/*
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; */
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
  }

  *::-webkit-scrollbar-track {
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.1);

  }
