
@charset "utf-8";
/*样式初始化*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
    color:#666;
    font: 14px"微软雅黑","Arial Narrow",HELVETICA;
}
h1,h2, h3, h4, h5, h6 {
    font-weight:normal;
    font-size:14px;
}
body {
    font: 14px"微软雅黑","Arial Narrow",HELVETICA;
    background:#fff;
}

a {
    color: #666;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;

}
p {
  -webkit-text-size-adjust:100%
}
a,img,button,input,textarea{-webkit-tap-highlight-color:rgba(255,255,255,0);}

    a:hover {
        color: #c79f62;
    }

em {
    font-style: normal;
}

li {
    list-style: none;
}

img {
    border: 0;
    display:block;
    width:100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*:focus {
    outline: none;
}



/*修改check默认样式*/
input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    vertical-align: bottom;
    background: #fff;
    border: 1px solid #dcdcdc;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

    input[type=checkbox]:active {
        border-color: #fff;
        background: #fff;
        -webkit-appearance: none;
        appearance: none;
    }

    input[type=checkbox]:hover {
        -webkit-appearance: none;
        appearance: none;
    }

    input[type=checkbox]:checked {
        background: url(../images/check_ok.png) no-repeat;
        background-size: 16px;
        border: none;
        -webkit-appearance: none;
        appearance: none;
        box-shadow: none;
    }


    input[type=checkbox]:focus {
        outline: none;
        -webkit-appearance: none;
        appearance: none;
    }


