: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;
            flex-shrink: 0;
        }
        .card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ---- 无图卡片：图片区域完全隐藏 ---- */
        .card.no-image .card-img {
            display: none;
        }

        /* ---- 卡片内容区域 ---- */
        .card .card-body {
            padding: 18px 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* 无图卡片的补偿：顶部增加装饰条，并加大上内边距，让视觉更饱满 */
        .card.no-image .card-body {
            padding-top: 24px;
            position: relative;
        }
        /* 顶部金色装饰线，代替图片的视觉分量 */
        .card.no-image .card-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 18px;
            right: 18px;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
            border-radius: 0 0 4px 4px;
        }

        .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;
            line-height: 1.4;
        }
        .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.7;
            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;
            border: none;
            cursor: pointer;
        }
        .card .card-body .card-footer .btn-detail:hover {
            background: var(--gold-dark);
        }

        .detail-section {
            padding: 50px 0 70px;
            background: #fff;
        }
        .detail-container {
            max-width: 820px;
            margin: 0 auto;
        }
        .detail-cover {
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 32px;
            background: #f0ede8;
            border: 1px solid #f0ede8;
            box-shadow: var(--shadow);
        }
        .detail-cover img {
            width: 100%;
            height: auto;
            display: block;
        }
        .detail-header {
            margin-bottom: 30px;
        }
        .detail-header h1 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.3;
            margin-bottom: 10px;
        }
        .detail-header .meta {
            font-size: 0.9rem;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
        }
        .detail-header .meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .detail-header .meta i { color: var(--gold); }

        /* 正文 */
        .detail-body {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #444;
        }

        @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; }
            .card.no-image .card-body { padding-top: 18px; }
            .card.no-image .card-body::before { left: 12px; right: 12px; }
        }