   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* 导航栏 */
        .navbar {
            background: #4CAF50;
            padding: 12px 0;
            position: relative;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-size: 18px;
            font-weight: 600;
        }

        .logo::before {
            content: "🍌";
            margin-right: 8px;
            font-size: 25px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .nav-right a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .login-btn {
            background: rgba(255,255,255,0.2);
            padding: 6px 16px;
            border-radius: 4px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        /* 英雄区域 */
        .hero {
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            padding: 80px 0 80px;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.15);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 30px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-badge::before {
            content: "🤖";
            margin-right: 8px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: #FF5722;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 40px;
			 
			letter-spacing: 0.3em;
			box-shadow: none;
			outline: rgba(255, 255, 255, 0.1) solid 8px;
        }

        .cta-button:hover {
            background: #E64A19;
            transform: translateY(-2px);
        }

        .platforms {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .platforms span {
            background: rgba(255,255,255,0.15);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        /* 波形分割 */
        .wave-divider {
            height: 100px;
            background: #4CAF50;
            position: relative;
            overflow: hidden;
        }

        .wave-divider svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
        }

        /* 主要内容区域 */
        .main-content {
            padding: 60px 0;
            background: white;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .content-header {
            text-align: left;
            margin-bottom: 60px;
        }

        .content-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .content-header p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            max-width: 600px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: start;
        }

        /* 头部内容和插图的网格布局 */
        .content-container > .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        /* 品牌图标网格 */
        .brand-icons {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .brand-icon {
            width: 60px;
            height: 60px;
            background: #f5f5f5;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s;
        }

        .brand-icon:hover {
            transform: translateY(-5px);
        }

        /* 功能卡片 */
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .feature-card {
            background: #4CAF50;
            color: white;
            padding: 5px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
		.feature-card a{
			text-decoration: none;
			color: #fff;
		}

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
        }

        .feature-icon { 
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
			border-radius: 10px;
        }

        .feature-card h3 {
            font-size: 16px;
            font-weight: 500;
            margin: 0;
        }

        .feature-card p {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .more-features {
            text-align: center;
        }

        .more-btn {
            background: #4CAF50;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
		.more-btn a{
			text-decoration: none;
			color: #fff;
		}
        .more-btn:hover {
            background: #45a049;
        }

        /* 右侧插图 */
        .illustration {
            text-align: center;
        }

        .illustration img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }

        /* 编辑器展示区域 */
        .editor-section {
            background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
            padding: 80px 0;
        }

        .editor-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .editor-header {
            margin-bottom: 50px;
        }

        .editor-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .editor-header h2 .highlight {
            color: #4CAF50;
        }

        .editor-header p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .editor-preview {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .editor-preview img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* 页脚 */
        .footer {
            background: #4CAF50;
            color: white;
            padding: 0px 0 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .footer-brand p {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.6;
        }

        .footer-column h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 8px;
        }

        .footer-column ul li a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-column ul li a:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            opacity: 0.8;
        }
		.footer-bottom a{
			text-decoration: none;
			color: #fff;
			margin-left: 10px;
		} 
        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .brand-icons {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .feature-cards {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
        }