.bread-nav {
    padding: 5rem 24rem;
    display: flex;
    align-items: center;
}

.bread-nav a {
    font-size: 1.4rem;
    margin: 0 1rem;
    vertical-align: middle;
}

.bread-nav a:first-of-type {
    margin-left: 0;
}

.bread-nav span {
    font-size: 1.4rem;
    margin: 0 1rem;
}

.product-list-wrapper {
    padding: 5rem 24rem;
}

.product-list-wrapper .top h3 {
    font-size: 4.6rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.3rem;
    margin-bottom: 8rem;
}

.product-list-wrapper .top ul {
    display: flex;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.product-list-wrapper .top ul li {
    margin-right: 3rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 0.4rem;
    margin-bottom: 3rem;
}

.product-list-wrapper .top ul li:hover {
    background: #0147a6;
}

.product-list-wrapper .top ul li:hover a {
    color: #ffffff;
}

.product-list-wrapper .top ul a {
    font-size: 1.6rem;
}

.buy-more-btn {
    display: block;
    background: #0147a6;
    font-size: 1.6rem;
    color: #ffffff;
    width: 28rem;
    height: 4.6rem;
    margin: 0 auto 12rem auto;
    line-height: 4.6rem;
    text-align: center;
    border-radius: 0.4rem;
}

.buy-more-btn:hover {
    background: #0054c7;
}

.buy-more-btn i {
    font-size: 1.6rem;
    color: #ffffff;
    margin-left: 0.5rem;
}

.list-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.list-wrapper li {
    width: 23.5%;
    margin-right: 2%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 4rem;
    text-align: center;
}

.list-wrapper li:hover a {
    margin-top: -0.8rem;
}

.list-wrapper li a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    padding: 2rem 2rem 3rem 2rem;
    box-shadow: 0 0.1rem 1rem 0.1rem rgb(0 84 199 / 10%);
    transition: margin-top 0.3s;
}

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

.list-wrapper .product-img-wrapper {
    width: 85%;
    aspect-ratio: 1/1;
    justify-content: center;
    display: flex;
    align-items: center;
}

.list-wrapper li img {
    width: 100%;
    max-height: 100%;
}

.list-wrapper li p {
    font-size: 1.6rem;
    margin-top: 1rem;
}

/* 兼容不同分辨率样式 */
@media screen and (max-width: 1919px) and (min-width: 1680px) {
    .product-list-wrapper .top h3 {
        font-size: 4.4rem;
    }

    .product-list-wrapper, .bread-nav {
        padding: 5rem 16rem;
    }

    .list-wrapper li img {
        width: 85%;
    }

}

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

    .product-list-wrapper .top h3 {
        font-size: 4.4rem;
    }

    .list-wrapper li img {
        width: 85%;
    }
}

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

    .product-list-wrapper .top h3 {
        font-size: 4rem;
    }
}

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

    .product-list-wrapper .top h3 {
        font-size: 3.6rem;
    }

    .product-list-wrapper .top ul a, .buy-more-btn {
        font-size: 1.5rem;
    }

    .buy-more-btn {
        width: 24rem;
        height: 4.2rem;
        line-height: 4.2rem;
    }

    .list-wrapper .product-img-wrapper {
        width: 78%
    }
}