@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-template-market .template-card {
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.st-template-market .template-card:hover {
  border-color: rgba(37, 99, 235, 0.45);
}
.st-template-market .template-card:hover .template-image img {
  transform: scale(1.05);
}
.st-template-market .template-image {
  aspect-ratio: 16/10;
  height: auto;
  min-height: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: transparent;
  display: block;
  border-bottom: 1px solid var(--st-border-color, rgba(15, 23, 42, 0.1));
}
.st-template-market .template-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.3s ease;
  display: block;
}
.st-template-market .template-image--dual {
  background: linear-gradient(160deg, var(--st-surface-muted, #f1f5f9), var(--st-surface, #ffffff));
}
.st-template-market .template-dual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.65rem;
  height: 100%;
  min-height: 320px;
  padding: 1.1rem 0.85rem 1.35rem;
  box-sizing: border-box;
}
.st-template-market .template-dual__desktop,
.st-template-market .template-dual__mobile {
  display: block;
  overflow: hidden;
  background: var(--st-surface, #ffffff);
  box-shadow: var(--st-glass-shadow-sm, 0 10px 24px rgba(15, 23, 42, 0.12));
  border: 1px solid var(--st-glass-border, rgba(15, 23, 42, 0.08));
}
.st-template-market .template-dual__desktop img,
.st-template-market .template-dual__mobile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: none !important;
}
.st-template-market .template-dual__desktop {
  width: 68%;
  aspect-ratio: 16/10;
  border-radius: 8px;
}
.st-template-market .template-dual__mobile {
  width: 24%;
  aspect-ratio: 9/16;
  border-radius: 12px;
}
.st-template-market .template-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.2rem 0.65rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  z-index: 1;
}
.st-template-market .template-price {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.2rem 0.55rem;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  font-size: 0.75rem;
  border-radius: 8px;
  z-index: 1;
}
.st-template-market .template-info {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.st-template-market .template-info h3 {
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.st-template-market .template-info h3 a {
  color: var(--st-text-primary, var(--gray-900));
  text-decoration: none;
}
.st-template-market .template-info h3 a:hover {
  color: var(--primary);
}
.st-template-market .template-info > p {
  font-size: 0.75rem;
  color: var(--st-text-muted, var(--gray-600));
  margin-bottom: 0.65rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.st-template-market .template-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.st-template-market .template-tags .tag {
  padding: 0.2rem 0.55rem;
  background: rgba(37, 99, 235, 0.14);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 10px;
}
.st-template-market .template-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.st-template-market .template-actions .btn {
  flex: 1;
  font-size: 0.75rem;
  padding: 0.4rem 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 */
