/* :: CSS Reset (Simplified) :: */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-sans-cn); background-color: var(--color-bg-main); color: var(--color-text-primary); line-height: 1.75; }
a { text-decoration: none; color: inherit; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--color-text-headings); }

/* :: Root Variables - Light Theme :: */
:root {
  --font-sans-cn: 'Noto Sans SC', 'Roboto', sans-serif;
  --font-sans-en: 'Montserrat', 'Roboto', sans-serif;

  --color-bg-main: #FFFFFF; /* Pure White */
  --color-bg-offset: #F8F9FA; /* Very light grey for sections */
  --color-surface: #FFFFFF; /* For cards, if different from bg-main */
  
  /* Primary Color: Green Gradient System */
  --color-primary-green-light: #2aae67;
  --color-primary-green-dark: #00706a;
  --color-primary-gradient: linear-gradient(90deg, var(--color-primary-green-light) 0%, var(--color-primary-green-dark) 100%);
  /* For solid color fallbacks or specific uses, we might pick one, e.g., the lighter one */
  --color-primary: var(--color-primary-green-light); 
  --color-primary-dark: #005f56; /* A darker shade of the dark green */
  --color-primary-light: #3bc880; /* A lighter shade of the light green */

  /* Accent Color: Warm, Hopeful Gold/Orange (use sparingly) */
  --color-accent: #D4AF37; /* Gold, as per project brief */
  --color-accent-dark: #b8902a;

  --color-text-headings: #212529; /* Dark grey for headings */
  --color-text-primary: #495057;  /* Medium grey for body text */
  --color-text-secondary: #6C757D;/* Lighter grey for muted text */
  --color-text-on-primary: #FFFFFF; /* Text on primary color buttons/bg */

  --border-color-light: #DEE2E6;
  --border-color-dark: #CED4DA;

  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 8px 25px rgba(0, 0, 0, 0.1);

  --border-radius-sm: 4px;
  --border-radius-md: 6px;
  --border-radius-lg: 8px;

  --transition-swift: 0.15s ease-out;
  --transition-smooth: 0.3s ease-in-out;
}

/* :: Global Helper Classes :: */
.container-light {
  width: 90%;
  max-width: 1200px; /* Slightly more constrained for a cleaner look */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* :: Header & Navigation - Light Theme :: */
.main-header-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
/* No specific .scrolled needed if always slightly transparent with shadow */

.navbar-light {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-light {
  font-family: var(--font-sans-en);
  font-size: 1.75rem;
  font-weight: 700; /* Bold for clarity */
  color: var(--color-text-headings);
}
.logo-light span {
  color: var(--color-primary);
  font-weight: 800;
}
.main-nav-light ul {
  list-style: none;
  display: flex;
  align-items: center; /* Align items vertically */
  gap: 25px; /* Adjusted gap */
}
.main-nav-light a {
  font-family: var(--font-sans-cn);
  font-size: 1rem; /* Main Chinese font size */
  font-weight: 500;
  color: var(--color-text-primary);
  transition: color var(--transition-swift);
  position: relative;
  padding-bottom: 8px; /* Increased padding for a taller hover area */
  text-align: center; /* Center text for two lines */
}
.main-nav-light a span.nav-en {
    display: block;
    font-family: var(--font-sans-en);
    font-size: 0.7rem; /* Smaller English text */
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
    margin-top: 0px; /* Space between CN and EN */
    font-weight: 400;
    transition: color var(--transition-swift);
}

.main-nav-light a::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-smooth);
}
.main-nav-light a:hover,
.main-nav-light a.active {
  color: var(--color-primary);
}
.main-nav-light a:hover span.nav-en,
.main-nav-light a.active span.nav-en {
    color: var(--color-primary-light); /* Lighter green for EN text on hover/active */
}

.main-nav-light a:hover::after,
.main-nav-light a.active::after {
    width: 70%; /* Underline width adjusted */
}

/* Nav Auth/Actions Area */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px; /* Gap between action items */
}
.nav-action-btn {
    font-family: var(--font-sans-en);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px; /* Increased padding for a more substantial feel */
    border-radius: 20px; /* Rounded style */
    transition: all var(--transition-swift); /* Smoother transition for all properties */
    border: 1px solid transparent;
    display: flex; /* For aligning icon and text if any */
    align-items: center;
    gap: 6px; /* Gap between icon and text */
}
.nav-action-btn i { /* Icon styling */
    font-size: 1.1em; /* Slightly larger icon relative to text */
}

.nav-action-btn.lang-switch {
    color: var(--color-text-secondary);
    border-color: var(--border-color-light);
    padding: 8px 12px; /* Specific padding if icon only or smaller */
}
.nav-action-btn.lang-switch:hover {
    background-color: var(--color-bg-offset);
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px); /* Subtle lift */
    box-shadow: var(--shadow-soft);
}
.nav-action-btn.lang-switch i {
    transition: transform 0.3s ease-in-out;
}
.nav-action-btn.lang-switch:hover i {
    transform: rotate(15deg); /* Slight rotation on hover for生动感 */
}

.nav-action-btn.login {
    background-color: transparent;
    color: var(--color-primary-dark);
    border: 1px solid var(--color-primary);
}
.nav-action-btn.login:hover {
    background-color: var(--color-primary-green-dark);
    color: var(--color-text-on-primary);
    border-color: var(--color-primary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}
.nav-action-btn.register {
    background-image: var(--color-primary-gradient);
    color: var(--color-text-on-primary);
    border: none; /* No border for gradient button */
}
.nav-action-btn.register:hover {
    background-image: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-primary-dark) 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,112,106,0.2); /* Shadow related to gradient */
}

/* :: Hero Section - Light Theme :: */
.hero-section-light {
  min-height: 90vh; /* Slightly less than full VH for a less overwhelming feel */
  display: flex; /* Will be used by slider logic later, or kept for single slide alignment */
  /* align-items: center; */ /* Alignment will be per slide */
  padding-top: 0; /* Remove padding, header will be over it or slider handles it */
  padding-bottom: 0; /* Remove padding */
  background-color: var(--color-bg-offset); /* Fallback for slider area */
  position: relative; /* For slider controls later */
  overflow: hidden; /* Important for slides that move */
}

.hero-slider { /* Container for all slides */
    width: 100%;
    height: 90vh; /* Match hero section height */
    position: relative;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: absolute; /* Slides will be absolutely positioned for overlay/transitions */
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center; /* Vertically center content in slide */
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; /* Smooth fade */
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2; /* Active slide on top */
}
.hero-slide::before { /* Darker overlay for better text readability on all slides */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.25); /* Adjust as needed, can be slide-specific */
    z-index: 1; /* Below content, above background image */
}

.hero-content-light {
  max-width: 700px; /* Increased max-width for potentially more text */
  margin-left: 5%; /* Indent from left, creating a nice margin */
  margin-right: auto;
  /* opacity: 0; */ /* Opacity handled by .hero-slide animation */
  /* transform: translateY(20px); */ /* 移除可能影响移动端布局的transform设置 */
  /* animation: heroFadeInUp 0.8s var(--transition-smooth) 0.3s forwards; */
  position: relative; 
  z-index: 2; /* Content above slide overlay */
  color: #FFFFFF; /* Default text color for slides, assuming darker overlay */
}

/* @keyframes heroFadeInUp removed as slide handles fade */

.hero-content-light .tagline {
    font-family: var(--font-sans-en);
    font-size: 1.1rem; /* Increased font size */
    font-weight: 600;
    color: var(--color-accent); /* Gold accent for tagline */
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    margin-bottom: 16px; 
    display: inline-block; 
    border-bottom: 2px solid var(--color-accent); 
    padding-bottom: 4px;
}

.hero-content-light h1 {
  font-family: var(--font-sans-en);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem); /* Slightly increased max font size */
  color: #FFFFFF;
  font-weight: 800; 
  line-height: 1.25; 
  margin-bottom: 0.7em;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.hero-content-light h1 .hero-title-line1,
.hero-content-light h1 .hero-title-line2 {
  display: block; /* Each line on its own */
}
.hero-content-light h1 .hero-main-title-green {
  color: var(--color-primary-light); /* Ensuring green color */
}

.hero-content-light h1 span.highlight-green { /* This class might be less relevant if H1 itself is white */
    /* Consider direct styling or a different highlight approach for slides */
    color: var(--color-primary-light); /* Example: Lighter green for highlight */
    font-style: italic; 
}

.hero-content-light .hero-subtitle-light {
  font-family: var(--font-sans-cn);
  font-size: clamp(1rem, 1.8vw, 1.15rem); /* Adjusted for slide context */
  color: rgba(255,255,255,0.85); /* Slightly transparent white for subtitle */
  margin-bottom: 2em; 
  max-width: 600px; 
}

.cta-button-light {
  display: inline-block;
  font-family: var(--font-sans-en);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 36px; /* Adjusted padding */
  border-radius: 30px; /* Rounded style */
  color: var(--color-text-on-primary);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-swift), box-shadow var(--transition-swift), background-color var(--transition-swift), background-image var(--transition-swift);
  background-image: var(--color-primary-gradient); 
}
.cta-button-light:hover {
  transform: translateY(-3px) scale(1.02); /* Enhanced hover */
  box-shadow: var(--shadow-medium);
   background-image: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-primary-dark) 100%); 
}

.cta-button-light.secondary {
    background-color: var(--color-surface); /* White background */
    background-image: none;
    color: var(--color-primary-dark);
    border: 2px solid var(--color-primary-dark); /* Darker border for contrast on white */
    box-shadow: none;
    margin-left: 15px; /* Increased margin */
}
.cta-button-light.secondary:hover {
    background-color: var(--color-bg-offset); /* Light grey on hover */
    border-color: var(--color-primary-dark);
    color: var(--color-primary-dark);
    transform: translateY(-3px); /* Added hover effect */
}

/* Slider Controls Styling */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Above slides and overlay */
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    color: var(--color-text-headings);
    border: none;
    border-radius: 50%; /* Circular buttons */
    width: 44px;
    height: 44px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-swift), color var(--transition-swift), transform var(--transition-swift);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}
.slider-control:hover {
    background-color: var(--color-primary);
    color: var(--color-text-on-primary);
    transform: translateY(-50%) scale(1.1);
}
.slider-control.prev {
    left: 20px;
}
.slider-control.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color var(--transition-swift), transform var(--transition-swift);
}
.slider-dots .dot.active {
    background-color: var(--color-primary);
    transform: scale(1.2);
    border-color: var(--color-primary-dark);
}
.slider-dots .dot:hover {
    background-color: var(--color-primary-light);
}

/* :: Health Management Intro Section - Light Theme :: */
.health-management-intro-light {
    padding: 80px 0;
    background-color: var(--color-bg-offset); /* Light grey background */
    text-align: center;
}
.health-management-intro-light .intro-icon-light {
    font-size: 3.5rem; /* Large icon */
    margin-bottom: 24px;
    display: inline-block; /* Allows text-shadow to apply correctly if needed */
    /* Applying gradient to icon color */
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback color if gradient is not supported or for simplicity */
    /* color: var(--color-primary-green-dark); */ 
}
 .health-management-intro-light .intro-icon-light i { /* Ensure icon inside takes color */
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(0,112,106,0.15)); /* Subtle shadow for icon */
}

.health-management-intro-light h2 {
    font-family: var(--font-sans-cn);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-text-headings);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}
.health-management-intro-light .lead-text-light {
    font-family: var(--font-sans-cn);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-primary);
    max-width: 700px; /* Constrain text width */
    margin: 0 auto 32px auto; /* Center and add bottom margin */
    line-height: 1.8;
}
/* Re-using .cta-button-light styles for consistency */

