2 changed files with 372 additions and 3 deletions
@ -1,5 +1,119 @@ |
|||||||
.pole-storage-log-page { |
.pole-storage-log-page { |
||||||
min-height: 100vh; |
min-height: 100vh; |
||||||
background-color: #F2F3F5; |
background-color: #F2F3F5; |
||||||
|
|
||||||
|
// Tab 容器 |
||||||
|
.tab-container { |
||||||
|
background-color: #FFFFFF; |
||||||
|
|
||||||
|
:global { |
||||||
|
// Tab 导航容器 |
||||||
|
.taroify-tabs__nav { |
||||||
|
background-color: #FFFFFF !important; |
||||||
|
} |
||||||
|
|
||||||
|
// 未选中 Tab |
||||||
|
.taroify-tabs__tab { |
||||||
|
font-size: 33px !important; |
||||||
|
color: #8B8B8B !important; |
||||||
|
} |
||||||
|
|
||||||
|
// 选中 Tab |
||||||
|
.taroify-tabs__tab--active { |
||||||
|
color: #333333 !important; |
||||||
|
} |
||||||
|
|
||||||
|
// 选中指示线 |
||||||
|
.taroify-tabs__line { |
||||||
|
background-color: #03C175 !important; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// 内容区域 |
||||||
|
.content-area { |
||||||
padding: 30px; |
padding: 30px; |
||||||
} |
} |
||||||
|
|
||||||
|
// 记录列表 |
||||||
|
.log-list { |
||||||
|
// 记录卡片 |
||||||
|
.log-card { |
||||||
|
background-color: #FFFFFF; |
||||||
|
border-radius: 12px; |
||||||
|
padding: 30px; |
||||||
|
margin-bottom: 30px; |
||||||
|
|
||||||
|
&:last-child { |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
// 标题行 |
||||||
|
.card-header { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: space-between; |
||||||
|
margin-bottom: 30px; |
||||||
|
|
||||||
|
.cabinet-name { |
||||||
|
font-size: 33px; |
||||||
|
color: #1A1A1A; |
||||||
|
font-weight: 500; |
||||||
|
} |
||||||
|
|
||||||
|
.status { |
||||||
|
font-size: 28px; |
||||||
|
color: #8B8B8B; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// 信息列表 |
||||||
|
.info-list { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 20px; |
||||||
|
|
||||||
|
.info-row { |
||||||
|
display: flex; |
||||||
|
align-items: flex-start; |
||||||
|
|
||||||
|
.info-label { |
||||||
|
width: 180px; |
||||||
|
font-size: 28px; |
||||||
|
color: #333333; |
||||||
|
flex-shrink: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.info-value { |
||||||
|
flex: 1; |
||||||
|
margin-left: 30px; |
||||||
|
font-size: 28px; |
||||||
|
color: #595959; |
||||||
|
text-align: left; |
||||||
|
word-break: break-all; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// 存取记录卡片特殊样式 |
||||||
|
.access-card { |
||||||
|
// 标题行(无状态标签) |
||||||
|
.card-header { |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
// 虚线分隔 |
||||||
|
.divider { |
||||||
|
height: 1PX; |
||||||
|
border-bottom: 1PX dashed #D3D8DE; |
||||||
|
margin: 30px 0; |
||||||
|
} |
||||||
|
|
||||||
|
// 信息列表(间距更小) |
||||||
|
.info-list { |
||||||
|
gap: 20px; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|||||||
Loading…
Reference in new issue