* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}
html {
    overflow: hidden auto;
}
body {
    min-height: 100vh;
    background-color: #F8F8FA;
    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;
}

/* 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 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #fff;
}
body > .header .header-top {
    height: 80px;
}
body > .header .logo img {
    height: 44px;
}
body > .header .search {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 440px;
    height: 44px;
    background-color: #F0F4FB;
    padding: 0 6px 0 20px;
}
body > .header .search .input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}
body > .header .search .button {
    cursor: pointer;
    width: 60px;
    height: 32px;
    border: none;
    background-color: #336AEA;
    background-size: 18px 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/search.png');
    flex-shrink: 0;
}
body > .header .nav {
    width: 100%;
    height: 40px;
    background-color: #336AEA;
}
body > .header .nav ul {
    height: 100%;
    gap: 33px;
}
body > .header .nav .item {
    height: 100%;
}
body > .header .nav .item a {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
    width: 85px;
    height: 100%;
    transition: all 0.2s;
}
body > .header .nav .item:hover a,
body > .header .nav .item.active a {
    color: #336AEA;
}
body > .header .nav .item a::before {
    content: '';
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 2.5px;
    z-index: -1;
    width: 85px;
    height: 50px;
    background-size: 100% 100%;
    background-image: url('../images/nav_active_background.png');
    flex-shrink: 0;
    transition: all 0.2s;
}
body > .header .nav .item:hover a::before,
body > .header .nav .item.active a::before {
    visibility: visible;
    opacity: 1;
}
body > .footer {
    margin-top: auto;
    width: 100%;
    background-color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 39px 16px;
    z-index: 1;
}
body > .footer .name {
    font-size: 14px;
    color: #CCCCCC;
}
body > .footer ul {
}
body > .footer ul li {
    display: flex;
    align-items: center;
}
body > .footer ul li:not(:last-child)::after {
    content: '丨';
    margin: 0 20px;
    flex-shrink: 0;
}
body > .footer ul li a {
    font-size: 14px;
    color: #999999;
    line-height: 1;
}
body > .footer ul li a:hover {
    color: white;
}
body > .footer .copyright {
    font-size: 14px;
    color: #999999;
}
body > .main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 800px;
    background-position: top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-image: url('../images/main_background.png');
}
.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(-20px);
    transition: all 0.4s ease;
}
.modal.show > .modal-content {
    transform: translateY(0);
}
.main-container {
    width: 1200px;
}
.main-container-box {
    width: 1200px;
    background-color: #fff;
}
.section-title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title > div:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.section-title > div:nth-child(1) span {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    flex-shrink: 0;
}
.section-title > div:nth-child(1)::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #F2F2F2;
    background-position: left;
    background-repeat: no-repeat;
    background-image: url('../images/line_1.png');
}
.section-title > a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999999;
    flex-shrink: 0;
}
.section-title > a:hover {
    color: #336AEA;
}
.section-title > a::after {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/more_button.png');
}
.section-title > a:hover::after {
    background-image: url('../images/more_button_active.png');
}
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    padding-top: 46px;
    padding-bottom: 250px;
}
.error-page > span {
    font-size: 20px;
    color: #999999;
    margin-top: -46px;
}
.error-page > a {
    margin-top: 40px;
    padding: 14px 40px;
    border: 1px solid #336AEA;
    border-radius: 2px;
    font-size: 20px;
    color: #336AEA;
    line-height: 1;
    transition: all 0.2s;
}
.error-page > a:hover {
    color: white;
    background-color: #336AEA;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 12px;
    color: #999999;
    white-space: pre;
    z-index: 1;
}
.breadcrumbs::before {
    content: '';
    margin-right: 6px;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background-size: 100% 100%;
    background-image: url('../images/location_icon.png');
}
.breadcrumbs > div {
    display: flex;
    align-items: center;
}
.breadcrumbs > div span:last-child {
    color: #4D4D4D;
}
.breadcrumbs > div span:not(:last-child)::after {
    content: ' > ';
}
.breadcrumbs > div a:hover {
    color: #336AEA;
}
.main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
}
.main-layout .left {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.main-layout .sidebar {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.pagination {
    margin: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.pagination .previous-button,
.pagination .next-button {
    width: 50px;
    height: 30px;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s;
}
.pagination .previous-button:hover,
.pagination .next-button:hover {
    border-color: transparent;
    background-color: #336AEA;
}
.pagination .previous-button {
    background-image: url('../images/left_arrow_2.png');
}
.pagination .next-button {
    background-image: url('../images/right_arrow_2.png');
}
.pagination .page-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    background-color: #fff;
    font-size: 14px;
    color: #666666;
    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 10.5px;
}
.star-rating {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.star-rating > i {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-image: url('../images/star.png');
}
.star-rating > i.active i {
    display: block;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-image: url('../images/star_active.png');
}
.star-rating.size-12 > i {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
}
.star-rating.size-12 > i.active i {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
}
.star-rating.size-14 > i {
    width: 14px;
    height: 14px;
    background-size: 14px 14px;
}
.star-rating.size-14 > i.active i {
    width: 14px;
    height: 14px;
    background-size: 14px 14px;
}
.star-rating.size-18 > i {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
}
.star-rating.size-18 > i.active i {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
}

.home-top-1 {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    padding-right: 25px;
}
.home-top-1 .tabs {
    display: flex;
    flex-direction: column;
}
.home-top-1 .tabs > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 130px;
    height: 66px;
    background-color: #F6F6F6;
    cursor: pointer;
}
.home-top-1 .tabs > div.active {
    background-color: #fff;
}
.home-top-1 .tabs > div::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
}
.home-top-1 .tabs > div:nth-child(1)::before {
    background-image: url('../images/sun_icon.png');
}
.home-top-1 .tabs > div.active:nth-child(1)::before {
    background-image: url('../images/sun_icon_active.png');
}
.home-top-1 .tabs > div:nth-child(2)::before {
    background-image: url('../images/star_icon_1.png');
}
.home-top-1 .tabs > div.active:nth-child(2)::before {
    background-image: url('../images/star_icon_1_active.png');
}
.home-top-1 .tabs > div span {
    font-size: 16px;
    color: #999999;
    line-height: 1;
    transition: all 0.2s;
}
.home-top-1 .tabs > div.active span {
    color: #336AEA;
}
.home-top-1 .content {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
}
.home-top-1 .content .list {
    display: none;
    grid-template-columns: repeat(10, 70px);
    justify-content: space-between;
    flex: 1;
}
.home-top-1 .content .list.active {
    display: grid;
}
.home-top-1 .content .list .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}
.home-top-1 .content .list .item .icon {
    width: 100%;
    height: 70px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.home-top-1 .content .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-top-1 .content .list .item .name {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-top-1 .content .list .item .name:hover {
    color: #336AEA;
}
.home-top-2 {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 6px;
}
.home-top-2 .category {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
}
.home-top-2 .category > .item {
    display: flex;
    align-items: center;
    gap: 22px;
}
.home-top-2 .category > .item .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 28px;
    background-color: #336AEA;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 12px;
    color: white;
}
.home-top-2 .category > .item .list {
    display: flex;
    align-items: center;
    overflow: hidden;
}
.home-top-2 .category > .item .list div {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.home-top-2 .category > .item .list div:not(:last-child)::after {
    content: '丨';
    flex-shrink: 0;
    margin: 0 12px;
    color: #E6E6E6;
}
.home-top-2 .category > .item .list div a {
    font-size: 14px;
    color: #666666;
    line-height: 1;
}
.home-top-2 .category > .item .list div a:hover {
    color: #336AEA;
}
.home-top-2 .game-list {
    display: grid;
    grid-template-columns: repeat(7, auto);
    justify-content: space-between;
    margin-top: 20px;
}
.home-top-2 .game-list .item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 153px;
    overflow: hidden;
    padding-right: 18px;
    border-right: 1px solid #E6E6E6;
}
.home-top-2 .game-list .item:last-child {
    width: 135px;
    padding-right: 0;
    border-right: none;
}
.home-top-2 .game-list .item .icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}
.home-top-2 .game-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-top-2 .game-list .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 60px;
    overflow: hidden;
}
.home-top-2 .game-list .item .content .title {
    font-size: 13px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-top-2 .game-list .item .content .title:hover {
    color: #336AEA;
}
.home-top-2 .game-list .item .content .description {
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-swiper {
    position: relative;
}
.home-swiper .uk-slideshow-items {
    width: 100%;
    height: 220px;
}
.home-swiper-pagination {
    display: flex;
    justify-content: flex-end;
    width: 100px !important;
    position: absolute !important;
    left: unset !important;
    right: 0 !important;
    bottom: 16px !important;
    z-index: 1 !important;
    text-align: right !important;
    padding-right: 15px;
    box-sizing: border-box;
}
.home-swiper-pagination li {
    padding-left: 5px;
}
.home-swiper-pagination li a {
    width: 6px;
    height: 6px;
    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: 40px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    color: white;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 15px;
    padding-right: 70px;
    box-sizing: border-box;
    z-index: 1;
}
.home-swiper-thumbnail {
    margin-top: 5px;
}
.home-swiper-thumbnail .uk-thumbnav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 43px;
    gap: 5px;
    margin-left: 0;
}
.home-swiper-thumbnail .uk-thumbnav li {
    padding-left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.home-swiper-thumbnail .uk-thumbnav li.uk-active::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    border: 3px solid #3874FF;
}
.home-swiper-thumbnail .uk-thumbnav li a {
    width: 100%;
    height: 100%;
}
.home-swiper-thumbnail .uk-thumbnav li a::after {
    content: none;
}
.home-swiper-thumbnail .uk-thumbnav li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-primary {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 20px;
}
.home-primary .home-primary-top {
    display: grid;
    grid-template-columns: 390px 1fr 340px;
    gap: 20px;
}
.home-primary .home-primary-middle {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 20px;
    margin-top: 32px;
}
.home-primary .home-primary-middle > div {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.paginated-news {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.paginated-news .page {
    display: none;
    flex-direction: column;
    gap: 28px;
}
.paginated-news .page.active {
    display: flex;
}
.paginated-news .page .header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.paginated-news .page .header .title {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #336AEA;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.paginated-news .page .header .description {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.paginated-news .page .main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.paginated-news .page .main .item {
    display: flex;
    align-items: center;
}
.paginated-news .page .main .item .tag {
    padding: 6px 8px;
    background-color: #F0F4FD;
    font-size: 12px;
    color: #336AEA;
    line-height: 1;
    flex-shrink: 0;
}
.paginated-news .page .main .item .title {
    margin-left: 12px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.paginated-news .page .main .item .title:hover {
    color: #336AEA;
}
.paginated-news .page .main .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.paginated-news .paginated-news-pagination {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 20px;
    margin-top: 24px;
}
.paginated-news .paginated-news-pagination .previous,
.paginated-news .paginated-news-pagination .next {
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #91B1FC;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.paginated-news .paginated-news-pagination .previous:hover,
.paginated-news .paginated-news-pagination .next:hover {
    background-color: #336AEA;
}
.paginated-news .paginated-news-pagination .previous {
    background-image: url('../images/left_arrow_1.png');
}
.paginated-news .paginated-news-pagination .next {
    background-image: url('../images/right_arrow_1.png');
}
.paginated-news .paginated-news-pagination .item {
    cursor: pointer;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E9E9EB;
    flex-shrink: 0;
    transition: all 0.2s;
}
.paginated-news .paginated-news-pagination .item:hover,
.paginated-news .paginated-news-pagination .item.active {
    background-color: #336AEA;
}
.wonderful-column {
    display: flex;
    flex-direction: column;
}
.wonderful-column .list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.wonderful-column .list .item {
    display: grid;
}
.wonderful-column .list .item:nth-child(2n+1) {
    grid-template: "a b" 106px / 160px 1fr;
}
.wonderful-column .list .item:nth-child(2n+2) {
    grid-template: "a b" 106px / 1fr 160px;
}
.wonderful-column .list .item .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #F8F8FA;
    padding: 14px 15px;
    position: relative;
}
.wonderful-column .list .item:nth-child(2n+1) .content {
    grid-area: a;
}
.wonderful-column .list .item:nth-child(2n+2) .content {
    grid-area: b;
}
.wonderful-column .list .item .content::after {
    content: '';
    position: absolute;
    top: calc(106px / 2 - 20px / 2);
    border: 10px solid transparent;
}
.wonderful-column .list .item:nth-child(2n+1) .content::after {
    right: -20px;
    border-left: 10px solid #F8F8FA;
}
.wonderful-column .list .item:nth-child(2n+2) .content::after {
    left: -20px;
    border-right: 10px solid #F8F8FA;
}
.wonderful-column .list .item .content .title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wonderful-column .list .item .content .title:hover {
    color: #336AEA;
}
.wonderful-column .list .item .content .description {
    margin-top: 7px;
    font-size: 12px;
    color: #999999;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wonderful-column .list .item .content .more-button {
    margin-top: auto;
    align-self: flex-start;
    padding: 3px 8px;
    border-radius: 99px;
    border: 1px solid #666666;
    font-size: 12px;
    color: #666666;
    line-height: 1.1;
}
.wonderful-column .list .item .content .more-button:hover {
    color: #336AEA;
    border: 1px solid #336AEA;
}
.wonderful-column .list .item .thumbnail {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}
.wonderful-column .list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-news {
    display: flex;
    flex-direction: column;
}
.hot-news .top-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.hot-news.has-divider .top-list {
    padding-bottom: 16px;
    border-bottom: 1px solid #F2F2F2;
}
.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: 48px;
    height: 48px;
    background-size: 100% 100%;
    background-image: url('../images/hot_tag.png');
}
.hot-news .top-list .item .thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.hot-news .top-list .item .title {
    width: 100%;
    padding: 0 8px;
    background-color: #F8F8FA;
    text-align: center;
    font-size: 14px;
    color: #333333;
    line-height: 34px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-news .top-list .item:hover .title {
    color: #336AEA;
}
.hot-news .list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hot-news.has-divider .list {
    margin-top: 16px;
}
.hot-news .list .item {
    display: flex;
    align-items: center;
}
.hot-news .list .item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.hot-news .list .item .title {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-news .list .item .title:hover {
    color: #336AEA;
}
.hot-news .list .item .more-button {
    margin-left: auto;
    flex-shrink: 0;
    padding: 7px 11px;
    border: 1px solid #336AEA;
    font-size: 14px;
    color: #336AEA;
    line-height: 1;
    transition: all 0.2s;
}
.hot-news .list .item .more-button:hover {
    color: white;
    background-color: #336AEA;
}
.boutique-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    padding: 12px 20px 0 20px;
    background: linear-gradient(to bottom, #FFF6DF, white);
}
.boutique-game > .title {
    display: flex;
    align-items: center;
    gap: 6px;
}
.boutique-game > .title span {
    font-size: 20px;
    font-weight: bold;
    color: #FFA800;
}
.boutique-game > .title i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    background-image: url('../images/star_icon_2.png');
}
.boutique-game .list {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 68px);
    justify-content: space-between;
    width: 100%;
}
.boutique-game .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.boutique-game .list .item .icon {
    width: 100%;
    height: 68px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.boutique-game .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.boutique-game .list .item .title {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.boutique-game .list .item .title:hover {
    color: #336AEA;
}
.boutique-game .list .item .score {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #4D4D4D;
}
.boutique-game .list .item .score::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/star_active.png');
}
.latest-news {
    display: flex;
    flex-direction: column;
}
.latest-news .wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
}
.main-layout .sidebar .latest-news .wrap {
    display: flex;
    flex-direction: column;
}
.latest-news .wrap .left {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.latest-news .wrap .left .list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.latest-news .wrap .left .list .item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 17px;
    border-bottom: 1px solid #F2F2F2;
}
.latest-news .wrap .left .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.latest-news .wrap .left .list .item .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-news .wrap .left .list .item .title:hover {
    color: #336AEA;
}
.latest-news .wrap .left .list .item .main {
    display: flex;
    gap: 15px;
}
.latest-news .wrap .left .list .item .main .thumbnail {
    width: 100px;
    height: 60px;
    flex-shrink: 0;
}
.latest-news .wrap .left .list .item .main .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-news .wrap .left .list .item .main .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60px;
    overflow: hidden;
}
.latest-news .wrap .left .list .item .main .content .description {
    font-size: 14px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-news .wrap .left .list .item .main .content .footer {
    display: flex;
    align-items: center;
    gap: 10px;
}
.latest-news .wrap .left .list .item .main .content .footer .time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999999;
    flex-shrink: 0;
}
.latest-news .wrap .left .list .item .main .content .footer .time::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon.png');
}
.latest-news .wrap .left .list .item .main .content .footer .tag {
    padding: 3px 6px;
    border: 1px solid #336AEA;
    font-size: 12px;
    color: #336AEA;
    line-height: 1;
    flex-shrink: 0;
}
.latest-news .wrap .right {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}
.latest-news .wrap .right .banner {
    width: 100%;
    height: 190px;
    position: relative;
}
.latest-news .wrap .right .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-news .wrap .right .banner .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    font-size: 16px;
    color: white;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-news .wrap .right .list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15.5px;
}
.latest-news .wrap .right .list .item {
    display: flex;
    align-items: center;
}
.latest-news .wrap .right .list .item .begin-marker {
    position: relative;
    display: flex;
    justify-content: center;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.latest-news .wrap .right .list .item:not(:last-child) .begin-marker::after {
    content: '';
    position: absolute;
    top: 9px;
    width: 1px;
    height: 22px;
    background-color: #E6E6E6;
}
.latest-news .wrap .right .list .item .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-news .wrap .right .list .item .title:hover {
    color: #336AEA;
}
.latest-news .wrap .right .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.home-game-download {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    margin-top: 20px;
    padding: 30px 20px 40px 20px;
}
.game-download {
    display: flex;
    flex-direction: column;
}
.game-download .wrap {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 21px;
}
.game-download .wrap .tabs {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.game-download .wrap .tabs div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #F8F8FA;
    font-size: 14px;
    color: #666666;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.game-download .wrap .tabs div:hover,
.game-download .wrap .tabs div.active {
    color: #336AEA;
    background-color: #fff;
}
.game-download .wrap .tabs div.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    flex-shrink: 0;
    width: 6px;
    height: 50px;
    background-size: 100% 100%;
    background-image: url('../images/tab_begin_marker.png');
}
.game-download .wrap > .content {
}
.game-download .wrap > .content .list {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.game-download .wrap > .content .list.active {
    display: grid;
}
.game-download .wrap > .content .list .item {
    display: flex;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 15px;
    border: 1px solid #EEEEEE;
    overflow: hidden;
    transition: all 0.2s;
}
.game-download .wrap > .content .list .item:hover {
    box-shadow: 0 4px 20px 0 #DFDFDF;
}
.game-download .wrap > .content .list .item .icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.game-download .wrap > .content .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-download .wrap > .content .list .item .content {
    display: flex;
    flex-direction: column;
    height: 70px;
    flex: 1;
    overflow: hidden;
}
.game-download .wrap > .content .list .item .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-download .wrap > .content .list .item .content .title:hover {
    color: #336AEA;
}
.game-download .wrap > .content .list .item .content .star-rating {
    margin-top: 8px;
}
.game-download .wrap > .content .list .item .content .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.game-download .wrap > .content .list .item .content .footer .score {
    font-size: 16px;
    color: #FF5C00;
    line-height: 1;
}
.game-download .wrap > .content .list .item .content .footer .download-button {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    background-image: url('../images/download_icon_1.png');
}
.game-download .wrap > .content .list .item .content .footer .download-button:hover {
    background-image: url('../images/download_icon_1_active.png');
}
.hot-game-recommend {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hot-game-recommend .banner {
    width: 100%;
    height: 130px;
}
.hot-game-recommend .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-game-recommend .list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 80px);
    justify-content: space-between;
    row-gap: 25px;
}
.hot-game-recommend .list .item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hot-game-recommend .list .item .icon {
    width: 100%;
    height: 80px;
    border-radius: 20px;
    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: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-recommend .list .item .title:hover {
    color: #336AEA;
}
.hot-game-recommend .list .item .description {
    margin-top: 6px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-recommend-2 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hot-game-recommend-2 .list {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    justify-content: space-between;
    row-gap: 20px;
}
.hot-game-recommend-2 .list .item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hot-game-recommend-2 .list .item .icon {
    width: 100%;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}
.hot-game-recommend-2 .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-game-recommend-2 .list .item .title {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-recommend-2 .list .item .title:hover {
    color: #336AEA;
}
.hot-game-recommend-2 .list .item .description {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 12px;
    color: #999999;
}
.hot-game-recommend-2 .list .item .description::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/hot_icon.png');
}
.home-game-strategy {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 30px 20px 40px 20px;
}
.game-strategy {
    display: flex;
    flex-direction: column;
}
.game-strategy .wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.game-strategy .game-strategy-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}
.game-strategy .game-strategy-list > .item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F2F2F2;
}
.game-strategy .game-strategy-list > .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.game-strategy .game-strategy-list > .item .thumbnail {
    width: 240px;
    height: 160px;
    flex-shrink: 0;
    position: relative;
}
.game-strategy .game-strategy-list > .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-strategy .game-strategy-list > .item .thumbnail .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0 15px;
    text-align: center;
    font-size: 14px;
    color: white;
    line-height: 34px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .game-strategy-list > .item .list {
    display: flex;
    flex-direction: column;
    gap: 13.5px;
    flex: 1;
    overflow: hidden;
}
.game-strategy .game-strategy-list > .item .list .item {
    display: flex;
    align-items: center;
}
.game-strategy .game-strategy-list > .item .list .item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.game-strategy .game-strategy-list > .item .list .item .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .game-strategy-list > .item .list .item .title:hover {
    color: #336AEA;
}
.game-strategy .game-strategy-list > .item .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.game-strategy .game-strategy-collection {
    display: grid;
    grid-template-columns: 180px 1fr;
    height: 361px;
    overflow: hidden;
}
.game-strategy .game-strategy-collection .strategy-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    overflow: hidden;
}
.game-strategy .game-strategy-collection .strategy-box .up-button,
.game-strategy .game-strategy-collection .strategy-box .down-button {
    flex-shrink: 0;
    width: 100%;
    height: 38px;
    background-color: #F3F3F5;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.game-strategy .game-strategy-collection .strategy-box .up-button {
    background-image: url('../images/up_arrow_1.png');
}
.game-strategy .game-strategy-collection .strategy-box .down-button {
    background-image: url('../images/down_arrow_1.png');
}
.game-strategy .game-strategy-collection .strategy-box .list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: auto;
}
.game-strategy .game-strategy-collection .strategy-box .list::-webkit-scrollbar {
    display: none;
}
.game-strategy .game-strategy-collection .strategy-box .list .item {
    flex-shrink: 0;
    width: 100%;
    height: 90px;
    position: relative;
}
.game-strategy .game-strategy-collection .strategy-box .list .item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-strategy .game-strategy-collection .strategy-box .list .item .content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 18px 15px 0 15px;
}
.game-strategy .game-strategy-collection .strategy-box .list .item:hover .content {
    visibility: visible;
    opacity: 1;
}
.game-strategy .game-strategy-collection .strategy-box .list .item .content .title {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .game-strategy-collection .strategy-box .list .item .content .detail-button {
    padding: 4px 6px;
    border: 1px solid #FF5C00;
    font-size: 12px;
    color: #FF5C00;
    line-height: 1;
}
.game-strategy .game-strategy-collection > .main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px 15px 20px 15px;
    border-top: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
}
.game-strategy .game-strategy-collection > .main .header {
    display: flex;
    gap: 20px;
}
.game-strategy .game-strategy-collection > .main .header .icon {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
}
.game-strategy .game-strategy-collection > .main .header .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-strategy .game-strategy-collection > .main .header .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90px;
    overflow: hidden;
}
.game-strategy .game-strategy-collection > .main .header .content .title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.game-strategy .game-strategy-collection > .main .header .content .title-wrap .title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .game-strategy-collection > .main .header .content .title-wrap .title:hover {
    color: #336AEA;
}
.game-strategy .game-strategy-collection > .main .header .content .tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
}
.game-strategy .game-strategy-collection > .main .header .content .tags div {
    padding: 3px 5px;
    border: 1px solid #336AEA;
    font-size: 12px;
    color: #336AEA;
    line-height: 1;
    flex-shrink: 0;
}
.game-strategy .game-strategy-collection > .main .header .content .description {
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .game-strategy-collection > .main .strategy-collection {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
.game-strategy .game-strategy-collection > .main .strategy-collection > .title {
    display: flex;
    align-items: center;
    width: 100%;
    height: 32px;
    background-color: #F3F6FD;
    padding: 0 10px;
}
.game-strategy .game-strategy-collection > .main .strategy-collection > .title::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-color: #336AEA;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/star_icon_3.png');
}
.game-strategy .game-strategy-collection > .main .strategy-collection > .title span {
    font-size: 14px;
    font-weight: bold;
    color: #333333;
}
.game-strategy .game-strategy-collection > .main .strategy-collection > .title span:nth-child(1) {
    margin-left: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .game-strategy-collection > .main .strategy-collection > .title span:nth-child(2) {
    flex-shrink: 0;
}
.game-strategy .game-strategy-collection > .main .strategy-collection .list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.game-strategy .game-strategy-collection > .main .strategy-collection .list .item {
    display: flex;
    align-items: center;
}
.game-strategy .game-strategy-collection > .main .strategy-collection .list .item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.game-strategy .game-strategy-collection > .main .strategy-collection .list .item .title {
    margin-left: 12px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .game-strategy-collection > .main .strategy-collection .list .item .title:hover {
    color: #336AEA;
}
.game-strategy .game-strategy-collection > .main .strategy-collection .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.game-strategy .game-strategy-cards {
    display: grid;
    grid-template-columns: repeat(2, 274px);
    justify-content: space-between;
    row-gap: 22px;
}
.game-strategy .game-strategy-cards .item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 20px;
    border: 1px solid #EBEBED;
}
.game-strategy .game-strategy-cards .item .thumbnail {
    width: 100%;
    height: 130px;
    flex-shrink: 0;
}
.game-strategy .game-strategy-cards .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-strategy .game-strategy-cards .item .title {
    margin-top: 14px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .game-strategy-cards .item .title:hover {
    color: #336AEA;
}
.game-strategy .game-strategy-cards .item .description {
    margin-top: 19px;
    flex-shrink: 0;
    width: 100%;
    height: 90px;
    background-size: 100% 100%;
    background-image: url('../images/text_box_1.png');
    padding: 23px 15px;
}
.game-strategy .game-strategy-cards .item .description span {
    font-size: 12px;
    color: #999999;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-strategy .game-strategy-cards .item .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}
.game-strategy .game-strategy-cards .item .footer > div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999999;
}
.game-strategy .game-strategy-cards .item .footer .editor::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/user_icon_2.png');
}
.game-strategy .game-strategy-cards .item .footer .time::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon_2.png');
}
.home-new-game-recommend {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 20px 20px 40px 20px;
    background: linear-gradient(to bottom, #FFF3E0, white 25%);
    position: relative;
}
.home-new-game-recommend::before {
    content: '';
    position: absolute;
    top: 89px;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #CCCCCC;
}
.home-new-game-recommend > .title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}
.home-new-game-recommend > .title::after {
    content: '';
    flex-shrink: 0;
    width: 60px;
    height: 40px;
    background-size: 100% 100%;
    background-image: url('../images/new_tag.png');
}
.home-new-game-recommend .list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    z-index: 1;
}
.home-new-game-recommend .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.home-new-game-recommend .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-image: url('../images/step_point.png');
}
.home-new-game-recommend .list .item .time {
    margin-top: 10px;
    font-size: 16px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-new-game-recommend .list .item .content {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: #F8F8FA;
}
.home-new-game-recommend .list .item .content .icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
}
.home-new-game-recommend .list .item .content .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-new-game-recommend .list .item .content .title {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-new-game-recommend .list .item .content .title:hover {
    color: #336AEA;
}
.home-new-game-recommend .list .item .content .type {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-evaluation {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
    padding: 30px 20px 40px 20px;
}
.home-evaluation > div:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
}
.home-game-evaluation {
    display: flex;
    flex-direction: column;
}
.home-game-evaluation .wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
}
.home-game-evaluation .wrap .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.home-game-evaluation .wrap .cards .item {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 20px 0 #DFDFDF;
    border: 1px solid #E6E6E6;
    transition: all 0.2s;
}
.home-game-evaluation .wrap .cards .item:hover {
    transform: translateY(-5px);
}
.home-game-evaluation .wrap .cards .item .thumbnail {
    width: 250px;
    height: 130px;
    object-fit: cover;
    flex-shrink: 0;
}
.home-game-evaluation .wrap .cards .item .remark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    width: 100%;
    height: 40px;
}
.home-game-evaluation .wrap .cards .item .remark .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-game-evaluation .wrap .cards .item .remark .score {
    width: 34px;
    text-align: center;
    font-size: 12px;
    color: #FF5C00;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}
.home-game-evaluation .wrap .cards .item .remark .score::first-letter {
    font-size: 18px;
}
.home-game-evaluation .wrap .cards .item .remark .score::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: #FFDCC8;
}
.home-game-evaluation .wrap .list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}
.home-game-evaluation .wrap .list .item {
    display: flex;
    align-items: center;
}
.home-game-evaluation .wrap .list .item .tag {
    padding: 4px 6px;
    background-color: #336AEA;
    font-size: 12px;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}
.home-game-evaluation .wrap .list .item .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-game-evaluation .wrap .list .item .title:hover {
    color: #336AEA;
}
.home-game-evaluation .wrap .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.new-game-dynamic {
    display: flex;
    flex-direction: column;
}
.new-game-dynamic .wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.new-game-dynamic .wrap .left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}
.new-game-dynamic .wrap .left .banner {
    width: 100%;
    height: 170px;
    flex-shrink: 0;
    position: relative;
}
.new-game-dynamic .wrap .left .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-game-dynamic .wrap .left .banner .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 15px;
    text-align: center;
    font-size: 16px;
    color: white;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: rgba(0, 0, 0, 0.7);
}
.new-game-dynamic .wrap .left .list {
    display: flex;
    flex-direction: column;
    gap: 12.9px;
}
.new-game-dynamic .wrap .left .list .item {
    display: flex;
    align-items: center;
}
.new-game-dynamic .wrap .left .list .item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.new-game-dynamic .wrap .left .list .item .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-game-dynamic .wrap .left .list .item .title:hover {
    color: #336AEA;
}
.new-game-dynamic .wrap .left .list .item .read-number {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999999;
}
.new-game-dynamic .wrap .left .list .item .read-number::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    background-image: url('../images/eye_icon.png');
}
.new-game-dynamic .wrap .right {
    overflow: hidden;
}
.new-game-dynamic .wrap .right .list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.new-game-dynamic .wrap .right .list .item {
    display: flex;
    gap: 15px;
}
.new-game-dynamic .wrap .right .list .item .thumbnail {
    width: 130px;
    height: 80px;
    flex-shrink: 0;
}
.new-game-dynamic .wrap .right .list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-game-dynamic .wrap .right .list .item .content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.new-game-dynamic .wrap .right .list .item .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-game-dynamic .wrap .right .list .item .content .title:hover {
    color: #336AEA;
}
.new-game-dynamic .wrap .right .list .item .content .description {
    margin-top: 7px;
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-game-dynamic .wrap .right .list .item .content .time {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999999;
}
.new-game-dynamic .wrap .right .list .item .content .time::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon.png');
}
.game-gift {
    display: flex;
    flex-direction: column;
}
.game-gift .list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.game-gift .list .item {
    display: flex;
    height: 80px;
    border-radius: 15px 0 0 15px;
    background-color: #F8F8FA;
    overflow: hidden;
}
.game-gift .list .item .icon {
    width: 80px;
    height: 80px;
    border-radius: 0 15px 15px 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: 12px 12px 12px 15px;
    flex: 1;
    overflow: hidden;
}
.game-gift .list .item .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-gift .list .item .content .title:hover {
    color: #336AEA;
}
.game-gift .list .item .content .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.game-gift .list .item .content .footer .description {
    font-size: 12px;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-gift .list .item .content .footer .receive-button {
    flex-shrink: 0;
    padding: 8.5px 16px;
    border-radius: 2px;
    background-color: #336AEA;
    font-size: 14px;
    color: white;
    line-height: 1;
}
.home-game-album {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 30px 20px 40px 20px;
}
.home-game-album .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.home-game-album .list .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background-color: #F8F8FA;
    padding: 20px 25px;
    overflow: hidden;
}
.home-game-album .list .item .content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.home-game-album .list .item .content .title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-game-album .list .item .content .title:hover {
    color: #336AEA;
}
.home-game-album .list .item .content .description {
    margin-top: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999999;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-game-album .list .item .content .description .divider {
    margin: 0 4px;
}
.home-game-album .list .item .content .description .time {
    display: flex;
    align-items: center;
    gap: 4px;
}
.home-game-album .list .item .content .description .time::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon.png');
}
.home-game-album .list .item .content .detail-button {
    align-self: flex-start;
    margin-top: 17px;
    padding: 8px 12px;
    border-radius: 2px;
    background-color: #336AEA;
    font-size: 14px;
    color: white;
    line-height: 1;
}
.home-game-album .list .item .children {
    display: grid;
    grid-template:
            "a b d" 42px
            "a c e" 42px / 94px 42px 42px;
    gap: 10px;
}
.home-game-album .list .item .children a {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.home-game-album .list .item .children a:nth-child(1) {
    grid-area: a;
    border-radius: 20px;
}
.home-game-album .list .item .children a:nth-child(2) {
    grid-area: b;
}
.home-game-album .list .item .children a:nth-child(3) {
    grid-area: c;
}
.home-game-album .list .item .children a:nth-child(4) {
    grid-area: d;
}
.home-game-album .list .item .children a:nth-child(5) {
    grid-area: e;
}
.home-game-album .list .item .children a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-selected-news {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
    padding: 30px 20px 40px 20px;
}
.home-selected-news > div:nth-child(1) {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
}
.game-video {
    display: flex;
    flex-direction: column;
}
.game-video .wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.main-layout .sidebar .game-video .wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.game-video .wrap .left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
    overflow: hidden;
}
.main-layout .sidebar .game-video .wrap .left {
    gap: 20px;
}
.game-video .wrap .left .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    overflow: hidden;
}
.game-video .wrap .left .item .thumbnail {
    width: 100%;
    height: 100px;
    flex-shrink: 0;
    position: relative;
}
.game-video .wrap .left .item .thumbnail::before {
    content: '';
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/play_icon.png');
}
.game-video .wrap .left .item .thumbnail:hover::before {
    visibility: visible;
    opacity: 1;
}
.game-video .wrap .left .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-video .wrap .left .item .title {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-video .wrap .left .item .title:hover {
    color: #336AEA;
}
.game-video .wrap .right {
    display: flex;
    flex-direction: column;
    gap: 13.3px;
    overflow: hidden;
}
.game-video .wrap .right .item {
    display: flex;
    align-items: center;
}
.game-video .wrap .right .item::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.game-video .wrap .right .item .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-video .wrap .right .item .title:hover {
    color: #336AEA;
}
.game-video .wrap .right .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.news-ranking {
    display: flex;
    flex-direction: column;
}
.news-ranking .top-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-ranking .top-list .item {
    display: flex;
    gap: 15px;
}
.news-ranking .top-list .item .thumbnail {
    width: 140px;
    height: 80px;
    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: 20px;
    height: 20px;
    background-color: #336AEA;
    font-size: 12px;
    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: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-ranking .top-list .item .content .title:hover {
    color: #336AEA;
}
.news-ranking .top-list .item .content .description {
    margin-top: 8px;
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-ranking .top-list .item .content .time {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999999;
}
.news-ranking .top-list .item .content .time::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon.png');
}
.news-ranking .list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
.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: 20px;
    height: 20px;
    background-color: #F0F0F0;
    font-size: 12px;
    color: #999999;
    line-height: 1;
}
.news-ranking .list .item .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-ranking .list .item .title:hover {
    color: #336AEA;
}
.news-ranking .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 12px;
    color: #999999;
}
.selected-news {
    display: flex;
    flex-direction: column;
}
.selected-news .list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}
.selected-news .list .item {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 20px 0 #DFDFDF;
    border: 1px solid #E6E6E6;
    transition: all 0.2s;
}
.selected-news .list .item:hover {
    transform: translateY(-5px);
}
.selected-news .list .item .thumbnail {
    width: 100%;
    height: 110px;
    flex-shrink: 0;
}
.selected-news .list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.selected-news .list .item .content {
    display: flex;
    flex-direction: column;
    padding: 10px 15px 16px 15px;
    overflow: hidden;
}
.selected-news .list .item .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-news .list .item .content .title:hover {
    color: #336AEA;
}
.selected-news .list .item .content .footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999999;
}
.selected-news .list .item .content .footer .hits {
    display: flex;
    align-items: center;
    gap: 4px;
}
.selected-news .list .item .content .footer .hits::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/hot_icon.png');
}
.selected-news .list .item .content .footer .editor {
    display: flex;
    align-items: center;
    gap: 4px;
}
.selected-news .list .item .content .footer .editor::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/user_icon_1.png');
}
.hot-app-label {
    display: flex;
    flex-direction: column;
}
.hot-app-label .tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.hot-app-label .tags a {
    width: 100%;
    padding: 0 15px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    font-size: 12px;
    line-height: 36px;
    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: 10px;
    height: 10px;
}
.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, 80px);
    justify-content: space-between;
    row-gap: 20px;
    margin-top: 28px;
}
.home-game-download .hot-app-label .list {
    row-gap: 25px;
}
.hot-app-label .list .item {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}
.hot-app-label .list .item .icon {
    width: 100%;
    height: 80px;
    border-radius: 20px;
    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: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-app-label .list .item .title:hover {
    color: #336AEA;
}
.hot-app-label .list .item .size {
    margin-top: 6px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-game-picture {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 30px 20px 40px 20px;
}
.home-game-picture .wrap {
    display: grid;
    grid-template:
            "a b c d" 190px
            "a e f f" 210px / 260fr 430fr 240fr 230fr;
    gap: 8px;
}
.home-game-picture .wrap .item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.home-game-picture .wrap .item:nth-child(1) {
    grid-area: a;
}
.home-game-picture .wrap .item:nth-child(2) {
    grid-area: b;
}
.home-game-picture .wrap .item:nth-child(3) {
    grid-area: c;
}
.home-game-picture .wrap .item:nth-child(4) {
    grid-area: d;
}
.home-game-picture .wrap .item:nth-child(5) {
    grid-area: e;
}
.home-game-picture .wrap .item:nth-child(6) {
    grid-area: f;
}
.home-game-picture .wrap .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.home-game-picture .wrap .item:hover img {
    transform: scale(1.3);
}
.home-industry-news {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    margin-top: 20px;
    padding: 30px 20px 40px 20px;
}
.industry-news {
    display: flex;
    flex-direction: column;
}
.industry-news .wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.industry-news .wrap .thumbnail {
    width: 100%;
    height: 230px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.industry-news .wrap .thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background-size: 100% 100%;
    background-image: url('../images/crown_tag.png');
}
.industry-news .wrap .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.industry-news .wrap .thumbnail .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    color: white;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.industry-news .wrap ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}
.industry-news .wrap ul li {
    display: flex;
    align-items: center;
}
.industry-news .wrap ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.industry-news .wrap ul li .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.industry-news .wrap ul li .title:hover {
    color: #336AEA;
}
.industry-news .wrap ul li .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.industry-news-2 {
    display: flex;
    flex-direction: column;
}
.industry-news-2 .banner {
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.industry-news-2 .banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background-size: 100% 100%;
    background-image: url('../images/crown_tag.png');
}
.industry-news-2 .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.industry-news-2 .banner .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    color: white;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.industry-news-2 ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    overflow: hidden;
}
.industry-news-2 ul li {
    display: flex;
    align-items: center;
}
.industry-news-2 ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}
.industry-news-2 ul li .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.industry-news-2 ul li .title:hover {
    color: #336AEA;
}
.industry-news-2 ul li .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.industry-news-2 .thumbnail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.industry-news-2 .thumbnail-list .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}
.industry-news-2 .thumbnail-list .item .thumbnail {
    width: 100%;
    height: 100px;
    flex-shrink: 0;
}
.industry-news-2 .thumbnail-list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.industry-news-2 .thumbnail-list .item .title {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.industry-news-2 .thumbnail-list .item .title:hover {
    color: #336AEA;
}
.selected-game {
    display: flex;
    flex-direction: column;
}
.selected-game .list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.selected-game .list .item {
    display: flex;
}
.selected-game .list .item .icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}
.selected-game .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.selected-game .list .item .content {
    margin-left: 15px;
    margin-right: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60px;
    overflow: hidden;
}
.selected-game .list .item .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-game .list .item .content .title:hover {
    color: #336AEA;
}
.selected-game .list .item .content .description {
    font-size: 12px;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-game .list .item .download {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 60px;
    overflow: hidden;
}
.selected-game .list .item .download .platform {
    display: flex;
    align-items: center;
    gap: 4px;
}
.selected-game .list .item .download .platform .android {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-image: url('../images/android_icon_1.png');
}
.selected-game .list .item .download .platform .ios {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-image: url('../images/ios_icon_1.png');
}
.selected-game .list .item .download .download-button {
    padding: 8px 20px;
    border: 1px solid #336AEA;
    border-radius: 2px;
    font-size: 14px;
    color: #336AEA;
    line-height: 1;
    transition: all 0.2s;
}
.selected-game .list .item .download .download-button:hover {
    color: white;
    background-color: #336AEA;
}
.selected-game-2 {
    display: flex;
    flex-direction: column;
}
.selected-game-2 .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
    gap: 16px;
}
.selected-game-2 .list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 20px 15px;
    background-color: #F8F8FA;
}
.selected-game-2 .list .item .content {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 118px;
    position: relative;
}
.selected-game-2 .list .item .content .plain {
    visibility: visible;
    opacity: 1;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: all 0.4s;
}
.selected-game-2 .list .item:hover .content .plain {
    visibility: hidden;
    opacity: 0;
}
.selected-game-2 .list .item .content .plain .icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.selected-game-2 .list .item .content .plain .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.selected-game-2 .list .item .content .plain .title {
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-game-2 .list .item .content .plain .title:hover {
    color: #336AEA;
}
.selected-game-2 .list .item .content .detail {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 0;
    transition: all 0.4s;
    overflow: hidden;
}
.selected-game-2 .list .item:hover .content .detail {
    height: 100%;
}
.selected-game-2 .list .item .content .detail .title {
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}
.selected-game-2 .list .item .content .detail .title:hover {
    color: #336AEA;
}
.selected-game-2 .list .item .content .detail .description {
    font-size: 12px;
    color: #666666;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}
.selected-game-2 .list .item .download-button {
    margin-top: auto;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 32px;
    background-color: #336AEA;
    border-radius: 2px;
    font-size: 14px;
    color: white;
}
.home-rankings {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 30px 20px 40px 20px;
}
.home-rankings .wrap {
    display: grid;
    grid-template-columns: repeat(3, 370px);
    justify-content: space-between;
}
.home-rankings .wrap .ranking {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.home-rankings .wrap .ranking > .title {
    z-index: 1;
    flex-shrink: 0;
    width: 100%;
    height: 100px;
    background-size: 100% 100%;
}
.home-rankings .wrap .ranking:nth-child(1) > .title {
    background-image: url('../images/ranking_title_1.png');
}
.home-rankings .wrap .ranking:nth-child(2) > .title {
    background-image: url('../images/ranking_title_2.png');
}
.home-rankings .wrap .ranking:nth-child(3) > .title {
    background-image: url('../images/ranking_title_3.png');
}
.home-rankings .wrap .ranking .list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(100% - 10px);
    margin-top: -15px;
    padding: 38px 20px 27px 20px;
    border: 1px solid #E6E6E6;
}
.home-rankings .wrap .ranking .list .item {
    padding-bottom: 16px;
    border-bottom: 1px solid #F2F2F2;
}
.home-rankings .wrap .ranking .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.home-rankings .wrap .ranking .list .item .plain {
    display: flex;
    align-items: center;
}
.home-rankings .wrap .ranking .list .item.active .plain {
    display: none;
}
.home-rankings .wrap .ranking .list .item .serial-number {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #F0F0F0;
    font-size: 12px;
    color: #999999;
    line-height: 1;
}
.home-rankings .wrap .ranking:nth-child(1) .list .item:nth-child(1) .serial-number {
    color: white;
    background-color: #FF9E2C;
}
.home-rankings .wrap .ranking:nth-child(1) .list .item:nth-child(2) .serial-number {
    color: white;
    background-color: rgba(255, 158, 44, 0.6);
}
.home-rankings .wrap .ranking:nth-child(1) .list .item:nth-child(3) .serial-number {
    color: white;
    background-color: rgba(255, 158, 44, 0.4);
}
.home-rankings .wrap .ranking:nth-child(2) .list .item:nth-child(1) .serial-number {
    color: white;
    background-color: #2CA6FF;
}
.home-rankings .wrap .ranking:nth-child(2) .list .item:nth-child(2) .serial-number {
    color: white;
    background-color: rgba(44, 166, 255, 0.6);
}
.home-rankings .wrap .ranking:nth-child(2) .list .item:nth-child(3) .serial-number {
    color: white;
    background-color: rgba(44, 166, 255, 0.4);
}
.home-rankings .wrap .ranking:nth-child(3) .list .item:nth-child(1) .serial-number {
    color: white;
    background-color: #F84B4B;
}
.home-rankings .wrap .ranking:nth-child(3) .list .item:nth-child(2) .serial-number {
    color: white;
    background-color: rgba(248, 75, 75, 0.6);
}
.home-rankings .wrap .ranking:nth-child(3) .list .item:nth-child(3) .serial-number {
    color: white;
    background-color: rgba(248, 75, 75, 0.4);
}
.home-rankings .wrap .ranking .list .item .plain .title {
    margin-left: 15px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-rankings .wrap .ranking .list .item .plain .title:hover {
    color: #336AEA;
}
.home-rankings .wrap .ranking .list .item .plain .star-rating {
    margin-left: auto;
}
.home-rankings .wrap .ranking .list .item .detail {
    display: none;
    align-items: center;
}
.home-rankings .wrap .ranking .list .item.active .detail {
    display: flex;
}
.home-rankings .wrap .ranking .list .item .detail .icon {
    margin-left: 15px;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    overflow: hidden;
}
.home-rankings .wrap .ranking .list .item .detail .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-rankings .wrap .ranking .list .item .detail .content {
    margin-left: 15px;
    margin-right: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}
.home-rankings .wrap .ranking .list .item .detail .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-rankings .wrap .ranking .list .item .detail .content .title:hover {
    color: #336AEA;
}
.home-rankings .wrap .ranking .list .item .detail .content .description {
    font-size: 12px;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-rankings .wrap .ranking .list .item .detail .download-button {
    margin-left: auto;
    flex-shrink: 0;
    padding: 9px 20px;
    border-radius: 2px;
    font-size: 14px;
    color: white;
    line-height: 1;
}
.home-rankings .wrap .ranking:nth-child(1) .list .item .detail .download-button {
    background-color: #FF9E2C;
}
.home-rankings .wrap .ranking:nth-child(2) .list .item .detail .download-button {
    background-color: #2CA6FF;
}
.home-rankings .wrap .ranking:nth-child(3) .list .item .detail .download-button {
    background-color: #F84B4B;
}
.home-friendly-links {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 30px 20px 40px 20px;
}
.home-friendly-links .list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 15px;
}
.home-friendly-links .list .item {
    display: flex;
    align-items: center;
}
.home-friendly-links .list .item a {
    font-size: 14px;
    color: #666666;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-friendly-links .list .item a:hover {
    color: #336AEA;
}
.home-friendly-links .list .item:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 12px;
    margin: 0 24px;
    background-color: #E6E6E6;
}
.about-us {
    display: grid;
    grid-template-columns: 210px 1fr;
    margin-top: 20px;
    margin-bottom: 30px;
    min-height: 1000px;
}
.about-us > .tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 66px;
    background: linear-gradient(to bottom, #ECF2FF, transparent);
}
.about-us > .tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #DCE8FF;
    font-size: 18px;
    color: #4D4D4D;
    transition: all 0.2s;
    position: relative;
    z-index: 0;
}
.about-us > .tabs a:last-child {
    border-bottom: none;
}
.about-us > .tabs a:not(.active):hover {
    background-color: rgba(219, 230, 255, 0.8);
}
.about-us > .tabs a.active {
    color: white;
}
.about-us > .tabs a.active::before {
    content: '';
    position: absolute;
    top: -1.5px;
    left: 0;
    z-index: -1;
    width: 218px;
    height: 68px;
    background-size: 100% 100%;
    background-image: url('../images/side_tab_active_background.png');
}
.about-us > .content {
    display: flex;
    flex-direction: column;
    padding: 0 40px 40px 40px;
    overflow: hidden;
}
.about-us > .content .article {
    display: flex;
    flex-direction: column;
}
.about-us > .content .article p {
    font-size: 16px;
    color: #666666;
    line-height: 38px;
    white-space: pre-wrap;
}
.about-us > .content .article img {
    display: block;
    margin: 10px auto;
}
.about-us > .content .website-map {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.about-us > .content .website-map .category {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.about-us > .content .website-map .category .title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    line-height: 1;
}
.about-us > .content .website-map .category .title::before {
    content: '';
    width: 3px;
    height: 18px;
    background-color: #336AEA;
    flex-shrink: 0;
}
.about-us > .content .website-map .category .content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 20px;
}
.about-us > .content .website-map .category .content a {
    padding: 14px 24px;
    background-color: #F8F8FA;
    border-radius: 99px;
    font-size: 14px;
    color: #333333;
    line-height: 1;
    transition: all 0.2s;
}
.about-us > .content .website-map .category .content a:hover {
    color: white;
    background-color: #336AEA;
}
.news-list-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 40px 20px;
}
.news-list-tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #F8F8FA;
    margin-bottom: 20px;
}
.news-list-tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    font-size: 14px;
    color: #666666;
    transition: all 0.2s;
    position: relative;
}
.news-list-tabs a:hover,
.news-list-tabs a.active {
    color: #336AEA;
    background-color: #fff;
}
.news-list-tabs a.active {
    border-top: 2px solid #336AEA;
}
.news-list-tabs a.active::before {
    content: '';
    position: absolute;
    top: 0;
    border: 4px solid transparent;
    border-top: 4px solid #336AEA;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-list .item {
    display: flex;
}
.news-list .item .thumbnail {
    width: 220px;
    height: 140px;
    flex-shrink: 0;
}
.news-list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-list .item .content {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    border: 1px solid #F5F5F7;
    border-left: none;
    flex: 1;
    overflow: hidden;
}
.news-list .item:hover .content {
    background-color: #F5F5F7;
}
.news-list .item .content .title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list .item .content .title:hover {
    color: #336AEA;
}
.news-list .item .content .description {
    margin-top: 16px;
    font-size: 14px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list .item .content .footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.news-list .item .content .footer .time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999999;
    line-height: 1;
}
.news-list .item .content .footer .time::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon.png');
}
.news-list .item .content .footer .detail-button {
    padding: 4px 11px;
    border: 1px solid #336AEA;
    border-radius: 2px;
    font-size: 12px;
    color: #336AEA;
    line-height: 1;
    transition: all 0.2s;
}
.news-list .item .content .footer .detail-button:hover {
    color: white;
    background-color: #336AEA;
}
.hot-game-ranking {
    display: flex;
    flex-direction: column;
}
.hot-game-ranking .list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hot-game-ranking .list .item {
    padding-bottom: 12px;
    border-bottom: 1px solid #F2F2F2;
}
.hot-game-ranking .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.hot-game-ranking .list .item .plain {
    display: flex;
    align-items: center;
}
.hot-game-ranking .list .item.active .plain {
    display: none;
}
.hot-game-ranking .list .item .plain .serial-number {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #B3B3B3;
    font-size: 12px;
    color: #B3B3B3;
    line-height: 1;
}
.hot-game-ranking .list .item:nth-child(-n+3) .plain .serial-number {
    color: #336AEA;
    border: 1px solid #336AEA;
}
.hot-game-ranking .list .item .plain .title {
    margin-left: 15px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking .list .item .plain .title:hover {
    color: #336AEA;
}
.hot-game-ranking .list .item .plain .star-rating {
    margin-left: auto;
}
.hot-game-ranking .list .item .detail {
    display: none;
}
.hot-game-ranking .list .item.active .detail {
    display: flex;
}
.hot-game-ranking .list .item .detail .serial-number {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    background-color: #336AEA;
    font-size: 12px;
    color: white;
    line-height: 1;
}
.hot-game-ranking .list .item .detail .icon {
    margin-left: 15px;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.hot-game-ranking .list .item .detail .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-game-ranking .list .item .detail .content {
    margin-left: 15px;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.hot-game-ranking .list .item .detail .content .top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.hot-game-ranking .list .item .detail .content .top .title {
    font-size: 15px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking .list .item .detail .content .top .title:hover {
    color: #336AEA;
}
.hot-game-ranking .list .item .detail .content .top .download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 32px;
    background-color: #336AEA;
    border-radius: 2px;
    font-size: 14px;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}
.hot-game-ranking .list .item .detail .content .middle {
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hot-game-ranking .list .item .detail .content .middle .score {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #FF5C00;
    line-height: 1;
}
.hot-game-ranking .list .item .detail .content .middle .score::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/star_active.png');
}
.hot-game-ranking .list .item .detail .content .middle .type {
    font-size: 12px;
    color: #999999;
}
.hot-game-ranking .list .item .detail .content .bottom {
    margin-top: auto;
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking-2 {
    display: flex;
    flex-direction: column;
}
.hot-game-ranking-2 .list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hot-game-ranking-2 .list .item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F2F2F2;
}
.hot-game-ranking-2 .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.hot-game-ranking-2 .list .item .icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    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: 80px;
    overflow: hidden;
}
.hot-game-ranking-2 .list .item .content .top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hot-game-ranking-2 .list .item .content .top .serial-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #D9D9D9;
    flex-shrink: 0;
    font-size: 12px;
    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: 15px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking-2 .list .item .content .top .title:hover {
    color: #336AEA;
}
.hot-game-ranking-2 .list .item .content .description {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hot-game-ranking-2 .list .item .content .description span {
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-game-ranking-2 .list .item .content .hits {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}
.hot-game-ranking-2 .list .item .content .hits::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/hot_icon.png');
}
.game-evaluation {
    display: flex;
    flex-direction: column;
}
.game-evaluation .list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.game-evaluation .list .item {
    display: flex;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid #F2F2F2;
}
.game-evaluation .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.game-evaluation .list .item .thumbnail {
    width: 140px;
    height: 80px;
    flex-shrink: 0;
}
.game-evaluation .list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-evaluation .list .item .content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}
.game-evaluation .list .item .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-evaluation .list .item .content .title:hover {
    color: #336AEA;
}
.game-evaluation .list .item .content .description {
    margin-top: 7px;
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-evaluation .list .item .content .footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999999;
}
.game-evaluation .list .item .content .footer .editor {
    display: flex;
    align-items: center;
    gap: 4px;
}
.game-evaluation .list .item .content .footer .editor::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/user_icon_1.png');
}
.game-evaluation .list .item .content .footer .score {
    display: flex;
    align-items: center;
    gap: 4px;
}
.game-evaluation .list .item .content .footer .score::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/star_icon_4.png');
}
.news-detail-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 60px 20px;
}
.news-detail-article {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.news-detail-article .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    padding-bottom: 30px;
    border-bottom: 1px solid #F2F2F2;
}
.news-detail-article .header .title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    white-space: pre-wrap;
}
.news-detail-article .header .description {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 14px;
    color: #999999;
}
.news-detail-article .main {
    display: flex;
    flex-direction: column;
}
.news-detail-article .main p {
    padding: 15px 0;
    font-size: 16px;
    color: #666666;
    line-height: 38px;
    white-space: pre-wrap;
    text-indent: 2em;
}
.news-detail-article .main img {
    display: block;
    margin: 10px auto;
}
.related-read {
    display: flex;
    flex-direction: column;
}
.related-read .top-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.related-read .top-list .item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid #E6E6E6;
    position: relative;
    transition: all 0.2s;
}
.related-read .top-list .item:hover {
    background-color: #fff;
    box-shadow: 0 4px 20px 0 #DFDFDF;
}
.related-read .top-list .item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    flex-shrink: 0;
}
.related-read .top-list .item .tag {
    position: absolute;
    top: 8px;
    left: -6px;
    width: 56px;
    height: 20px;
    background-size: 100% 100%;
    background-image: url('../images/tag_background_1.png');
    display: flex;
    align-items: center;
    padding-left: 13.5px;
    font-size: 12px;
    color: white;
}
.related-read .top-list .item .title {
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    color: #333333;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-read .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 12px;
    margin-top: 30px;
}
.related-read .list .item {
    display: flex;
    align-items: center;
    min-width: 0;
    padding-bottom: 12px;
    border-bottom: 1px dashed #F2F2F2;
}
.related-read .list .item:nth-child(2n+1) {
    padding-right: 20px;
}
.related-read .list .item:nth-child(2n+2) {
    padding-left: 20px;
}
.related-read .list .item:nth-last-child(-n+2) {
    padding-bottom: 0;
    border-bottom: none;
}
.related-read .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.related-read .list .item .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-read .list .item .title:hover {
    color: #336AEA;
}
.related-read .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.today-recommend {
    display: flex;
    flex-direction: column;
}
.today-recommend .list {
    display: grid;
    grid-template-columns: repeat(7, 80px);
    justify-content: space-between;
}
.today-recommend .list .item {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.today-recommend .list .item .icon {
    width: 100%;
    height: 80px;
    border-radius: 20px;
    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: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.today-recommend .list .item .title:hover {
    color: #336AEA;
}
.today-recommend .list .item .download-button {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    border: 1px solid #336AEA;
    border-radius: 2px;
    font-size: 14px;
    color: #336AEA;
    line-height: 1;
    transition: all 0.2s;
}
.today-recommend .list .item .download-button:hover {
    color: white;
    background-color: #336AEA;
}
.download-list-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 40px 20px;
}
.download-list-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.download-list-tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 124px;
    height: 44px;
    padding: 0 10px;
    background-color: #F8F8FA;
    font-size: 14px;
    color: #666666;
    transition: all 0.2s;
}
.download-list-tabs a:hover,
.download-list-tabs a.active {
    color: white;
    background-color: #336AEA;
}
.download-list-tabs a::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
}
.download-list-tabs.game a:nth-child(1)::before {
    background-image: url('../images/category_icon/game_icon_1.png');
}
.download-list-tabs.game a:hover:nth-child(1)::before,
.download-list-tabs.game a.active:nth-child(1)::before {
    background-image: url('../images/category_icon/game_icon_1_active.png');
}
.download-list-tabs.game a:nth-child(14n+2)::before {
    background-image: url('../images/category_icon/game_icon_2.png');
}
.download-list-tabs.game a:hover:nth-child(14n+2)::before,
.download-list-tabs.game a.active:nth-child(14n+2)::before {
    background-image: url('../images/category_icon/game_icon_2_active.png');
}
.download-list-tabs.game a:nth-child(14n+3)::before {
    background-image: url('../images/category_icon/game_icon_3.png');
}
.download-list-tabs.game a:hover:nth-child(14n+3)::before,
.download-list-tabs.game a.active:nth-child(14n+3)::before {
    background-image: url('../images/category_icon/game_icon_3_active.png');
}
.download-list-tabs.game a:nth-child(14n+4)::before {
    background-image: url('../images/category_icon/game_icon_4.png');
}
.download-list-tabs.game a:hover:nth-child(14n+4)::before,
.download-list-tabs.game a.active:nth-child(14n+4)::before {
    background-image: url('../images/category_icon/game_icon_4_active.png');
}
.download-list-tabs.game a:nth-child(14n+5)::before {
    background-image: url('../images/category_icon/game_icon_5.png');
}
.download-list-tabs.game a:hover:nth-child(14n+5)::before,
.download-list-tabs.game a.active:nth-child(14n+5)::before {
    background-image: url('../images/category_icon/game_icon_5_active.png');
}
.download-list-tabs.game a:nth-child(14n+6)::before {
    background-image: url('../images/category_icon/game_icon_6.png');
}
.download-list-tabs.game a:hover:nth-child(14n+6)::before,
.download-list-tabs.game a.active:nth-child(14n+6)::before {
    background-image: url('../images/category_icon/game_icon_6_active.png');
}
.download-list-tabs.game a:nth-child(14n+7)::before {
    background-image: url('../images/category_icon/game_icon_7.png');
}
.download-list-tabs.game a:hover:nth-child(14n+7)::before,
.download-list-tabs.game a.active:nth-child(14n+7)::before {
    background-image: url('../images/category_icon/game_icon_7_active.png');
}
.download-list-tabs.game a:nth-child(14n+8)::before {
    background-image: url('../images/category_icon/game_icon_8.png');
}
.download-list-tabs.game a:hover:nth-child(14n+8)::before,
.download-list-tabs.game a.active:nth-child(14n+8)::before {
    background-image: url('../images/category_icon/game_icon_8_active.png');
}
.download-list-tabs.game a:nth-child(14n+9)::before {
    background-image: url('../images/category_icon/game_icon_9.png');
}
.download-list-tabs.game a:hover:nth-child(14n+9)::before,
.download-list-tabs.game a.active:nth-child(14n+9)::before {
    background-image: url('../images/category_icon/game_icon_9_active.png');
}
.download-list-tabs.game a:nth-child(14n+10)::before {
    background-image: url('../images/category_icon/game_icon_10.png');
}
.download-list-tabs.game a:hover:nth-child(14n+10)::before,
.download-list-tabs.game a.active:nth-child(14n+10)::before {
    background-image: url('../images/category_icon/game_icon_10_active.png');
}
.download-list-tabs.game a:nth-child(14n+11)::before {
    background-image: url('../images/category_icon/game_icon_11.png');
}
.download-list-tabs.game a:hover:nth-child(14n+11)::before,
.download-list-tabs.game a.active:nth-child(14n+11)::before {
    background-image: url('../images/category_icon/game_icon_11_active.png');
}
.download-list-tabs.game a:nth-child(14n+12)::before {
    background-image: url('../images/category_icon/game_icon_12.png');
}
.download-list-tabs.game a:hover:nth-child(14n+12)::before,
.download-list-tabs.game a.active:nth-child(14n+12)::before {
    background-image: url('../images/category_icon/game_icon_12_active.png');
}
.download-list-tabs.game a:nth-child(14n+13)::before {
    background-image: url('../images/category_icon/game_icon_13.png');
}
.download-list-tabs.game a:hover:nth-child(14n+13)::before,
.download-list-tabs.game a.active:nth-child(14n+13)::before {
    background-image: url('../images/category_icon/game_icon_13_active.png');
}
.download-list-tabs.game a:nth-child(14n+14)::before {
    background-image: url('../images/category_icon/game_icon_14.png');
}
.download-list-tabs.game a:hover:nth-child(14n+14)::before,
.download-list-tabs.game a.active:nth-child(14n+14)::before {
    background-image: url('../images/category_icon/game_icon_14_active.png');
}
.download-list-tabs.game a:nth-child(14n+15)::before {
    background-image: url('../images/category_icon/game_icon_15.png');
}
.download-list-tabs.game a:hover:nth-child(14n+15)::before,
.download-list-tabs.game a.active:nth-child(14n+15)::before {
    background-image: url('../images/category_icon/game_icon_15_active.png');
}
.download-list-tabs.app a:nth-child(1)::before {
    background-image: url('../images/category_icon/app_icon_1.png');
}
.download-list-tabs.app a:hover:nth-child(1)::before,
.download-list-tabs.app a.active:nth-child(1)::before {
    background-image: url('../images/category_icon/app_icon_1_active.png');
}
.download-list-tabs.app a:nth-child(13n+2)::before {
    background-image: url('../images/category_icon/app_icon_2.png');
}
.download-list-tabs.app a:hover:nth-child(13n+2)::before,
.download-list-tabs.app a.active:nth-child(13n+2)::before {
    background-image: url('../images/category_icon/app_icon_2_active.png');
}
.download-list-tabs.app a:nth-child(13n+3)::before {
    background-image: url('../images/category_icon/app_icon_3.png');
}
.download-list-tabs.app a:hover:nth-child(13n+3)::before,
.download-list-tabs.app a.active:nth-child(13n+3)::before {
    background-image: url('../images/category_icon/app_icon_3_active.png');
}
.download-list-tabs.app a:nth-child(13n+4)::before {
    background-image: url('../images/category_icon/app_icon_4.png');
}
.download-list-tabs.app a:hover:nth-child(13n+4)::before,
.download-list-tabs.app a.active:nth-child(13n+4)::before {
    background-image: url('../images/category_icon/app_icon_4_active.png');
}
.download-list-tabs.app a:nth-child(13n+5)::before {
    background-image: url('../images/category_icon/app_icon_5.png');
}
.download-list-tabs.app a:hover:nth-child(13n+5)::before,
.download-list-tabs.app a.active:nth-child(13n+5)::before {
    background-image: url('../images/category_icon/app_icon_5_active.png');
}
.download-list-tabs.app a:nth-child(13n+6)::before {
    background-image: url('../images/category_icon/app_icon_6.png');
}
.download-list-tabs.app a:hover:nth-child(13n+6)::before,
.download-list-tabs.app a.active:nth-child(13n+6)::before {
    background-image: url('../images/category_icon/app_icon_6_active.png');
}
.download-list-tabs.app a:nth-child(13n+7)::before {
    background-image: url('../images/category_icon/app_icon_7.png');
}
.download-list-tabs.app a:hover:nth-child(13n+7)::before,
.download-list-tabs.app a.active:nth-child(13n+7)::before {
    background-image: url('../images/category_icon/app_icon_7_active.png');
}
.download-list-tabs.app a:nth-child(13n+8)::before {
    background-image: url('../images/category_icon/app_icon_8.png');
}
.download-list-tabs.app a:hover:nth-child(13n+8)::before,
.download-list-tabs.app a.active:nth-child(13n+8)::before {
    background-image: url('../images/category_icon/app_icon_8_active.png');
}
.download-list-tabs.app a:nth-child(13n+9)::before {
    background-image: url('../images/category_icon/app_icon_9.png');
}
.download-list-tabs.app a:hover:nth-child(13n+9)::before,
.download-list-tabs.app a.active:nth-child(13n+9)::before {
    background-image: url('../images/category_icon/app_icon_9_active.png');
}
.download-list-tabs.app a:nth-child(13n+10)::before {
    background-image: url('../images/category_icon/app_icon_10.png');
}
.download-list-tabs.app a:hover:nth-child(13n+10)::before,
.download-list-tabs.app a.active:nth-child(13n+10)::before {
    background-image: url('../images/category_icon/app_icon_10_active.png');
}
.download-list-tabs.app a:nth-child(13n+11)::before {
    background-image: url('../images/category_icon/app_icon_11.png');
}
.download-list-tabs.app a:hover:nth-child(13n+11)::before,
.download-list-tabs.app a.active:nth-child(13n+11)::before {
    background-image: url('../images/category_icon/app_icon_11_active.png');
}
.download-list-tabs.app a:nth-child(13n+12)::before {
    background-image: url('../images/category_icon/app_icon_12.png');
}
.download-list-tabs.app a:hover:nth-child(13n+12)::before,
.download-list-tabs.app a.active:nth-child(13n+12)::before {
    background-image: url('../images/category_icon/app_icon_12_active.png');
}
.download-list-tabs.app a:nth-child(13n+13)::before {
    background-image: url('../images/category_icon/app_icon_13.png');
}
.download-list-tabs.app a:hover:nth-child(13n+13)::before,
.download-list-tabs.app a.active:nth-child(13n+13)::before {
    background-image: url('../images/category_icon/app_icon_13_active.png');
}
.download-list-tabs.app a:nth-child(13n+14)::before {
    background-image: url('../images/category_icon/app_icon_14.png');
}
.download-list-tabs.app a:hover:nth-child(13n+14)::before,
.download-list-tabs.app a.active:nth-child(13n+14)::before {
    background-image: url('../images/category_icon/app_icon_14_active.png');
}
.download-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.download-list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
    padding-top: 20px;
    border: 1px solid #EBEBED;
    transition: all 0.2s;
}
.download-list .item:hover {
    background-color: #fff;
    box-shadow: 0 4px 20px 0 #DFDFDF;
}
.download-list .item .icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
}
.download-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.download-list .item .title {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.download-list .item .title:hover {
    color: #336AEA;
}
.download-list .item .description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 17px;
    padding: 0 20px;
}
.download-list .item .description .score {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #FF5C00;
    flex-shrink: 0;
}
.download-list .item .description .score::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/star_active.png');
}
.download-list .item .description span {
    font-size: 12px;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.download-list .item .download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    width: 100%;
    height: 40px;
    border-top: 1px solid #336AEA;
    font-size: 14px;
    color: #336AEA;
    transition: all 0.2s;
}
.download-list .item .download-button:hover {
    color: white;
    background-color: #336AEA;
}
.download-list .item .download-button::after {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    background-image: url('../images/download_icon_2.png');
}
.download-list .item .download-button:hover::after {
    background-image: url('../images/download_icon_2_active.png');
}
.game-detail-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 60px 20px;
}
.download-detail-header {
    display: flex;
    flex-direction: column;
    gap: 27px;
}
.download-detail-header .main {
    display: flex;
    gap: 20px;
}
.download-detail-header .main .icon {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 25px;
    flex-shrink: 0;
}
.download-detail-header .main .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    min-height: 110px;
    flex: 1;
    overflow: hidden;
}
.download-detail-header .main .content .title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}
.download-detail-header .main .content .title-wrap .title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}
.download-detail-header .main .content .description {
    display: grid;
    grid-template-columns: repeat(3, 155px);
    gap: 14px 20px;
    font-size: 14px;
    color: #4D4D4D;
}
.download-detail-header .main .content .description .score {
    color: #FF5C00;
}
.download-detail-header .button-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}
.download-detail-header .button-wrap > div {
    display: flex;
    justify-content: center;
    position: relative;
}
.download-detail-header .button-wrap > div .button {
    display: flex;
    align-items: center;
    height: 44px;
    padding-left: 18px;
    border-radius: 2px;
    background-color: #777777;
}
.download-detail-header .button-wrap > div.android .button {
    cursor: pointer;
    background-color: #51C75C;
}
.download-detail-header .button-wrap > div.ios .button {
    cursor: pointer;
    background-color: #2C2B2F;
}
.download-detail-header .button-wrap > div.android .button::before {
    content: '';
    margin-right: 10px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-image: url('../images/android_icon_2.png');
}
.download-detail-header .button-wrap > div.ios .button::before {
    content: '';
    margin-right: 10px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-image: url('../images/ios_icon_2.png');
}
.download-detail-header .button-wrap > div.android .button::after,
.download-detail-header .button-wrap > div.ios .button::after {
    content: '';
    flex-shrink: 0;
    width: 44px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/qrcode_icon.png');
}
.download-detail-header .button-wrap > div .button > span {
    margin-right: 18px;
    font-size: 16px;
    color: white;
}
.download-detail-header .button-wrap > div .qrcode {
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 1;
    top: 100%;
    width: 155px;
    padding: 8px 0 20px 0;
    background-color: #fff;
    box-shadow: 0 0 16px 0 rgba(100, 100, 100, 0.5);
    transition: all 0.4s;
}
.download-detail-header .button-wrap > div:hover .qrcode {
    visibility: visible;
    opacity: 1;
}
.download-detail-header .button-wrap > div .qrcode img {
    width: 125px;
    height: 125px;
}
.download-detail-header .button-wrap > div .qrcode span {
    font-size: 14px;
    color: #999999;
}
.detail-article {
    display: flex;
    flex-direction: column;
}
.detail-article h2 {
    margin-top: 50px;
    margin-bottom: 17px;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    padding-bottom: 9px;
    border-bottom: 2px solid #E6E6E6;
}
.detail-article h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 72px;
    height: 2px;
    background-size: 100% 100%;
    background-image: url('../images/line_2.png');
}
.detail-article h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}
.detail-article h2 + h3 {
    margin-top: 10px;
}
.detail-article h3::before {
    content: '';
    flex-shrink: 0;
    width: 3px;
    height: 16px;
    background-color: #336AEA;
}
.detail-article p {
    font-size: 16px;
    color: #4D4D4D;
    line-height: 38px;
    white-space: pre-wrap;
}
.detail-article img {
    display: block;
    margin: 10px auto;
}
.detail-swiper {
    position: relative;
    width: 100%;
    /*height: 440px;*/
}
.detail-swiper .uk-slider-items {
    height: 100%;
    margin-left: -25px;
}
.detail-swiper .uk-slider-items li {
    padding-left: 25px;
}
.detail-swiper .uk-position-center-left,
.detail-swiper .uk-position-center-right {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 80px;
    top: 50%;
    margin: 0;
}
.detail-swiper .uk-position-center-left {
    left: 0;
    background-image: url('../images/left_arrow_3.png');
}
.detail-swiper .uk-position-center-right {
    right: 0;
    background-image: url('../images/right_arrow_3.png');
}
.detail-swiper .uk-position-center-left svg,
.detail-swiper .uk-position-center-right svg {
    display: none;
}
.detail-swiper .thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}
.guess-you-like {
    display: flex;
    flex-direction: column;
}
.guess-you-like .list {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    gap: 24px;
}
.guess-you-like .list .item {
    display: flex;
    gap: 15px;
    min-width: 0;
}
.guess-you-like .list .item .icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    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;
    height: 70px;
    overflow: hidden;
}
.guess-you-like .list .item .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.guess-you-like .list .item .content .title:hover {
    color: #336AEA;
}
.guess-you-like .list .item .content .description {
    display: flex;
    align-items: center;
}
.guess-you-like .list .item .content .description span {
    font-size: 12px;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.guess-you-like .list .item .content .description .time {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}
.guess-you-like .list .item .content .description .time::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background-size: 100% 100%;
    background-image: url('../images/paper_airplane_icon.png');
}
.wonderful-article {
    display: flex;
    flex-direction: column;
}
.wonderful-article .banner {
    width: 100%;
    height: 170px;
    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 15px;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    color: white;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wonderful-article .list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}
