@charset "utf-8";

*{
	margin: 0;
	padding: 0;
}
html{
	/* 主PC端时(100px,按照真实设计尺寸书写,移动端为calc(100vw/3.25))
	主移动端(calc(100vw/7.5),按照真实设计尺寸书写,PC端为50px) */
	font-size: 100px;
}
a,label,input,textarea,div{
	-webkit-tap-highlight-color: transparent;
}
/* 禁止滑动选择复制操作 */
html,body{ 
	-moz-user-select: none; 
	-khtml-user-select: none; 
	user-select: none;onselectstart:none 
}
input,textarea{ 
	-webkit-touch-callout: text; 
	-webkit-user-select: text; 
}
body,ul,p,h1,h2,h3,h4,h5,h6,input,textarea{
	margin: 0;
}
ul,td,input,textarea{
	padding: 0;
}
ul{
	list-style: none;
}
input,textarea{
	border: none;
	color: inherit;
	outline: none;
	font-size: inherit;
	font-family: inherit;
	vertical-align: middle;
	-webkit-appearance: none;
	background-color: transparent;
}
textarea{
	resize: none;
}
img{
	border: none;
	vertical-align: middle;
}
a{
	color: inherit;
	outline: none;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	font-size: inherit;
	font-weight: normal;
}
table{
	border-spacing: 0;
	border-collapse: collapse;
}
*, :after, :before {
    box-sizing: border-box;
}