* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
  background: #f0fdf4;
  color: #1e293b;
  line-height: 1.7;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
  box-shadow: 0 4px 20px rgba(6, 95, 70, 0.3);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #fbbf24, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fbbf24;
  transform: translateY(-2px);
}
.geo-section {
  padding: 60px 0 30px;
  background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 100%);
}
.geo-section h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: #065f46;
  text-align: center;
  margin-bottom: 20px;
}
.geo-section p {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  color: #334155;
  line-height: 1.9;
}
.hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #10b981 0%, #065f46 60%, #064e3b 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(251, 191, 36, 0.2);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-left {
  flex: 1;
  min-width: 280px;
}
.hero-left h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.hero-left p {
  color: #d1fae5;
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 480px;
}
.hero-badge {
  display: inline-block;
  background: #fbbf24;
  color: #065f46;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}
.hero-images {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-img-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  width: 180px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-img-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.hero-img-card span {
  display: block;
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 12px;
  position: relative;
}
.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.stats-section {
  padding: 70px 0;
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat-card {
  background: linear-gradient(145deg, #ecfdf5, #ffffff);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid #d1fae5;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
  transition: transform 0.3s;
}
.stat-card:hover {
  transform: translateY(-6px);
}
.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: #065f46;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: #64748b;
}
.advantages-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f0fdf4, #d1fae5);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(6, 95, 70, 0.08);
  border-top: 4px solid #10b981;
  transition: all 0.3s;
}
.advantage-card:hover {
  box-shadow: 0 12px 36px rgba(6, 95, 70, 0.15);
  transform: translateY(-8px);
}
.advantage-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #10b981, #065f46);
}
.advantage-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.advantage-card h3 {
  font-size: 18px;
  color: #065f46;
  margin-bottom: 12px;
  font-weight: 700;
}
.advantage-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}
.story-section {
  padding: 70px 0;
  background: #fff;
}
.story-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}
.story-image {
  flex: 1;
  min-width: 300px;
}
.story-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(6, 95, 70, 0.15);
}
.story-content {
  flex: 1;
  min-width: 300px;
}
.story-content h2 {
  font-size: 30px;
  color: #065f46;
  margin-bottom: 16px;
  font-weight: 800;
}
.story-content p {
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.live-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #065f46, #10b981);
}
.live-section .section-title {
  color: #fff;
}
.live-section .section-subtitle {
  color: #d1fae5;
}
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.live-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.live-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.live-card-img {
  height: 160px;
  background: #065f46;
  position: relative;
  overflow: hidden;
}
.live-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.live-info {
  padding: 18px;
}
.live-info h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.live-info p {
  color: #d1fae5;
  font-size: 13px;
}
.rankings-section {
  padding: 70px 0;
  background: #fff;
}
.rankings-list {
  max-width: 800px;
  margin: 0 auto;
}
.rank-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 16px;
  margin-bottom: 12px;
  gap: 20px;
  transition: background 0.3s;
}
.rank-item:hover {
  background: #ecfdf5;
}
.rank-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #065f46);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.rank-info {
  flex: 1;
}
.rank-info h4 {
  font-size: 16px;
  color: #1e293b;
  font-weight: 700;
}
.rank-info span {
  font-size: 13px;
  color: #64748b;
}
.rank-count {
  font-size: 14px;
  color: #10b981;
  font-weight: 700;
}
.highlights-section {
  padding: 70px 0;
  background: #f0fdf4;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6, 95, 70, 0.06);
  transition: all 0.3s;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(6, 95, 70, 0.15);
}
.highlight-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.highlight-body {
  padding: 18px;
}
.highlight-body h4 {
  font-size: 16px;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 8px;
}
.highlight-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}
.news-section {
  padding: 70px 0;
  background: #fff;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.news-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 24px;
  border-left: 4px solid #10b981;
  transition: all 0.3s;
}
.news-card:hover {
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}
.news-date {
  display: inline-block;
  background: #065f46;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.news-card h3 {
  font-size: 19px;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
}
.reviews-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ecfdf5, #d1fae5);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(6, 95, 70, 0.06);
  position: relative;
}
.review-card::before {
  content: "\201C";
  font-size: 60px;
  color: #10b981;
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card p {
  font-size: 14px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 16px;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.review-user strong {
  font-size: 15px;
  color: #065f46;
}
.faq-section {
  padding: 70px 0;
  background: #fff;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: #f8fafc;
  border-radius: 16px;
  margin-bottom: 16px;
  padding: 22px 26px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: #10b981;
}
.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: #065f46;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  font-size: 24px;
  color: #10b981;
  font-weight: 400;
}
.faq-item.expanded .faq-question::after {
  content: "−";
}
.faq-answer {
  margin-top: 14px;
  color: #475569;
  font-size: 14px;
  line-height: 1.85;
  border-top: 1px solid #e2e8f0;
  padding-top: 14px;
}
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fbbf24, #10b981);
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary {
  background: #065f46;
  color: #fff;
  box-shadow: 0 6px 20px rgba(6, 95, 70, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(6, 95, 70, 0.45);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: #fff;
  color: #065f46;
}
.partners-section {
  padding: 70px 0;
  background: #fff;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.partner-logo {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}
.partner-logo:hover {
  background: #ecfdf5;
  transform: scale(1.05);
}
.partner-logo img {
  max-width: 80px;
  height: 50px;
  object-fit: contain;
}
.partner-logo span {
  display: block;
  font-size: 13px;
  color: #475569;
  margin-top: 8px;
  font-weight: 600;
}
.footer {
  background: #065f46;
  color: #d1fae5;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #d1fae5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #fbbf24;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #a7f3d0;
}
.footer-bottom a {
  color: #fbbf24;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .stats-grid, .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .live-grid, .highlights-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 12px;
  }
  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .geo-section h1 {
    font-size: 24px;
  }
  .hero-left h2 {
    font-size: 28px;
  }
  .stats-grid, .advantages-grid, .live-grid, .highlights-grid, .reviews-grid, .news-grid {
    grid-template-columns: 1fr;
  }
  .story-wrapper {
    flex-direction: column;
  }
}