/* ============================================
   缘来是你 TrueLove - 智能婚恋交友平台
   1:1 Figma设计还原 - 网页·粉色主题
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #e05a5a;
  --primary-dark: #c94a4a;
  --primary-darker: #b03e3e;
  --primary-light: #f5a3a3;
  --primary-pale: #fff5f5;
  --primary-gradient-start: #f0906f;
  --primary-gradient-end: #e05a5a;
  --primary-gradient: linear-gradient(135deg, #f0906f 0%, #e05a5a 100%);
  --primary-gradient-horizontal: linear-gradient(
    90deg,
    #f0906f 0%,
    #e05a5a 100%
  );
  --primary-gradient-vertical: linear-gradient(
    180deg,
    #f0906f 0%,
    #e05a5a 100%
  );
  --accent-gold: #e8b87a;
  --accent-gold-light: #f5d4a8;
  --text-dark: #4a4a4a;
  --text-medium: #666666;
  --text-light: #888888;
  --text-muted: #aaaaaa;
  --bg-white: #ffffff;
  --bg-cream: #fff8f8;
  --bg-pink: #fff5f5;
  --bg-pink-deep: #fef0f0;
  --bg-pink-gradient: linear-gradient(180deg, #fff5f5 0%, #fef0f0 100%);
  --border-light: #ffe0e0;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-phone: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 2px 12px rgba(224, 90, 90, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-xxl: 32px;
  --radius-pill: 999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    "Noto Sans SC",
    -apple-system,
    BlinkMacSystemFont,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 44px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
    width: 100vw;
    margin: 0;
  }
}

.news-container {
  background: url("../image/news-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 480px) {
  .news-container {
    background: url("../image/news-mobilebg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.new-header-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  width: 100%;
}

.section-padding {
  padding: 80px 0;
}

/* ---------- Typography ---------- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-deco .deco-line {
  width: 40px;
  height: 1px;
  background: var(--primary-light);
}

.section-deco i {
  color: var(--primary);
  font-size: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 10px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-badge i {
  font-size: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  border: none;
}

.btn-hero {
  padding: 16px 48px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 2px;
  min-width: 180px;
}

.btn-hero-primary {
  background: var(--primary-gradient-horizontal);
  color: white;
  box-shadow: 0 6px 20px rgba(224, 90, 90, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(224, 90, 90, 0.5);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.btn-gradient {
  background: var(--primary-gradient-horizontal);
  color: white;
  box-shadow: 0 4px 16px rgba(224, 90, 90, 0.35);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 90, 90, 0.45);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 28px;
  background: var(--primary-gradient-horizontal);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(224, 90, 90, 0.3);
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(224, 90, 90, 0.4);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.link-more:hover {
  gap: 10px;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 90, 90, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(224, 90, 90, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 76px; */
  height: 160px;
}

@media (max-width: 480px) {
  .header-inner {
    height: 74px;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  /* width: 20%;
  height: 20%; */
  max-width: 130px;
  max-height: 130px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(224, 90, 90, 0.1);
}

@media (max-width: 480px) {
  .logo-icon {
    width: 52px;
    height: 52px;
  }
}

.logo-char {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #e05a5a 0%, #c94a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Noto Sans SC", "KaiTi", "STKaiti", serif;
  line-height: 1;
  transform: rotate(-3deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 0.5rem 1.625rem;
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  border-radius: 8px;
  font-size: 1.8rem;
}

.nav-link:hover {
  color: var(--primary-dark);
  background: rgba(224, 90, 90, 0.06);
}

.nav-link.active {
  color: var(--primary-dark);
  font-weight: 700;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--primary-gradient-horizontal);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 480px) {
  .header-actions {
    gap: 4px;
  }
}

/* ---------- Language Switch ---------- */
.lang-switch {
  position: relative;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.lang-switch-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(224, 90, 90, 0.3);
}

.lang-switch-btn i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.lang-switch.open .lang-switch-btn i {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  .lang-switch-btn {
    height: 32px;
    font-size: 12px;
    padding: 7px 14px;
    display: block;
  }
}

.lang-switch-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 1001;
}

.lang-switch.open .lang-switch-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switch-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.95rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  width: 100%;
  font-family: inherit;
}

.lang-switch-item:hover {
  background: var(--bg-pink);
  color: var(--primary);
}

.lang-switch-item.active {
  color: var(--primary);
  font-weight: 600;
}

.lang-switch-item .lang-check {
  font-size: 0.85rem;
  color: var(--primary);
  opacity: 0;
}

.lang-switch-item.active .lang-check {
  opacity: 1;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 640px;
  /* background-color: red; */
  height: 85vh;
  max-height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 160px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240, 144, 111, 0.15) 0%,
    rgba(224, 90, 90, 0.1) 30%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  padding: 0 40px;
}

