* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* font-family: '微软雅黑', '宋体', 'Arial', 'Helvetica', 'sans-serif'; */
}

a {
    color: black;
    text-decoration: none;
}

.w {
    margin: 0 auto;
    width: 90%;
    max-width: 1400px;
}

ul,
ol,
li {
    list-style-type: none;
}

body {
    background-color: white;
}



header {
    width: 100%;
    height: 50px;
    border-bottom: solid 1px #f5f5f5;
    background-color: white;
}

header>ul {
    display: flex;
    align-items: center;
    justify-content: start;
}

header>ul #logo{
    height: 100%;
    display: flex;
    align-items: center;
}

header>ul #logo img {
    height: 36px;

}

header>ul a {
    margin-right: 20px;
    line-height: 50px;
    font-size: 14px;
    color: #9e9e9e;
    /* font-weight: bold; */
}

header>ul a:hover {
    color: black;
}

#current {
    color: #000;
}



footer {
    margin-top: 50px;
    padding: 50px 0px;
    width: 100%;
}

footer>ul>a {
    margin-right: 20px;
    color: #9e9e9e;
}

footer>ul>a:hover {
    color: black;
}


::-webkit-scrollbar {
    width: 0;
    background-color: white;
}