body {
    margin: 0;
}

.outer::-webkit-scrollbar {
    display: none;
}

.splash-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffc573;
    z-index: 100;
}

.splash-title {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 400px;
    transform: translate(-50%, 0%);
    animation-name: loading;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

    /*align center*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.splash-image {
    width: 200px;
    transition: transform 0.8s;
}

.splash-image:active {
    transform: rotateY(180deg);
}

.splash-content {
    font-size: 50px;
    font-family: cursive;
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 0;
        display: none;
    }

    100% {
        z-index: -999;
    }
}

@keyframes loading {
    0% {
        top: 30%;
    }

    50% {
        top: 25%;
    }

    100% {
        top: 30%;
    }
}

.outer {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.inner {
    flex: 1 1 0%;
}

.village {
    width: 2500px;
    background-size: cover;
    background-repeat: no-repeat;
}

.notice {
    position: fixed;
    z-index: 1;
    left: 5%;
    width: 90%;
    transform: scale(0) translate(0, -50%);
    transition: .15s;
    transition-timing-function: ease-in;
    top: 40%;
}

.notice.active {
    transform: scale(1) translate(0, -50%);
}

.content {
    position: relative;
    padding-top: 20%;
    padding: 2%;
    text-align: center;
    color: rgba(255, 200, 0, 1);
    background-color: rgba(38, 9, 9, 0.728);
    line-height: 4vw;
    border-radius: 20px;
}

.pop-content {
    overflow: auto;
    min-height: 20vh;
}

.list-content {
    overflow: auto;
    max-height: 100vh;
    min-height: 100vh;
}

.header {
    position: absolute;
    width: 100%;
    top: 0px;
    /*align center*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/*header flex item*/
.header-item {}

.signboard {
    width: 250px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.9));
    -webkit-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.9));
}

.close {
    all: unset;
    position: absolute;
    background: rgb(255, 208, 128);
    color: rgb(171, 80, 0);
    width: 25px;
    height: 25px;
    top: -5px;
    right: 0px;
    z-index: 10;
    border-radius: 50%;
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.close:active {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    background: rgb(255, 186, 66);
}

.t-collapse-btn {}

.t-collapse-btn:has(.t-collapse-content.t-collapse-active)::after {
    text-align: right;
    content: "...";
    display: block;
    height: 0;
    transform: translate(0px, -40px);
}

.t-collapse-content {}

.t-collapse-active {
    overflow: hidden;
    max-height: 0;
}

.swipe-modal-up {
    position: fixed;
    z-index: 1;
    top: 100%;
    transition: .3s;
    transition-timing-function: ease-in;
  }
  
  .swipe-modal-up.active {
    transform: translate(0, -90%);
  }