/* :: Core Specialized Services Section - Light Theme :: */
.core-services-light {
    padding: 80px 0;
    background-color: var(--color-bg-main); /* White background for this section */
}
.section-title-container-light { /* Unified styling for section titles */
    text-align: center;
    margin-bottom: 50px; /* Adjusted bottom margin */
}
.section-title-container-light h2 {
    font-family: var(--font-sans-cn);
    font-size: clamp(2rem, 4.5vw, 2.6rem); /* Slightly reduced max, adjusted base */
    color: var(--color-text-headings);
    margin-bottom: 10px; /* Space between H2 and subtitle */
    font-weight: 700;
    line-height: 1.35;
}
.section-title-container-light .subtitle-en {
    font-family: var(--font-sans-en);
    font-size: 0.85rem; /* Adjusted size */
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px; /* Increased spacing for a more refined look */
    display: block;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px;
}

.core-service-card {
    background-color: var(--color-surface);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-lg); /* Consistent rounded corners */
    padding: 32px;
    text-align: center; /* Center content within card */
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.core-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary-green-dark); /* Darker green border on hover */
}
.core-service-card .card-icon-light {
    font-size: 2.8rem; /* Icon size */
    margin-bottom: 20px;
    display: inline-block;
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 3px rgba(0,112,106,0.1));
}
.core-service-card .card-icon-light i {
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.core-service-card h3 {
    font-family: var(--font-sans-cn);
    font-size: 1.3rem; /* Title size in card */
    color: var(--color-text-headings);
    margin-bottom: 12px;
    font-weight: 600;
}
.core-service-card p {
    font-family: var(--font-sans-cn);
    font-size: 0.95rem;
    color: var(--color-text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
}
.core-service-card .learn-more-link {
    font-family: var(--font-sans-en);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-dark); /* Darker green for link */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-swift);
    display: inline-flex; /* Align icon with text */
    align-items: center;
}
.core-service-card .learn-more-link i {
    margin-left: 6px;
    transition: transform var(--transition-swift);
}
.core-service-card .learn-more-link:hover {
    color: var(--color-primary-green-dark);
}
.core-service-card .learn-more-link:hover i {
    transform: translateX(3px);
}

/* :: Expert Team Section - Light Theme :: */
.expert-team-light {
    padding: 80px 0;
    background-color: var(--color-bg-offset); /* Light grey background to differentiate */
}
/* Re-use .section-title-container-light for consistency */

.expert-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive, aiming for 3-4 cards */
    gap: 30px;
}

.expert-card-light {
    background-color: var(--color-surface);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items like photo */
}
.expert-card-light:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary); /* Main green border on hover */
}

.expert-card-light .expert-photo {
    width: 120px; /* Photo size */
    height: 120px;
    border-radius: 50%; /* Circular photo */
    object-fit: cover; /* Ensure photo covers the area well */
    margin-bottom: 20px;
    border: 3px solid var(--color-bg-offset); /* Subtle border matching section bg */
    box-shadow: 0 0 0 3px var(--color-primary-light), var(--shadow-soft); /* Outer green ring + shadow */
    transition: transform 0.3s ease-out;
}
.expert-card-light:hover .expert-photo {
    transform: scale(1.05); /* Slight zoom on photo on card hover */
    border-color: var(--color-surface); /* Border matches card bg on hover for a seamless look */
}

.expert-card-light .expert-name {
    font-family: var(--font-sans-cn);
    font-size: 1.25rem;
    color: var(--color-text-headings);
    font-weight: 700;
    margin-bottom: 4px;
}

.expert-card-light .expert-title {
    font-family: var(--font-sans-en);
    font-size: 0.85rem;
    /* color: var(--color-primary-dark); */
    background-image: var(--color-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.expert-card-light .expert-bio {
    font-family: var(--font-sans-cn);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex-grow: 1; /* Allow bio to take up space if cards have different text length */
    margin-bottom: 20px; /* Space before optional link */
}

.expert-card-light .expert-link {
    font-family: var(--font-sans-en);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border: 1px solid var(--color-primary-light);
    border-radius: var(--border-radius-md);
    transition: background-color var(--transition-swift), color var(--transition-swift);
}
.expert-card-light .expert-link:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-on-primary);
    border-color: var(--color-primary-dark);
}
    
/* Optional: Container for a "View All Experts" button below the grid */
.view-all-experts-container {
    text-align: center;
    margin-top: 40px;
}

/* :: Featured Services Section - Light Theme (图文结合版本) :: */
.featured-services-light {
    padding: 80px 0;
    background-color: #fff;
}
/* Re-use .section-title-container-light for consistency */

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); /* Aim for 1 or 2 cards per row */
    gap: 40px; /* Increased gap */
}

.featured-service-card-v2 { /* New class for the new design */
    background-color: var(--color-surface);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    overflow: hidden; /* Important for containing image and rounded corners */
    display: flex;
    flex-direction: column; /* Stack image and content vertically on small screens */
}
.featured-service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.fsc-image-wrapper {
    width: 100%;
    height: 220px; /* Fixed height for image consistency */
    overflow: hidden;
    position: relative;
}
.fsc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}
.featured-service-card-v2:hover .fsc-image-wrapper img {
    transform: scale(1.08); /* Slight zoom on hover */
}
.fsc-image-wrapper .icon-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background-image: var(--color-primary-gradient);
    color: var(--color-text-on-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.fsc-content-wrapper {
    padding: 28px;
    flex-grow: 1; /* Allows content to fill space if cards have different heights */
    display: flex;
    flex-direction: column;
}

.fsc-content-wrapper h3 {
    font-family: var(--font-sans-cn);
    font-size: 1.4rem;
    color: var(--color-text-headings);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.fsc-content-wrapper h3 .highlight {
    background-image: var(--color-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.fsc-content-wrapper ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 24px 0; /* Margin at the bottom of the list */
    flex-grow: 1; /* Allows list to take available space */
}

.fsc-content-wrapper ul li {
    font-family: var(--font-sans-cn);
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
}

.fsc-content-wrapper ul li::before {
    content: '\f00c'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900; 
    color: var(--color-accent); 
    position: absolute;
    left: 0;
    top: 5px; 
    font-size: 0.9em;
}
    
.fsc-cta-link {
    font-family: var(--font-sans-en);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start; /* Align link to the start of the flex container (bottom left) */
    margin-top: auto; /* Pushes link to the bottom if content above is shorter */
    padding: 8px 16px;
    border: 1px solid var(--color-primary-light);
    border-radius: var(--border-radius-md);
    transition: background-color var(--transition-swift), color var(--transition-swift), border-color var(--transition-swift);
}
.fsc-cta-link i {
    margin-left: 8px;
    transition: transform var(--transition-swift);
}
.fsc-cta-link:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-on-primary);
    border-color: var(--color-primary-dark);
}
.fsc-cta-link:hover i {
    transform: translateX(4px);
}

/* Adjusting grid for larger screens if only two items per row is desired */
@media (min-width: 992px) { /* Large devices (desktops, 992px and up) */
    .featured-services-grid {
        /* Ensures max 2 cards per row for this specific section if desired */
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr)); 
    }
}

/* :: Health Info Section - Light Theme :: */
.health-info-light {
    padding: 80px 0;
    background-color: #f8f9fa;
}
/* Re-use .section-title-container-light for consistency */

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Responsive grid for info cards */
    gap: 30px;
}

.info-card-light {
    background-color: var(--color-surface);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden; /* To contain image and for border-radius */
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    display: flex;
    flex-direction: column; /* Stack image and content */
}
.info-card-light:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.info-card-image {
    width: 100%;
    height: 200px; /* Fixed height for article images */
    overflow: hidden;
}
.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}
.info-card-light:hover .info-card-image img {
    transform: scale(1.05);
}

.info-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Make content area take available space */
}

