@charset "UTF-8";
*,
::before,
::after{
    margin:0;
    padding:0;
    -webkit-tap-hightlight-color:transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,a{margin:0;padding:0;box-sizing: border-box;}
body{
    font-size: 14px;
    font-family: "Miscrosoft Yahei","微软雅黑",sans-serif;/*手机端浏览器默认字体*/
    color:#333;
    background-color: #fff;
}
a{
    text-decoration: none;
    color: #333;
}
img{
    border: none;
    outline: none;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
ul{
    list-style: none;
}
input, textarea {
    border: none;
    resize: none;
    outline: none;
    /*-webkit-appearance: none;*/ /*清除浏览器默认样式*/
}
.clearfix::after,.clearfix:before{
    content: ".";
    display: block;
    height:0;
    line-height: 0;
    visibility: hidden;
    clear:both;
}
.icon{
    display: inline-block;
    width:30px;
    height:28px;
}

/*定义滚动条宽高及背景，宽高分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar{
    width: 6px;
    height: 6px;
    background-color: #f5f5f5;
}
/*定义滚动条的轨道，内阴影及圆角*/
::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(203,203,203,.3);
    border-radius: 5px;
    background-color: #f5f5f5;
}
/*定义滑块，内阴影及圆角*/
::-webkit-scrollbar-thumb{
    /*width: 10px;*/
    height: 20px;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 6px rgba(203,203,203,.3);
    background-color: #cbcbcb;
}