.home-banner {
    margin-top: -100px;
}
.home-banner .pc_banner {
    display: block;
}
.home-banner .mobile_banner {
    display: none;
}

.home-banner a.z-banner {
    width: 1600px;
     height: 720px;
    margin: 0 auto;
}

.home-banner .z-banner img {
    width: 100%;
   height: auto;

}

.home-banner .banner_pagination {
    width: 100%;
    position: absolute;
    height: 100%;
    left: 50%;
    bottom: 150px;
    transform: translateX(-50%);
    z-index: 1;
    /* 鼠标无法选中 */
    pointer-events: none;

}

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    top: 60% !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    pointer-events: auto;

}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #0082FB;
}

.home-banner .swiper-container-horizontal .swiper-pagination-bullets,
.home-banner .swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 60px;
    position: absolute;
    display: flex;
    z-index: 9;
    padding-left: 50px;
    pointer-events: auto;
    /* 水平居中显示 */
    left: 50%;
    transform: translateX(-50%);
}

.swiper-pagination-bullet {
    width: 48px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px 5px 5px 5px;
    pointer-events: auto;
    margin-right: 5px;
}

.swiper-pagination-bullet-active {
    background: #FF620F;
}

.home_banner_popular_games_container {
    margin-top: -150px;
    position: relative;
    z-index: 2;
}

.home_banner_popular_games_container .pop_list {
    gap: 17px 25px;
}

.home_banner_popular_games_container .pop_item .pop_item_bg {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 240px;
    padding-top: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: background-size 0.45s cubic-bezier(.2,.9,.3,1);
    will-change: background-size;
    border-radius: 16px;
    position: relative; /* 新增：为伪元素提供定位上下文 */
    overflow: hidden;
}

/* 覆盖在图片上方的遮罩（hover 显示） */
.home_banner_popular_games_container .pop_item .pop_item_bg::after{
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

.home_banner_popular_games_container .pop_item:hover .pop_item_bg {
    /* 鼠标经过时背景放大（按需调整百分比） */
    background-size: 110%;
}

.home_banner_popular_games_container .pop_item:hover .pop_item_bg::after{
    opacity: 1;
}


.home_banner_popular_games_container .home-popular .pop_list {
    margin-top: 0;
}

.home_banner_popular_games_container .home-popular .pop_list .pop_item {
    margin-right: 0;
}

.home_banner_popular_games_container .home-popular .pop_list .pop_item .item_info {
    width: 50%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 2;

}

.home_banner_popular_games_container .home-popular .pop_list .pop_item .item_info p i.allgame_icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.home_banner_popular_games_container .home-popular .pop_list .pop_item .item_info a {
    display: inline-block;
    color: #fff;
    padding: 0 10px 0 10px;
    margin: 0;
    line-height: 1;
    border-right:1px solid #fff;
    
}



.home_banner_popular_games_container .home-popular .pop_list .pop_item .item_info a:last-child::after {
    content: none;
}

.gameOther_wrap {
    width: 100%;
    background: var(--nw-default-bj);
    padding: 60px 0;
}

.home-popular {
    margin-bottom:60px;
}
.home-popular.popular-giftcard {
    margin-bottom: 0;
}
.home-popular .pop_title h2 {
    font-size:28px;
}

.home-popular .pop_title a:hover {
    color: #0082FB;
}

.home-popular .pop_title h2 span {
    margin: 0 12px;
}

.home-popular .pop_title img {
    width: 8px;
}

.home-popular .pop_title .arrow span {
    width: 32px;
    height: 32px;
    background: var(--ws-color-a);
    border-radius: 50%;
    margin-left: 8px;
    cursor: pointer;
}

.home-popular .pop_title .arrow span:hover {
    background: var(--ws-color-b);
}

.home-popular .pop_scroll {
    overflow: hidden;
    width: 100%;
}

.home-popular .pop_list {
    margin-top: 24px;
    scroll-behavior: smooth;
    /* 平滑滚动 */
    position: relative;
}

.gameOther_wrap .home-popular .pop_list .pop_item {
    flex: 0 0 calc((100% - 5 * 32px) / 6);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    margin-right: 32px;
    transition: transform 0.32s cubic-bezier(.2,.9,.3,1), box-shadow 0.32s ease;
    will-change: transform, box-shadow;
}

.gameOther_wrap .home-popular .pop_list .pop_item img {
    width: 100%;
    transition: transform 0.32s cubic-bezier(.2,.9,.3,1);
    transform-origin: center;
    display: block;
}

.gameOther_wrap .home-popular .pop_list .pop_item:hover {
    transform: translateY(-6px);
}



.home-popular .pop_list .pop_item .item_info {
    padding: 16px 12px;
}

.home-popular .pop_list .pop_item .item_info p {
    font-size: 18px;
    font-weight: 700;
}

.home-popular .pop_list .pop_item .item_info p a {
    color: var(--wts-default-color);
    margin: 0;
    padding: 0;
}

.home-popular .pop_list .pop_item .item_info a {
    color: var(--ws-color-c);
    border-right: 1px solid var(--ws-color-d);
    padding: 0 5px 5px 0;
    margin-right: 5px;
}

.home-popular .pop_list .pop_item .item_info a:hover {
    color: #fff;
    text-decoration: underline;
}

.home-popular .pop_list .pop_item .item_info a:last-child {
    border: none;
}

.home-popular .pop_list .pop_item .item_info .template {
    margin-top: 13px;
}

.home-popular .pop_list .pop_item .hot {
    height: 19px;
    background: #F02213;
    border-radius: 15px 15px 15px 15px;
    font-size: 12px;
    display: flex;
    padding: 0 8px;
    margin-top: 13px;
    color: #fff;
}

.home-popular .moreGames {
    display: none;
}



.home_affiliate {
    background: url('/images/homeaffiliate.webp') no-repeat;
    background-size: 100% 100%;
    height: 240px;
    margin: 70px 0 80px;
    padding: 0 149px 0 40px;
}

.home_affiliate .aff_left p {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.home_affiliate .aff_left span {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 36px;
    display: block;
}

.home_affiliate .aff_right a {
    height: 48px;
    background: #F76A04;
    border-radius: 10px 10px 10px 10px;
    font-size: 20px;
    padding: 0 20px;
    color: #fff;
    font-weight: 700;
}

.home_affiliate .aff_right a:hover {
    background: #FF8B00;
}

@media (min-width: 1024px) {
   
}