/* ===== 全局基础 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}
body {
  background: linear-gradient(145deg, #fff5f7 0%, #fdf2f8 40%, #fb7185 130%);
  color: #2d2d2d;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  border-radius: 14px;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

/* ===== 导航栏 ===== */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(251, 113, 133, 0.12);
  border-bottom: 1px solid rgba(251, 113, 133, 0.10);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(251, 113, 133, 0.25);
}
.logo span {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #fb7185, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #4a4a4a;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.6);
}
.nav-links a:hover {
  background: linear-gradient(135deg, #fb7185, #f472b6);
  color: #fff;
  box-shadow: 0 4px 16px rgba(251, 113, 133, 0.3);
  transform: translateY(-1px);
}

/* ===== 主容器 ===== */
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 32px 80px;
}

/* ===== H1区域 & GEO ===== */
.page-hero {
  text-align: center;
  padding: 56px 24px 24px;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #e11d48, #fb7185, #f9a8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.geo-intro-section {
  max-width: 980px;
  margin: 0 auto 48px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 28px;
  padding: 36px 44px;
  box-shadow: 0 8px 40px rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.geo-intro-section p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.85;
  margin-bottom: 14px;
}
.geo-intro-section p:last-child {
  margin-bottom: 0;
}

/* ===== 通用Section ===== */
.section {
  margin-bottom: 72px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1f1f1f;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #fb7185, #f9a8d4);
}
.section-header p {
  color: #7a7a7a;
  font-size: 15px;
  margin-top: 8px;
}

/* ===== Hero横幅 ===== */
.hero-section {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #fb7185 0%, #f472b6 55%, #f9a8d4 100%);
  padding: 72px 56px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  box-shadow: 0 16px 60px rgba(251, 113, 133, 0.35);
}
.hero-content {
  flex: 1 1 440px;
}
.hero-content h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #fff;
}
.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 28px;
}
.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #fb7185;
  font-weight: 800;
  font-size: 15px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}
.hero-image {
  flex: 1 1 320px;
}
.hero-image img {
  border-radius: 24px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ===== 数据统计 ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 30px rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(251, 113, 133, 0.15);
}
.stat-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  object-fit: cover;
}
.stat-card .num {
  font-size: 36px;
  font-weight: 900;
  color: #fb7185;
}
.stat-card .label {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 6px;
}

/* ===== 核心优势 ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.adv-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: 0 8px 36px rgba(251, 113, 133, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fb7185, #f9a8d4);
  border-radius: 0 0 8px 8px;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(251, 113, 133, 0.15);
}
.adv-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}
.adv-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #1f1f1f;
}
.adv-card p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.75;
}

/* ===== 品牌故事 ===== */
.story-wrap {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 40px 44px;
  box-shadow: 0 8px 40px rgba(251, 113, 133, 0.08);
}
.story-image {
  flex: 1 1 320px;
}
.story-image img {
  border-radius: 24px;
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.story-text {
  flex: 1 1 420px;
}
.story-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1f1f1f;
}
.story-text p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.85;
  margin-bottom: 12px;
}

/* ===== 荣誉时间线 ===== */
.timeline-list {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #fb7185, #f9a8d4);
}
.timeline-item {
  position: relative;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(251, 113, 133, 0.08);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fb7185;
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.2);
}
.timeline-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #1f1f1f;
}
.timeline-item p {
  font-size: 14px;
  color: #6b6b6b;
}
.timeline-item img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  margin-top: 12px;
}

/* ===== 服务覆盖 ===== */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.coverage-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(251, 113, 133, 0.06);
  transition: all 0.3s ease;
}
.coverage-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(251, 113, 133, 0.12);
}
.coverage-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
}
.coverage-item h3 {
  font-size: 16px;
  color: #1f1f1f;
  margin-bottom: 6px;
}
.coverage-item p {
  font-size: 13px;
  color: #7a7a7a;
}

/* ===== 焦点赛事 ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.event-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(251, 113, 133, 0.10);
  transition: all 0.3s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(251, 113, 133, 0.16);
}
.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}
.event-card .event-info {
  padding: 24px;
}
.event-card .event-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f1f1f;
}
.event-card .event-info p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
}

/* ===== 热门排行 ===== */
.rankings-list {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 32px 36px;
  box-shadow: 0 6px 30px rgba(251, 113, 133, 0.08);
}
.ranking-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #fdf2f8;
}
.ranking-item:last-child {
  border-bottom: none;
}
.ranking-item .rank {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #fb7185, #f472b6);
  font-size: 15px;
}
.ranking-item img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}
.ranking-item .team {
  flex: 1;
  font-weight: 600;
  color: #1f1f1f;
  font-size: 15px;
}
.ranking-item .points {
  color: #fb7185;
  font-weight: 800;
}

