/*=======reset css========*/
*,
*::before,
*::after{
    /*所有的标签，和伪元素都选中*/
    margin: 0;
    padding: 0;
    /*移动端常用布局是非固定像素*/
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*点击高亮效果的清除*/
    tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
}
body{
    font-size: 14px;
    font-family: "Microsoft YaHei",sans-serif;
    color: #333;
}
ul,ol{
    list-style: none;
}
i,em{
	font-style: normal;
}
a{
    text-decoration: none;
    color: #333;
}
img{
	width: 100%;
}
h3,h4{
	font-weight: normal;
}
input,textarea{
    border: none;
    outline: none;
    /*不允许改变尺寸*/
    resize: none;
    /*元素的外观  none没有任何样式*/
    -webkit-appearance: none;
}
/*=======common css========*/
.fl{
    float: left;
}
.fr{
    float: right;
}
.clearFix::before,
.clearFix::after{
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    line-height: 0;
    clear: both;
}
.ml10{
    margin-left:10px;
}
.mr10{
    margin-right:10px;
}
.mr32{
	margin-right: 32px;
}
.mt10{
    margin-top:10px;
}
.mb10{
    margin-bottom:10px;
}
.fz12{
	font-size: 12px;
}
.fz8{
	font-size: 8px;
}
.fz16{
	font-size: 16px;
}

/*使用精灵图的公用样式*/
[class^="ico_"],[class*=" ico_"]{
    background-repeat: no-repeat;
    background-image: url(/Public/Mobile/index/images/sprites.png);
    background-size: 200px 200px;
}

/*[class^="ico_"]    以icon_开头的class
[class*=" ico_"]   包含icon_的class*/<!--0.00018501281738281-->