123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>映三色项目需求细化会议报告 - 2025.09.15</title>
- <link href="https://cdn.bootcdn.net/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
- <link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
- <link href="https://cdn.bootcdn.net/ajax/libs/animate.css/4.1.1/animate.min.css" rel="stylesheet">
- <style>
- :root {
- --primary-color: #00d4ff;
- --secondary-color: #0099cc;
- --dark-bg: #0a0a0a;
- --card-bg: #1a1a1a;
- --text-primary: #ffffff;
- --text-secondary: #cccccc;
- --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
- --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
- --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
- }
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- background: var(--dark-bg);
- color: var(--text-primary);
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- overflow-x: hidden;
- }
- /* 动态背景 */
- .bg-animation {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: -1;
- background: radial-gradient(circle at 20% 80%, #120a8f 0%, transparent 50%),
- radial-gradient(circle at 80% 20%, #8b5fbf 0%, transparent 50%),
- radial-gradient(circle at 40% 40%, #02aab0 0%, transparent 50%);
- animation: backgroundShift 20s ease-in-out infinite;
- }
- @keyframes backgroundShift {
- 0%, 100% { opacity: 0.3; }
- 50% { opacity: 0.6; }
- }
- /* 头部样式 */
- .header {
- background: rgba(26, 26, 26, 0.9);
- backdrop-filter: blur(10px);
- border-bottom: 1px solid var(--primary-color);
- position: sticky;
- top: 0;
- z-index: 1000;
- }
- .header h1 {
- background: linear-gradient(45deg, var(--primary-color), #667eea);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- font-weight: bold;
- text-align: center;
- padding: 20px 0;
- font-size: 2.5rem;
- }
- .meeting-info {
- text-align: center;
- color: var(--text-secondary);
- padding-bottom: 10px;
- }
- /* 导航卡片 */
- .nav-cards {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
- gap: 20px;
- padding: 40px 20px;
- max-width: 1200px;
- margin: 0 auto;
- }
- .nav-card {
- background: rgba(26, 26, 26, 0.8);
- border-radius: 15px;
- padding: 30px;
- text-decoration: none;
- color: var(--text-primary);
- transition: all 0.3s ease;
- border: 1px solid transparent;
- position: relative;
- overflow: hidden;
- }
- .nav-card:hover {
- transform: translateY(-10px);
- box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
- border-color: var(--primary-color);
- color: var(--text-primary);
- }
- .nav-card::before {
- content: '';
- position: absolute;
- top: 0;
- left: -100%;
- width: 100%;
- height: 100%;
- background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
- transition: left 0.5s ease;
- }
- .nav-card:hover::before {
- left: 100%;
- }
- .nav-card-icon {
- font-size: 3rem;
- margin-bottom: 20px;
- background: var(--gradient-3);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .nav-card h3 {
- margin-bottom: 15px;
- font-size: 1.5rem;
- }
- .nav-card p {
- color: var(--text-secondary);
- line-height: 1.6;
- }
- /* 统计卡片 */
- .stats-section {
- padding: 40px 20px;
- background: rgba(26, 26, 26, 0.5);
- }
- .stats-container {
- max-width: 1200px;
- margin: 0 auto;
- }
- .stats-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
- gap: 20px;
- margin-top: 30px;
- }
- .stat-card {
- background: rgba(26, 26, 26, 0.8);
- border-radius: 10px;
- padding: 25px;
- text-align: center;
- border: 1px solid rgba(0, 212, 255, 0.3);
- }
- .stat-number {
- font-size: 2.5rem;
- font-weight: bold;
- background: var(--gradient-4);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- display: block;
- margin-bottom: 10px;
- }
- .stat-label {
- color: var(--text-secondary);
- font-size: 0.9rem;
- }
- /* 进度条 */
- .progress-bar {
- background: rgba(0, 212, 255, 0.2);
- height: 4px;
- border-radius: 2px;
- overflow: hidden;
- margin: 20px 0;
- }
- .progress-fill {
- height: 100%;
- background: var(--gradient-3);
- width: 0;
- animation: progressFill 2s ease-in-out forwards;
- }
- @keyframes progressFill {
- to { width: 100%; }
- }
- /* 响应式设计 */
- @media (max-width: 768px) {
- .header h1 {
- font-size: 2rem;
- }
-
- .nav-cards {
- grid-template-columns: 1fr;
- padding: 20px 10px;
- }
-
- .nav-card {
- padding: 20px;
- }
- }
- /* 悬浮按钮 */
- .floating-btn {
- position: fixed;
- bottom: 30px;
- right: 30px;
- width: 60px;
- height: 60px;
- background: var(--gradient-3);
- border: none;
- border-radius: 50%;
- color: white;
- font-size: 1.5rem;
- cursor: pointer;
- box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
- transition: all 0.3s ease;
- z-index: 1000;
- }
- .floating-btn:hover {
- transform: scale(1.1);
- box-shadow: 0 6px 25px rgba(0, 212, 255, 0.6);
- }
- /* 滚动条样式 */
- ::-webkit-scrollbar {
- width: 8px;
- }
- ::-webkit-scrollbar-track {
- background: var(--dark-bg);
- }
- ::-webkit-scrollbar-thumb {
- background: var(--primary-color);
- border-radius: 4px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background: var(--secondary-color);
- }
- </style>
- </head>
- <body>
- <div class="bg-animation"></div>
-
- <header class="header">
- <div class="container">
- <h1 class="animate__animated animate__fadeInDown">映三色项目需求细化会议报告</h1>
- <div class="meeting-info animate__animated animate__fadeIn animate__delay-1s">
- <i class="fas fa-calendar-alt me-2"></i>2025年9月15日
- <i class="fas fa-users ms-4 me-2"></i>各岗位成员参与
- <i class="fas fa-cog ms-4 me-2"></i>技术细节调整
- </div>
- <div class="progress-bar">
- <div class="progress-fill"></div>
- </div>
- </div>
- </header>
- <section class="stats-section">
- <div class="stats-container">
- <h2 class="text-center mb-4">
- <i class="fas fa-chart-line me-2"></i>会议概览
- </h2>
- <div class="stats-grid">
- <div class="stat-card animate__animated animate__fadeInUp">
- <span class="stat-number">6</span>
- <div class="stat-label">系统端口</div>
- </div>
- <div class="stat-card animate__animated animate__fadeInUp animate__delay-1s">
- <span class="stat-number">3</span>
- <div class="stat-label">项目阶段</div>
- </div>
- <div class="stat-card animate__animated animate__fadeInUp animate__delay-2s">
- <span class="stat-number">15+</span>
- <div class="stat-label">核心功能</div>
- </div>
- <div class="stat-card animate__animated animate__fadeInUp animate__delay-3s">
- <span class="stat-number">20+</span>
- <div class="stat-label">待办事项</div>
- </div>
- </div>
- </div>
- </section>
- <main class="nav-cards">
- <a href="modules.html" class="nav-card animate__animated animate__fadeInLeft">
- <div class="nav-card-icon">
- <i class="fas fa-desktop"></i>
- </div>
- <h3>各端模块详情</h3>
- <p>客服端、设计师端、组长、财务端、人事端、系统管理员等各个端口的功能需求和修改反馈详情。</p>
- </a>
- <a href="workflow.html" class="nav-card animate__animated animate__fadeInUp">
- <div class="nav-card-icon">
- <i class="fas fa-project-diagram"></i>
- </div>
- <h3>项目流程管控</h3>
- <p>从需求沟通、项目执行到收尾阶段的完整流程把控和质量管理标准。</p>
- </a>
- <a href="tasks.html" class="nav-card animate__animated animate__fadeInRight">
- <div class="nav-card-icon">
- <i class="fas fa-tasks"></i>
- </div>
- <h3>本周待办事项</h3>
- <p>项目流程评估标准、财务核心流程、人事招聘评判维度等本周需要完成的任务清单。</p>
- </a>
- <a href="analysis.html" class="nav-card animate__animated animate__fadeInLeft animate__delay-1s">
- <div class="nav-card-icon">
- <i class="fas fa-analytics"></i>
- </div>
- <h3>深度分析报告</h3>
- <p>基于会议内容的深度分析,包括业务流程优化建议和技术实现方案。</p>
- </a>
- <a href="roadmap.html" class="nav-card animate__animated animate__fadeInUp animate__delay-1s">
- <div class="nav-card-icon">
- <i class="fas fa-road"></i>
- </div>
- <h3>产品路线图</h3>
- <p>基于会议讨论的功能优先级和开发时间线规划。</p>
- </a>
- <a href="faq.html" class="nav-card animate__animated animate__fadeInRight animate__delay-1s">
- <div class="nav-card-icon">
- <i class="fas fa-question-circle"></i>
- </div>
- <h3>FAQ & 问题解答</h3>
- <p>会议中提到的项目流程悖论和常见问题的解答。</p>
- </a>
- </main>
- <button class="floating-btn" onclick="scrollToTop()" title="回到顶部">
- <i class="fas fa-chevron-up"></i>
- </button>
- <script src="https://cdn.bootcdn.net/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
- <script>
- // 滚动到顶部
- function scrollToTop() {
- window.scrollTo({
- top: 0,
- behavior: 'smooth'
- });
- }
- // 显示/隐藏浮动按钮
- window.addEventListener('scroll', function() {
- const btn = document.querySelector('.floating-btn');
- if (window.scrollY > 300) {
- btn.style.opacity = '1';
- btn.style.visibility = 'visible';
- } else {
- btn.style.opacity = '0';
- btn.style.visibility = 'hidden';
- }
- });
- // 初始化动画
- document.addEventListener('DOMContentLoaded', function() {
- // 为统计数字添加计数动画
- const statNumbers = document.querySelectorAll('.stat-number');
- statNumbers.forEach(stat => {
- const target = stat.textContent;
- const isNumber = !isNaN(parseInt(target));
- if (isNumber) {
- animateNumber(stat, parseInt(target));
- }
- });
- });
- function animateNumber(element, target) {
- let current = 0;
- const increment = target / 50;
- const timer = setInterval(() => {
- current += increment;
- if (current >= target) {
- current = target;
- clearInterval(timer);
- }
- element.textContent = Math.floor(current);
- }, 40);
- }
- // 鼠标跟随效果
- document.addEventListener('mousemove', function(e) {
- const cursor = document.querySelector('.cursor');
- if (!cursor) {
- const cursorElement = document.createElement('div');
- cursorElement.className = 'cursor';
- cursorElement.style.cssText = `
- position: fixed;
- width: 20px;
- height: 20px;
- background: radial-gradient(circle, var(--primary-color), transparent);
- border-radius: 50%;
- pointer-events: none;
- z-index: 9999;
- mix-blend-mode: difference;
- transition: transform 0.1s ease;
- `;
- document.body.appendChild(cursorElement);
- }
-
- const cursorElement = document.querySelector('.cursor');
- cursorElement.style.left = e.clientX - 10 + 'px';
- cursorElement.style.top = e.clientY - 10 + 'px';
- });
- // 卡片悬停粒子效果
- document.querySelectorAll('.nav-card').forEach(card => {
- card.addEventListener('mouseenter', function() {
- createParticles(this);
- });
- });
- function createParticles(element) {
- for (let i = 0; i < 5; i++) {
- const particle = document.createElement('div');
- particle.style.cssText = `
- position: absolute;
- width: 4px;
- height: 4px;
- background: var(--primary-color);
- border-radius: 50%;
- pointer-events: none;
- top: ${Math.random() * 100}%;
- left: ${Math.random() * 100}%;
- animation: particleFloat 2s ease-out forwards;
- `;
- element.appendChild(particle);
-
- setTimeout(() => {
- if (particle.parentNode) {
- particle.parentNode.removeChild(particle);
- }
- }, 2000);
- }
- }
- // 添加粒子动画样式
- const style = document.createElement('style');
- style.textContent = `
- @keyframes particleFloat {
- 0% {
- opacity: 1;
- transform: translateY(0) scale(1);
- }
- 100% {
- opacity: 0;
- transform: translateY(-50px) scale(0);
- }
- }
- `;
- document.head.appendChild(style);
- </script>
- </body>
- </html>
|