/* CSS Document */
body,span,div,ul,li,ol,dl,dt,dd,a,img,input,textarea,button,select,h1,h2,h3,h4,h5,h6,p,form,em,b,u,i{ padding:0px; margin:0px; border:0px; font-style:normal; list-style:none;}
h1,h2,h3,h4,h5,h6{ font-weight: normal; font-size: 14px;}
textarea{ resize: none; }
input,textarea,button,select{ font-size:15px; font-family:"Microsoft YaHei",'微软雅黑',Arial; outline:none; border: 0;}
table{ border-collapse:collapse; border-spacing:0;}
select{ ppearance:none; -moz-appearance:none;/*Firefox*/ -webkit-appearance:none;/*Safari和Chrome*/}
img{ vertical-align: middle;}
a{ color: #333; outline-style:none; transition-property: color,opacity,bacgkround;}
a:visited,a:link{ text-decoration:none;}
a:hover{ text-decoration:none;}
a:active{}

input[type="submit"],input[type="reset"],input[type="button"]{ -webkit-appearance:none;}
/*ios系统中元素被触摸时产生的半透明灰色遮罩去掉*/
a,span,button,input,textarea{ -webkit-tap-highlight-color: rgba(0,0,0,0); /*-webkit-user-modify:read-write-plaintext-only; */}
/*input type=number*/
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button{ -webkit-appearance:none !important;}/* chrome and safari */
/*input{ -webkit-}*/

/*取消点击高亮*/
a,div,span{ -webkit-tap-highlight-color:transparent;}

/* 修改chrome记住密码后自动填充表单的黄色背景 */
input:-webkit-autofill { background-color: none; background-image: none; color: #000;}

/* 禁止复制、选中文本 */
element{
	-webkit-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}

/* 长时间按住页面出现闪退 */
element {
	-webkit-touch-callout: none;
}

/* iphone及ipad下输入框默认内阴影 */
element{
	-webkit-appearance: none; 
}

/* ios和android下触摸元素时出现半透明灰色遮罩 */
element {
	-webkit-tap-highlight-color:rgba(255,255,255,0);
}

/* 动画定义3D启用硬件加速 */
element{
	-webkit-transform:translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* Retina屏的1px边框 */
element{
  border-width: thin;
}


 
