好建议
这个用户还没有留下简介。
很详细了
@熊猫 行吧,那只能按个人需求改了
@熊猫 回复有字数限制,分两段 ```ts /* 帖子标签 - 红包帖 */ span[aria-label="红包帖"] { @apply inline-flex items-center justify-center rounded-xl cursor-pointer transition-all duration-300; background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%); padding: 2px 8px 2px 6px; box-shadow: 0 2px 6px rgba(239, 68, 68, 0.1); } span[aria-label="红包帖"] img { filter: drop-shadow(0 1px 1px rgba(220, 38, 38, 0.4)); margin: 0; } span[aria-label="红包帖"]::after { content: "红包帖"; @apply text-[11px] text-red-600 font-semibold ml-1 leading-none tracking-wide; } /* 帖子标签 - 聚宝盆帖 */ span[aria-label="聚宝盆帖"] { @apply inline-flex items-center justify-center rounded-xl cursor-pointer transition-all duration-300; background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); padding: 2px 8px 2px 6px; box-shadow: 0 2px 6px rgba(245, 158, 11, 0.1); } span[aria-label="聚宝盆帖"] img { filter: drop-shadow(0 1px 1px rgba(217, 119, 6, 0.4)); margin: 0; } span[aria-label="聚宝盆帖"]::after { content: "聚宝盆"; @apply text-[11px] text-amber-600 font-semibold ml-1 leading-none tracking-wide; } /* 积分设置卡片高亮 */ div.flex.items-center.justify-between.gap-3:has(a[href="/settings?tab=points"]) { @apply rounded-2xl transition-all duration-300; background: linear-gradient(135deg, #fffbf4 0%, #fff9e3 100%); padding: 10px 6px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); } } ```