@charset "UTF-8";
/* @import url(../../fonts/font-awesome-4.5.0/css/font-awesome.min.css); */
@import url('https://storage.googleapis.com/tada-cdn-asia/All-In-One/production/css/font-awesome.min.css');

.loading-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 1s linear infinite;
}

body * {
    user-select: none;
}

.navbar__main__user-selector .playGames {
    display: none;
}

.advertise {
    margin-top: 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 1279px) {
    .advertise {
        margin-top: 70px;
    }
}

@media only screen and (min-width: 812px) {
    .advertise {
        display: block;
    }
}

.advertise__swiper {
    width: 100%;
    position: relative;
}

.advertise__swiper .swiper {
    width: 100%;
}

.advertise__swiper .swiper-slide {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.advertise__swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    min-height: 300px;
    /* max-height: 600px; */
}

.banner-link {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .advertise__swiper .swiper-slide img {
        min-height: 200px;
        /* max-height: 400px; */
    }
}

.advertise__swiper .swiper-slide .slide-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 30%;
    padding-right: 20px;
    z-index: 2;
}

.advertise__swiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.1));
    pointer-events: none;
}

.advertise__swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.advertise__swiper .swiper-slide {
    transition: transform 0.3s ease-in-out;
}

@media screen and (max-width: 576px) {
    .advertise__swiper .swiper-slide .slide-content {
        max-width: 40%;
    }
    
    .advertise__swiper .swiper-slide::after {
        width: 40%;
    }
}

.advertise__swiper .swiper-button-next,
.advertise__swiper .swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.advertise__swiper .swiper-button-next:hover,
.advertise__swiper .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.advertise__swiper .swiper-button-next:after,
.advertise__swiper .swiper-button-prev:after {
    font-size: 20px;
}

.advertise__swiper .swiper-pagination {
    bottom: 20px;
}

.advertise__swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.advertise__swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gamenav {
    background: transparent;
    margin-top: 0;
}

@media only screen and (min-width: 812px) {
    .gamenav {
        /* margin-top: 48px; */
        width: 100%;
        height: 90px;
        background: #000;
        background: -webkit-gradient(linear, left top, left bottom, from(#000), to(rgba(0, 0, 0, 0.2)));
        background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.2));
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        /* position: absolute; */
        /* position: relative; */
        /* bottom: 0; */
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 1;
    }
}

@media only screen and (min-width: 1279px) {
    .gamenav {
        height: 120px;
        z-index: 2;
    }
}

.gamenav.scroll {
    position: fixed;
    top: 0px;
    margin-top: 48px;
}

@media only screen and (min-width: 1279px) {
    .gamenav.scroll {
        top: 22px;

    }
}

.gamenav .content {
    max-width: 1280px;
    margin: 0 auto;
    width: 90%;
}

@media only screen and (min-width: 812px) {
    .gamenav.container.pc-none {
        display: none;
    }

    .gamenav .content {
        width: 100%;
        height: 100%;
    }
}

.gamenav ul.gamenav__list {
    max-width: 1280px;
    margin: 0 auto;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gamenav ul.gamenav__list.mobile-none {
    display: none;
}

@media only screen and (min-width: 812px) {
    .gamenav ul.gamenav__list.mobile-none {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 100%;
    }
}

.gamenav ul.gamenav__list li {
    width: 11%;
}

.gamenav ul.gamenav__list li p {
    color: #fff;
    transition: all 0.3s ease;
}

.gamenav ul.gamenav__list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.3rem;
    width: 100%;
    height: 100%;
    color: #FFF;
    text-align: center;
    opacity: 1;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    position: relative;
    font-weight: bold;
}

@media only screen and (min-width: 1279px) {
    .gamenav ul.gamenav__list li a {
        font-size: 1.2rem;
    }
}

.gamenav ul.gamenav__list li a::before {
    /* content: ''; */
    /* display: block; */
    /* width: 100%; */
    /* height: 0; */
    /* -webkit-mask-repeat: no-repeat; */
    /* mask-repeat: no-repeat; */
    /* -webkit-mask-size: 60%; */
    /* mask-size: 60%; */
    /* -webkit-mask-position: top center; */
    /* mask-position: top center; */
}

