/* 运营大盘 */

.dashboard-page {
  padding: 24px;
  min-height: 100vh;
  background: #f0f2f5;
}

.dashboard-page h1 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.dashboard-intro {
  margin: 0 0 24px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.dashboard-section {
  margin-bottom: 32px;
}

.dashboard-section h2 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e8e8;
}

.dashboard-section-sub {
  margin: -4px 0 14px;
  font-size: 12px;
  color: #999;
  line-height: 1.5;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.dashboard-grid--two {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  max-width: 520px;
}

.dashboard-card {
  background: #fff;
  border-radius: 8px;
  padding: 16px 18px;
  border: 1px solid #eee;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.dashboard-card .label {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.dashboard-card .value {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  letter-spacing: -0.02em;
}

.dashboard-card .value.accent {
  color: #f5a623;
}

.dashboard-card .hint {
  margin-top: 8px;
  font-size: 12px;
  color: #999;
}

.dashboard-subchart-title {
  margin: 18px 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.dashboard-chart-wrap {
  position: relative;
  height: 260px;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 16px 8px;
}

.dashboard-chart-legend-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #999;
}
