* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-family: Medium;
}
@font-face {
    font-family: "Medium";
    src: url("../css/Baloo2-Medium.ttf");
}
@font-face {
    font-family: "extrabold";
    src: url("../css/Baloo2-ExtraBold.ttf");
}
html {
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    width: 100%;
    height: 100%;
    background-color: var(--bs-body-bg);
    position: relative;
}
ul,
ol {
    list-style: none;
}
a {
    text-decoration: none;
    background-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    text-transform: capitalize;
}
button {
    border: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.container {
    /* max-width: 1366px; */
    max-width: 1024px;
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
}
input,
textarea {
    font-size: 14px;
}
input[type="submit"] {
    -webkit-appearance: none;
}
div,
i {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
:root {
    --swiper-theme-color: none !important;
}
body.act {
    overflow: hidden;
}
.text_center {
    text-align: center;
}
.text_left {
    text-align: left;
}
.text_right {
    text-align: right;
}
header {
    width: 100%;
    background: linear-gradient(180deg, var(--bs-3d-light-bg) 0%, var(--bs-3d-dark-bg) 100%);
    border-radius: 0px 0px 20px 20px;
    border: 1px solid var(--bs-3d-border);
}
header > .hea_top {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header > .hea_top .logo {
    display: inline-block;
    height: 36px;
}
header > .hea_top .logo > img {
    width: 100%;
    height: 100%;
}
header > .hea_top .icon_top,
header > .hea_top .icon_sea {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #fff;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
}
header > .hea_top .icon_top > .iconfont,
header > .hea_top .icon_sea > .iconfont {
    color: #fff;
    font-size: 16px;
}
.container .swiper_box {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}
.container .swiper_box > h2 {
    height: 30px;
    width: 195px;
    border-radius: 6px;
    border: 1px solid #fff;
    background-color: #2c2c2c;
    text-align: center;
    line-height: 30px;
    margin: 5px auto;
    color: #fff;
    font-family: extrabold;
    font-size: 18px;
}
.container .swiper_box .swiper-container {
    background: var(--bs-section-bg);
    border-radius: 8px;
    padding: 10px;
}
.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide dl {
    padding: 8px 5px;
    background: var(--bs-skin-title-bg);
    text-align: center;
}

.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a {
    background-color: var(--bs-skin-img-box-bg);
    border-radius: 10px 10px 5px 5px;
    position: relative;
    display: inline-block;
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
    overflow: hidden;
}
.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:hover {
    background-color: var(--bs-skin-img-box-bg-hover);
}
.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:hover dl {
    background-color: var(--bs-skin-title-bg-hover);
}

.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a .box_img {
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}
.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a .box_img > img {
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    padding: 3%;
}
.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a > dl > dt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    text-transform: capitalize;
}
.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a > dl > dd {
    color: #ad0000;
    font-size: 12px;
    line-height: 12px;
}
.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:nth-child(n + 4) {
    display: none;
}
.container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:nth-child(3n) {
    margin-right: 0;
}
@media (orientation: landscape) {
    .container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a {
        width: calc((100% - 50px) / 6);
    }
    .container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:nth-child(n + 4) {
        display: block;
    }
    .container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:nth-child(3n) {
        margin-right: 10px;
    }
    .container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:nth-child(6n) {
        margin-right: 0;
    }
}
@media screen and (min-width: 767px) {
    .container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a {
        width: calc((100% - 50px) / 6);
    }
    .container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:nth-child(n + 4) {
        display: block;
    }
    .container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:nth-child(3n) {
        margin-right: 10px;
    }
    .container .swiper_box .swiper-container .swiper-wrapper .swiper-slide > a:nth-child(6n) {
        margin-right: 0;
    }
}
.container .swiper_box .swiper-container .seeBox {
    display: flex;
    flex-direction: column;
}
.container .swiper_box .swiper-container .seeBox .see {
    display: block;
    height: 34px;
    line-height: 30px;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
    border-radius: 18px;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    font-size: 20px;
    width: max-content;
    padding: 0px 24px;
    margin: 25px auto 0 auto;
}
.container .swiper_box .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
}
.container .swiper_box .swiper-pagination-bullet {
    background-color: #fff;
    margin-right: 3px;
}
.container .swiper_box .swiper-pagination-bullet-active {
    border-radius: 4px !important;
    width: 16px !important;
    height: 8px !important;
}
.container .ad {
    margin-top: 8px;
    margin-bottom: 8px;
}
.container .ad > p {
    font-size: 12px;
    color: #fff;
    margin-top: 4px;
    text-align: center;
    line-height: 12px;
}
.container .ad .adbox {
    display: flex;
    align-items: center;
    justify-content: center;
}
.container .gameBox {
    margin: 8px 0;
}
.container .gameBox > h2 {
    height: 30px;
    width: 195px;
    border-radius: 6px;
    border: 1px solid #fff;
    background-color: #2c2c2c;
    text-align: center;
    line-height: 30px;
    margin: 5px auto;
    color: #fff;
    font-family: extrabold;
    font-size: 18px;
}
.container .gameBox .gameCont {
    background: var(--bs-section-bg);
    border-radius: 20px;
    padding: 10px;
}
.container .gameBox .gameCont .game_list {
    display: flex;
    flex-wrap: wrap;
}
.container .gameBox .gameCont .game_list > li {
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.container .gameBox .gameCont .game_list > li > a {
    background-color: var(--bs-skin-img-box-bg);
    border-radius: 10px 10px 5px 5px;
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
}
.container .gameBox .gameCont .game_list > li > a:hover {
    background-color: var(--bs-skin-img-box-bg-hover);
}
.container .gameBox .gameCont .game_list > li > a .box_img {
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}
.container .gameBox .gameCont .game_list > li > a .box_img > img {
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    padding: 3%;
}
.container .gameBox .gameCont .game_list > li > a > dl {
    padding: 8px 5px;
    background: var(--bs-skin-title-bg);
    text-align: center;
}
.container .gameBox .gameCont .game_list > li > a:hover > dl {
    background: var(--bs-skin-title-bg-hover);
}
.container .gameBox .gameCont .game_list > li > a > dl > dt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    text-transform: capitalize;
}
.container .gameBox .gameCont .game_list > li > a > dl > dd {
    color: #ad0000;
    font-size: 12px;
    line-height: 12px;
}
.container .gameBox .gameCont .game_list > li:nth-child(3n) {
    margin-right: 0;
}
@media (orientation: landscape) {
    .container .gameBox .gameCont .game_list > li {
        width: calc((100% - 50px) / 6);
    }
    .container .gameBox .gameCont .game_list > li:nth-child(3n) {
        margin-right: 10px;
    }
    .container .gameBox .gameCont .game_list > li:nth-child(6n) {
        margin-right: 0;
    }
}
@media screen and (min-width: 767px) {
    .container .gameBox .gameCont .game_list > li {
        width: calc((100% - 50px) / 6);
    }
    .container .gameBox .gameCont .game_list > li:nth-child(3n) {
        margin-right: 10px;
    }
    .container .gameBox .gameCont .game_list > li:nth-child(6n) {
        margin-right: 0;
    }
}
.container .gameBox .gameCont .see {
    display: block;
    height: 34px;
    line-height: 30px;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
    border-radius: 18px;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    font-size: 20px;
    width: max-content;
    padding: 0px 24px;
    margin: 25px auto 0 auto;
}
.container .pick {
    margin: 8px 0;
}
.container .pick > h2 {
    height: 30px;
    width: 195px;
    border-radius: 6px;
    border: 1px solid #fff;
    background-color: #2c2c2c;
    text-align: center;
    line-height: 30px;
    margin: 5px auto;
    color: #fff;
    font-family: extrabold;
    font-size: 18px;
}
.container .pick .pick_list {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bs-section-bg);
    border-radius: 20px;
    padding: 10px;
}
.container .pick .pick_list > li {
    width: 100%;
    display: flex;
    align-items: flex-end;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
}
.container .pick .pick_list > li .thumb {
    display: block;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--bs-thumb-border);
    padding: 5px;
    margin-right: 10px;
    text-align: center;
}
.container .pick .pick_list > li .thumb > img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.container .pick .pick_list > li > dl {
    width: calc(100% - 90px);
}
.container .pick .pick_list > li > dl > dt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.container .pick .pick_list > li > dl > dt > a {
    color: #333;
    font-size: 16px;
}
.container .pick .pick_list > li > dl > dd {
    margin-top: 2px;
    color: #ad0000;
    font-size: 14px;
    line-height: 14px;
}
.container .pick .pick_list > li > dl .tags {
    margin-top: 0;
}
.container .pick .pick_list > li > dl .tags > a {
    float: right;
    width: 90px;
    height: 24px;
    line-height: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    background: #f7ebff;
    border-radius: 10px;
    border: 1px solid #b66ef8;
    font-size: 14px;
    color: #7b1ac4;
    text-align: center;
}
.container .pick .pick_list > li > dl .tags > a:nth-child(n + 2) {
    display: none;
}
.container .pick .pick_list > li:nth-child(n + 2) {
    margin-top: 10px;
}
.container .games {
    margin: 8px 0;
    background: var(--bs-section-bg);
    border-radius: 20px;
    padding: 10px;
}
.container .games > h2 {
    color: #fff;
    font-family: extrabold;
    font-size: 18px;
    line-height: 18px;
}
.container .games > h2 > span {
    color: var(--bs-title-span);
    font-family: extrabold;
    font-size: 18px;
}
.container .games .game_list {
    display: flex;
    flex-wrap: wrap;
}
.container .games .game_list > li {
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
    border-radius: 10px;
    margin-top: 10px;
}
.container .games .game_list > li > a {
    background-color: var(--bs-skin-img-box-bg);
    border-radius: 10px 10px 5px 5px;
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
}
.container .games .game_list > li > a:hover {
    background-color: var(--bs-skin-img-box-bg-hover);
}
.container .games .game_list > li > a > dl {
    padding: 8px 5px;
    background: var(--bs-skin-title-bg);
    text-align: center;
}
.container .games .game_list > li > a:hover > dl {
    background: var(--bs-skin-title-bg-hover);
}
.container .games .game_list > li > a .box_img {
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}
.container .games .game_list > li > a .box_img > img {
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    padding: 3%;
}
.container .games .game_list > li > a > dl > dt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #333;
    text-transform: capitalize;
}
.container .games .game_list > li > a > dl > dd {
    color: #ad0000;
    font-size: 12px;
    line-height: 12px;
}
.container .games .game_list > li:nth-child(3n) {
    margin-right: 0;
}
@media (orientation: landscape) {
    .container .games .game_list > li {
        width: calc((100% - 50px) / 6);
    }
    .container .games .game_list > li:nth-child(3n) {
        margin-right: 10px;
    }
    .container .games .game_list > li:nth-child(6n) {
        margin-right: 0;
    }
}
@media screen and (min-width: 767px) {
    .container .games .game_list > li {
        width: calc((100% - 50px) / 6);
    }
    .container .games .game_list > li:nth-child(3n) {
        margin-right: 10px;
    }
    .container .games .game_list > li:nth-child(6n) {
        margin-right: 0;
    }
}
.container .moreBtn {
    display: block;
    width: 132px;
    height: 36px;
    border-radius: 18px;
    border: 1px solid #fff;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
    color: #fff;
    font-size: 12px;
    line-height: 36px;
    text-align: center;
    margin: 10px auto;
}
.container .editor {
    margin: 8px 0;
    background: var(--bs-section-bg);
    border-radius: 20px;
    padding: 10px;
}
.container .editor > h2 {
    color: #fff;
    font-family: extrabold;
    font-size: 18px;
    line-height: 18px;
}
.container .editor > h2 > span {
    color: var(--bs-title-span);
    font-family: extrabold;
    font-size: 18px;
}
.container .editor .pick_list {
    display: flex;
    flex-wrap: wrap;
}
.container .editor .pick_list > li {
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
    margin-top: 10px;
}
.container .editor .pick_list > li > a {
    display: block;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
    position: relative;
    overflow: hidden;
}
.container .editor .pick_list > li > a .thumb {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ccc;
}
.container .editor .pick_list > li > a .thumb > img {
    width: auto;
    height: 100%;
    object-position: center;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 10px 20px 10px;
}
.container .editor .pick_list > li > a > p {
    padding: 0 10px;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 20px;
    position: absolute;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: rgba(1, 0, 255, 0.8);
    color: #ffffff;
    text-transform: capitalize;
}
.container .editor .pick_list > li:nth-child(3n) {
    margin-right: 0;
}
@media (orientation: landscape) {
    .container .editor .pick_list > li {
        width: calc((100% - 50px) / 6);
    }
    .container .editor .pick_list > li:nth-child(3n) {
        margin-right: 10px;
    }
    .container .editor .pick_list > li:nth-child(6n) {
        margin-right: 0;
    }
}
@media screen and (min-width: 767px) {
    .container .editor .pick_list > li {
        width: calc((100% - 50px) / 6);
    }
    .container .editor .pick_list > li:nth-child(3n) {
        margin-right: 10px;
    }
    .container .editor .pick_list > li:nth-child(6n) {
        margin-right: 0;
    }
}
.container .pageNum {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 8px;
}
.container .pageNum > a {
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
    border: 1px solid #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.container .pageNum .pageLi {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}
.container .pageNum .pageLi > li {
    margin: 0 5px;
}
.container .pageNum .pageLi > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
}
.container .pageNum .pageLi > li > a.active {
    background: linear-gradient(180deg, #ffda00 0%, #fd968f 100%);
    color: #333;
}
.container .pageNum .disabled {
    cursor: not-allowed;
    color: #fff;
}
.search_main {
    min-height: calc(100% - 280px);
}
.search_main .none_search {
    margin-top: 8px;
    background: var(--bs-banner-bg);
    border-radius: 20px;
    padding: 10px;
}
.search_main .none_search > h2 {
    display: inline-block;
    font-size: 18px;
    font-family: extrabold;
    color: #fff;
    line-height: 18px;
}
.search_main .none_search > h2 > span {
    font-size: 18px;
    font-family: extrabold;
    color: var(--bs-title-span);
    line-height: 18px;
}
.search_main .none_search > p {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 21px;
}
.search_main .keep {
    margin-top: 10px;
    background: var(--bs-banner-bg);
    border-radius: 20px;
    padding: 10px;
}
.search_main .keep > h2 {
    display: inline-block;
    font-size: 18px;
    font-family: extrabold;
    color: #fff;
    line-height: 18px;
}
.search_main .keep > h2 > span {
    font-size: 18px;
    font-family: extrabold;
    color: var(--bs-title-span);
    line-height: 18px;
}
.search_main .keep .boxSearch {
    margin-top: 10px;
    width: 100%;
}
.search_main .keep .boxSearch .searchBox {
    position: relative;
}
.search_main .keep .boxSearch .searchBox > input {
    width: 100%;
    height: 36px;
    background: #fff;
    border: none;
    text-indent: 1em;
    outline: none;
    color: #999;
    border-radius: 18px;
    overflow: hidden;
}
.search_main .keep .boxSearch .searchBox > button {
    position: absolute;
    width: 56px;
    height: 36px;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
    font-size: 16px;
    color: #fff;
    right: 0;
    top: 0;
    cursor: pointer;
    border-radius: 18px;
    border: 1px solid #fff;
    line-height: 36px;
}
.search_main .keep .boxSearch .searchBox > button > .iconfont {
    color: #fff;
    font-size: 20px;
}
.search_main .keep .boxSearch .result_list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.search_main .keep .boxSearch .result_list > a {
    width: calc((100% - 30px) / 4);
    display: inline-block;
    background: #f7ebff;
    border: 1px solid #b66ef8;
    border-radius: 10px;
    padding: 2px 4px;
    text-align: center;
    color: #7b1ac4;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search_main .keep .boxSearch .result_list > a:nth-child(4n) {
    margin-right: 0;
}
@media (orientation: landscape) {
    .search_main .keep .boxSearch .result_list > a {
        width: calc((100% - 70px) / 8);
    }
    .search_main .keep .boxSearch .result_list > a:nth-child(4n) {
        margin-right: 10px;
    }
    .search_main .keep .boxSearch .result_list > a:nth-child(8n) {
        margin-right: 0;
    }
}
@media screen and (min-width: 767px) {
    .search_main .keep .boxSearch .result_list > a {
        width: calc((100% - 70px) / 8);
    }
    .search_main .keep .boxSearch .result_list > a:nth-child(4n) {
        margin-right: 10px;
    }
    .search_main .keep .boxSearch .result_list > a:nth-child(8n) {
        margin-right: 0;
    }
}
.detail {
    margin-top: 8px;
}
.detail .ad > p {
    color: #ccc;
}
.detail .crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #999;
}
.detail .crumbs > a {
    color: #999;
    font-size: 12px;
    text-transform: capitalize;
}
.detail .crumbs > p {
    font-size: 12px;
    color: #999;
}
.detail .detailTop {
    margin-top: 8px;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 0;
}
.detail .detailTop .top_des {
    display: flex;
    align-items: center;
    margin: 0 10px;
}
.detail .detailTop .top_des .thumb {
    width: 200px;
    height: 410px;
    border-radius: 5px;
    background: var(--bs-skin-img-box-bg);
    border: 1px solid #ccc;
    overflow: hidden;
    margin-right: 10px;
    padding: 10px;
}
.detail .detailTop .top_des .thumb:hover {
    background: var(--bs-skin-img-box-bg-hover);
}
.detail .detailTop .top_des .thumb > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.detail .detailTop .top_des > dl {
    width: calc(100% - 90px);
}
.detail .detailTop .top_des > dl > dt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #333;
    font-family: extrabold;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 3px;
    text-transform: capitalize;
}

