/* RI父主题 - 分类文章展示模块图标样式增强 */

/* 图标颜色样式 - 让图标有好看的颜色 */
.rizhuti_v2-widget-catpost .section-title i {
    color: #007bff !important;  /* 主题蓝色 */
    font-size: 1.1em;
    margin-right: 8px;
    font-weight: 500;
}

/* 星形图标特殊颜色 */
.rizhuti_v2-widget-catpost .section-title i.fa-star {
    color: #ffc107 !important;  /* 金黄色 */
}

/* 火焰图标特殊颜色 */
.rizhuti_v2-widget-catpost .section-title i.fa-fire {
    color: #dc3545 !important;  /* 红色 */
}

/* 心形图标特殊颜色 */
.rizhuti_v2-widget-catpost .section-title i.fa-heart {
    color: #e91e63 !important;  /* 粉红色 */
}

/* 报纸图标特殊颜色 */
.rizhuti_v2-widget-catpost .section-title i.fa-newspaper-o,
.rizhuti_v2-widget-catpost .section-title i.fa-newspaper {
    color: #6f42c1 !important;  /* 紫色 */
}

/* 书签图标特殊颜色 */
.rizhuti_v2-widget-catpost .section-title i.fa-bookmark {
    color: #fd7e14 !important;  /* 橙色 */
}

/* 钻石图标特殊颜色 */
.rizhuti_v2-widget-catpost .section-title i.fa-diamond {
    color: #17a2b8 !important;  /* 青色 */
}

/* 标签图标特殊颜色 */
.rizhuti_v2-widget-catpost .section-title i.fa-tag {
    color: #28a745 !important;  /* 绿色 */
}

/* 雷电图标特殊颜色 */
.rizhuti_v2-widget-catpost .section-title i.fa-bolt {
    color: #ffc107 !important;  /* 金黄色 */
}

/* 暗色主题适配 */
@media (prefers-color-scheme: dark) {
    .rizhuti_v2-widget-catpost .section-title i {
        filter: brightness(1.2);  /* 在暗色主题下稍微增亮图标 */
    }
}

/* 兼容父主题的暗色主题类 */
.dark-open .rizhuti_v2-widget-catpost .section-title i {
    filter: brightness(1.2);
}

/* 图标动画效果 */
.rizhuti_v2-widget-catpost .section-title i {
    transition: transform 0.2s ease, color 0.2s ease;
}

.rizhuti_v2-widget-catpost .section-title:hover i {
    transform: scale(1.1);
}

/* 鼠标悬停时图标发光效果 */
.rizhuti_v2-widget-catpost .section-title:hover i.fa-star {
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
}

.rizhuti_v2-widget-catpost .section-title:hover i.fa-fire {
    text-shadow: 0 0 8px rgba(220, 53, 69, 0.6);
}

.rizhuti_v2-widget-catpost .section-title:hover i.fa-heart {
    text-shadow: 0 0 8px rgba(233, 30, 99, 0.6);
}