.info-card-content .info-meta {
    font-family: var(--font-sans-en);
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.info-card-content .info-meta .category a:hover {
    color: var(--color-primary-dark);
}

.info-card-content h4 {
    font-family: var(--font-sans-cn);
    font-size: 1.25rem;
    color: var(--color-text-headings);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    /* Basic text truncation for 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.25rem * 1.4 * 2); /* Approx height for 2 lines to prevent jump on short titles */
}
.info-card-content h4 a:hover {
    color: var(--color-primary-dark);
}

.info-card-content .info-excerpt {
    font-family: var(--font-sans-cn);
    font-size: 0.9rem;
    color: var(--color-text-primary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow excerpt to take space */
    /* Basic text truncation for 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(0.9rem * 1.7 * 3); /* Approx height for 3 lines */
}

.info-card-content .read-more-link {
    font-family: var(--font-sans-en);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    margin-top: auto; /* Push to bottom */
    align-self: flex-start;
}
.info-card-content .read-more-link i {
    margin-left: 6px;
    transition: transform var(--transition-swift);
}
.info-card-content .read-more-link:hover {
    color: var(--color-primary-dark);
}
.info-card-content .read-more-link:hover i {
    transform: translateX(3px);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

/* :: Success Stories Section - Light Theme :: */
.success-stories-light {
    padding: 80px 0;
    background-color: #fff;
}
/* Re-use .section-title-container-light for consistency */

.story-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); /* Aim for 2-3 cards per row */
    gap: 35px;
}

.story-card-light {
    background-color: var(--color-surface);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.story-card-light:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.story-card-image {
    width: 100%;
    height: 240px; /* Slightly taller image area for stories */
    overflow: hidden;
}
.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}
.story-card-light:hover .story-card-image img {
    transform: scale(1.07);
}

.story-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-card-content h5 {
    font-family: var(--font-sans-cn);
    font-size: 1.15rem;
    color: var(--color-text-headings);
    font-weight: 600;
    margin-bottom: 8px;
}
.story-card-content .story-meta {
    font-family: var(--font-sans-en);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-card-content .story-quote {
    font-family: var(--font-sans-cn); /* Or serif for quotes: var(--font-serif-en) */
    font-size: 1rem;
    color: var(--color-text-primary);
    line-height: 1.7;
    margin: 0 0 20px 0;
    padding-left: 20px;
    border-left: 3px solid var(--color-primary); /* Green accent line for quote */
    font-style: italic; /* Italicize quotes */
    flex-grow: 1;
}
.story-card-content .story-quote p { /* If quote is wrapped in p */
    margin-bottom: 0;
}

.story-card-content .read-full-story-link {
    font-family: var(--font-sans-en);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    margin-top: auto; /* Push to bottom */
    align-self: flex-start;
}
.story-card-content .read-full-story-link i {
    margin-left: 6px;
    transition: transform var(--transition-swift);
}
.story-card-content .read-full-story-link:hover {
    color: var(--color-primary-green-dark);
}
.story-card-content .read-full-story-link:hover i {
    transform: translateX(3px);
}
/* .view-all-container can be reused for a "View All Stories" button if needed */

/* :: Partners Section - Light Theme :: */
.partners-light {
    padding: 80px 0;
    background-color: #f8f9fa;
}
/* Re-use .section-title-container-light for consistency */

.partner-logo-grid {
    display: flex;
    flex-wrap: wrap; /* Allow logos to wrap to next line */
    justify-content: center; /* Center logos horizontally */
    align-items: stretch; /* Align items to stretch to equal height if wrapped */
    gap: 30px; /* Adjusted gap for better spacing with text below */
}

.partner-logo-item {
    display: flex;
    flex-direction: column; /* Stack image and info vertically */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text */
    padding: 15px;
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-md);
    background-color: var(--color-surface);
    width: calc(20% - 24px); /* Aim for 5 items per row, accounting for gap (30px * 4 gaps / 5 items) */
    min-width: 160px; /* Minimum width before wrapping */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.partner-logo-item img {
    max-width: 120px; /* Slightly smaller for more text room */
    max-height: 60px; /* Slightly smaller for more text room */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter var(--transition-smooth), opacity var(--transition-smooth), transform var(--transition-smooth);
    margin-bottom: 12px; /* Space between image and text */
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text block content */
    font-size: 0.8rem; /* Base size for info text */
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.partner-name-cn {
    font-weight: 600; /* Bolder for Chinese name */
    color: var(--color-text-headings);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.partner-name-en {
    font-style: italic;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.partner-desc {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    /* Optional: Limit lines if descriptions are too long */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 2; */
    /* -webkit-box-orient: vertical; */
    /* overflow: hidden; */
}

.partner-cta-container {
    text-align: center;
    margin-top: 50px;
}
.partner-cta-container p {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}
/* Re-use .cta-button-light for the button */

/* :: Footer - Light Theme :: */
.main-footer-light {
    padding: 60px 0 30px 0;
    background-color: var(--color-bg-offset); /* Light grey background for footer */
    border-top: 1px solid var(--border-color-light);
    font-family: var(--font-sans-cn);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    text-align: center; /* Default center alignment */
}

.footer-content-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    text-align: left; /* Align text to left within columns */
}

.footer-column h6 {
    font-family: var(--font-sans-en);
    font-size: 1rem;
    color: var(--color-text-headings);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--color-text-primary);
    transition: color var(--transition-swift);
    display: inline-block;
    text-align: inherit;
    padding: 4px 0; /* Fine-tuned padding */
    line-height: 1.5; /* Adjusted line-height */
    font-weight: 500; /* Make Chinese text slightly bolder */
}

.footer-column ul li a span.nav-en {
    display: block;
    font-family: var(--font-sans-en);
    font-size: 0.7rem; /* Kept small for subtlety */
    color: var(--color-text-secondary);
    letter-spacing: 0.4px;
    margin-top: 1px; /* Fine-tuned space */
    font-weight: 400;
    transition: color var(--transition-swift);
}

.footer-column ul li a:hover {
    color: var(--color-primary-dark);
    /* text-decoration: underline; */ /* Optional: remove underline if using block hover */
}

.footer-column ul li a:hover span.nav-en {
    color: var(--color-primary-light);
}

.footer-column .contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.footer-column .contact-info i {
    color: var(--color-primary);
    margin-right: 10px;
    width: 16px; /* Ensure icons align nicely */
    text-align: center;
}

.footer-social-icons {
    margin-top: 20px;
    text-align: left; /* Default for desktop */
    /* Added for wrapping and spacing */
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Gap between icons */
}

.footer-social-icons a {
    display: inline-flex; /* Use flex for centering icon inside if needed */
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 1.2rem; /* Slightly smaller for better balance with more icons */
    width: 36px; /* Fixed width */
    height: 36px; /* Fixed height */
    border-radius: 50%; /* Circular background/border */
    border: 1px solid var(--border-color-light);
    transition: color var(--transition-swift), transform var(--transition-swift), background-color var(--transition-swift), border-color var(--transition-swift);
    margin-right: 0; /* Remove old margin, rely on gap */
}

.footer-social-icons a:hover {
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    background-color: var(--color-bg-offset);
    border-color: var(--color-primary-light);
}

.footer-bottom-light {
    padding-top: 30px;
    border-top: 1px solid var(--border-color-light);
    font-size: 0.85rem;
}
.footer-bottom-light p {
    margin: 0;
    line-height: 1.6;
}
.footer-bottom-light a {
    color: var(--color-primary-dark);
    font-weight: 500;
}
.footer-bottom-light a:hover {
    text-decoration: underline;
}

/* :: Responsive Adjustments :: */
@media (max-width: 991px) { /* Common breakpoint for tablets and mobile */

  /* Header & Navigation Responsive */
  .navbar-light {
    position: relative; /* For positioning the mobile menu */
  }

  .nav-toggle {
    display: block; /* Show hamburger button */
    background: transparent;
    border: none;
    color: var(--color-text-headings);
    font-size: 1.5rem; /* Adjust as needed */
    cursor: pointer;
    padding: 0.5rem;
    position: absolute; /* Position relative to navbar-light */
    right: 15px; /* Align to the right of the container */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002; /* Above main nav but below potential modal overlays */
  }

  .nav-toggle .hamburger-icon {
    display: block;
    width: 24px; /* Size of the hamburger icon lines */
    height: 2px;
    background-color: var(--color-text-headings);
    position: relative;
    transition: background-color 0s 0.2s linear; /* Delay background disappearing for X effect */
  }
  .nav-toggle .hamburger-icon::before,
  .nav-toggle .hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-headings);
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out 0.2s; 
  }
  .nav-toggle .hamburger-icon::before {
    top: -7px; /* Spacing of hamburger lines */
  }
  .nav-toggle .hamburger-icon::after {
    top: 7px;
  }

  /* Hamburger to X animation when nav is open */
  .nav-toggle[aria-expanded="true"] .hamburger-icon {
    background-color: transparent; /* Middle line disappears */
  }
  .nav-toggle[aria-expanded="true"] .hamburger-icon::before {
    transform: rotate(45deg);
    top: 0;
    transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s;
  }
  .nav-toggle[aria-expanded="true"] .hamburger-icon::after {
    transform: rotate(-45deg);
    top: 0;
    transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s;
  }

  .main-nav-light {
    position: absolute;
    top: 100%; /* Position below the header */
    left: 0;
    width: 100%;
    background-color: var(--color-surface); /* Or a slightly different bg for mobile menu */
    box-shadow: var(--shadow-medium);
    padding: 1rem 0;
    transform: translateY(-100%); /* Hidden by default, off-screen */
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s var(--transition-smooth), visibility 0s 0.3s linear, opacity 0.3s var(--transition-smooth);
    z-index: 1001;
  }

  .main-nav-light.nav-open {
    transform: translateY(0); /* Slide in */
    visibility: visible;
    opacity: 1;
    transition: transform 0.3s var(--transition-smooth), visibility 0s 0s linear, opacity 0.3s var(--transition-smooth);
  }

  .main-nav-light ul {
    flex-direction: column; /* Stack nav items vertically */
    align-items: center;
    gap: 0; /* Remove horizontal gap, use padding on items */
  }

  .main-nav-light ul li {
    width: 100%;
  }

  .main-nav-light a {
    display: block;
    padding: 0.8rem 1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color-light); /* Separator for nav items */
  }
  .main-nav-light a::after { /* Remove underline for mobile nav items */
    display: none;
  }
  .main-nav-light ul li:last-child a {
    border-bottom: none;
  }

  .nav-actions {
    /* 移动端样式已移至header.php中的内联样式，避免冲突 */
    /* 桌面端保持原有样式 */
    /* flex-direction: column; 
    position: absolute;
    top: calc(100% + 20px);
    right: 15px;
    gap: 8px;
    align-items: flex-end; */
  }
  /* .main-nav-light.nav-open + .nav-actions { 
    display: flex;
  } */

  .logo-light {
    font-size: 1.5rem; /* Slightly smaller logo */
  }

  /* Hero Section Responsive */
  .hero-content-light {
    margin-left: 5%; /* Reset margin for smaller screens or adjust as needed */
    margin-right: 5%;
    text-align: center; /* Center content on mobile */
    padding-top: 60px; /* Add some padding if header is fixed and overlaps */
    padding-bottom: 40px;
  }
  .hero-content-light h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem); /* Adjusted mobile font size */
  }
  .hero-content-light .tagline {
    font-size: 1rem; /* Adjust tagline for mobile */
  }
  .hero-content-light .hero-subtitle-light {
    font-size: clamp(0.9rem, 4vw, 1rem); /* Adjust font size */
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-button-light {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  .slider-control {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .slider-control.prev {
    left: 10px;
  }
  .slider-control.next {
    right: 10px;
  }
  .slider-dots {
    bottom: 15px;
  }
  .slider-dots .dot {
    width: 8px;
    height: 8px;
  }

  /* General Section Padding and Typography */
  .health-management-intro-light,
  .core-services-light,
  .expert-team-light,
  .featured-services-light,
  .health-info-light,
  .success-stories-light,
  .partners-light {
    padding: 40px 0; /* Reverted to 40px as 50px might be too much with title adjustments */
  }
  .section-title-container-light h2,
  .health-management-intro-light h2 {
    font-size: clamp(1.7rem, 5vw, 2.2rem); /* Further refined mobile title size */
    margin-bottom: 8px; /* Mobile margin */
  }
  .section-title-container-light .subtitle-en {
    font-size: 0.75rem; /* Mobile subtitle size */
    letter-spacing: 1px;
  }
  .lead-text-light {
    font-size: clamp(0.9rem, 4vw, 1rem);
  }

  /* Card Layouts - Stacking on mobile */
  .core-services-grid,
  .expert-team-grid,
  .featured-services-grid, /* Already uses auto-fit, minmax, so might stack naturally */
  .info-card-grid,
  .story-card-grid {
    grid-template-columns: 1fr; /* Force single column */
    gap: 20px;
  }

  .core-service-card,
  .expert-card-light,
  .featured-service-card-v2,
  .info-card-light,
  .story-card-light {
    padding: 20px;
  }

  .expert-card-light .expert-photo {
    width: 100px;
    height: 100px;
  }

  .fsc-image-wrapper {
    height: 180px; /* Adjust image height for mobile */
  }
  .fsc-image-wrapper .icon-overlay {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: 15px;
    left: 15px;
  }

  .info-card-image {
    height: 180px;
  }
  .story-card-image {
    height: 200px;
  }
  .partner-logo-grid {
    gap: 20px;
    align-items: center; /* Revert to center for mobile single column */
  }
  .partner-logo-item {
    width: calc(50% - 10px); /* Two items per row on medium screens */
  }
  .partner-logo-item img {
    max-width: 100px;
    max-height: 50px;
  }

  /* Footer Responsive */
  .footer-content-light {
    grid-template-columns: 1fr; /* Stack footer columns */
    text-align: center; /* Center text in footer columns */
  }
  .footer-column h6 {
    margin-top: 20px; /* Add some space when stacked */
  }
  .footer-column:first-child h6 {
    margin-top: 0;
  }
  .footer-column .contact-info p {
    justify-content: center;
  }
  .footer-social-icons {
    text-align: center;
  }

}

@media (max-width: 768px) {
  .overseas-medical-services {
    padding: 60px 0;
    background-attachment: scroll;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .overseas-intro-content h3 {
    font-size: 20px;
  }
  
  .overseas-intro-content p {
    font-size: 15px;
  }
  
  .step-card {
    padding: 18px;
  }
  
  .step-content h4 {
    font-size: 16px;
  }
  
  .step-description p {
    font-size: 14px;
  }
  
  .feature-item {
    font-size: 13px;
  }
  
  .overseas-cta .cta-button-light {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .quick-service-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    padding: 15px 5px;
  }
}

/* 前沿肿瘤防治体系样式 - 重新设计版 */
.cancer-prevention-system {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cancer-prevention-system::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(42,174,103,0.1) 0%, rgba(42,174,103,0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.cancer-prevention-system::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,174,103,0.08) 0%, rgba(42,174,103,0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.intro-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.intro-icon-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #2aae67;
  color: white;
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 32px;
  box-shadow: 0 10px 20px rgba(42,174,103,0.2);
}

/* 1+5 系统容器 */
.one-plus-five-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* 系统介绍部分 */
.system-intro-section {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}

.system-text-content {
  flex: 1;
  padding: 30px;
}

.system-text-content h3 {
  color: #2aae67;
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
}

.system-brief {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.system-highlight-box {
  background: rgba(42,174,103,0.05);
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #2aae67;
}

.system-highlight-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.number-one {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2aae67;
  color: white;
  font-size: 16px;
  margin-right: 10px;
  font-weight: 700;
}

.system-highlight-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.key-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.metric-item {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 12px;
  flex: 1;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

.metric-icon {
  width: 40px;
  height: 40px;
  background: rgba(42,174,103,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.metric-icon i {
  color: #2aae67;
  font-size: 18px;
}

.metric-text {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 16px;
  font-weight: 700;
  color: #2aae67;
  line-height: 1.2;
}

.metric-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}

.system-image-container {
  width: 380px;
  position: relative;
  flex-shrink: 0;
}

.system-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder-text {
  text-align: center;
  color: #9ca3af;
}

.image-placeholder-text i {
  font-size: 48px;
  margin-bottom: 10px;
  display: block;
}

/* 优势部分 */
.advantages-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.advantage-box {
  flex: 1;
  min-width: 200px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.advantage-icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: rgba(42,174,103,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.advantage-icon i {
  font-size: 22px;
  color: #2aae67;
}

.advantage-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.advantage-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.cancer-cta-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* 六大系统部分 */
.six-systems-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}

.six-systems-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-six {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2aae67;
  color: white;
  font-size: 16px;
  margin-right: 10px;
  font-weight: 700;
}

/* 六大技术网格布局 */
.six-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.tech-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(42,174,103,0.1);
  border-color: rgba(42,174,103,0.2);
}

.tech-item:nth-child(5) {
  grid-column: auto;
}

.tech-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.tech-icon {
  width: 45px;
  height: 45px;
  background: rgba(42,174,103,0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tech-icon i {
  font-size: 20px;
  color: #2aae67;
  transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
  background: #2aae67;
}

.tech-item:hover .tech-icon i {
  color: white;
}

.tech-header h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.tech-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tech-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 15px 0;
  flex: 1;
}

/* 查看详情链接样式 */
.tech-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #2aae67;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(42, 174, 103, 0.08);
  border: 1px solid rgba(42, 174, 103, 0.2);
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.tech-detail-link:hover {
  background: #2aae67;
  color: white;
  border-color: #2aae67;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(42, 174, 103, 0.25);
}

.tech-detail-link i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.tech-detail-link:hover i {
  transform: translateX(2px);
}

.tech-item::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,174,103,0.05) 0%, rgba(42,174,103,0) 70%);
  top: -30px;
  right: -30px;
  z-index: 1;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .system-intro-section {
    flex-direction: column;
  }
  
  .system-image-container {
    width: 100%;
    height: 240px;
  }
  
  .advantages-section {
    flex-direction: column;
  }
  
  .advantage-box {
    width: 100%;
  }
  
  .six-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-item:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .cancer-prevention-system {
    padding: 60px 0;
  }
  
  .key-metrics {
    flex-direction: column;
  }
  
  .metric-item {
    width: 100%;
  }
  
  .system-text-content {
    padding: 20px;
  }
  
  .system-text-content h3 {
    font-size: 22px;
  }
  
  .system-highlight-box h4 {
    font-size: 16px;
  }
  
  .six-tech-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .tech-item:nth-child(5) {
    grid-column: auto;
  }
}

/* 滚动提示样式 */
.scroll-hint {
  text-align: center;
  color: #666;
  font-size: 13px;
  margin-top: 10px;
  padding: 5px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.scroll-hint i {
  margin-right: 5px;
  color: #2aae67;
}

/* 确保卡片可以滚动但不换行 */
.systems-grid::-webkit-scrollbar {
  height: 4px;
}

.systems-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.systems-grid::-webkit-scrollbar-thumb {
  background: #2aae67;
  border-radius: 10px;
}

.systems-grid::-webkit-scrollbar-thumb:hover {
  background: #1d8f4e;
}

/* 快速服务入口样式 */
.quick-services-container {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.quick-services-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.quick-service-item {
  flex: 1;
  max-width: 22%;
  background: white;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
  border: 1px solid #f0f0f0;
}

.quick-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(42,174,103,0.1);
  border-color: rgba(42,174,103,0.2);
  color: #2aae67;
}

.quick-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(42,174,103,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.quick-service-icon i {
  font-size: 24px;
  color: #2aae67;
  transition: all 0.3s ease;
}

.quick-service-item:hover .quick-service-icon {
  background-color: #2aae67;
}

.quick-service-item:hover .quick-service-icon i {
  color: white;
}

.quick-service-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}

@media (max-width: 992px) {
  .quick-services-container {
    max-width: 100%;
    padding: 0 15px 30px;
  }
  
  .quick-service-item {
    margin: 0 5px;
  }
}

@media (max-width: 768px) {
  .quick-services-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .quick-service-item {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin: 0;
  }
  
  .quick-service-icon {
    width: 50px;
    height: 50px;
  }
  
  .quick-service-icon i {
    font-size: 20px;
  }
  
  .quick-service-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .quick-service-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    padding: 15px 5px;
  }
}

/* 专家展示区域的增强样式 */
.our-experts-light {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.experts-container-light {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.expert-card-light {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.expert-card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(42,174,103,0.1);
  border-color: rgba(42,174,103,0.2);
}

.expert-photo-container {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  position: relative;
}

.expert-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0f0f0;
  transition: all 0.3s ease;
}

.expert-card-light:hover .expert-photo {
  border-color: rgba(42,174,103,0.3);
}

.expert-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.expert-name {
  margin: 0 0 5px 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.expert-title {
  margin: 0 0 10px 0;
  font-size: 15px;
  color: #2aae67;
  font-weight: 500;
  text-align: center;
}

.expert-affiliation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 13px;
}

.expert-hospital, .expert-department {
  display: flex;
  align-items: center;
  color: #666;
}

.expert-hospital i, .expert-department i {
  margin-right: 5px;
  color: #2aae67;
  font-size: 12px;
}

.expert-bio {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  text-align: center;
}

.expert-link {
  display: block;
  text-align: center;
  color: #2aae67;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  border-top: 1px dashed #f0f0f0;
  transition: all 0.3s ease;
}

.expert-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.expert-link:hover {
  color: #239357;
}

.expert-link:hover i {
  transform: translateX(3px);
}

.no-experts-message {
  text-align: center;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  color: #777;
}

.experts-cta {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .experts-container-light {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .expert-photo {
    width: 130px;
    height: 130px;
  }
  
  .expert-info {
    padding: 15px;
  }
  
  .expert-name {
    font-size: 18px;
  }
  
  .expert-bio {
    font-size: 13px;
  }
}

/* 了解详情按钮样式 */
.learn-more-container {
  margin: 20px 0;
  text-align: center;
}

.learn-more-btn {
  display: inline-block;
  background-color: #2aae67;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(42, 174, 103, 0.2);
}

.learn-more-btn:hover {
  background-color: #229956;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(42, 174, 103, 0.3);
}

/* 出国就医服务板块样式 */
.overseas-medical-services {
  padding: 80px 0;
  background: linear-gradient(rgba(248, 255, 254, 0.95), rgba(238, 255, 254, 0.95)), url('https://pic1.zhimg.com/100/v2-84435a14368ec3e49b0c5bc413703450_xl.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.overseas-medical-services::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(42,174,103,0.08) 0%, rgba(42,174,103,0) 70%);
  border-radius: 50%;
}

.overseas-medical-services::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(42,174,103,0.06) 0%, rgba(42,174,103,0) 70%);
  border-radius: 50%;
}

.overseas-intro {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.overseas-intro-content h3 {
  font-size: 24px;
  color: #2aae67;
  margin-bottom: 15px;
  font-weight: 600;
}

.overseas-intro-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.overseas-steps-container {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2aae67 0%, #27a361 100%);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(42,174,103,0.15);
  border-color: rgba(42,174,103,0.2);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2aae67 0%, #27a361 100%);
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(42,174,103,0.3);
}

.step-content h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-description {
  margin-bottom: 20px;
}

.step-description p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(42,174,103,0.05);
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(42,174,103,0.1);
  color: #2aae67;
}

.feature-item i {
  color: #2aae67;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.feature-item span {
  font-weight: 500;
}

.overseas-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.overseas-cta .cta-button-light {
  margin: 0 10px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .step-card {
    padding: 20px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .step-content h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .overseas-medical-services {
    padding: 60px 0;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .overseas-intro-content h3 {
    font-size: 20px;
  }
  
  .overseas-intro-content p {
    font-size: 15px;
  }
  
  .step-card {
    padding: 18px;
  }
  
  .step-content h4 {
    font-size: 16px;
  }
  
  .step-description p {
    font-size: 14px;
  }
  
  .feature-item {
    font-size: 13px;
  }
  
  .overseas-cta .cta-button-light {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .step-features {
    gap: 8px;
  }
  
  .feature-item {
    padding: 6px 10px;
    gap: 8px;
  }
  
  .feature-item i {
    font-size: 14px;
  }
}

/* 移动端优化 - 竖版显示优化 */
@media (max-width: 768px) {
  /* 容器优化 */
  .container-light {
    width: 95%;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Hero区域优化 */
  .hero-section-light {
    min-height: 60vh; /* 减少高度，为其他内容留出空间 */
    padding: 80px 0 40px;
  }
  
  .hero-content-light {
    text-align: center;
    padding: 20px 0;
  }
  
  .hero-content-light h1 {
    font-size: 1.8rem; /* 减小标题字体 */
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .hero-content-light .tagline {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .hero-content-light .hero-subtitle-light {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .cta-button-light {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin: 5px;
    display: inline-block;
    width: auto;
  }
  
  /* 滑块控制优化 */
  .slider-control {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .slider-dots {
    bottom: 15px;
  }
  
  .slider-dots .dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  
  /* 防治体系区域优化 */
  .cancer-prevention-system {
    padding: 40px 0;
  }
  
  .intro-header {
    margin-bottom: 30px;
  }
  
  .intro-icon-light {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .intro-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .lead-text-light {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* 系统介绍区域优化 */
  .system-text-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .system-brief {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .system-highlight-box {
    padding: 20px 15px;
    margin: 20px 0;
  }
  
  .system-highlight-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .system-highlight-box p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* 关键指标优化 - 移动端一行显示 */
  .key-metrics {
    gap: 8px; /* 减小间距 */
    margin-top: 20px;
    flex-wrap: nowrap; /* 强制不换行 */
  }
  
  .metric-item {
    flex-direction: column;
    text-align: center;
    padding: 10px 6px; /* 减小内边距 */
    flex: 1; /* 平均分配空间 */
    min-width: 0; /* 允许收缩 */
  }
  
  .metric-icon {
    width: 28px; /* 进一步缩小图标 */
    height: 28px;
    margin-bottom: 6px;
    margin-right: 0; /* 移除右边距 */
  }
  
  .metric-value {
    font-size: 1rem; /* 减小字体 */
    line-height: 1.1;
  }
  
  .metric-desc {
    font-size: 0.7rem; /* 进一步减小描述文字 */
    line-height: 1.2;
  }
  
  /* 图片区域大幅缩小 */
  .system-image-container {
    height: 150px; /* 大幅减少高度 */
    margin: 20px 0;
  }
  
  .system-image-placeholder {
    height: 100%;
  }
  
  .image-placeholder-text {
    font-size: 0.8rem;
  }
  
  .image-placeholder-text i img {
    max-height: 80px; /* 限制图片高度 */
    width: auto;
    object-fit: cover;
  }
  
  /* 优势区域优化 */
  .advantages-section {
    margin: 30px 0;
  }
  
  .advantage-box {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .advantage-icon {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }
  
  .advantage-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .advantage-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  /* 六大技术区域优化 */
  .six-systems-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .six-tech-grid {
    gap: 15px;
    padding: 0 5px;
  }
  
  .tech-item {
    padding: 15px;
  }
  
  .tech-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
  }
  
  .tech-header h5 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .tech-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  
  .tech-detail-link {
    font-size: 0.8rem;
  }
  
  /* 出国就医服务优化 */
  .overseas-medical-services {
    padding: 40px 0;
  }
  
  .overseas-intro-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .overseas-intro-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .steps-grid {
    gap: 20px;
  }
  
  .step-card {
    padding: 20px 15px;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .step-description p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  .feature-item {
    padding: 8px 0;
  }
  
  .feature-item i {
    font-size: 0.9rem;
    margin-right: 6px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  /* 核心技术服务优化 */
  .core-services-light {
    padding: 40px 0;
  }
  
  .core-services-grid {
    gap: 20px;
  }
  
  .core-service-card {
    padding: 20px 15px;
  }
  
  .card-icon-light {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
  
  .core-service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .core-service-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  /* 快速服务入口优化 */
  .quick-services-container {
    margin-top: 30px;
  }
  
  .quick-services-row {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .quick-service-item {
    padding: 12px 8px;
    min-height: auto;
  }
  
  .quick-service-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
  }
  
  .quick-service-icon i {
    font-size: 1rem;
  }
  
  .quick-service-text {
    font-size: 0.75rem;
  }
  
  /* 专家团队优化 */
  .our-experts-light {
    padding: 40px 0;
  }
  
  .experts-container-light {
    gap: 20px;
  }
  
  .expert-card-light {
    padding: 15px;
  }
  
  .expert-photo-container {
    width: 60px;
    height: 60px; /* 大幅缩小专家照片 */
    margin-bottom: 10px;
  }
  
  .expert-photo {
    width: 100%;
    height: 100%;
  }
  
  .expert-name {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .expert-title {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  
  .expert-affiliation {
    margin-bottom: 8px;
  }
  
  .expert-hospital, .expert-department {
    font-size: 0.75rem;
    display: block;
    margin-bottom: 2px;
  }
  
  .expert-bio {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 10px;
    /* 限制显示行数 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* 特色服务优化 */
  .featured-services-light {
    padding: 40px 0;
  }
  
  .featured-services-grid {
    gap: 20px;
  }
  
  .featured-service-card-v2 {
    flex-direction: column; /* 改为垂直布局 */
  }
  
  .fsc-image-wrapper {
    height: 120px; /* 大幅缩小图片高度 */
    width: 100%;
    margin-bottom: 15px;
  }
  
  .fsc-image-wrapper img {
    height: 100%;
    object-fit: cover;
  }
  
  .icon-overlay {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .fsc-content-wrapper {
    padding: 15px;
  }
  
  .fsc-content-wrapper h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .fsc-content-wrapper ul li {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }
  
  /* 健康资讯优化 */
  .health-info-light {
    padding: 40px 0;
  }
  
  .info-card-grid {
    gap: 20px;
  }
  
  .info-card-light {
    flex-direction: column; /* 改为垂直布局 */
  }
  
  .info-card-image {
    height: 120px; /* 缩小图片高度 */
    width: 100%;
    margin-bottom: 15px;
  }
  
  .info-card-image img {
    height: 100%;
    object-fit: cover;
  }
  
  .info-card-content {
    padding: 15px;
  }
  
  .info-card-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    /* 限制标题行数 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .info-card-content .info-excerpt {
    font-size: 0.85rem;
    line-height: 1.4;
    /* 限制摘要行数 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* 成功案例优化 */
  .success-stories-light {
    padding: 40px 0;
  }
  
  .story-card-grid {
    gap: 20px;
  }
  
  .story-card-light {
    flex-direction: column; /* 改为垂直布局 */
  }
  
  .story-card-image {
    height: 120px; /* 缩小图片高度 */
    width: 100%;
    margin-bottom: 15px;
  }
  
  .story-card-image img {
    height: 100%;
    object-fit: cover;
  }
  
  .story-card-content {
    padding: 15px;
  }
  
  .story-card-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .story-card-content .story-meta {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  
  .story-card-content .story-quote p {
    font-size: 0.85rem;
    line-height: 1.4;
    /* 限制引用行数 */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* 合作伙伴优化 */
  .partners-light {
    padding: 40px 0;
  }
  
  .partner-logo-grid {
    gap: 15px;
  }
  
  .partner-logo-item {
    padding: 15px 10px;
  }
  
  .partner-logo-item img {
    max-height: 40px; /* 大幅缩小logo高度 */
    margin-bottom: 8px;
  }
  
  .partner-name-cn {
    font-size: 0.9rem;
  }
  
  .partner-name-en {
    font-size: 0.75rem;
  }
  
  .partner-desc {
    font-size: 0.7rem;
  }
  
  /* 通用区域间距优化 */
  .section-title-container-light {
    margin-bottom: 25px;
  }
  
  .section-title-container-light h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .section-title-container-light .subtitle-en {
    font-size: 0.8rem;
  }
  
  /* CTA按钮容器优化 */
  .view-all-container,
  .experts-cta,
  .cancer-cta-container,
  .overseas-cta,
  .partner-cta-container {
    margin-top: 25px;
    text-align: center;
  }
  
  .partner-cta-container p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  /* ========== 联系我们区域优化 ========== */
  .contact-us-light {
    padding: 50px 0;
    background: white;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 35px;
  }
  
  .contact-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(42, 174, 103, 0.1);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-color: #2aae67;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(42, 174, 103, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #2aae67;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .contact-card:hover .contact-icon {
    background: #2aae67;
    color: white;
    transform: scale(1.1);
  }
  
  .contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
  }
  
  .contact-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .contact-link {
    color: #2aae67;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .contact-link:hover {
    color: #1e8a52;
  }
  
  /* ========== 页脚区域优化 ========== */
  .footer-light {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #2aae67;
  }
  
  .footer-section p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    background: rgba(42, 174, 103, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2aae67;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: #2aae67;
    color: white;
    transform: translateY(-2px);
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }
  
  /* ========== 导航栏移动端优化 ========== */
  .navbar-light {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand-light {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2aae67;
  }
  
  .navbar-nav-light {
    display: none; /* 隐藏桌面导航 */
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2aae67;
    cursor: pointer;
    padding: 5px;
  }
  
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e0e0e0;
    z-index: 1000;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu ul li {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .mobile-menu ul li:last-child {
    border-bottom: none;
  }
  
  .mobile-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }
  
  .mobile-menu ul li a:hover {
    background: rgba(42, 174, 103, 0.1);
    color: #2aae67;
  }
  
  /* ========== 通用按钮优化 ========== */
  .cta-button-light {
    display: inline-block;
    padding: 12px 24px;
    background: #2aae67;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
  }
  
  .cta-button-light:hover {
    background: #1e8a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 174, 103, 0.3);
  }
  
  .cta-button-outline {
    background: transparent;
    color: #2aae67;
    border: 2px solid #2aae67;
  }
  
  .cta-button-outline:hover {
    background: #2aae67;
    color: white;
  }
  
  /* ========== 表单优化 ========== */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
  }
  
  .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: white;
  }
  
  .form-control:focus {
    outline: none;
    border-color: #2aae67;
    box-shadow: 0 0 0 3px rgba(42, 174, 103, 0.1);
  }
  
  textarea.form-control {
    resize: vertical;
    min-height: 100px;
  }
  
  /* ========== 工具提示和模态框优化 ========== */
  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }
  
  /* ========== 加载动画优化 ========== */
  .loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(42, 174, 103, 0.3);
    border-radius: 50%;
    border-top-color: #2aae67;
    animation: spin 1s ease-in-out infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* ========== 滚动条优化 ========== */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #2aae67;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #1e8a52;
  }
}

/* ========== 更小屏幕优化 (480px以下) ========== */
@media (max-width: 480px) {
  .container-light {
    padding: 0 15px;
  }
  
  .hero-section-light {
    height: 50vh;
    padding: 30px 0;
  }
  
  .hero-content-light h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  
  .hero-content-light p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  
  .section-title-container-light h2 {
    font-size: 1.4rem;
  }
  
  .core-service-card,
  .expert-card-light,
  .featured-service-card-v2,
  .info-card-light,
  .story-card-light {
    margin-bottom: 15px;
  }
  
  .card-icon-light,
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .quick-service-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .quick-service-text {
    font-size: 0.7rem;
  }
  
  .partner-logo-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* ========== 极小屏幕优化 (360px以下) ========== */
@media (max-width: 360px) {
  .container-light {
    padding: 0 12px;
  }
  
  .hero-section-light {
    height: 45vh;
    padding: 25px 0;
  }
  
  .hero-content-light h1 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .hero-content-light p {
    font-size: 0.8rem;
    margin-bottom: 18px;
  }
  
  .section-title-container-light h2 {
    font-size: 1.25rem;
  }
  
  .core-service-card,
  .contact-card {
    padding: 20px 15px;
  }
  
  .card-icon-light,
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .quick-services-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .quick-service-item {
    padding: 15px 10px;
  }
  
  .expert-info,
  .fsc-content-wrapper,
  .info-card-content,
  .story-card-content {
    padding: 15px;
  }
  
  .cta-button-light {
    padding: 10px 20px;
    font-size: 0.85rem;
    min-width: 100px;
  }
  
  .footer-light {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 20px;
  }
}

/* ========== 手机端竖版屏幕专用优化 (768px以下) ========== */
@media (max-width: 768px) {
  /* 基础容器 */
  .container-light {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }
  
  /* Hero区域优化 */
  .hero-section-light {
    min-height: 60vh;
    padding: 40px 0 20px;
    position: relative;
  }
  
  .hero-content-light {
    text-align: center;
    padding: 20px 0;
  }
  
  .hero-content-light .tagline {
    font-size: 0.9rem;
    margin-bottom: 12px;
    opacity: 0.9;
  }
  
  .hero-content-light h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 700;
  }
  
  .hero-content-light .hero-subtitle-light {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-button-light {
    padding: 12px 20px;
    font-size: 0.9rem;
    margin: 6px 4px;
    display: inline-block;
    min-width: 120px;
    border-radius: 6px;
  }
  
  /* 滑块控制 */
  .slider-control {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .slider-dots {
    bottom: 15px;
    gap: 6px;
  }
  
  .slider-dots .dot {
    width: 8px;
    height: 8px;
  }
  
  /* 防治体系区域 */
  .cancer-prevention-system {
    padding: 40px 0;
  }
  
  .intro-header {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .intro-icon-light {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin: 0 auto 16px;
  }
  
  .intro-header h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  
  .lead-text-light {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 95%;
    margin: 0 auto;
  }
  
  /* 系统介绍区域 */
  .system-intro-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .system-text-content h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  
  .system-brief {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .system-highlight-box {
    padding: 20px 16px;
    margin: 20px 0;
    border-radius: 10px;
  }
  
  .system-highlight-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  
  .system-highlight-box p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* 关键指标优化 */
  .key-metrics {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .metric-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 6px;
    background: rgba(42, 174, 103, 0.05);
    border-radius: 8px;
    min-width: 0;
  }
  
  .metric-icon {
    width: 28px;
    height: 28px;
    background: #2aae67;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: white;
    font-size: 0.8rem;
  }
  
  .metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: #2aae67;
    display: block;
    margin-bottom: 4px;
  }
  
  .metric-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.2;
  }
  
  /* 隐藏图片显示区域 */
  .system-image-container {
    display: none !important;
  }
  
  /* 优势区域优化 */
  .advantages-section {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .advantage-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .advantage-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(42,174,103,0.1);
  }
  
  .advantage-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 15px;
  }
  
  .advantage-content h5 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
  }
  
  .advantage-content p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
  }
  
  /* 六大系统标题优化 */
  .six-systems-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 15px;
  }
  
  .number-six {
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-right: 8px;
  }
  
  /* 六大技术网格 - 移动端2列布局 */
  .six-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 15px;
    margin-bottom: 25px;
  }
  
  .tech-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
  }
  
  .tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42,174,103,0.12);
    border-color: rgba(42,174,103,0.2);
  }
  
  .tech-header {
    margin-bottom: 10px;
    flex-shrink: 0;
  }
  
  .tech-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .tech-header h5 {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .tech-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .tech-content p {
    font-size: 11px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 10px;
    flex: 1;
  }
  
  .tech-detail-link {
    font-size: 11px;
    color: #2aae67;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
  }

  .tech-detail-link:hover {
    color: #1e7e34;
  }

  .tech-detail-link i {
    font-size: 10px;
    margin-left: 4px;
  }

  /* 8项专项服务优化 */
  .quick-services-container {
    padding: 25px 0;
    background: #f8f9fa;
  }

  .quick-services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 15px;
    max-width: 100%;
  }

  .quick-service-item {
    background: white;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quick-service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42,174,103,0.1);
    border-color: rgba(42,174,103,0.2);
  }

  .quick-service-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 6px;
    border-radius: 6px;
    background: rgba(42,174,103,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .quick-service-icon i {
    font-size: 14px;
    color: #2aae67;
  }

  .quick-service-item:hover .quick-service-icon {
    background: #2aae67;
  }

  .quick-service-item:hover .quick-service-icon i {
    color: white;
  }

  .quick-service-text {
    font-size: 10px;
    color: #333333;
    font-weight: 600;
    line-height: 1.2;
  }

  /* 专家团队移动端优化 */
  .our-experts-light {
    padding: 30px 0;
    background: white;
  }

  .experts-container-light {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .expert-card-light {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .expert-card-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  .expert-photo-container {
    margin-bottom: 12px;
  }

  .expert-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .expert-info {
    text-align: center;
  }

  .expert-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
  }

  .expert-title {
    font-size: 11px;
    color: #2aae67;
    margin-bottom: 6px;
  }

  .expert-affiliation {
    margin-bottom: 8px;
  }

  .expert-hospital, .expert-department {
    font-size: 10px;
    color: #666;
    margin-bottom: 2px;
  }

  .expert-bio {
    font-size: 10px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* 特色服务移动端优化 */
  .featured-services-light {
    padding: 30px 0;
    background: #f8f9fa;
  }

  .featured-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .featured-service-card-v2 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
  }

  .featured-service-card-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  }

  .fsc-image-wrapper {
    height: 150px;
    position: relative;
    overflow: hidden;
  }

  .fsc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .icon-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(42,174,103,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
  }

  .fsc-content-wrapper {
    padding: 20px;
  }

  .fsc-content-wrapper h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
  }

  .fsc-content-wrapper ul li {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 6px;
    color: #666;
  }

  /* 健康资讯移动端优化 */
  .health-info-light {
    padding: 30px 0;
    background: white;
  }

  .info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .info-card-light {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .info-card-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  .info-card-image {
    height: 180px;
    overflow: hidden;
  }

  .info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .info-card-content {
    padding: 20px;
  }

  .info-card-content h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .info-card-content .info-excerpt {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* 成功案例移动端优化 */
  .success-stories-light {
    padding: 30px 0;
    background: #f8f9fa;
  }

  .story-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .story-card-light {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
  }

  .story-card-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  }

  .story-card-image {
    height: 160px;
    overflow: hidden;
  }

  .story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .story-card-content {
    padding: 20px;
  }

  .story-card-content h5 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
  }

  .story-card-content .story-quote p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* 合作伙伴移动端优化 */
  .partners-light {
    padding: 30px 0;
    background: white;
  }

  .partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
  }

  .partner-logo-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .partner-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  .partner-logo-item img {
    max-width: 80px;
    max-height: 40px;
    margin: 0 auto 10px;
  }

  .partner-name-cn {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
  }

  .partner-name-en {
    font-size: 10px;
    color: #666;
    margin-bottom: 6px;
  }

  .partner-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.4;
  }

  /* 出国就医服务移动端优化 */
  .overseas-medical-services {
    padding: 30px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  }

  .overseas-intro-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
  }

  .overseas-intro-content p {
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    padding: 0 15px;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
    margin-top: 25px;
  }

  .step-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  .step-number {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: #2aae67;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
  }

  .step-content h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
    margin-top: 10px;
  }

  .step-description p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
  }

  .feature-item {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 4px 6px 4px 0;
    font-size: 11px;
    color: #333;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .feature-item i {
    font-size: 10px;
    color: #2aae67;
    margin-right: 6px;
  }

  /* 通用区域标题优化 */
  .section-title-container-light {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .section-title-container-light h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
  }

  .section-title-container-light .subtitle-en {
    font-size: 12px;
    color: #666;
    font-weight: 400;
  }

  /* 查看更多按钮容器 */
  .view-all-container,
  .view-all-experts-container,
  .partner-cta-container {
    text-align: center;
    margin-top: 25px;
    padding: 0 15px;
  }

  .partner-cta-container p {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
  }
}

/* 更小屏幕优化 (480px以下) */
@media (max-width: 480px) {
  .quick-services-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .quick-service-item {
    min-height: 100px;
    padding: 15px 10px;
  }

  .quick-service-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 8px;
  }

  .quick-service-icon i {
    font-size: 16px;
  }

  .quick-service-text {
    font-size: 11px;
    line-height: 1.3;
  }

  .six-tech-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tech-item {
    min-height: auto;
    padding: 20px;
  }

  .tech-header h5 {
    font-size: 14px;
  }

  .tech-content p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* 极小屏幕优化 (360px以下) */
@media (max-width: 360px) {
  .container-light {
    padding: 0 10px;
  }

  .hero-content-light h1 {
    font-size: 22px;
  }

  .quick-services-row {
    gap: 8px;
    padding: 0 10px;
  }

  .quick-service-item {
    padding: 12px 6px;
    min-height: 85px;
  }

  .quick-service-text {
    font-size: 10px;
  }

  .metric-item {
    padding: 12px 6px;
  }

  .metric-value {
    font-size: 14px;
  }

  .metric-desc {
    font-size: 9px;
  }

  .steps-grid {
    gap: 10px;
    padding: 0 8px;
  }

  .step-card {
    padding: 12px 10px;
  }

  .step-content h4 {
    font-size: 12px;
  }

  .step-description p {
    font-size: 10px;
  }
}

/* 移动端竖屏优化 - 英雄区域上移和卡片布局调整 */
@media (max-width: 768px) {
  /* 英雄区域内容上移优化 */
  .hero-section-light {
    width: 100%;
    padding: 60px 0 40px 0; /* 减少顶部padding，让内容上移 */
    min-height: 400px; /* 减少最小高度 */
    display: flex;
    align-items: flex-start; /* 改为顶部对齐 */
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-content-light {
    text-align: center;
    z-index: 2;
    max-width: 90%;
    margin-top: 20px; /* 进一步上移内容 */
    padding: 0 15px;
  }

  .hero-content-light .tagline {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
  }

  .hero-content-light h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
  }

  .hero-content-light .hero-subtitle-light {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px; /* 减少底部间距 */
    color: rgba(255, 255, 255, 0.85);
    max-width: 100%;
  }

  /* CTA按钮优化 */
  .cta-button-light {
    display: inline-block;
    padding: 12px 24px; /* 进一步减少按钮padding */
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px; /* 减小字体 */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 174, 103, 0.3);
    margin-top: 0; /* 移除额外的顶部间距 */
  }

  /* 关键指标区域 - 三张卡片一排显示 */
  .key-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px; /* 减少间距以适应三张卡片 */
    padding: 20px 15px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap; /* 确保不换行 */
    overflow-x: auto; /* 如果空间不够，允许横向滚动 */
  }

  .metric-item {
    flex: 1;
    min-width: 100px; /* 设置最小宽度 */
    text-align: center;
    padding: 12px 6px; /* 减少内边距 */
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .metric-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(42, 174, 103, 0.15);
    border-color: #2aae67;
  }

  .metric-icon {
    width: 40px; /* 减小图标尺寸 */
    height: 40px;
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    transition: all 0.3s ease;
  }

  .metric-icon i {
    font-size: 18px; /* 减小图标字体 */
    color: #ffffff;
  }

  .metric-value {
    font-size: 20px; /* 减小数值字体 */
    font-weight: 700;
    color: #2aae67;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .metric-desc {
    font-size: 11px; /* 减小描述字体 */
    color: #666666;
    line-height: 1.3;
    font-weight: 500;
  }

  /* 出国就医服务卡片 - 每排两张布局 */
  .steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 每排两列 */
    gap: 15px;
    margin-top: 30px;
    padding: 0 15px;
  }

  .step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(42, 174, 103, 0.15);
    border-color: #2aae67;
  }

  .step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
  }

  .step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(42, 174, 103, 0.3);
  }

  .step-content h4 {
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
  }

  .step-description p {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
    margin: 0;
  }

  /* 特色服务卡片优化 */
  .feature-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 12px;
  }

  .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 174, 103, 0.15);
    border-color: #2aae67;
  }

  .feature-item i {
    font-size: 24px;
    color: #2aae67;
    margin-bottom: 8px;
    display: block;
  }

  .feature-item span {
    font-size: 13px;
    color: #333333;
    font-weight: 500;
    line-height: 1.3;
  }
}

