增加字体大小设置

This commit is contained in:
2026-07-03 11:45:16 +08:00
parent 451dd2330b
commit c3bd7960d0
28 changed files with 894 additions and 94 deletions
+8 -8
View File
@@ -115,20 +115,20 @@ export default {
border-radius: 0 0 20px 20px;
}
.home-hospital {
font-size: 17px;
font-size: $font-size-lg;
font-weight: 700;
display: flex;
align-items: center;
gap: 6px;
}
.home-welcome {
font-size: 12px;
font-size: $font-size-xs;
opacity: 0.85;
margin-top: 4px;
}
.quick-section { padding: 16px 16px 8px; }
.section-title {
font-size: 14px;
font-size: $font-size-md;
font-weight: 600;
color: $text-primary;
margin-bottom: 12px;
@@ -158,7 +158,7 @@ export default {
justify-content: center;
}
.quick-item text {
font-size: 13px;
font-size: $font-size-base;
color: $text-primary;
font-weight: 500;
text-align: center;
@@ -182,12 +182,12 @@ export default {
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-size: $font-size-lg;
background: #f0f0f0;
flex-shrink: 0;
}
.recent-info { flex: 1; }
.recent-info .name { font-size: 13px; color: $text-primary; font-weight: 500; }
.recent-info .detail { font-size: 11px; color: $text-placeholder; margin-top: 2px; }
.recent-time { font-size: 10px; color: #bbbbbb; }
.recent-info .name { font-size: $font-size-base; color: $text-primary; font-weight: 500; }
.recent-info .detail { font-size: $font-size-xs; color: $text-placeholder; margin-top: 2px; }
.recent-time { font-size: calc(10 * var(--font-scale) * 1px); color: #bbbbbb; }
</style>