@font-face {
    font-family: BemBolz;
    src: url(../../fonts/BemBolz.42133d3.ttf);
}

* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

body {
    font-family: BemBolz;
}

.gptslot {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin: 16px auto;
    margin-top: 0px;
    min-height: 250px;
    /* background-color: #000000; */
    max-width: 300px;
}

.ad-label {
    color: rgb(167, 167, 167);
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    position: relative;
    padding: 5px 0px 2px 0px;
    font-size: 14px;
}

a {
    text-decoration: none;
}

a:link,
a:visited {
    color: inherit;
    text-decoration: none;
}

.ad p {
    width: 100%;
    line-height: 50px;
    text-align: center;
    height: 50px;
}

header {
    width: 100%;
    height: 60px;
    box-shadow: 0 2px 15px rgba(11, 17, 31, .08);
}

.header-box {
    width: 90%;
    margin: 0 auto;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.fav {
    width: 160px;
    height: 60px;
    margin-left: 10px;
    line-height: 60px;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main {
    width: 90%;
    margin: 30px auto;
    color: #fff;
}

.rootbg {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    cursor: pointer;
}

.header-menu {
    width: 45%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-justify-content: space-around;
            justify-content: space-around;
    color: #fff;
    font-weight: 600;

}

.main-menu {
    width: 92%;
    margin: 1% 3%;
    overflow-x: auto;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.menu-item {
    width: 10%;
    min-height: 40px;
    margin: 0 0.55%;
    min-width: 100px;
    aspect-ratio: 3;
    border-radius: 40px;
    cursor: pointer;
    border: 0.5px solid rgb(255, 255, 255);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.menu-item:hover {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    background-color: #00000010;
}

.item-name {
    font-size: .9rem;
    font-weight: 600;
    color: #fff;

}

.game-main-list,
.game-new-list,
.game-recommend-list,
.game-exclusive-list {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    overflow: hidden;
}

.game-main-item,
.game-new-item,
.game-recommend-item,
.game-exclusive-item {
    background-color: rgba(255, 255, 255, 0.228);
    padding: 6px;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
}

.game-main-item:nth-child(1),
.game-main-item:nth-child(11),
.game-recommend-item:nth-child(1),
.game-recommend-item:nth-child(11) {
    grid-column: span 2;
    grid-row: span 2;
}

.game-main-item:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

.game-img {
    width: 100%;
    aspect-ratio: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
}

.game-name {
    width: 100%;
    /* height: 24px; */
    text-align: center;
    font-size: 1rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
    margin: 3px;
}

.game-stats {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    position: relative;
    margin: auto;
}

.game-stats .stat-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    text-align: center;
    color: #666;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
}

.game-stats-icon {
    font-size: 10px;

    margin: 0 2px;
    text-align: center;
    word-wrap: nowrap;
}

.game-main-item:nth-child(1),
.game-main-item:nth-child(11),
.game-recommend-item:nth-child(1),
.game-recommend-item:nth-child(11) {
    grid-column: span 2;
    grid-row: span 2;
    max-width: 300px;
}

.game-main-item:nth-child(1) .game-name,
.game-main-item:nth-child(11) .game-name,
.game-recommend-item:nth-child(1) .game-name,
.game-recommend-item:nth-child(11) .game-name {
    /* height: 30px; */
    font-size: 1.2rem;
}

.self_B_00_title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin: 0 1%;
    height: 60px;
}

.self_B_00_title .text-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    background-color: #141414b1;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 600;

}

.self_B_00_title .more {
    width: 100px;
}

.game-icon {
    display: block;
    width: 35px;
    height: 35px;
    margin: 5px;
}

.self_B_00_title .hot-icon {
    display: block;
    width: 35px;
    height: 35px;
    margin: 5px;
    background-image: url(../../images/fire02.8cf0ce4.png);
}

.self_B_00_title .bestgame {
    background-image: url(../../images/huangguang.418cba6.png);
}

.self_B_00_title .EditorPicks {
    background-image: url(../../images/like-white.c5da5a4.png);
}

.self_B_00_title .MostLike {
    background-image: url(../../images/round_like.0998803.png);
}

.self_B_00_title .categorybox-icon {
    background-image: url(../../images/game-green.74b7e20.png);
}

.wofang-bgi {
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
}

#Hot,
#More {
    font-size: 20px;
    font-weight: bold;
}