/* 更小屏幕优化 (480px以下) */
@media (max-width: 480px) {
  .hero-section-light {
    padding: 50px 0 30px 0; /* 进一步减少padding */
    min-height: 350px;
  }

  .hero-content-light {
    margin-top: 15px; /* 进一步上移 */
  }

  .hero-content-light h1 {
    font-size: 24px;
  }

  .hero-content-light .hero-subtitle-light {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .cta-button-light {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* 关键指标进一步优化 */
  .key-metrics {
    gap: 6px;
    padding: 15px 10px;
  }

  .metric-item {
    min-width: 90px;
    padding: 10px 4px;
  }

  .metric-icon {
    width: 35px;
    height: 35px;
  }

  .metric-icon i {
    font-size: 16px;
  }

  .metric-value {
    font-size: 18px;
  }

  .metric-desc {
    font-size: 10px;
  }

  /* 出国就医卡片在小屏幕上保持两列 */
  .steps-grid {
    gap: 12px;
    padding: 0 10px;
  }

  .step-card {
    padding: 15px 12px;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .step-content h4 {
    font-size: 13px;
  }

  .step-description p {
    font-size: 11px;
  }
}

/* 极小屏幕优化 (360px以下) */
@media (max-width: 360px) {
  .hero-section-light {
    padding: 40px 0 25px 0;
    min-height: 320px;
  }

  .hero-content-light {
    margin-top: 10px;
  }

  .hero-content-light h1 {
    font-size: 22px;
  }

  .key-metrics {
    gap: 4px;
    padding: 12px 8px;
  }

  .metric-item {
    min-width: 80px;
    padding: 8px 3px;
  }

  .metric-icon {
    width: 30px;
    height: 30px;
  }

  .metric-icon i {
    font-size: 14px;
  }

  .metric-value {
    font-size: 16px;
  }

  .metric-desc {
    font-size: 9px;
  }

  .steps-grid {
    gap: 10px;
    padding: 0 8px;
  }

  .step-card {
    padding: 12px 10px;
  }

  .step-content h4 {
    font-size: 12px;
  }

  .step-description p {
    font-size: 10px;
  }
}

/* 移动端竖屏优化 - 英雄区域内容显著上移 */
@media (max-width: 768px) {
  /* 英雄区域大幅减少顶部空间 */
  .hero-section-light {
    width: 100%;
    padding: 15px 0 20px 0; /* 大幅减少顶部padding */
    min-height: 280px; /* 大幅减少最小高度 */
    display: flex;
    align-items: flex-start; /* 顶部对齐 */
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-content-light {
    text-align: center;
    z-index: 2;
    max-width: 90%;
    margin-top: 0; /* 移除顶部margin，让内容贴近顶部 */
    padding: 0 15px;
    transform: translateY(-25px); /* 大幅上移内容 */
  }

  .hero-content-light .tagline {
    font-size: 13px;
    margin-bottom: 4px; /* 进一步减少间距 */
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
  }

  .hero-content-light h1 {
    font-size: 24px; /* 减小字体 */
    line-height: 1.1; /* 进一步减少行高 */
    margin-bottom: 8px; /* 减少底部间距 */
    color: #ffffff;
    font-weight: 700;
  }

  .hero-content-light .hero-subtitle-light {
    font-size: 14px; /* 减小字体 */
    line-height: 1.3; /* 减少行高 */
    margin-bottom: 12px; /* 减少底部间距 */
    color: rgba(255, 255, 255, 0.85);
    max-width: 100%;
  }

  /* CTA按钮进一步优化 */
  .cta-button-light {
    display: inline-block;
    padding: 8px 16px; /* 进一步减少按钮padding */
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px; /* 减小字体 */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(42, 174, 103, 0.3);
    margin-top: 0;
  }

  /* 癌症预防系统区域优化 */
  .cancer-prevention-system {
    padding: 25px 0; /* 大幅减少padding */
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 100%);
    position: relative;
    overflow: hidden;
  }

  .intro-header {
    text-align: center;
    margin-bottom: 20px; /* 减少底部间距 */
    position: relative;
    z-index: 2;
  }

  .intro-header h2 {
    font-size: 20px; /* 减小标题字体 */
    color: #1a1a1a;
    margin-bottom: 6px; /* 减少间距 */
    font-weight: 700;
    line-height: 1.2;
  }

  .lead-text-light {
    font-size: 13px; /* 减小字体 */
    color: #666666;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
  }

  /* 系统介绍区域优化 */
  .system-intro-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px; /* 减少间距 */
    align-items: start;
    margin-bottom: 20px; /* 减少底部间距 */
  }

  .system-text-content {
    order: 1;
    padding: 0 15px;
  }

  .system-text-content h3 {
    font-size: 18px; /* 减小字体 */
    color: #1a1a1a;
    margin-bottom: 10px; /* 减少间距 */
    font-weight: 700;
    line-height: 1.2;
  }

  .system-brief {
    font-size: 13px; /* 减小字体 */
    color: #666666;
    line-height: 1.4;
    margin-bottom: 12px; /* 减少间距 */
  }

  .system-highlight-box {
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    color: #ffffff;
    padding: 12px; /* 减少padding */
    border-radius: 10px;
    margin-bottom: 15px; /* 减少间距 */
    box-shadow: 0 4px 20px rgba(42, 174, 103, 0.2);
  }

  .system-highlight-box h4 {
    font-size: 15px; /* 减小字体 */
    margin-bottom: 6px; /* 减少间距 */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .system-highlight-box p {
    font-size: 12px; /* 减小字体 */
    line-height: 1.3;
    margin: 0;
    opacity: 0.95;
  }

  /* 更多肿瘤专项服务 - 8个卡片每排两个 */
  .quick-services-container {
    padding: 20px 0;
    background: #ffffff;
  }

  .services-divider {
    text-align: center;
    margin: 30px 0 25px 0;
    position: relative;
  }

  .services-divider span {
    background: #ffffff;
    color: #2aae67;
    font-size: 18px;
    font-weight: 700;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }

  .services-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    z-index: 1;
  }

  .quick-services-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 每排两个 */
    gap: 15px;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .quick-service-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
  }

  .quick-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
  }

  .quick-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(42, 174, 103, 0.15);
    border-color: #2aae67;
  }

  .quick-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0fdf9 0%, #e6fffa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    transition: all 0.3s ease;
    border: 2px solid rgba(42, 174, 103, 0.1);
  }

  .quick-service-icon i {
    font-size: 22px;
    color: #2aae67;
    transition: all 0.3s ease;
  }

  .quick-service-item:hover .quick-service-icon {
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    border-color: #2aae67;
    transform: scale(1.1);
  }

  .quick-service-item:hover .quick-service-icon i {
    color: #ffffff;
    transform: scale(1.1);
  }

  .quick-service-text {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
  }

  .quick-service-item:hover .quick-service-text {
    color: #2aae67;
  }
}

