body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.notice-bar {
    position: relative;
    width: 90%;
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #fff;
    padding: 0 12px;
    box-sizing: border-box;
    margin: 0 auto;
    gap: 10px;
    font-weight: bold;
}

.notice-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.notice-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.notice-label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.notice-right {
    flex: 1 1 auto;
    overflow: hidden;
}

.notice-scroll {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: notice-marquee 30s linear infinite;
}

@keyframes notice-marquee {
    0% {
      transform: translateX(15%);
    }
    100% {
      transform: translateX(-100%);
    }
}

@media screen and (min-width:1000px) {
    .notice-bar {
        width: 70%;
    }
}

.container {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 200px);
    background-color: #009174;
}

.header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    width: 70%;
    margin: 0 auto;
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo img {
    width: 178px;
    height: 32px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 auto;
    width: 70%;
    /* height: calc(100vh - 60px - 160px); */
    position: relative;
}

.content-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 80%;
    height: 100%;
    order: 0;
    flex-direction: column;
}

.content-box-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.content-box-text {
    color: hsla(0, 0%, 100%, .7);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
}

.content-box-button-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

@media screen and (min-width:1000px) and (max-width:1300px) {
    .content-box-button-wrapper {
        margin-left: -10%;
    }
}
@media screen and (min-width:1300px) and (max-width:1500px) {
    .content-box-button-wrapper {
        margin-left: -12%;
    }
}
@media screen and (min-width:1500px) and (max-width:1700px) {
    .content-box-button-wrapper {
        margin-left: -14%;
    }
}
@media screen and (min-width:1700px) {
    .content-box-button-wrapper {
        margin-left: -16%;
    }
}


.content-box-join {
    /*margin-top: 20px;*/
    width: 160px;
    height: 60px;
    background: linear-gradient(121.19deg, rgba(133, 239, 49, 0) 25.73%, hsla(0, 0%, 100%, .37) 45.27%, rgba(133, 239, 49, 0) 62.27%), #ffe700;
    border-radius: 10px;
    animation: button-shine 45s linear infinite;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    color: #009173;
}