.play-online,
.about {
    position: relative;
}

.header-list,
.about-list {
    position: absolute;
    top: 40px;
    left: 0;
    height: auto;
    width: 200%;
    background-color: #000000d9;
    z-index: 100;
    display: none;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 5px;
    border-radius: 10px;
    padding: 20px;
}

.about-list {
    width: auto;
}

.home:hover,
.play-online:hover,
.played-games:hover,
.about:hover {
    color: rgb(13, 112, 190);
    cursor: pointer;
}

.play-item,
.aside-about-list a {
    width: 100%;
    height: 50px;
    line-height: 25px;
    color: rgb(167, 169, 174);
    font-weight: normal;
    font-size: .8rem;
    padding: 5px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.about-list .objprivacy,
.about-list .objterms,
.about-list .awebsite {
    width: 100%;
    height: 50px;
    line-height: 30px;
    color: rgb(167, 169, 174);
    font-weight: normal;
    font-size: .8rem;
    padding: 10px;
    cursor: pointer;
}

.play-item:hover,
.objprivacy:hover,
.objterms:hover,
.awebsite:hover {
    color: rgb(89, 255, 0);

}

.search-box {
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: 20%;
    /* justify-content: space-around; */
    /* width: 100%; */
    height: 40px;
    padding: 5px;
    background-color: #fff;
    /* background-color: red; */
    border-radius: 15px;
}

.search-btn {
    background-color: rgba(255, 255, 255, 0);
    margin-right: 10px;
    width: 20px;
    aspect-ratio: 1;
    background-image: url(../../images/search-black.305f356.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
    border: none;
    cursor: pointer;
}

.myInput {
    height: 30px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    max-width: 85%;
    outline: 0;
    font-size: 1rem;
    border-radius: 6px;
    border: 0;
    /* color: #6a6f77; */
    display: inline-block;
    padding: 0 1em;
    text-decoration: none;

}

#search-suggestions {
    position: absolute;
    width: 92%;
    top: 39px;
    left: 4%;
    /* transform: translateX(-50%); */
    max-height: 250px;
    overflow-y: auto;
    background-color: rgb(252, 252, 252);
    border: 0 1px 1px 1px solid #e6e6e69e;
    z-index: 1;
    border-radius: 0 0 10px 10px;
}

#search-suggestions div {
    padding: 6px 12px;
    cursor: pointer;
}

#search-suggestions div:hover {
    background-color: #555555b5;
}

.aside-menu {
    display: none;
    width: 40px;
    height: 40px;
    background-image: url(../../images/menu.7889495.png);
    background-position: center;
    background-size: 100%;
}

aside {
    width: 80%;
    position: fixed;
    right: 0;
    height: 100vh;
    background-color: #000000ed;
    z-index: 200;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    padding: 20px;
    overflow-y: scroll;
}

.close {
    width: 100%;
    position: relative;
    height: 40px;
    margin-bottom: 10px;
}

.close-icon {
    position: absolute;
    right: 10px;
    width: 30px;
    height: 30px;
    background-image: url(../../images/close-white.27d0d87.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.aside-home,
.aside-play-online,
.aside-played-games,
.aside-about {
    margin: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
}

.aside-list,
.aside-about-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
}

.awebsite {
    cursor: pointer;
}

.bottom {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0px 0 30px;
    background-color: #fff;
}

.bottom a {

    text-decoration: none;
    margin: 5px 0;
}

.bottom a:hover {
    cursor: pointer;
}

.bottom .btxt {
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    text-align: center;

}

.bottom .text-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: 1000px;
    margin: 0 auto;
    -webkit-justify-content: space-around;
            justify-content: space-around;

}

.bottom .left-box {
    width: 50%;
    color: rgb(136, 132, 139);
    font-size: 14px;
    line-height: 24px;
}