.wonderful-article .list .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px 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: 10px;
}
.wonderful-article .list .item .title .tag {
    display: flex;
    align-items: center;
    padding-left: 10px;
    flex-shrink: 0;
    width: 61px;
    height: 24px;
    background-size: 100% 100%;
    background-image: url('../images/tag_background_2.png');
    font-size: 13px;
    color: #336AEA;
}
.wonderful-article .list .item .title:hover .tag {
    color: white;
    background-image: url('../images/tag_background_2_active.png');
}
.wonderful-article .list .item .title span {
    font-size: 14px;
    color: #333333;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wonderful-article .list .item .title:hover span {
    color: #336AEA;
}
.wonderful-article .list .item .description {
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gift-list-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 40px 20px;
}
.gift-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
}
.gift-list .item {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    min-width: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #F2F2F2;
}
.gift-list .item:nth-child(odd) {
    padding-right: 20px;
}
.gift-list .item:nth-child(even) {
    padding-left: 20px;
}
.gift-list .item:nth-last-child(-n+2) {
    padding-bottom: 0;
    border-bottom: none;
}
.gift-list .item .icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}
.gift-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gift-list .item .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70px;
    overflow: hidden;
}
.gift-list .item .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gift-list .item .content .title:hover {
    color: #336AEA;
}
.gift-list .item .content .time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gift-list .item .content .time::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon_2.png');
}
.gift-list .item .content .description {
    font-size: 12px;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gift-list .item .receive-button {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 88px;
    height: 36px;
    background-color: #F6F6F6;
    border: 1px solid #EBEBEB;
    font-size: 12px;
    color: #808080;
    line-height: 1;
    transition: all 0.2s;
}
.gift-list .item .receive-button:hover {
    color: white;
    background-color: #336AEA;
    border: none;
}
.latest-gift {
    display: flex;
    flex-direction: column;
}
.latest-gift .list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.latest-gift .list .item {
    display: flex;
    gap: 10px;
}
.latest-gift .list .item .begin-marker {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
    position: relative;
}
.latest-gift .list .item.active .begin-marker {
    background-color: #336AEA;
}
.latest-gift .list .item:not(:last-child) .begin-marker::before {
    content: '';
    position: absolute;
    top: calc(100% + 4.5px);
    width: 1px;
    height: 26px;
    background-color: #E6E6E6;
}
.latest-gift .list .item.active .begin-marker::before {
    height: 86px;
}
.latest-gift .list .item > .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow: hidden;
}
.latest-gift .list .item > .content .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.latest-gift .list .item > .content .top .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-gift .list .item.active > .content .top .title {
    color: #336AEA;
}
.latest-gift .list .item > .content .top .receive-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 22px;
    border: 1px solid #336AEA;
    font-size: 12px;
    color: #336AEA;
    line-height: 1;
    flex-shrink: 0;
}
.latest-gift .list .item.active > .content .top .receive-button {
    color: white;
    background-color: #336AEA;
}
.latest-gift .list .item > .content .detail {
    display: none;
    gap: 14px;
}
.latest-gift .list .item.active > .content .detail {
    display: flex;
}
.latest-gift .list .item > .content .detail .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    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: 50px;
    overflow: hidden;
}
.latest-gift .list .item > .content .detail .content .description {
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-gift .list .item > .content .detail .content .time {
    font-size: 12px;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gift-detail-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 60px 20px;
}
.gift-detail-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.gift-detail-header .main {
    display: flex;
    gap: 20px;
}
.gift-detail-header .main .icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 25px;
    flex-shrink: 0;
}
.gift-detail-header .main .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    height: 100%;
    overflow: hidden;
}
.gift-detail-header .main .content .title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}
.gift-detail-header .main .content .description {
    font-size: 16px;
    color: #666666;
}
.gift-detail-header .main .content .description span:nth-child(1) {
    color: #333333;
}
.gift-detail-header .main .content .surplus {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #336AEA;
}
.gift-detail-header .main .content .surplus .progress-bar {
    width: 110px;
    height: 8px;
    background-color: #F0F0F2;
    border-radius: 99px;
    overflow: hidden;
    flex-shrink: 0;
}
.gift-detail-header .main .content .surplus .progress-bar i {
    display: block;
    height: 100%;
    background-color: #336AEA;
    border-radius: 99px;
}
.gift-detail-header .button-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gift-detail-header .button-wrap > * {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 160px;
    height: 44px;
    background-color: #777777;
    font-size: 16px;
    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: 16px;
    height: 16px;
    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: 16px;
    height: 16px;
    background-size: 100% 100%;
    background-image: url('../images/download_icon_3.png');
}
.gift-modal > .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    height: 311px;
    background-color: #fff;
    border-radius: 20px;
    padding: 0 25px 39px 25px;
    position: relative;
}
.gift-modal > .modal-content::before {
    content: '';
    flex-shrink: 0;
    margin-top: -145px;
    width: 440px;
    height: 240px;
    background-size: 100% 100%;
    background-image: url('../images/gift_modal_decorate.png');
}
.gift-modal > .modal-content .title {
    margin-top: 23px;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
}
.gift-modal > .modal-content .activation-code {
    margin-top: 20px;
    font-size: 16px;
    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: 50px;
    background-color: #F75757;
    border-radius: 99px;
    font-size: 18px;
    color: white;
    line-height: 1;
}
.gift-modal > .modal-content .cancel-button {
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2101;
    width: 40px;
    height: 40px;
    background-size: 100% 100%;
    background-image: url('../images/cancel.png');
}
.related-gift {
    display: flex;
    flex-direction: column;
}
.selected-gift {
    display: flex;
    flex-direction: column;
}
.selected-gift .list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.selected-gift .list .item {
    display: grid;
    grid-template-columns: 73px 220fr 369fr 48px;
    gap: 30px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #F2F2F2;
}
.selected-gift .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.selected-gift .list .item > * {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selected-gift .list .item .time {
    font-size: 13px;
    color: #999999;
}
.selected-gift .list .item .title {
    font-size: 14px;
    color: #333333;
}
.selected-gift .list .item .title:hover {
    color: #336AEA;
}
.selected-gift .list .item .description {
    font-size: 14px;
    color: #666666;
}
.selected-gift .list .item .receive-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 24px;
    background-color: #336AEA;
    border-radius: 2px;
    font-size: 12px;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}
