:root {
            --gold: #D4A24C;
            --gold-dark: #B8893A;
            --gold-light: #E8C97A;
            --dark: #1A1A1A;
            --radius: 12px;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .page-banner {
            padding: 70px 0 50px;
            background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
            color: #fff;
            text-align: center;
            border-bottom: 3px solid var(--gold);
        }
        .page-banner h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }
        .page-banner h1 span { color: var(--gold); }
        .page-banner p {
            font-size: 1.1rem;
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .page-banner .breadcrumb {
            margin-top: 16px;
            font-size: 0.9rem;
            color: #888;
        }
        .page-banner .breadcrumb a {
            color: var(--gold);
            text-decoration: none;
        }
        .page-banner .breadcrumb a:hover { text-decoration: underline; }

        .list-section {
            padding: 50px 0 70px;
            background: #fff;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px 24px;
        }
        .card {
            background: #faf8f5;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid #f0ede8;
            transition: 0.25s ease;
            display: flex;
            flex-direction: column;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
            border-color: var(--gold-light);
        }

        /* ---- 图片区域（支持有图/无图） ---- */
        .card .card-img {
            background: #f0ede8;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        .card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* 无图时的占位样式 */
        .card .card-img .placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #bbb;
            font-size: 1rem;
            width: 100%;
            height: 100%;
            background: #e8e3da;
        }
        .card .card-img .placeholder i {
            font-size: 3.2rem;
            color: #ccc;
            margin-bottom: 8px;
        }
        .card .card-img .placeholder span {
            font-size: 0.85rem;
            color: #aaa;
            letter-spacing: 1px;
        }
        /* 如果图片加载失败，也显示占位，但这里我们直接通过结构控制 */

        .card .card-body {
            padding: 18px 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card .card-body .tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(212, 162, 76, 0.10);
            padding: 2px 12px;
            border-radius: 20px;
            border: 1px solid rgba(212, 162, 76, 0.20);
            align-self: flex-start;
            margin-bottom: 8px;
        }
        .card .card-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }
        .card .card-body .sub-info {
            font-size: 0.85rem;
            color: #999;
            margin-bottom: 8px;
        }
        .card .card-body .desc {
            font-size: 0.92rem;
            color: #666;
            line-height: 1.6;
            flex: 1;
        }
        .card .card-body .card-footer {
            margin-top: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #edeae3;
            padding-top: 14px;
        }
        .card .card-body .card-footer .meta {
            font-weight: 500;
            color: var(--gold-dark);
            font-size: 0.85rem;
        }
        .card .card-body .card-footer .btn-detail {
            padding: 6px 18px;
            border-radius: 40px;
            background: var(--gold);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s ease;
        }
        .card .card-body .card-footer .btn-detail:hover {
            background: var(--gold-dark);
        }
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .pagination a {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 40px;
            background: #faf8f5;
            border: 1px solid #edeae3;
            color: #555;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.2s ease;
        }
        .pagination a:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .pagination a.active {
            background: var(--gold);
            border-color: var(--gold);
            color: #fff;
        }
        @media (max-width: 768px) {
            .page-banner h1 { font-size: 2rem; }
            .grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
        }
        @media (max-width: 480px) {
            .grid { grid-template-columns: 1fr 1fr; gap: 14px; }
            .card .card-img { height: 140px; }
            .card .card-body { padding: 12px; }
            .card .card-body h3 { font-size: 0.95rem; }
        }