/* 把我们所有标签的内外边距清零 */
* {
	margin: 0;
	padding: 0;
        -webkit-tap-highlight-color: transparent;  /* 点击时取消选中效果 */
}

/* em 和 i 斜体的文字都不倾斜 */
em,
i {
	font-style: normal
}

/* 去掉每个li前面的小圆点 */
li {
	list-style: none
}


img {
	border: 0;/* 为了照顾低版本浏览器,如果 图片的外面包含了链接 会出现边框的问题 */
	vertical-align: middle /* 解决图片底侧出现空白缝隙的问题 */
}


button {
	cursor: pointer /* 当我们鼠标经过button按钮时,鼠标变成小手的样子 */
}

a {
	color: #666;
	text-decoration: none
}

a:hover {
	color: #f20606 !important;
}

button,
input {
	font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif
}

body {
	/* 抗锯齿性,避免文字被放大后会产生锯齿 */
	-webkit-font-smoothing: antialiased;
	background-color: #fff;
	margin: 0 auto;
        /* max-width: 1920px; */
	overflow-x: hidden;
}

.hide,
.none {
	display: none
}

/* 清除浮动 */
.clearfix:after {
	visibility: hidden;
	clear: both;
	display: block;
	content: ".";
	height: 0
}

.clearfix {
	*zoom: 1
}


@media screen and (max-width:350px) {
	html{
		font-size: 12px !important;
	}
}
@media screen and (min-width:1920px) {
	html{
                /* font-size: 64px !important;*/
       
	}
}

@media screen and (max-width:750px) {
	.app,.applist{
        display: none !important;
    }
	.mobileIndex,.mobileList,.mobileDetails{
        display: block !important;
    }
       body {  overflow: auto !important; }
}
@media screen and (min-width:751px) {
	.app,.applist{
        display: block !important;
    }
	.mobileIndex,.mobileList,.mobileDetails{
        display: none !important;
    }
}
