@charset "UTF-8";
/**
 * Tools Plugin Home Page Styles
 * 工具首页样式文件
 * @version 1.0.0
 */

/* 热门工具导航标签颜色 - 未选中时也显示橙色边框 */
.hot-category-tab {
    border-color: #FF6A00 !important;
    color: #FF6A00 !important;
}

/* 热门工具导航标签颜色 - 选中时 */
.hot-category-tab.active {
    background-color: #FF6A00 !important;
    color: white !important;
    border-color: #FF6A00 !important;
}

/* 热门工具卡片样式 - 橙色边框（只在非热门分类下显示） */
.hot-tool-card {
    border-color: #FF6A00 !important;
}

/* 在热门工具分类下，隐藏热门工具的特殊边框 */
.hot-category-active .hot-tool-card {
    border-color: #e0e0e0 !important;
}

/* 工具卡片底部 - 显示标签和箭头 */
.tool-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

/* 工具标签容器 */
.tool-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    flex: 1;
}

/* 标签样式 */
.tool-tag-badge {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: 500;
}

/* 无结果提示样式 */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.no-results-message svg {
    color: #ddd;
    margin-bottom: 1rem;
}

.no-results-message p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #666;
}

.no-results-message small {
    font-size: 0.9rem;
    color: #999;
}

/* 淡入动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