@media only screen and (min-width: 1279px) {
    .gamenav ul.gamenav__list li a::before {
        /* -webkit-mask-size: 70%; */
        /* mask-size: 70%; */
    }
}

.gamenav ul.gamenav__list li.active,
.gamenav ul.gamenav__list li:hover {
    /* background-color: rgba(255, 222, 0, 0.9); */
}

.gamenav ul.gamenav__list li.active p,
.gamenav ul.gamenav__list li:hover p {
    /* color: #000; */
    font-size: 1.5rem;
    color: #ffcd4f;
}

.gamenav ul.gamenav__list li.active a::before,
.gamenav ul.gamenav__list li:hover a::before {
}

.gamenav ul.gamenav__list li.active {
    opacity: 1;
}

.gamenav ul.gamenav__list li.btn-all a::before {
    /* -webkit-mask-image: url(./images/icon-All.png); */
    /* mask-image: url(./images/icon-All.png); */
}

.gamenav ul.gamenav__list li.btn-hot a::before {
    /* -webkit-mask-image: url(./images/icon-Hot.png); */
    /* mask-image: url(./images/icon-Hot.png); */
}

.gamenav ul.gamenav__list li a img.nav-icon {
    display: none;
    /* position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: auto; */
}

.gamenav ul.gamenav__list li:hover a::before,
.gamenav ul.gamenav__list li.active a::before {
}

.gamenav .gamenav__selector {
    padding: 24px 0 0 0;
}

.gamenav .gamenav__selector.pc-none {
    display: block;
}

@media only screen and (min-width: 812px) {
    .gamenav .gamenav__selector.pc-none {
        display: none;
    }
}

.gamenav .gamenav__selector .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.gamenav .gamenav__selector .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.gamenav .gamenav__selector .select-styled {
    color: #ffcd4f;
    background-color: transparent;
    font-size: 1.35rem;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-weight: bold;
    padding: 0;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 420px) {
    .gamenav .gamenav__selector .select-styled {
        font-size: 1.75rem;
    }
}

@media only screen and (min-width: 812px) {
    .gamenav .gamenav__selector .select-styled {
        font-size: 2.6rem;
    }
}

.gamenav .gamenav__selector .select-styled::after {
    content: '\f078';
    font-family: "FontAwesome";
    font-size: 1rem;
    width: 30px;
    height: 30px;
    margin-left: 8px;
    text-align: center;
    background: #ffcd4f;
    color: #fff;
    border-radius: 10px;
    -webkit-transition: .25s all ease;
    transition: .25s all ease;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gamenav .gamenav__selector .select-styled:hover::after {
    background: #ffcd4f;
}

.gamenav .gamenav__selector .select-styled:active,
.gamenav .gamenav__selector .select-styled.active {
    color: #ffcd4f;
}

.gamenav .gamenav__selector .select-styled:active:after,
.gamenav .gamenav__selector .select-styled.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.gamenav .gamenav__selector .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 8px 0px #000;
    box-shadow: 0 0 8px 0px #000;
    min-width: 10.5em;
}

.gamenav .gamenav__selector .select-options li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.gamenav .gamenav__selector .select-options li:hover,
.gamenav .gamenav__selector .select-options li.is-selected {
    color: #ffcd4f
}

.gamenav .gamenav__selector .select-options li[rel="hide"] {
    display: none;
}

.content_index {
    padding-top: 0;
    position: relative;
}

@media only screen and (min-width: 812px) {
    .content_index .gamesExhibit {
        padding-top: 80px;
    }
}

.content_index .gamesExhibit .content {
    width: 90%;
    padding: 0;
}

.content_index .gamesExhibit .title {
    display: none;
}

