小鹅通主页开发

小鹅通主页代码:

<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>小鹅通</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    
    <header class="header">
        <div class="container">
            <div class="logo">
                <img src="logo.png" alt="小鹅通">
            </div>
            <nav class="nav-menu">
                <a href="#">首页</a>
                <a href="#">解决方案</a>
                <a href="#">产品服务</a>
                <a href="#">价格</a>
                <a href="#">活动</a>
                <a href="#">案例</a>
                <a href="#">渠道合作</a>
                <a href="#">下载与帮助</a>
                <a href="#">关于我们</a>
            </nav>
            <div class="user-actions">
                <a href="#" class="btn-member">我是学员</a>
                <a href="#" class="btn-login">商家登录</a>
                <a href="#" class="btn-try">免费试用</a>
            </div>
        </div>
    </header>

    
    <section class="hero">
        <div class="container">
            <div class="hero-content">
                <h1>
                    <span class="highlight">私域直播 + AI助理</span>
                    <div class="sub-title">满血Deepseek模型赋能直播间</div>
                </h1>
                <div class="features">
                    <p>✓ 私域获客/营销/带货/运营的多场景直播能力</p>
                    <p>✓ AI助理帮您的直播带货实现高效变现</p>
                </div>
                <a href="#" class="btn-free-try">免费试用 →</a>
            </div>
            <div class="hero-image">
                <img src="hero-image.png" alt="AI直播演示">
            </div>
        </div>
    </section>

    
    <section class="product-features">
        <h2>我们的产品能力</h2>
        <div class="container">
            <div class="feature-cards">
                <div class="feature-card">
                    <h3>知识店铺</h3>
                    <p>1分钟搭建您的知识域城</p>
                    <p>助力高效知识变现</p>
                    <a href="#" class="btn-try">免费试用 →</a>
                </div>
                <div class="feature-card">
                    <h3>私域直播</h3>
                    <p>企业级专属私域直播平台</p>
                    <p>实现私域流量高效运营</p>
                    <a href="#" class="btn-try">免费试用 →</a>
                </div>
                <div class="feature-card">
                    <h3>企微SCRM</h3>
                    <p>企业微信私域运营神器</p>
                    <p>数据洞察驱动业绩增长</p>
                    <a href="#" class="btn-try">免费试用 →</a>
                </div>
            </div>
        </div>
    </section>

    
    <section class="solutions">
        <h2>我们的场景解决方案</h2>
        <div class="container">
            <div class="solution-tabs">
                <button class="tab active">公域获客</button>
                <button class="tab">私域运营</button>
                <button class="tab">直播带货</button>
                <button class="tab">内容变现</button>
                <button class="tab">数据化运营</button>
            </div>
            <div class="solution-content">
                <div class="solution-image">
                    <img src="solution-image.png" alt="解决方案展示">
                </div>
                <div class="solution-text">
                    <h3>公域获客</h3>
                    <h4>多渠道获客,沉淀私域流量池</h4>
                    <ul>
                        <li>打通抖音/快手/小红书/视频号/公众号,支持直播间/短视频/账号主页等多种课程链接形式,快速开启知识变现</li>
                        <li>多种公域转私域工具,支持添加企微/引流加群加人/渠道活码/分配引擎等工具,客户可批量导流到私域流量池</li>
                        <li>丰富的广告获客能力,落地页支持单单/支付类/0元领取/添加企微等多场景,提升广告ROI</li>
                    </ul>
                    <div class="solution-buttons">
                        <a href="#" class="btn-try">免费试用</a>
                        <a href="#" class="btn-more">了解详情</a>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- 技术优势 -->
    <section class="tech-advantages">
        <h2>我们的技术优势</h2>
        <div class="container">
            <div class="advantage-cards">
                <div class="advantage-card">
                    <div class="card-content">
                        <h3>超稳定</h3>
                        <p>✓ 多云负载均衡/全球CDN加速</p>
                    </div>
                </div>
                <div class="advantage-card">
                    <div class="card-content">
                        <h3>高并发</h3>
                        <p>✓ 支持多用户同时在线</p>
                    </div>
                </div>
                <div class="advantage-card">
                    <div class="card-content">
                        <h3>超流畅</h3>
                        <p>✓ 观看端自动探测并自动跨云线路切换</p>
                    </div>
                </div>
            </div>
        </div>
    </section>
</body>
</html>

.css展示

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header styles */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.btn-member {
    color: #333;
}

.btn-login {
    color: #1890ff;
}

.btn-try {
    background: #1890ff;
    color: white;
}

/* Hero section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.highlight {
    color: #1890ff;
}

.sub-title {
    font-size: 36px;
    margin-top: 10px;
}

.features {
    margin: 30px 0;
}

.features p {
    margin: 10px 0;
    color: #666;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
}

/* Product features section */
.product-features {
    padding: 80px 0;
    text-align: center;
}

.product-features h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.feature-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    flex: 1;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Solutions section */
.solutions {
    padding: 80px 0;
    background: #f8f9fa;
}

.solutions h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}

.tab.active {
    color: #1890ff;
    border-bottom: 2px solid #1890ff;
}

.solution-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solution-image {
    flex: 1;
}

.solution-image img {
    max-width: 100%;
    border-radius: 8px;
}

.solution-text {
    flex: 1;
}

.solution-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.solution-text h4 {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.solution-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.solution-text li {
    margin-bottom: 15px;
    padding-left: 24px;
    position: relative;
}

.solution-text li:before {
    content: "•";
    color: #1890ff;
    position: absolute;
    left: 0;
}

.solution-buttons {
    display: flex;
    gap: 20px;
}

/* Tech advantages section */
.tech-advantages {
    padding: 80px 0;
}

.tech-advantages h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.advantage-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.advantage-card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.advantage-card:nth-child(1) {
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
}

.advantage-card:nth-child(2) {
    background: #f5f5f5;
}

.advantage-card:nth-child(3) {
    background: #f5f5f5;
}

.card-content {
    padding: 40px;
    color: white;
}

.advantage-card:nth-child(2) .card-content,
.advantage-card:nth-child(3) .card-content {
    color: #333;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 14px;
} 
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容