article.productList ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

article.productList ul li {
    width: 48%;
    margin-bottom: 24px;
}

article.productList .imgBox {
    margin-bottom: 8px;
    display: flex;
    width: calc(49vw - 36px);
    height: calc(49vw - 36px);
}

article.productList img {
    width: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
}

article.productList .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    margin-bottom: 4px;
}

article.productList .price {
    text-transform: uppercase;
}

article.productList .price::before {
    content: "NT$";
}

@media screen and (min-width: 1024px) {
    article.productList ul {
        justify-content: initial;
    }
    article.productList ul li {
        width: 24%;
    }
    article.productList ul li:not(:nth-child(4n)) {
        margin-right: calc(4% / 3);
    }
    article.productList .imgBox {
        width: 260px;
        height: 260px;
    }
}