.product-list-wrapper {
    display: flex;
    padding: 0 24rem;
    flex-wrap: wrap;
    margin: 2rem auto;
}

.product-list-wrapper li {
    width: 19%;
    margin-right: 1.25%;
    margin-bottom: 2rem;
}

.product-list-wrapper li:nth-child(5n) {
    margin-right: 0;
}

.product-list-wrapper li a {
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    transition: margin-top 0.3s;
    border-radius: 0.4rem;
}

.product-list-wrapper li:hover a {
    margin-top: -0.5rem;
    box-shadow: 0 0.1rem 1rem 0.1rem rgb(0 84 199 / 10%);
}

.product-list-wrapper li div {
    width: 70%;
    aspect-ratio: 1;
    overflow: hidden;
    margin: 0 auto 2rem auto;
}

.product-list-wrapper li img {
    width: 100%;
    aspect-ratio: 1/1;
}

.product-list-wrapper li p {
    font-size: 1.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 1rem;
}

.bread-nav {
    padding: 0 24rem;
    margin: 5rem auto;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.bread-nav a {
    font-size: 1.3rem;
    margin-right: 0.8rem;
}

.bread-nav span {
    font-size: 1.3rem;
    margin-left: 0.8rem;
}

/* 兼容不同分辨率样式 */
@media screen and (max-width: 1919px) and (min-width: 1680px) {
    .bread-nav, .product-list-wrapper {
        padding: 0 18rem;
    }

    .product-list-wrapper li div {
        width: 66%;
    }
}

@media screen and (max-width: 1679px) and (min-width: 1600px) {
    .bread-nav, .product-list-wrapper {
        padding: 0 18rem;
    }

    .product-list-wrapper li div {
        width: 66%;
    }
}

@media screen and (max-width: 1599px) and (min-width: 1440px) {
    .bread-nav, .product-list-wrapper {
        padding: 0 14rem;
    }

    .product-list-wrapper li div {
        width: 60%;
    }

    .product-list-wrapper li {
        width: 24%;
        margin-right: 1.25%;
    }

    .product-list-wrapper li:nth-child(4n) {
        margin-right: 0;
    }

    .product-list-wrapper li:nth-child(5n) {
        margin-right: 1.25%;
    }
}

@media screen and (max-width: 1439px) and (min-width: 1280px) {
    .bread-nav, .product-list-wrapper {
        padding: 0 8rem;
    }

    .product-list-wrapper li div {
        width: 56%;
        height: 15.6rem;
    }

    .product-list-wrapper li {
        width: 24%;
        margin-right: 1.25%;
    }

    .product-list-wrapper li:nth-child(4n) {
        margin-right: 0;
    }

    .product-list-wrapper li:nth-child(5n) {
        margin-right: 1.25%;
    }
}