.detail .detailTop .top_des > dl > .cats {
    padding: 2px;
    overflow: hidden;
    text-transform: capitalize;
}
.detail .detailTop .top_des > dl > .cats > a {
    display: inline-block;
    background: var(--bs-cats-bg);
    border-radius: 10px;
    height: 24px;
    border: 1px solid var(--bs-cats-border);
    font-size: 12px;
    color: var(--bs-tag-text);
    line-height: 24px;
    padding: 0 10px;
    margin-right: 6px;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.detail .detailTop .top_des > dl > .tags {
    padding: 2px;
    overflow: hidden;
    text-transform: capitalize;
}
.detail .detailTop .top_des > dl > .tags > a {
    display: inline-block;
    background: var(--bs-tag-bg);
    border-radius: 10px;
    height: 24px;
    border: 1px solid var(--bs-tag-border);
    font-size: 12px;
    color: var(--bs-tag-text);
    line-height: 24px;
    padding: 0 10px;
    margin-right: 6px;
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.detail .detailTop .top_des > dl > .rate {
    margin-top: 2px;
    display: flex;
    align-items: center;
}
.detail .detailTop .top_des > dl > .rate > span {
    font-size: 12px;
    color: #999;
    padding-top: 2px;
}
.detail .detailTop .top_des > dl > .rate > .iconfont {
    padding-top: 2px;
    font-size: 14px;
    color: #28c840;
    margin-left: 5px;
}
.detail .detailTop .top_des > dl > .rate .layui-rate {
    padding: 0;
    font-size: 12px;
}
.detail .detailTop .top_des > dl > .rate .layui-icon {
    font-size: 12px;
}
.detail .detailTop .top_des > dl > .rate .layui-icon-rate:before {
    content: "";
}
.detail .detailTop .top_des > dl > .rate .layui-icon-rate {
    color: #999 !important;
}
.detail .skin_download {
    font-size: 20px;
    font-weight: 500;
    background-color: var(--bs-skin-btn-bg);
    border-radius: 30px 30px 30px 30px;
    padding: 5px 40px;
    display: block;
    width: max-content;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
    border: 1px solid;
}

.detail .skin_download:hover {
    background: #aeff00;
    color: #ff0000;
    border-color: #ff0000;
}
.text_center .skin_download {
    margin: 5px auto;
}
.detail .detailTop .top_table {
    margin-top: 8px;
    padding: 0 10px;
}
.detail .detailTop .top_table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.detail .detailTop .top_table table tbody tr {
    height: 30px;
    line-height: 30px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    font-size: 12px;
}
.detail .detailTop .top_table table tbody tr > td {
    padding-left: 24px;
    font-size: 12px;
}
.detail .detailTop .top_table table tbody tr > td:nth-child(1) {
    border-right: 1px solid #eee;
    width: 130px;
}
.detail .detailTop .top_table table tbody tr:nth-child(2n) {
    background-color: #fff;
}
.detail .detailTop .top_table table tbody tr:nth-child(1) {
    border-top: 1px solid #eee;
}
.detail .tags_game {
    margin-top: 10px;
    background: #e7c6ff;
    border-radius: 20px;
    padding: 10px;
}
.detail .tags_game > h2 {
    display: block;
    font-size: 18px;
    font-family: extrabold;
    color: #fff;
    line-height: 18px;
}
.detail .tags_game > h2 > span {
    font-size: 18px;
    font-family: extrabold;
    color: var(--bs-title-span);
    line-height: 18px;
}
.detail .tags_game .tags_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.detail .tags_game .tags_list > a {
    width: calc((100% - 30px) / 4);
    margin-top: 10px;
    display: inline-block;
    background: #f7ebff;
    border-radius: 10px;
    height: 24px;
    border: 1px solid #b66ef8;
    font-size: 12px;
    color: #7b1ac4;
    line-height: 24px;
    margin-right: 10px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 4px;
}
.detail .tags_game .tags_list > a:nth-child(4n) {
    margin-right: 0;
}

/* skin_card */
.card {
    --bs-card-bg: white;
}
.text-center {
    text-align: center !important;
}
.p-0 {
    padding: 0 !important;
}
.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}
#play-pause-btn {
    width: 32px;
    height: 32px;
}
.animation-paused {
    animation-play-state: paused;
}
.checkered {
    background-size: auto 12.5%;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAAQMAAACQp+OdAAAABlBMVEX4+Pj///9njiF9AAAAFklEQVQoz2P4DwQMIDDKwMoYDQi8DADzAv8BKis8ZwAAAABJRU5ErkJggg==);
    image-rendering: pixelated;
}
.position-relative {
    position: relative;
}