.content-box-button {
    width: 220px;
    height: 60px;
    background: linear-gradient(121.19deg, rgba(133, 239, 49, 0) 25.73%, hsla(0, 0%, 100%, .37) 45.27%, rgba(133, 239, 49, 0) 62.27%), #009c4d;
    border-radius: 10px;
    animation: button-shine 45s linear infinite;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.add-tag {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 20px;
}

.add-tag-content {
    background-color: #aa0910;
    color: #fff;
    width: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 9px;
    line-height: 20px;
    text-align: center;
    transform: rotate(-45deg);
    position: relative;
    top: 15px;
    left: -15px;
}

.attention {
    color: #f9c921;
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    /* height: 100%; */
    order: 1;
    text-align: center;
}

.banner img {
    height: auto;
    width: 100%;
}

.bottom-box {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 60px;
}

.bottom-box img {
    width: 120px;
}

.side {
    position: fixed;
    width: 48px;
    right: 0;
    top: 30%;
    z-index: 100;
    border-radius: 15px;
}

.side ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side ul li {
    width: 48px;
    height: 48px;
    float: left;
    position: relative;
    border-bottom: 1px solid #444;
}

.side ul li .side2box {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 0;
    right: 0;
    transition: all 0.3s;
    background: #000;
    opacity: 0.8;
    filter: Alpha(opacity=80);
    color: #fff;
    font: 14px/48px "";
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.side ul li .side2box img {
    width: 40px;
}

.side ul li img {
    float: left;
}

.info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.c {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-right: var(--grid-gutter);
    padding-left: 24px;
    padding-left: var(--grid-gutter);
}



.pb-32 {
    padding-bottom: 2rem;
}

.pt-40 {
    padding-top: 2.5rem;
}

.gutter-4 {
    --grid-gutter: 24px;
    --grid-gutter-negative: -24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-right: -24px;
    margin-right: var(--grid-gutter-negative);
    margin-left: -24px;
    margin-left: var(--grid-gutter-negative);
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    min-height: 1px;
    padding-right: 24px;
    padding-right: var(--grid-gutter);
    padding-left: 24px;
    padding-left: var(--grid-gutter);
}

.col--12 {
    flex: 0 0 100%;
    max-width: 100%;
}



.mb-12 {
    margin-bottom: .75rem;
}

.text-center {
    text-align: center;
}

.font-600 {
    font-weight: 600;
}

.font-18 {
    font-size: 18px;
}

.mt-0 {
    margin-top: 0;
}

.w-full {
    width: 100%;
}

.d-flex {
    display: flex;
}

.pr-12 {
    padding-right: .75rem;
}

.pl-12 {
    padding-left: .75rem;
}

.pt-16 {
    padding-top: 1rem;
}

.pb-16 {
    padding-bottom: 1rem;
}

.border-1 {
    border: 1px;
}

.border-solid {
    border-style: solid;
}


.border-radius-12 {
    border-radius: 12px;
}


.border-light,
.border-primary {
    border-color: #e7e8eb;
}

.align-items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.h-auto {
    height: auto;
}

.container--mini {
    max-width: 920px;
    margin: 0 auto;
}


img {
    max-width: 100%;
}

img,
svg {
    vertical-align: middle;
}

img {
    border-style: none;
    min-height: 1px;
}

.order-2 {
    order: 2;
}

.flex-1 {
    flex: 1 1 100%;
}

.mb-0 {
    margin-bottom: 0;
}

.font-500 {
    font-weight: 500;
}

.order-1 {
    order: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.border-b-1 {
    border-bottom-width: 1px;
}

.d-none {
    display: none;
}

.mb-16 {
    margin-bottom: 1rem;
}

.mt-16 {
    margin-top: 1rem;
}

.mt-12 {
    margin-top: .75rem;
}

@media (min-width: 960px) {
    .md\:pl-0 {
        padding-left: 0;
    }
}

.pl-26 {
    padding-left: 26px;
}

.list-none {
    line-style: none;
}

dl,
ol,
ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
}

address,
dl,
ol,
ul {
    margin-bottom: 1rem;
}

.platform-feature-list li {
    position: relative;
    padding-left: 24px;
    line-height: 24px;
}

*,
:after,
:before {
    box-sizing: border-box;
    border: 0 solid transparent;
}

.platform-feature-list li:before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    background-image: url(../images/check-box.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.font-16 {
    font-size: 16px;
}

.mr-8 {
    margin-right: .5rem;
}

.ml-0 {
    margin-left: 0;
}

@keyframes button-shine {
    0% {
        background-position: -5000px 0
    }

    to {
        background-position: 5000px 0
    }
}

@media (max-width: 960px) {
    .container {
        min-height: 100vh;
    }

    .content {
        flex-direction: column;
        margin: 0;
        width: 100%;
        height: calc(100vh - 80px);
    }

    .banner {
        order: 0;
        width: 100%;
        height: 100%;
    }

    .banner img {
        height: 100%;
        width: auto;
    }

    .content-box {
        order: 1;
        align-items: center;
    }

    .content-box-button-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .content-box-join {
        width: 50%;
        height: 50px;
        margin-top: 16px;
    }

    .content-box-title {
        font-size: 22px;
        text-align: center;
    }

    .content-box-text {
        font-size: 16px;
        text-align: center;
    }

    .content-box-button {
        width: 100%;
        margin-top: 16px;
    }

    .bottom-box {
        display: none;
    }

    .attention {
        font-size: 14px;
        text-align: center;
    }

    .info {
        display: none;
    }
}

@media (min-width: 960px) {
    .md\:mt-0 {
        margin-top: 0;
    }

    .md\:pb-32 {
        padding-bottom: 2rem;
    }

    .md\:pl-32 {
        padding-left: 2rem;
    }

    .md\:pt-32 {
        padding-top: 2rem;
    }

    .md\:pb-72 {
        padding-bottom: 72px;
    }

    .md\:pt-72 {
        padding-top: 72px;
    }

    .md\:pr-32 {
        padding-right: 2rem;
    }

    .md\:gutter-2 {
        --grid-gutter: 12px;
        --grid-gutter-negative: -12px;
    }

    .md\:font-32 {
        font-size: 32px;
    }

    .md\:col--6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .md\:gutter-3 {
        --grid-gutter: 16px;
        --grid-gutter-negative: -16px;
    }

    .md\:order-1 {
        order: 1;
    }

    .md\:font-20 {
        font-size: 20px;
    }

    .md\:mr-0 {
        margin-right: 0;
    }

    .md\:ml-16 {
        margin-left: 1rem;
    }

    .md\:order-2 {
        order: 2;
    }

    .md\:d-block {
        display: block;
    }

    .md\:mt-16 {
        margin-top: 1rem;
    }
}


@media (max-width: 1024px) {
    .fantasy-box-list-outer .fantasy-box-list {
        border-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        position: relative;
    }
}

@media (max-width: 1024px) {
    .fantasy-box-list-outer .world-fantasy {
        border-top: 1px solid #e7e8eb;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
}

@media (max-width: 1024px) {
    .fantasy-box-list-outer .fantasy-box-list:before {
        content: "";
        position: absolute;
        bottom: 0;
        width: 90%;
        height: 1px;
        border-bottom: 1px dashed;
        border-color: #e7e8eb;
        left: 50%;
        transform: translate(-50%);
    }
}

@media (max-width: 1024px) {
    .fantasy-icons {
        height: 20px;
        width: 20px;
    }
}

@media (min-width: 960px) {
    .md\:mb-32 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 1024px) {
    .fantasy-box-list-outer .stop-fantasy {
        border-bottom: 1px solid #e7e8eb;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
}

h3 {
    margin-top: 0;
}

.border-radius-circle {
    border-radius: 50%;
}

.position-fixed {
    position: fixed;
}

.scroll-to-top {
    bottom: 24px;
    right: 24px;
    height: 64px;
    width: 64px;
    background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAAAclBMVEUAAABfJaBfJZ9gIp9eJaFcJZtfJZ9fJJ9fJJ9fJZ5eJZ9iIZ1fI55fJZ9fJZ9fJZ9fJZ9fJZ9fJaBZLpBfJZ9fJZ9fJZ9eJZ9fJJ9fJaBeJJ9eJZ9fJJ9fJZ9eJZ9fJaBfJZ9fJp5fJZ9jHJxgKJ9fJZ+kLYIxAAAAJXRSTlMAs6QXEhTO08rW0Q8d3tdt9dw8A/zt59iJe0kju5jDdGBX4AktBNydJwAAAiFJREFUeNrt29tuglAQheGxoqBoQRSKHDzW93/FJkY7YjNdJEOYm1mXlOT/2I2JJC0ptt1v1mm6biqy2Sq6PTaJyWD15fa7cEajb7W+vexzSiOO+7zFaALu2wi4byPgvo2A+yYC7gtbjvBp5L6VYLXhnoGA+wYC7lsIuG8j4L6NgPuWgumCGwYC7hsIuG8h4L6NgPsGAtAHgsCmz5sHg/VDkAICgz4LjPossOuzQN+3FMy4byCQnr9Iqn36fjHdV8kFCPTPz++B2e7takVEwRwL9P2v6f2Hh+7V8H4xjoBA3ee3j4/u5QkRiWcQBQM/vwygYLAzCCKxLwOwQN8HACDQ9wFgKEEcCZ8/AAACfR8AkEDdBwAsUPYBAHyGoQD3MQALFH0E0AlwHwIUAthfTAkDFALUD2eEAb2/TUSx3N9O0PNjAD6DZisCjvgdCwPwGSTiAeS4jwFYUEhHkIE+APR/q8uEmxPQBwB0Bvh3sAd9AOh/Bkfh1hP4zAJAf8FJuLMGz48AvX8LNQk74OfHAHwGB5KW7VAfA7Bgl5G4BH2XxwAsSOifnfOHsr3SkACKn/fnZ3Bj0qyLqPwm0gH+LmsXedEcY9IMA/Ac4AAHOMABDnCAAxzgAAc4wAEOcIADHOAABzjAAQ5wgAMc4AAHOMABDhhqZRfQ0tiruoAzjb1r8drPYxp9p+6fJhms5f4Hmez5Twa7cks2q8tlmoZlTYr9AMeRAwpDUBs2AAAAAElFTkSuQmCC) no-repeat 50%;
    background-size: 20px;
    z-index: 9;
    box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear .3s, opacity .3s;
    -webkit-animation: animatedBackground 1s infinite alternate;
    animation: animatedBackground 1s infinite alternate;
}

@media (max-width: 960px) {
    .scroll-to-top {
        height: 48px;
        width: 48px;
        background-size: 15px;
        bottom: 120px;
    }
}

.duration-300 {
    transition-duration: .3s;
}

@keyframes animatedBackground {
    0% {
        background-position: center 70%
    }

    to {
        background-position: 50%
    }
}

.flex-col {
    flex-direction: column;
}

.justify-content-between {
    justify-content: space-between;
}

.left-0 {
    left: 0;
}

.bottom-0 {
    bottom: 0;
}

.apk-download {
    z-index: 9;
    transform: translateY(140%);
}

.apk-download-wrapper-footer {
    width: 100vw;
}

.bg-secondary {
    background-color: #111835;
}

.position-relative {
    position: relative;
}

@media (min-width: 960px) {
    .md\:d-none {
        display: none;
    }
}

.gutter-3 {
    --grid-gutter: 16px;
    --grid-gutter-negative: -16px;
}

.container--box {
    max-width: 1200px;
}

.h-full {
    height: 100%;
}

.pb-12 {
    padding-bottom: .75rem;
}

.pt-32 {
    padding-top: 2rem;
}

.position-absolute {
    position: absolute;
}

.mobile-download-btn {
    top: -20px;
    left: 50%;
    transform: translate(-50%);
    width: 90%;
}

.button {
    min-width: 64px;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    outline: none;
    background: transparent;
    background: var(--button-background);
    color: #111835;
    color: var(--button-color);
}

.border-radius-62 {
    border-radius: 62px;
}

.border-white {
    border-color: #fff;
}

.text-white {
    color: #fff;
}

.font-14 {
    font-size: 14px;
}

.justify-content-center {
    justify-content: center;
}

.overflow-hidden {
    overflow: hidden;
}

.h-48 {
    height: 48px;
}

.download-app-button__android,
.download-app-button__ios {
    -webkit-animation: button-shine 45s linear infinite;
    animation: button-shine 45s linear infinite;
}

.download-app-button__android {
    background: linear-gradient(121.19deg, rgba(133, 239, 49, 0) 25.73%, hsla(0, 0%, 100%, .37) 45.27%, rgba(133, 239, 49, 0) 62.27%), #009c4d;
}

.small-tag {
    width: 60px;
    line-height: 14px;
    font-size: 6px;
    top: 12px;
    left: -12px;
}

.pointer-none {
    pointer-events: none;
}

.mr-10 {
    margin-right: 10px;
}

p {
    margin-bottom: 0;
}

.text-yellow {
    color: #f9c921;
}

.font-12 {
    font-size: 12px;
}

.mt-8 {
    margin-top: .5rem;
}

.bg-primary {
    background-color: #009174;
}

.p-26 {
    padding: 26px;
}

@media (min-width: 960px) {
    .md\:d-flex {
        display: flex;
    }
}

.font-20 {
    font-size: 20px;
}

.pl-20 {
    padding-left: 20px;
}

.pr-20 {
    padding-right: 20px;
}

.h-54 {
    height: 54px;
}

.border-radius-5 {
    border-radius: 5px;
}