@charset "utf-8";

/* 修改默认样式 */

* {
    /* 清楚多余边距 */
    margin: 0;
    padding: 0;
    /* ios取消点击背景 */
    -webkit-tap-highlight-color: transparent;
    /* 边框不占位置 */
    box-sizing: border-box;
}

img[src=""],
img:not([src]) {
    /* 取消图片未加载的边框 */
    opacity: 0;
}

a {
    /* 取消a标签下划线 */
    text-decoration: none;
}

li {
    /* 取消列表点样式 */
    list-style: none;
}

input:focus {
    /* 点击,聚焦input不出现框 */
    outline: none;
}

input {
    /* 点击,聚焦input不出现框 */
    outline: none;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    /* 清楚浮动 */
    content: ".";
    width: 0;
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
    overflow: hidden;
}