|
|
@@ -351,13 +351,15 @@ onMounted(() => {
|
|
|
.filter-bar {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- gap: 10px;
|
|
|
padding: 14px;
|
|
|
border-radius: 18px;
|
|
|
background: rgba(255, 255, 255, 0.94);
|
|
|
box-shadow: 0 14px 32px rgba(25, 56, 104, 0.08);
|
|
|
backdrop-filter: blur(10px);
|
|
|
}
|
|
|
+.filter-bar > * + * {
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
|
|
|
.filter-main {
|
|
|
flex: 1;
|
|
|
@@ -365,7 +367,9 @@ onMounted(() => {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
- gap: 10rpx;
|
|
|
+}
|
|
|
+.filter-main > * + * {
|
|
|
+ margin-left: 10rpx;
|
|
|
}
|
|
|
|
|
|
.filter-label {
|
|
|
@@ -407,9 +411,11 @@ onMounted(() => {
|
|
|
.report-list {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
- gap: 14px;
|
|
|
padding-bottom: 18px;
|
|
|
}
|
|
|
+.report-list > .report-card + .report-card {
|
|
|
+ margin-top: 14px;
|
|
|
+}
|
|
|
|
|
|
.report-card {
|
|
|
padding: 16px;
|
|
|
@@ -423,9 +429,11 @@ onMounted(() => {
|
|
|
display: flex;
|
|
|
align-items: flex-start;
|
|
|
justify-content: space-between;
|
|
|
- gap: 12px;
|
|
|
margin-bottom: 14px;
|
|
|
}
|
|
|
+.card-header > * + * {
|
|
|
+ margin-left: 12px;
|
|
|
+}
|
|
|
|
|
|
.dept-name {
|
|
|
color: #122033;
|
|
|
@@ -454,11 +462,16 @@ onMounted(() => {
|
|
|
|
|
|
.metrics-grid {
|
|
|
display: grid;
|
|
|
- grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
- gap: 10px;
|
|
|
+ grid-template-columns: calc(50% - 5px) calc(50% - 5px);
|
|
|
margin-bottom: 14px;
|
|
|
margin-top: 14px;
|
|
|
}
|
|
|
+.metrics-grid > *:nth-child(even) {
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
+.metrics-grid > *:nth-child(n + 3) {
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
|
|
|
.metric-item {
|
|
|
padding: 12px;
|
|
|
@@ -482,18 +495,25 @@ onMounted(() => {
|
|
|
|
|
|
.summary-panel {
|
|
|
display: grid;
|
|
|
- grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
- gap: 8px 14px;
|
|
|
+ grid-template-columns: calc(50% - 7px) calc(50% - 7px);
|
|
|
padding: 14px 0;
|
|
|
// border-top: 1px solid #edf2f7;
|
|
|
border-bottom: 1px solid #edf2f7;
|
|
|
}
|
|
|
+.summary-panel > *:nth-child(even) {
|
|
|
+ margin-left: 14px;
|
|
|
+}
|
|
|
+.summary-panel > *:nth-child(n + 3) {
|
|
|
+ margin-top: 8px;
|
|
|
+}
|
|
|
|
|
|
.summary-row {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
- gap: 10px;
|
|
|
+}
|
|
|
+.summary-row > * + * {
|
|
|
+ margin-left: 10px;
|
|
|
}
|
|
|
|
|
|
.summary-label {
|
|
|
@@ -558,7 +578,9 @@ onMounted(() => {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
- gap: 12px;
|
|
|
+}
|
|
|
+.team-drawer__header > * + * {
|
|
|
+ margin-left: 12px;
|
|
|
}
|
|
|
|
|
|
.team-drawer__title {
|
|
|
@@ -591,9 +613,11 @@ onMounted(() => {
|
|
|
.team-detail-list {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
- gap: 12px;
|
|
|
padding-bottom: 10px;
|
|
|
}
|
|
|
+.team-detail-list > .team-detail-card + .team-detail-card {
|
|
|
+ margin-top: 12px;
|
|
|
+}
|
|
|
|
|
|
.team-detail-card {
|
|
|
padding: 14px;
|
|
|
@@ -611,8 +635,13 @@ onMounted(() => {
|
|
|
|
|
|
.team-detail-grid {
|
|
|
display: grid;
|
|
|
- grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
- gap: 10px;
|
|
|
+ grid-template-columns: calc(50% - 5px) calc(50% - 5px);
|
|
|
+}
|
|
|
+.team-detail-grid > *:nth-child(even) {
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
+.team-detail-grid > *:nth-child(n + 3) {
|
|
|
+ margin-top: 10px;
|
|
|
}
|
|
|
|
|
|
.team-detail-item {
|