SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>中国风电数据库项目</title>
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
    <style>
        /* 保持原有的基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航栏样式 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        /* 首页横幅样式 - 全屏显示 */
        .hero {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .hero-content {
            width: 100%;
            padding: 0 20px;
            position: relative;
            z-index: 1;
            margin-bottom: 50px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 24px;
            max-width: 800px;
            margin: 0 auto;
            color: #f0f0f0;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .cta-button {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 40px;
            background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 18px;
            transition: all 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
        }

        /* 成果展示样式 - 直接显示数字 */
/* 成果展示样式 */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    gap: 120px;
    margin: 50px auto;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #ffffff;
    width: 200px;
}

.stat-number-container {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-number {
    font-family: "DIN", Arial, sans-serif;
    font-weight: 200;
    font-size: 52px;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: right;
    min-width: 180px;
}

.stat-unit {
    font-family: "DIN", Arial, sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    font-weight: 300;
    line-height: 1;
    margin-left: 4px;
    padding-bottom: 8px;
}


        .stat-label {
            font-size: 18px;
            color: #e0e0e0;
            margin-top: 5px;
        }

        /* 内容区域样式 */
        .section {
            padding: 80px 0;
            background: #fff;
        }

        .section:nth-child(even) {
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            color: #1E3A8A;
            margin-bottom: 20px;
        }

        .section-title p {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        /* 卡片样式 */
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    /* 这里开始替换原有的卡片样式 */
    .card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 30px;
        border-radius: 15px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .card-icon {
        margin-bottom: 20px;
    }
    
    .card-icon img {
        width: 64px;
        height: 64px;
        object-fit: cover;
    }
    
    .card h3 {
        margin-bottom: 15px;
        color: #1E3A8A;
    }
    
    .card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .card ul li {
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
    }
    
    .card ul li:before {
        content: "•";
        position: absolute;
        left: 0;
        color: #1E40AF;
    }
    
    /* 删除原有的这些样式 */
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }
    
    .card-icon {
        font-size: 48px;
        margin-bottom: 20px;
        color: #1E40AF;
    }
    
    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 20px;
    }

        /* 团队样式 */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            text-align: center;
            padding: 20px;
        }

        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .team-member:hover img {
            transform: scale(1.05);
        }

        .team-member h3 {
            color: #1E3A8A;
            margin-bottom: 10px;
        }

        .team-member .title {
            color: #666;
            font-style: italic;
        }

        /* 次要团队成员样式 */
        .secondary-team {
            margin-top: 60px;
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
        }

        .team-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .team-tag {
            background: white;
            padding: 8px 16px;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            font-size: 14px;
        }

        .team-tag span {
            font-weight: 500;
            color: #1E3A8A;
        }

        /* 合作单位样式 */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .partner-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .partner-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .partner-item a {
            text-decoration: none;
            color: #1E3A8A;
            font-weight: 500;
            transition: color 0.3s;
        }

        .partner-item a:hover {
            color: #3498db;
        }

        /* 联系方式样式 */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .contact-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-item i {
            font-size: 36px;
            color: #1E40AF;
            margin-bottom: 20px;
        }

        /* 页脚样式 */
        .footer {
            background: #1E3A8A;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .section {
                padding: 40px 0;
            }

            .team-member img {
                width: 150px;
                height: 150px;
            }

            .stat-number {
                font-size: 42px;
            }
        }
    </style>
</head>
<body>
    <nav class="navbar">
        <div class="container">
            <div class="logo">中国风电数据库</div>
            <ul class="nav-links">
                <li><a href="#home">首页</a></li>
                <li><a href="#background">项目背景</a></li>
                <li><a href="#technology">技术方案</a></li>
                <li><a href="#team">团队介绍</a></li>
                <li><a href="#partners">合作单位</a></li>
                <li><a href="#contact">联系我们</a></li>
            </ul>
        </div>
    </nav>

    <section id="home" class="hero">
        <img src="https://images.unsplash.com/photo-1466611653911-95081537e5b7?ixlib=rb-4.0.3" alt="风电场全景" class="hero-bg">
        <div class="hero-overlay"></div>
        <div class="hero-content">
            <h1 data-aos="fade-up">全国风电数据库建设项目</h1>
            <p data-aos="fade-up" data-aos-delay="200">
                运用卫星遥感、人工智能技术,构建中国首个全面的风电设施数据库
            </p>
        </div>
        
        <!-- 成果展示数据 -->
