Fix Bug #571: 根因+修复方案摘要

This commit is contained in:
2026-05-22 10:52:18 +08:00
parent 50f1013391
commit fce3c9ab01

View File

@@ -275,7 +275,10 @@ getPharmacyCabinetLists();
} }
.report-container { .report-container {
max-width: 1200px; max-width: 1200px;
padding: 0 20px; padding: 24px 32px;
background: #fff;
border-radius: 4px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
} }
.report-title { .report-title {
text-align: center; text-align: center;
@@ -309,6 +312,8 @@ getPharmacyCabinetLists();
display: flex; display: flex;
align-items: center; align-items: center;
box-sizing: border-box; box-sizing: border-box;
min-width: 0;
overflow: hidden;
} }
.label { .label {
display: inline-block; display: inline-block;
@@ -322,10 +327,29 @@ getPharmacyCabinetLists();
color: #303133; color: #303133;
font-weight: 500; font-weight: 500;
white-space: nowrap; white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
.divider { .divider {
height: 1px; height: 1px;
background-color: #dcdfe6; background-color: #dcdfe6;
margin: 12px 0; margin: 12px 0;
} }
@media screen and (max-width: 1200px) {
.cols-4 {
grid-template-columns: repeat(2, 1fr);
}
.cols-3 {
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 768px) {
.cols-4,
.cols-3 {
grid-template-columns: 1fr;
}
.label {
width: 100px;
}
}
</style> </style>