67 lines
1.5 KiB
Plaintext
67 lines
1.5 KiB
Plaintext
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
|
|
.total {
|
|
font-weight: bold;
|
|
color: var(--oak-color-primary);
|
|
|
|
.symbol {
|
|
margin-right: 4px;
|
|
}
|
|
}
|
|
|
|
.sysAccounts {
|
|
display: flex;
|
|
padding: 8px;
|
|
flex-wrap: wrap;
|
|
margin-top: 12px;
|
|
|
|
.sysAccount {
|
|
width: 244px;
|
|
height: 284px;
|
|
border: solid 0.1px silver;
|
|
border-radius: 5px;
|
|
margin-right: 14px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
|
|
.top {
|
|
height: 90px;
|
|
|
|
.title {
|
|
font-size: larger;
|
|
font-weight: bold;
|
|
font-family: 黑体;
|
|
}
|
|
|
|
.subtitle {
|
|
color: var(--oak-text-color-disabled);
|
|
font-size: smaller;
|
|
}
|
|
}
|
|
|
|
.middle {
|
|
flex: 1;
|
|
font-weight: bold;
|
|
color: var(--oak-color-primary);
|
|
font-size: large;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.bottom {
|
|
padding: 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
}
|
|
} |