/* 移动端案例列表页：尺寸与提供的 392px 参考图保持一致。 */
.product-list-page {
    max-width: 640px;
    margin: 0 auto;
    color: #333;
    background: #f1f1f1;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    user-select: auto;
}

.product-list-heading {
    height: 109px;
    padding: 26px 12px 0;
    background: #f1f1f1;
}

.product-list-heading h1 {
    margin: 0;
    color: #333;
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
}

.product-list-heading p {
    margin: 2px 0 0;
    color: #999;
    font-size: 20px;
    line-height: 28px;
}

.product-list-category {
    height: 40px;
    overflow: hidden;
    color: #fff;
    background: #000;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-list-content {
    margin: 0;
    padding: 21px 9px 37px 10px;
    background: #f1f1f1;
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 7px;
    row-gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-list-item,
.product-list-item a {
    min-width: 0;
}

.product-list-item a {
    display: block;
    color: #333;
}

.product-list-image {
    position: relative;
    width: 100%;
    margin: 0;
    padding-top: 65.03%;
    overflow: hidden;
    background: #ddd;
}

.product-list-image img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list-item h2,
.product-list-item p,
.product-list-item time {
    display: block;
    overflow: hidden;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-list-item h2 {
    height: 22px;
    margin: 8px 0 0;
    color: #333;
    font-size: 15px;
    line-height: 22px;
}

.product-list-item p {
    height: 22px;
    margin: 0;
    color: #999;
    font-size: 15px;
    line-height: 22px;
}

.product-list-item time {
    height: 20px;
    color: #aaa;
    font-size: 15px;
    line-height: 20px;
}

.product-list-pagination {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) 105px;
    align-items: center;
    width: calc(100% - 47px);
    margin: 38px 0 0 21px;
    text-align: center;
}

.product-list-pagination a,
.product-list-page-info {
    display: block;
    height: 39px;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 39px;
    text-align: center;
}

.product-list-pagination a {
    box-sizing: border-box;
    color: #555;
    background: #f1f1f1;
    border: 1px solid #ddd;
}

.product-list-page-info {
    color: #000;
    font-variant-numeric: tabular-nums;
}

@media screen and (max-width: 359px) {
    .product-list-pagination {
        grid-template-columns: 90px minmax(0, 1fr) 90px;
        width: calc(100% - 32px);
        margin-left: 16px;
    }
}