/* .skin_card */

@media (orientation: landscape) {
    .detail .tags_game .tags_list > a {
        width: calc((100% - 70px) / 8);
    }
    .detail .tags_game .tags_list > a:nth-child(4n) {
        margin-right: 10px;
    }
    .detail .tags_game .tags_list > a:nth-child(8n) {
        margin-right: 0;
    }
}
@media screen and (min-width: 767px) {
    .detail .tags_game .tags_list > a {
        width: calc((100% - 70px) / 8);
    }
    .detail .tags_game .tags_list > a:nth-child(4n) {
        margin-right: 10px;
    }
    .detail .tags_game .tags_list > a:nth-child(8n) {
        margin-right: 0;
    }
}
.detail .swiper_con {
    margin-top: 10px;
    position: relative;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 20px;
}
.detail .swiper_con .preview .swiper-wrapper .swiper-slide {
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
}
.detail .swiper_con .preview .swiper-wrapper .swiper-slide > img {
    width: 100%;
}
.detail .swiper_con .sw_btn {
    width: 100%;
    position: absolute;
    padding: 0 10px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
}
.detail .swiper_con .sw_btn .swiper-button-p1,
.detail .swiper_con .sw_btn .swiper-button-n1 {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2);
    border-radius: 17px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    cursor: pointer;
}
.detail .swiper_con .sw_btn .swiper-button-p1 > .iconfont,
.detail .swiper_con .sw_btn .swiper-button-n1 > .iconfont {
    color: #666;
    font-size: 12px;
}
.detail .swiper_con .sw_btn .swiper-button-p1:focus,
.detail .swiper_con .sw_btn .swiper-button-n1:focus {
    outline: none;
}
.detail .module {
    margin-top: 10px;
    background: #fff;
    border-radius: 20px;
    padding: 10px 0;
}
.detail .module > h2 {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    padding-left: 10px;
    font-family: extrabold;
    color: #b66ef8;
    line-height: 18px;
}
.detail .module > h2 > span {
    font-size: 18px;
    font-family: extrabold;
    color: var(--bs-title-span);
    line-height: 18px;
}
.detail .module .des {
    margin-top: 10px;
    padding: 0 10px;
    max-height: 180px;
    min-height: 120px;
    overflow: hidden;
    position: relative;
    line-height: 18px;
    color: #666;
    box-sizing: content-box;
    font-size: 12px;
    font-family:
        -apple-system,
        PingFangSC-Semibold,
        PingFang SC,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
}
.detail .module .des > p {
    color: #666;
    font-weight: 600;
    font-size: 12px;
    font-family:
        -apple-system,
        PingFangSC-Semibold,
        PingFang SC,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    line-height: 18px;
}
.detail .module .des > p .span {
    font-size: 12px;
    font-family:
        -apple-system,
        PingFangSC-Semibold,
        PingFang SC,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    line-height: 18px;
}
.detail .module .showAll {
    max-height: 1500px;
}
.detail .module .more_btn {
    display: flex;
    margin-top: 10px;
    padding-left: 10px;
}
.detail .module .more_btn .moreShow {
    font-size: 16px;
    font-weight: 500;
    color: #b66ef8;
    display: flex;
    align-items: center;
}
.detail .module .more_btn .moreShow::before {
    font-family: "iconfont";
    display: block;
    content: " Show More";
    font-weight: 500;
    font-size: 12px;
    font-family: Medium;
}
.detail .module .more_btn .moreShow::after {
    font-family: "iconfont";
    display: block;
    content: "";
    font-weight: 500;
    font-size: 12px;
    margin-left: 5px;
}
.detail .module .more_btn .lessShow::before {
    display: block;
    content: "Show Less";
    font-weight: 500;
    margin-right: 5px;
    font-size: 12px;
}
.detail .module .more_btn .lessShow::after {
    display: block;
    content: "";
    font-weight: 500;
    margin-right: 5px;
    font-size: 12px;
}
.detail .get {
    margin-top: 10px;
    background: #fff;
    border-radius: 20px;
    padding: 10px 0;
}
.detail .get > h2 {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    padding-left: 10px;
    font-family: extrabold;
    color: #b66ef8;
    line-height: 18px;
}
.detail .get > h2 > span {
    font-size: 18px;
    font-family: extrabold;
    color: var(--bs-title-span);
    line-height: 18px;
}
.detail .get .get_list {
    margin-top: 10px;
    padding: 0 5px;
}
.detail .get .get_list > li {
    display: flex;
    justify-content: center;
}
.detail .get .get_list > li > a {
    width: 100%;
    max-width: 250px;
    display: inline-block;
    text-align: center;
    padding: 0;
    border-radius: 20px;
    color: #333;
    font-size: 16px;
    background: #f8f8f8;
}
.detail .get .get_list > li > a > .iconfont {
    padding-bottom: 2px;
    color: #333;
    font-weight: 400;
    font-size: 18px;
    margin-right: 4px;
}
.detail .get .get_list > li > a > span {
    font-weight: 600;
}
.detail .get .get_list > li > a > p {
    font-size: 12px;
    color: #999;
}
.detail .get .get_list > li:nth-child(n + 2) {
    margin-top: 10px;
}
.detail .Similar {
    background: #fff;
    border-radius: 20px;
    padding: 10px 0;
    margin-top: 10px;
    overflow: hidden;
}
.detail .Similar > h2 {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    padding-left: 10px;
    font-family: extrabold;
    color: #b66ef8;
    line-height: 18px;
}
.detail .Similar > h2 > span {
    font-size: 18px;
    font-family: extrabold;
    color: var(--bs-title-span);
    line-height: 18px;
}
.detail .Similar .similar_list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
}
.detail .Similar .similar_list > li {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #fbf4ff;
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
    cursor: pointer;
}
.detail .Similar .similar_list > li .thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-right: 10px;
    transform: rotate(0);
}
.detail .Similar .similar_list > li .thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.detail .Similar .similar_list > li > dl {
    width: calc(100% - 90px);
}
.detail .Similar .similar_list > li > dl > dt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.detail .Similar .similar_list > li > dl > dt > a {
    color: #333;
    font-size: 16px;
}
.detail .Similar .similar_list > li > dl > dd {
    color: #ad0000;
    font-size: 14px;
    line-height: 14px;
}
.detail .Similar .similar_list > li > dl > dd > span {
    font-size: 14px;
    color: #999;
}
.detail .Similar .similar_list > li > dl > dd > p .layui-rate {
    padding: 0;
    margin-bottom: 4px;
    font-size: 12px;
}
.detail .Similar .similar_list > li > dl > dd > p .layui-icon {
    font-size: 12px;
}
.detail .Similar .similar_list > li > dl > dd > p .layui-icon-rate:before {
    content: "";
}
.detail .Similar .similar_list > li > dl > dd > p .layui-icon-rate {
    color: #999 !important;
}
.detail .Similar .similar_list > li > dl .tags {
    margin-top: 4px;
    height: 24px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.detail .Similar .similar_list > li > dl .tags > a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    background: #f7ebff;
    border-radius: 10px;
    border: 1px solid #b66ef8;
    margin-right: 3px;
    padding: 4px 7px;
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 14px;
    color: #7b1ac4;
    text-align: center;
}
.detail .hot {
    margin-top: 10px;
    background: #fff;
    border-radius: 20px;
    padding: 10px 0;
}
.detail .hot > h2 {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    padding-left: 18px;
    font-family: extrabold;
    color: #b66ef8;
    line-height: 18px;
}
.detail .hot > h2 > span {
    font-size: 18px;
    font-family: extrabold;
    color: var(--bs-title-span);
    line-height: 18px;
}
.detail .hot .hotList {
    padding: 0 10px;
    margin-top: 10px;
    text-align: center;
}
.detail .hot .hotList > li {
    width: 100%;
    max-width: 150px;
    display: inline-block;
    margin: 5px;
}
.detail .hot .hotList > li > a {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
}
.detail .hot .hotList > li > a .thumb {
    width: 100%;
    height: 110px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.detail .hot .hotList > li > a .thumb > img {
    width: auto;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.detail .skins_detail {
}

@media (orientation: landscape) {
    .detail .hot .hotList > li > a .thumb {
        height: 110px;
    }
}
@media screen and (min-width: 767px) {
    .detail .hot .hotList > li > a .thumb {
        height: auto;
    }
}
.detail .hot .hotList > li > a .tag {
    position: absolute;
    padding: 3px 7px;
    border-radius: 10px;
    opacity: 0.8;
    font-size: 14px;
    color: #fff;
    background-color: #b66ef8;
    top: 10px;
    left: 10px;
}
.detail .hot .hotList > li > a .name {
    display: flex;
    align-items: center;
    margin-top: 5px;
    flex-direction: column;
    text-align: center;
}
.detail .hot .hotList > li > a .name .skin_name {
    max-width: calc(150px - 10px);
    text-transform: capitalize;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.detail .hot .hotList > li > a .name > span {
    display: inline-block;
    /* width: calc(100% - 110px); */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    padding-right: 10px;
}
.detail .hot .hotList > li > a .name > p {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    line-height: 1.1em;
}
.detail .hot .hotList > li > a .name > p > span {
    padding-bottom: 2px;
}
.detail .hot .hotList > li > a .name .layui-rate {
    padding: 0;
    margin-bottom: 5px;
    font-size: 12px;
}
.detail .hot .hotList > li > a .name .layui-icon {
    font-size: 12px;
}
.detail .hot .hotList > li > a .name .layui-icon-rate:before {
    content: "";
}
.detail .hot .hotList > li > a .name .layui-icon-rate {
    color: #999 !important;
}
.detail .hot .hotList > li:nth-child(n + 2) {
    margin-top: 5px;
}
.detail .review {
    margin-top: 10px;
    background: #fff;
    border-radius: 20px;
    padding: 10px 0;
}
.detail .review > h2 {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    padding-left: 10px;
    font-family: extrabold;
    color: #b66ef8;
    line-height: 18px;
}
.detail .review > h2 > span {
    font-size: 18px;
    font-family: extrabold;
    color: var(--bs-title-span);
    line-height: 18px;
}
.detail .review > form {
    width: 100%;
    padding: 10px;
}
.detail .review > form .nameBox {
    display: flex;
    justify-content: space-between;
}
.detail .review > form .nameBox > input[type="submit"] {
    width: 90px;
    height: 40px;
    background-color: #b66ef8;
    color: #fff;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
}
.detail .review > form #name {
    width: calc(100% - 100px);
    height: 40px;
    border: none;
    outline: none;
    display: block;
    text-indent: 1em;
    margin-bottom: 10px;
    background: #f5f5f5;
    border-radius: 4px;
}
.detail .review > form > textarea {
    width: 100%;
    resize: none;
    border: none;
    outline: none;
    display: block;
    text-indent: 1em;
    padding-top: 10px;
    background: #f5f5f5;
    border-radius: 4px;
}
.detail .review > form .error {
    color: red;
}
.detail .review .review_comment {
    padding: 0 10px;
}
.detail .review .review_comment > li > dl > dt {
    color: rgba(102, 102, 102, 0.5);
    font-size: 14px;
    display: flex;
    align-items: center;
}
.detail .review .review_comment > li > dl > dt span {
    color: #516375;
    margin-left: 3px;
}
.detail .review .review_comment > li > dl > dt::before {
    content: "";
    display: block;
    height: 14px;
    width: 4px;
    background-color: var(--bs-banner-bg);
    margin-right: 6px;
    border-radius: 3px;
}
.detail .review .review_comment > li > dl > dd {
    margin-top: 10px;
}
.detail .review .review_comment > li > dl > dd.starBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.detail .review .review_comment > li > dl > dd.starBox .zan_box {
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.detail .review .review_comment > li > dl > dd.starBox .zan_box > li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60px;
}
.detail .review .review_comment > li > dl > dd.starBox .zan_box > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
    color: #666;
}
.detail .review .review_comment > li > dl > dd.starBox .zan_box > li > a > .iconfont {
    font-size: 20px;
    color: #999;
}
.detail .review .review_comment > li > dl > dd.starBox .zan_box > li > a.active::before {
    color: #fe5e52;
}
.detail .review .review_comment > li > dl > dd.starBox .zan_box > li > a::before {
    width: 25px;
    display: block;
    font-family: iconfont;
    content: "";
    font-size: 16px;
    color: #999;
}
.detail .review .review_comment > li > dl > dd.starBox .zan_box > li + li > a.active::before {
    color: #fe5e52;
}
.detail .review .review_comment > li > dl > dd.starBox .zan_box > li + li > a::before {
    width: 25px;
    display: block;
    font-family: iconfont;
    content: "";
    font-size: 16px;
    color: #999;
}
.detail .review .review_comment > li > dl > dd.starBox > p {
    color: #999;
    font-size: 12px;
}
.detail .review .review_comment > li:nth-child(n + 2) {
    margin-top: 8px;
}
.error_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100% - 275px);
}
.error_box .err_r {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error_box .err_r > span {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 20px;
}
.error_box .err_r .btns {
    margin-top: 16px;
}
.error_box .err_r .btns > span {
    color: #333;
    font-size: 14px;
}
.error_box .err_r .btns > a {
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
    border-radius: 18px;
    padding: 0 20px;
}
footer {
    margin-top: 30px;
    border-radius: 20px 20px 0px 0px;
    border: 1px solid var(--bs-3d-border);
    overflow: hidden;
    background: linear-gradient(180deg, var(--bs-3d-light-bg) 0%, var(--bs-3d-dark-bg) 100%);
}
footer .website {
    background: linear-gradient(180deg, var(--bs-3d-light-bg) 0%, var(--bs-3d-dark-bg) 100%);
    border-bottom: 1px solid var(--bs-3d-border);
}
footer .website .container {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .website .container .f_logo {
    height: 36px;
    padding-right: 10px;
}
footer .f_logo img {
    width: 100%;
    max-width: 300px;
}
footer .website .container > p {
    color: #fff;
}
footer .navList {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    margin: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .navList li > a {
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    padding: 0 12px;
}
footer .site {
    margin-top: 10px;
}
footer .site > p {
    color: #fff;
    font-family: extrabold;
    text-align: center;
}
footer .site .footer_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
    padding-bottom: 80px;
}
footer .site .footer_list > li {
    display: block;
    width: max-content;
    border: 2px solid #fff;
    text-align: center;
    padding: 0px;
    margin-right: 10px;
    margin-bottom: 10px;
}
footer .site .footer_list > li > a {
    width: 100%;
    display: block;
    line-height: 18px;
    color: #fff;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 2px 8px;
}
@media (orientation: landscape) {
    footer .site .footer_list > li {
        display: block;
        width: max-content;
        border: 2px solid #fff;
        text-align: center;
        padding: 2px 8px;
        margin-right: 10px;
        margin-bottom: 10px;
        padding-right: 10px;
    }
}
@media screen and (min-width: 767px) {
    footer .site .footer_list > li {
        width: max-content;
        text-align: center;
    }
}
footer > p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    padding-bottom: 8px;
    text-align: center;
}
.banner_list {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
}
.banner_list .banner_box {
    width: 190px;
    height: 100%;
    overflow-y: scroll;
    background: var(--bs-banner-bg);
    padding: 16px;
}
.banner_list .banner_box > h2 {
    font-size: 18px;
    color: #fff;
    font-family: extrabold;
}
.banner_list .banner_box > h2 > span {
    font-size: 18px;
    color: var(--bs-title-span);
    font-family: extrabold;
}
.banner_list .banner_box .categoryList {
    min-height: calc(100% - 94px);
}
.banner_list .banner_box .categoryList > li > a {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    border-radius: 19px;
    border: 1px solid #ebd2ff;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
    margin-top: 10px;
    padding: 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.banner_list .banner_box .cancel {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffda00;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    margin: 15px auto 0 auto;
    border: 2px solid #ffed80;
}
.banner_list .banner_box .cancel > .iconfont {
    font-size: 20px;
}
.banner_list.active {
    display: block;
}
.banner_search {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    justify-content: flex-end;
}
.banner_search .banner_box {
    height: 100%;
    overflow-y: scroll;
    float: right;
    width: 280px;
    background: var(--bs-banner-bg);
    padding: 10px;
}
.banner_search .banner_box > h2 {
    font-size: 18px;
    color: #fff;
    font-family: extrabold;
}
.banner_search .banner_box > h2 > span {
    font-size: 18px;
    color: var(--bs-title-span);
    font-family: extrabold;
}
.banner_search .banner_box .search_con {
    width: 100%;
    height: 36px;
    border-radius: 18px;
    background: #f1f1f1;
    margin-top: 5px;
}
.banner_search .banner_box .search_con > .searchBox {
    position: relative;
    width: 100%;
    height: 100%;
}
.banner_search .banner_box .search_con > .searchBox > input {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    outline: none;
    border: none;
    text-indent: 1em;
    background: #f1f1f1;
}
.banner_search .banner_box .search_con > .searchBox input::-webkit-input-placeholder {
    font-family:
        -apple-system,
        PingFangSC-Semibold,
        PingFang SC,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
}
.banner_search .banner_box .search_con > .searchBox button {
    position: absolute;
    width: 56px;
    height: 36px;
    border-radius: 18px;
    right: 0;
    top: 0;
    cursor: pointer;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, var(--bs-btn-light-bg) 0%, var(--bs-btn-dark-bg) 100%);
    color: #fff;
    border: 1px solid #fff;
}
.banner_search .banner_box .search_con > .searchBox button > .iconfont {
    color: #fff;
    font-size: 16px;
}
.banner_search .banner_box .trend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}
.banner_search .banner_box .trend > a {
    color: #7b1ac4;
    width: 80px;
    height: 24px;
    background: #f7ebff;
    border-radius: 10px;
    line-height: 24px;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 8px;
    text-align: center;
    font-size: 12px;
    overflow: hidden;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #b66ef8;
}
.banner_search .banner_box .trend > a:nth-child(3n) {
    margin-right: 0;
}
.banner_search .banner_box .banner_game {
    flex-wrap: wrap;
    margin-top: 10px;
    min-height: calc(100% - 245px);
}
.banner_search .banner_box .banner_game > a {
    display: inline-block;
    width: calc((100% - 20px) / 3);
    margin-bottom: 7px;
    margin-right: 7px;
}
.banner_search .banner_box .banner_game > a:nth-child(3n) {
    margin-right: 0;
}
.banner_search .banner_box .banner_game > a .ban_img {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #eee;
    border: 1px solid #fff;
}
.banner_search .banner_box .banner_game > a .ban_img > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    overflow: hidden;
}
.banner_search .banner_box .banner_game > a > p {
    width: 100%;
    padding: 0 3px;
    font-size: 12px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.banner_search .banner_box .cancel {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffda00;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    margin: 15px auto 0 auto;
    border: 2px solid #ffed80;
}
.banner_search .banner_box .cancel > .iconfont {
    font-size: 20px;
}
.banner_search.active {
    display: block;
}
.top_lea {
    display: none;
    width: 50px;
    height: 50px;
    background: #ffda00;
    border-radius: 25px;
    position: fixed;
    align-items: center;
    justify-content: center;
    right: 5px;
    bottom: 90px;
    z-index: 9;
    cursor: pointer;
    border: 2px solid #ffed80;
}
.top_lea .iconfont {
    color: #333;
    font-size: 16px;
}
.company {
    margin-top: 8px;
    min-height: calc(100% - 293px);
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 20px;
    padding-bottom: 10px;
}
.company h2 {
    font-size: 18px;
    border-bottom: 1px solid #eee;
    color: #b66ef8;
    font-weight: 500;
    padding: 10px;
    line-height: 18px;
    font-family: extrabold;
}
.company h2 > span {
    font-size: 18px;
    line-height: 18px;
    color: var(--bs-title-span);
    font-family: extrabold;
}
.company .mainBox {
    margin-top: 8px;
    padding: 0 10px;
}
.company .mainBox h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #b66ef8;
}
.company .mainBox p {
    font-size: 0.9em;
    margin-bottom: 8px;
    line-height: 1.6em;
    color: #666;
    font-weight: 500;
}
.company .mainBox form {
    border-radius: 4px;
}
.company .mainBox form .formItem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    position: relative;
}
.company .mainBox form .formItem input {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    text-indent: 1em;
    color: #666;
    background-color: #f8f8f8;
    border: none;
    outline: none;
}
.company .mainBox form .formItem #comcom {
    width: 100%;
    resize: none;
    border: none;
    outline: none;
    border-radius: 20px;
    text-indent: 1em;
    padding-top: 15px;
    color: #666;
    background-color: #f8f8f8;
}
.company .mainBox form input[type="submit"] {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 20px;
    color: #fff;
    background-color: #b66ef8;
    cursor: pointer;
}
.company .mainBox .error {
    color: red;
}
.extension {
    margin-top: 10px;
    min-height: calc(100% - 283px);
}
.extension .similar_list {
    padding: 10px;
    background: var(--bs-banner-bg);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.extension .similar_list > li {
    background-color: #fff;
    border-radius: 10px;
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
    margin-bottom: 10px;
}
.extension .similar_list > li > a {
    display: block;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
    position: relative;
    overflow: hidden;
}
.extension .similar_list > li > a > .thumb {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ccc;
}
.extension .similar_list > li > a > .thumb > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.extension .similar_list > li > a p {
    color: #333;
    padding: 0 10px;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 20px;
    background-color: rgba(255, 218, 0, 0.6);
    position: absolute;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.extension .similar_list > li:nth-child(3n) {
    margin-right: 0;
}
@media (orientation: landscape) {
    .extension .similar_list > li {
        width: calc((100% - 50px) / 6);
    }
    .extension .similar_list > li:nth-child(3n) {
        margin-right: 10px;
    }
    .extension .similar_list > li:nth-child(6n) {
        margin-right: 0;
    }
}
@media screen and (min-width: 767px) {
    .extension .similar_list > li {
        width: calc((100% - 50px) / 6);
    }
    .extension .similar_list > li:nth-child(3n) {
        margin-right: 10px;
    }
    .extension .similar_list > li:nth-child(6n) {
        margin-right: 0;
    }
}
#apkBox {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
}
#apkBox .dBox {
    width: 480px;
    height: 290px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
#apkBox .dBox > h2 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: center;
    text-transform: none;
}
#apkBox .dBox > h2 > span {
    font-size: 20px;
    color: var(--bs-title-span);
    font-weight: 600;
}
#apkBox .dBox .Btn > a {
    display: inline-block;
    line-height: 38px;
    text-align: center;
    width: 160px;
    height: 40px;
    background: #fff;
    color: #b66ef8;
    border-radius: 10px;
    border: 1px solid #b66ef8;
}
#apkBox .dBox .Btn > a + a {
    background: #b66ef8;
    color: #fff;
    margin-left: 15px;
}
#apkBox.active {
    display: flex;
}
.qrCodeBox {
    margin-bottom: 8px;
}
.ub-popup-ad-container {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    height: 100vh;
    justify-content: center;
    pointer-events: auto;
    position: fixed !important;
    width: 100vw;
    z-index: 2147483647;
    padding: 15px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.ub-popupcontent {
    width: 100%;
    text-align: center;
    background: #fff0;
    padding: 5px;
    border-radius: 2px;
    position: relative;
    height: auto;
    border: 1px solid #d5c2ff;
    max-width: calc(700px - 22px);
}
.ub-popup,
.ub-popup-ad-container {
    align-items: center;
    overflow: hidden;
}
.close_ub-popup {
    position: absolute;
    cursor: pointer;
    background: #fff;
    padding: 2px;
    height: 25px;
    width: 25px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #d5c2ff;
    left: -1px;
    top: -25px;
    border-radius: 2px;
    font-size: 22px;
    line-height: 18px;
    text-transform: lowercase;
    color: var(--bs-banner-bg);
}
@media only screen and (max-width: 767px) {
    .ub-popup-ad-container {
        padding: 0;
    }
    .ub-popupcontent {
        padding: 40px 2px 10px;
        max-width: calc(100% - 2px);
        border-radius: 4px;
    }
}
.banner_bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 5px;
    background-color: transparent;
    z-index: 9999999;
    padding: 0;
    overflow-y: auto;
    text-align: center;
    width: max-content;
    margin: auto;
}
.cc-window.cc-floating {
    padding: 5px 10px !important;
    max-width: unset !important;
    bottom: 0;
}
.cc-window .cc-message {
    margin-bottom: 0 !important;
    line-height: 18px;
}
a.cc-btn.cc-dismiss {
    font-weight: 500;
    font-size: 14px;
}
a.cc-link {
    opacity: 1;
}
.cc-revoke.cc-hide,
.cc-window.cc-hide {
    display: none;
}
.cc-window.cc-banner {
    padding: 8px 6px !important;
}
.free_more_games.see {
    display: none;
    width: 250px;
    height: 40px;
    line-height: 40px;
    border-radius: 17px;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    margin: 0 auto 10px;
}
.home .free_more_games.see {
    display: block;
}

