﻿ /* 基础样式 */
        :root {
            --primary: #FF9E80;
            --primary-dark: #FF7043;
            --secondary: #5D4037;
            --light: #FFF5F5;
            --cream: #FBE9E7;
            --gray-text: #4A5568;
            --dark-bg: #2D3748;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--light);
            color: var(--gray-text);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* 工具类 */
        .flex { display: flex; }
        .hidden { display: none; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .text-center { text-align: center; }
        .relative { position: relative; }
        .absolute { position: absolute; }
        .sticky { position: sticky; }
        .top-0 { top: 0; }
        .z-50 { z-index: 50; }
        
        /* 间距 */
        .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
        .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .px-8 { padding-left: 2rem; padding-right: 2rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-10 { margin-bottom: 2.5rem; }
        .mb-12 { margin-bottom: 3rem; }
        .mr-2 { margin-right: 0.5rem; }
        .mr-3 { margin-right: 0.75rem; }
        .mt-2 { margin-top: 0.5rem; }
        .mt-4 { margin-top: 1rem; }
        .mt-8 { margin-top: 2rem; }
        
        /* 文本样式 */
        .text-white { color: white; }
        .text-secondary { color: var(--secondary); }
        .text-primary { color: var(--primary); }
        .text-gray-700 { color: #4A5568; }
        .text-2xl { font-size: 1.5rem; }
        .text-3xl { font-size: 1.875rem; }
        .text-4xl { font-size: 2.25rem; }
        .text-5xl { font-size: 3rem; }
        .text-6xl { font-size: 3.75rem; }
        .text-xl { font-size: 1.25rem; }
        .text-sm { font-size: 0.875rem; }
        
        .font-bold { font-weight: 700; }
        .font-medium { font-weight: 500; }
        .font-handwriting { font-family: cursive, sans-serif; }
        
        /* 背景色 */
        .bg-white { background-color: white; }
        .bg-primary { background-color: var(--primary); }
        .bg-primary-dark { background-color: var(--primary-dark); }
        .bg-secondary { background-color: var(--secondary); }
        .bg-cream { background-color: var(--cream); }
        .bg-light { background-color: var(--light); }
        .bg-dark-bg { background-color: var(--dark-bg); }
        
        /* 边框和圆角 */
        .rounded-md { border-radius: 0.375rem; }
        .rounded-xl { border-radius: 0.75rem; }
        .rounded-full { border-radius: 9999px; }
        .border { border-width: 1px; }
        .border-gray-300 { border-color: #D1D5DB; }
        
        /* 阴影 */
        .shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
        .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
        
        /* 布局 */
        .grid { display: grid; }
        .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
        .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        .gap-8 { gap: 2rem; }
        
        /* 响应式 */
        @media (min-width: 768px) {
            .md\:flex { display: flex; }
            .md\:hidden { display: none; }
            .md\:w-1\/2 { width: 50%; }
            .md\:w-2\/5 { width: 40%; }
            .md\:w-3\/5 { width: 60%; }
            .md\:flex-row { flex-direction: row; }
            .md\:space-x-8 > * + * { margin-left: 2rem; }
            .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
            .md\:text-6xl { font-size: 3.75rem; }
            .md\:text-4xl { font-size: 2.25rem; }
            .md\:text-2xl { font-size: 1.5rem; }
            .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
            .md\:pl-12 { padding-left: 3rem; }
            .md\:mb-0 { margin-bottom: 0; }
        }
        
        @media (min-width: 1024px) {
            .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        }
        
        /* 自定义组件 */
        .heart-cloud {
            position: relative;
            display: inline-block;
        }
        
        .heart-cloud:before, .heart-cloud:after {
            content: '';
            position: absolute;
            background-color: var(--primary);
            border-radius: 50%;
        }
        
        .heart-cloud:before {
            width: 30px;
            height: 30px;
            top: -15px;
            left: 0;
        }
        
        .heart-cloud:after {
            width: 30px;
            height: 30px;
            top: -15px;
            left: 20px;
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .cloud-bg {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FF9E8020' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,218.7C384,213,480,171,576,149.3C672,128,768,128,864,144C960,160,1056,192,1152,192C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: bottom;
        }
        
        /* 动画 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate-fade-in {
            animation: fadeIn 1s ease-out forwards;
        }
        
        /* 高级设计元素 */
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            background: var(--cream);
            color: var(--primary);
            font-size: 2rem;
            position: relative;
        }
        
        .feature-icon:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--primary);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        
        .testimonial-card {
            position: relative;
            padding: 2rem;
            border-radius: 1rem;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-size: 4rem;
            color: var(--cream);
            font-family: Georgia, serif;
            line-height: 1;
        }

        /* 导航样式修复 */
        .nav-link {
            position: relative;
            padding: 0.5rem 0;
            margin: 0 1rem;
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-link:hover:after {
            width: 100%;
        }

        /* 解决方案列表修复 */
        .solution-list {
            padding-left: 1.5rem;
            margin-top: 1rem;
        }

        .solution-list li {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .solution-list li:before {
            content: "?";
            color: var(--primary);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* 申请表单样式修复 */
        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            transition: all 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 158, 128, 0.2);
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--secondary);
        }

        .btn-primary {
            background: var(--secondary);
            color: white;
            font-weight: 600;
            padding: 0.875rem 1.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
		
		/* 表单区 */
		.form-section {
		  padding: 60px 20px;
		  background: #F0F4F8;
		}
		.form-section h2 {
		  text-align: center;
		  color: #2D4B64;
		}
		.form-section p {
		  text-align: center;
		  color: #666;
		  margin-bottom: 30px;
		}
		#waitlistForm {
		  max-width: 600px;
		  margin: 0 auto;
		  display: flex;
		  flex-direction: column;
		  gap: 12px;
		}
		#waitlistForm input,
		#waitlistForm textarea {
		  padding: 12px 16px;
		  border: 1px solid #ddd;
		  border-radius: 8px;
		  font-size: 1rem;
		}
		#waitlistForm textarea {
		  min-height: 100px;
		  resize: vertical;
		}
		.cf-turnstile {
		  margin: 20px auto;
		}
		
		/* 修复关于部分 */
        .about-section {
            background-color: #f9f9f9;
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
        .about-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .about-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        .about-card p {
            line-height: 1.7;
            font-size: 1.1rem;
            color: #555;
        }