@charset "UTF-8";
/*
*页面初始化
*/
html, body, ul, ol, li, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img, video {
    margin: 0;
    padding: 0;
    border: none;
    outline-style: none;
    /* 去掉蓝色边框 */
}

ul, ol {
    list-style: none;
    /* 去掉默认的标志点 */
}

textarea {
    resize: none;
    /* 防止文本域大小被拖动 */
}

img {
    border: 0;
    vertical-align: middle;
    /* 去掉图片底部默认的3px的空隙 */
}

a, i, button, li, div {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
    /* H5在safri等浏览器中点击不高亮 */
}

a:hover, a:active, a:visited, a:focus {
    text-decoration: none;
}

i, label {
    font-style: normal;
    font-weight: normal;
}

.clearfix::before,
.clearfix::after {
    /* 清楚浮动，闭合浮动 */
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    *zoom: 1;
    /*IE的hack方式*/
}

*.show {
    display: block;
}

*.hidden {
    display: none;
}