@media (max-width: 1024px) {
    .z-goods-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .home_gift_cards {
        padding: 0 10px;
    }
    .home_banner {
        overflow: hidden;
        padding: 60px 0px 0;
    }
    .home_banner .home_banner_image img {
        width: 100%;
    }
    .home_banner .home_banner_image img.mobile_banner {
        display: block !important;
    }
    .home_banner .home_banner_image img.pc_banner {
        display: none !important;
    }
    .home_banner .banner_text {
        display: none;
    }
}


@media (max-width: 768px) {
    .z-goods-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .home_gift_cards {
        margin-top: 20px;
    }

    .home_banner .home_select_game {
        padding: 0 10px;
        gap: 5px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }
    .home_banner .home_select_game .items {
        font-size: 12px;
        width: auto;
        padding: 0 2px;
        height: 70px;
    }
    .home_banner .home_select_game .items img {
        width: 20px;
    }
}


@media (max-width: 500px) {
    .z-goods-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .home_gift_cards .gift_title h3 {
        font-size: 18px;
    }
}