* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: "Microsoft Yahei", "PingFang SC", "Helvetica Neue", sans-serif;
  color: #333333;
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background: #7c0220;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.btn-primary-full {
  display: inline-block;
  padding: 12px 32px;
  background: #7c0220;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  border-radius: 8px;
  text-align: center;
  padding: 12px;
}
.btn-primary-full:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #7c0220;
  border: 2px solid #7c0220;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #7c0220;
  color: #ffffff;
}
.btn-hero {
  display: inline-block;
  padding: 12px 32px;
  background: #7c0220;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 16px 48px;
  font-size: 18px;
  margin-top: 24px;
}
.btn-hero:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #7c0220;
  margin-bottom: 12px;
}
.section-title p {
  font-size: 18px;
  color: #666666;
}
.section-title-white {
  text-align: center;
  margin-bottom: 60px;
}
.section-title-white h2 {
  font-size: 36px;
  font-weight: 700;
  color: #7c0220;
  margin-bottom: 12px;
}
.section-title-white p {
  font-size: 18px;
  color: #666666;
}
.section-title-white h2 {
  color: #ffffff;
}
.section-title-white p {
  color: rgba(255, 255, 255, 0.9);
}
.text-white {
  color: #fff;
}
.w-8 {
  width: 32px;
}
.h-8 {
  height: 32px;
}
.w-4 {
  width: 16px;
}
.h-4 {
  height: 16px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .logo img {
  height: 48px;
  width: auto;
}
.header .logo .logo-name {
  font-size: 18px;
  font-weight: 700;
  color: #7c0220;
  line-height: 1.3;
}
.header .logo .logo-sub {
  font-size: 12px;
  color: #666666;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  transition: all 0.3s ease;
}
.header .nav .nav-link:hover {
  color: #7c0220;
}
.header .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .header-actions .btn-login {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #7c0220;
  border: 2px solid #7c0220;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 20px;
  font-size: 14px;
}
.header .header-actions .btn-login:hover {
  background: #7c0220;
  color: #ffffff;
}
.header .header-actions .btn-register {
  display: inline-block;
  padding: 12px 32px;
  background: #7c0220;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 20px;
  font-size: 14px;
}
.header .header-actions .btn-register:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.header .header-actions .user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid #7c0220;
  border-radius: 50px;
  color: #7c0220;
  font-weight: 500;
  cursor: pointer;
}
.header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}
.header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header .mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 16px 24px 28px;
  border-top: 1px solid #e0e0e0;
}
.header .mobile-menu .mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
  transition: all 0.3s ease;
}
.header .mobile-menu .mobile-link:hover {
  color: #7c0220;
}
.header .mobile-menu .mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.header .mobile-menu .mobile-actions .btn-login {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #7c0220;
  border: 2px solid #7c0220;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}
.header .mobile-menu .mobile-actions .btn-login:hover {
  background: #7c0220;
  color: #ffffff;
}
.header .mobile-menu .mobile-actions .btn-register {
  display: inline-block;
  padding: 12px 32px;
  background: #7c0220;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}
.header .mobile-menu .mobile-actions .btn-register:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.header .mobile-menu.open {
  display: flex;
}
.banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner-section .banner-swiper {
  height: 100%;
}
.banner-section .swiper-slide {
  position: relative;
}
.banner-section .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.banner-section .slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}
.banner-section .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 0;
}
.banner-section .slide-content h1 {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.banner-section .slide-content p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.88);
}
.banner-section .swiper-button-prev,
.banner-section .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.banner-section .swiper-button-prev::after,
.banner-section .swiper-button-next::after {
  font-size: 20px;
}
.banner-section .swiper-button-prev:hover,
.banner-section .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.38);
}
.banner-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.banner-section .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 5px;
  opacity: 1;
}
.why-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #7c0220;
  padding: 100px 0;
  overflow: hidden;
}
.why-section .why-map-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.why-section .container {
  position: relative;
  z-index: 1;
}
.why-section .section-title-white {
  margin-bottom: 80px;
}
.why-section .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-section .feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.why-section .feature-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
}
.why-section .feature-card .feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}
.why-section .feature-card .feature-icon i {
  font-size: 28px;
  color: #ffffff;
}
.why-section .feature-card .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-section .feature-card .feature-icon.has-image {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}
.why-section .feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.why-section .feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}
.about-section {
  padding: 100px 0;
  background: #ffffff;
}
.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.about-section .about-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #7c0220;
  margin-bottom: 24px;
}
.about-section .about-text p {
  color: #666666;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-section .about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}
.about-section .about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-section .stats-block {
  display: flex;
  background: #7c0220;
  border-radius: 12px;
  padding: 60px 40px;
}
.about-section .stats-block .stat-item {
  flex: 1;
  text-align: center;
}
.about-section .stats-block .stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.about-section .stats-block .stat-item .stat-num {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.about-section .stats-block .stat-item .stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}
.about-section .stats-block .stat-item .stat-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.members-title {
  text-align: center;
  padding: 0 0 50px 0;
}
.members-title h2 {
  font-size: 36px;
  line-height: 40px;
  color: #7c0220;
  font-weight: bold;
  margin-bottom: 16px;
}
.members-title p {
  font-size: 20px;
  line-height: 28px;
  color: #4a5565;
}
.members-section {
  padding: 100px 0;
  background: #ffffff;
}
.members-section .members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.members-section .member-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.members-section .member-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}
.members-section .member-card .member-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.members-section .member-card .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.members-section .member-card .member-img:hover img {
  transform: scale(1.06);
}
.members-section .member-card .member-img .member-age {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #7c0220;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.members-section .member-card .member-info {
  padding: 20px;
}
.members-section .member-card .member-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #7c0220;
  margin-bottom: 12px;
}
.members-section .member-card .member-info .member-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.members-section .member-card .member-info .member-meta span {
  font-size: 13px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 6px;
}
.members-section .member-card .member-info .member-meta span i {
  color: #7c0220;
  width: 14px;
}
.members-section .member-card .member-info p {
  font-size: 13px;
  color: #666666;
  margin-bottom: 16px;
  line-height: 1.6;
}
.members-section .member-card .member-info .member-actions {
  display: grid;
  grid-template-columns: minmax(0, 108px) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}