.album-list-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 40px 20px;
}
.album-list-tabs {
    display: flex;
    width: 100%;
    height: 50px;
    background-color: #fff;
    padding: 0 30px;
    margin-bottom: 20px;
    background-size: 100% 100%;
    background-image: url('../images/album_list_tabs_background.png');
}
.album-list-tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    font-size: 14px;
    color: #666666;
    transition: all 0.2s;
    position: relative;
}
.album-list-tabs a:hover,
.album-list-tabs a.active {
    color: #336AEA;
    background-color: #fff;
}
.album-list-tabs a.active {
    border-top: 2px solid #336AEA;
}
.album-list-tabs a.active::before {
    content: '';
    position: absolute;
    top: 0;
    border: 4px solid transparent;
    border-top: 4px solid #336AEA;
}
.album-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.album-list > .item {
    display: grid;
    grid-template-columns: 1fr 660px;
    border: 1px solid #EBEBED;
}
.album-list > .item .main {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    background-color: #F8F8FA;
    padding: 24px;
    border-right: 1px solid #F0F0F2;
    position: relative;
}
.album-list > .item .main::after {
    content: '';
    position: absolute;
    right: -20px;
    border: 12px solid transparent;
    border-left: 10px solid #F0F0F2;
    border-right: 10px solid transparent;
}
.album-list > .item .main .icon {
    width: 112px;
    height: 112px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
}
.album-list > .item .main .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-list > .item .main .content {
    display: flex;
    flex-direction: column;
    height: 112px;
    overflow: hidden;
}
.album-list > .item .main .content .title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list > .item .main .content .title:hover {
    color: #336AEA;
}
.album-list > .item .main .content .description {
    display: flex;
    align-items: center;
    margin-top: 16px;
}
.album-list > .item .main .content .description span {
    font-size: 13px;
    color: #999999;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list > .item .main .content .description .time {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}
.album-list > .item .main .content .description .time::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon.png');
}
.album-list > .item .main .content .detail-button {
    margin-top: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #336AEA;
}
.album-list > .item .main .content .detail-button::after {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    background-image: url('../images/right_arrow_4.png');
}
.album-list > .item .children {
    display: grid;
    grid-template-columns: repeat(5, 84px);
    justify-content: space-between;
    min-width: 0;
    padding: 24px 30px 24px 50px;
}
.album-list > .item .children .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}
.album-list > .item .children .item .icon {
    width: 100%;
    height: 84px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.album-list > .item .children .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-list > .item .children .item .title {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #666666;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list > .item .children .item .title:hover {
    color: #336AEA;
}
.album-detail-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 60px 20px;
}
.album-detail-header {
    display: grid;
    grid-template-columns: 1fr 340px;
    grid-auto-rows: 220px;
    gap: 20px;
}
.album-detail-header > .main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    height: 100%;
    min-width: 0;
    background-color: #F8F8FA;
    padding: 30px;
    position: relative;
}
.album-detail-header > .main .number {
    position: absolute;
    top: -3px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    height: 72px;
    padding-top: 11px;
    background-size: 100% 100%;
    background-image: url('../images/tag_background_4.png');
}
.album-detail-header > .main .number span:nth-child(1) {
    font-size: 18px;
    font-weight: bold;
    color: white;
    line-height: 1;
}
.album-detail-header > .main .number span:nth-child(2) {
    font-size: 13px;
    color: white;
}
.album-detail-header > .main .top {
    display: flex;
    gap: 30px;
    padding-right: 106px;
}
.album-detail-header > .main .top .icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 25px;
    flex-shrink: 0;
}
.album-detail-header > .main .top .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100px;
    overflow: hidden;
}
.album-detail-header > .main .top .content .title {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
}
.album-detail-header > .main .top .content .description {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 30px;
}
.album-detail-header > .main .top .content .description span {
    font-size: 14px;
    color: #4D4D4D;
}
.album-detail-header > .main .bottom {
    display: flex;
    align-items: center;
    gap: 10px;
}
.album-detail-header > .main .bottom > span {
    font-size: 16px;
    color: #999999;
    flex-shrink: 0;
}
.album-detail-header > .main .bottom .tags {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.album-detail-header > .main .bottom .tags a {
    padding: 7px 16px;
    border-radius: 99px;
    border: 1px solid #336AEA;
    font-size: 13px;
    color: #336AEA;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s;
}
.album-detail-header > .main .bottom .tags a:hover {
    color: white;
    background-color: #336AEA;
}
.album-detail-header .editor-recommend {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-width: 0;
    background-color: #fff;
    box-shadow: 3px 3px 0 0 #F2D0D0;
    border: 1px solid #F2C7C7;
}
.album-detail-header .editor-recommend::before {
    content: '';
    flex-shrink: 0;
    width: 100%;
    height: 60px;
    background-size: cover;
    background-image: url('../images/editor_recommend.png');
}
.album-detail-header .editor-recommend .main {
    display: flex;
    gap: 20px;
    padding: 30px 20px 0 20px;
}
.album-detail-header .editor-recommend .main .icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    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;
    height: 100px;
    overflow: hidden;
}
.album-detail-header .editor-recommend .main .content .title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-detail-header .editor-recommend .main .content .title:hover {
    color: #336AEA;
}
.album-detail-header .editor-recommend .main .content .star-rating {
    margin-top: 6px;
}
.album-detail-header .editor-recommend .main .content .type {
    margin-top: 8px;
    font-size: 12px;
    color: #999999;
    line-height: 1;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-detail-header .editor-recommend .main .content .description {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}
.album-detail-header .editor-recommend .main .content .description span {
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-detail-header .editor-recommend .main .content .description::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    background-image: url('../images/love_icon.png');
}
.album-detail-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}
.album-detail-list .item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    padding: 20px;
    border: 1px solid #EBEBED;
    position: relative;
    transition: all 0.2s;
}
.album-detail-list .item:hover {
    box-shadow: 0 4px 20px 0 #DFDFDF;
}
.album-detail-list .item .number {
    position: absolute;
    top: 0;
    right: 10px;
    display: flex;
    justify-content: center;
    width: 64px;
    height: 40px;
    padding-top: 4px;
    background-size: 100% 100%;
    background-image: url('../images/tag_background_3.png');
    font-size: 16px;
    font-weight: bold;
    color: #B6CCFF;
}
.album-detail-list .item .main {
    display: flex;
    gap: 20px;
}
.album-detail-list .item .main .icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    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 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
    overflow: hidden;
}
.album-detail-list .item .main .content .title {
    padding-right: 60px;
    font-size: 18px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-detail-list .item .main .content .title:hover {
    color: #336AEA;
}
.album-detail-list .item .main .content .description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.album-detail-list .item .main .content .description > div {
    display: flex;
    align-items: center;
}
.album-detail-list .item .main .content .description > div span {
    font-size: 14px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-detail-list .item .main .content .description > div::before {
    content: '';
    margin-right: 10px;
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.album-detail-list .item .main .content .description .score {
    margin-left: 6px;
    font-size: 12px;
    color: #FF5C00;
}
.album-detail-list .item .main .content .description .score::first-letter {
    font-size: 14px;
}
.album-detail-list .item .footer {
    display: flex;
    align-items: center;
    gap: 20px;
}
.album-detail-list .item .footer .download-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100px;
    height: 36px;
    background-color: #336AEA;
    border-radius: 2px;
    font-size: 14px;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}
.album-detail-list .item .footer .download-button::after {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    background-image: url('../images/download_icon_2_active.png');
}
.album-detail-list .item .footer .description {
    font-size: 14px;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.more-album {
    display: flex;
    flex-direction: column;
}
.more-album .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 12px;
}
.more-album .list .item {
    display: flex;
    align-items: center;
    min-width: 0;
    padding-bottom: 12px;
    border-bottom: 1px dashed #F2F2F2;
}
.more-album .list .item:nth-child(3n+1) {
    padding-right: 26.67px;
}
.more-album .list .item:nth-child(3n+2) {
    padding-left: 13.335px;
    padding-right: 13.335px;
}
.more-album .list .item:nth-child(3n+3) {
    padding-left: 26.67px;
}
.more-album .list .item:nth-last-child(-n+3) {
    padding-bottom: 0;
    border-bottom: none;
}
.more-album .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.more-album .list .item .icon {
    margin-left: 12px;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.more-album .list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.more-album .list .item .title {
    margin-left: 9px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.more-album .list .item .title:hover {
    color: #336AEA;
}
.more-album .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.ranking-list-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 0 40px 0;
}
.ranking-list-banner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 210px;
    background-size: 100% 100%;
    background-image: url('../images/ranking_list_banner.png');
    padding: 0 40px 30px 40px;
    flex-shrink: 0;
    position: relative;
}
.ranking-list-banner .ranking-list-tabs {
    display: grid;
    grid-template-columns: repeat(5, 180px);
    grid-auto-rows: 40px;
    justify-content: space-between;
    row-gap: 20px;
}
.ranking-list-banner .ranking-list-tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 16px;
    border: 1px solid white;
    border-radius: 99px;
    transition: all 0.2s;
}
.ranking-list-banner .ranking-list-tabs a:hover,
.ranking-list-banner .ranking-list-tabs a.active {
    background-color: #fff;
}
.ranking-list-banner .ranking-list-tabs a span {
    font-size: 16px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-list-banner .ranking-list-tabs a:hover span,
.ranking-list-banner .ranking-list-tabs a.active span {
    color: #F58634;
}
.ranking-list-banner .ranking-list-tabs a.active::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    background-image: url('../images/star_icon_5.png');
}
.ranking-list-banner .more-ranking {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 150px;
    height: 60px;
    background-size: 100% 100%;
    background-image: url('../images/more_ranking.png');
}
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px 20px 20px;
}
.ranking-detail-wrap .ranking-list {
    margin-top: 20px;
    padding: 0;
}
.ranking-list .item {
    display: flex;
    align-items: center;
    min-width: 0;
    background-color: #F8F8FA;
    padding: 20px 30px;
    position: relative;
}
.ranking-list .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    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: 33px;
    height: 33px;
    font-size: 20px;
    color: white;
}
.ranking-list .item .icon {
    margin-left: 40px;
    width: 100px;
    height: 100px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
}
.ranking-list .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ranking-list .item .content {
    margin-left: 25px;
    margin-right: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
    overflow: hidden;
}
.ranking-list .item .content .title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ranking-list .item .content .title > a {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-list .item .content .title > a:hover {
    color: #336AEA;
}
.ranking-list .item .content .labels {
    display: flex;
    align-items: center;
    gap: 50px;
}
.ranking-list .item .content .labels span {
    font-size: 14px;
    color: #666666;
}
.ranking-list .item .content .description {
    font-size: 14px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-list .item .download-button {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: #F58634;
    border-radius: 2px;
    font-size: 16px;
    color: white;
}
.ranking-list .item .download-button::after {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    background-image: url('../images/download_icon_2_active.png');
}
.ranking-group-list-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 0 10px 0;
}
.ranking-group-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px 20px 10px 20px;
}
.ranking-group-list .item {
    display: flex;
    flex-direction: column;
    gap: 23px;
    min-width: 0;
    background-color: #F8F8FA;
    padding: 23px 0 0 30px;
    border: 1px solid #EBEBED;
    position: relative;
    z-index: 0;
}
.ranking-group-list .item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 130px;
    height: 130px;
    background-size: 100% 100%;
    background-image: url('../images/ranking_watermark.png');
}
.ranking-group-list .item > .title {
    margin-right: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-group-list .item > .title:hover {
    color: #336AEA;
}
.ranking-group-list .item .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 25px 30px 25px 25px;
    background-color: #fff;
}
.ranking-group-list .item .content .children {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}
.ranking-group-list .item .content .children > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ranking-group-list .item .content .children > div .serial-number {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 18px;
    height: 20px;
    background-size: 100% 100%;
    font-size: 12px;
    color: white;
}
.ranking-group-list .item .content .children > div:nth-child(1) .serial-number {
    background-image: url('../images/serial_number_background_1.png');
}
.ranking-group-list .item .content .children > div:nth-child(2) .serial-number {
    background-image: url('../images/serial_number_background_2.png');
}
.ranking-group-list .item .content .children > div:nth-child(3) .serial-number {
    background-image: url('../images/serial_number_background_3.png');
}
.ranking-group-list .item .content .children > div .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-group-list .item .content .children > div .title:hover {
    color: #336AEA;
}
.ranking-group-list .item .content .icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
}
.ranking-group-list .item .content .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ranking-detail-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 0 60px 0;
}
.ranking-detail-wrap .main-layout {
    padding: 30px 20px 0 20px;
}
.ranking-detail-banner {
    flex-shrink: 0;
    width: 100%;
    height: 160px;
    background-size: 100% 100%;
    background-image: url('../images/ranking_detail_banner.png');
}
.ranking-detail-header {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 10px;
    border: 1px solid #EBEBED;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.05);
}
.ranking-detail-header::before {
    content: '';
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-size: 100% 100%;
    background-image: url('../images/ranking_detail_title_begin_marker.png');
}
.ranking-detail-header .title {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}
.ranking-detail-header .time {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #999999;
}
.ranking-detail-header .time::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon.png');
}
.recommend-news {
    display: flex;
    flex-direction: column;
}
.recommend-news .wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}
.recommend-news .wrap .left-button,
.recommend-news .wrap .right-button {
    cursor: pointer;
    flex-shrink: 0;
    width: 24px;
    height: 56px;
    background-size: 100% 100%;
}
.recommend-news .wrap .left-button {
    background-image: url('../images/left_arrow_5.png');
}
.recommend-news .wrap .right-button {
    background-image: url('../images/right_arrow_5.png');
}
.recommend-news .wrap .list {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: auto;
}
.recommend-news .wrap .list::-webkit-scrollbar {
    display: none;
}
.recommend-news .wrap .list .item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    width: 230px;
    border: 1px solid #E6E6E6;
    transition: all 0.2s;
}
.recommend-news .wrap .list .item:hover {
    box-shadow: 0 4px 20px 0 #DFDFDF;
}
.recommend-news .wrap .list .item .thumbnail {
    width: 100%;
    height: 130px;
    flex-shrink: 0;
}
.recommend-news .wrap .list .item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recommend-news .wrap .list .item .content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 12px 15px;
}
.recommend-news .wrap .list .item .content .title {
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recommend-news .wrap .list .item .content .title:hover {
    color: #336AEA;
}
.recommend-news .wrap .list .item .content .description {
    flex-shrink: 0;
    margin-top: 12px;
    width: 100%;
    height: 40px;
    padding: 11px 15px;
    background-size: 100% 100%;
    background-image: url('../images/text_box_2.png');
    font-size: 12px;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recommend-news .wrap .list .item .content .footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.recommend-news .wrap .list .item .content .footer > div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999999;
}
.recommend-news .wrap .list .item .content .footer .hits::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/hot_icon.png');
}
.recommend-news .wrap .list .item .content .footer .author::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    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: 10px;
}
.hot-ranking .top-list .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 15px 20px;
    border: 1px solid #EBEBED;
    transition: all 0.2s;
}
.hot-ranking .top-list .item:hover {
    box-shadow: 0 4px 20px 0 #DFDFDF;
}
.hot-ranking .top-list .item > .title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hot-ranking .top-list .item > .title span {
    font-size: 15px;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-ranking .top-list .item > .title:hover span {
    color: #336AEA;
}
.hot-ranking .top-list .item > .title::after {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/right_arrow_6.png');
}
.hot-ranking .top-list .item .children {
    display: grid;
    grid-template-columns: repeat(4, 60px);
    justify-content: space-between;
}
.hot-ranking .top-list .item .children > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}
.hot-ranking .top-list .item .children > div .icon {
    width: 100%;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}
