/* 通用字体样式 */
:root {
    --primary-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.1rem;
    --font-weight-normal: normal;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
}

body {
    font-family: var(--primary-font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font-family);
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
}

/* 表格样式 */
.table th {
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
}

.table td {
    font-size: var(--font-size-base);
}

/* 表单样式 */
.form-label {
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
}

.form-control {
    font-family: var(--primary-font-family);
    font-size: var(--font-size-base);
}

/* 按钮样式 */
.btn {
    font-family: var(--primary-font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
}

/* 卡片样式 */
.card-title {
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
}

/* 导航样式 */
.nav-link {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
}

/* 徽章样式 */
.badge {
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-sm);
}

/* 模态框样式 */
.modal-title {
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
}

/* 提示文本样式 */
.form-text {
    font-size: var(--font-size-sm);
}

/* 无效反馈样式 */
.invalid-feedback {
    font-size: var(--font-size-sm);
} 