/* ===== 精彩集锦 ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.highlight-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(251, 113, 133, 0.10);
  transition: all 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(251, 113, 133, 0.16);
}
.highlight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}
.highlight-card .highlight-info {
  padding: 22px;
}
.highlight-card .highlight-info h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #1f1f1f;
}
.highlight-card .highlight-info p {
  font-size: 13px;
  color: #7a7a7a;
}

/* ===== 用户口碑 ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(251, 113, 133, 0.08);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(251, 113, 133, 0.14);
}
.testimonial-card .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.testimonial-card .quote {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 14px;
}
.testimonial-card .name {
  font-weight: 700;
  color: #1f1f1f;
  font-size: 15px;
}
.testimonial-card .role {
  font-size: 13px;
  color: #9a9a9a;
}

/* ===== 下载中心 ===== */
.download-wrap {
  display: flex;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, #fb7185, #f472b6);
  border-radius: 36px;
  padding: 48px 56px;
  color: #fff;
  box-shadow: 0 16px 60px rgba(251, 113, 133, 0.3);
  flex-wrap: wrap;
}
.download-info {
  flex: 1 1 360px;
}
.download-info h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #fff;
}
.download-info p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 24px;
}
.download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.download-btn {
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 15px;
  background: #fff;
  color: #fb7185;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.download-btn img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}
.download-image {
  flex: 1 1 260px;
}
.download-image img {
  border-radius: 28px;
  max-height: 360px;
  width: 100%;
  object-fit: cover;
}

/* ===== 行动呼吁 ===== */
.cta-banner {
  background: linear-gradient(135deg, #1f1f1f, #3d3d3d);
  border-radius: 32px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/img/gate.webp') center/cover no-repeat;
  opacity: 0.12;
}
.cta-banner h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 28px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.cta-banner a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(135deg, #fb7185, #f472b6);
  color: #fff;
  border-radius: 40px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 6px 24px rgba(251, 113, 133, 0.3);
  transition: all 0.3s ease;
}
.cta-banner a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(251, 113, 133, 0.4);
}

/* ===== 新闻列表 ===== */
.news-list {
  display: grid;
  gap: 32px;
}
.news-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  padding: 32px 36px;
  box-shadow: 0 6px 30px rgba(251, 113, 133, 0.08);
  transition: all 0.3s ease;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(251, 113, 133, 0.14);
}
.news-item .news-thumb {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}
.news-item .news-body {
  flex: 1 1 300px;
}
.news-item .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.news-item .news-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #fb7185, #f472b6);
}
.news-item .news-date {
  font-size: 14px;
  color: #9a9a9a;
  font-weight: 600;
}
.news-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f1f1f;
}
.news-item h3 a {
  color: inherit;
  transition: color 0.2s ease;
}
.news-item h3 a:hover {
  color: #fb7185;
}
.news-item p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.8;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 24px 30px;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(251, 113, 133, 0.06);
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 8px 32px rgba(251, 113, 133, 0.12);
}
.faq-item summary {
  font-size: 16px;
  font-weight: 700;
  color: #1f1f1f;
  cursor: pointer;
  position: relative;
  padding-left: 28px;
  list-style: none;
  outline: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb7185, #f472b6);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.85;
  margin-top: 14px;
  padding-left: 28px;
  border-left: 2px solid #fad0dd;
}

/* ===== 页脚 ===== */
.site-footer {
  background: linear-gradient(180deg, #fdf2f8, #ffffff);
  padding: 48px 32px 24px;
  border-top: 1px solid rgba(251, 113, 133, 0.12);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 12px;
}
.footer-brand h3 {
  font-size: 20px;
  color: #1f1f1f;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 14px;
  color: #7a7a7a;
  line-height: 1.7;
}
.footer-links h4 {
  font-size: 16px;
  color: #1f1f1f;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: #6b6b6b;
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fb7185;
}
.footer-contact h4 {
  font-size: 16px;
  color: #1f1f1f;
  margin-bottom: 16px;
}
.footer-contact p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 2;
}
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 113, 133, 0.12);
  font-size: 13px;
  color: #9a9a9a;
}
.footer-bottom a {
  color: #6b6b6b;
  margin: 0 8px;
  transition: color 0.2s ease;
}
.footer-bottom a:hover {
  color: #fb7185;
}

/* ===== 响应式 ===== */
@media (max-width: 960px) {
  .stats-grid, .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .adv-grid, .events-grid, .highlights-grid, .testimonials-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: 30px;
  }
  .hero-section {
    padding: 40px 24px;
  }
  .download-wrap {
    padding: 32px 24px;
  }
  .news-item .news-thumb {
    width: 100%;
    height: 180px;
  }
}