/*全局设置*/
/*格式化标签*/
*,*:before,*:after{
	margin:0;padding:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
ul,li {
	list-style:none;
}
html,body{
	/*优化触屏滚动*/
	-webkit-overflow-scrolling: touch;
	-moz-overflow-scrolling: touch;
	-ms-overflow-scrolling: touch; 
	overflow-scrolling: touch;
	/*禁止用户复制*/
	-webkit-user-select:none; 
	-moz-user-select: none;  
	-ms-user-select: none;
	-o-user-select: none; 
	user-select: none;
	/*禁用系统长按菜单*/
	-webkit-touch-callout:none; 
	touch-callout:none;
	/*去掉点击高亮*/
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0); 
	tap-highlight-color:rgba(0, 0, 0, 0);
	/*前2是英文字体，之后分别是：设备默认字体、微软雅黑（PC）、苹果黑体（mac）、文泉驿微米黑、宋体、通用适配字体*/
	font-family:"Open Sans",Arial,"Hiragino Sans GB","Microsoft YaHei","STHeiti","WenQuanYi Micro Hei",SimSun,sans-serif; 
	/*反锯齿，平滑字体*/
	-webkit-font-smoothing: antialiased;
	/*解决iPhone 横屏默认会放大文字问题*/
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background:#f3f5f8;
}
/*点击效果*/
a{ 
	text-decoration: none; 
	color: #313131; 
	cursor:pointer;
}
a:active{
	background-color:#f6f6f6;
}

/*清浮*/
.clear:after{
	content:""; 
	display:table; 
	height:0; 
	clear:both; 
	font-size:0; 
	visibility:hidden;
}
.clear{
	zoom:1; 
	*+height: 1%;
}

/*----------------------------主体样式开始-----------------------------*/
	html,body,.menu-container,.menu-box{
		height: 100%;
	}
	.menu-container{
		padding:15px;
	}
	.menu-box{
		max-width: 640px;
		margin:0 auto;
		background: #fff;
		border-radius:6px;
		padding:10px 0;
		overflow-y: auto;
		border:1px solid #e3e3e3;
		box-shadow: 0 0 16px rgba(0,0,0,.05);
	}
	.menu-box a{
		float: left;
		width: 33.333%;
		padding:12px;
		text-align: center;
		font-size: 14px;
		color: #313131;
	}
	.menu-box a img{
		width: 40px;
		height: 40px;
	}
	.menu-box .menu-img{
		display: block;
		font-size: 0;
	}
	.menu-box .menu-txt{
		display: block;
		width: 100%;
		padding:10px 0;
		overflow: hidden; 
		text-overflow: ellipsis; 
		white-space: nowrap; 
	}
/*----------------------------主体样式结束-----------------------------*/

/*媒体查询 视网膜属性ratio*/
@media screen and (-webkit-min-device-pixel-ratio:1) {}
@media screen and (-webkit-min-device-pixel-ratio:2) {}
@media screen and (-webkit-min-device-pixel-ratio:3) {}

/*iPad横板显屏*/
@media screen and (max-device-width: 1024px) and (orientation: landscape) {}
/*iPad竖板显屏*/
@media screen and (max-device-width: 768px) and (orientation: portrait) {}
/*设备尺寸小于480*/
@media screen (max-device-width: 480px) {  }
/*设备尺寸大于480*/
@media screen (min-device-width: 480px) {  }
/*窗口尺寸 大于480*/
@media only screen and (min-width: 480px) {  }
/*窗口尺寸 小于480*/
@media only screen and (max-width: 480px) {  }
/*窗口尺寸大于320 小于480*/
@media screen and (min-width: 320px) and (max-width: 480px) {  }
/*横屏*/
@media all and (orientation : landscape) {  }
/*竖屏*/
@media all and (orientation : portrait) {  } 
