@font-face {
    font-family: "smiley";
    src: url(../font/Outfit-VariableFont_wght.ttf);
}

@font-face {
    font-family: "Gulkave-Regular";
    src: url(../font/Gulkave-Regular.woff) format("woff");
    font-display: swap;
}

@font-face {
    font-family: NZT-48;
    src: url(../font/NZT-48.woff2) format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "LXG";
    src: url(../font/LXGWWenKaiMonoTC-Light.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'LXG';
}

img {
    width: 100%;
    object-fit: cover;
    display: block;
}

video {
    object-fit: cover;
}

a {
    text-decoration: none;
}

b,
strong {
    font-weight: 400;
}

em,
i {
    font-style: normal;
}

li {
    list-style: none;
}

input {
    border: 0;
    outline: 0;
}

button {
    outline: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.img-box {
    position: relative;
}

.img-box::before {
    content: "";
    display: block;
}

.img-box>img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #171717;
}

main {
    flex: 1;
}

:root {
    --all-width: 32rem;
    --button: 1.0133rem;
    --searchBar: 8.5333rem;
}

@media screen and (min-width: 770px) {
    html {
        font-size: 37.5px !important;
    }
}

@media screen and (max-width: 769px) {
    :root {
        --all-width: 100%;
        --searchBar: 100%;
    }
}

@media only screen and (max-device-width: 768px) and (orientation: landscape) {
    /* 仅限手机，横屏模式 */
}

@media only screen and (max-device-width: 768px) and (orientation: portrait) {
    /* 仅限手机，竖屏模式 */
}