/* glowing_button */
.glowing_button {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
    0% {
        background-color: var(--bs-glowing-btn-bg);
        box-shadow: 0 0 5px var(--bs-glowing-btn-bg);
    }
    50% {
        background-color: var(--bs-skin-glowing-bg-blink);
        box-shadow: 0 0 10px var(--bs-skin-glowing-bg-blink);
        color: var(--bs-glowing-btn-text);
    }
    100% {
        background-color: var(--bs-glowing-btn-bg);
        box-shadow: 0 0 5px var(--bs-glowing-btn-bg);
    }
}
@-moz-keyframes glowing {
    0% {
        background-color: var(--bs-glowing-btn-bg);
        box-shadow: 0 0 5px var(--bs-glowing-btn-bg);
    }
    50% {
        background-color: var(--bs-skin-glowing-bg-blink);
        box-shadow: 0 0 10px var(--bs-skin-glowing-bg-blink);
        color: var(--bs-glowing-btn-text);
    }
    100% {
        background-color: var(--bs-glowing-btn-bg);
        box-shadow: 0 0 5px var(--bs-glowing-btn-bg);
    }
}
@-o-keyframes glowing {
    0% {
        background-color: var(--bs-glowing-btn-bg);
        box-shadow: 0 0 5px var(--bs-glowing-btn-bg);
    }
    50% {
        background-color: var(--bs-skin-glowing-bg-blink);
        box-shadow: 0 0 10px var(--bs-skin-glowing-bg-blink);
        color: var(--bs-glowing-btn-text);
    }
    100% {
        background-color: var(--bs-glowing-btn-bg);
        box-shadow: 0 0 5px var(--bs-glowing-btn-bg);
    }
}
@keyframes glowing {
    0% {
        background-color: var(--bs-glowing-btn-bg);
        box-shadow: 0 0 5px var(--bs-glowing-btn-bg);
    }
    50% {
        background-color: var(--bs-skin-glowing-bg-blink);
        box-shadow: 0 0 10px var(--bs-skin-glowing-bg-blink);
        color: var(--bs-glowing-btn-text);
    }
    100% {
        background-color: var(--bs-glowing-btn-bg);
        box-shadow: 0 0 5px var(--bs-glowing-btn-bg);
    }
}
/* .glowing_button */
