@charset "utf-8";
html {
    color: #000;
    background: #FFF;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: inherit;
    /* 文字颜色继承父元素 */
    text-decoration: none;
    /* 去除下划线 */
    pointer-events: auto;
    /* 允许鼠标事件 */
    cursor: default;
    cursor: pointer;
    /* 将鼠标样式设置为默认样式 */
}

a:hover {
    color: #89aeeb !important;
}

em,
strong,
b,
u,
i {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    *font-size: 100%;
    /*to enable resizing for IE*/
}

img {
    border: 0 none;
}