/* 更小屏幕进一步优化 (480px以下) */
@media (max-width: 480px) {
  .hero-section-light {
    padding: 10px 0 15px 0; /* 进一步减少padding */
    min-height: 260px; /* 进一步减少高度 */
  }

  .hero-content-light {
    transform: translateY(-30px); /* 更大的上移距离 */
  }

  .hero-content-light h1 {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .hero-content-light .hero-subtitle-light {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .cta-button-light {
    padding: 7px 14px;
    font-size: 13px;
  }

  .intro-header h2 {
    font-size: 18px;
  }

  .lead-text-light {
    font-size: 12px;
  }

  .system-text-content h3 {
    font-size: 16px;
  }

  .system-brief {
    font-size: 12px;
  }

  .system-highlight-box {
    padding: 10px;
  }

  .system-highlight-box h4 {
    font-size: 14px;
  }

  .system-highlight-box p {
    font-size: 11px;
  }

  /* 专项服务卡片在小屏幕上保持两列 */
  .quick-services-row {
    gap: 12px;
    padding: 0 10px;
  }

  .quick-service-item {
    padding: 15px 12px;
  }

  .quick-service-icon {
    width: 45px;
    height: 45px;
  }

  .quick-service-icon i {
    font-size: 20px;
  }

  .quick-service-text {
    font-size: 13px;
  }

  .services-divider span {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .hero-section-light {
    padding: 8px 0 20px 0;
    min-height: 240px;
  }

  .hero-content-light {
    transform: translateY(-35px);
  }

  .hero-content-light h1 {
    font-size: 18px;
  }

  .intro-header h2 {
    font-size: 16px;
  }

  .lead-text-light {
    font-size: 12px;
  }

  .system-text-content h3 {
    font-size: 15px;
  }

  .system-brief {
    font-size: 12px;
  }

  .system-highlight-box {
    padding: 10px;
  }

  .system-highlight-box h4 {
    font-size: 13px;
  }

  .system-highlight-box p {
    font-size: 11px;
  }

  .quick-services-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 0 6px;
  }

  .quick-service-item {
    padding: 5px 2px;
    border-radius: 5px;
  }

  .quick-service-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 3px;
  }

  .quick-service-icon i {
    font-size: 10px;
  }

  .quick-service-text {
    font-size: 9px;
  }

  .services-divider span {
    font-size: 14px;
  }
}

/* 移动端竖屏优化 - 英雄区域内容显著上移 */
@media (max-width: 768px) {
  /* 英雄区域大幅减少顶部空间 */
  .hero-section-light {
    width: 100%;
    padding: 15px 0 20px 0; /* 大幅减少顶部padding */
    min-height: 280px; /* 大幅减少最小高度 */
    display: flex;
    align-items: flex-start; /* 顶部对齐 */
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-content-light {
    text-align: center;
    z-index: 2;
    max-width: 90%;
    margin-top: 0; /* 移除顶部margin，让内容贴近顶部 */
    padding: 0 15px;
    transform: translateY(-25px); /* 大幅上移内容 */
  }

  .hero-content-light .tagline {
    font-size: 13px;
    margin-bottom: 4px; /* 进一步减少间距 */
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
  }

  .hero-content-light h1 {
    font-size: 24px; /* 减小字体 */
    line-height: 1.1; /* 进一步减少行高 */
    margin-bottom: 8px; /* 减少底部间距 */
    color: #ffffff;
    font-weight: 700;
  }

  .hero-content-light .hero-subtitle-light {
    font-size: 14px; /* 减小字体 */
    line-height: 1.3; /* 减少行高 */
    margin-bottom: 12px; /* 减少底部间距 */
    color: rgba(255, 255, 255, 0.85);
    max-width: 100%;
  }

  /* CTA按钮进一步优化 */
  .cta-button-light {
    display: inline-block;
    padding: 8px 16px; /* 进一步减少按钮padding */
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px; /* 减小字体 */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(42, 174, 103, 0.3);
    margin-top: 0;
  }

  /* 癌症预防系统区域优化 */
  .cancer-prevention-system {
    padding: 25px 0; /* 大幅减少padding */
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 100%);
    position: relative;
    overflow: hidden;
  }

  .intro-header {
    text-align: center;
    margin-bottom: 20px; /* 减少底部间距 */
    position: relative;
    z-index: 2;
  }

  .intro-header h2 {
    font-size: 20px; /* 减小标题字体 */
    color: #1a1a1a;
    margin-bottom: 6px; /* 减少间距 */
    font-weight: 700;
    line-height: 1.2;
  }

  .lead-text-light {
    font-size: 13px; /* 减小字体 */
    color: #666666;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
  }

  /* 系统介绍区域优化 */
  .system-intro-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px; /* 减少间距 */
    align-items: start;
    margin-bottom: 20px; /* 减少底部间距 */
  }

  .system-text-content {
    order: 1;
    padding: 0 15px;
  }

  .system-text-content h3 {
    font-size: 18px; /* 减小字体 */
    color: #1a1a1a;
    margin-bottom: 10px; /* 减少间距 */
    font-weight: 700;
    line-height: 1.2;
  }

  .system-brief {
    font-size: 13px; /* 减小字体 */
    color: #666666;
    line-height: 1.4;
    margin-bottom: 12px; /* 减少间距 */
  }

  .system-highlight-box {
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    color: #ffffff;
    padding: 12px; /* 减少padding */
    border-radius: 10px;
    margin-bottom: 15px; /* 减少间距 */
    box-shadow: 0 4px 20px rgba(42, 174, 103, 0.2);
  }

  .system-highlight-box h4 {
    font-size: 15px; /* 减小字体 */
    margin-bottom: 6px; /* 减少间距 */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .system-highlight-box p {
    font-size: 12px; /* 减小字体 */
    line-height: 1.3;
    margin: 0;
    opacity: 0.95;
  }

  /* 更多肿瘤专项服务 - 8个卡片每排两个 */
  .quick-services-container {
    padding: 20px 0;
    background: #ffffff;
  }

  .services-divider {
    text-align: center;
    margin: 30px 0 25px 0;
    position: relative;
  }

  .services-divider span {
    background: #ffffff;
    color: #2aae67;
    font-size: 18px;
    font-weight: 700;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }

  .services-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    z-index: 1;
  }

  .quick-services-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 每排两个 */
    gap: 15px;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .quick-service-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
  }

  .quick-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
  }

  .quick-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(42, 174, 103, 0.15);
    border-color: #2aae67;
  }

  .quick-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0fdf9 0%, #e6fffa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    transition: all 0.3s ease;
    border: 2px solid rgba(42, 174, 103, 0.1);
  }

  .quick-service-icon i {
    font-size: 22px;
    color: #2aae67;
    transition: all 0.3s ease;
  }

  .quick-service-item:hover .quick-service-icon {
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    border-color: #2aae67;
    transform: scale(1.1);
  }

  .quick-service-item:hover .quick-service-icon i {
    color: #ffffff;
    transform: scale(1.1);
  }

  .quick-service-text {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
  }

  .quick-service-item:hover .quick-service-text {
    color: #2aae67;
  }
}

