This commit is contained in:
2026-04-25 01:27:14 +08:00
3 changed files with 147 additions and 5 deletions

View File

@@ -5,8 +5,8 @@
/* 桌面: 1024px - 1920px */
/* 4K屏: 3840px */
/* --- 核心字号缩放逻辑 --- */
/* 逻辑在移动端最小为 14px在 1024px 以上开始线性增长,到 4K 达到 24px */
/* 公式clamp(最小值, 首选值, 最大值) */
/* 逻辑: 在移动端最小为 14px在 1024px 以上开始线性增长,到 4K 达到 24px */
/* 公式: clamp(最小值, 首选值, 最大值) */
font-size: 14px;
}
@@ -62,4 +62,17 @@
font-weight: bold;
color: var(--bs-primary) !important;
border-bottom: 2px solid var(--bs-primary);
}
.p-r-t {
position: relative;
top: -1px;
}
.w-1r {
width: 1rem;
}
.h-1r {
height: 1rem;
}