html,
body {
    width: 100%;
    height: 100vh;
    margin: 0;
    position: relative;
    background: url('../images/human-bg.jpg') no-repeat center;
    background-size: 100% 100%;
}

#app {
    width: 100%;
    height: 100%;
    /* max-height: 100vh;
    aspect-ratio: 9 / 16;
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%); */
}

/* .rtc_box_warp {
    max-width: 100%;
    max-height: 100vh;
    aspect-ratio: 9 / 16;
    min-height: 20px;
    position: relative;
    margin: 0 auto;
} */

.rtc_box_warp {
    width: 100%;
    height: 100%;
}

.rtc_box {
    width: 100%;
    height: 100%;
    font-size: 0px;
    /* width: 100%;
    aspect-ratio: 9 / 16;
    margin: 0 auto; */
}

.moke-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
}

.moke-wrap * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.rtc-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    overflow: hidden;
}

.rtc-container .rtc-human {
    display: flex;
    justify-content: space-between;
    background-size: cover;
    aspect-ratio: 0.5625;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
}

.opacity-0 {
    opacity: 0;
}

.opacity-1 {
    opacity: 1;
}

.home-title {
    font-family: "Inter";
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: calc(64px * var(--scale));
    line-height: calc(77px * var(--scale));
    text-shadow: calc(0px * var(--scale)) calc(8px * var(--scale)) calc(5px * var(--scale)) rgba(0, 0, 0, 0.51);
    top: calc(50px * var(--scale));
}

.home-weather {
    position: absolute;
    width: calc(178px * var(--scale));
    height: calc(105px * var(--scale));
    right: calc(90px * var(--scale));
    top: calc(180px * var(--scale));
}

.home-date {
    font-family: "PingFang SC";
    text-align: right;
    color: #000000;
    font-weight: 400;
    position: absolute;
    font-size: calc(48px * var(--scale));
    top: calc(314px * var(--scale));
    right: calc(114px * var(--scale));
}

.home-date p {
    margin: 0;
    padding: 0;
    font-size: calc(32px * var(--scale));
}

.home-btns {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: calc(560px * var(--scale));
    right: calc(90px * var(--scale));
    gap: calc(30px * var(--scale));
}

.home-btns button {
    font-family: "PingFang SC";
    color: #000000;
    border: none;
    background-color: #ffffff;
    cursor: pointer;
    width: calc(244px * var(--scale));
    height: calc(94px * var(--scale));
    border-radius: calc(16px * var(--scale));
    font-size: calc(36px * var(--scale));
    line-height: calc(50px * var(--scale));
    box-shadow: calc(0px * var(--scale)) calc(0px * var(--scale)) calc(5px * var(--scale)) rgba(0, 0, 0, 0.25);
}

.rtc-connecting {
    position: absolute;
    font-family: "PingFang SC";
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: rgba(28, 34, 46, 0.41);
    top: calc(380px * var(--scale));
    left: calc(340px * var(--scale));
    font-size: calc(36px * var(--scale));
    border-radius: calc(38px * var(--scale));
    padding: calc(36px * var(--scale)) calc(75px * var(--scale)) calc(36px * var(--scale)) calc(36px * var(--scale));
    gap: calc(20px * var(--scale));
}

.rtc-connecting img {
    width: calc(48px * var(--scale));
    height: calc(48px * var(--scale));
    display: block;
    -webkit-animation: skill-spin 1s infinite linear;
    animation: skill-spin 1s infinite linear;
}

@-webkit-keyframes skill-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes skill-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}