/* 更小屏幕进一步优化 (480px以下) */
@media (max-width: 480px) {
  .hero-section-light {
    padding: 10px 0 20px 0;
    min-height: 260px;
  }

  .hero-content-light {
    transform: translateY(-30px);
  }

  .hero-content-light h1 {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-content-light .hero-subtitle-light {
    font-size: 13px;
  }

  .cta-button-light {
    padding: 8px 16px;
    font-size: 13px;
  }

  .intro-header h2 {
    font-size: 18px;
  }

  .lead-text-light {
    font-size: 13px;
  }

  .system-text-content h3 {
    font-size: 16px;
  }

  .system-brief {
    font-size: 13px;
  }

  .system-highlight-box {
    padding: 12px;
  }

  .system-highlight-box h4 {
    font-size: 14px;
  }

  .system-highlight-box p {
    font-size: 12px;
  }

  .quick-services-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 0 8px;
  }

  .quick-service-item {
    padding: 6px 3px;
    border-radius: 6px;
  }

  .quick-service-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
  }

  .quick-service-icon i {
    font-size: 12px;
  }

  .quick-service-text {
    font-size: 10px;
  }

  .services-divider span {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .hero-section-light {
    padding: 8px 0 20px 0;
    min-height: 240px;
  }

  .hero-content-light {
    transform: translateY(-35px);
  }

  .hero-content-light h1 {
    font-size: 18px;
  }

  .intro-header h2 {
    font-size: 16px;
  }

  .lead-text-light {
    font-size: 12px;
  }

  .system-text-content h3 {
    font-size: 15px;
  }

  .system-brief {
    font-size: 12px;
  }

  .system-highlight-box {
    padding: 10px;
  }

  .system-highlight-box h4 {
    font-size: 13px;
  }

  .system-highlight-box p {
    font-size: 11px;
  }

  .quick-services-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 0 6px;
  }

  .quick-service-item {
    padding: 5px 2px;
    border-radius: 5px;
  }

  .quick-service-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 3px;
  }

  .quick-service-icon i {
    font-size: 10px;
  }

  .quick-service-text {
    font-size: 9px;
  }

  .services-divider span {
    font-size: 14px;
  }
}

