/* 基础样式 */

/* 全局字体设置 */
body {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-text-primary);
}

h1 {
    font-size: var(--font-size-xxl);
}

h2 {
    font-size: var(--font-size-xl);
}

h3 {
    font-size: var(--font-size-lg);
}

h4, h5, h6 {
    font-size: var(--font-size-base);
}

/* 段落样式 */
p {
    margin-bottom: var(--spacing-md);
}

/* 链接样式 */
a {
    color: var(--color-primary);
}

a:hover {
    text-decoration: underline;
}

/* 禁用状态 */
.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* 隐藏元素 */
.hidden {
    display: none !important;
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

