- PageShell 替代手写 ScrollView + min-height/bg/padding - SearchSection 替代搜索栏 - ContentCard 替代 report-card 手写样式 - StatusTag 替代 report-card__reviewed 手写标签 - LoadingCard 替代 Loading 组件 - 精简 SCSS:删除 page/search-bar/card 通用样式,保留业务特有样式
58 lines
1.0 KiB
SCSS
58 lines
1.0 KiB
SCSS
@import '../../../styles/variables.scss';
|
||
|
||
// PageShell 已接管:min-height, background, padding
|
||
// SearchSection 已接管:search-bar
|
||
// ContentCard 已接管:report-card 背景/圆角/阴影/触摸反馈
|
||
// StatusTag 已接管:reviewed 标签样式
|
||
|
||
.report-count {
|
||
margin-bottom: 16px;
|
||
|
||
text {
|
||
font-size: var(--tk-font-h2);
|
||
color: $tx3;
|
||
}
|
||
}
|
||
|
||
.report-cards {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: var(--tk-gap-md);
|
||
}
|
||
|
||
.report-card__header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.report-card__type {
|
||
font-family: 'Georgia', 'Times New Roman', serif;
|
||
font-size: var(--tk-font-body-lg);
|
||
font-weight: 600;
|
||
color: $tx;
|
||
}
|
||
|
||
.report-card__date {
|
||
font-size: var(--tk-font-h2);
|
||
color: $tx3;
|
||
}
|
||
|
||
.report-card__indicators {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
|
||
.report-card__abnormal {
|
||
font-size: var(--tk-font-h1);
|
||
color: $dan;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.report-card__normal {
|
||
font-size: var(--tk-font-h1);
|
||
color: $acc;
|
||
}
|