/* 移动端竖屏优化 - 英雄区域内容显著上移 */
@media (max-width: 768px) {
  /* 英雄区域大幅减少顶部空间 */
  .hero-section-light {
    width: 100%;
    padding: 15px 0 20px 0; /* 大幅减少顶部padding */
    min-height: 280px; /* 大幅减少最小高度 */
    display: flex;
    align-items: flex-start; /* 顶部对齐 */
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-content-light {
    text-align: center;
    z-index: 2;
    max-width: 90%;
    margin-top: 0; /* 移除顶部margin，让内容贴近顶部 */
    padding: 0 15px;
    transform: translateY(-25px); /* 大幅上移内容 */
  }

  .hero-content-light .tagline {
    font-size: 13px;
    margin-bottom: 4px; /* 进一步减少间距 */
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
  }

  .hero-content-light h1 {
    font-size: 24px; /* 减小字体 */
    line-height: 1.1; /* 进一步减少行高 */
    margin-bottom: 8px; /* 减少底部间距 */
    color: #ffffff;
    font-weight: 700;
  }

  .hero-content-light .hero-subtitle-light {
    font-size: 14px; /* 减小字体 */
    line-height: 1.3; /* 减少行高 */
    margin-bottom: 12px; /* 减少底部间距 */
    color: rgba(255, 255, 255, 0.85);
    max-width: 100%;
  }

  /* CTA按钮进一步优化 */
  .cta-button-light {
    display: inline-block;
    padding: 8px 16px; /* 进一步减少按钮padding */
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px; /* 减小字体 */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(42, 174, 103, 0.3);
    margin-top: 0;
  }

  /* 癌症预防系统区域优化 */
  .cancer-prevention-system {
    padding: 25px 0; /* 大幅减少padding */
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 100%);
    position: relative;
    overflow: hidden;
  }

  .intro-header {
    text-align: center;
    margin-bottom: 20px; /* 减少底部间距 */
    position: relative;
    z-index: 2;
  }

  .intro-header h2 {
    font-size: 20px; /* 减小标题字体 */
    color: #1a1a1a;
    margin-bottom: 6px; /* 减少间距 */
    font-weight: 700;
    line-height: 1.2;
  }

  .lead-text-light {
    font-size: 13px; /* 减小字体 */
    color: #666666;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
  }

  /* 系统介绍区域优化 */
  .system-intro-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px; /* 减少间距 */
    align-items: start;
    margin-bottom: 20px; /* 减少底部间距 */
  }

  .system-text-content {
    order: 1;
    padding: 0 15px;
  }

  .system-text-content h3 {
    font-size: 18px; /* 减小字体 */
    color: #1a1a1a;
    margin-bottom: 10px; /* 减少间距 */
    font-weight: 700;
    line-height: 1.2;
  }

  .system-brief {
    font-size: 13px; /* 减小字体 */
    color: #666666;
    line-height: 1.4;
    margin-bottom: 12px; /* 减少间距 */
  }

  .system-highlight-box {
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    color: #ffffff;
    padding: 12px; /* 减少padding */
    border-radius: 10px;
    margin-bottom: 15px; /* 减少间距 */
    box-shadow: 0 4px 20px rgba(42, 174, 103, 0.2);
  }

  .system-highlight-box h4 {
    font-size: 15px; /* 减小字体 */
    margin-bottom: 6px; /* 减少间距 */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .system-highlight-box p {
    font-size: 12px; /* 减小字体 */
    line-height: 1.3;
    margin: 0;
    opacity: 0.95;
  }

  /* 更多肿瘤专项服务 - 8个卡片每排两个 */
  .quick-services-container {
    padding: 20px 0;
    background: #ffffff;
  }

  .services-divider {
    text-align: center;
    margin: 30px 0 25px 0;
    position: relative;
  }

  .services-divider span {
    background: #ffffff;
    color: #2aae67;
    font-size: 18px;
    font-weight: 700;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }

  .services-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    z-index: 1;
  }

  .quick-services-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 每排两个 */
    gap: 15px;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .quick-service-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
  }

  .quick-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
  }

  .quick-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(42, 174, 103, 0.15);
    border-color: #2aae67;
  }

  .quick-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0fdf9 0%, #e6fffa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    transition: all 0.3s ease;
    border: 2px solid rgba(42, 174, 103, 0.1);
  }

  .quick-service-icon i {
    font-size: 22px;
    color: #2aae67;
    transition: all 0.3s ease;
  }

  .quick-service-item:hover .quick-service-icon {
    background: linear-gradient(135deg, #2aae67 0%, #1e8a52 100%);
    border-color: #2aae67;
    transform: scale(1.1);
  }

  .quick-service-item:hover .quick-service-icon i {
    color: #ffffff;
    transform: scale(1.1);
  }

  .quick-service-text {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
  }

  .quick-service-item:hover .quick-service-text {
    color: #2aae67;
  }
}

