*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}

a,button,input,textarea{
  -webkit-tap-highlight-color: rgba(0,0,0,0)
  -webkit-user-modify:read-write-plaintext-only; 
}

html,
body {
	width: 100%;
	height: 100%;
	font-family: Microsoft YaHei;
	/* font-family: Source Han Sans CN,SourceHanSansCN; */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
	line-height: 1.5;
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
	color: #999999;
}
table {
	border-collapse: collapse;
	margin: 0 auto;
	width: 100%!important;
}
table, td, th {
		border: 1px solid black;
}
th,td{
	text-align: center;
}
/*多行省略CSS（只兼容 -webkit-核心）*/

.ellipsis {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.ell_more {
	display: -webkit-box !important;
	overflow: hidden;
	word-break: break-all;
	-webkit-box-orient: vertical;
}

.ell_two {
	-webkit-line-clamp: 2;
}

.ell_three {
	-webkit-line-clamp: 3;
}

.ell_four {
	-webkit-line-clamp: 4;
}
.ell_six {
	-webkit-line-clamp: 6;
}
.ell_seven {
	-webkit-line-clamp: 7;
}
.clearfiex::after{
	content: '';
	display: block;
	visibility: hidden;
	clear: both;
}
@media screen and (max-width:950px) {
	html{
		font-size: 5.3333333vw;
	}
	body{
		font-size: .65rem;
	}
	div::-webkit-scrollbar,ul::-webkit-scrollbar{
		display: none;
	}
}