  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
        
        :root {
            --primary-color: #e63946;
            --secondary-color: #f1faee;
            --accent-color: #a8dadc;
            --text-color: #1d3557;
            --light-text: #457b9d;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }
        
        .hero-section {
            height: 100vh;
            background-image: url('https://p26-flow-imagex-download-sign.byteimg.com/tos-cn-i-a9rns2rl98/6b02b59b486345be967293064ea27798.jpg~tplv-a9rns2rl98-24:720:720.image?lk3s=8e244e95&rcl=20260114144511C270831A0FFE5741DAC4&rrcfp=8a172a1a&x-expires=1768977911&x-signature=kPQTSL60j%2BbsFU92Jgm8Fz8kK%2Bg%3D');
            background-size: cover;
            background-position: center;
            position: relative;
            filter: contrast(1.2) saturate(1.2) brightness(1.05);
        }
        
   
        
        .hero-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .btn-primary:hover {
            background-color: #d62b39;
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            color: var(--text-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            color: white;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .package-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            background-color: white;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .package-header {
            padding: 2rem;
            text-align: center;
            background-color: var(--secondary-color);
        }
        
        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        
        .package-features {
            padding: 2rem;
        }
        
        .package-features li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .package-features i {
            color: var(--primary-color);
            margin-right: 0.75rem;
        }
        
        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            position: relative;
            margin: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-card p {
            flex: 1;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: var(--accent-color);
            font-family: 'Playfair Display', serif;
            opacity: 0.3;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .contact-info {
            background-color: var(--secondary-color);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .contact-info i {
            color: var(--primary-color);
            margin-right: 1rem;
            font-size: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
            outline: none;
        }
        
        .footer {
            background-color: var(--text-color);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: #a8dadc;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            color: white;
            margin-right: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1rem;
            margin-top: 2rem;
            text-align: center;
            color: #a8dadc;
        }
        
        /* 客户评价滑块样式 */
        .testimonial-slider-container {
            overflow-x: auto;
            overflow-y: hidden;
            position: relative;
            margin: 0 auto;
            max-width: 1200px;
            scroll-snap-type: x mandatory;
        }
        
        .testimonial-slider {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            min-width: max-content;
        }
        
        .testimonial-slide {
            flex: 0 0 300px;
            scroll-snap-align: start;
        }
        
        .testimonial-slider-container::-webkit-scrollbar {
            height: 6px;
        }
        
        .testimonial-slider-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .testimonial-slider-container::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 3px;
        }
        
        .testimonial-slider-container::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        

        
        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .process-step::after {
                display: none;
            }
            
            .step-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }
        
        /* 加载动画 */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-circle {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        

        
        /* 相册预览模态框 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 10000;
            overflow: auto;
            animation: fadeIn 0.3s ease;
        }
        
        .modal-content {
            position: relative;
            margin: 10% auto;
            max-width: 800px;
            animation: zoomIn 0.3s ease;
        }
        
        .modal img {
            width: 100%;
            border-radius: 10px;
        }
        
        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--primary-color);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        /* AI风格推荐 */
        .style-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            background-color: white;
            cursor: pointer;
        }
        
        .style-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .style-card.selected {
            border: 3px solid var(--primary-color);
        }
        
        .style-preview {
            height: 200px;
            overflow: hidden;
        }
        
        .style-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .style-card:hover .style-preview img {
            transform: scale(1.1);
        }
        
        .style-info {
            padding: 1.5rem;
        }
        
        .style-name {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .style-description {
            color: var(--light-text);
            font-size: 0.9rem;
        }
        
        /* 浮动预约按钮 */
        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .floating-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        


/* 上一篇/下一篇 容器整体样式 */
.prenext {
  /* 布局：横向排列，两端对齐，适配不同宽度 */
  display: flex;
  flex-wrap: wrap; /* 移动端自动换行，避免拥挤 */
  justify-content: center;
  align-items: center;
  gap: 16px; /* 两个链接之间的间距，换行时也生效 */
  padding: 20px 0; /* 上下内边距，和页面其他模块分隔 */
 
  margin: 20px 0; /* 上下外边距，优化页面间距 */
}

/* 单个链接通用样式 */
.prenext a {
  /* 文字样式 */
  color: #333333; /* 默认文字颜色 */
  text-decoration: none; /* 移除默认下划线 */
  font-size: 14px; /* 合适的文字大小 */
  line-height: 1.6; /* 行高，提升可读性 */
  
  /* 布局优化：让链接有一定点击区域 */
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px; /* 轻微圆角，更柔和 */
  
  /* 过渡动画，hover 效果更丝滑 */
  transition: all 0.2s ease-in-out;
}

/* 鼠标悬浮效果（提升交互体验） */
.prenext a:hover {
  color: #ef4444; /* 悬浮时文字变红（和你之前分页的颜色呼应） */
  background-color: #fef2f2; /* 浅红背景，视觉统一 */
  text-decoration: none; /* 保持无下划线，也可改为 underline 显示下划线 */
}

/* 可选：给「上一篇/下一篇」添加图标（需引入 Font Awesome，可选） */
/* 若不引入图标，可删除这部分，不影响核心样式 */
.prenext a:first-child::before {
  content: "← "; /* 简单文本图标，无需外部依赖 */
  margin-right: 4px;
  color: inherit; /* 继承文字颜色，悬浮时同步变色 */
}

.prenext a:last-child::after {
  content: " →"; /* 简单文本图标，无需外部依赖 */
  margin-left: 4px;
  color: inherit; /* 继承文字颜色，悬浮时同步变色 */
}

/* 移动端适配（屏幕小于 768px 时） */
@media (max-width: 768px) {
  .prenext {
    flex-direction: column; /* 垂直排列，更整洁 */
    align-items: flex-start; /* 左对齐，符合移动端阅读习惯 */
    gap: 12px; /* 缩小垂直间距 */
    padding: 16px 0;
  }
  
  .prenext a {
    font-size: 14px; /* 略微缩小文字，适配小屏幕 */
    padding: 6px 10px;
  }
}
.article{
    max-width: 1000px;
    margin: 0 auto;
    
}
.article img{
    max-width: 600px;
    margin: 0 auto;
    
}
.article img{
    max-width: 100%; 
    
}
    /* 轮播容器：承载所有轮播项，隐藏溢出内容 */
    .carousel {
      width: 100%;
      height: 100vh;
      position: relative;
      overflow: hidden;
    }
    /* 轮播列表：横向排列所有轮播项，通过平移实现切换 */
    .carousel-list {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease-in-out; /* 切换平滑动画 */
    }
    /* 单个轮播项：占满容器宽度，相对定位承载图片和文字 */
    .carousel-item {
      flex: 0 0 100%; /* 每个项占满容器，禁止缩放 */
      width: 100%;
      height: 100%;
      position: relative;
    }
    /* 轮播图片：覆盖整个轮播项，保持比例不变形 */
    .carousel-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* 文字内容容器：居中显示，层级高于图片 */
    .carousel-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      z-index: 10;
      width: 90%;
      max-width: 800px;
    }
    /* 文字半透明背景：提升可读性，不遮挡文字 */
    .carousel-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: rgba(0, 0, 0, 0.2); */
      z-index: -1;
      border-radius: 8px;
      padding: 2rem 1rem;
    }
    /* 标题样式：自适应大小，分色突出重点 */
    .carousel-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 1rem;
      padding: 1rem 0;
    }
    .carousel-title .white {
      color: #fff;
    }
    .carousel-title .pink {
      color: #ff4d6d;
    }
    /* 描述文本样式：自适应大小，行高舒适 */
    .carousel-desc {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      margin-bottom: 2rem;
      line-height: 1.6;
    }
    /* 按钮容器：弹性布局，适配不同屏幕 */
    .carousel-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      padding-bottom: 20px;
    }
    /* 通用按钮样式：统一大小和过渡效果 */
    .btn {
      padding: 0.8rem 2rem;
      border-radius: 4px;
      text-decoration: none;
      font-size: clamp(0.9rem, 2vw, 1.1rem);
      font-weight: 500;
      transition: all 0.3s ease;
    }
    /* 红色按钮：主色调，hover加深 */
    .btn-red {
      background: #e63946;
      color: #fff;
      border: 2px solid #e63946;
      border-radius: 50px;
    }
    .btn-red:hover {
      background: #ff3e5f;
    }
    /* 白色边框按钮：辅助色调，hover浅背景 */
    .btn-white {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
      border-radius: 50px;
    }
    .btn-white:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    /* 轮播切换按钮：左右两侧，居中显示 */
    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      z-index: 20;
      transition: background 0.3s ease;
    }
    .carousel-control:hover {
      background: rgba(255, 255, 255, 0.4);
    }
    .control-prev {
      left: 20px;
    }
    .control-next {
      right: 20px;
    }
    /* 轮播分页指示器：底部居中 */
    .carousel-indicators {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 20;
    }
    .indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .indicator.active {
      background: #fff; /* 激活状态白色高亮 */
    }
    /* 手机端自适应调整 */
    @media (max-width: 768px) {
      .carousel {
        height: 80vh;
      }
      .carousel-buttons {
        flex-direction: column;
        align-items: center;
      }
      .carousel-control {
        width: 30px;
        height: 30px;
        font-size: 14px;
      }
      .control-prev {
        left: 10px;
      }
      .control-next {
        right: 10px;
      }
    }

