/* ====== 首页 ====== */
.home-page {
  background: var(--page-bg);
  min-height: 100vh;
}

.template-intro,
.home-section-card {
  background: var(--card-bg);
  margin: 10px 12px 0;
  border-radius: 9px;
  padding: 14px 12px;
}

.intro-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.intro-title {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: var(--text-color);
}

.intro-desc {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: var(--text-hint);
  line-height: 1.6;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 9px;
}

.intro-chip {
  padding: 5px 9px;
  border-radius: 12px;
  font-size: 11px;
  margin-right: 8px;
  margin-bottom: 6px;
}

/* 服务卡片 */
.service-row,
.notice-row {
  display: flex;
  align-items: flex-start;
  padding-top: 10px;
}

.service-mark,
.notice-dot {
  flex-shrink: 0;
  border-radius: 50%;
}

.service-mark {
  width: 7px;
  height: 7px;
  margin-top: 6px;
  margin-right: 9px;
}

.notice-dot {
  width: 6px;
  height: 6px;
  margin-top: 7px;
  margin-right: 8px;
}

.service-body { flex: 1; }

.service-title {
  display: block;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 600;
}

.service-desc,
.notice-text {
  display: block;
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.7;
}

.service-desc { margin-top: 4px; }
