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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "smiley";
}

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;
    touch-action: none;
}

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

/* footer */

footer {
    background: var(--bg2) !important;
    border-top: 1px solid var(--border);
    height: auto !important;
    padding: 32px !important;
}

.footer-info {
    display: flex;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.footer-brand {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.footer-copy {
    font-size: 12px;
    color: var(--text3);
}

footer .footer-info {
    gap: 16px;
    flex-wrap: wrap;
}

footer .footer-info a {
    color: var(--text3) !important;
    font-size: 12px;
    transition: color 0.15s;
}

footer .footer-info a:hover {
    color: var(--text) !important;
}

.cookieFooter {
    margin-bottom: 56px;
}

.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;
}

main {
    flex: 1;
}

.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #0000004d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
    inset: 0;
}

:root {
    --all-width: 1200px;
    --logo: 220px;
    --button: 35px;
}

@media screen and (min-width:770px) and (max-width:1199px) {
    :root {
        --all-width: 1000px;
    }
}

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

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

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

.cookieMessage {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    border-top: 1px solid #e8e8e4;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 32px;
    z-index: 9999;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.cookieIcon {
    font-size: 18px;
    flex-shrink: 0;
}

.cookieText {
    color: #666666;
    font-size: 13px;
    flex: 1;
    min-width: 200px;
    line-height: 1.6;
}

.cookieText a {
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookieActions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookieBtn {
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s;
}

.cookieBtn.agree {
    background-color: #111111;
    color: #ffffff;
}

.cookieBtn.agree:hover {
    opacity: 0.8;
}

.cookieBtn.reject {
    background-color: transparent;
    color: #666666;
    border: 1px solid #e8e8e4;
}

.cookieBtn.reject:hover {
    border-color: #111111;
    color: #111111;
}

@media screen and (max-width: 769px) {
    .cookieMessage {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 10px;
    }

    .cookieFooter {
        margin-bottom: 93px;
    }
}

/* From Uiverse.io by adamgiebl */
.dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.dot {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: #b3d4fc;
    animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
    margin-right: 0;
}

.dot:nth-child(1) {
    animation-delay: -0.3s;
}

.dot:nth-child(2) {
    animation-delay: -0.1s;
}

.dot:nth-child(3) {
    animation-delay: 0.1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }

    50% {
        transform: scale(1.2);
        background-color: #6793fb;
        box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
    }

    100% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
}