.hero-deco-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.corner-tl {
  top: -10px;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.corner-tr {
  top: -10px;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.corner-bl {
  bottom: -10px;
  left: 0;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

.corner-br {
  bottom: -10px;
  right: 0;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 4px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 44px;
  opacity: 0.95;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-subtitle span {
  position: relative;
}

.hero-subtitle .highlight-gold {
  color: var(--accent-gold);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero {
    padding-top: 60px;
  }

  .corner-tl {
    top: -10px;
    left: 30px;
  }

  .corner-tr {
    top: -10px;
    right: 30px;
  }

  .corner-bl {
    bottom: -10px;
    left: 30px;
  }

  .corner-br {
    bottom: -10px;
    right: 30px;
  }

  .hero-content-wrapper {
    bottom: 75px;
  }
}

/* Floating decorative icons */
.hero-float-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.hero-icon-location {
  top: 15%;
  right: 8%;
  animation-delay: 0.5s;
}

.hero-icon-check {
  bottom: 18%;
  left: 10%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ---------- Stats Section ---------- */
.stats-section {
  /* background: var(--bg-white); */
  background: url("../image/platformdatabg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  height: 580px;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--primary-gradient-horizontal);
  border-radius: 0 0 4px 4px;
}

.stats-flex {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 440px;
}

.stat-item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stat-item img {
  width: 5rem;
  height: 4.5rem;
}

.stat-item-content {
  font-weight: 700;
  font-size: 6rem;
  color: #cd4646;
}

.stat-item-des {
  font-weight: 700;
  font-size: 3rem;
  color: #826b60;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 480px) {
  .stats-section {
    background: url("../image/stats-section-mobile.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    height: 252px;
  }

  .stats-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .stats-flex {
    height: 100%;
  }

  .stat-item img {
    width: 35px;
    height: 32px;
  }

  .stat-item-content {
    font-size: 24px;
  }

  .stat-item-des {
    font-size: 20px;
  }
}

/* ---------- Stories Section ---------- */
.stories-section {
  /* background: var(--bg-white); */
  background: url("../image/witnessingbeautifulloveicon.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 1034px;
}

.stories-section-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 4.875rem;
}

.stories-section-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #cd4646;
  padding-left: 2.4rem;
  margin-top: 3.8rem;
  margin-bottom: 4rem;
}

.stories-section-des {
  font-weight: 700;
  font-size: 2.2rem;
  color: #8b6a38;
}

.stories-section-des span {
  color: #cd4646;
}

.stories-section-imgbox {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  gap: 60px;
  padding: 10px 40px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.stories-section-imgbox::-webkit-scrollbar {
  display: none;
}

.stories-section-imgbox {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.stories-section-item {
  flex: 0 0 auto;
  flex-shrink: 0;
  height: 500px;
  width: 378px;
  border: 6px solid #d56e6efc;
  scroll-snap-align: start;
  border-radius: 12px;
}

.stories-section-item img {
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  .stories-section {
    background: url("../image/witnessingbeautifulloveiconmobile.jpg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 542px;
    padding: 0 18px;
  }

  .stories-section-flex {
    margin-bottom: 28px;
  }

  .stories-section-title {
    font-size: 20px;
    margin-top: 34px;
    padding-left: 0;
    margin-bottom: 22px;
  }

  .stories-section-des {
    font-size: 16px;
  }

  .stories-section-imgbox {
    gap: 24px;
    padding: 0;
    /* margin: 0 18px; */
  }

  .stories-section-item {
    width: 260px;
    height: 380px;
  }
}

/* ---------- App Download Section ---------- */
.app-download-section {
  background: var(--bg-pink-gradient);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.app-download-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.heart-deco {
  position: absolute;
  opacity: 0.4;
}

.heart-deco::before,
.heart-deco::after {
  content: "";
  position: absolute;
  background: var(--primary-light);
  border-radius: 50%;
}

.heart-deco::before {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  border-radius: 50% 50% 0 50%;
}

.heart-deco::after {
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
  border-radius: 50% 50% 50% 0;
  left: 50%;
}

.heart-deco-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 5%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.heart-deco-2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 8%;
  opacity: 0.12;
  animation: float 5s ease-in-out infinite 1s;
}

.heart-deco-3 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 20%;
  opacity: 0.1;
  animation: float 4s ease-in-out infinite 0.5s;
}

.app-download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-download-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.phone-mockup {
  position: relative;
  width: 230px;
  height: 460px;
  background: #1a1a1a;
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
  z-index: 2;
}

.phone-mockup--front {
  z-index: 2;
  transform: rotate(-3deg);
}

.phone-mockup--back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(5deg);
  z-index: 1;
  opacity: 0.85;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff0f0 0%, #ffffff 40%, #fff5f5 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.phone-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-content {
  padding: 40px 14px 16px;
  height: 100%;
}

/* Front phone - Match profile */
.phone-avatar-stack {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 8px;
}

.phone-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe4c4, #deb887);
  border: 2px solid white;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.phone-avatar-circle:first-child {
  margin-left: 0;
}

.phone-avatar-circle:nth-child(2) {
  background: linear-gradient(135deg, #f5a3a3, #e05a5a);
}

.phone-avatar-circle:nth-child(3) {
  background: linear-gradient(135deg, #e8b87a, #d4a05a);
}

.phone-avatar-circle:nth-child(4) {
  background: linear-gradient(135deg, #b8e0d2, #7fc8a9);
}

.phone-match-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 14px;
}

.phone-profile-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(224, 90, 90, 0.1);
  margin: 0 6px;
}

.phone-profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe4c4, #deb887);
  margin: 0 auto 12px;
  border: 3px solid var(--primary-pale);
}

.phone-profile-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.phone-profile-desc {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.phone-match-btn {
  background: var(--primary-gradient-horizontal);
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(224, 90, 90, 0.3);
}

/* Back phone - Chat list */
.phone-chat-list {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-chat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.phone-chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5a3a3, #e05a5a);
  flex-shrink: 0;
}

.phone-chat-item:nth-child(2) .phone-chat-avatar {
  background: linear-gradient(135deg, #ffe4c4, #deb887);
}

.phone-chat-item:nth-child(3) .phone-chat-avatar {
  background: linear-gradient(135deg, #b8e0d2, #7fc8a9);
}

.phone-chat-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.phone-chat-msg {
  font-size: 0.65rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.app-download-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.download-badge {
  gap: 10px;
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* .download-badge i {
  font-size: 1.3rem;
  animation: bounce 2s ease-in-out infinite;
} */

.download-badge img {
  height: 48px;
  animation: bounce 2s ease-in-out infinite;
}

.download-badge-text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
  text-align: center;
  background: url("../image/downloadtext.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 26px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.store-buttons--primary {
  gap: 16px;
  margin-bottom: 2.8rem;
}

.store-buttons--secondary {
  gap: 10px;
  margin-bottom: 1.5rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.store-btn--apple {
  background: #fff;
  color: 333;
  padding: 12px 26px;
  font-size: 0.95rem;
}

.store-btn--apple i {
  font-size: 1.2rem;
}

.store-btn--apple:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.store-btn--android {
  background: var(--primary-gradient-horizontal);
  color: white;
  padding: 12px 26px;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(224, 90, 90, 0.3);
}

.store-btn--android i {
  font-size: 1.2rem;
}

.store-btn--android:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 90, 90, 0.4);
}

.store-btn--outline {
  background: white;
  color: var(--text-medium);
  border: 1.5px solid #f0d0d0;
}

.store-btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.store-btn--solid {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(224, 90, 90, 0.25);
}

.store-btn--solid:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(224, 90, 90, 0.35);
}

.store-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dot-xiaomi {
  background: #ff6900;
}
.dot-huawei {
  background: #cf0a2c;
}
.dot-vivo {
  background: #415fff;
}
.dot-yingyongbao {
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.store-btn--solid .dot-yingyongbao {
  background: white;
}
.dot-honor {
  background: #00bfff;
}

.qr-code {
  text-align: center;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.qr-box-des {
  font-weight: 700;
  font-size: 24px;
  color: #8b6a38;
}

.qr-placeholder {
  width: 160px;
  height: 140px;
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(224, 90, 90, 0.1);
  border: 2px solid var(--primary-pale);
}

.qr-placeholder i {
  font-size: 3rem;
  color: #8b6a38;
}

.qr-placeholder.small {
  width: 100px;
  height: 100px;
}

.qr-placeholder.small i {
  font-size: 2rem;
}

/* ---------- About Preview Section ---------- */
.about-preview-section {
  background: var(--bg-white);
  background: url("../image/aboutusbg.png");
  background-size: cover;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 788px;
}

.about-preview-section-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  margin: auto;
  height: 100%;
  gap: 3.5rem;
}

.about-preview-section-box-left {
  height: 388px;
  width: 690px;
}

.about-preview-section-box-left img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
}

.about-preview-section-box-right {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* justify-content: center; */
}

.about-preview-section-box-right-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 418px;
}

.about-preview-section-box-right-title img {
  height: 1.5rem;
  object-fit: contain;
}

.about-preview-section-box-text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
  text-align: center;
  background: url("../image/textbase.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 26px;
  color: #cd4646;
}

.about-preview-section-box-right-des {
  font-weight: 500;
  font-size: 26px;
  color: #b89a6a;
  width: 418px;
}

.about-preview-section-box-right-des span {
  color: #d57171;
}

.about-preview-section-box-left-title {
  display: none;
}

@media (max-width: 480px) {
  .about-preview-section {
    height: 685px;
  }

  .about-preview-section-box {
    flex-direction: column;
    height: 485px;
  }

  .about-preview-section-box-left {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about-preview-section-box-left-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../image/textbase.png");
    background-size: 105% 106%;
    background-repeat: no-repeat;
    background-position: -4px 0px;
    margin-top: 64px;
  }

  .about-preview-section-box-left img {
    width: 300px;
    height: 168px;
    margin-top: 45px;
  }

  .about-preview-section-box-left-title img {
    width: 28px;
    height: 19px;
    margin-top: 0;
  }

  .about-preview-section-box-left-title .about-preview-section-box-text {
    font-size: 20px;
    background-size: 151px 62px;
    background: transparent;
    padding-left: 10px;
    padding-top: 22px;
    padding-right: 46px;
  }

  .about-preview-section-box-right-title {
    display: none;
  }

  .about-preview-section-box-right-des {
    width: 281px;
    font-size: 16px;
  }
}

/* ---------- News Section ---------- */
.news-section {
  background: url("../image/newsdatabg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 965px;
}

.news-section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 5.2rem;
}

.news-section-header-title {
  margin-top: 92px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.news-section-header-title img {
  height: 1.5rem;
  object-fit: contain;
}

.news-section-header-title-text {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 100%;
  text-align: center;
  background: url("../image/appshowcasetext.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 28px 57px 26px 24px;
  color: #cd4646;
}

.news-section-header-des {
  font-weight: 500;
  font-size: 26px;
  color: #7e746a;
  margin-top: 1.5rem;
}

.news-section-box-container {
  padding-inline: 64px;
}

.news-section-box {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  gap: 46px;
  padding: 10px 40px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.news-section-box::-webkit-scrollbar {
  display: none;
}

.news-section-box {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.news-section-box-item {
  flex: 0 0 auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 488px;
  width: 320px;
  scroll-snap-align: start;
  background: url("../image/newsbase.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.6rem 1.5rem;
}

.news-section-box-item img {
  width: 26rem;
  height: 10rem;
  margin-bottom: 3rem;
}

.news-section-box-item-time {
  font-weight: 600;
  font-size: 1rem;
  color: #8b6a38;
  margin-bottom: 2rem;
}

.news-section-box-item-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: #47392d;
  margin-bottom: 0.8rem;
}

.news-section-box-item-des {
  font-weight: 500;
  font-size: 1.2rem;
  color: #8b6a38;
}

@media (max-width: 480px) {
  .news-section {
    height: 100%;
  }

  .news-section {
    background: url("../image/newsmobile.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .news-section-header {
    margin-bottom: 20px;
  }

  .news-section-header-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../image/textbase.png);
    background-size: 105% 100%;
    background-repeat: no-repeat;
    background-position: -4px 0px;
    margin-top: 16px;
  }

  .news-section-header-title-text {
    padding-left: 10px;
    padding-top: 22px;
    padding-right: 46px;
  }

  .news-section-header-title img {
    width: 28px;
    height: 19px;
  }

  .news-section-header-title-text {
    background: transparent;
    font-size: 20px;
  }

  .news-section-header-des {
    font-size: 14px;
    margin-top: 0;
  }

  .news-section-box-container {
    padding-inline: 34px;
    padding-bottom: 36px;
  }

  .news-section-box {
    flex-direction: column;
    padding: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 1000px;
  }

  .news-section-box-item {
    max-height: 450px;
    padding: 37px 17px;
    height: 100%;
  }

  .news-section-box-item-time {
    font-size: 14px;
  }

  .news-section-box-item-title {
    font-size: 20px;
  }

  .news-section-box-item-des {
    font-size: 16px;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  background-size: cover;
  background-position: center;
  color: white;
  /* padding: 60px 0 0; */
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--primary-gradient-start),
    var(--primary)
  );
}

.footer-grid {
  /* display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; */
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 40px;
  /* margin-bottom: 40px; */
  background: url("../image/footerbanner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .logo {
  margin-bottom: 4px;
}

.footer-brand .logo-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
  font-family: "Noto Sans SC", "KaiTi", "STKaiti", serif;
  border-radius: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.footer-logo-wrap {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-char {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  font-family: "Noto Sans SC", "KaiTi", "STKaiti", serif;
  line-height: 1;
  transform: rotate(-3deg);
}

.footer-social {
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .footer-grid {
    padding: 24px;
    display: flex;
    margin: auto;
  }

  .footer-brand {
    display: none;
  }

  .footer-links-col {
    width: 50%;
    flex: 1;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-contact {
    flex: 1;
    width: 50%;
  }

  .footer-links li {
    font-size: 14px;
  }

  .footer-links a {
    font-size: 14px;
  }
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .footer-bottom {
    background: #d56e6efc;
  }
}

/* Footer QR Code */
.footer-qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
}

.footer-qr-code {
  width: 13rem;
  height: 13rem;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-qr-code i {
  font-size: 1.8rem;
  color: var(--primary-light);
}

.footer-qr-code img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-qr-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #dc726c;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-qr-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.footer-qr-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
  color: #d56e6efc;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: #d56e6efc;
  font-weight: 400;
}

.footer-links a {
  /* color: rgba(255, 255, 255, 0.8); */
  /* font-size: 0.9rem; */
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  /* color: white; */
  padding-left: 6px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 42px;
  justify-content: space-between;
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.footer-contact-box > .footer-contact-box-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d56e6efc;
}

.footer-contact-box > .footer-contact-box-content {
  font-size: 2rem;
  font-weight: 500;
  color: #d56e6efc;
}

@media (max-width: 480px) {
  .footer-contact-box {
    margin-bottom: 16px;
  }

  .footer-contact-box > .footer-contact-box-label {
    font-size: 20px;
  }

  .footer-contact-box > .footer-contact-box-content {
    font-size: 14px;
  }
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-contact-item > i {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-item > div > div:first-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer-contact-item > div > div:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom > .footer-bottom-address {
  color: #f5ebd7;
  font-weight: 900;
  font-size: 1.25rem;
}

.footer-bottom > .footer-bottom-internetprovider {
  color: #f5ebd7;
  font-weight: 400;
  font-size: 1.05rem;
}

@media (max-width: 480px) {
  .footer-bottom > .footer-bottom-address {
    font-size: 14px;
  }

  .footer-bottom > .footer-bottom-internetprovider {
    font-size: 14px;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ---------- Floating Download Button ---------- */
.float-download {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(224, 90, 90, 0.45);
  transition: var(--transition);
  font-size: 0.75rem;
  gap: 2px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.float-download i {
  font-size: 1.4rem;
}

.float-download:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 28px rgba(224, 90, 90, 0.55);
}

/* ---------- Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .story-card:nth-child(n + 4) {
    display: block;
  }

  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-card:nth-child(n + 4) {
    display: block;
  }

  .app-download-content,
  .about-preview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-download-visual {
    order: -1;
  }

  /* .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  } */
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
  .section-padding {
    padding: 50px 0;
  }

  /* 移动端右侧抽屉导航 */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: white;
    flex-direction: column;
    padding: 80px 20px 40px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    gap: 8px;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    overflow-y: auto;
    justify-content: flex-start;
  }

  .nav.active {
    right: 0;
  }

  /* 移动端遮罩层 */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  .nav-link {
    padding: 14px 16px;
    width: 100%;
    font-size: 1rem;
    border-radius: 12px;
  }

  .nav-link.active {
    background: var(--bg-pink);
  }

  .nav-link.active::after {
    left: 16px;
    right: auto;
    transform: none;
    width: 24px;
  }

  .mobile-toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* .hero {
    min-height: 500px;
    height: 70vh;
  } */

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 2px;
    gap: 12px;
  }

  .btn-hero {
    padding: 14px 36px;
    font-size: 1rem;
    min-width: 150px;
  }

  .hero-content-wrapper {
    padding: 0 20px;
  }

  .corner {
    width: 40px;
    height: 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-card:nth-child(5) {
    display: none;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-card:nth-child(5) {
    display: none;
  }

  /* .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  } */

  .phone-mockup--back {
    display: none;
  }
  .phone-mockup--front {
    transform: none;
  }

  .float-download {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    font-size: 0.65rem;
  }

  .float-download i {
    font-size: 1.1rem;
  }

  .download-badge {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 0;
    height: 70vh;
    margin-top: 74px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .btn-hero {
    width: 100%;
    max-width: 280px;
  }

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

  .store-buttons--primary {
    flex-direction: row;
    align-items: stretch;
    margin: 35px;
  }
  .store-btn {
    justify-content: center;
  }

  .stories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .qr-code {
    display: none;
  }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-pink);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ---------- Screen Reader Only ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   内页通用样式 (About, News, Contact, Download)
   ============================================ */

/* ---------- Page Header ---------- */
.page-header {
  margin-top: 160px;
  height: 20rem;
  text-align: center;
}

.contact_page_header {
  background: url("../image/contactbanner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 480px) {
  .contact_page_header {
    background: url("../image/contactmobile.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.page-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
  letter-spacing: 1px;
}

.new-header-sub {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
  letter-spacing: 1px;
}

@media (max-width: 480px) {
  .new-header-sub {
    font-size: 12px;
    margin: 0;
  }

  .page-title {
    margin: 0;
  }
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.page-breadcrumb a:hover {
  color: var(--primary);
}

@media (max-width: 480px) {
  .page-header {
    margin-top: 74px;
    padding-top: 0;
    height: 88px;
  }

  .page-title {
    font-size: 16px;
  }
}

/* ---------- About Page ---------- */

/* About Hero Banner */
.about-hero {
  position: relative;
  min-height: 480px;
  height: 70vh;
  max-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* padding-top: 72px; */
  padding-top: 160px;
}

.about-container {
  background: url("../image/aboutusheader.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about-header-sub {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
  letter-spacing: 1px;
}

.about-header-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  width: 100%;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(224, 90, 90, 0.15) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 80px 0;
  max-width: 550px;
  margin-left: auto;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 4px;
  text-shadow:
    0 4px 20px rgba(224, 90, 90, 0.4),
    0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  letter-spacing: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  
  .about-container {
    background: url("../image/aboutusmobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .about-header-box {
    gap: 5px;
  }

  .about-header-sub {
    font-weight: 500;
    font-size: 12px;
    margin: 0;
  }
}

/* Hero decorative elements */
.about-hero-deco {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.about-hero-deco i {
  font-size: 1rem;
}

.deco-heart-1 {
  top: 25%;
  left: 10%;
  font-size: 1.5rem;
  animation: floatDeco 4s ease-in-out infinite;
}

.deco-heart-2 {
  bottom: 30%;
  left: 20%;
  font-size: 0.9rem;
  animation: floatDeco 5s ease-in-out infinite 1s;
}

.deco-star-1 {
  top: 35%;
  left: 30%;
  font-size: 0.8rem;
  animation: floatDeco 3.5s ease-in-out infinite 0.5s;
}

@keyframes floatDeco {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
    opacity: 0.6;
  }
}

/* Company Introduction */
.company-intro {
  background: url(../image/aboutus-box1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.company-intro-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.company-intro-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.company-intro-header img {
  width: 3rem;
  height: 3rem;
}

.company-intro-header-text {
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 100%;
  text-align: center;
  background: url("../image/downloadtext.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px;
  color: #cd4646;
}

.company-intro-sub {
  font-weight: 500;
  font-size: 1.5rem;
  color: #d56e6efc;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.company-intro-content {
  display: flex;
  flex-direction: row;
  gap: 2.6rem;
}

.company-intro-item {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  font-weight: 500;
  font-size: 2rem;
  color: #cd4646;
}

.company-intro-item img {
  height: 320px;
}

.company-intro-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--primary-gradient-start),
    var(--primary)
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(224, 90, 90, 0.3);
}

.company-intro-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.highlight-bg {
  background: linear-gradient(
    180deg,
    transparent 62%,
    rgba(232, 184, 122, 0.4) 62%
  );
  padding: 0 10px;
  display: inline-block;
}

.company-intro-body {
  max-width: 100%;
}

.company-intro-text {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 2;
  margin-bottom: 20px;
  font-weight: 400;
}

.company-intro-text--lead {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}

.company-intro-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .company-intro-content {
    flex-direction: column;
  }

  .company-intro-header {
    background: url("../image/downloadtext.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px;
    color: #cd4646;
    gap: 0;
    width: 160px;
    padding-inline: 0;
    justify-self: center;
    margin-top: 38px;
    margin-bottom: 0;
  }

  .company-intro-header img {
    width: 16px;
    height: 16px;
  }

  .company-intro-header-text {
    background: transparent;
    font-size: 20px;
    padding: 0;
    padding-left: 11px;
  }

  .company-intro-sub {
    font-size: 14px;
    padding-inline: 26px;
    padding-top: 14px;
    padding-bottom: 23px;
  }

  .company-intro-item img {
    height: 170px;
  }

  .company-intro-item {
    font-size: 14px;
    gap: 23px;
  }

  .company-intro-item p {
    text-align: center;
  }

  .company-intro-content {
    margin-bottom: 34px;
  }
}

/* Mission Section */
.mission-section {
  /* background: var(--bg-pink); */
  background: url(../image/companyculturebottom.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 1103px;
  position: relative;
  overflow: hidden;
}

.mission-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.mission-section-header img {
  width: 3rem;
  height: 3rem;
}

.mission-section-header-text {
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 100%;
  text-align: center;
  background: url("../image/downloadtext.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px;
  color: #cd4646;
}

.mission-section-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-section-item {
  background-color: #faf2e7;
  display: flex;
  flex-direction: row;
  padding: 50px 70px;
  flex: 1;
  width: 100%;
  align-items: center;
}

.mission-section-item-1 {
  border-radius: 0 60px 60px 60px;
}

.mission-section-item-2 {
  border-radius: 60px 60px 0px 60px;
}

.mission-section-item-3 {
  border-radius: 0 60px 0px 60px;
}

.mission-section-item-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 32px;
  color: #d56e6efc;
}

.mission-section-item-dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 100%;
  background-color: #d56e6efc;
}

.mission-section-item-divier {
  border: 1px solid #8b6a3870;
  height: 60px;
  width: 1px;
  margin-left: 2.5rem;
  margin-right: 3.1rem;
}

.mission-section-item-right {
  display: flex;
  flex-wrap: wrap;
  color: #8b6a38;
  font-weight: 400;
  font-size: 28px;
  max-width: 767px;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 184, 122, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.mission-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(224, 90, 90, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.mission-section .container {
  position: relative;
  z-index: 1;
}

.mission-section .section-title span {
  color: var(--primary);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(224, 90, 90, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient-horizontal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(224, 90, 90, 0.15);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(224, 90, 90, 0.3);
  transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 28px rgba(224, 90, 90, 0.4);
}

.mission-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.mission-card-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
}

@media (max-width: 480px) {
  .mission-section {
    min-height: 0;
    background: url("../image/missionmobile.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .mission-section-header {
    background: url("../image/downloadtext.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px;
    color: #cd4646;
    gap: 0;
    width: 160px;
    padding-inline: 0;
    justify-self: center;
    margin-top: 38px;
    margin-bottom: 0;
  }

  .mission-section-header img {
    width: 18px;
    height: 16px;
  }

  .mission-section-header-text {
    background: transparent;
    font-size: 20px;
    padding: 0;
    padding-left: 11px;
  }

  .mission-section-item {
    padding: 14px 17px;
    justify-content: space-between;
  }

  .mission-section-item-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cd4646;
  }

  .mission-section-item-divier {
    height: 61px;
    margin-inline: 11px;
  }

  .mission-section-item-left p {
    font-size: 14px;
  }

  .mission-section-item-right {
    font-size: 12px;
    max-width: 160px;
  }

  .mission-section-item-1 {
  }

  .mission-section-item-2 {
  }

  .mission-section-item-3 {
    margin-bottom: 35px;
  }
}

/* History */

.history-section {
  background: linear-gradient(180deg, #fff5f0 0%, #fff0ee 50%, #fde8e4 100%);
}

.history-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.history-header img {
  width: 3rem;
  height: 3rem;
}

.history-title {
  font-size: 2rem;
  font-weight: 800;
  color: #c04a4a;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.history-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 44px;
  transform: translateY(-50%);
  background: linear-gradient(
    100deg,
    transparent 0%,
    #f8e2a8 15%,
    #f7d98b 50%,
    #f8e2a8 85%,
    transparent 100%
  );
  border-radius: 6px;
  z-index: -1;
  opacity: 0.85;
}

.history-title i {
  font-size: 1.8rem;
  color: #c04a4a;
}

.timeline {
  position: relative;
  padding-left: 16.25rem;
  max-width: 700px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    #c9a885 0%,
    #d4b894 30%,
    #ddc6a8 60%,
    #e6d5c0 100%
  );
}

.timeline-item {
  position: relative;
  padding-bottom: 60px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  position: absolute;
  left: -12.5rem;
  width: 6.25rem;
  top: -0.625rem;
  text-align: right;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d07777;
  line-height: 1.4;
}

.timeline-dot {
  position: absolute;
  left: -13.7rem;
  /* top: 8px; */
  width: 16px;
  height: 16px;
  background: #f2a6a6;
  border-radius: 50%;
  border: none;
  box-shadow: none;
}

.timeline-content {
  position: relative;
  padding-left: 36px;
  top: -0.625rem;
}

.timeline-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #b95656;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.timeline-bullet {
  color: #b95656;
  font-size: 1rem;
  line-height: 1;
}

.timeline-desc {
  font-size: 0.98rem;
  color: #d08888;
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 480px) {
  .history-section > .container {
    padding-top: 18px;
    padding-bottom: 90px;
  }
  .history-section {
    background: url(../image/history-bg-mobile.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .history-header {
    background: url("../image/downloadtext.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    gap: 5px;
    margin-bottom: 39px;
    width: 160px;
    justify-self: center;
  }

  .history-header img {
    width: 18px;
    height: 18px;
  }

  .mission-section-header-text {
    font-size: 20px;
    padding: 18px 0;
  }

  .timeline {
    padding-right: 28px;
  }

  .timeline-year {
    font-size: 12px;
    left: -95px;
    top: -5px;
  }

  .timeline::before {
    left: 38px;
  }
}

/* ---------- News Page ---------- */
.news-list {
  background: linear-gradient(180deg, #fff5f5 0%, #fff8f8 100%);
  display: flex;
}

/* 两栏布局：左侧分类 + 右侧列表 */
.news-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 480px) {
  .news-layout {
    margin-block: 24px;
  }
}

/* 左侧分类栏 */
.news-sidebar {
  position: sticky;
  top: 100px;
}

.news-sidebar-inner {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  box-shadow: 0 4px 24px rgba(224, 90, 90, 0.08);
  border: 1px solid rgba(255, 230, 230, 0.8);
}

.news-sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-light);
  text-align: center;
}

.news-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-btn {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  background: transparent;
  transition: var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover {
  color: var(--primary);
  background: var(--bg-pink);
  border-color: var(--primary-light);
}

.filter-btn.active {
  background: var(--primary-gradient-horizontal);
  color: white;
  box-shadow: 0 4px 12px rgba(224, 90, 90, 0.3);
  border-color: transparent;
}

.filter-btn i {
  font-size: 0.85rem;
}

.news-main {
  max-width: 800px;
}

/* 右侧新闻列表 - 横向卡片 */
.news-list .news-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-list .news-card {
  display: flex;
  align-items: stretch;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(224, 90, 90, 0.06);
  transition: var(--transition);
  border: 1px solid rgba(255, 230, 230, 0.5);
  cursor: pointer;
}

.news-list .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(224, 90, 90, 0.12);
}

.news-list .news-image {
  width: 280px;
  min-width: 280px;
  height: auto;
  min-height: 180px;
  max-height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-list .news-card:hover .news-image {
  transform: scale(1.04);
}

.news-list .news-content {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.news-date {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.news-list .news-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: auto;
  transition: var(--transition);
}

.news-list .news-card:hover .news-title {
  color: var(--primary-dark);
}

.news-excerpt {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.news-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

.news-link i {
  font-size: 0.8rem;
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.page-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  background: var(--bg-white);
  transition: var(--transition);
  border: 1.5px solid var(--border-light);
}

.page-link:hover {
  color: var(--primary);
  border-color: var(--primary-light);
  background: var(--bg-pink);
}

.page-link.active {
  background: var(--primary-gradient-horizontal);
  color: white;
  box-shadow: 0 4px 12px rgba(224, 90, 90, 0.3);
  border-color: transparent;
}

/* ---------- Contact Page ---------- */
.contact-section {
  /* background: var(--bg-white); */
  background: linear-gradient(
    55.43deg,
    #ffeeed 31.46%,
    #fff2f4 66.99%,
    #fed0da 87.86%,
    #fed0da 102.81%
  );
}

.contact-map {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 40px;
}

.contact-map > img {
  width: 100%;
  height: 100%;
}

.contact-map-item1 {
  display: flex;
}

.contact-map-item2 {
  display: none;
}

@media (max-width: 480px) {
  .section-padding {
    padding: 0;
  }
  .contact-map {
    padding: 18px;
    width: 100%;
    margin: auto;
    margin-bottom: 40px;
  }

  .contact-map > img {
    width: 100%;
    height: 100%;
  }

  .contact-map-item1 {
    display: none;
  }

  .contact-map-item2 {
    display: flex;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-box {
  max-width: 1200px;
  margin: auto;
  padding: 40px 72px;
  background: linear-gradient(
    94.31deg,
    #f9f2f3 -12.9%,
    rgba(243, 226, 224, 0.75) 156.28%
  );
  border-radius: 12px;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.contact-info > p {
  color: var(--text-medium);
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-info-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-info-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--bg-white);
  padding: 36px;
  border-radius: var(--radius-xl);
}

.contact-form-wrap h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 27px;
  color: var(--primary);
}

.contact-form-wrap > p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #d56e6efc;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-white);
  transition: var(--transition);
  color: var(--text-dark);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224, 90, 90, 0.08);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 8px;
}

@media (max-width: 480px) {
  .contact-info-box {
    padding: 0;
    background: transparent;
  }

  .contact-form-wrap {
    padding: 32px 12px;
    margin-bottom: 30px;
  }
}

/* ---------- Download Page ---------- */
.download-section {
  background: linear-gradient(180deg, var(--bg-pink) 0%, var(--bg-cream) 100%);
  padding: 140px 0 60px;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--primary);
}

.download-text > p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 30px;
  line-height: 1.8;
}

.download-features {
  margin-bottom: 30px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.download-feature i {
  color: var(--primary);
  font-size: 1.1rem;
}

.download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.download-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.download-phone {
  position: relative;
}

.download-phone .phone-mockup {
  transform: scale(1.05);
}

.qr-section {
  background: var(--bg-white);
  text-align: center;
}

.qr-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.qr-item {
  text-align: center;
}

.qr-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 10px;
}

/* ---------- Download Box Section ---------- */

.download-box-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  justify-content: center;
  align-items: center;
}

.download-box-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.download-box-title i {
  font-size: 1.2rem;
  color: var(--primary-light);
}

.download-box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}

.download-box-content-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.download-box-content-right {
  gap: 18px;
  max-width: 480px;
  margin-block: auto;
}

.download-main-btns,
.download-store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.download-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.download-store-btn.apple,
.download-store-btn.outline {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1.5px solid var(--primary-light);
  box-shadow: 0 2px 8px rgba(224, 90, 90, 0.08);
}

.download-store-btn.android {
  background: var(--primary-gradient-horizontal);
  color: white;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 12px rgba(224, 90, 90, 0.3);
}

.download-store-btn.android:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 90, 90, 0.4);
}

.download-store-btn.apple:hover,
.download-store-btn.outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.download-store-btn.full {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

.download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.download-qr img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.download-qr span {
  font-size: 0.95rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* ---------- Responsive Inner Pages ---------- */
@media (max-width: 1024px) {
  .contact-grid,
  .download-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .download-box-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .download-box {
    padding-top: 60px;
    padding-bottom: 120px;
    min-height: auto;
  }

  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-layout {
    grid-template-columns: 180px 1fr;
    gap: 28px;
  }

  .news-list .news-image {
    width: 220px;
    min-width: 220px;
  }

  /* .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  } */

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* .page-header {
    padding: 100px 0 40px;
  } */
  /* .page-title {
    font-size: 1.8rem;
  } */

  .download-box {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .download-badge {
    font-size: 1.3rem;
  }

  .store-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .store-btn--apple,
  .store-btn--android {
    padding: 10px 20px;
  }

  .qr-placeholder {
    width: 110px;
    height: 110px;
  }

  .qr-placeholder i {
    font-size: 2.5rem;
  }

  .about-hero {
    min-height: 360px;
    height: auto;
    max-height: none;
  }

  .about-hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 50px 24px;
    max-width: 100%;
  }

  .about-hero-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .about-hero-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .deco-heart-1,
  .deco-heart-2,
  .deco-star-1 {
    display: none;
  }

  .company-intro-header {
    justify-content: center;
  }

  .company-intro-body {
    text-align: left;
  }

  .company-intro-text--lead {
    padding-left: 12px;
    font-size: 1.05rem;
  }

  .company-intro-text {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .company-intro-title {
    font-size: 1.5rem;
  }

  .history-title {
    font-size: 1.5rem;
  }

  .timeline {
    padding-left: 90px;
  }

  /* .timeline::before {
    left: 28px;
  } */

  /* .timeline-year {
    left: -90px;
    width: 56px;
    font-size: 1.1rem;
  } */

  .timeline-dot {
    left: -56px;
    width: 10px;
    height: 10px;
  }

  .timeline-content {
    padding-left: 20px;
  }

  .timeline-heading {
    font-size: 1.05rem;
  }

  .timeline-desc {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .company-intro-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-card {
    padding: 36px 24px;
  }

  .mission-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us-item {
    padding: 32px 24px;
  }

  .why-us-icon {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .download-text h1 {
    font-size: 1.8rem;
  }

  .qr-grid {
    flex-direction: column;
    align-items: center;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-sidebar {
    position: static;
  }

  .news-sidebar-inner {
    padding: 20px;
  }

  .news-sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .news-filter {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
  }

  .filter-btn {
    width: auto;
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .news-list .news-card {
    flex-direction: column;
  }

  .news-list .news-image {
    width: 100%;
    min-width: auto;
    height: 180px;
    min-height: auto;
    max-height: none;
  }

  .news-list .news-content {
    padding: 20px;
  }

  .news-list .news-title {
    font-size: 1.05rem;
  }

  /* .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  } */

  .footer-qr-section {
    padding-top: 16px;
    margin-top: 8px;
  }

  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   Download Page - 新版设计
   ============================================ */

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: var(--primary-gradient-horizontal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Download Hero Section ---------- */

.download-container {
  background: url("../image/downloadheader.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.download-box {
  background: url("../image/download-box1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 40px;
  padding-bottom: 195px;
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.download-hero {
  position: relative;
  background: linear-gradient(180deg, #fff5f5 0%, #fef0f0 50%, #ffe8e8 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.download-hero-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.download-hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.download-desimg {
  display: none;
}

@media (max-width: 480px) {
  .download-container {
    background: url("../image/downloadmobileheaderbg.png");
    /* background-size: 100% 92px; */
    background-size: cover;
    background-repeat: no-repeat;
  }

  .download-box {
    background: url("../image/downloadmobilecontentbg.png");
    padding-bottom: 0;
    min-height: 0;
  }

  .download-box-content {
    display: flex;
    flex-direction: column;
  }

  .download-box-content-right {
    margin-block: 12px;
  }

  .download-badge {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .download-badge img {
    width: 25px;
    height: 22px;
  }

  .download-badge-text {
    font-size: 20px;
    padding: 18px;
  }

  .download-desimg {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
  }

  .download-desimg-img1 {
    width: 139px;
    height: 276px;
    position: relative;
    left: 35px;
  }

  .download-desimg-img2 {
    width: 162px;
    height: 322px;
    position: relative;
    right: 35px;
  }
}

/* Left column - text */
.download-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.download-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 90, 90, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
}

.download-hero-badge i {
  font-size: 0.8rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.download-hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary);
  letter-spacing: 1px;
}

.download-hero-desc {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.9;
  max-width: 520px;
}

/* Feature list */
.download-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 8px 0;
}

.download-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.download-feature-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  box-shadow: 0 2px 6px rgba(224, 90, 90, 0.3);
}

/* App download buttons */
.download-app-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.app-store-btn,
.google-play-btn,
.huawei-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  min-width: 170px;
}

.app-store-btn {
  background: #1a1a1a;
  color: white;
}

.app-store-btn:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.app-store-btn i {
  font-size: 1.8rem;
}

.google-play-btn {
  background: var(--primary-gradient-horizontal);
  color: white;
  box-shadow: 0 4px 14px rgba(224, 90, 90, 0.35);
}

.google-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(224, 90, 90, 0.45);
}

.google-play-btn i {
  font-size: 1.5rem;
}

.huawei-btn {
  background: white;
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
}

.huawei-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(224, 90, 90, 0.12);
}

.huawei-btn i {
  font-size: 1.4rem;
  color: var(--primary);
}

.app-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-btn-text small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-btn-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Right column - visual */
.download-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-phone-wrapper {
  position: relative;
  width: 280px;
  height: 560px;
}

.download-phone-main {
  width: 260px;
  height: 520px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  z-index: 2;
}

.download-phone-main .phone-screen {
  background: linear-gradient(180deg, #fff0f0 0%, #ffffff 30%, #fff9f9 100%);
}

/* Phone notch */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

/* Phone content */
.download-phone-main .phone-content {
  padding: 36px 12px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-app-header {
  text-align: center;
  padding: 8px 0 4px;
}

.phone-app-logo {
  width: 44px;
  height: 44px;
  margin: 0 auto 6px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 900;
  font-family: "Noto Sans SC", "KaiTi", serif;
  box-shadow: 0 3px 10px rgba(224, 90, 90, 0.3);
}

.phone-app-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.phone-app-sub {
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* Match card in phone */
.phone-match-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 3px 12px rgba(224, 90, 90, 0.08);
  margin: 4px 4px 0;
}

.phone-match-avatar {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #ffe4c4 0%, #f5a3a3 50%, #e05a5a 100%);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.phone-match-avatar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.phone-match-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.phone-match-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.phone-match-age {
  color: var(--primary);
  font-weight: 600;
}

.phone-match-loc {
  font-size: 0.65rem;
  color: var(--text-light);
}

.phone-match-loc i {
  font-size: 0.55rem;
  margin-right: 2px;
}

.phone-match-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.phone-tag {
  font-size: 0.6rem;
  padding: 3px 8px;
  background: rgba(224, 90, 90, 0.08);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

/* Chat preview in phone */
.phone-chat-preview {
  background: white;
  border-radius: var(--radius-lg);
  padding: 10px;
  margin: 0 4px;
  box-shadow: 0 2px 8px rgba(224, 90, 90, 0.06);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-chat-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-medium);
  padding: 0 2px;
}

.phone-chat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px;
}

.phone-chat-avatar-sm {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5a3a3, #e05a5a);
}

.phone-chat-info {
  flex: 1;
  min-width: 0;
}

.phone-chat-info .phone-chat-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1px;
}

.phone-chat-info .phone-chat-msg {
  font-size: 0.6rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-chat-time {
  font-size: 0.55rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Bottom nav in phone */
.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 4px;
  background: white;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: 0 -12px -12px;
  border-top: 1px solid var(--border-light);
}

.phone-nav-item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
}

.phone-nav-item.active {
  color: var(--primary);
  background: rgba(224, 90, 90, 0.08);
}

/* Floating notification cards */
.float-notification {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 3;
  min-width: 160px;
}

.float-notif-1 {
  top: 80px;
  left: -40px;
  animation: floatNotif1 4s ease-in-out infinite;
}

.float-notif-2 {
  bottom: 100px;
  right: -30px;
  animation: floatNotif2 5s ease-in-out infinite 1s;
}

@keyframes floatNotif1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatNotif2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.float-notif-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(224, 90, 90, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.float-notif-icon.match-icon {
  background: rgba(127, 200, 169, 0.15);
  color: #5cb88a;
}

.float-notif-content {
  line-height: 1.3;
}

.float-notif-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.float-notif-desc {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ---------- QR Download Section ---------- */
.qr-download-section {
  background: var(--bg-white);
}

.qr-download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.qr-download-item {
  text-align: center;
  transition: var(--transition);
}

.qr-download-item:hover {
  transform: translateY(-6px);
}

.qr-download-item:hover .qr-download-code {
  box-shadow: 0 12px 32px rgba(224, 90, 90, 0.15);
}

.qr-download-code {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  background: white;
  border: 2px solid var(--primary-pale);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(224, 90, 90, 0.08);
  transition: var(--transition);
  overflow: hidden;
}

.qr-download-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.qr-download-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.wechat-icon i {
  color: #07c160;
}

.qr-download-pattern {
  position: absolute;
  inset: 12px;
  opacity: 0.6;
}

.qr-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid var(--primary);
  border-radius: 4px;
}

.wechat-qr .qr-corner {
  border-color: #07c160;
}

.qr-corner-tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.qr-corner-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
.qr-corner-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
.qr-corner-br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.qr-dots {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background-image: radial-gradient(
    circle,
    var(--primary) 1.5px,
    transparent 1.5px
  );
  background-size: 8px 8px;
  opacity: 0.5;
}

.wechat-qr .qr-dots {
  background-image: radial-gradient(circle, #07c160 1.5px, transparent 1.5px);
}

.qr-download-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.qr-download-label i {
  font-size: 1rem;
  color: var(--primary);
}

.qr-download-item:nth-child(3) .qr-download-label i {
  color: #07c160;
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(224, 90, 90, 0.35);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(224, 90, 90, 0.45);
}

/* ---------- Download Page Responsive ---------- */
@media (max-width: 1024px) {
  .download-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .download-hero-text {
    text-align: center;
    align-items: center;
  }

  .download-hero-desc {
    max-width: 100%;
  }

  .download-feature-list {
    justify-content: center;
  }

  .download-app-buttons {
    justify-content: center;
  }

  .download-hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .download-hero {
    padding: 110px 0 50px;
  }

  .download-hero-text h1 {
    font-size: 2rem;
  }

  .download-hero-desc {
    font-size: 0.9rem;
  }

  .download-feature-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .download-app-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .app-store-btn,
  .google-play-btn,
  .huawei-btn {
    justify-content: center;
    min-width: auto;
    width: 100%;
  }

  .download-phone-wrapper {
    width: 240px;
    height: 480px;
  }

  .download-phone-main {
    width: 220px;
    height: 440px;
  }

  .float-notif-1 {
    left: -20px;
    top: 60px;
    min-width: 140px;
  }

  .float-notif-2 {
    right: -10px;
    bottom: 80px;
    min-width: 140px;
  }

  .qr-download-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 280px;
  }

  .qr-download-code {
    width: 140px;
    height: 140px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .download-hero-text h1 {
    font-size: 1.7rem;
  }

  .download-phone-wrapper {
    width: 220px;
    height: 440px;
  }

  .download-phone-main {
    width: 200px;
    height: 400px;
  }

  .float-notification {
    display: none;
  }
}

/* ============================================
   介绍APP页面 - Intro Page
   ============================================ */

/* ---------- Intro Hero Section ---------- */

.intro-container {
  background: url("../image/softwareIntroduction.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.intro-header-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  width: 100%;
}

.intro-header-sub {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
  letter-spacing: 1px;
}

.intro-hero {
  position: relative;
  background: linear-gradient(180deg, #fff9f5 0%, #fff5f5 50%, #ffefef 100%);
  padding: 226px 0 100px;
  overflow: hidden;
}

.intro-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background-image:
    linear-gradient(rgba(224, 90, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 90, 90, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.intro-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(
    ellipse 80% 100% at 50% 100%,
    rgba(240, 144, 111, 0.15) 0%,
    transparent 70%
  );
}

.intro-hero-blush {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.intro-hero-blush-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: rgba(240, 144, 111, 0.2);
}

.intro-hero-blush-2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  right: 10%;
  background: rgba(224, 90, 90, 0.12);
}

/* Decorative petal */
.intro-petal {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  animation: petalFloat 6s ease-in-out infinite;
}

.intro-petal-1 {
  top: 35%;
  left: 8%;
  width: 50px;
  height: 65px;
  transform: rotate(-20deg);
}

@keyframes petalFloat {
  0%,
  100% {
    transform: rotate(-20deg) translateY(0);
  }
  50% {
    transform: rotate(-15deg) translateY(-15px);
  }
}

.intro-petal svg {
  width: 100%;
  height: 100%;
}

.intro-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  padding: 60px 0;
}

.intro-hero-text {
  text-align: right;
  max-width: 500px;
}

.intro-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 4px;
  line-height: 1.2;
}

.intro-hero-subtitle {
  font-size: 1.3rem;
  color: var(--primary-dark);
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.85;
}

@media (max-width: 480px) {
  .intro-container {
    background: url("../image/softmobile.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .intro-header-box {
    gap: 5px;
  }

  .intro-header-sub {
    font-size: 12px;
    margin-bottom: 0;
  }
}

/* ---------- App Showcase Section ---------- */
.app-showcase {
  background: url("../image/IntroduceBg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 1122px;
}

.app-showcase-box {
  padding-top: 133px;
  display: flex;
  flex-direction: row;
  gap: 11rem;
  margin: auto;
  justify-content: center;
  height: 908px;
}

.app-showcase-right {
  display: flex;
  flex-direction: column;
  max-width: 504px;
  align-items: center;
  justify-content: center;
}

.app-showcase-right-title {
  display: flex;
  max-width: 504px;
  flex-direction: row;
  align-items: center;
}

.app-showcase-right-title img {
  width: 4.375rem;
  height: 3.875rem;
}

.app-showcase-badge-text {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  background: url("../image/appshowcasetext.png");
  background-size: 75% 120%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 36px 26px;
  color: #cd4646;
}

.app-showcase-right-des {
  font-weight: 500;
  font-size: 1.2rem;
  color: #8b6a38;
  margin-top: 20px;
}

.app-showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

/* Center phone */
.showcase-phone {
  display: flex;
  justify-content: center;
  z-index: 2;
}

.phone-mockup--showcase {
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(224, 90, 90, 0.2),
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.phone-screen--showcase {
  background: linear-gradient(180deg, #fff0f0 0%, #ffffff 25%, #fff9f9 100%);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.phone-content--showcase {
  padding: 32px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Ripple effect in phone */
.phone-ripple-wrap {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
}

.phone-ripple {
  position: absolute;
  border: 1.5px dashed rgba(224, 90, 90, 0.2);
  border-radius: 50%;
  animation: rippleExpand 3s ease-out infinite;
}

.phone-ripple-1 {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.phone-ripple-2 {
  width: 120px;
  height: 120px;
  animation-delay: 0.6s;
}

.phone-ripple-3 {
  width: 170px;
  height: 170px;
  animation-delay: 1.2s;
}

@keyframes rippleExpand {
  0% {
    opacity: 0.8;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.phone-ripple-avatar {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(224, 90, 90, 0.2);
}

.phone-ripple-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-ripple-avatar-main {
  width: 72px;
  height: 72px;
  z-index: 3;
  animation: mainAvatarFloat 3s ease-in-out infinite;
}

@keyframes mainAvatarFloat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.phone-ripple-avatar-1 {
  width: 40px;
  height: 40px;
  top: 15px;
  right: 25px;
  animation: orbitFloat 4s ease-in-out infinite;
}

.phone-ripple-avatar-2 {
  width: 36px;
  height: 36px;
  bottom: 25px;
  left: 20px;
  animation: orbitFloat 4.5s ease-in-out infinite 0.5s;
}

.phone-ripple-avatar-3 {
  width: 38px;
  height: 38px;
  top: 35px;
  left: 10px;
  animation: orbitFloat 5s ease-in-out infinite 1s;
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.phone-match-card--showcase {
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 4px 16px rgba(224, 90, 90, 0.1);
  margin: 0 4px;
}

.phone-match-percent {
  text-align: right;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}

.phone-match-percent .percent-num {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--primary-gradient-horizontal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.phone-match-percent .percent-label {
  font-size: 0.55rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

/* Feature cards around phone */
.showcase-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 20px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(224, 90, 90, 0.08);
  transition: var(--transition);
  text-align: center;
  max-width: 180px;
  position: relative;
}

.showcase-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(224, 90, 90, 0.15);
}

.showcase-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(224, 90, 90, 0.3);
  margin-bottom: 4px;
}

.showcase-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.showcase-feature p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .app-showcase-box {
    flex-direction: column;
    gap: 0;
    height: 100%;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 27px;
  }

  .app-showcase-box img {
    height: 388px;
    width: 192px;
  }

  .app-showcase-right {
    margin-top: 24px;
  }

  .app-showcase-right-title img {
    width: 23px;
    height: 19px;
  }

  .app-showcase-badge-text {
    font-size: 20px;
    padding: 23px 12px;
    background-position: 10px;
    background-size: 80% 120%;
  }

  .app-showcase-right-des {
    font-size: 14px;
    max-width: 281px;
  }

  .app-showcase {
    height: 100%;
  }
}

/* Left side features */
.showcase-feature-left {
  justify-self: end;
}

.showcase-feature-1 {
  animation: floatFeature 4s ease-in-out infinite;
}

.showcase-feature-2 {
  animation: floatFeature 4.5s ease-in-out infinite 0.5s;
  margin-top: 20px;
}

.showcase-feature-3 {
  animation: floatFeature 5s ease-in-out infinite 1s;
  margin-top: 20px;
}

/* Right side features */
.showcase-feature-right {
  justify-self: start;
}

.showcase-feature-4 {
  animation: floatFeature 4.2s ease-in-out infinite 0.3s;
}

.showcase-feature-5 {
  animation: floatFeature 4.8s ease-in-out infinite 0.8s;
  margin-top: 20px;
}

.showcase-feature-6 {
  animation: floatFeature 5.2s ease-in-out infinite 1.2s;
  margin-top: 20px;
}

@keyframes floatFeature {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ---------- Core Features Section ---------- */
.core-features {
  background: url("../image/IntroduceBg1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 1022px;
}

.core-features-box {
  padding-top: 103px;
  display: flex;
  flex-direction: row;
  gap: 11rem;
  margin: auto;
  justify-content: center;
  height: 908px;
}

.core-features-box .left2img {
  /* height: 90%; */
  position: relative;
  bottom: -22%;
}

.core-features-right {
  display: flex;
  flex-direction: column;
  max-width: 504px;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.core-features-right-title {
  display: flex;
  max-width: 504px;
  flex-direction: row;
  align-items: center;
}

.core-features-right-title img {
  width: 2.8rem;
  height: 3rem;
}

.core-features-badge-text {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  background: url("../image/appshowcasetext.png");
  background-size: 75% 120%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 36px 26px;
  color: #cd4646;
}

.core-features-right-des {
  font-weight: 500;
  font-size: 1.2rem;
  color: #8b6a38;
  margin-top: 20px;
}

.core-features-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

@media (max-width: 480px) {
  .core-features {
    height: 100%;
  }
  .core-features-box {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    padding-top: 27px;
    height: 100%;
    align-items: center;
    padding-bottom: 27px;
  }

  .core-features-right {
    padding-top: 0;
    margin-top: 27px;
  }

  .core-features-right-title img {
    width: 18px;
    height: 20px;
  }

  .core-features-badge-text {
    font-size: 20px;
    padding: 23px 12px;
    background-position: 10px;
    background-size: 80% 120%;
  }

  .core-features-box .left2img {
    position: relative;
    bottom: 0;
    width: 191px;
    height: 397px;
  }

  .core-features-right-des {
    font-size: 14px;
    max-width: 281px;
  }
}

/* ---------- App Highlights Section ---------- */
.app-highlights {
  background: url("../image/highlightsBg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 1522px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-highlights-box {
  display: flex;
  flex-direction: row;
  gap: 11rem;
  margin: auto;
  justify-content: center;
  height: 908px;
}

.app-highlights-box .left2img {
  /* height: 90%; */
  position: relative;
  bottom: -22%;
}

.app-highlights-right {
  display: flex;
  flex-direction: column;
  max-width: 504px;
  padding-top: 8.5rem;
  /* align-items: center; */
  /* justify-content: center; */
}

.app-highlights-right-title {
  display: flex;
  max-width: 504px;
  flex-direction: row;
  align-items: center;
}

.app-highlights-right-title img {
  width: 2.8rem;
  height: 3rem;
}

.app-highlights-badge-text {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  background: url("../image/appshowcasetext.png");
  background-size: 75% 120%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 36px 26px;
  color: #cd4646;
}

.app-highlights-right-des {
  font-weight: 500;
  font-size: 1.2rem;
  color: #8b6a38;
  margin-top: 20px;
}

.app-highlights-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

.highlight-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  transition: var(--transition);
}

.highlight-card:hover .highlight-title {
  color: var(--primary);
}

.highlight-desc {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
}

.highlight-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.highlight-list i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .app-highlights {
    height: 100%;
  }

  .app-highlights-box {
    flex-direction: column;
    height: 100%;
    align-items: center;
    padding-top: 27px;
    gap: 20px;
  }

  .app-highlights-box img {
    width: 189px;
    height: 402px;
  }

  .app-highlights-right {
    padding: 0;
  }

  .app-highlights-right-title {
    justify-content: center;
  }

  .app-highlights-right-title img {
    width: 17px;
    height: 19px;
    align-items: center;
  }

  .app-highlights-right-des {
    max-width: 281px;
    font-size: 14px;
  }
}

/* ---------- Intro Download CTA Section ---------- */
.intro-download-cta {
  background: #ffeeed;
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 398px;
}

.intro-download-cta-box {
  background: linear-gradient(93.45deg, #ffeeed 59.06%, #ffffff 95.82%);
  height: 100%;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro-download-cta-title {
  display: flex;
  max-width: 504px;
  flex-direction: row;
  align-items: center;
}

.intro-download-cta-title img {
  width: 3.125rem;
  height: 2.57rem;
}

.intro-download-cta-btn {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  max-width: 13.75rem;
  background-color: #d56e6efc;
  color: #fff;
  padding: 0.5rem 2.2rem;
  border-radius: 120px;
  cursor: pointer;
}

.app-highlights-badge-text {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  background: url("../image/appshowcasetext.png");
  background-size: 75% 120%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 36px 26px;
  color: #cd4646;
}

@media (max-width: 480px) {
  .intro-download-cta {
    height: 100%;
    padding: 23px 0;
  }

  .intro-download-cta-box {
    background: transparent;
  }

  .app-highlights-badge-text {
    font-size: 20px;
    padding: 23px 12px;
    background-position: 10px;
    background-size: 80% 120%;
  }

  .intro-download-cta-title img {
    width: 21px;
    height: 17px;
  }

  .intro-download-cta-btn {
    width: 109px;
    font-size: 14px;
    padding: 9px 15px;
  }
}

.intro-cta-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.intro-cta-bg-deco .heart-deco {
  opacity: 0.1;
}

.intro-cta-bg-deco .heart-deco::before,
.intro-cta-bg-deco .heart-deco::after {
  background: white;
}

.intro-cta-content {
  position: relative;
  z-index: 1;
  color: white;
}

.intro-cta-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.intro-cta-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 36px;
  font-weight: 400;
}

.intro-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.intro-cta-btn {
  min-width: 180px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.intro-cta-btn i {
  font-size: 1.3rem;
}

.intro-cta-btn--light {
  background: white;
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.intro-cta-btn--light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.intro-cta-btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.intro-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: white;
}

.intro-cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.intro-cta-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.cta-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

.intro-cta-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* ---------- Intro Page Responsive ---------- */
@media (max-width: 1024px) {
  .intro-hero-title {
    font-size: 2.6rem;
  }

  .intro-hero-subtitle {
    font-size: 1.1rem;
  }

  .app-showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .showcase-feature-left,
  .showcase-feature-right {
    justify-self: center;
  }

  .showcase-feature-2,
  .showcase-feature-3,
  .showcase-feature-5,
  .showcase-feature-6 {
    margin-top: 0;
  }

  .showcase-phone {
    order: -1;
  }

  .showcase-feature-left,
  .showcase-feature-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .showcase-feature {
    max-width: none;
    width: 100%;
  }

  .core-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 450px;
    margin: 0 auto;
  }

  .highlight-card--featured {
    transform: none;
    order: -1;
  }

  .highlight-card--featured:hover {
    transform: translateY(-10px);
  }

  .intro-cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .intro-hero {
    padding: 100px 0 60px;
  }

  .intro-hero-grid {
    width: 50%;
    opacity: 0.5;
  }

  .intro-hero-content {
    justify-content: center;
    padding: 30px 0;
  }

  .intro-hero-text {
    text-align: center;
  }

  .intro-hero-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .intro-hero-subtitle {
    font-size: 1rem;
  }

  .intro-petal-1 {
    top: 25%;
    left: 5%;
    width: 35px;
    height: 45px;
  }

  .phone-mockup--showcase {
    width: 260px;
    height: 520px;
  }

  .showcase-feature-left,
  .showcase-feature-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .showcase-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .showcase-feature h4 {
    font-size: 0.9rem;
  }

  .showcase-feature p {
    font-size: 0.75rem;
  }

  .core-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .core-feature-card {
    padding: 32px 24px;
  }

  .core-feature-icon-bg {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .core-feature-title {
    font-size: 1.1rem;
  }

  .highlight-card {
    padding: 40px 28px;
  }

  .highlight-icon {
    width: 64px;
    height: 64px;
    font-size: 1.4rem;
  }

  .highlight-icon-wrap {
    width: 76px;
    height: 76px;
  }

  .highlight-icon-ring {
    width: 76px;
    height: 76px;
  }

  .highlight-title {
    font-size: 1.2rem;
  }

  .intro-cta-title {
    font-size: 1.6rem;
  }

  .intro-cta-subtitle {
    font-size: 0.95rem;
  }

  .intro-cta-stats {
    gap: 30px;
  }

  .cta-stat-number {
    font-size: 1.5rem;
  }

  .intro-cta-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .intro-hero-title {
    font-size: 1.8rem;
  }

  .phone-mockup--showcase {
    width: 240px;
    height: 480px;
  }

  .showcase-feature-left,
  .showcase-feature-right {
    grid-template-columns: 1fr 1fr;
  }

  .intro-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .intro-cta-btn {
    width: 100%;
    max-width: 260px;
  }
}

/* ============================================
   新闻详情弹窗 - News Detail Modal
   ============================================ */

/* Overlay */
.news-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.35s;
}

.news-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.news-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 2001;
  width: 92%;
  max-width: 1000px;
  max-height: 90vh;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.35s;
  pointer-events: none;
}

.news-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* Modal Inner */
.news-modal-inner {
  background: var(--bg-white);
  border-radius: 30px;
  box-shadow:
    0 4px 4px rgba(254, 208, 218, 0.78),
    0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

/* Close Button */
.news-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

.news-modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

/* Modal Content */
.news-modal-content {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 470px;
  max-height: 90vh;
}

/* Image Side */
.news-modal-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 470px;
}

.news-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body Side */
.news-modal-body {
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: linear-gradient(
    180deg,
    rgba(243, 226, 224, 0.75) 0%,
    rgba(255, 245, 245, 0.5) 100%
  );
  border-left: 1px solid rgba(213, 110, 110, 0.99);
}

.news-modal-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.news-modal-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-gradient);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
}

.news-modal-date {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-modal-date i {
  color: var(--primary-light);
}

.news-modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 24px;
}

.news-modal-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-medium);
}

.news-modal-text p {
  margin-bottom: 16px;
}

.news-modal-text p:last-child {
  margin-bottom: 0;
}

/* News Card Cursor */
.news-card {
  cursor: pointer;
}

.news-card .news-link {
  pointer-events: none;
}

/* ---------- Modal Responsive ---------- */
@media (max-width: 1024px) {
  .news-modal-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-modal-image-wrap {
    min-height: 220px;
    max-height: 280px;
  }

  .news-modal-body {
    padding: 32px 28px 28px;
    border-left: none;
    border-top: 1px solid rgba(213, 110, 110, 0.99);
  }

  .news-modal-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .news-modal-inner {
    border-radius: 20px;
  }

  .news-modal-image-wrap {
    min-height: 180px;
    max-height: 220px;
  }

  .news-modal-body {
    padding: 24px 20px 20px;
  }

  .news-modal-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }

  .news-modal-text {
    font-size: 0.9rem;
  }

  .news-modal-meta {
    gap: 10px;
    margin-bottom: 14px;
  }

  .news-modal-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
