
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* CSS变量定义 */
        :root {
            --primary-color: #d4af37;
            --secondary-color: #6c757d;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
            --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f0c14b 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e9ed 100%);
            color: var(--dark-color);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            background: #fff;
            box-shadow: var(--shadow-lg);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        /* 顶部导航栏 */
        .header {
            position: relative;
            height: auto;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            overflow: hidden;
            padding: 60px 0;
        }

        /* 背景图片容器 */
        .header-bg-container {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        /* 背景图片项 */
        .header-bg-item {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .header-bg-item.active {
            opacity: 1;
        }

        /* 透明背景覆盖 */
        .header-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
            z-index: 1;
        }

        /* 确保内容在最上层 */
        .header-content {
            position: relative;
            z-index: 2;
        }

        /* 首图轮播样式 */
        .header-slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .header-slide {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .header-slide.active {
            opacity: 1;
        }

        /* 背景装饰 */
        .header-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        .header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
            backdrop-filter: blur(2px);
        }

        /* 樱花效果 */
        .sakura-container {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            z-index: 1;
        }

        /* 内容 */
        .header-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
            padding: 0 20px;
        }

        .header h1 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .header p {
            font-size: 1.15rem;
            margin-bottom: 30px;
            opacity: 0.95;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.6s both;
            max-width: 500px;
        }

        /* 头部功能标签 */
        .header-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
            margin-bottom: 35px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 5px 10px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .feature-item:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* CTA按钮 */
        .cta-button {
            display: inline-block;
            padding: 10px 40px;
            background: linear-gradient(135deg, #d4af37 0%, #f0c14b 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
            animation: fadeInUp 1s ease-out 1s both, breathe 3s ease-in-out 2s infinite;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 2px solid transparent;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: lightSweep 3s ease-in-out infinite;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(212, 175, 55, 0.6);
            background: linear-gradient(135deg, #f0c14b 0%, #d4af37 100%);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .cta-button:active {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
        }

        /* 呼吸灯效果动画 */
        @keyframes breathe {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
            }
            50% {
                box-shadow: 0 12px 45px rgba(212, 175, 55, 0.7);
            }
        }

        /* 光循环滑过效果动画 */
        @keyframes lightSweep {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        /* CTA按钮容器 */
        .cta-buttons-container {
            display: flex;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* 悬浮底部的CTA按钮 */
        .floating-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            max-width: 600px;
            margin: 0 auto;
            padding: 15px;
            z-index: 99;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .floating-cta.visible {
            transform: translateY(0);
        }

        .floating-cta .cta-button {
            width: 100%;
            text-align: center;
        }

        /* 紧急CTA按钮 */
        .cta-button.urgent {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
            animation: fadeInUp 1s ease-out 1s both, pulse 1.5s ease-in-out 2s infinite;
        }

        .cta-button.urgent:hover {
            background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
            box-shadow: 0 15px 45px rgba(231, 76, 60, 0.6);
        }

        /* 次要CTA按钮 */
        .cta-button.secondary {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
            animation: fadeInUp 1s ease-out 1.2s both;
        }

        .cta-button.secondary:hover {
            background: var(--primary-color);
            color: white;
            box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
        }

        /* 动画效果 */
        @keyframes pulse {
            0%, 100% {
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
        }

        /* 导航菜单 */
        .nav-tabs {
            display: flex;
            overflow-x: auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            z-index: 50;
            scrollbar-width: none;
            -ms-overflow-style: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-tabs.fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-tabs::-webkit-scrollbar {
            display: none;
        }

        .nav-item {
            flex: 0 0 auto;
            padding: 16px 24px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 500;
            color: var(--secondary-color);
            white-space: nowrap;
            position: relative;
            border-radius: 8px 8px 0 0;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gold-gradient);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 3px 3px 0 0;
        }

        .nav-item.active {
            color: var(--primary-color);
            background: rgba(212, 175, 55, 0.05);
        }

        .nav-item.active::before {
            width: 100%;
        }

        .nav-item:hover {
            background: rgba(212, 175, 55, 0.1);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .nav-item:active {
            transform: translateY(0);
        }

        /* 内容区域 */
        .content-section {
            display: none;
            padding: 20px;
            padding-top: 80px;
            animation: fadeIn 0.5s ease-out;
        }

        .content-section.active {
            display: block;
        }

        /* 图片容器 */
        .img-container {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e9ed 100%);
        }

        .img-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .img-container:hover::before {
            opacity: 1;
        }

        /* 图片加载效果 */
        .lazy-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: scale(1.1);
        }

        .lazy-img.loaded {
            opacity: 1;
            transform: scale(1);
        }

        /* 图片占位符 */
        .img-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e9ed 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: rgba(0, 0, 0, 0.1);
        }

        /* 卡片样式 */
        .card {
            background: #fff;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-bottom: 20px;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .card .img-container {
            width: 100%;
            height: auto;
            min-height: 0;
        }

        .card .img-container img {
            display: block;
        }

        .card:hover .lazy-img {
            transform: scale(1.05);
        }

        /* 轮播图图片容器 */
        .slider .img-container {
            height: auto;
            min-height: 0;
        }

        .card-content {
            padding: 20px;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .card-desc {
            font-size: 1rem;
            color: var(--secondary-color);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* 特色标签 */
        .feature-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .tag {
            padding: 6px 13px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .tag.gold {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            color: #856404;
            border-color: #ffeaa7;
        }

        .tag.blue {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
            color: #856404;
            border-color: rgba(212, 175, 55, 0.3);
        }

        .tag.green {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
            color: #856404;
            border-color: rgba(212, 175, 55, 0.3);
        }

        .tag:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
        }

        /* 轮播图 */
        .slider {
            position: relative;
            height: 200px;
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
        }

        .slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 20px;
        }

        /* 服务图标 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 25px 0px;
        }

        .service-item {
            text-align: center;
            padding: 20px;
            background: #fff;
            border-radius: var(--border-radius);
            transition: var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .service-item:hover {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .service-item:hover .service-icon {
            transform: scale(1.1);
        }

        .service-item h3 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--dark-color);
            font-weight: 600;
        }

        .service-item p {
            font-size: 0.8rem;
            color: var(--secondary-color);
            line-height: 1.5;
        }

        /* 页脚版权信息 */
        .footer-copyright {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-top: 10px;
        }

        /* 统计数据 */
        .stats {
            display: flex;
            justify-content: space-around;
            background: linear-gradient(135deg, #d4af37 0%, #f0c14b 100%);
            color: white;
            padding: 25px 10px;
            border-radius: var(--border-radius);
            margin-bottom: 25px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .stats:hover {
            box-shadow: var(--shadow-lg);
        }

        .stat-item {
            text-align: center;
            transition: var(--transition);
            padding: 10px;
            border-radius: 8px;
        }

        .stat-item:hover {
            transform: translateY(-3px);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            display: block;
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.85rem;
            opacity: 0.9;
            margin-top: 5px;
            display: block;
        }

        /* 按钮样式 */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gold-gradient);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* 动画效果 */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 滚动动画 */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 加载动画 */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* 独特卖点 */
        .unique-selling-points {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
        }

        .unique-selling-points h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .unique-selling-points div {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .unique-selling-points span {
            background: #d4af37;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* 限时优惠提示 */
        .limited-offer {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            padding: 10px 15px;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid #f39c12;
            border-right: 4px solid #f39c12;
        }

        .limited-offer div {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #856404;
            font-weight: 600;
        }

        .limited-offer span:first-child {
            font-size: 1.2rem;
        }

        /* 头部CTA按钮 */
        .header-cta {
            margin-top: 20px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header-cta.fixed {
            position: fixed;
            bottom: 20px;
            left: 0;
            right: 0;
            z-index: 99;
            margin-top: 0;
            /* iOS设备兼容性处理 */
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            /* 防止iOS Safari的橡皮筋效果影响 */
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .header-cta.fixed .cta-button {
            max-width: 500px;
            width: 100%;
            margin: 0 auto;
            /* iOS设备兼容性处理 */
            -webkit-appearance: none;
            appearance: none;
        }

        /* iOS Safari滚动行为优化 */
        @media screen and (webkit-min-device-pixel-ratio:0) {
            .header-cta.fixed {
                position: -webkit-sticky;
                position: sticky;
            }
        }

        /* 确保页面在iOS上可以正常滚动 */
        html, body {
            -webkit-overflow-scrolling: touch;
        }

        /* 预订按钮容器 */
        .booking-btn-container {
            text-align: center;
            margin: 20px 0;
        }

        .booking-btn-container .btn {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            background: var(--gold-gradient);
            color: white;
            box-shadow: var(--shadow-md);
        }

        /* 社会证明 */
        .testimonials {
            margin: 25px 0;
        }

        .testimonials h3 {
            margin-bottom: 20px;
            color: #333;
            font-size: 1.2rem;
        }

        .testimonial-grid {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr;
            margin-bottom: 25px;
        }

        .testimonial {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            margin-bottom: 20px;
        }

        .testimonial:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .testimonial > div:first-child {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .testimonial-info {
            display: flex;
            flex-direction: column;
        }

        .testimonial-info > div:first-child {
            font-weight: normal;
            color: #333;
            font-size: 1.1rem;
        }

        .testimonial-rating {
            color: #f39c12;
            font-size: 0.9rem;
        }

        .testimonial p {
            color: #666;
            line-height: 1.6;
            font-style: italic;
        }

        /* 好评滚动效果 */
        .testimonial-scroll-container {
            position: relative;
            overflow: hidden;
            height: 450px;
        }

        .testimonial-scroll-content {
            animation: scrollUp 15s linear infinite;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-75%);
            }
        }

        .testimonial-scroll-content:hover {
            animation-play-state: paused;
        }

        /* 响应式调整 */
        @media (max-width: 480px) {
            .testimonial-scroll-container {
                height: 400px;
            }
        }

        /* 季节主题内容 */
        .seasonal-theme {
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: var(--shadow-sm);
        }

        .seasonal-theme h3 {
            margin-bottom: 15px;
            color: #333;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .seasonal-theme h3 span:first-child {
            font-size: 1.5rem;
        }

        .seasonal-theme p {
            color: #666;
            margin-bottom: 15px;
        }

        .seasonal-theme .btn {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            border: none;
        }

        /* 春季主题 */
        .seasonal-theme.spring {
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
        }

        .seasonal-theme.spring .btn {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        /* 夏季主题 */
        .seasonal-theme.summer {
            background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
        }

        .seasonal-theme.summer .btn {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        /* 秋季主题 */
        .seasonal-theme.autumn {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
        }

        .seasonal-theme.autumn .btn {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
        }

        /* 冬季主题 */
        .seasonal-theme.winter {
            background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
        }

        .seasonal-theme.winter .btn {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        /* 统一的季节性内容容器 */
        .seasonal-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }

        /* 统一的季节性项目样式 */
        .seasonal-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: var(--transition);
        }

        .seasonal-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .seasonal-item span:first-child {
            font-size: 2rem;
            flex-shrink: 0;
            margin-top: -5px;
        }

        .seasonal-item div {
            flex: 1;
        }

        .seasonal-item h4 {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .seasonal-item p {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* 季节主题滚动容器 */
        .seasons-slider {
            position: relative;
            margin: 20px 0;
        }

        .seasons-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .seasons-slider-content {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .seasons-slider-content .seasonal-theme {
            flex: 0 0 100%;
            margin: 0;
            border-radius: 0;
        }

        /* 滑动指示器 */
        .seasons-slider-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-color);
            width: 24px;
            border-radius: 4px;
        }

        /* 触摸滑动支持 */
        .seasons-slider-container {
            touch-action: pan-y;
        }

        /* 响应式调整 */
        @media (max-width: 480px) {
            .seasons-slider-content .seasonal-theme {
                padding: 15px;
            }
        }

        /* 热门推荐滚动容器 */
        .popular-slider {
            position: relative;
            margin: 20px 0;
        }

        .popular-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .popular-slider-content {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .popular-slider-content .card {
            flex: 0 0 100%;
            margin: 0;
            border-radius: 0;
            box-shadow: none;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* 热门推荐滑动指示器 */
        .popular-slider-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .popular-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .popular-indicator.active {
            background: var(--primary-color);
            width: 24px;
            border-radius: 4px;
        }

        /* 触摸滑动支持 */
        .popular-slider-container {
            touch-action: pan-y;
        }

        /* 结束CTA */
        .final-cta {
            margin-top: 20px;
            padding: 20px;
            background: linear-gradient(135deg, #d4af37 0%, #f0c14b 100%);
            border-radius: 12px;
            text-align: center;
            color: white;
        }

        .final-cta h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .final-cta p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .final-cta .btn {
            background: white;
            color: #d4af37;
            font-weight: 700;
            padding: 12px 30px;
            font-size: 1.1rem;
        }

        /* 板块标题容器样式 */
        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }

        /* 板块标题样式 */
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
            padding-bottom: 15px;
            position: relative;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #d4af37 0%, #f0c14b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #d4af37 0%, #f0c14b 100%);
            border-radius: 2px;
        }

        /* 板块描述样式 */
        .section-header p {
            font-size: 1rem;
            color: var(--secondary-color);
            line-height: 1.6;
            max-width: 500px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* 响应式标题 */
        @media (max-width: 480px) {
            .section-header {
                margin-bottom: 20px;
            }

            .section-title {
                font-size: 1.5rem;
                padding-bottom: 12px;
                margin-bottom: 8px;
            }

            .section-title::after {
                width: 60px;
                height: 3px;
            }

            .section-header p {
                font-size: 0.9rem;
            }
        }

        /* 页脚 */
        .footer {
            background: #333;
            color: white;
            padding: 20px;
            text-align: center;
        }

        .footer p {
            margin: 5px 0;
            font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media (max-width: 480px) {
            .header h1 {
                font-size: 2rem;
            }

            .nav-item {
                padding: 12px 16px;
                font-size: 0.9rem;
            }

            .content-section {
                padding: 15px;
            }

            .card img {
                height: 150px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .autumn-food-grid {
                grid-template-columns: 1fr;
            }
        }
