@charset "UTF-8";

/*
CSS Reset
*/
/*布局（grid）（.g-）；模块（module）（.m-）；元件（unit）（.u-）；功能（function）（.f-）；皮肤（skin）（.s-）；状态（.z-）*/
/* reset */
html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased !important;
}
* {
    margin: 0;
    padding: 0;
}
ul,li {
    list-style-type: none;
}

body,
button,
input,
select,
textarea {
    font: 16px/1.4 "Microsoft YaHei", "微软雅黑", "arial", "tahoma", "MicrosoftJhengHei";
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased !important;
    /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}
body {
    letter-spacing: 1px;
}

img {
    border: 0;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
    display: block;
}

a {
    text-decoration: none;
    background-color: transparent;
    /* 1 */
    -webkit-text-decoration-skip: objects;
}
a,a:hover {
    color: #000;
}

a.focus,
a:focus {
    outline: 0;
}