:root {
  --vp-c-brand: #5f67ee;
  --vp-c-brand-soft: rgba(95, 103, 238, 0.1);
  --vp-c-text-1: #1f2937;
  --vp-c-text-2: #64748b;
  --vp-c-divider: #e5e7eb;
  --vp-c-default-soft: #f3f4f6;
  --vp-code-block-bg: #1f2937;
  --vp-c-brand: #5f67ee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: var(--vp-c-text-1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== Header 样式 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  border-bottom: 1px solid var(--vp-c-divider);
  background: #fff;
}

.site-header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.site-logo {
  width: 40px;
  height: 40px;
}

.site-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--vp-c-text-1);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--vp-c-text-2);
  transition: color 0.2s;
}

.site-nav-link:hover {
  color: var(--vp-c-brand);
}

.site-nav-btn {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--vp-c-brand);
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.site-nav-btn:hover {
  background: #4a54d6;
}

.site-mobile-menu-btn {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--vp-c-text-2);
}

@media (max-width: 768px) {
  .site-nav-links {
    display: none;
  }
  .site-mobile-menu-btn {
    display: block;
  }
}

.site-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-top: 1px solid var(--vp-c-divider);
}

.site-mobile-menu:not(.hidden) {
  display: flex;
}

.site-mobile-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--vp-c-text-2);
}

.site-mobile-nav-link:hover {
  color: var(--vp-c-brand);
}

.site-mobile-nav-btn {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--vp-c-brand);
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
}

/* ========== Footer 样式 ========== */
.site-footer {
  border-top: 1px solid var(--vp-c-divider);
  background: #fff;
  padding: 24px 0;
}

.site-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer-logo {
  width: 24px;
  height: 24px;
}

.site-footer-name {
  font-size: 14px;
  color: var(--vp-c-text-2);
}

.site-footer-sep {
  color: var(--vp-c-divider);
}

.site-footer-domain {
  font-size: 14px;
  color: var(--vp-c-text-2);
}

/* ========== 主内容区 ========== */
/* ========== 通用按钮样式 ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #2563eb;
  color: #fff;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.25);
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* ========== 卡片样式 ========== */
.feature-card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: white;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: all 0.2s;
}

.feature-card:hover {
  background: #f8fafc;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.demo-code{
  background-color: var(--vp-code-block-bg);
  border-radius: 10px;
  padding:12px;
  white-space: break-spaces;
}
.VPImage.image-src{
  border-radius: 20px;
}

.pricing-section {
  padding: 8rem 4rem 6rem;
  background: linear-gradient(135deg, #1a237e 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  opacity: 0.1;
  pointer-events: none;
}

.pricing-section .section-title {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.pricing-card.popular {
  border: 2px solid #60a5fa;
  /* transform: scale(1.05); */
  background: rgba(255, 255, 255, 0.15);
}

.popular-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #60a5fa;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #60a5fa;
}

.price-per-month,.saving-tag{
  color:#fff;
}

.price span {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-button {
  display: block;
  text-align: center;
  background: #60a5fa;
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: #3b82f6;
  transform: translateY(-2px);
}
.partners-section {
  padding: 6rem 4rem;
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-card img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
}

.faq-section {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, #1a237e 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  opacity: 0.1;
  pointer-events: none;
}

.faq-section .section-title {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-section {
  padding: 6rem 4rem;
  background: white;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.contact-item {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-item h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #4b5563;
}
.custom-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 4rem 3rem; */
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(37, 99, 235, 0.9) 100%), url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  /* border-radius: 1.5rem; */
  /* margin: 2rem 0; */
  position: relative;
  overflow: hidden;
}

.custom-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pattern.png');
  opacity: 0.1;
}

.hero-content-box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 120px;
}

.hero-content {
  flex: 2;
  /* padding-right: 3rem; */
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.primary-button,
.secondary-button {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.primary-button {
  background-color: #ffffff;
  color: #3b82f6;
}

.primary-button:hover {
  background-color: #e0e7ff;
  transform: translateY(-2px);
}

.secondary-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-image {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .custom-hero {
    flex-direction: column;
    /* padding: 3rem 2rem; */
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    width: 200px;
    height: 200px;
  }
}
.custom-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 4rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(37, 99, 235, 0.9) 100%), url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  /* border-radius: 1.5rem; */
  /* margin: 3rem 0; */
  position: relative;
  overflow: hidden;
}

.custom-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  opacity: 0.8;
}

.hero-content {
  /* flex: 1; */
  padding-right: 4rem;
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-weight: 600;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.primary-button,
.secondary-button {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-button {
  background: white;
  color: #3b82f6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 3rem rgba(0, 0, 0, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1f2937;
}

.features-section {
  padding: 6rem 4rem;
  background: #f9fafb;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 20px auto;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
  font-weight: 600;
}

.feature-card p {
  color: #4b5563;
  line-height: 1.6;
}

.stats-section {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(37, 99, 235, 0.9) 100%), url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  color: white;
  position: relative;
}

.stats-section .section-title {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(https://23jt.gaoxiaodaan.cn/img/20230714131209.png);
  opacity: 0.5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

.testimonials-section {
  padding: 6rem 4rem;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #f9fafb);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  position: relative;
  font-style: italic;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  color: #6366f1;
  font-size: 1.5em;
  font-weight: bold;
}

.testimonial-author {
  color: #6366f1;
  font-weight: 600;
}

@media (max-width: 768px) {
  .custom-hero {
    flex-direction: column;
    text-align: center;
    /* padding: 4rem 2rem; */
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-section,
  .features-section,
  .testimonials-section {
    padding: 4rem 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

.industry-solutions-section {
  padding: 6rem 4rem;
  /* background: linear-gradient(135deg, #1a237e 0%, #1e3a8a 100%);
  position: relative; */
  overflow: hidden;
}
/* 
.industry-solutions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  opacity: 0.1;
  pointer-events: none;
} */

.industry-solutions-section .section-title {
  /* color: #ffffff; */
  position: relative;
  z-index: 1;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem auto 0;
  max-width: 1200px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  /* color: #ffffff; */
}

.solution-description {
  /* color: rgba(255, 255, 255, 0.9); */
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-features li {
  /* color: rgba(255, 255, 255, 0.8); */
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.solution-features li::before {
  content: '✓';
  color: #4f46e5;
  margin-right: 0.5rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-card {
    padding: 1.5rem;
  }
}

.VPHome {
  padding-bottom: 0!important;
}