/**
 * Niliu子主题 - 自定义样式
 *
 * 在此文件中添加子主题的自定义 CSS 样式。
 * 这些样式会覆盖父主题的样式（通过 CSS 优先级）。
 *
 * @package    Niliu
 * @author     逆流
 * @version    1.0.0
 * @link       https://community.niliukeji.com
 */

/* ============================================================================
   基础变量（可根据需要修改）
   ============================================================================ */

:root {
    /* 主题色 */
    --niliu-primary-color: #3b82f6;
    --niliu-primary-hover: #2563eb;

    /* 文字颜色 */
    --niliu-text-color: #333333;
    --niliu-text-muted: #666666;

    /* 背景色 */
    --niliu-bg-color: #ffffff;
    --niliu-bg-secondary: #f5f5f5;

    /* 边框 */
    --niliu-border-color: #e5e5e5;
    --niliu-border-radius: 8px;

    /* 阴影 */
    --niliu-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================================================
   示例样式（可根据需要取消注释或修改）
   ============================================================================ */

/* 仅会员可见提示框样式 */
.niliu-members-only-notice {
    padding: 15px 20px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--niliu-border-radius);
    color: #856404;
    margin: 15px 0;
}

/* 文章前自定义提示框样式 */
.niliu-notice {
    padding: 15px 20px;
    background-color: #e3f2fd;
    border-left: 4px solid var(--niliu-primary-color);
    border-radius: var(--niliu-border-radius);
    margin: 15px 0;
}

/* 页脚自定义文字样式 */
.niliu-footer-text {
    text-align: center;
    padding: 10px;
    color: var(--niliu-text-muted);
    font-size: 12px;
}

/* ============================================================================
   在下方添加你的自定义样式
   ============================================================================ */
