
        /* 极简样式 — 只展示图片、名称、价格，每页10个 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #f4f7fc;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            padding: 30px 16px;
            display: flex;
            justify-content: center;
        }

        .shop-wrapper {
            max-width: 1300px;
            width: 100%;
            background: white;
            border-radius: 40px;
            box-shadow: 0 30px 50px -18px rgba(2, 25, 55, 0.2);
            padding: 30px 28px 40px 28px;
        }

        .header-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding: 0 6px;
        }

        .header-bar h1 {
            font-weight: 620;
            font-size: 2rem;
            letter-spacing: -0.02em;
            color: #0b1b36;
        }

        .page-indicator {
            background: #e7eefb;
            color: #1f3e6b;
            padding: 6px 22px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 550;
            border: 1px solid #c8d7f0;
        }

        /* 商品网格 — 一行5个，两行共10个 */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px 18px;
            margin: 25px 0 30px;
        }

        /* 卡片样式：图片(img)、名称、价格 */
        .product-card {
            background: #fff;
            border-radius: 28px;
            padding: 16px 14px 18px 14px;
            border: 1px solid #e7ecf5;
            box-shadow: 0 10px 18px -8px rgba(0,0,0,0.04);
            transition: transform 0.15s, border-color 0.15s;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            border-color: #b3cbee;
            transform: translateY(-3px);
            box-shadow: 0 20px 24px -12px rgba(18,45,85,0.15);
        }

        /* 图片区域 — img标签 完全遵循 01.jpg 格式 */
        .card-img {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 24px;
            background: #f1f6fe;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            overflow: hidden;
            border: 1px solid #eef3fb;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .product-name {
            font-weight: 560;
            font-size: 1rem;
            line-height: 1.4;
            color: #16243e;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.8rem;
        }

        .product-price {
            font-weight: 680;
            font-size: 1.3rem;
            color: #c5002f;
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            column-gap: 8px;
            row-gap: 4px;
            margin-top: auto;
        }

        .original-price {
            font-size: 0.85rem;
            font-weight: 400;
            color: #687794;
            text-decoration: line-through;
            margin-left: 4px;
        }

        .price-tag {
            background: #e1f0e8;
            color: #136b3d;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 40px;
            margin-left: 6px;
            white-space: nowrap;
        }

        /* 分页链接区域 */
        .pagination-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 30px;
            border-top: 2px solid #e7eef9;
            padding-top: 35px;
        }

        .page-btn {
            display: inline-flex;
            width: 50px;
            height: 50px;
            border-radius: 20px;
            background: white;
            border: 2px solid #d5e0ef;
            color: #1d3862;
            font-weight: 650;
            font-size: 1.2rem;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: 0.1s;
        }

        .page-btn.nav-btn {
            width: auto;
            padding: 0 26px;
            font-weight: 540;
            font-size: 1rem;
        }

        .page-btn.active-page {
            background: #102540;
            border-color: #102540;
            color: white;
            pointer-events: none;
        }

        .page-btn:hover:not(.active-page) {
            background: #e4edfe;
            border-color: #9cb4da;
        }

        .pagination-footnote {
            width: 100%;
            text-align: center;
            color: #587099;
            font-size: 0.95rem;
            margin: 20px 0 5px;
        }
