/**
 * 前台CSS样式 - zibll标签优化插件
 * 
 * Copyright (c) 2024-2025 初晨源码之家 (https://www.ccyuanma.com/)
 */

/* ============================================
   标签链接红色样式
   ============================================ */

/* 文章内容中的标签链接标红色（不应用背景色） */
.entry-content .zibll-tag-link,
.post-content .zibll-tag-link,
.article-content .zibll-tag-link,
.entry-content a[href*="/tag/"],
.post-content a[href*="/tag/"],
.article-content a[href*="/tag/"],
.entry-content a[href*="?tag="],
.post-content a[href*="?tag="],
.article-content a[href*="?tag="] {
    color: #ff0000 !important;
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* 标签链接悬停效果 */
.entry-content .zibll-tag-link:hover,
.post-content .zibll-tag-link:hover,
.article-content .zibll-tag-link:hover,
.entry-content a[href*="/tag/"]:hover,
.post-content a[href*="/tag/"]:hover,
.article-content a[href*="/tag/"]:hover,
.entry-content a[href*="?tag="]:hover,
.post-content a[href*="?tag="]:hover,
.article-content a[href*="?tag="]:hover {
    color: #cc0000 !important;
    text-decoration: underline;
}

/* ============================================
   标签随机颜色样式
   ============================================ */
/* 
 * 注意：标签随机颜色功能的CSS样式在 inc/functions.php 
 * 的 zibll_snow_effect_colorful_tag_css() 函数中动态输出
 */
