/*公共样式*/
@charset "utf-8";
*{margin:0;padding:0;
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box;box-sizing:border-box;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    font-family:"微软雅黑"; 
}
body{margin:0 auto; padding:0 auto;overflow-x:hidden; background: #f3f3f3;}
img{ border:0;}
ul {margin:0; padding:0;}
ul li{ list-style:none;}
a{ text-decoration: none;}

a {color:#333;text-decoration:none; cursor:pointer;}
a:hover {text-decoration:none;}
*,::before,::after {
    padding:0;/* 清除所有元素的缝隙 */
    margin:0;
    -webkit-tap-highlight-color: transparent;  /* 清除默认点击的高亮效果 */
    -webkit-box-sizing: border-box; /* 以border开始计算宽度 */
}
input,textarea {
    border: none;
    resize: none; /* 禁止伸缩 */
    outline: none; /* 取消点击后选中的框 */
    -webkit-appearance: none; /* 清除在手机浏览器中的默认样式 */
}
.clearfix::before,.clearfix::after {
    content: '';
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}/*清除浮动*/
