/* 年度盘点报告样式 */
.yearly-report {
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  margin: 32px 0;
  border: 1px solid var(--gray-200);
}

[data-theme=dark] .yearly-report {
  background: var(--gray-800);
  border-color: var(--gray-700);
}

.yearly-report h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

[data-theme=dark] .yearly-report h2 {
  color: var(--gray-100);
}

.yearly-report h2::before,
.yearly-report h2::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  justify-items: center;
}

.report-item {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xs);
}

[data-theme=dark] .report-item {
  background: var(--gray-700);
  border-color: var(--gray-600);
}

.report-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.report-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.report-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* 移动端响应式 */
@media (max-width: 1024px) {
  .report-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .report-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .report-item {
    padding: 20px 12px;
  }
  .report-number {
    font-size: 28px;
  }
  .report-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .report-stats {
    grid-template-columns: 1fr;
  }
}
