<!DOCTYPE html> <html lang=”zh-CN” data-theme=”light”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>AI+企业应用级PPT生成实战教程</title> <!– Tailwind CSS CDN –> <script src=”https://cdn.tailwindcss.com”></script> <!– DaisyUI CDN –> <link href=”https://cdn.bootcdn.net/ajax/libs/daisyui/4.12.10/full.min.css” rel=”stylesheet”> <!– Font Awesome CDN –> <link href=”https://cdn.bootcdn.net/ajax/libs/font-awesome/6.4.0/css/all.min.css” rel=”stylesheet”> <!– Google Fonts: Outfit & Work Sans –> <link href=”https://fonts.proxy.ustclug.org/css2?family=Outfit:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap” rel=”stylesheet”> <style> :root { –primary: #3B82F6; –secondary: #60A5FA; –cta: #F97316; –background: #F8FAFC; –text: #1E293B; } * { margin: 0; padding: 0; box-sizing: border-box; } body h1, h2, h3, h4, h5, h6 .progress-bar { position: fixed; top: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(–primary), var(–cta)); width: 0%; z-index: 1000; transition: width 0.3s ease; } .section .section:nth-child(even) { background-color: rgba(59, 130, 246, 0.05); } .container { max-width: 1200px; width: 100%; margin: 0 auto; } .card { background: white; border-radius: 16px; padding: 32px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); border: 1px solid rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); } .step-card { border-left: 4px solid var(–primary); } .tool-card { border-top: 4px solid var(–cta); } .btn-primary { background-color: var(–primary); color: white; padding: 12px 28px; border-radius: 8px; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; } .btn-primary:hover { background-color: #2563EB; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3); } .btn-cta { background-color: var(–cta); color: white; padding: 14px 32px; border-radius: 8px; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; } .btn-cta:hover { background-color: #EA580C; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3); } .nav-dots { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; z-index: 999; } .nav-dot { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(59, 130, 246, 0.3); cursor: pointer; transition: all 0.3s ease; } .nav-dot.active { background-color: var(–primary); transform: scale(1.3); } cursor 教程 .nav-dot:hover { background-color: var(–primary); transform: scale(1.2); } .tool-icon .deepseek-icon { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } .kimi-icon { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); } .flourish-icon { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); } .step-number .testimonial { background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(249, 115, 22, 0.1)); border-radius: 12px; padding: 24px; margin: 20px 0; } .quote-icon { font-size: 24px; color: var(–primary); margin-bottom: 12px; } @media (max-width: 768px) { .section { padding: 60px 16px; } .card { padding: 24px; } .nav-dots { right: 10px; } } </style> </head> <body> <!– 进度条 –> <div class=”progress-bar” id=”progressBar”></div> <!– 导航点 –> <div class=”nav-dots” id=”navDots”> <div class=”nav-dot active” data-section=”0″></div> <div class=”nav-dot” data-section=”1″></div> <div class=”nav-dot” data-section=”2″></div> <div class=”nav-dot” data-section=”3″></div> <div class=”nav-dot” data-section=”4″></div> <div class=”nav-dot” data-section=”5″></div> </div> <!– 章节1: 介绍 –> <section class=”section” id=”section-0″> <div class=”container”> <div class=”text-center mb-12″> <h1 class=”text-5xl md:text-6xl font-bold mb-6″ style=”color: var(–primary);”> AI+企业应用级PPT生成实战 </h1> <p class=”text-xl md:text-2xl text-gray-600 mb-8 max-w-3xl mx-auto”> 使用DeepSeek生成PPT框架 + Kimi PPT助手生成PPT全流程教学 </p> <div class=”flex flex-wrap justify-center gap-4″> <button class=”btn-cta” onclick=”scrollToSection(1)”> <i class=”fas fa-play-circle”></i> 开始学习 </button> <button class=”btn-primary” onclick=”scrollToSection(5)”> <i class=”fas fa-download”></i> 获取模板 </button> </div> </div>
发布者:Ai探索者,转载请注明出处:https://javaforall.net/275837.html原文链接:https://javaforall.net