.bottomfav {
    width: 30%;
    margin: 0 45% 0 0%;
    height: 70px;
}

.bottom .right-box {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-justify-content: space-around;
            justify-content: space-around;
}

.left-box .pre {
    width: 80%;
}

.latest-game {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    text-align: center;
}

.latest-title,
.btxt-title {
    height: 50px;
    line-height: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    color: rgb(115, 120, 133);
    text-align: center;
}

.latest-item {
    height: 40px;
    line-height: 40px;
    font-size: .9rem;

}

.latest-item:hover {
    color: rgb(0, 145, 209);
    cursor: pointer;
}

.bt_iframe {
    width: 100%;
    min-height: 1900px;
    overflow-y: auto;
}

@media screen and (max-width:1200px) {

    .main {
        width: 100%;
    }

    .game-main-list,
    .game-new-list,
    .game-recommend-list,
    .game-exclusive-list {
        grid-template-columns: repeat(3, 1fr);

    }

    .game-name {
        font-size: .9rem;
    }

    .bottom {
        width: 100%;
    }

    .bottom .text-box {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
    }

    .bottom .left-box,
    .bottom .right-box {
        width: 100%;
    }

    .bottom .pre {
        margin: 0 auto 10px;
    }

    header,
    .header-box,
    .main {
        width: 100%;
    }

    .header-box .header-menu {
        display: none;
    }

    .search-box {
        width: 60%;
    }

    .fav {
        width: 20%;
    }

    .bottomfav {
        margin: 0 35%;
        height: 60px;
    }

    .aside-menu {
        display: block;
    }



}

@media screen and (max-width:480px) {
    .game-name {
        font-size: .6rem;
        /* height: 13px; */

    }


}
body {
    min-height: 100vh;
}

.second-main {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.second-main .game-new-box {
    width: 80%;
}

.second-main .categorybox {
    background-color: rgba(0, 0, 0, 0.351);
    width: 18%;
    margin: 1%;
    min-height: 100px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border-radius: 15px;

}

.second-main .categorybox_title_box {
    font-weight: bolder;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    gap: 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.337);
}

.second-main .category-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack:start;
    -webkit-justify-content:flex-start;
       -moz-box-pack:start;
            justify-content:flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.category-item {
    width: 80%;
    margin: 10px auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
}

.category-item .category-item-title {
    height: 45px;
    line-height: 45px;
}

.game-exclusive-item {
    margin: 0px 0 30px;
    border-radius: 10px;
    position: relative;
}

.game-exclusive-item .game-name {
    font-weight: 600;
}

.game-exclusive-item .game-img-icon {
    width: 30%;
    aspect-ratio: 1;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(17, 114, 255, .7);
    bottom: -10%;
    right: 10%;
}

.game-img-icon:hover {
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transform: translateX(-25px) scale(0.95);
            transform: translateX(-25px) scale(0.95);
    cursor: pointer;
}

.game-recommend-title {
    height: 40px;
    line-height: 40px;
    font-size: 2rem;
    font-weight: 600;
    padding: 0 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.more {
    width: 100%;
    margin: 50px 0;
}

.more-button {
    width: 18%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 auto;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    background-color: #0000008b;
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-weight: bolder;

}

.more-button:hover {
    cursor: pointer;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(0, #cbe0ff), to(#fff));
    background-image: -webkit-linear-gradient(top, #fff, #cbe0ff 0, #fff);
    background-image: linear-gradient(180deg, #fff, #cbe0ff 0, #fff);
    color: rgb(128, 134, 147);
}

@media screen and (max-width:1200px) {
    .section-intro {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
    }

    .game-exclusive-item {
        margin: 0px 0 20px;
    }
    .main .index-title {
        font-size: 2rem;
    }

    .more-button {
        width: 70%;
    }

    .game-new-title,
    .game-recommend-title,
    .game-new-title-back {
        font-size: 1.2rem;
    }

    .second-main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
    }

    .second-main .game-new-box {
        width: 100%;
    }

    .second-main .categorybox {
        width: 98%;
    }
}
