@charset "UTF-8";
/** 章节小标签（HTML 类或 data-label + ::before） */
.st-section-head {
  margin-bottom: 2.5rem;
}
.st-section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}
.st-section-head:not(.st-section-head--row) {
  text-align: center;
}
.st-section-head[data-label]::before,
.st-section-head > [data-label]::before {
  content: attr(data-label);
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--bs-border-radius-pill, 50rem);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background-color: var(--bs-primary-bg-subtle, rgba(37, 99, 235, 0.08));
  color: var(--bs-primary-text-emphasis, var(--primary));
}
.st-section-head:not(.st-section-head--row)[data-label]::before {
  display: inline-block;
}

.st-section-title {
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  font-weight: 800;
  color: var(--st-text-primary, var(--gray-800));
  margin: 0.25rem 0 0.5rem;
}
.st-section-head:not(.st-section-head--row) .st-section-title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
}

.st-section-title--sm {
  font-size: clamp(1.0625rem, 1.2vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.st-section-desc {
  color: var(--st-text-muted, #64748b);
  font-size: 1rem;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--st-text-muted, var(--gray-600));
}
.st-section-head--row .st-section-desc {
  margin: 0;
}

.st-feature-grid .st-section-head {
  margin-bottom: 2.5rem;
}

.st-feature-grid__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 767.98px) {
  .st-feature-grid__items {
    gap: 1rem;
  }
}
@media (max-width: 991.98px) {
  .st-feature-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767.98px) {
  .st-feature-grid__items {
    grid-template-columns: 1fr !important;
  }
}
.st-feature-grid__items--8col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .st-feature-grid__items--8col {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767.98px) {
  .st-feature-grid__items--8col {
    grid-template-columns: 1fr !important;
  }
}
.st-feature-grid__items--3col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 767.98px) {
  .st-feature-grid__items--3col {
    gap: 1rem;
  }
}
@media (max-width: 991.98px) {
  .st-feature-grid__items--3col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .st-feature-grid__items--3col {
    grid-template-columns: 1fr;
  }
}

.st-feature-card {
  padding: 1.5rem 1.25rem 1.5rem;
  text-align: center;
  border-radius: 0.75rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.st-feature-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--st-glass-shadow-md, 0 2px 4px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.09), 0 1px 0 rgba(255, 255, 255, 0.55) inset);
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  .st-feature-card {
    padding: 1.25rem;
  }
}
.st-feature-card > i.bi {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3b82f6, #2563eb);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
  margin: 0 auto 1.25rem;
  font-size: clamp(1.0625rem, 1.2vw, 1.125rem);
}
.st-feature-card h3 {
  font-size: clamp(1.0625rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: var(--st-text-primary, var(--gray-800));
  margin: 0 0 0.75rem;
}
.st-feature-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #64748b;
  margin: 0;
}

.st-feature-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3b82f6, #2563eb);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
  margin: 0 auto 1.25rem;
  font-size: clamp(1.0625rem, 1.2vw, 1.125rem);
}

.st-feature-grid__more {
  margin: 2rem 0 0;
}

.st-more-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.22s ease;
}
.st-more-link:hover {
  color: #1d4ed8;
}

.st-page-band {
  padding-block: clamp(2.75rem, 5.5vw, 5.25rem);
  background: var(--st-body-bg, #ffffff);
}
.st-page-band > .container {
  position: relative;
  z-index: 1;
}

.st-page-band--stats {
  padding-block: 0;
  margin-top: calc(1.5rem * -1);
  position: relative;
  z-index: 2;
  background: transparent;
}
.st-page-band--stats .st-stats-v2__item strong {
  color: var(--primary);
}

.st-page-band--cta {
  padding-block: clamp(2.25rem, 4.5vw, 4rem);
}

.st-page-band--surface {
  background: var(--st-surface, #ffffff);
  -webkit-backdrop-filter: blur(var(--st-glass-blur, 14px)) saturate(var(--st-glass-saturate, 1.4));
  backdrop-filter: blur(var(--st-glass-blur, 14px)) saturate(var(--st-glass-saturate, 1.4));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.st-page-band--muted {
  background: var(--st-surface-muted, #f8fafc);
  -webkit-backdrop-filter: blur(var(--st-glass-blur, 14px)) saturate(var(--st-glass-saturate, 1.4));
  backdrop-filter: blur(var(--st-glass-blur, 14px)) saturate(var(--st-glass-saturate, 1.4));
}

.st-page-band--muted + .st-page-band--surface,
.st-page-band--surface + .st-page-band--muted,
.st-page-band--surface + .st-page-band--theme-tech,
.st-page-band--muted + .st-page-band--theme-tech {
  border-top: 1px solid var(--st-border-color, #e2e8f0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 -1px 0 var(--st-border-color, #e2e8f0);
}

[data-bs-theme=dark] .st-page-band--surface {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-bs-theme=dark] .st-page-band--muted + .st-page-band--surface,
[data-bs-theme=dark] .st-page-band--surface + .st-page-band--muted,
[data-bs-theme=dark] .st-page-band--surface + .st-page-band--theme-tech,
[data-bs-theme=dark] .st-page-band--muted + .st-page-band--theme-tech {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 -1px 0 var(--st-border-color, #e2e8f0);
}

.st-page-band--sky {
  background: var(--st-page-band-sky-bg);
  overflow: visible;
}

.st-page-band--theme-tech {
  position: relative;
  overflow: hidden;
  background: var(--st-page-band-theme-bg);
  border-top: 1px solid var(--st-border-color, rgba(37, 99, 235, 0.08));
  border-bottom: 1px solid var(--st-border-color, var(--gray-200));
}
.st-page-band--theme-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(37, 99, 235, 0.045) 59px, rgba(37, 99, 235, 0.045) 60px), repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(37, 99, 235, 0.045) 59px, rgba(37, 99, 235, 0.045) 60px);
  mask-image: radial-gradient(ellipse 78% 88% at 50% 42%, #000 22%, transparent 78%);
}
.st-page-band--theme-tech::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 44%, rgba(37, 99, 235, 0.06) 45%, rgba(37, 99, 235, 0.06) 45.4%, transparent 46%), linear-gradient(-28deg, transparent 56%, rgba(59, 130, 246, 0.04) 57%, rgba(59, 130, 246, 0.04) 57.4%, transparent 58%), radial-gradient(ellipse 50% 35% at 12% 18%, rgba(37, 99, 235, 0.07), transparent 68%);
}

.st-page-band--strength {
  position: relative;
  overflow: hidden;
  background: var(--st-page-band-strength-bg);
}
.st-page-band--strength::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 20% 80%, rgba(147, 197, 253, 0.15), transparent), radial-gradient(ellipse 60% 40% at 85% 20%, rgba(96, 165, 250, 0.12), transparent);
}

