a{-webkit-tap-highlight-color: rgba(0,0,0,0);}
body{
	font-family:"microsoft yahei";
}
p,h1,h2,h3,h4,h5,h6,dl,dd,ul,li,th,td{margin:0; padding:0;}
ol,ul,li,a{list-style:none;}
* {
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	outline: none;
}
*:not(input,textarea) { /*除去输入框禁止长安选择功能去掉*/
	-webkit-touch-callout: none; 
    -webkit-user-select: none; 
}
/*解决iOS下无法正常渲染按钮的问题 */
input[type="button"], input[type="submit"], input[type="reset"] {
	white-space: pre;
	-webkit-appearance:none;
	display: block;
	outline:none;
	border: 0;
}

html,body{height: 100%;}
input{outline: none;-webkit-appearance : none;}
a{text-decoration: none;}
a,input{
-webkit-tap-highlight-color:rgba(0,0,0,0);text-decoration: none;color: #000000;}

/*loading框*/

#container{
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.2);
    display: none;
    z-index: 99999;
}
	
#jiao{
	font-size: 12px ;
	color: #f66;
    position: absolute;
    width: 100%;
    top: 50%;	
    margin-top: 38px;  
  	text-align: center;  
    
}
#loading  .loading {
   position: absolute;
    left: 50%;
    top: 50%;
    -moz-animation:load 1s infinite both linear;
    -ms-animation:load 1s infinite both linear;
    -webkit-animation: load 1s infinite both linear;
    animation: load 1s infinite both linear; }
#loading  .loading  #bigD {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 5px solid #fff; }
#loading  .loading     #bigD       #smallD {
    position: absolute;
    width: 12px;
    height: 12px;
    right: -8px;
    top: 50%;
    margin-top: -6px;
    border-radius: 50%;
    background-color: #f66;
}
@-webkit-keyframes load{
	from{-webkit-transform: rotate(0deg);}
	to{-webkit-transform: rotate(360deg);}
}
@-moz-keyframes load{
	from{-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to{
		-moz-transform: rotate(360deg);

#loading  .loading     #bigD       #smallD {
    position: absolute;
    width: 12px;
    height: 12px;
    right: -8px;
    top: 50%;
    margin-top: -6px;
    border-radius: 50%;
    background-color: #f66;
}
@-webkit-keyframes load{
	from{-webkit-transform: rotate(0deg);}
	to{-webkit-transform: rotate(360deg);}
}
@-moz-keyframes load{
	from{-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to{
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}
a,button,input,textarea { 
			    -webkit-tap-highlight-color: rgba(0,0,0,0); 
			    /*-webkit-user-modify:read-write-plaintext-only; *//*-webkit-user-modify有个副作用，就是输入法不再能够输入多个字符*/
			}
			* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
			/*一、使用appearance改变webkit浏览器的默认外观*/
			input,select { -webkit-appearance:none; appearance: none;}
			 /*禁止长按链接与图片弹出菜单*/
			a,img { -webkit-touch-callout: none } 
			/*禁止ios和android用户选中文字*/
			html,body {-webkit-user-select:none; user-select: none; }