101 lines
1.3 KiB
Plaintext
101 lines
1.3 KiB
Plaintext
.loadingContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 300px;
|
|
}
|
|
|
|
.detailCard {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.supplierList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.supplierCard {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.indicatorList {
|
|
.indicatorItem {
|
|
padding: 8px 0;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.indicatorIndex {
|
|
width: 30px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.indicatorId {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.infoItem {
|
|
margin-bottom: 8px;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.label {
|
|
font-weight: 500;
|
|
margin-right: 8px;
|
|
min-width: 100px;
|
|
}
|
|
|
|
.evaluatorList {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.evaluatorTag {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.idList {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.emptyData {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 200px;
|
|
color: rgba(0, 0, 0, 0.45);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.tableContainer {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.weightStatusInfo {
|
|
margin-bottom: 16px;
|
|
font-size: 14px;
|
|
|
|
.label {
|
|
font-weight: bold;
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
|
|
.evaluatorModalContent,
|
|
.indicatorModalContent {
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
padding: 8px;
|
|
}
|