@charset "UTF-8";

/*css 初始化 */

* {
    box-sizing: border-box;
}

body, header, footer, section, div, span, p, img, a, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, em, i, b, u, del, menu, nav, fieldset, legend, article, aside, details, figcaption, hgroup, pre, code, form, blockquote, th, td, tr, hr, table, img, figure, button, input, textarea {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: Microsoft Yahei, Helvetica, Arial;
    word-break: break-all;
}

body {
    background-color: #fff;
}

fieldset, img, input, button {
    border: 0 none;
    outline-style: none;
}

/*去掉input等聚焦时的蓝色边框*/
ul, li, ol {
    list-style: none;
}

select, input {
    vertical-align: middle;
}

select, input, textarea {
    font-size: 12px;
    margin: 0;
}

textarea {
    resize: none;
}

section {
    display: block;
    margin: 0 auto;
}

/*防止拖动*/
img {
    border: 0 none;
    vertical-align: middle;
}

/*  去掉图片低测默认的3像素空白缝隙，或者用display：block也可以*/
table {
    border-collapse: collapse;
}

:focus {
    outline: none;
}

.clearfix:before, .clearfix:after { /*清除浮动*/
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1; /*IE/7/6*/
}

a {
    text-decoration: none;
    color: inherit;
    /*cursor: default;*/
}

a:hover {
    color: unset;
}

h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

/*设置h标签的大小，设置跟父亲一样大的字体font-size:100%;*/
s, i, em {
    font-style: normal;
    text-decoration: none;
}

/* webkit引擎的浏览器取消默认样式(-webkit-appearance) */
input, textarea {
    -webkit-user-select: auto !important;
    user-select: auto !important; /*-webkit-appearance:none;*/
}

/* webkit引擎的浏览器取消默认样式 */
input[type="submit"], input[type="reset"], input[type="button"], input[type="password"], input[type="text"], button {
    -webkit-appearance: none;
    outline: none;
}
