@charset "utf-8";

ul {
	margin-left:10px;
	margin-right:10px;
	margin-top:10px;
	padding: 0;
}
li {
	width: 32%;
	float: left;
	margin: 0px;
	margin-left:1%;
	padding: 0px;
	height: 60px;
	display: inline;
	line-height: 60px;
	color: #fff;
	font-size:medium;
	word-break:break-all;
	word-wrap : break-word;
	margin-bottom: 5px;
}
 

a {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	text-decoration:none;
	color:#fff;
}
a:link{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	text-decoration:none;
	color:#fff;
}
a:visited{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	text-decoration:none;
	color:#fff;
}
a:hover{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	text-decoration:none;
	color:#fff;
}
a:active{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	text-decoration:none;
	color:#fff;
}			

//设置字体大小
html { font-size: 100%; }
	.box-0 {
		height: 1em; /* 此时height等于16px */
	}
	.box-1 {
		font-size: 0.625em; /* 此时基准字号以变更为16*0.625=10px */
		height: 1em; /* 此时实际height等于10px */
	}

/*-------------------------------
在不同的“-webkit-appearance”选值情况下，button所渲染的效果是不一样的，详细的测试代码大家可使用safari浏览器点击这 里。
有关于“-webkit-appearance”的详细介绍，这回算是知道了，最后我建议大家，我们可以直接在“reset.css”样式文件中加处 这么一句：
---------------------------------*/
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-appearance: none;
}

//在做移动web页面时，我们要用百分比布局来实现自适应屏幕宽度,避免出现横向滚动条

element{
	width: 100%;
	padding-left: 10px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	border: 1px solid blue;
	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	
	background-image: -moz-linear-gradient(top, #2288cc, #389de2); /* Firefox */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #389de2), color-stop(1, #2288cc)); /* Saf4+, Chrome */
}

a,button,input{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent; /* For some Androids */
}