@media only screen and (max-width: 811px) {
    .indianPoker .content .title {
        color: #452914;
        background-color: transparent;
        font-size: 1.35rem;
        font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
        font-weight: bold;
        padding: 0;
        -webkit-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media only screen and (min-width: 812px) {
    .content_index .gamesExhibit .title {
        display: block;
        color: #ffcd4f;
        position: absolute;
        top: -0.8em;
        padding: 0;
        left: 0;
        z-index: 1;
    }

    .indianPoker .content .title {
        display: block;
        color: #FF8200;
        position: absolute;
        top: -0.8em;
        padding: 0;
        left: 0;
        z-index: 1;
    }
}

.content_index .gamesExhibit__search {
    font-size: 0.88rem;
    position: absolute;
    top: calc(-4px - 1.5em);
    right: 0;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 3;
}

@media only screen and (min-width: 576px) {
    .content_index .gamesExhibit__search {
        width: 250px;
        top: calc(-12px - 1.5em);
        z-index: 2;
    }
}

.content_index .gamesExhibit__search input {
    display: none;
}

@media only screen and (min-width: 576px) {
    .content_index .gamesExhibit__search input {
        display: block;
        width: calc(100% - 1em);
        margin: 0;
        font-size: 1rem;
        border: 2px solid #ddd;
        border-radius: 30px;
        background-color: white;
        padding: 8px 10px;
        margin-right: 8px;
    }

    .content_index .gamesExhibit__search input:focus,
    .content_index .gamesExhibit__search input.action {
        outline: 0;
        border: 2px solid #ffc400;
    }
}

.content_index .gamesExhibit__search .search-btn::before {
    content: '\f002';
    font-family: "FontAwesome";
    font-size: 1.75rem;
    color: #ffc400;
    position: absolute;
    top: -50px;
    right: 5%;
}

.content_index .gamesExhibit__search.action .search-btn::before {
    content: '\f00d';
    -webkit-animation: rotate 0.3s;
    animation: rotate 0.3s;
    font-size: 2rem;
}

@media only screen and (min-width: 576px) {
    .content_index .gamesExhibit__search .search-btn::before {
        display: inline-block;
        position: unset;
        top: unset;
        right: unset;
    }

    .content_index .gamesExhibit__search.action .search-btn::before {
        content: '\f002';
    }
}

.content_index .gamesExhibit__searchbar {
    width: 100%;
    display: none;
    padding-top: 8px;
    position: relative;
    top: -50px;
}

.content_index .gamesExhibit__searchbar input {
    width: 100%;
    display: block;
    font-size: 1rem;
    border: 2px solid #ffc400;
    border-radius: 8px;
    background-color: white;
    padding: 8px 10px;
    padding-left: 32px;
    outline: 0;
}

.content_index .gamesExhibit__searchbar input:focus {
    border: 2px solid #ffc400;
}

.content_index .gamesExhibit__searchbar i {
    position: absolute;
    left: 15px;
    top: calc(50% + 4px);
    color: gray;
    font-size: 16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.content_index .gamesExhibit__searchbar.action {
    display: block;
}

@media only screen and (min-width: 576px) {
    .content_index .gamesExhibit__searchbar.action {
        display: none;
    }
}

.content_index .gamesExhibit__list ul {
    width: 100%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 15px;
}

.content_index .gamesExhibit__list ul li {
    width: calc(49% - 30px);
    margin: 12px;
    position: relative;
    cursor: pointer;
}

.content_index .gamesExhibit__list ul li:has(.comingsoon) {
    cursor: default;
}

.content_index .gamesExhibit__list ul li .info.active a {
    width: 100%;
    max-width: 180px;
}

.content_index .gamesExhibit__list ul li:nth-child(5n+1) {
}

.content_index .gamesExhibit__list ul li:nth-child(5n+1) .info.active a {
}

@media only screen and (min-width: 812px) {
    .content_index .gamesExhibit__list ul li {
        width: calc(25% - 30px);
        margin: 16px 12px;
    }

    .content_index .gamesExhibit__list ul li .info.active a {
        width: 70%;
    }

    .content_index .gamesExhibit__list ul li:nth-child(10n+1),
    .content_index .gamesExhibit__list ul li:nth-child(10n+6) {
    }

    .content_index .gamesExhibit__list ul li:nth-child(10n+1) .info.active a,
    .content_index .gamesExhibit__list ul li:nth-child(10n+6) .info.active a {
    }

    .content_index .gamesExhibit__list ul li:nth-child(10n+1) {
    }

    .content_index .gamesExhibit__list ul li:nth-child(10n+6) {
    }

    .content_index .gamesExhibit__list ul li:nth-child(10n+3),
    .content_index .gamesExhibit__list ul li:nth-child(10n+10) {
    }

    .content_index .gamesExhibit__list ul li:nth-child(10n+5),
    .content_index .gamesExhibit__list ul li:nth-child(10n+8) {
    }

    .content_index .gamesExhibit__list ul li:nth-child(10n+2),
    .content_index .gamesExhibit__list ul li:nth-child(10n+9) {
    }

    .content_index .gamesExhibit__list ul li:nth-child(10n+4),
    .content_index .gamesExhibit__list ul li:nth-child(10n+7) {
    }
}

.content_index .gamesExhibit__list ul li img {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.content_index .gamesExhibit__list ul li .info {
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.content_index .gamesExhibit__list ul li .info.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.content_index .gamesExhibit__list ul li .info.active a {
    z-index: 1;
    display: inline-block;
    border-radius: 8px;
}

.content_index .gamesExhibit__list ul li .info.active .subtitle {
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.34rem;
    font-weight: bold;
    text-shadow: 0 0 10px #000;
}

.content_index .gamesExhibit__list ul li .info.active .button-playNow {
    /* margin-bottom: 12px; */
}

.content_index .gamesExhibit__list ul li .info.active .button-gameInfo a {
    background: #000;
    color: #fff;
}

.content_index .gamesExhibit__list ul li .comingsoon {
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.content_index .gamesExhibit__list ul li .comingsoon .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.content_index .gamesExhibit__list ul li .comingsoon .content .state {
    width: 100%;
    color: #fff56e;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 15px #FF8200, 0 0 10px #000, 0 0 5px #000;
    margin-bottom: 8px;
}

.content_index .gamesExhibit__list ul li .comingsoon .content .time {
    width: 80%;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
    -webkit-box-shadow: inset 0 0 4px 1px #ffeb3b;
    box-shadow: inset 0 0 4px 1px #ffeb3b;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.85rem;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(3%, rgba(0, 0, 0, 0)), color-stop(20%, rgb(0, 0, 0)), color-stop(50%, rgb(0, 0, 0)), color-stop(80%, rgb(0, 0, 0)), color-stop(97%, rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 3%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 97%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(3%, rgba(0, 0, 0, 0)), color-stop(20%, rgb(0, 0, 0)), color-stop(50%, rgb(0, 0, 0)), color-stop(80%, rgb(0, 0, 0)), color-stop(97%, rgba(0, 0, 0, 0)));
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 3%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 97%);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    margin-bottom: 16px;
    line-height: 2em;
}

.content_index .gamesExhibit__list ul li .comingsoon .content .subtitle {
    width: 100%;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px #000, 0 0 5px #000;
}

/* 联系我们区域样式 */
.content_index .contact .role {
    width: 210px;
    position: absolute;
    bottom: -60px;
    right: -6%;
    display: none; /* 默认在小屏幕下隐藏 */
}

.content_index .contact .role img {
    width: 100%;
    display: block;
}

/* 在大屏幕下显示 role */
@media only screen and (min-width: 812px) {
    .content_index .contact .role {
        display: block; /* 大屏幕时显示 */
        width: 26%;
        max-width: initial;
        min-width: 286px;
        bottom: -130px;
        left: initial;
        right: -5%;
    }
}

@media only screen and (min-width: 1023px) {
    .content_index .contact .role {
        right: 0;
    }
}

@media only screen and (max-width: 440px) {
    .subtitle {
        margin-bottom: 10px;
        font-size: 16px;
    }
    .button-playNow {
        font-size: 12px;
    }
}