.st-page-band .st-section-head {
  margin-bottom: 2.5rem;
}

.st-theme-market--tech {
  position: relative;
  overflow: hidden;
}
.st-theme-market--tech::before, .st-theme-market--tech::after {
  display: none;
}
.st-theme-market--tech .container {
  position: relative;
  z-index: 1;
}
.st-theme-market__title {
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  font-weight: 800;
  color: var(--st-text-primary, var(--gray-800));
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.st-theme-market__title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
}
.st-theme-market__lead {
  color: var(--st-text-muted, #64748b);
  font-size: 1rem;
  max-width: 38rem;
  margin: 1.1rem auto 0;
  line-height: 1.75;
}
.st-theme-market__strip {
  display: grid;
  gap: 1.25rem;
}
.st-theme-market__strip--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991.98px) {
  .st-theme-market__strip--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .st-theme-market__strip--home {
    grid-template-columns: 1fr;
  }
}
.st-theme-market__strip--home .st-theme-card__body {
  padding: 1rem 1.1rem 1.15rem;
}
.st-theme-market__strip--home .st-theme-card__actions {
  margin-top: 0.75rem;
}

.st-theme-card {
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.st-theme-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.st-theme-card__preview {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  background: var(--gray-100);
  overflow: hidden;
}
.st-theme-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.st-theme-card__preview:hover img {
  transform: scale(1.03);
}
.st-theme-card__preview:hover .st-theme-card__preview-overlay {
  opacity: 1;
}
.st-theme-card__preview-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2rem;
  color: var(--gray-400);
}
.st-theme-card__preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: rgba(15, 23, 42, 0.45);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.st-theme-card__body {
  padding: 0.85rem 1rem 1rem;
}
.st-theme-card__body h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}
.st-theme-card__body h3 a {
  color: var(--st-text-primary, var(--gray-900));
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-theme-card__body h3 a:hover {
  color: var(--primary);
}
.st-theme-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  background: #eff6ff;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}
.st-theme-card__tags {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.st-theme-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.st-news-block__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.st-news-block__card {
  padding: 1.25rem;
  border: 1px solid var(--st-border-color, var(--gray-200));
  border-radius: 16px;
  background: var(--st-surface, #ffffff);
  transition: box-shadow 0.2s ease;
}
.st-news-block__card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.st-news-block__card time {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.st-news-block__card h3 {
  font-size: 1.05rem;
  margin: 0.5rem 0;
  line-height: 1.45;
}
.st-news-block__card h3 a {
  color: var(--st-text-primary, var(--gray-900));
  text-decoration: none;
}
.st-news-block__card h3 a:hover {
  color: var(--primary);
}
.st-news-block__card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.st-news-block__read {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.st-news-block__list-wrap {
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: var(--st-surface-muted, var(--gray-50));
  border: 1px solid var(--st-border-color, var(--gray-200));
}
.st-news-block__list-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--st-text-primary, var(--gray-900));
}
.st-news-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.st-news-block__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--st-border-color, var(--gray-200));
  break-inside: avoid;
}
.st-news-block__list a {
  color: var(--st-text-primary, var(--gray-800));
  text-decoration: none;
  font-size: 0.875rem;
}
.st-news-block__list a:hover {
  color: var(--primary);
}
.st-news-block__list time {
  font-size: 0.75rem;
  color: var(--gray-500);
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .st-news-block__grid {
    grid-template-columns: 1fr;
  }
  .st-news-block__list {
    columns: 1;
  }
  .st-section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.st-home .st-topbar {
  position: relative;
  z-index: 2;
}
.st-home .st-section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

/*# sourceMappingURL=home.css.map */