.hot-ranking .top-list .item .children > div .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-ranking .top-list .item .children > div .title {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-ranking .top-list .item .children > div .title:hover {
    color: #336AEA;
}
.hot-ranking .list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
.hot-ranking .list .item {
    display: flex;
    align-items: center;
}
.hot-ranking .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.hot-ranking .list .item .title {
    margin-left: 10px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hot-ranking .list .item .title:hover {
    color: #336AEA;
}
.hot-ranking .list .item .time {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
}
.latest-game {
    display: flex;
    flex-direction: column;
}
.latest-game .top-list {
    display: grid;
    grid-template-columns: repeat(3, 96px);
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px 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: 80px;
    height: 80px;
    border-radius: 20px;
    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: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-game .top-list .item .title:hover {
    color: #336AEA;
}
.latest-game .top-list .item .type {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #999999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-game .list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}
.latest-game .list .item {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #F2F2F2;
}
.latest-game .list .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.latest-game .list .item::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.latest-game .list .item .icon {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    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: 15px;
    margin-right: 8px;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-game .list .item .title:hover {
    color: #336AEA;
}
.latest-game .list .item .type {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 12px;
    color: #999999;
}
.single-player-game-strategy {
    display: flex;
    flex-direction: column;
}
.single-player-game-strategy .list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.single-player-game-strategy .list .item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px 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: 14px;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.single-player-game-strategy .list .item .title:hover {
    color: #336AEA;
}
.single-player-game-strategy .list .item .main {
    display: flex;
    gap: 15px;
}
.single-player-game-strategy .list .item .main .thumbnail {
    width: 100px;
    height: 60px;
    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: 60px;
}
.single-player-game-strategy .list .item .main .content .description {
    font-size: 14px;
    color: #666666;
    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: 8px;
}
.single-player-game-strategy .list .item .main .content .labels > div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999999;
}
.single-player-game-strategy .list .item .main .content .labels .author::before {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    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: 12px;
    height: 12px;
    background-size: 100% 100%;
    background-image: url('../images/clock_icon.png');
}
.search-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 60px 20px;
}
.search-number {
    font-size: 24px;
    color: #333333;
}
.search-category {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
.search-number + .search-category {
    margin-top: 30px;
}
.search-category > .title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}
.search-category > .title::before {
    content: '';
    flex-shrink: 0;
    width: 3px;
    height: 20px;
    background-color: #336AEA;
}
.server-list-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 20px 40px 20px;
}
.server-list-title {
    display: flex;
    position: relative;
    z-index: 0;
}
.server-list-title span {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    padding-bottom: 9px;
    border-bottom: 2px solid #336AEA;
}
.server-list-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 2px;
    background-color: #EBEBEB;
}
.server-list {
    width: 100%;
    border-left: 1px solid #F2F2F2;
    border-right: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
    border-spacing: 0;
    table-layout: fixed;
}
.server-list thead {
    background-color: #F8F8F8;
}
.server-list thead tr {
}
.server-list thead tr th {
    padding: 11px 15px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #4D4D4D;
}
.server-list thead tr .name-th {
    width: 230px;
}
.server-list thead tr .button-th {
    width: 150px;
}
.server-list tbody {
}
.server-list tbody tr {
}
.server-list tbody tr td {
    border-top: 1px solid #F2F2F2;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #666666;
}
.server-list tbody tr .name-td > div {
    display: flex;
    align-items: center;
    gap: 22px;
}
.server-list tbody tr .name-td > div .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.server-list tbody tr .name-td > div .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.server-list tbody tr .name-td > div .title {
    text-align: start;
    font-size: 14px;
    color: #333333;
}
.server-list tbody tr .name-td > div .title:hover {
    color: #336AEA;
}
.server-list tbody tr .download-button,
.server-list tbody tr .receive-button {
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin: 0 auto;
    padding: 8px 22px;
    background-color: #FAFAFA;
    border: 1px solid #EEEEEE;
    font-size: 12px;
    color: #4D4D4D;
    line-height: 1;
    transition: all 0.2s;
}
.server-list tbody tr .download-button:hover,
.server-list tbody tr .receive-button:hover {
    color: white;
    background-color: #336AEA;
}
.server-list tbody tr .download-button::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background-size: 100% 100%;
    background-image: url('../images/download_icon_4.png');
}
.server-list tbody tr .download-button:hover::before {
    background-image: url('../images/download_icon_4_active.png');
}
.server-list tbody tr .receive-button::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background-size: 100% 100%;
    background-image: url('../images/gift_icon_2.png');
}
.server-list tbody tr .receive-button:hover::before {
    background-image: url('../images/gift_icon_1.png');
}
.server-list-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.server-list-filter .title {
    display: flex;
    align-items: center;
    gap: 6px;
}
.server-list-filter .title::after {
    content: '';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    background-image: url('../images/down_arrow_2.png');
}
.server-list-filter .content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 5;
    top: calc(100% + 11px);
    left: calc(50% - 150px / 2);
    display: flex;
    flex-direction: column;
    width: 150px;
    padding: 8px 0;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}
.server-list-filter:hover .content {
    visibility: visible;
    opacity: 1;
}
.server-list-filter .content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: calc(50% - 20px / 2);
    z-index: 1;
    border: 10px solid transparent;
    border-bottom: 10px solid white;
}
.server-list-filter .content > div {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
    padding: 16px 8px;
    font-size: 16px;
    font-weight: initial;
    color: #333333;
    transition: all 0.2s;
}
.server-list-filter .content > div:hover {
    background-color: rgba(128, 128, 128, 0.2);
}



























