* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}

a {
    cursor: pointer;
    text-decoration: none;
}

ul li {
    list-style: none;
}

em,
i {
    font-style: normal;
}

body {
    font-family: "微软雅黑", sans-serif;
}

img {
    border: 0;
    vertical-align: middle;
}

/* 滚动条样式 */
/* ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #999;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #999;
}

::-webkit-scrollbar-thumb {
    background-color: #2e61bc;
} */