/* 移动端"更多肿瘤专项服务"重新设计 */
@media (max-width: 768px) {
  .quick-services-container {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 100%);
  }

  .services-divider {
    text-align: center;
    margin: 25px 0 30px 0;
    position: relative;
  }

  .services-divider span {
    background: linear-gradient(135deg, #2aae67, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    background-color: #f8fffe;
  }

  .services-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #2aae67 30%, #22c55e 70%, transparent 90%);
    border-radius: 2px;
    z-index: 1;
  }

  .quick-services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
    margin: 0 auto 20px;
    padding: 0 15px;
  }

  .quick-service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid rgba(42, 174, 103, 0.1);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 4px 6px rgba(0, 0, 0, 0.05),
      0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .quick-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2aae67, #22c55e, #16a34a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .quick-service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 174, 103, 0.03) 0%, rgba(34, 197, 94, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }

  .quick-service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
      0 20px 25px rgba(42, 174, 103, 0.15),
      0 10px 10px rgba(42, 174, 103, 0.04);
    border-color: rgba(42, 174, 103, 0.3);
  }

  .quick-service-item:hover::before {
    transform: scaleX(1);
  }

  .quick-service-item:hover::after {
    opacity: 1;
  }

  .quick-service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2aae67, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(42, 174, 103, 0.2);
  }

  .quick-service-icon i {
    color: white;
    font-size: 18px;
    transition: all 0.4s ease;
  }

  .quick-service-item:hover .quick-service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
      0 8px 16px rgba(42, 174, 103, 0.3),
      0 0 0 4px rgba(42, 174, 103, 0.1);
    background: linear-gradient(135deg, #16a34a, #2aae67);
  }

  .quick-service-item:hover .quick-service-icon i {
    transform: scale(1.1);
  }

  .quick-service-text {
    font-size: 13px;
    color: #374151;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .quick-service-item:hover .quick-service-text {
    color: #2aae67;
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .quick-services-container {
    padding: 25px 0;
  }

  .services-divider {
    margin: 20px 0 25px 0;
  }

  .services-divider span {
    font-size: 18px;
    padding: 0 15px;
  }

  .quick-services-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 12px;
    margin-bottom: 15px;
  }

  .quick-service-item {
    padding: 16px 10px;
    border-radius: 14px;
    min-height: 110px;
  }

  .quick-service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .quick-service-icon i {
    font-size: 16px;
  }

  .quick-service-text {
    font-size: 12px;
  }

  .quick-service-item:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

@media (max-width: 360px) {
  .quick-services-container {
    padding: 20px 0;
  }

  .services-divider span {
    font-size: 16px;
  }

  .quick-services-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
    margin-bottom: 12px;
  }

  .quick-service-item {
    padding: 14px 8px;
    border-radius: 12px;
    min-height: 100px;
  }

  .quick-service-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }

  .quick-service-icon i {
    font-size: 14px;
  }

  .quick-service-text {
    font-size: 11px;
  }

  .quick-service-item:hover {
    transform: translateY(-4px);
  }
}

/* 移动端"更多肿瘤专项服务"优化设计 - 恢复美观版本 */
@media (max-width: 768px) {
  .quick-services-container {
    padding: 20px 0 15px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 100%);
    position: relative;
  }

  .services-divider {
    text-align: center;
    margin: 15px 0 20px 0;
    position: relative;
  }

  .services-divider span {
    background: linear-gradient(135deg, #2aae67, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    font-weight: 700;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    background-color: #f8fffe;
  }

  .services-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #2aae67 50%, transparent 90%);
    border-radius: 2px;
    z-index: 1;
  }

  .quick-services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
    margin: 0 auto 15px;
    padding: 0 15px;
  }

  .quick-service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 1px solid rgba(42, 174, 103, 0.15);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .quick-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2aae67, #22c55e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .quick-service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 174, 103, 0.03) 0%, rgba(34, 197, 94, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .quick-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(42, 174, 103, 0.12);
    border-color: rgba(42, 174, 103, 0.25);
  }

  .quick-service-item:hover::before {
    transform: scaleX(1);
  }

  .quick-service-item:hover::after {
    opacity: 1;
  }

  .quick-service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2aae67, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 6px rgba(42, 174, 103, 0.2);
  }

  .quick-service-icon i {
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .quick-service-item:hover .quick-service-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 12px rgba(42, 174, 103, 0.3);
  }

  .quick-service-item:hover .quick-service-icon i {
    transform: scale(1.1);
  }

  .quick-service-text {
    font-size: 12px;
    color: #374151;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    margin: 0;
  }

  .quick-service-item:hover .quick-service-text {
    color: #2aae67;
    transform: translateY(-1px);
  }
}

@media (max-width: 480px) {
  .quick-services-container {
    padding: 18px 0 12px 0;
  }

  .services-divider {
    margin: 12px 0 18px 0;
  }

  .services-divider span {
    font-size: 16px;
    padding: 0 18px;
  }

  .quick-services-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 12px;
    margin-bottom: 12px;
  }

  .quick-service-item {
    padding: 14px 8px;
    border-radius: 10px;
    min-height: 80px;
  }

  .quick-service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .quick-service-icon i {
    font-size: 14px;
  }

  .quick-service-text {
    font-size: 11px;
  }

  .quick-service-item:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 360px) {
  .quick-services-container {
    padding: 15px 0 10px 0;
  }

  .services-divider span {
    font-size: 15px;
    padding: 0 15px;
  }

  .quick-services-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .quick-service-item {
    padding: 12px 6px;
    border-radius: 8px;
    min-height: 75px;
  }

  .quick-service-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
  }

  .quick-service-icon i {
    font-size: 13px;
  }

  .quick-service-text {
    font-size: 10px;
  }
}

/* 修复移动端专家照片圆形显示 */
@media (max-width: 768px) {
  .expert-photo-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    position: relative;
    flex-shrink: 0;
  }

  .expert-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .expert-card-light:hover .expert-photo {
    transform: scale(1.05);
  }
}

@media (max-width: 480px) {
  .expert-photo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
  }
}

@media (max-width: 360px) {
  .expert-photo-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
  }
}

/* 手机竖版英雄区域内容下移80像素 */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-content-light {
    text-align: center;
    z-index: 2;
    max-width: 90%;
    margin-top: 80px !important; /* 下移80像素，使用!important确保优先级 */
    padding: 0 15px;
    transform: none !important; /* 移除之前的上移效果 */
  }
}

/* 确保在所有移动设备上都应用下移效果 */
@media (max-width: 768px) {
  .hero-content-light {
    margin-top: 80px !important; /* 下移80像素，使用!important确保优先级 */
    transform: none !important; /* 移除之前的上移效果 */
  }
}