/*这一句是用来解决在安卓上的点击出现篮框问题*/
body{ -webkit-tap-highlight-color:rgba(0,0,0,0); }
/*下面是解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus{
-webkit-tap-highlight-color:rgba(0,0,0,0);
-webkit-user-modify:read-only;
}

::-webkit-scrollbar {display:none}

input {-webkit-appearance:none; /*去除input默认样式*/}


*{
	padding: 0 !important;
	margin: 0 !important;
}
img{display:block !important;margin:0.4rem auto 0 !important;text-align: center !important;max-width:100% !important;width: auto !important; height: auto !important;}
div,div *:not(input){
	font-size: 0.426rem !important;
	background-color: #FFF !important;
	color: #333 !important;
	line-height: 1.5;
}
input.inputName{
	background-color: #FFF !important;
	color: #e53985 !important;
}
pre{
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
}