.members-section .member-card .member-info .member-like-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(124, 2, 32, 0.18);
  border-radius: 8px;
  background: #fff8fa;
  color: #7c0220;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.members-section .member-card .member-info .member-like-btn em {
  font-style: normal;
  min-width: 18px;
  text-align: center;
  color: #666666;
}
.members-section .member-card .member-info .member-like-btn:hover {
  border-color: #7c0220;
  background: rgba(124, 2, 32, 0.08);
}
.members-section .member-card .member-info .member-like-btn.active {
  background: #7c0220;
  color: #ffffff;
}
.members-section .member-card .member-info .member-like-btn.active em {
  color: rgba(255, 255, 255, 0.88);
}
.members-section .member-card .member-info .member-like-btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
.members-section .member-card .member-info .btn-primary-full {
  margin: 0;
}
.members-section .section-more {
  text-align: center;
}
.stories-section {
  padding: 100px 0;
  background: #f5f5f5;
}
.stories-section .stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stories-section .story-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.stories-section .story-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}
.stories-section .story-card .story-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.stories-section .story-card .story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stories-section .story-card .story-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, transparent 60%);
}
.stories-section .story-card .story-img .story-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
}
.stories-section .story-card .story-img .story-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.stories-section .story-card .story-img .story-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.stories-section .story-card .story-body {
  padding: 24px;
}
.stories-section .story-card .story-body .story-heart {
  font-size: 22px;
  color: #7c0220;
  display: block;
  margin-bottom: 12px;
}
.stories-section .story-card .story-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.82;
}
.footer {
  background: rgba(253, 251, 241, 0.85);
  padding: 80px 0 0;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer .footer-col .footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.footer .footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  color: #7c0220;
  margin-bottom: 12px;
}
.footer .footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #7c0220;
  margin-bottom: 16px;
}
.footer .footer-col > p {
  font-size: 14px;
  color: #666666;
  line-height: 1.75;
}
.footer .footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666666;
}
.footer .footer-col ul li a {
  transition: all 0.3s ease;
}
.footer .footer-col ul li a:hover {
  color: #7c0220;
}
.footer .footer-col .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer .footer-col .footer-contact li i {
  color: #7c0220;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer .footer-col.footer-contact-card {
  cursor: pointer;
}
.footer .footer-col.footer-contact-card h4,
.footer .footer-col.footer-contact-card .footer-contact li,
.footer .footer-col.footer-contact-card .footer-qrcode-trigger {
  transition: all 0.3s ease;
}
.footer .footer-col.footer-contact-card:hover h4,
.footer .footer-col.footer-contact-card:hover .footer-contact li,
.footer .footer-col.footer-contact-card:hover .footer-qrcode-trigger {
  color: #7c0220;
}
.footer .footer-col.footer-contact-card:hover .footer-contact li i {
  color: #7c0220;
}
.footer .footer-col .footer-contact-qrcode {
  cursor: inherit;
}
.footer .footer-col .footer-contact-qrcode:hover .footer-qrcode-trigger {
  color: #7c0220;
}
.footer .footer-col .footer-qrcode-trigger {
  color: #666666;
  cursor: inherit;
}
.footer .footer-col .footer-qrcode-trigger:hover {
  color: #7c0220;
}
.footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.footer .footer-social a:hover {
  background: #7c0220;
  color: #ffffff;
}
.footer .footer-bottom {
  border-top: 1px solid #ddd;
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #666666;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-overlay .modal-box {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  margin: 20px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-overlay .modal-header {
  position: relative;
  background: #7c0220;
  padding: 36px 24px;
  text-align: center;
}
.modal-overlay .modal-header h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}
.modal-overlay .modal-header .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.modal-overlay .modal-header .modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.modal-overlay .modal-form {
  padding: 32px;
}
.modal-overlay .modal-form .form-group {
  margin-bottom: 20px;
}
.modal-overlay .modal-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}
.modal-overlay .modal-form .form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}
.modal-overlay .modal-form .form-group input:focus {
  border-color: #7c0220;
  box-shadow: 0 0 0 3px rgba(124, 2, 32, 0.1);
}
.modal-overlay .modal-form .btn-modal-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: #7c0220;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-overlay .modal-form .btn-modal-submit:hover {
  opacity: 0.85;
}
.modal-overlay .modal-form .modal-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #666666;
}
.modal-overlay .modal-form .modal-switch button {
  background: none;
  border: none;
  color: #7c0220;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.modal-overlay .modal-form .modal-switch button:hover {
  text-decoration: underline;
}
.modal-overlay .modal-qrcode-body {
  padding: 32px;
  text-align: center;
}
.modal-overlay .modal-qrcode-body p {
  margin-top: 16px;
  font-size: 14px;
  color: #666666;
}
.modal-overlay .modal-qrcode-body .footer-qrcode-empty {
  margin-top: 0;
  line-height: 1.8;
}
.modal-overlay .modal-box-qrcode {
  max-width: 360px;
}
.modal-overlay .footer-qrcode-image {
  display: block;
  width: 220px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .why-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .members-section .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-section .about-grid {
    grid-template-columns: 1fr;
  }
  .about-section .stats-block {
    flex-direction: column;
  }
  .about-section .stats-block .stat-item {
    border-right: none;
    padding: 24px 0;
  }
  .about-section .stats-block .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
}
@media (max-width: 768px) {
  .header .nav,
  .header .header-actions {
    display: none;
  }
  .header .hamburger {
    display: flex;
  }
  .header .container {
    height: 64px;
  }
  .banner-section .slide-content h1 {
    font-size: 36px;
  }
  .banner-section .slide-content p {
    font-size: 16px;
  }
  .why-section {
    padding: 60px 0;
  }
  .about-section {
    padding: 60px 0;
  }
  .members-section {
    padding: 60px 0;
  }
  .stories-section {
    padding: 60px 0;
  }
  .stories-section .stories-grid {
    grid-template-columns: 1fr;
  }
  .section-title h2,
  .section-title-white h2 {
    font-size: 28px;
  }
  .footer {
    padding: 60px 0 0;
  }
  .footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .banner-section .slide-content h1 {
    font-size: 28px;
  }
  .why-section .features-grid {
    grid-template-columns: 1fr;
  }
  .members-section .members-grid {
    grid-template-columns: 1fr;
  }
  .members-section .member-card .member-info .member-actions {
    grid-template-columns: 1fr;
  }
}
.nav-link.active {
  color: #7c0220;
  font-weight: 700;
}
.mobile-link.active {
  color: #7c0220;
  font-weight: 700;
}
.page-banner {
  margin-top: 80px;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.page-banner h1 {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.page-banner p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .page-banner {
    height: 260px;
  }
  .page-banner h1 {
    font-size: 30px;
  }
  .page-banner p {
    font-size: 16px;
  }
}
.advantages-section {
  padding: 80px 0;
  background: #ffffff;
}
.advantages-section .advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantages-section .advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.advantages-section .advantage-card:hover {
  border-color: #7c0220;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}
.advantages-section .advantage-card .adv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #7c0220;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.advantages-section .advantage-card .adv-icon i {
  font-size: 24px;
  color: #ffffff;
}
.advantages-section .advantage-card .adv-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.advantages-section .advantage-card .adv-icon.has-image {
  background: #f5f5f5;
}
.advantages-section .advantage-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #7c0220;
  margin-bottom: 10px;
}
.advantages-section .advantage-card p {
  font-size: 13px;
  color: #666666;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .advantages-section .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .advantages-section .advantages-grid {
    grid-template-columns: 1fr;
  }
}
.vision-section {
  padding: 80px 0;
  background: #f5f5f5;
}
.vision-section .vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vision-section .vision-card {
  background: #7c0220;
  border-radius: 12px;
  padding: 40px;
}
.vision-section .vision-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.vision-section .vision-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}
.vision-section .vision-card.mission {
  background: #5a0018;
}
@media (max-width: 768px) {
  .vision-section .vision-grid {
    grid-template-columns: 1fr;
  }
}
.packages-section {
  padding: 100px 0;
  background: #f5f5f5;
}
.packages-section .packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.packages-section .package-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.packages-section .package-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
}
.packages-section .package-card .pkg-img {
  height: 220px;
  overflow: hidden;
}
.packages-section .package-card .pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.packages-section .package-card .pkg-img:hover img {
  transform: scale(1.06);
}
.packages-section .package-card .pkg-body {
  padding: 28px;
}
.packages-section .package-card .pkg-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: #7c0220;
  margin-bottom: 12px;
}
.packages-section .package-card .pkg-body p {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.packages-section .package-card .pkg-body .pkg-features {
  margin-bottom: 24px;
}
.packages-section .package-card .pkg-body .pkg-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333333;
  margin-bottom: 8px;
}
.packages-section .package-card .pkg-body .pkg-features li i {
  color: #7c0220;
  font-size: 13px;
}
@media (max-width: 768px) {
  .packages-section .packages-grid {
    grid-template-columns: 1fr;
  }
}
.filter-section {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 28px;
  margin-bottom: 36px;
}
.filter-section .filter-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.filter-section .filter-head i {
  color: #7c0220;
  font-size: 16px;
}
.filter-section .filter-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: #7c0220;
}
.filter-section .filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: end;
}
.filter-section .filter-item label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
}
.filter-section .filter-item select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.filter-section .filter-item select:focus {
  border-color: #7c0220;
}
.filter-section .filter-actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.filter-section .filter-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}
.filter-section .filter-buttons .btn-primary,
.filter-section .filter-buttons .filter-reset {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  text-align: center;
  justify-content: center;
}
.filter-section .filter-buttons .btn-primary {
  padding: 12px 16px;
}
.filter-section .filter-buttons .filter-reset {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
}
.filter-section .filter-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}
.filter-section .filter-range-separator {
  color: #666666;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 768px) {
  .filter-section .filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .filter-section .filter-grid {
    grid-template-columns: 1fr;
  }
  .filter-section .filter-range {
    grid-template-columns: 1fr;
  }
  .filter-section .filter-range-separator {
    display: none;
  }
}
.story-cta-section {
  background: #7c0220;
  padding: 80px 0;
  text-align: center;
}
.story-cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.story-cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .story-cta-section h2 {
    font-size: 26px;
  }
  .story-cta-section p {
    font-size: 15px;
  }
}
.profile-page {
  min-height: 100vh;
  background: #f5f5f5;
  padding-top: 80px;
}
.profile-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
}
.profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.profile-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
}
.sidebar-user {
  background: #7c0220;
  padding: 32px 20px;
  text-align: center;
}
.avatar-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
}
.avatar-wrap .avatar-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.avatar-wrap .avatar-img i {
  font-size: 38px;
  color: rgba(255, 255, 255, 0.85);
}
.avatar-wrap .avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}
.avatar-wrap .avatar-edit i {
  font-size: 12px;
  color: #7c0220;
}
.sidebar-username {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.sidebar-badge {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.sidebar-badge.vip {
  background: #FFD700;
  color: #7c3a00;
}
.sidebar-nav {
  padding: 12px 12px 20px;
}
.sidebar-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #555555;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}
.sidebar-nav .nav-item i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: #999999;
}
.sidebar-nav .nav-item:hover {
  background: #f9f0f2;
  color: #7c0220;
}
.sidebar-nav .nav-item:hover i {
  color: #7c0220;
}
.sidebar-nav .nav-item.active {
  background: #7c0220;
  color: #ffffff;
}
.sidebar-nav .nav-item.active i {
  color: #ffffff;
}
.sidebar-nav .nav-item.logout {
  color: #e53935;
  margin-top: 8px;
}
.sidebar-nav .nav-item.logout i {
  color: #e53935;
}
.sidebar-nav .nav-item.logout:hover {
  background: #fff0f0;
}
.profile-content .content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
}
.profile-content .form-group {
  display: flex;
  flex-direction: column;
}
.profile-content .form-group .form-label {
  font-size: 13px;
  font-weight: 600;
  color: #555555;
  margin-bottom: 8px;
}
.profile-content .form-group input,
.profile-content .form-group select,
.profile-content .form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #333333;
  transition: border-color 0.2s ease;
  outline: none;
  background: #ffffff;
  font-family: inherit;
}
.profile-content .form-group input:focus,
.profile-content .form-group select:focus,
.profile-content .form-group textarea:focus {
  border-color: #7c0220;
  box-shadow: 0 0 0 3px rgba(124, 2, 32, 0.08);
}
.profile-content .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.content-title {
  font-size: 24px;
  font-weight: 700;
  color: #7c0220;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0e6e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-title .title-tag {
  font-size: 13px;
  font-weight: 500;
  color: #999999;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.profile-view,
.profile-form {
  display: none;
}
.profile-view.show,
.profile-form.show {
  display: block;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.info-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 18px;
}
.info-item .info-label {
  font-size: 12px;
  color: #999999;
  margin-bottom: 4px;
}
.info-item .info-value {
  font-size: 15px;
  font-weight: 600;
  color: #222222;
}
.info-full {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.info-full .info-label {
  font-size: 12px;
  color: #999999;
  margin-bottom: 6px;
}
.info-full .info-value {
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-full {
  grid-column: 1 / -1;
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.btn-save {
  padding: 11px 36px;
  background: #7c0220;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-save:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-cancel {
  padding: 11px 28px;
  background: transparent;
  color: #666666;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cancel:hover {
  background: #f5f5f5;
}
.btn-edit {
  padding: 8px 22px;
  background: #7c0220;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-edit:hover {
  opacity: 0.88;
}
.form-section-max {
  max-width: 480px;
}
.pwd-tip {
  font-size: 12px;
  color: #999999;
  margin-top: 5px;
}
.vip-banner {
  background: linear-gradient(135deg, #7c0220 0%, #b5182e 100%);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}
.vip-banner .vip-icon {
  font-size: 48px;
  opacity: 0.9;
}
.vip-banner .vip-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.vip-banner .vip-info p {
  font-size: 14px;
  opacity: 0.85;
}
.vip-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pkg-card {
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.pkg-card:hover,
.pkg-card.selected {
  border-color: #7c0220;
  box-shadow: 0 4px 20px rgba(124, 2, 32, 0.16);
}
.pkg-card .pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e53935;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-card .pkg-name {
  font-size: 16px;
  font-weight: 700;
  color: #7c0220;
  margin-bottom: 12px;
}
.pkg-card .pkg-price {
  font-size: 36px;
  font-weight: 700;
  color: #7c0220;
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-card .pkg-price .price-unit {
  font-size: 18px;
}
.pkg-card .pkg-duration {
  font-size: 13px;
  color: #999999;
  margin-bottom: 20px;
}
.pkg-card .pkg-btn {
  width: 100%;
  padding: 10px;
  background: #7c0220;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pkg-card .pkg-btn:hover {
  opacity: 0.88;
}
.vip-perks {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px 28px;
}
.vip-perks h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}
.vip-perks ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.vip-perks ul li {
  font-size: 14px;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vip-perks ul li i {
  color: #7c0220;
  font-size: 13px;
}
.records-table {
  width: 100%;
  border-collapse: collapse;
}
.records-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #7c0220;
}
.records-table th:first-child {
  border-radius: 8px 0 0 0;
}
.records-table th:last-child {
  border-radius: 0 8px 0 0;
}
.records-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: #555555;
  border-bottom: 1px solid #f0f0f0;
}
.records-table tbody tr:hover td {
  background: #fdf8f9;
}
.records-table .amount-col {
  font-weight: 700;
  color: #7c0220;
}
.status-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.status-badge.done {
  background: #e8f5e9;
  color: #388e3c;
}
.empty-records {
  text-align: center;
  padding: 60px 0;
  color: #aaaaaa;
}
.empty-records i {
  font-size: 48px;
  opacity: 0.35;
  display: block;
  margin-bottom: 12px;
}
.liked-members-panel {
  margin-top: 24px;
  border: 1px solid #efe6ea;
  background: linear-gradient(180deg, #ffffff 0%, #fffafb 100%);
}
.liked-members-panel .liked-members-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.liked-members-panel .liked-members-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 0;
}
.liked-members-panel .liked-members-grid-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.liked-members-panel .liked-members-grid-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.liked-members-panel .liked-member-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f1e5e9;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(124, 2, 32, 0.08);
  overflow: hidden;
  background: #ffffff;
}
.liked-members-panel .liked-member-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(124, 2, 32, 0.12);
}
.liked-members-panel .liked-member-image {
  position: relative;
  height: 236px;
  background: #f8f1f4;
  overflow: hidden;
}
.liked-members-panel .liked-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.liked-members-panel .liked-member-image .member-age {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #7c0220;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}
.liked-members-panel .liked-member-image::after {
  display: none;
}
.liked-members-panel .liked-member-info {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 20px;
  background: #ffffff;
  min-height: 156px;
}
.liked-members-panel .liked-member-info h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.3;
  color: #5f1022;
}
.liked-members-panel .liked-member-info .member-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.liked-members-panel .liked-member-info .member-meta span {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
}
.liked-members-panel .liked-member-info .btn-primary-full {
  margin-top: auto;
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
}
.liked-members-panel .liked-members-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #f1e5e9;
  border-radius: 14px;
  background: #fff;
  flex-wrap: wrap;
}
.liked-members-panel .liked-members-summary > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.liked-members-panel .liked-members-summary > span::before {
  content: '\f004';
  font-family: FontAwesome;
  color: #7c0220;
  font-size: 15px;
}
.liked-members-panel .liked-members-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}
.liked-members-panel .liked-members-count i {
  color: #7c0220;
  font-size: 15px;
}
.liked-members-panel .liked-members-more {
  min-width: 168px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.liked-members-panel .liked-members-summary > .btn-save {
  min-width: 168px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.liked-members-panel .liked-members-pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}
.liked-members-panel .liked-members-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 40px 24px;
  border: 1px dashed #e8d8de;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  color: #94a3b8;
}
.guest-hint {
  text-align: center;
  padding: 80px 40px;
}
.guest-hint i {
  font-size: 72px;
  color: #dddddd;
  display: block;
  margin-bottom: 20px;
}
.guest-hint h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}
.guest-hint p {
  font-size: 15px;
  color: #888888;
  margin-bottom: 28px;
}
.guest-hint .btn-login-hint {
  padding: 13px 48px;
  background: #7c0220;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.guest-hint .btn-login-hint:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #333333;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.success {
  background: #388e3c;
}
.toast.error {
  background: #c62828;
}
.detail-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 120px 24px 80px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1600&q=80');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.detail-hero .hero-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: #ffffff;
}
.detail-hero .hero-icon svg {
  width: 100%;
  height: 100%;
}
.detail-hero .hero-title {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}
.detail-hero .hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.detail-hero .hero-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}
.detail-hero .hero-meta .meta-item i {
  font-size: 24px;
}
.detail-hero .hero-meta .meta-item span {
  display: inline-block;
}
@media (max-width: 768px) {
  .detail-hero {
    min-height: 400px;
    padding: 100px 20px 60px;
  }
  .detail-hero .hero-title {
    font-size: 32px;
  }
  .detail-hero .hero-meta {
    gap: 16px;
  }
  .detail-hero .hero-meta .meta-item {
    font-size: 16px;
  }
  .detail-hero .hero-meta .meta-item i {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .detail-hero {
    min-height: 350px;
    padding: 80px 16px 50px;
  }
  .detail-hero .hero-icon {
    width: 48px;
    height: 48px;
  }
  .detail-hero .hero-title {
    font-size: 28px;
  }
  .detail-hero .hero-meta {
    flex-direction: column;
    gap: 12px;
  }
  .detail-hero .hero-meta .meta-item {
    font-size: 15px;
  }
}
.detail-content {
  background: #f9fafb;
  padding: 64px 24px 80px;
}
.detail-content .container {
  max-width: 900px;
  margin: 0 auto;
}
.detail-content .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: #4a5565;
  font-size: 16px;
  line-height: 24px;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
  transition: all 0.3s ease;
}
.detail-content .back-link i {
  font-size: 20px;
  transition: all 0.3s ease;
}
.detail-content .back-link:hover {
  color: #7c0220;
}
.detail-content .back-link:hover i {
  transform: translateX(-4px);
}
.detail-content .story-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 48px;
  margin-bottom: 32px;
}
.detail-content .story-card .card-title {
  margin: 0 0 24px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #7c0220;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}
.detail-content .story-card .card-text {
  font-size: 18px;
  line-height: 29px;
  color: #364153;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
  text-align: justify;
}
@media (max-width: 768px) {
  .detail-content {
    padding: 48px 20px 64px;
  }
  .detail-content .back-link {
    margin-bottom: 24px;
    font-size: 15px;
  }
  .detail-content .story-card {
    padding: 32px 24px;
    margin-bottom: 24px;
  }
  .detail-content .story-card .card-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .detail-content .story-card .card-text {
    font-size: 16px;
    line-height: 27px;
  }
}
@media (max-width: 480px) {
  .detail-content {
    padding: 40px 16px 56px;
  }
  .detail-content .story-card {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .detail-content .story-card .card-title {
    font-size: 24px;
  }
  .detail-content .story-card .card-text {
    font-size: 15px;
    line-height: 26px;
  }
}
.timeline-section .story-card {
  padding-bottom: 32px;
}
.timeline-section .timeline-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.timeline-section .timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.timeline-section .timeline-item .timeline-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #7c0220;
  color: #ffffff;
}
.timeline-section .timeline-item .timeline-icon-wrapper i {
  font-size: 24px;
}
.timeline-section .timeline-item .timeline-content {
  flex: 1;
  padding-top: 8px;
}
.timeline-section .timeline-item .timeline-content .timeline-date {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #7c0220;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}
.timeline-section .timeline-item .timeline-content .timeline-desc {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #364153;
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}
@media (max-width: 768px) {
  .timeline-section .timeline-list {
    gap: 20px;
    margin-top: 24px;
  }
  .timeline-section .timeline-item {
    gap: 14px;
  }
  .timeline-section .timeline-item .timeline-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  .timeline-section .timeline-item .timeline-icon-wrapper i {
    font-size: 22px;
  }
  .timeline-section .timeline-item .timeline-content .timeline-date {
    font-size: 17px;
  }
  .timeline-section .timeline-item .timeline-content .timeline-desc {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .timeline-section .timeline-list {
    gap: 18px;
    margin-top: 20px;
  }
  .timeline-section .timeline-item {
    gap: 12px;
  }
  .timeline-section .timeline-item .timeline-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  .timeline-section .timeline-item .timeline-icon-wrapper i {
    font-size: 20px;
  }
  .timeline-section .timeline-item .timeline-content {
    padding-top: 6px;
  }
  .timeline-section .timeline-item .timeline-content .timeline-date {
    font-size: 16px;
    line-height: 26px;
  }
  .timeline-section .timeline-item .timeline-content .timeline-desc {
    font-size: 14px;
    line-height: 22px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.detail-hero,
.story-card,
.timeline-item {
  animation: fadeInUp 0.6s ease-out forwards;
}
.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}
@media (max-width: 900px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile-sidebar {
    position: static;
  }
  .sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
  }
  .sidebar-nav .nav-item {
    flex: 0 0 auto;
    padding: 10px 16px;
    margin-bottom: 0;
  }
  .info-grid,
  .form-grid,
  .vip-packages,
  .vip-perks ul {
    grid-template-columns: 1fr;
  }
  .profile-content .content-card {
    padding: 24px 20px;
  }
  .liked-members-panel .liked-members-grid-preview,
  .liked-members-panel .liked-members-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .profile-wrap {
    padding: 24px 16px;
  }
  .liked-members-panel .liked-members-grid-preview,
  .liked-members-panel .liked-members-grid-page {
    grid-template-columns: 1fr;
  }
  .liked-members-panel .liked-members-summary {
    align-items: stretch;
  }
  .liked-members-panel .liked-members-more {
    width: 100%;
    min-width: 0;
  }
  .liked-members-panel .liked-member-image {
    height: 220px;
  }
}
/*# sourceMappingURL=app.css.map */