<div class="stats-container">
    <div class="stat-item" data-aos="fade-up">
        <div class="stat-number-container">
            <span class="stat-number" data-target="470000" data-start="100000">100000</span>
            <span class="stat-unit">GW</span>
        </div>
        <div class="stat-label">识别装机容量</div>
    </div>
    <div class="stat-item" data-aos="fade-up" data-aos-delay="200">
        <div class="stat-number-container">
            <span class="stat-number" data-target="4543535" data-start="1000000">1000000</span>
            <span class="stat-unit"></span>
        </div>
        <div class="stat-label">识别风电机组</div>
    </div>
    <div class="stat-item" data-aos="fade-up" data-aos-delay="400">
        <div class="stat-number-container">
            <span class="stat-number" data-target="3435" data-start="1000">1000</span>
            <span class="stat-unit"></span>
        </div>
        <div class="stat-label">识别风电场</div>
    </div>
</div>
        
        <a href="#background" class="cta-button" data-aos="fade-up" data-aos-delay="600">
            查看风电地图
        </a>
    </section>

    <section id="background" class="section">
        <div class="container">
            <div class="section-title" data-aos="fade-up">
                <h2>项目背景</h2>
                <p>构建全面、准确、及时的风电设施数据库,为行业发展提供数据支撑</p>
            </div>
            <div class="card-grid">
                <div class="card" data-aos="fade-up">
                    <img src="https://images.unsplash.com/photo-1532601224476-15c79f2f7a51" alt="能源转型">
                    <h3>能源转型</h3>
                    <p>风电作为清洁能源的重要组成部分,在中国能源结构转型中发挥着关键作用</p>
                </div>
                <div class="card" data-aos="fade-up" data-aos-delay="200">
                    <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71" alt="数据价值">
                    <h3>数据价值</h3>
                    <p>准确的风电设施数据对于行业规划、投资决策和运营优化具有重要意义</p>
                </div>
                <div class="card" data-aos="fade-up" data-aos-delay="400">
                    <img src="https://images.unsplash.com/photo-1581092918056-0c4c3acd3789" alt="技术创新">
                    <h3>技术创新</h3>
                    <p>结合遥感技术和AI识别,突破传统数据获取方式的局限性</p>
                </div>
            </div>
        </div>
    </section>

    <section id="technology" class="section">
        <div class="container">
            <div class="section-title" data-aos="fade-up">
                <h2>技术方案</h2>
                <p>采用先进的遥感技术和人工智能算法,实现高效准确的风电设施识别</p>
            </div>
            <div class="card-grid">
                <div class="card" data-aos="fade-up">
                    <img src="https://images.unsplash.com/photo-1451187580459-43490279c0fa" alt="卫星数据" style="width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 20px;">
                    <h3>多源数据获取</h3>
                    <ul>
                        <li>高分辨率卫星影像</li>
                        <li>地理信息数据</li>
                        <li>历史建设记录</li>
                    </ul>
                </div>
                <div class="card" data-aos="fade-up" data-aos-delay="200">
                    <img src="https://images.unsplash.com/photo-1555949963-ff9fe0c870eb" alt="AI识别" style="width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 20px;">
                    <h3>AI识别技术</h3>
                    <ul>
                        <li>深度学习算法</li>
                        <li>目标检测优化</li>
                        <li>准确率验证</li>
                    </ul>
                </div>
                <div class="card" data-aos="fade-up" data-aos-delay="400">
                    <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71" alt="数据库" style="width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 20px;">
                    <h3>数据库构建</h3>
                    <ul>
                        <li>数据结构设计</li>
                        <li>质量控制体系</li>
                        <li>持续更新机制</li>
                    </ul>
                </div>
            </div>
        </div>
    </section>

    <section id="team" class="section">
        <div class="container">
            <div class="section-title" data-aos="fade-up">
                <h2>核心团队</h2>
            </div>
            <div class="team-grid">
                <div class="team-member" data-aos="fade-up">
                    <img src="https://images.unsplash.com/photo-1560250097-0b93528c311a" alt="张教授">
                    <h3>张教授</h3>
                    <p class="title">项目负责人</p>
                    <p>国家特聘专家,在遥感领域拥有20年研究经验</p>
                </div>
                <div class="team-member" data-aos="fade-up" data-aos-delay="200">
                    <img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e" alt="李博士">
                    <h3>李博士</h3>
                    <p class="title">技术总监</p>
                    <p>AI算法专家,曾主导多个国家级项目</p>
                </div>
                <div class="team-member" data-aos="fade-up" data-aos-delay="400">
                    <img src="https://images.unsplash.com/photo-1519085360753-af0119f7cbe7" alt="王博士">
                    <h3>王博士</h3>
                    <p class="title">数据总监</p>
                    <p>数据科学专家,负责数据库架构设计</p>
                </div>
            </div>
            
            <!-- 次要团队成员 -->
            <div class="secondary-team" data-aos="fade-up">
                <div class="team-list">
                    <div class="team-tag">算法工程师 - <span>赵明</span></div>
                    <div class="team-tag">数据分析师 - <span>刘芳</span></div>
                    <div class="team-tag">遥感专家 - <span>陈博</span></div>
                    <div class="team-tag">GIS工程师 - <span>杨华</span></div>
                    <div class="team-tag">前端开发 - <span>林晓</span></div>
                    <div class="team-tag">后端开发 - <span>吴强</span></div>
                    <div class="team-tag">数据库专家 - <span>郑伟</span></div>
                    <div class="team-tag">项目协调 - <span>孙丽</span></div>
                    <div class="team-tag">质量控制 - <span>黄刚</span></div>
                    <div class="team-tag">系统架构师 - <span>朱峰</span></div>
                </div>
            </div>
        </div>
    </section>

    <section id="partners" class="section">
        <div class="container">
            <div class="section-title" data-aos="fade-up">
                <h2>合作单位</h2>
                <p>携手共建风电数据生态</p>
            </div>
            <div class="partners-grid">
                <div class="partner-item" data-aos="fade-up">
                    <a href="https://www.cas.cn/" target="_blank">中国科学院</a>
                </div>
                <div class="partner-item" data-aos="fade-up" data-aos-delay="100">
                    <a href="https://www.most.gov.cn/" target="_blank">科学技术部</a>
                </div>
                <div class="partner-item" data-aos="fade-up" data-aos-delay="200">
                    <a href="https://www.nea.gov.cn/" target="_blank">国家能源局</a>
                </div>
                <div class="partner-item" data-aos="fade-up" data-aos-delay="300">
                    <a href="http://www.cwea.org.cn/" target="_blank">中国风能协会</a>
                </div>
                <div class="partner-item" data-aos="fade-up" data-aos-delay="400">
                    <a href="https://www.tsinghua.edu.cn/" target="_blank">清华大学</a>
                </div>
                <div class="partner-item" data-aos="fade-up" data-aos-delay="500">
                    <a href="https://www.pku.edu.cn/" target="_blank">北京大学</a>
                </div>
                <div class="partner-item" data-aos="fade-up" data-aos-delay="600">
                    <a href="http://www.goldwind.com.cn/" target="_blank">金风科技</a>
                </div>
                <div class="partner-item" data-aos="fade-up" data-aos-delay="700">
                    <a href="https://www.longyuan.com.cn/" target="_blank">龙源电力</a>
                </div>
            </div>
        </div>
    </section>

    <section id="contact" class="section">
        <div class="container">
            <div class="section-title" data-aos="fade-up">
                <h2>联系我们</h2>
                <p>欢迎咨询项目相关事宜</p>
            </div>
            <div class="contact-grid">
                <div class="contact-item" data-aos="fade-up">
                    <i class="fas fa-envelope"></i>
                    <h3>邮箱</h3>
                    <p>contact@windpower-db.cn</p>
                </div>
                <div class="contact-item" data-aos="fade-up" data-aos-delay="200">
                    <i class="fas fa-phone"></i>
                    <h3>电话</h3>
                    <p>+86 10-1234-5678</p>
                </div>
                <div class="contact-item" data-aos="fade-up" data-aos-delay="400">
                    <i class="fas fa-map-marker-alt"></i>
                    <h3>地址</h3>
                    <p>北京市海淀区中关村科技园</p>
                </div>
            </div>
        </div>
    </section>

    <footer class="footer">
        <div class="container">
            <p>&copy; 2024 中国风电数据库项目 版权所有</p>
        </div>
    </footer>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
    <script>
        // 初始化AOS动画库
        AOS.init({
            duration: 1000,
            once: true
        });
        
        // 数字滚动动画
        const animateValue = (obj, start, end, duration) => {
            let startTimestamp = null;
            const step = (timestamp) => {
                if (!startTimestamp) startTimestamp = timestamp;
                const progress = Math.min((timestamp - startTimestamp) / duration, 1);
                const value = Math.floor(progress * (end - start) + start);
                obj.innerHTML = value;
                if (progress < 1) {
                    window.requestAnimationFrame(step);
                }
            };
            window.requestAnimationFrame(step);
        };
        
        // 当元素进入视口时开始动画
        const observer = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    const target = entry.target;
                    const endValue = parseInt(target.getAttribute('data-target'));
                    const startValue = parseInt(target.getAttribute('data-start'));
                    animateValue(target, startValue, endValue, 2000);
                    observer.unobserve(target);
                }
            });
        }, { threshold: 0.1 });
        
        // 监听所有数字元素
        document.querySelectorAll('.stat-number').forEach(number => {
            observer.observe(number);
        });
    </script>
</body>
</html>