html { 
    font-family:"Microsoft YaHei","微软雅黑","Arial";
    /*谷歌浏览器字体最小字体12px*/
    -webkit-text-size-adjust: 100%;/*100%/none 关闭字体大小自动调整功能*/
    /*a标签及拥有 :active伪类的元素有默认的高亮框*/
    -webkit-tap-hightlight-color: transparent;
    /*禁止文本被选中*/
    -webkit-user-select: none;
}
body{
    overflow-x:hidden;
    /*开启moblie网页快速滚动和回弹的效果*/
    -webkit-overflow-scrolling: touch;
    font-size:6.25%;
    background: #f5f5f5 ;
}
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a{
    color: #333;
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6{font-weight: normal;}
.rightLine,.topLine{
    position:relative;
}
.rightLine:after,.topLine:after{
    content:"";
    position:absolute;
    right:0;
    top:0;
}
.rightLine:after{
    height:100%;
    width:1px;
    -webkit-transform:scaleX(0.5);
    transform:scaleX(0.5);
    border-right:1px solid #f5f5f5;
}
.topLine:after{
    height:1px;
    width:100%;
    -webkit-transform:scaleY(0.5);
    transform:scaleY(0.5);
    border-top:1px solid #f5f5f5;
}
img{
    border: 0;
    display: inline-block;
    width:100%;
    height:100%;
    vertical-align: middle;
}
input{
    -webkit-appearance: none;
    outline: none;
    border: none;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
}
.underlineN{
    text-decoration: none!important;
}
em{
font-style:normal;
}
.fl{
    float:left;
}
.fr{
    float:right;
}
.clearfix:after{
    content:"";
    display:block;
    width:100%;
    height:0;
    clear:both;
}
li,ol{
    list-style:none;
}
.vertical-view{
    display:-webkit-box;
    display:-webkit-flex;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -webkit-flex-direction:column;
    flex-direction:column;
}
.horizontal-view{
    display:-webkit-box;
    display:-webkit-flex;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -webkit-flex-direction:row ;
    flex-direction:row;
}
.white-bg{background:#fff;}
.wrap{max-width:640px;margin:0 auto;overflow: hidden;}
/*底部导航*/
.footer-nav{width:100%;padding-bottom:4px;position:fixed;left:0;bottom:0;z-index:999;background-color: #ffffff;box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.15);}
.footer-nav li a{display:inline-block;float:left;width:25%;text-align:center;color:#666;}
.footer-nav li a i{display:inline-block;font-size:.96rem;margin-bottom: .1rem;}
.footer-nav li a span{display: block;font-size:10px;margin-top:-.2rem;}
.footer-nav li.on a{color:#00a0af;}
/*弹层背景*/
.base_mask{display: none;position: fixed;left: 0;top: 0;width: 100%;height: 100%;background-color: rgba(0,0,0,.4);z-index: 9999;}
