* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}
html {
    overflow: hidden auto;
}
body {
    min-height: 100vh;
    background-color: #fff;
    overflow: hidden;
}
a {
    color: inherit;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
ol, ul, p, h1, h2, h3, h4, h5, h6 {
    padding-left: 0;
    margin: 0;
    line-height: initial;
}
.uk-notification {
    z-index: 2200;
}
.uk-notification-message {
    padding: 30rem;
    font-size: 40rem;
}

/* Flex布局 */
.flex, .flex-row {
    display: flex;
    flex-direction: row;
}
.flex-center, .flex-row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.flex-center-start, .flex-row-center-start {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.flex-center-end, .flex-row-center-end {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}
.flex-start, .flex-row-start {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.flex-start-center, .flex-row-start-center {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.flex-start-end, .flex-row-start-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}
.flex-end, .flex-row-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}
.flex-end-center, .flex-row-end-center {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.flex-end-start, .flex-row-end-start {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.flex-column-center-start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.flex-column-center-end {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.flex-column-start {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.flex-column-start-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.flex-column-start-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}
.flex-column-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}
.flex-column-end-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.flex-column-end-start {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

body {
    display: flex;
    flex-direction: column;
}
body > .header {
    display: flex;
    flex-direction: column;
    z-index: 1;
}
body > .header .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8rem;
    height: 100rem;
    padding: 20rem 24rem;
    background-color: #fff;
}
body > .header .top .logo {
    height: 60rem;
    flex-shrink: 0;
}
body > .header .top .logo img {
    width: 100%;
    height: 100%;
}
body > .header .top .search {
    display: flex;
    align-items: center;
    gap: 20rem;
    width: 400rem;
    height: 60rem;
    background-color: #F0F4FB;
    padding: 0 30rem;
    border-radius: 198rem;
}
body > .header .top .search .input {
    flex: 1;
    min-width: 0;
    outline: none;
    border: none;
    background-color: transparent;
    font-size: 28rem;
}
body > .header .top .search .input::placeholder {
    color: #999999;
}
body > .header .top .search .button {
    border: none;
    flex-shrink: 0;
    width: 36rem;
    height: 36rem;
    background-size: 100% 100%;
    background-image: url('../images/search.png');
}
body > .header .nav-wrap {
    display: flex;
    align-items: center;
    height: 100rem;
    overflow: auto;
    background: linear-gradient(to bottom, white 50%, transparent 50%);
}
body > .header .nav {
    display: flex;
    align-items: center;
    min-width: max-content;
    height: 80rem;
    padding: 0 24rem;
    position: relative;
    background-color: #336AEA;
}
body > .header .nav .item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    z-index: 0;
}
body > .header .nav .item i {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100rem;
    background-color: #EBF1FD;
    transition: all 0.2s;
}
body > .header .nav .item.active i {
    visibility: visible;
    opacity: 1;
}
body > .header .nav .item i::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(to right top, #B2C8F5 50%, transparent 50%);
}
body > .header .nav .item i::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(to right bottom, #B2C8F5 50%, transparent 50%);
}
body > .header .nav .item a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 36rem;
    font-size: 28rem;
    color: white;
    transition: all 0.2s;
}
body > .header .nav .item.active a {
    color: #336AEA;
}
body > .footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    padding: 38rem 24rem 40rem 24rem;
    background-color: #1A1A1A;
    font-size: 24rem;
    color: #999999;
    z-index: 1;
}
body > .footer .name {
    font-size: 24rem;
    color: #CCCCCC;
}
body > .footer .nav {
    display: flex;
    flex-wrap: wrap;
}
body > .footer .nav > div {
    display: flex;
    align-items: center;
}
body > .footer .nav > div:not(:last-child)::after {
    content: '丨';
}
body > .footer .copyright {
    margin-top: 20rem;
}
body > .main {
    display: flex;
    flex-direction: column;
    margin-top: -10rem;
}
.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}
.modal.show {
    visibility: visible;
    opacity: 1;
}
.modal > .mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal > .modal-content {
    position: relative;
    z-index: 2101;
    transform: translateY(-20rem);
    transition: all 0.4s ease;
}
.modal.show > .modal-content {
    transform: translateY(0);
}
.main-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40rem 24rem 60rem 24rem;
    background-color: #fff;
}
.top-divider {
    border-top: 20rem solid #F2F2F2;
}
.section-title {
    margin-bottom: 40rem;
    display: flex;
    align-items: center;
    gap: 20rem;
}
.section-title > div:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 20rem;
    flex: 1;
}
.section-title > div:nth-child(1) span {
    font-size: 36rem;
    font-weight: bold;
    color: #1A1A1A;
    flex-shrink: 0;
}
.section-title > div:nth-child(1)::after {
    content: '';
    flex-shrink: 0;
    width: 104rem;
    height: 4rem;
    background-size: 100% 100%;
    background-image: url('../images/line_1.png');
}
.section-title > a {
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #999999;
    flex-shrink: 0;
}
.section-title > a::after {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/more_button.png');
}
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32rem;
}
.error-page > img {
    width: 480rem;
    height: 480rem;
}
.error-page > span {
    font-size: 28rem;
    color: #999999;
    margin-top: -60rem;
}
.error-page > a {
    margin-top: 56rem;
    padding: 24rem 56rem;
    border: 2rem solid #336AEA;
    border-radius: 4rem;
    font-size: 32rem;
    color: #336AEA;
    line-height: 1;
}
.pagination {
    margin: 80rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20rem;
}
.pagination .previous-button,
.pagination .next-button {
    width: 100rem;
    height: 60rem;
    border: 2rem solid #E6E6E6;
    border-radius: 4rem;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16rem 28rem;
    transition: all 0.2s;
}
.pagination .previous-button {
    background-image: url('../images/left_arrow_1.png');
}
.pagination .next-button {
    background-image: url('../images/right_arrow_1.png');
}
.pagination .page-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60rem;
    border: 2rem solid #E6E6E6;
    border-radius: 4rem;
    background-color: #fff;
    font-size: 28rem;
    color: #4D4D4D;
    line-height: 1;
    transition: all 0.2s;
}
.pagination .page-item:hover,
.pagination .page-item.active {
    color: white;
    border-color: transparent;
    background-color: #336AEA;
}
.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 21rem;
}
.star-rating {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.star-rating > i {
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 24rem 24rem;
    background-repeat: no-repeat;
    background-image: url('../images/star.png');
}
.star-rating > i.active i {
    display: block;
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 24rem 24rem;
    background-repeat: no-repeat;
    background-image: url('../images/star_active.png');
}
.star-rating.size-24 > i {
    width: 24rem;
    height: 24rem;
    background-size: 24rem 24rem;
}
.star-rating.size-24 > i.active i {
    width: 24rem;
    height: 24rem;
    background-size: 24rem 24rem;
}
.star-rating.size-28 > i {
    width: 28rem;
    height: 28rem;
    background-size: 28rem 28rem;
}
.star-rating.size-28 > i.active i {
    width: 28rem;
    height: 28rem;
    background-size: 28rem 28rem;
}
.star-rating.size-36 > i {
    width: 36rem;
    height: 36rem;
    background-size: 36rem 36rem;
}
.star-rating.size-36 > i.active i {
    width: 36rem;
    height: 36rem;
    background-size: 36rem 36rem;
}

.home-top {
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.game-category {
    display: grid;
    grid-template-columns: repeat(5, 100rem);
    justify-content: space-between;
    row-gap: 50rem;
    padding: 50rem 24rem 50rem 24rem;
    background-color: #fff;
}
.game-category .item {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    min-width: 0;
}
.game-category .item .icon {
    width: 100%;
    height: 100rem;
    border-radius: 50%;
    background-color: #F0F4FD;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 52rem 52rem;
}
.game-category .item:nth-child(9n+1) .icon {
    background-image: url('../images/category_icon/game_icon_1.png');
}
.game-category .item:nth-child(9n+2) .icon {
    background-image: url('../images/category_icon/game_icon_2.png');
}
.game-category .item:nth-child(9n+3) .icon {
    background-image: url('../images/category_icon/game_icon_3.png');
}
.game-category .item:nth-child(9n+4) .icon {
    background-image: url('../images/category_icon/game_icon_4.png');
}
.game-category .item:nth-child(9n+5) .icon {
    background-image: url('../images/category_icon/game_icon_5.png');
}
.game-category .item:nth-child(9n+6) .icon {
    background-image: url('../images/category_icon/game_icon_6.png');
}
.game-category .item:nth-child(9n+7) .icon {
    background-size: 48rem 48rem;
    background-image: url('../images/category_icon/game_icon_7.png');
}
.game-category .item:nth-child(9n+8) .icon {
    background-image: url('../images/category_icon/game_icon_8.png');
}
.game-category .item:nth-child(9n+9) .icon {
    background-image: url('../images/category_icon/game_icon_9.png');
}
.game-category .item:last-child .icon {
    background-image: url('../images/category_icon/menu_icon_1.png');
}
.game-category .item .title {
    width: 100%;
    text-align: center;
    font-size: 24rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-swiper {
    position: relative;
}
.home-swiper .uk-slideshow-items {
    width: 100%;
    height: 420rem;
}
.home-swiper-pagination {
    display: flex;
    justify-content: flex-end;
    width: 150rem !important;
    position: absolute !important;
    left: unset !important;
    right: 0 !important;
    bottom: 34rem !important;
    z-index: 1 !important;
    text-align: right !important;
    padding-right: 24rem;
    box-sizing: border-box;
}
.home-swiper-pagination li {
    padding-left: 10rem;
}
.home-swiper-pagination li a {
    width: 12rem;
    height: 12rem;
    border: none;
    border-radius: initial;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.home-swiper-pagination li:hover a,
.home-swiper-pagination li.uk-active a {
    background-color: #3874FF;
}
.home-swiper .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80rem;
    background: rgba(0, 0, 0, 0.8);
    font-size: 32rem;
    color: white;
    line-height: 80rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 24rem;
    padding-right: 166rem;
    box-sizing: border-box;
    z-index: 1;
}
.boutique-game {
    display: flex;
    height: 200rem;
}
.boutique-game .title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80rem;
    height: 100%;
    background: linear-gradient(to bottom, #FFA800, #FF7E20);
    flex-shrink: 0;
    font-size: 28rem;
    font-weight: bold;
    color: white;
    letter-spacing: 3rem;
    writing-mode: vertical-lr;
    text-orientation: upright;
}
.boutique-game .title i {
    margin-top: 7rem;
    margin-bottom: 10rem;
    flex-shrink: 0;
    width: 28rem;
    height: 28rem;
    background-size: 100% 100%;
    background-image: url('../images/star_icon_1.png');
}
.boutique-game .list {
    display: grid;
    grid-template-columns: repeat(4, 120rem);
    justify-content: space-between;
    align-content: center;
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 28rem;
    border: 4rem solid #FF801F;
}
.boutique-game .list a {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}
.boutique-game .list a img {
    width: 100%;
    height: 120rem;
    object-fit: cover;
    border-radius: 30rem;
    flex-shrink: 0;
}
.boutique-game .list a span {
    width: 100%;
    text-align: center;
    font-size: 24rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-news {
    display: flex;
    flex-direction: column;
    margin-top: 20rem;
}
.hot-news .top-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30rem;
}
.hot-news .top-list .item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
}
.hot-news .top-list .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 96rem;
    height: 96rem;
    background-size: 100% 100%;
    background-image: url('../images/hot_tag.png');
}
.hot-news .top-list .item .thumbnail {
    width: 100%;
    height: 200rem;
    object-fit: cover;
    flex-shrink: 0;
}
.hot-news .top-list .item .title {
    width: 100%;
    padding: 0 24rem;
    background-color: #F8F8FA;
    text-align: center;
    font-size: 28rem;
    color: #1A1A1A;
    line-height: 68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-news .list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    margin-top: 40rem;
}
.hot-news .list .item {
    display: flex;
    align-items: center;
}
.hot-news .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.hot-news .list .item .title {
    margin-left: 20rem;
    margin-right: 10rem;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-news .list .item .detail-button {
    margin-left: auto;
    flex-shrink: 0;
    padding: 12rem 18rem;
    border: 2rem solid #336AEA;
    font-size: 28rem;
    color: #336AEA;
    line-height: 1;
}
.new-game-recommend {
    display: flex;
    flex-direction: column;
    padding: 30rem 24rem 60rem 24rem;
    background: linear-gradient(to bottom, #FFF3E0, white 35%);
    position: relative;
}
.new-game-recommend::before {
    content: '';
    position: absolute;
    top: 160rem;
    left: 24rem;
    right: 24rem;
    height: 2rem;
    background-color: #CCCCCC;
}
.new-game-recommend > .title {
    display: flex;
    align-items: center;
    gap: 28rem;
    font-size: 36rem;
    font-weight: bold;
    color: #1A1A1A;
}
.new-game-recommend > .title::after {
    content: '';
    flex-shrink: 0;
    width: 120rem;
    height: 80rem;
    background-size: 100% 100%;
    background-image: url('../images/new_tag.png');
}
.new-game-recommend .list {
    display: grid;
    grid-template-columns: repeat(3, 168rem);
    justify-content: space-between;
    margin-top: 40rem;
    z-index: 1;
}
.new-game-recommend .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
.new-game-recommend .list .item .step-point {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24rem;
    height: 24rem;
    border: 2rem solid #4D4D4D;
    border-radius: 50%;
    background-color: #fff;
    flex-shrink: 0;
}
.new-game-recommend .list .item .step-point::before {
    content: '';
    flex-shrink: 0;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: #4D4D4D;
}
.new-game-recommend .list .item .time {
    margin-top: 16rem;
    width: 100%;
    text-align: center;
    font-size: 28rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-game-recommend .list .item .icon {
    margin-top: 30rem;
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.new-game-recommend .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-game-recommend .list .item .title {
    margin-top: 20rem;
    width: 100%;
    text-align: center;
    font-size: 28rem;
    font-weight: bold;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-game-recommend .list .item .type {
    margin-top: 16rem;
    width: 100%;
    text-align: center;
    font-size: 24rem;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-game-recommend .uk-slideshow-nav {
    display: flex;
    justify-content: center;
    margin-top: 56rem;
    margin-left: -28rem;
}
.new-game-recommend .uk-slideshow-nav li {
    padding-left: 28rem;
}
.new-game-recommend .uk-slideshow-nav li a {
    width: 16rem;
    height: 16rem;
    border: none;
    border-radius: 50%;
    background-color: #E6E6E6;
    flex-shrink: 0;
}
.new-game-recommend .uk-slideshow-nav li:hover a,
.new-game-recommend .uk-slideshow-nav li.uk-active a {
    background-color: #FF6D01;
}
.latest-news {
    display: flex;
    flex-direction: column;
}
.latest-news .list {
    display: flex;
    flex-direction: column;
    gap: 36rem;
}
.latest-news .list .item {
    display: flex;
    flex-direction: column;
    gap: 28rem;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.latest-news .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.latest-news .list .item .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-news .list .item .main {
    display: flex;
    gap: 30rem;
}
.latest-news .list .item .main .thumbnail {
    width: 200rem;
    height: 120rem;
    flex-shrink: 0;
}
.latest-news .list .item .main .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-news .list .item .main .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    height: 120rem;
}
.latest-news .list .item .main .content .description {
    font-size: 28rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-news .list .item .main .content .labels {
    display: flex;
    align-items: center;
    gap: 20rem;
}
.latest-news .list .item .main .content .labels .time {
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #999999;
}
.latest-news .list .item .main .content .labels .time::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon_1.png');
}
.latest-news .list .item .main .content .labels .type {
    padding: 6rem 10rem;
    border: 2rem solid #336AEA;
    font-size: 24rem;
    color: #336AEA;
    line-height: 1;
}
.latest-news-2 {
    display: flex;
    flex-direction: column;
}
.latest-news-2 .banner {
    width: 100%;
    height: 380rem;
    position: relative;
}
.latest-news-2 .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-news-2 .banner .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 30rem;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    font-size: 32rem;
    color: white;
    line-height: 80rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-news-2 .list {
    margin-top: 40rem;
    display: flex;
    flex-direction: column;
    gap: 36rem;
}
.latest-news-2 .list .item {
    display: flex;
    align-items: center;
}
.latest-news-2 .list .item .begin-marker {
    position: relative;
    display: flex;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.latest-news-2 .list .item:not(:last-child) .begin-marker::after {
    content: '';
    position: absolute;
    top: 18rem;
    width: 2rem;
    height: 49rem;
    background-color: #E6E6E6;
}
.latest-news-2 .list .item .title {
    margin-left: 20rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-news-2 .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 26rem;
    color: #999999;
}
.game-download {
    display: flex;
    flex-direction: column;
}
.game-download .tabs {
    display: flex;
    align-items: flex-start;
    gap: 60rem;
    margin-bottom: 40rem;
    height: 52rem;
    overflow: auto hidden;
}
.game-download .tabs > div {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28rem;
    color: #666666;
    line-height: 1;
    padding-bottom: 12rem;
    position: relative;
}
.game-download .tabs > div.active {
    color: #336AEA;
    border-bottom: 4rem solid #336AEA;
}
.game-download .tabs > div.active::before {
    content: '';
    position: absolute;
    top: calc(100% + 3rem);
    border: 8rem solid transparent;
    border-top: 8rem solid #336AEA;
}
.game-download .content .list {
    display: none;
    flex-direction: column;
    gap: 36rem;
}
.game-download .content .list.active {
    display: flex;
}
.game-download .content .list .item {
    display: flex;
    gap: 30rem;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.game-download .content .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.game-download .content .list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.game-download .content .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-download .content .list .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    height: 140rem;
}
.game-download .content .list .item .content .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16rem;
}
.game-download .content .list .item .content .top .left {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    min-width: 0;
}
.game-download .content .list .item .content .top .left .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-download .content .list .item .content .top .left .type {
    font-size: 24rem;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-download .content .list .item .content .top .download-button {
    flex-shrink: 0;
    padding: 18rem 38rem;
    border-radius: 4rem;
    background-color: #336AEA;
    font-size: 28rem;
    color: white;
    line-height: 1;
}
.game-download .content .list .item .content .bottom {
    display: flex;
    align-items: center;
    gap: 16rem;
}
.game-download .content .list .item .content .bottom .score {
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #FF5C00;
    flex-shrink: 0;
}
.game-download .content .list .item .content .bottom .score::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/star_active.png');
}
.game-download .content .list .item .content .bottom .description {
    font-size: 24rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-evaluation {
    display: flex;
    flex-direction: column;
}
.game-evaluation .cards {
    display: flex;
    gap: 36rem;
    overflow: auto;
}
.game-evaluation .cards .item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    width: 500rem;
    overflow: hidden;
    background-color: #fff;
    border: 2rem solid #E6E6E6;
}
.game-evaluation .cards .item .thumbnail {
    width: 100%;
    height: 260rem;
    object-fit: cover;
    flex-shrink: 0;
}
.game-evaluation .cards .item .remark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16rem;
    padding-left: 28rem;
    padding-right: 16rem;
    width: 100%;
    height: 80rem;
}
.game-evaluation .cards .item .remark .title {
    font-size: 28rem;
    color: #1A1A1A;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-evaluation .cards .item .remark .score {
    width: 68rem;
    text-align: center;
    font-size: 24rem;
    color: #FF5C00;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}
.game-evaluation .cards .item .remark .score::first-letter {
    font-size: 36rem;
}
.game-evaluation .cards .item .remark .score::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -16rem;
    width: 100%;
    height: 4rem;
    background-color: #FFDCC8;
}
.game-evaluation .list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    margin-top: 40rem;
    overflow: hidden;
}
.game-evaluation .list .item {
    display: flex;
    align-items: center;
}
.game-evaluation .list .item .tag {
    padding: 9rem 12rem;
    background-color: #336AEA;
    font-size: 24rem;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}
.game-evaluation .list .item .title {
    margin-left: 20rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #1A1A1A;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-evaluation .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 24rem;
    color: #999999;
    line-height: 1;
}
.game-evaluation-2 {
    display: flex;
    flex-direction: column;
}
.game-evaluation-2 .list {
    display: flex;
    flex-direction: column;
    gap: 36rem;
}
.game-evaluation-2 .list .item {
    display: flex;
    gap: 30rem;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.game-evaluation-2 .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.game-evaluation-2 .list .item .thumbnail {
    width: 280rem;
    height: 160rem;
    flex-shrink: 0;
}
.game-evaluation-2 .list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-evaluation-2 .list .item .content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.game-evaluation-2 .list .item .content .title {
    font-size: 28rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-evaluation-2 .list .item .content .description {
    margin-top: 14rem;
    font-size: 24rem;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-evaluation-2 .list .item .content .footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16rem;
    font-size: 24rem;
    color: #999999;
}
.game-evaluation-2 .list .item .content .footer .editor {
    display: flex;
    align-items: center;
    gap: 8rem;
}
.game-evaluation-2 .list .item .content .footer .editor::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/user_icon_1.png');
}
.game-evaluation-2 .list .item .content .footer .score {
    display: flex;
    align-items: center;
    gap: 8rem;
}
.game-evaluation-2 .list .item .content .footer .score::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/star_icon_2.png');
}
.game-album {
    display: flex;
    flex-direction: column;
}
.game-album .list {
    display: flex;
    flex-direction: column;
    gap: 20rem;
}
.game-album .list .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50rem;
    padding: 34rem 30rem;
    background-color: #F8F8FA;
}
.game-album .list .item .content {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    min-width: 0;
}
.game-album .list .item .content .title {
    font-size: 28rem;
    font-weight: bold;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-album .list .item .content .description {
    display: flex;
    align-items: center;
    gap: 16rem;
    font-size: 24rem;
    color: #4D4D4D;
}
.game-album .list .item .content .description .detail-button {
    flex-shrink: 0;
    width: 28rem;
    height: 28rem;
    background-size: 100% 100%;
    background-image: url('../images/right_arrow_2.png');
}
.game-album .list .item .children {
    display: grid;
    grid-template:
            "a b d" 48rem
            "a c e" 48rem / 108rem 48rem 48rem;
    gap: 12rem;
}
.game-album .list .item .children a {
    width: 100%;
    height: 100%;
    border-radius: 10rem;
    overflow: hidden;
    flex-shrink: 0;
}
.game-album .list .item .children a:nth-child(1) {
    grid-area: a;
    border-radius: 30rem;
}
.game-album .list .item .children a:nth-child(2) {
    grid-area: b;
}
.game-album .list .item .children a:nth-child(3) {
    grid-area: c;
}
.game-album .list .item .children a:nth-child(4) {
    grid-area: d;
}
.game-album .list .item .children a:nth-child(5) {
    grid-area: e;
}
.game-album .list .item .children a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-app-label {
    display: flex;
    flex-direction: column;
}
.hot-app-label .tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22rem;
}
.hot-app-label .tags a {
    width: 100%;
    padding: 0 30rem;
    box-shadow: 0 0 10rem 0 rgba(0, 0, 0, 0.15);
    font-size: 24rem;
    line-height: 72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s;
    position: relative;
}
.hot-app-label .tags a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
}
.hot-app-label .tags a:hover {
    color: white !important;
}
.hot-app-label .tags a:nth-child(6n+1) {
    color: #FFA800;
}
.hot-app-label .tags a:nth-child(6n+1)::before {
    background: linear-gradient(to right bottom, #FFA800 50%, transparent 50%);
}
.hot-app-label .tags a:nth-child(6n+1):hover {
    background-color: #FFA800;
}
.hot-app-label .tags a:nth-child(6n+2) {
    color: #F74B4B;
}
.hot-app-label .tags a:nth-child(6n+2)::before {
    background: linear-gradient(to right bottom, #F74B4B 50%, transparent 50%);
}
.hot-app-label .tags a:nth-child(6n+2):hover {
    background-color: #F74B4B;
}
.hot-app-label .tags a:nth-child(6n+3) {
    color: #674BF7;
}
.hot-app-label .tags a:nth-child(6n+3)::before {
    background: linear-gradient(to right bottom, #674BF7 50%, transparent 50%);
}
.hot-app-label .tags a:nth-child(6n+3):hover {
    background-color: #674BF7;
}
.hot-app-label .tags a:nth-child(6n+4) {
    color: #C49155;
}
.hot-app-label .tags a:nth-child(6n+4)::before {
    background: linear-gradient(to right bottom, #C49155 50%, transparent 50%);
}
.hot-app-label .tags a:nth-child(6n+4):hover {
    background-color: #C49155;
}
.hot-app-label .tags a:nth-child(6n+5) {
    color: #7DC162;
}
.hot-app-label .tags a:nth-child(6n+5)::before {
    background: linear-gradient(to right bottom, #7DC162 50%, transparent 50%);
}
.hot-app-label .tags a:nth-child(6n+5):hover {
    background-color: #7DC162;
}
.hot-app-label .tags a:nth-child(6n+6) {
    color: #ED75DA;
}
.hot-app-label .tags a:nth-child(6n+6)::before {
    background: linear-gradient(to right bottom, #ED75DA 50%, transparent 50%);
}
.hot-app-label .tags a:nth-child(6n+6):hover {
    background-color: #ED75DA;
}
.hot-app-label .list {
    display: grid;
    grid-template-columns: repeat(3, 168rem);
    justify-content: space-between;
    row-gap: 40rem;
    margin-top: 60rem;
}
.hot-app-label .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
.hot-app-label .list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.hot-app-label .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-app-label .list .item .title {
    margin-top: 20rem;
    width: 100%;
    text-align: center;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-app-label .list .item .size {
    margin-top: 16rem;
    width: 100%;
    text-align: center;
    font-size: 24rem;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-game-dynamic {
    display: flex;
    flex-direction: column;
}
.new-game-dynamic .banner {
    width: 100%;
    height: 340rem;
    flex-shrink: 0;
    position: relative;
}
.new-game-dynamic .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-game-dynamic .banner .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 30rem;
    text-align: center;
    font-size: 32rem;
    color: white;
    line-height: 80rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: rgba(0, 0, 0, 0.7);
}
.new-game-dynamic .list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    margin-top: 40rem;
}
.new-game-dynamic .list .item {
    display: flex;
    align-items: center;
}
.new-game-dynamic .list .item::before {
    content: '';
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.new-game-dynamic .list .item .title {
    margin-left: 20rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-game-dynamic .list .item .read-number {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12rem;
    font-size: 24rem;
    color: #999999;
}
.new-game-dynamic .list .item .read-number::before {
    content: '';
    flex-shrink: 0;
    width: 36rem;
    height: 36rem;
    background-size: 100% 100%;
    background-image: url('../images/eye_icon.png');
}
.home-rankings {
    display: flex;
    flex-direction: column;
}
.home-rankings .tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 68rem;
    gap: 2rem;
    border: 2rem solid #336AEA;
    border-radius: 4rem;
    background-color: #fff;
    overflow: hidden;
}
.home-rankings .tabs > div {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
    height: 100%;
    font-size: 28rem;
    color: #336AEA;
    line-height: 1;
    position: relative;
}
.home-rankings .tabs > div:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2rem;
    width: 2rem;
    height: 100%;
    background-color: #336AEA;
}
.home-rankings .tabs > div.active {
    color: white;
    background-color: #336AEA;
}
.home-rankings > .content {
    margin-top: 52rem;
}
.home-rankings .ranking {
    display: none;
    flex-direction: column;
    align-items: center;
}
.home-rankings .ranking.active {
    display: flex;
}
.home-rankings .ranking > .title {
    z-index: 1;
    flex-shrink: 0;
    width: 722rem;
    height: 200rem;
    background-size: 100% 100%;
}
.home-rankings .ranking:nth-child(1) > .title {
    background-image: url('../images/ranking_title_1.png');
}
.home-rankings .ranking:nth-child(2) > .title {
    background-image: url('../images/ranking_title_2.png');
}
.home-rankings .ranking:nth-child(3) > .title {
    background-image: url('../images/ranking_title_3.png');
}
.home-rankings .ranking .wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: -30rem;
    padding: 76rem 30rem 60rem 30rem;
    border: 2rem solid #E6E6E6;
}
.home-rankings .ranking .top-list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
}
.home-rankings .ranking .top-list .item {
    display: flex;
    align-items: center;
    padding-bottom: 32rem;
    border-bottom: 2rem solid #F2F2F2;
}
.home-rankings .ranking .serial-number {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40rem;
    height: 40rem;
    background-color: #F0F0F0;
    font-size: 24rem;
    color: #999999;
    line-height: 1;
}
.home-rankings .ranking:nth-child(1) .top-list .item:nth-child(1) .serial-number {
    color: white;
    background-color: #FF9E2C;
}
.home-rankings .ranking:nth-child(1) .top-list .item:nth-child(2) .serial-number {
    color: white;
    background-color: rgba(255, 158, 44, 0.6);
}
.home-rankings .ranking:nth-child(1) .top-list .item:nth-child(3) .serial-number {
    color: white;
    background-color: rgba(255, 158, 44, 0.4);
}
.home-rankings .ranking:nth-child(2) .top-list .item:nth-child(1) .serial-number {
    color: white;
    background-color: #2CA6FF;
}
.home-rankings .ranking:nth-child(2) .top-list .item:nth-child(2) .serial-number {
    color: white;
    background-color: rgba(44, 166, 255, 0.6);
}
.home-rankings .ranking:nth-child(2) .top-list .item:nth-child(3) .serial-number {
    color: white;
    background-color: rgba(44, 166, 255, 0.4);
}
.home-rankings .ranking:nth-child(3) .top-list .item:nth-child(1) .serial-number {
    color: white;
    background-color: #F84B4B;
}
.home-rankings .ranking:nth-child(3) .top-list .item:nth-child(2) .serial-number {
    color: white;
    background-color: rgba(248, 75, 75, 0.6);
}
.home-rankings .ranking:nth-child(3) .top-list .item:nth-child(3) .serial-number {
    color: white;
    background-color: rgba(248, 75, 75, 0.4);
}
.home-rankings .ranking .top-list .item .icon {
    margin-left: 30rem;
    flex-shrink: 0;
    width: 140rem;
    height: 140rem;
    border-radius: 30rem;
    overflow: hidden;
}
.home-rankings .ranking .top-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-rankings .ranking .top-list .item .content {
    margin-left: 30rem;
    margin-right: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24rem;
    overflow: hidden;
}
.home-rankings .ranking .top-list .item .content .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-rankings .ranking .top-list .item .content .description {
    font-size: 24rem;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-rankings .ranking .top-list .item .download-button {
    margin-left: auto;
    flex-shrink: 0;
    padding: 18rem 40rem;
    border-radius: 4rem;
    font-size: 28rem;
    color: white;
    line-height: 1;
}
.home-rankings .ranking:nth-child(1) .top-list .item .download-button {
    background-color: #FF9E2C;
}
.home-rankings .ranking:nth-child(2) .top-list .item .download-button {
    background-color: #2CA6FF;
}
.home-rankings .ranking:nth-child(3) .top-list .item .download-button {
    background-color: #F84B4B;
}
.home-rankings .ranking .list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    margin-top: 32rem;
}
.home-rankings .ranking .list .item {
    display: flex;
    align-items: center;
    padding-bottom: 32rem;
    border-bottom: 2rem solid #E6E6E6;
}
.home-rankings .ranking .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.home-rankings .ranking .list .item .title {
    margin-left: 30rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #1A1A1A;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-rankings .ranking .list .item .star-rating {
    margin-left: auto;
}
.friendly-links {
    display: flex;
    flex-direction: column;
}
.friendly-links .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28rem 90rem;
}
.friendly-links .list a {
    font-size: 28rem;
    color: #4D4D4D;
}
.about-us {
    display: flex;
    flex-direction: column;
    padding: 40rem 24rem 80rem 24rem;
}
.about-us .tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 60rem;
    gap: 20rem;
    margin-bottom: 60rem;
}
.about-us .tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
    height: 100%;
    background-color: #F8F8FA;
    font-size: 24rem;
    color: #666666;
    line-height: 1;
}
.about-us .tabs a.active {
    color: white;
    background-color: #336AEA;
}
.about-us .article {
    display: flex;
    flex-direction: column;
}
.about-us .article p {
    font-size: 28rem;
    color: #666666;
    line-height: 56rem;
    white-space: pre-wrap;
}
.about-us .article img {
    display: block;
    margin: 20rem auto;
}
.about-us .website-map {
    display: flex;
    flex-direction: column;
    gap: 60rem;
}
.about-us .website-map .category {
    display: flex;
    flex-direction: column;
    gap: 32rem;
}
.about-us .website-map .category .title {
    display: flex;
    align-items: center;
    gap: 20rem;
    font-size: 28rem;
    font-weight: bold;
    color: #1A1A1A;
    line-height: 1;
}
.about-us .website-map .category .title::before {
    content: '';
    width: 6rem;
    height: 28rem;
    background-color: #336AEA;
    flex-shrink: 0;
}
.about-us .website-map .category .content {
    display: flex;
    flex-wrap: wrap;
    gap: 20rem;
}
.about-us .website-map .category .content a {
    padding: 17rem 32rem;
    background-color: #F8F8FA;
    border-radius: 198rem;
    font-size: 24rem;
    color: #4D4D4D;
    line-height: 1;
}
.news-list-wrap {
    display: flex;
    flex-direction: column;
    padding: 40rem 24rem 0 24rem;
}
.news-banner {
    display: flex;
    flex-direction: column;
    border: 2rem solid #E6E6E6;
    box-shadow: 8rem 8rem 0 0 rgba(0, 0, 0, 0.05);
}
.news-banner .thumbnail {
    width: 100%;
    height: 260rem;
    flex-shrink: 0;
}
.news-banner .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-banner .content {
    display: flex;
    flex-direction: column;
    gap: 20rem;
    padding: 24rem 30rem 32rem 30rem;
}
.news-banner .content .title {
    font-size: 28rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-banner .content .description {
    flex-shrink: 0;
    width: 100%;
    height: 80rem;
    padding: 28rem 30rem;
    background-size: 100% 100%;
    background-image: url('../images/text_box_1.png');
    font-size: 24rem;
    color: #999999;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list-tabs {
    display: flex;
    align-items: flex-start;
    gap: 60rem;
    margin-top: 60rem;
    margin-bottom: 40rem;
    height: 52rem;
    overflow: auto hidden;
}
.news-list-tabs > a {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28rem;
    color: #666666;
    line-height: 1;
    padding-bottom: 12rem;
    position: relative;
}
.news-list-tabs > a.active {
    color: #336AEA;
    border-bottom: 4rem solid #336AEA;
}
.news-list-tabs > a.active::before {
    content: '';
    position: absolute;
    top: calc(100% + 3rem);
    border: 8rem solid transparent;
    border-top: 8rem solid #336AEA;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 36rem;
    padding-bottom: 60rem;
}
.news-list .item {
    display: flex;
    justify-content: space-between;
    gap: 30rem;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.news-list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.news-list .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    height: 160rem;
}
.news-list .item .content .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list .item .content .description {
    font-size: 24rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list .item .content .time {
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #999999
}
.news-list .item .content .time::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon_1.png');
}
.news-list .item .thumbnail {
    width: 280rem;
    height: 160rem;
    flex-shrink: 0;
}
.news-list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-detail-wrap {
    display: flex;
    flex-direction: column;
}
.news-detail-article {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    padding: 60rem 24rem 60rem 24rem;
}
.news-detail-article .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80rem;
    padding-bottom: 32rem;
    border-bottom: 2rem solid #EBEBED;
}
.news-detail-article .header .title {
    width: 100%;
    text-align: center;
    font-size: 36rem;
    font-weight: bold;
    color: #1A1A1A;
    line-height: 58rem;
    white-space: pre-wrap;
}
.news-detail-article .header .description {
    display: flex;
    align-items: center;
    gap: 50rem;
    font-size: 24rem;
    color: #999999;
}
.news-detail-article .main {
    display: flex;
    flex-direction: column;
}
.news-detail-article .main p {
    font-size: 28rem;
    color: #666666;
    line-height: 58rem;
    white-space: pre-wrap;
    text-indent: 2em;
}
.news-detail-article .main iframe {
    width: 100%;
    display: block;
    height: 300px
}
.news-detail-article .main img {
    display: block;
    margin: 20rem auto;
}
.related-read {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
}
.related-read .section-title {
    padding: 0 24rem;
}
.related-read .top-list {
    display: flex;
    gap: 50rem;
    padding: 0 24rem;
    overflow: auto;
}
.related-read .top-list .item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    width: 500rem;
    border: 2rem solid #E6E6E6;
    position: relative;
}
.related-read .top-list .item img {
    width: 100%;
    height: 260rem;
    object-fit: cover;
    flex-shrink: 0;
}
.related-read .top-list .item .tag {
    position: absolute;
    top: 16rem;
    left: -12rem;
    width: 112rem;
    height: 40rem;
    background-size: 100% 100%;
    background-image: url('../images/tag_background_1.png');
    display: flex;
    align-items: center;
    padding-left: 26rem;
    font-size: 24rem;
    color: white;
}
.related-read .top-list .item .title {
    width: 100%;
    padding: 0 30rem;
    font-size: 28rem;
    color: #333333;
    line-height: 80rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-read .list {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    margin-top: 40rem;
    padding: 0 24rem;
}
.related-read .list .item {
    display: flex;
    align-items: center;
    padding-bottom: 24rem;
    border-bottom: 2rem dashed #F2F2F2;
}
.related-read .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.related-read .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.related-read .list .item .title {
    margin-left: 20rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-read .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 24rem;
    color: #999999;
}
.today-recommend {
    display: flex;
    flex-direction: column;
}
.today-recommend .list {
    display: grid;
    grid-template-columns: repeat(3, 168rem);
    justify-content: space-between;
    row-gap: 56rem;
}
.today-recommend .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
.today-recommend .list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.today-recommend .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.today-recommend .list .item .title {
    margin-top: 20rem;
    width: 100%;
    text-align: center;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.today-recommend .list .item .download-button {
    margin-top: 24rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 136rem;
    height: 64rem;
    border: 2rem solid #336AEA;
    border-radius: 4rem;
    font-size: 28rem;
    color: #336AEA;
    line-height: 1;
}
.hot-game-ranking {
    display: flex;
    flex-direction: column;
}
.hot-game-ranking .top-list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
}
.hot-game-ranking .top-list .item {
    display: flex;
    align-items: center;
    padding-bottom: 32rem;
    border-bottom: 2rem solid #F2F2F2;
}
.hot-game-ranking .top-list .item .serial-number {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40rem;
    height: 40rem;
    border: 2rem solid #336AEA;
    font-size: 24rem;
    color: #336AEA;
    line-height: 1;
}
.hot-game-ranking .top-list .item .icon {
    margin-left: 30rem;
    width: 160rem;
    height: 160rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.hot-game-ranking .top-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-game-ranking .top-list .item .content {
    margin-left: 30rem;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 160rem;
}
.hot-game-ranking .top-list .item .content .top {
    display: flex;
    justify-content: space-between;
    gap: 16rem;
}
.hot-game-ranking .top-list .item .content .top .title {
    font-size: 30rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking .top-list .item .content .top .download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 136rem;
    height: 64rem;
    background-color: #336AEA;
    border-radius: 4rem;
    font-size: 28rem;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}
.hot-game-ranking .top-list .item .content .middle {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 16rem;
}
.hot-game-ranking .top-list .item .content .middle .score {
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #FF5C00;
    line-height: 1;
}
.hot-game-ranking .top-list .item .content .middle .score::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/star_active.png');
}
.hot-game-ranking .top-list .item .content .middle .type {
    font-size: 24rem;
    color: #999999;
}
.hot-game-ranking .top-list .item .content .bottom {
    margin-top: auto;
    font-size: 24rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking .list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    margin-top: 32rem;
}
.hot-game-ranking .list .item {
    display: flex;
    align-items: center;
    padding-bottom: 32rem;
    border-bottom: 2rem solid #F2F2F2;
}
.hot-game-ranking .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.hot-game-ranking .list .item .serial-number {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40rem;
    height: 40rem;
    border: 2rem solid #B3B3B3;
    font-size: 24rem;
    color: #B3B3B3;
    line-height: 1;
}
.hot-game-ranking .list .item .title {
    margin-left: 30rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #333333;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking .list .item .star-rating {
    margin-left: auto;
}
.hot-game-ranking-2 {
    display: flex;
    flex-direction: column;
}
.hot-game-ranking-2 .list {
    display: flex;
    flex-direction: column;
    gap: 36rem;
}
.hot-game-ranking-2 .list .item {
    display: flex;
    gap: 30rem;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.hot-game-ranking-2 .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.hot-game-ranking-2 .list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.hot-game-ranking-2 .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-game-ranking-2 .list .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 140rem;
    overflow: hidden;
}
.hot-game-ranking-2 .list .item .content .top {
    display: flex;
    align-items: center;
    gap: 20rem;
}
.hot-game-ranking-2 .list .item .content .top .serial-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36rem;
    height: 36rem;
    background-color: #D9D9D9;
    flex-shrink: 0;
    font-size: 24rem;
    color: white;
    line-height: 1;
}
.hot-game-ranking-2 .list .item:nth-child(1) .content .top .serial-number {
    background-color: #EE3F3F;
}
.hot-game-ranking-2 .list .item:nth-child(2) .content .top .serial-number {
    background-color: #FF7F49;
}
.hot-game-ranking-2 .list .item:nth-child(3) .content .top .serial-number {
    background-color: #FFAA3B;
}
.hot-game-ranking-2 .list .item .content .top .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking-2 .list .item .content .description {
    display: flex;
    align-items: center;
    gap: 12rem;
}
.hot-game-ranking-2 .list .item .content .description span {
    font-size: 24rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking-2 .list .item .content .hits {
    display: flex;
    align-items: center;
    gap: 12rem;
    overflow: hidden;
}
.hot-game-ranking-2 .list .item .content .hits::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/hot_icon.png');
}
.hot-game-recommend {
    display: flex;
    flex-direction: column;
}
.hot-game-recommend .list {
    display: grid;
    grid-template-columns: repeat(3, 168rem);
    justify-content: space-between;
    row-gap: 40rem;
}
.hot-game-recommend .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
.hot-game-recommend .list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.hot-game-recommend .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-game-recommend .list .item .title {
    margin-top: 20rem;
    width: 100%;
    text-align: center;
    font-size: 28rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-recommend .list .item .description {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    margin-top: 16rem;
    font-size: 24rem;
    color: #999999;
}
.hot-game-recommend .list .item .description::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/hot_icon.png');
}
.download-list-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 60rem;
    gap: 20rem;
    padding: 40rem 24rem 52rem 24rem;
}
.download-list-tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    width: 100%;
    min-width: 0;
    height: 100%;
    background-color: #F8F8FA;
    font-size: 24rem;
    color: #666666;
    line-height: 1;
}
.download-list-tabs a.active {
    color: white;
    background-color: #336AEA;
}
.download-list-tabs a:nth-child(1)::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/category_icon/menu_icon_2.png');
}
.download-list {
    display: flex;
    flex-direction: column;
    gap: 36rem;
}
.download-list .item {
    display: flex;
    gap: 30rem;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.download-list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.download-list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.download-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.download-list .item .content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.download-list .item .content .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16rem;
}
.download-list .item .content .top .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.download-list .item .content .top .download-button {
    flex-shrink: 0;
    padding: 14rem 36rem;
    border-radius: 4rem;
    background-color: #336AEA;
    font-size: 26rem;
    color: white;
    line-height: 1;
}
.download-list .item .content .middle {
    font-size: 24rem;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.download-list .item .content .bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16rem;
}
.download-list .item .content .bottom .score {
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #FF5C00;
}
.download-list .item .content .bottom .score::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/star_active.png');
}
.download-list .item .content .bottom .description {
    font-size: 24rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.download-detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64rem;
    padding: 40rem 24rem 60rem 24rem;
}
.download-detail-header .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40rem;
    width: 100%;
}
.download-detail-header .main .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #E6E6E6;
}
.download-detail-header .main .top .icon {
    width: 140rem;
    height: 140rem;
    object-fit: cover;
    border-radius: 30rem;
    flex-shrink: 0;
}
.download-detail-header .main .top .title {
    margin-top: 20rem;
    font-size: 32rem;
    font-weight: bold;
    color: #1A1A1A;
}
.download-detail-header .main .top .labels {
    display: flex;
    align-items: center;
    gap: 50rem;
    margin-top: 30rem;
}
.download-detail-header .main .top .labels > span {
    font-size: 24rem;
    color: #999999;
}
.download-detail-header .main .top .labels > span span:nth-child(1) {
    font-size: 24rem;
    color: #4D4D4D;
}
.download-detail-header .main .top .star-rating {
    margin-top: 34rem;
}
.download-detail-header .main .bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}
.download-detail-header .main .bottom > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22rem;
    min-width: 0;
    position: relative;
}
.download-detail-header .main .bottom > div:not(:first-child)::before {
    content: '';
    position: absolute;
    left: -2rem;
    width: 2rem;
    height: 76rem;
    background-color: #E5E4E4;
}
.download-detail-header .main .bottom > div span:nth-child(1) {
    font-size: 24rem;
    color: #999999;
}
.download-detail-header .main .bottom > div span:nth-child(2) {
    font-size: 26rem;
    color: #4D4D4D;
}
.download-detail-header .download-button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 88rem;
    border-radius: 8rem;
    background-color: #336AEA;
    font-size: 32rem;
    color: white;
    line-height: 1;
}
.download-detail-header .download-button.disabled {
    cursor: initial;
    background-color: #777777;
}
.detail-article {
    display: flex;
    flex-direction: column;
    padding: 40rem 24rem 80rem 24rem;
}
.gift-detail-wrap .detail-article {
    padding: 0 24rem 60rem 24rem;
}
.detail-article h2 {
    margin-top: 96rem;
    margin-bottom: 34rem;
    position: relative;
    font-size: 36rem;
    font-weight: bold;
    color: #1A1A1A;
    padding-bottom: 18rem;
    border-bottom: 4rem solid #E6E6E6;
}
.detail-article h2:nth-child(1) {
    margin-top: 0;
}
.detail-article h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4rem;
    width: 144rem;
    height: 4rem;
    background-size: 100% 100%;
    background-image: url('../images/line_2.png');
}
.detail-article h3 {
    display: flex;
    align-items: center;
    gap: 20rem;
    margin-top: 72rem;
    margin-bottom: 36rem;
    font-size: 32rem;
    font-weight: bold;
    color: #1A1A1A;
}
.detail-article h2 + h3 {
    margin-top: 10rem;
}
.detail-article h3::before {
    content: '';
    flex-shrink: 0;
    width: 6rem;
    height: 32rem;
    background-color: #336AEA;
}
.detail-article p {
    font-size: 28rem;
    color: #666666;
    line-height: 58rem;
    white-space: pre-wrap;
}
.detail-article img {
    display: block;
    margin: 20rem auto;
}
.detail-swiper {
    position: relative;
    width: 100%;
    /*height: 419rem;*/
}
.detail-swiper .uk-slider-items {
    height: 100%;
    margin-left: -20rem;
}
.detail-swiper .uk-slider-items li {
    padding-left: 20rem;
}
.detail-swiper .uk-slider-items li .thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}
.guess-you-like {
    display: flex;
    flex-direction: column;
}
.guess-you-like .list {
    display: flex;
    gap: 20rem;
    overflow: auto;
}
.guess-you-like .list .item {
    display: flex;
    gap: 30rem;
    width: 560rem;
    padding: 30rem;
    background-color: #F8F8FA;
    flex-shrink: 0;
}
.guess-you-like .list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.guess-you-like .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guess-you-like .list .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    height: 140rem;
}
.guess-you-like .list .item .content .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.guess-you-like .list .item .content .description {
    display: flex;
    align-items: center;
}
.guess-you-like .list .item .content .description span {
    font-size: 24rem;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.guess-you-like .list .item .content .description .time {
    display: flex;
    align-items: center;
    gap: 8rem;
    overflow: hidden;
}
.guess-you-like .list .item .content .description .time::before {
    content: '';
    flex-shrink: 0;
    width: 28rem;
    height: 28rem;
    background-size: 100% 100%;
    background-image: url('../images/paper_airplane_icon.png');
}
.industry-news {
    display: flex;
    flex-direction: column;
}
.industry-news .banner {
    width: 100%;
    height: 320rem;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.industry-news .banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120rem;
    height: 120rem;
    background-size: 100% 100%;
    background-image: url('../images/crown_tag.png');
}
.industry-news .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.industry-news .banner .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0 30rem;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 32rem;
    color: white;
    line-height: 80rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.industry-news ul {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    margin-top: 40rem;
    overflow: hidden;
}
.industry-news ul li {
    display: flex;
    align-items: center;
}
.industry-news ul li::before {
    content: '';
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.industry-news ul li .title {
    margin-left: 20rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.industry-news ul li .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 24rem;
    color: #999999;
}
.industry-news .thumbnail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40rem 30rem;
    margin-top: 40rem;
}
.industry-news .thumbnail-list .item {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    min-width: 0;
}
.industry-news .thumbnail-list .item .thumbnail {
    width: 100%;
    height: 200rem;
    flex-shrink: 0;
}
.industry-news .thumbnail-list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.industry-news .thumbnail-list .item .title {
    width: 100%;
    text-align: center;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-gift {
    display: flex;
    flex-direction: column;
}
.game-gift .list {
    display: flex;
    flex-direction: column;
    gap: 40rem;
}
.game-gift .list .item {
    display: flex;
    height: 160rem;
    border-radius: 30rem 0 0 30rem;
    background-color: #F8F8FA;
    overflow: hidden;
}
.game-gift .list .item .icon {
    width: 160rem;
    height: 160rem;
    border-radius: 0 30rem 30rem 0;
    overflow: hidden;
    flex-shrink: 0;
}
.game-gift .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-gift .list .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24rem 24rem 24rem 30rem;
    flex: 1;
    overflow: hidden;
}
.game-gift .list .item .content .title {
    font-size: 28rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-gift .list .item .content .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16rem;
}
.game-gift .list .item .content .footer .description {
    font-size: 24rem;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-gift .list .item .content .footer .receive-button {
    flex-shrink: 0;
    padding: 15rem 32rem;
    border-radius: 4rem;
    background-color: #336AEA;
    font-size: 28rem;
    color: white;
    line-height: 1;
}
.wonderful-article {
    display: flex;
    flex-direction: column;
}
.wonderful-article .banner {
    width: 100%;
    height: 340rem;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.wonderful-article .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wonderful-article .banner .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0 30rem;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 32rem;
    color: white;
    line-height: 80rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wonderful-article .list {
    display: flex;
    flex-direction: column;
    gap: 36rem;
    margin-top: 40rem;
}
.wonderful-article .list .item {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.wonderful-article .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.wonderful-article .list .item .title {
    display: flex;
    align-items: center;
    gap: 20rem;
}
.wonderful-article .list .item .title .tag {
    display: flex;
    align-items: center;
    padding-left: 24rem;
    flex-shrink: 0;
    width: 120rem;
    height: 48rem;
    background-size: 100% 100%;
    background-image: url('../images/tag_background_3.png');
    font-size: 24rem;
    color: #336AEA;
}
.wonderful-article .list .item .title span {
    font-size: 28rem;
    color: #333333;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wonderful-article .list .item .description {
    font-size: 24rem;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list-wrap {
    display: flex;
    flex-direction: column;
    padding: 52rem 24rem 0 24rem;
}
.album-list-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 440rem;
    background-size: 100% 100%;
    background-image: url('../images/album_banner.png');
    position: relative;
}
.album-list-header .tag {
    position: absolute;
    top: 16rem;
    left: -12rem;
    display: flex;
    align-items: center;
    padding-left: 18rem;
    width: 140rem;
    height: 40rem;
    background-size: 100% 100%;
    background-image: url('../images/tag_background_2.png');
    font-size: 24rem;
    color: white;
    line-height: 1;
}
.album-list-header .top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12rem;
    padding: 24rem 30rem;
}
.album-list-header .top .title {
    font-size: 32rem;
    font-weight: bold;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list-header .top .time {
    font-size: 24rem;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list-header .bottom {
    display: grid;
    grid-template-columns: repeat(5, 100rem);
    justify-content: space-between;
    height: 220rem;
    padding: 30rem;
    border-radius: 20rem 20rem 0 0;
    background-color: #fff;
    box-shadow: 0 0 10rem 0 rgba(0, 0, 0, 0.15);
}
.album-list-header .bottom a {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    min-width: 0;
}
.album-list-header .bottom a img {
    width: 100%;
    height: 100rem;
    object-fit: cover;
    border-radius: 20rem;
    flex-shrink: 0;
}
.album-list-header .bottom a span {
    width: 100%;
    text-align: center;
    font-size: 24rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list-tabs {
    align-self: center;
    display: grid;
    grid-template-columns: repeat(2, 232rem);
    grid-auto-rows: 68rem;
    gap: 2rem;
    margin-top: 60rem;
    margin-bottom: 52rem;
    border: 2rem solid #336AEA;
    border-radius: 4rem;
    background-color: #fff;
    overflow: hidden;
}
.album-list-tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
    height: 100%;
    font-size: 28rem;
    color: #336AEA;
    line-height: 1;
    position: relative;
}
.album-list-tabs a:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2rem;
    width: 2rem;
    height: 100%;
    background-color: #336AEA;
}
.album-list-tabs a.active {
    color: white;
    background-color: #336AEA;
}
.album-list {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    padding-bottom: 60rem;
}
.album-list .item {
    display: flex;
    gap: 30rem;
    padding: 30rem;
    background-color: #F8F8FA;
}
.album-list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.album-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-list .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    height: 140rem;
}
.album-list .item .content .title {
    font-size: 32rem;
    font-weight: bold;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list .item .content .description {
    display: flex;
    align-items: center;
}
.album-list .item .content .description span {
    font-size: 26rem;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list .item .content .description .time {
    display: flex;
    align-items: center;
    gap: 12rem;
    min-width: 0;
}
.album-list .item .content .description .time::before {
    content: '';
    flex-shrink: 0;
    width: 28rem;
    height: 28rem;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon_1.png');
}
.album-list .item .content .detail-button {
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #336AEA;
}
.album-list .item .content .detail-button::after {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/right_arrow_3.png');
}
.album-detail-header {
    display: flex;
    flex-direction: column;
}
.album-detail-header > .top {
    display: flex;
    gap: 30rem;
    padding: 40rem 24rem;
    background-color: #F8F8FA;
}
.album-detail-header > .top .icon {
    width: 120rem;
    height: 120rem;
    object-fit: cover;
    border-radius: 30rem;
    flex-shrink: 0;
}
.album-detail-header > .top .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 8rem;
    min-width: 0;
    min-height: 120rem;
}
.album-detail-header > .top .content .title {
    font-size: 32rem;
    font-weight: bold;
    color: #1A1A1A;
}
.album-detail-header > .top .content .description {
    display: flex;
    align-items: center;
    gap: 20rem;
    font-size: 24rem;
    color: #4D4D4D;
}
.album-detail-header > .top .content .description .labels {
    display: flex;
    align-items: center;
    gap: 20rem;
}
.album-detail-header > .top .content .description .labels div {
    display: flex;
    align-items: center;
    gap: 20rem;
}
.album-detail-header > .top .content .description .labels div::before {
    content: '';
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #336AEA;
}
.album-detail-header .more-album {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    padding: 32rem 24rem 40rem 24rem;
}
.album-detail-header .more-album .label {
    font-size: 28rem;
    color: #999999;
}
.album-detail-header .more-album .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20rem;
}
.album-detail-header .more-album .list a {
    padding: 10rem 32rem;
    border: 2rem solid #336AEA;
    border-radius: 198rem;
    font-size: 24rem;
    color: #336AEA;
    line-height: 1;
}
.album-detail-header .editor-recommend {
    display: flex;
    flex-direction: column;
    margin: 0 24rem;
    border: 2rem solid #F2C7C7;
    background-color: #fff;
    box-shadow: 6rem 6rem 0 0 #F2D0D0;
}
.album-detail-header .editor-recommend::before {
    content: '';
    flex-shrink: 0;
    width: 100%;
    height: 88rem;
    background-size: cover;
    background-image: url('../images/editor_recommend.png');
}
.album-detail-header .editor-recommend .main {
    display: flex;
    gap: 30rem;
    padding: 40rem;
}
.album-detail-header .editor-recommend .main .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.album-detail-header .editor-recommend .main .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-detail-header .editor-recommend .main .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    height: 140rem;
    position: relative;
}
.album-detail-header .editor-recommend .main .content .top {
    display: flex;
    align-items: center;
    gap: 20rem;
    padding-right: 152rem;
}
.album-detail-header .editor-recommend .main .content .top .title {
    font-size: 28rem;
    font-weight: bold;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-detail-header .editor-recommend .main .content .type {
    padding-right: 152rem;
    font-size: 24rem;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-detail-header .editor-recommend .main .content .description {
    display: flex;
    align-items: center;
    gap: 12rem;
}
.album-detail-header .editor-recommend .main .content .description::before {
    content: '';
    flex-shrink: 0;
    width: 32rem;
    height: 32rem;
    background-size: 100% 100%;
    background-image: url('../images/love_icon.png');
}
.album-detail-header .editor-recommend .main .content .description span {
    font-size: 24rem;
    color: #4D4D4D;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-detail-header .editor-recommend .main .content .download-button {
    position: absolute;
    top: 12rem;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 136rem;
    height: 64rem;
    border-radius: 4rem;
    background-color: #ED7474;
    font-size: 28rem;
    color: white;
    line-height: 1;
}
.album-detail-list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    padding: 60rem 24rem;
}
.album-detail-list .item {
    display: flex;
    flex-direction: column;
    border: 2rem solid #EBEBED;
    padding: 30rem;
    position: relative;
}
.album-detail-list .item .number {
    position: absolute;
    top: 0;
    right: 30rem;
    display: flex;
    justify-content: center;
    padding-top: 8rem;
    width: 88rem;
    height: 56rem;
    background-size: 100% 100%;
    background-image: url('../images/tag_background_4.png');
    font-size: 24rem;
    font-weight: bold;
    color: #B6CCFF;
    line-height: 1;
}
.album-detail-list .item .main {
    display: flex;
    align-items: flex-end;
    padding-bottom: 40rem;
    border-bottom: 2rem solid #F2F2F2;
}
.album-detail-list .item .main .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.album-detail-list .item .main .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-detail-list .item .main .content {
    margin-left: 30rem;
    margin-right: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    height: 140rem;
}
.album-detail-list .item .main .content .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-detail-list .item .main .content .labels {
    display: flex;
    flex-direction: column;
    gap: 14rem;
}
.album-detail-list .item .main .content .labels > div {
    display: flex;
    align-items: center;
    font-size: 24rem;
    color: #4D4D4D;
}
.album-detail-list .item .main .content .labels > div::before {
    content: '';
    margin-right: 16rem;
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.album-detail-list .item .main .content .labels > div .score {
    margin-left: 12rem;
    font-size: 20rem;
    color: #FF5C00;
}
.album-detail-list .item .main .content .labels > div .score:first-letter {
    font-size: 24rem;
}
.album-detail-list .item .main .download-button {
    margin-left: auto;
    flex-shrink: 0;
    padding: 18rem 40rem;
    border-radius: 4rem;
    background-color: #336AEA;
    font-size: 28rem;
    color: white;
    line-height: 1;
}
.album-detail-list .item .description {
    margin-top: 28rem;
    font-size: 24rem;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy {
    display: flex;
    flex-direction: column;
}
.game-strategy .banner {
    display: flex;
    flex-direction: column;
    border: 2rem solid #E6E6E6;
}
.game-strategy .banner .thumbnail {
    width: 100%;
    height: 260rem;
    flex-shrink: 0;
}
.game-strategy .banner .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-strategy .banner .content {
    display: flex;
    flex-direction: column;
    gap: 20rem;
    padding: 24rem 30rem 32rem 30rem;
}
.game-strategy .banner .content .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .banner .content .description {
    flex-shrink: 0;
    width: 100%;
    height: 80rem;
    padding: 28rem 30rem;
    background-size: 100% 100%;
    background-image: url('../images/text_box_1.png');
    font-size: 24rem;
    color: #999999;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    margin-top: 40rem;
}
.game-strategy .list .item {
    display: flex;
    align-items: center;
}
.game-strategy .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.game-strategy .list .item .title {
    margin-left: 20rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 26rem;
    color: #999999;
}
.gift-list {
    display: flex;
    flex-direction: column;
    gap: 36rem;
}
.gift-list-wrap .gift-list {
    padding: 40rem 24rem 60rem 24rem;
}
.gift-list .item {
    display: flex;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.gift-list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.gift-list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 30rem;
    overflow: hidden;
    flex-shrink: 0;
}
.gift-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}
.gift-list .item .content {
    margin-left: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    height: 140rem;
}
.gift-list .item .content .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gift-list .item .content .bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16rem;
}
.gift-list .item .content .bottom .left {
    display: flex;
    flex-direction: column;
    gap: 13rem;
    min-width: 0;
}
.gift-list .item .content .bottom .left .time {
    display: flex;
    align-items: center;
    gap: 8rem;
}
.gift-list .item .content .bottom .left .time::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon_2.png');
}
.gift-list .item .content .bottom .left .time span {
    font-size: 24rem;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gift-list .item .content .bottom .left .description {
    font-size: 24rem;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gift-list .item .content .bottom .receive-button {
    flex-shrink: 0;
    padding: 18rem 40rem;
    border-radius: 4rem;
    background-color: #336AEA;
    font-size: 28rem;
    color: white;
    line-height: 1;
}
.gift-detail-header {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    padding: 50rem 24rem 60rem 24rem;
}
.gift-detail-header .main {
    display: flex;
    gap: 30rem;
}
.gift-detail-header .main .icon {
    width: 140rem;
    height: 140rem;
    object-fit: cover;
    border-radius: 30rem;
    flex-shrink: 0;
}
.gift-detail-header .main .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8rem;
    min-height: 140rem;
    overflow: hidden;
}
.gift-detail-header .main .content .title {
    font-size: 32rem;
    font-weight: bold;
    color: #1A1A1A;
}
.gift-detail-header .main .content .description {
    font-size: 24rem;
    color: #4D4D4D;
}
.gift-detail-header .main .content .surplus {
    display: flex;
    align-items: center;
    gap: 16rem;
    font-size: 24rem;
    color: #336AEA;
}
.gift-detail-header .main .content .surplus .progress-bar {
    width: 160rem;
    height: 12rem;
    background-color: #F0F0F2;
    border-radius: 198rem;
    overflow: hidden;
    flex-shrink: 0;
}
.gift-detail-header .main .content .surplus .progress-bar i {
    display: block;
    height: 100%;
    background-color: #336AEA;
    border-radius: 198rem;
}
.gift-detail-header .button-wrap {
    display: flex;
    flex-direction: column;
    gap: 32rem;
}
.gift-detail-header .button-wrap > * {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20rem;
    width: 100%;
    height: 88rem;
    border-radius: 8rem;
    background-color: #777777;
    font-size: 32rem;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}
.gift-detail-header .button-wrap .receive-button {
    cursor: pointer;
    background-color: #FFA63B;
}
.gift-detail-header .button-wrap .receive-button::before {
    content: '';
    flex-shrink: 0;
    width: 32rem;
    height: 32rem;
    background-size: 100% 100%;
    background-image: url('../images/gift_icon_1.png');
}
.gift-detail-header .button-wrap .download-button {
    cursor: pointer;
    background-color: #336AEA;
}
.gift-detail-header .button-wrap .download-button::before {
    content: '';
    flex-shrink: 0;
    width: 32rem;
    height: 32rem;
    background-size: 100% 100%;
    background-image: url('../images/download_icon_1.png');
}
.gift-modal > .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600rem;
    height: 500rem;
    background-color: #fff;
    border-radius: 40rem;
    padding: 0 50rem 60rem 50rem;
    position: relative;
}
.gift-modal > .modal-content::before {
    content: '';
    flex-shrink: 0;
    margin-top: -248rem;
    width: 660rem;
    height: 360rem;
    background-size: 100% 100%;
    background-image: url('../images/gift_modal_decorate.png');
}
.gift-modal > .modal-content .title {
    margin-top: 22rem;
    font-size: 44rem;
    font-weight: bold;
    color: #333333;
}
.gift-modal > .modal-content .activation-code {
    margin-top: 40rem;
    font-size: 32rem;
    font-weight: bold;
    color: #4D4D4D;
}
.gift-modal > .modal-content .activation-code span:nth-child(1) {
    font-weight: initial;
}
.gift-modal > .modal-content .copy-button {
    cursor: pointer;
    margin-top: auto;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100rem;
    background-color: #F75757;
    border-radius: 198rem;
    font-size: 36rem;
    color: white;
}
.gift-modal > .modal-content .cancel-button {
    cursor: pointer;
    position: absolute;
    top: -20rem;
    right: -20rem;
    z-index: 2101;
    width: 80rem;
    height: 80rem;
    background-size: 100% 100%;
    background-image: url('../images/cancel.png');
}
.selected-gift {
    display: flex;
    flex-direction: column;
}
.selected-gift .list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
}
.selected-gift .list .item {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    padding-bottom: 32rem;
    border-bottom: 2rem solid #F2F2F2;
}
.selected-gift .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.selected-gift .list .item .top {
    display: flex;
    align-items: center;
    gap: 16rem;
}
.selected-gift .list .item .top .time {
    flex-shrink: 0;
    font-size: 24rem;
    color: #999999;
}
.selected-gift .list .item .top .title {
    display: flex;
    align-items: center;
    gap: 16rem;
    min-width: 0;
}
.selected-gift .list .item .top .title::before {
    content: '';
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #336AEA;
}
.selected-gift .list .item .top .title span {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-gift .list .item .description {
    font-size: 28rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-gift {
    display: flex;
    flex-direction: column;
}
.latest-gift .list {
    display: flex;
    flex-direction: column;
    gap: 40rem;
}
.latest-gift .list .item {
    display: flex;
    gap: 20rem;
}
.latest-gift .list .item .begin-marker {
    display: flex;
    justify-content: center;
    margin-top: 17rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
    position: relative;
}
.latest-gift .list .item:not(:last-child) .begin-marker::before {
    content: '';
    position: absolute;
    top: calc(100% + 10rem);
    width: 2rem;
    height: 176rem;
    background-color: #E6E6E6;
}
.latest-gift .list .item > .content {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    flex: 1;
    overflow: hidden;
}
.latest-gift .list .item > .content .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-gift .list .item > .content .detail {
    display: flex;
    gap: 28rem;
}
.latest-gift .list .item > .content .detail .icon {
    width: 100rem;
    height: 100rem;
    border-radius: 20rem;
    overflow: hidden;
    flex-shrink: 0;
}
.latest-gift .list .item > .content .detail .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-gift .list .item > .content .detail .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100rem;
    overflow: hidden;
}
.latest-gift .list .item > .content .detail .content .description {
    font-size: 24rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-gift .list .item > .content .detail .content .time {
    font-size: 24rem;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-video {
    display: flex;
    flex-direction: column;
}
.game-video .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40rem 30rem;
}
.game-video .list .item {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    min-width: 0;
}
.game-video .list .item .thumbnail {
    width: 100%;
    height: 200rem;
    flex-shrink: 0;
}
.game-video .list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-video .list .item .title {
    width: 100%;
    text-align: center;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-game {
    display: flex;
    flex-direction: column;
}
.selected-game .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30rem;
}
.selected-game .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 40rem 30rem;
    background-color: #F8F8FA;
}
.selected-game .list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.selected-game .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.selected-game .list .item .title {
    margin-top: 20rem;
    width: 100%;
    text-align: center;
    font-size: 28rem;
    font-weight: bold;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-game .list .item .description {
    margin-top: 16rem;
    width: 100%;
    text-align: center;
    font-size: 24rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-game .list .item .download-button {
    margin-top: 32rem;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 136rem;
    height: 64rem;
    background-color: #336AEA;
    border-radius: 4rem;
    font-size: 28rem;
    color: white;
    line-height: 1;
}
.search-wrap {
    display: flex;
    flex-direction: column;
    padding: 40rem 24rem 20rem 24rem;
}
.search-number {
    font-size: 32rem;
    color: #4D4D4D;
}
.search-category {
    display: flex;
    flex-direction: column;
    margin-top: 80rem;
}
.search-number + .search-category {
    margin-top: 60rem;
}
.search-category > .title {
    display: flex;
    align-items: center;
    gap: 24rem;
    margin-bottom: 40rem;
    font-size: 36rem;
    font-weight: bold;
    color: #1A1A1A;
}
.search-category > .title::before {
    content: '';
    flex-shrink: 0;
    width: 6rem;
    height: 32rem;
    background-color: #336AEA;
}
.ranking-banner {
    flex-shrink: 0;
    width: 100%;
    height: 200rem;
    background-size: 100% 100%;
    background-image: url('../images/ranking_banner.png');
}
.ranking-list-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 80rem;
    gap: 22rem;
    padding: 30rem 24rem 60rem 24rem;
}
.ranking-list-tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 16rem;
    border-radius: 198rem;
    background-color: #F8F8FA;
}
.ranking-list-tabs a.active {
    background-color: #F58634;
}
.ranking-list-tabs a span {
    font-size: 32rem;
    color: #808080;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-list-tabs a.active span {
    color: white;
}
.ranking-list-wrap {
    padding-bottom: 20rem;
}
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20rem;
    padding: 0 24rem 60rem 24rem;
}
.ranking-list .item {
    display: flex;
    gap: 30rem;
    padding: 30rem;
    background-color: #FAFAFA;
    position: relative;
}
.ranking-list .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 68rem;
    height: 68rem;
    background: linear-gradient(to right bottom, #D7D7D9 50%, transparent 50%);
}
.ranking-list .item:nth-child(1)::before {
    background: linear-gradient(to right bottom, #EE3F3F 50%, transparent 50%);
}
.ranking-list .item:nth-child(2)::before {
    background: linear-gradient(to right bottom, #FF7F49 50%, transparent 50%);
}
.ranking-list .item:nth-child(3)::before {
    background: linear-gradient(to right bottom, #FFAA3B 50%, transparent 50%);
}
.ranking-list .item .serial-number {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35rem;
    height: 40rem;
    font-size: 24rem;
    color: white;
}
.ranking-list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 1;
}
.ranking-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ranking-list .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    height: 140rem;
    position: relative;
}
.ranking-list .item .content .title {
    padding-right: 152rem;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-list .item .content .middle {
    display: flex;
    align-items: center;
    gap: 16rem;
    padding-right: 152rem;
}
.ranking-list .item .content .middle .score {
    display: flex;
    align-items: center;
    gap: 8rem;
    flex-shrink: 0;
    font-size: 24rem;
    color: #FF5C00;
}
.ranking-list .item .content .middle .score::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/star_active.png');
}
.ranking-list .item .content .middle .type {
    font-size: 24rem;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-list .item .content .description {
    font-size: 24rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-list .item .content .download-button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 136rem;
    height: 64rem;
    border-radius: 4rem;
    background-color: #F58634;
    font-size: 28rem;
    color: white;
    line-height: 1;
}
.ranking-group-list {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    padding: 30rem 24rem 60rem 24rem;
}
.ranking-group-list .item {
    display: flex;
    flex-direction: column;
    border: 2rem solid #EBEBED;
    background-color: #F8F8FA;
    position: relative;
    z-index: 0;
}
.ranking-group-list .item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 260rem;
    height: 260rem;
    background-size: 100% 100%;
    background-image: url('../images/ranking_watermark.png');
}
.ranking-group-list .item > .title {
    display: flex;
    align-items: center;
    padding: 0 30rem;
    height: 120rem;
}
.ranking-group-list .item > .title span {
    font-size: 32rem;
    font-weight: bold;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-group-list .item .children {
    display: grid;
    grid-template-columns: repeat(3, 140rem);
    justify-content: space-between;
    padding: 50rem 60rem 38rem 60rem;
    background-color: #fff;
}
.ranking-group-list .item .children > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36rem;
    position: relative;
}
.ranking-group-list .item .children > a .icon {
    width: 140rem;
    height: 140rem;
    object-fit: cover;
    border-radius: 40rem;
    flex-shrink: 0;
}
.ranking-group-list .item .children > a .serial-number {
    position: absolute;
    top: 120rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35rem;
    height: 40rem;
    background-size: 100% 100%;
    font-size: 24rem;
    color: white;
    line-height: 1;
}
.ranking-group-list .item .children > a:nth-child(1) .serial-number {
    background-image: url('../images/serial_number_background_1.png');
}
.ranking-group-list .item .children > a:nth-child(2) .serial-number {
    background-image: url('../images/serial_number_background_2.png');
}
.ranking-group-list .item .children > a:nth-child(3) .serial-number {
    background-image: url('../images/serial_number_background_3.png');
}
.ranking-group-list .item .children > a .title {
    width: 100%;
    text-align: center;
    font-size: 28rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20rem;
    margin: 30rem 0 40rem 0;
    padding: 24rem;
    width: 726rem;
    border: 2rem solid #EBEBED;
    background-color: #fff;
    box-shadow: 8rem 8rem 0 0 rgba(0, 0, 0, 0.05);
}
.ranking-detail-header .title {
    display: flex;
    align-items: center;
    gap: 16rem;
    font-size: 32rem;
    font-weight: bold;
    color: #1A1A1A;
}
.ranking-detail-header .title::before {
    content: '';
    flex-shrink: 0;
    width: 60rem;
    height: 60rem;
    background-size: 100% 100%;
    background-image: url('../images/ranking_detail_title_begin_marker.png');
}
.ranking-detail-header .time {
    font-size: 24rem;
    color: #999999;
}
.recommend-news {
    display: flex;
    flex-direction: column;
}
.recommend-news .list {
    display: flex;
    gap: 32rem;
    overflow: auto;
}
.recommend-news .list .item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    width: 460rem;
    border: 2rem solid #E6E6E6;
}
.recommend-news .list .item .thumbnail {
    width: 100%;
    height: 260rem;
    flex-shrink: 0;
}
.recommend-news .list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recommend-news .list .item .content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24rem 30rem;
}
.recommend-news .list .item .content .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recommend-news .list .item .content .description {
    flex-shrink: 0;
    margin-top: 24rem;
    width: 100%;
    height: 80rem;
    padding: 28rem 30rem;
    background-size: 100% 100%;
    background-image: url('../images/text_box_2.png');
    font-size: 24rem;
    color: #999999;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recommend-news .list .item .content .footer {
    margin-top: 40rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16rem;
}
.recommend-news .list .item .content .footer > div {
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #999999;
}
.recommend-news .list .item .content .footer .hits::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/hot_icon.png');
}
.recommend-news .list .item .content .footer .author::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/user_icon_1.png');
}
.hot-ranking {
    display: flex;
    flex-direction: column;
}
.hot-ranking .top-list {
    display: flex;
    flex-direction: column;
    gap: 20rem;
}
.hot-ranking .top-list .item {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    padding: 30rem 40rem;
    border: 2rem solid #EBEBED;
}
.hot-ranking .top-list .item > .title {
    display: flex;
    align-items: center;
    gap: 20rem;
}
.hot-ranking .top-list .item > .title span {
    font-size: 30rem;
    font-weight: bold;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-ranking .top-list .item > .title::after {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/right_arrow_4.png');
}
.hot-ranking .top-list .item .children {
    display: grid;
    grid-template-columns: repeat(4, 120rem);
    justify-content: space-between;
}
.hot-ranking .top-list .item .children > a {
    display: flex;
    flex-direction: column;
    gap: 14rem;
    min-width: 0;
}
.hot-ranking .top-list .item .children > a .icon {
    width: 100%;
    height: 120rem;
    object-fit: cover;
    border-radius: 30rem;
    flex-shrink: 0;
}
.hot-ranking .top-list .item .children > a .title {
    width: 100%;
    text-align: center;
    font-size: 26rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-ranking .list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    margin-top: 40rem;
}
.hot-ranking .list .item {
    display: flex;
    align-items: center;
}
.hot-ranking .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.hot-ranking .list .item .title {
    margin-left: 20rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-ranking .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 24rem;
    color: #999999;
}
.news-ranking {
    display: flex;
    flex-direction: column;
}
.news-ranking .top-list {
    display: flex;
    flex-direction: column;
    gap: 40rem;
}
.news-ranking .top-list .item {
    display: flex;
    gap: 30rem;
}
.news-ranking .top-list .item .thumbnail {
    width: 280rem;
    height: 160rem;
    flex-shrink: 0;
    position: relative;
}
.news-ranking .top-list .item .thumbnail .serial-number {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40rem;
    height: 40rem;
    background-color: #336AEA;
    font-size: 24rem;
    color: white;
    line-height: 1;
}
.news-ranking .top-list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-ranking .top-list .item .content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.news-ranking .top-list .item .content .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-ranking .top-list .item .content .description {
    margin-top: 16rem;
    font-size: 24rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-ranking .top-list .item .content .time {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #999999;
}
.news-ranking .top-list .item .content .time::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon_1.png');
}
.news-ranking .list {
    display: flex;
    flex-direction: column;
    gap: 32rem;
    margin-top: 40rem;
}
.news-ranking .list .item {
    display: flex;
    align-items: center;
}
.news-ranking .list .item .serial-number {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40rem;
    height: 40rem;
    background-color: #F0F0F0;
    font-size: 24rem;
    color: #999999;
    line-height: 1;
}
.news-ranking .list .item .title {
    margin-left: 20rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #1A1A1A;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-ranking .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 24rem;
    color: #999999;
    line-height: 1;
}
.latest-game {
    display: flex;
    flex-direction: column;
}
.latest-game .top-list {
    display: grid;
    grid-template-columns: repeat(3, 168rem);
    justify-content: space-between;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.latest-game .top-list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
.latest-game .top-list .item .icon {
    width: 140rem;
    height: 140rem;
    border-radius: 40rem;
    overflow: hidden;
    flex-shrink: 0;
}
.latest-game .top-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-game .top-list .item .title {
    margin-top: 20rem;
    width: 100%;
    text-align: center;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-game .top-list .item .type {
    margin-top: 16rem;
    width: 100%;
    text-align: center;
    font-size: 24rem;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-game .list {
    display: flex;
    flex-direction: column;
    gap: 24rem;
    margin-top: 24rem;
}
.latest-game .list .item {
    display: flex;
    align-items: center;
    padding-bottom: 24rem;
    border-bottom: 2rem solid #F2F2F2;
}
.latest-game .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.latest-game .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.latest-game .list .item .icon {
    margin-left: 30rem;
    width: 60rem;
    height: 60rem;
    border-radius: 12rem;
    overflow: hidden;
    flex-shrink: 0;
}
.latest-game .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-game .list .item .title {
    margin-left: 30rem;
    margin-right: 16rem;
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-game .list .item .type {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 24rem;
    color: #999999;
}
.single-player-game-strategy {
    display: flex;
    flex-direction: column;
}
.single-player-game-strategy .list {
    display: flex;
    flex-direction: column;
    gap: 36rem;
}
.single-player-game-strategy .list .item {
    display: flex;
    flex-direction: column;
    gap: 28rem;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.single-player-game-strategy .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.single-player-game-strategy .list .item .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.single-player-game-strategy .list .item .main {
    display: flex;
    gap: 30rem;
}
.single-player-game-strategy .list .item .main .thumbnail {
    width: 200rem;
    height: 120rem;
    flex-shrink: 0;
}
.single-player-game-strategy .list .item .main .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-player-game-strategy .list .item .main .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    height: 120rem;
}
.single-player-game-strategy .list .item .main .content .description {
    font-size: 28rem;
    color: #4D4D4D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.single-player-game-strategy .list .item .main .content .labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16rem;
}
.single-player-game-strategy .list .item .main .content .labels > div {
    display: flex;
    align-items: center;
    gap: 8rem;
    font-size: 24rem;
    color: #999999;
}
.single-player-game-strategy .list .item .main .content .labels .author::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/user_icon_1.png');
}
.single-player-game-strategy .list .item .main .content .labels .time::before {
    content: '';
    flex-shrink: 0;
    width: 24rem;
    height: 24rem;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon_1.png');
}
.server-list-wrap {
    display: flex;
    flex-direction: column;
    padding-top: 40rem;
}
.server-list-title {
    display: flex;
    position: relative;
    z-index: 0;
}
.server-list-title span {
    font-size: 36rem;
    font-weight: bold;
    color: #1A1A1A;
    padding: 0 24rem 20rem 24rem;
    border-bottom: 4rem solid #336AEA;
}
.server-list-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 4rem;
    background-color: #EBEBEB;
}
.server-list-filter {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #F7F7F7;
    padding: 0 24rem;
}
.server-list-filter > .item .header {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12rem;
    height: 96rem;
}
.server-list-filter > .item .header::after {
    content: '';
    flex-shrink: 0;
    width: 40rem;
    height: 40rem;
    background-size: 100% 100%;
    background-image: url('../images/down_arrow_1.png');
    transition: all 0.2s;
}
.server-list-filter > .item.open .header::after {
    transform: rotate(180deg);
}
.server-list-filter > .item.active .header::after {
    background-image: url('../images/down_arrow_1_active.png');
}
.server-list-filter > .item .header span {
    font-size: 28rem;
    color: #999999;
}
.server-list-filter > .item.active .header span {
    color: #336AEA;
}
.server-list-filter > .item .content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 24rem;
    background-color: #fff;
    border-radius: 0 0 16rem 16rem;
    box-shadow: 0 0 40rem 0 rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
}
.server-list-filter > .item.open .content {
    visibility: visible;
    opacity: 1;
}
.server-list-filter > .item .content .item {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 80rem;
    border-bottom: 2rem solid #E6E6E6;
    flex-shrink: 0;
}
.server-list-filter > .item .content .item:last-child {
    border-bottom: none;
}
.server-list-filter > .item .content .item span {
    font-size: 28rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.server-list-filter > .item .content .item.active span {
    color: #336AEA;
}
.server-list {
    display: flex;
    flex-direction: column;
    gap: 36rem;
    padding: 40rem 24rem 60rem 24rem;
}
.server-list .item {
    display: flex;
    align-items: center;
    padding-bottom: 36rem;
    border-bottom: 2rem solid #F2F2F2;
}
.server-list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.server-list .item .icon {
    width: 124rem;
    height: 124rem;
    border-radius: 30rem;
    overflow: hidden;
    flex-shrink: 0;
}
.server-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.server-list .item .content {
    margin-left: 30rem;
    margin-right: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    height: 124rem;
}
.server-list .item .content .top {
    display: flex;
    align-items: center;
    gap: 16rem;
}
.server-list .item .content .top .title {
    font-size: 28rem;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.server-list .item .content .top .android {
    flex-shrink: 0;
    width: 28rem;
    height: 28rem;
    background-size: 100% 100%;
    background-image: url('../images/android_icon_1.png');
}
.server-list .item .content .top .ios {
    flex-shrink: 0;
    width: 28rem;
    height: 28rem;
    background-size: 100% 100%;
    background-image: url('../images/ios_icon_1.png');
}
.server-list .item .content .time {
    font-size: 24rem;
    color: #336AEA;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.server-list .item .content .description {
    font-size: 24rem;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.server-list .item .download-button {
    margin-left: auto;
    flex-shrink: 0;
    padding: 14rem 40rem;
    border: 2rem solid #336AEA;
    border-radius: 4rem;
    font-size: 28rem;
    color: #336AEA;
    line-height: 1;
}


























