@font-face {
    font-family: 'HarmonyOS Sans SC';
    src: url('../assets/fonts/HarmonyOS_Sans_SC_Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HarmonyOS Sans SC';
    src: url('../assets/fonts/HarmonyOS_Sans_SC_Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HarmonyOS Sans SC';
    src: url('../assets/fonts/HarmonyOS_Sans_SC_Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HarmonyOS Sans SC';
    src: url('../assets/fonts/HarmonyOS_Sans_SC_Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'HarmonyOS Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}


html {}

@media (min-width: 768px) {


    .pc-show {
        display: block !important;
    }

    .h5-show {
        display: none !important;
    }

    @supports (content-visibility: hidden) {
        .h5-show {
            content-visibility: hidden;
        }
    }
}

@media (max-width: 767px) {

    .pc-show {
        display: none !important;
    }

    @supports (content-visibility: hidden) {
        .pc-show {
            content-visibility: hidden;
        }
    }


    .h5-show {
        display: block !important;
    }
}