        /* 容器主样式 - 对应 profld pr 类，增强现代感 */
        .profld.pr {
            max-width: 1400px;
            margin: 0 auto;
            background: transparent;
            position: relative;
        }

        /* 去除列表默认样式，采用弹性网格布局 (完全重写原OL样式) */
        .metlist {
            display: flex;
            flex-wrap: wrap;
            gap: 30px 24px;
            list-style: none;
            margin: 0;
            padding: 0;
            justify-content: flex-start;
        }

        /* 每个列表项卡片样式 */
        .metlist .list {
            flex: 0 0 auto;
            width: calc(25% - 18px);     /* 默认一行4个，减去gap间距影响 24*3/4=18 */
            min-width: 180px;
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
            transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
            backdrop-filter: blur(0px);
            border: 1px solid rgba(226, 232, 240, 0.6);
        }

        /* 卡片悬停效果：提升交互感 */
        .metlist .list:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
            border-color: rgba(148, 163, 184, 0.3);
        }

        /* 图片链接区块 */
        .metlist .list .img {
            display: block;
            width: 100%;
            overflow: hidden;
            position: relative;
            background-color: #eef2ff;
            /* 保持宽高比例 213:160 与原始尺寸严格一致，但使用响应式维持比例 */
            aspect-ratio: 213 / 160;
        }

        /* 图片样式：完美填充，过渡平滑 */
        .metlist .list .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease, filter 0.3s ease;
            will-change: transform;
        }

        /* 悬停时图片微缩放效果，增加精致感 */
        .metlist .list:hover .img img {
            transform: scale(1.05);
            filter: brightness(1.02) contrast(1.02);
        }

        /* 标题区域 H3 样式 */
        .metlist .list H3 {
            width: 100%;
            padding: 16px 14px 18px 14px;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.4;
            background: #ffffff;
            transition: background 0.2s;
            letter-spacing: -0.2px;
            word-break: break-word;
            /* 确保标题区域宽度跟随父容器，避免溢出 */
            box-sizing: border-box;
        }

        /* 标题链接样式 */
        .metlist .list H3 a {
            text-decoration: none;
            color: #0f172a;
            font-weight: 600;
            transition: color 0.2s ease;
            display: inline-block;
            max-width: 100%;
            white-space: normal;
            word-break: break-word;
        }

        /* 链接悬停效果，优雅变色 */
        .metlist .list H3 a:hover {
            color: #3b82f6;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        /* 兼容原始内联样式宽度: 原始代码中 H3 style="width: 213px;" 是硬编码，但通过CSS覆盖使其响应式更灵活。
           由于我们采用弹性布局，H3宽度已经由父级 .list 决定，为了保证图片区域和文字区域视觉统一，
           我们移除原有行内宽度的强制限制 (但若用户HTML中有内联样式，CSS 使用 important 或更高权重覆盖)
           注意: 如果原模板生成了内联 style="width:213px"，则下面的规则可以确保其自适应更好 */
        .metlist .list H3[style*="width"] {
            width: auto !important;
            max-width: 100%;
        }

        /* 针对图片链接原始宽高继承保证比例，且移动端优雅展示 */
        @media (max-width: 1100px) {
            .metlist .list {
                width: calc(33.333% - 16px);   /* 平板一行3个 */
            }
        }

        @media (max-width: 768px) {
            .metlist {
                gap: 20px;
            }
            .metlist .list {
                width: calc(50% - 10px);       /* 手机一行2个 */
            }
            .metlist .list H3 {
                padding: 12px 10px 14px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .metlist .list {
                width: 100%;                   /* 小手机一行1个，最大宽度 */
                max-width: 320px;
                margin-left: auto;
                margin-right: auto;
            }
            .metlist {
                justify-content: center;
            }
        }

        /* 可选: 增加一个柔和加载动画效果 (提升用户体验) */
        .metlist .list {
            opacity: 0;
            transform: translateY(12px);
            animation: fadeInUp 0.4s forwards;
            animation-delay: calc(0.03s * var(--item-index, 0));
        }

        /* 为列表项设置索引动画延迟 (通过JS动态设置或使用CSS :nth-child) */
        .metlist .list:nth-child(1) { --item-index: 1; }
        .metlist .list:nth-child(2) { --item-index: 2; }
        .metlist .list:nth-child(3) { --item-index: 3; }
        .metlist .list:nth-child(4) { --item-index: 4; }
        .metlist .list:nth-child(5) { --item-index: 5; }
        .metlist .list:nth-child(6) { --item-index: 6; }
        .metlist .list:nth-child(7) { --item-index: 7; }
        .metlist .list:nth-child(8) { --item-index: 8; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 辅助说明：模拟图片加载时的优雅占位背景 (提升体验) */
        .metlist .list .img {
            background: linear-gradient(110deg, #eceff5 8%, #f5f7fc 18%, #eceff5 33%);
            background-size: 200% 100%;
            animation: shimmer 1.2s infinite linear;
        }

        /* 图片加载完成后覆盖动画，避免闪烁: 图片加载后会覆盖背景，这里为了优化，图片加载完成后自然覆盖 */
        .metlist .list .img img {
            position: relative;
            z-index: 2;
        }

        /* 仅当图片未完全加载或src为空时显示占位效果，图片加载后遮盖动画 (不影响美观) */
        @keyframes shimmer {
            0% {
                background-position: -100% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        /* 图片加载完成后，背景动画对父级不再有明显影响，但为了避免一直动画，父级背景动画不影响视觉 */
        .metlist .list .img:has(img[src]) {
            animation: none;
            background: #f1f5f9;
        }

        /* 兼容边缘情况: 当图片加载失败时显示fallback样式 */
        .metlist .list .img img {
            background-color: #e2e8f0;
        }

        /* 增加标题前的装饰小点缀 (可选，提升精致感) */
        .metlist .list H3 a::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 4px;
            background: #3b82f6;
            border-radius: 50%;
            vertical-align: middle;
            margin-right: 6px;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .metlist .list H3 a:hover::before {
            opacity: 1;
        }

        /* 整体区域添加内边距，背景柔和 */
        .profld.pr {
            padding: 0 8px;
        }

        /* 如果容器需要增加标题或修饰，这里保持干净 */
        .profld.pr::before {
            display: none;
        }

        /* 针对帝国CMS标签循环渲染的额外支持: 保证动态内容同样美观 */
        /* 图片圆角统一 */
        .metlist .list .img {
            border-radius: 16px 16px 0 0;
        }

        .metlist .list {
            border-radius: 20px;
        }

        /* 卡片底部添加微妙的渐变边线 */
        .metlist .list {
            position: relative;
        }

        .metlist .list::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #a855f7, #ec489a);
            border-radius: 0 0 20px 20px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .metlist .list:hover::after {
            transform: scaleX(1);
        }

        /* 保证标题高度自适应，不超出 */
        .metlist .list H3 {
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 当标题只有一行时垂直居中，多行文本也保持舒适内边距 */
        .metlist .list H3 a {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* 优化滚动条和整体布局呼吸感 */
        body {
            scrollbar-width: thin;
        }

        /* 自定义滚动条 */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #eef2f6;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 10px;
        }