/*
@font-face {
    font-family: 'MiSans';
    src: url("https://elifelimo.cn/font/misans/MiSans-Regular.woff2");
    font-weight: 400;
}

@font-face {
    font-family: 'MiSans';
    src: url("https://elifelimo.cn/font/misans/MiSans-Medium.woff2");
    font-weight: 500;
}

@font-face {
    font-family: 'MiSans';
    src: url("https://elifelimo.cn/font/misans/MiSans-Demibold.woff2");
    font-weight: 600;
}

@font-face {
    font-family: 'MiSans';
    src: url("https://elifelimo.cn/font/misans/MiSans-Semibold.woff2");
    font-weight: 700;
}
*/

:root {
    --width-center: 152rem;
    --color-font: #5C4D44;
    --color-font-light: #938982;
    --color-highlight: #FE7A1F;
    --color-white: white;
    --color-black: #261205;
    --color-background: #F6F6F6;
    --font-size: 1.4rem;
}

html,
body,
ul,
li,
p,
h3,
h5,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body, a {
    /* font-family: 'MiSans'; */
    font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
    font-size: var(--font-size);
    color: var(--color-font);
}

ul,
li {
    list-style-type: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    opacity: 0.9;
}

a:hover,
a:active {
    color: var(--color-highlight);
}

a>* {
    pointer-events: none;
}

.header {
    width: 100%;
    height: 8.6rem;
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
}

.content {
    margin-top: 8.6rem;
}

.scroll-y::-webkit-scrollbar {
    width: 10px;
}

.scroll-y::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: #aaaaaa;
}

.scroll-y::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: #ededed;
}

@media screen and (min-width: 320px) and (max-width: 767.9px) {
    html {
        font-size: 62.5%;
    }
    .header {
        height: 5.6rem;
    }
    .content {
        margin-top: 56px;
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: 28.5%;
    }
}

@media screen and (min-width: 1024px) {
    html {
        font-size: 38.5%;
    }
}

@media screen and (min-width: 1280px) {
    html {
        font-size: 48.5%;
    }
}

@media screen and (min-width: 1440px) {
    html {
        /* font-size: 62.5%; */
        font-size: 52.6%;
    }
}