SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>星创社-超级码力实战营</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 15px;
            font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background-color: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        
        .poster {
            width: 100%;
            max-width: 500px;
            background: linear-gradient(135deg, #1a1a40 0%, #0f0f2d 100%);
            border-radius: 16px;
            padding: 30px 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            color: #fff;
        }
        
        .header {
            text-align: center;
            margin-bottom: 25px;
            position: relative;
        }
        
        .title {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        
        .subtitle {
            font-size: 1.1rem;
            color: #c8c8ff;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        .content-block {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid #4776E6;
        }
        
        .block-title {
            font-size: 1.2rem;
            color: #4776E6;
            margin-bottom: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .block-title::before {
            content: "★";
            color: #8E54E9;
            margin-right: 8px;
            font-size: 1rem;
        }
        
        .block-content {
            color: #d0d0ff;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        .highlight {
            color: #fff;
            font-weight: 600;
            display: inline;
        }
        
        .features-list {
            list-style-type: none;
            margin-top: 10px;
        }
        
        .features-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 18px;
            line-height: 1.4;
        }
        
        .features-list li::before {
            content: "•";
            color: #8E54E9;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        
        .bottom-section {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            gap: 20px;
        }
        
        .price-column {
            flex: 1;
        }
        
        .qr-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .price-badge {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 15px rgba(71, 118, 230, 0.3);
        }
        
        .price-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 5px;
        }
        
        .price-content {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .original-price {
            font-size: 1.2rem;
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.7);
            margin-right: 15px;
        }
        
        .current-price {
            font-size: 2rem;
            font-weight: 500;
            color: white;
        }
        
        .price-note {
            font-size: 0.85rem;
            margin-top: 8px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .price-warning {
            font-size: 0.85rem;
            margin-top: 5px;
            color: #ffcc66;
            font-weight: 500;
        }
        
        .limited-tag {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #ff5252;
            color: white;
            font-size: 0.75rem;
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 600;
            box-shadow: 0 3px 8px rgba(255, 82, 82, 0.4);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            margin-top: 20px;
            font-size: 1.1rem;
            color: #fff;
            font-weight: 600;
        }
        
        .qr-code-container {
            width: 130px;
            height: 130px;
            background-color: white;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .qr-code {
            width: 110px;
            height: 110px;
            background-color: black;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 10px;
        }
        
        .qr-row {
            display: flex;
            justify-content: space-between;
        }
        
        .qr-cell {
            width: 10px;
            height: 10px;
            background-color: black;
        }
        
        .qr-cell.white {
            background-color: white;
        }
        
        .qr-note {
            text-align: center;
            color: #c8c8ff;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        
        .bg-decoration {
            position: absolute;
            z-index: 0;
            opacity: 0.05;
            pointer-events: none;
        }
        
        .code-bg {
            top: 20px;
            right: 20px;
            font-family: monospace;
            font-size: 0.8rem;
            color: #fff;
            line-height: 1.3;
            transform: rotate(10deg);
        }
        
        .circle-1 {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, #4776E6 0%, transparent 70%);
            top: -100px;
            left: -100px;
            opacity: 0.1;
        }
        
        .circle-2 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: radial-gradient(circle, #8E54E9 0%, transparent 70%);
            bottom: -50px;
            right: -50px;
            opacity: 0.1;
        }
        
        @media (max-width: 480px) {
            .poster {
                padding: 25px 20px;
            }
            
            .title {
                font-size: 1.8rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .block-title {
                font-size: 1.1rem;
            }
            
            .block-content {
                font-size: 0.95rem;
            }
            
            .current-price {
                font-size: 1.5rem;
            }
            
            .bottom-section {
                flex-direction: column;
                gap: 30px;
            }
            
            .qr-column {
                align-items: center;
            }
        }
    </style>
</head>
<body>
    <div class="poster">
        <!-- 背景装饰 -->
        <div class="bg-decoration circle-1"></div>
        <div class="bg-decoration circle-2"></div>
        <div class="bg-decoration code-bg">
            function coder() {<br>
              skills++;<br>
              income++;<br>
              return success;<br>
            }
        </div>
        
        <!-- 标题区 -->
        <div class="header">
            <h1 class="title">星创社</h1>
            <h1 class="title">超级码力实战营</h1>
            <div class="subtitle">成为接单获客的六边形战士</div>
        </div>
        
        <!-- 主要内容 -->
        <div class="content-block">
            <div class="block-title">社群介绍</div>
            <div class="block-content">
                通过社群,培养能够<span class="highlight">独立在闲鱼、小红书等平台获客并成功接单</span>,成为一个掌握拆分需求、报价、交付等关键技能,确保接单不踩坑、懂得打造IP、运营朋友圈、维系客户,实现业务的<span class="highlight">六边形战士</span></div>
        </div>
        
        <div class="content-block">
            <div class="block-title">社群适合人群</div>
            <div class="block-content">
                <span class="highlight">三年以上,有时间接单的程序员</span>
            </div>
        </div>
        
        <div class="content-block">
            <div class="block-title">社群主要交付内容</div>
            <div class="block-content">
                <ul class="features-list">
                    <li>星创社的 10个微信接单群、VIP接单群 1个</li>
                    <li>《程序员接单实操课程:从理解需求到收尾款全流程》持续更新</li>
                    <li>《程序员接单获客课程:从入门流量到建立个人品牌》持续更新</li>
                    <li>配套长期运营的微信群</li>
                    <li>提供专属的1V1指导服务,限时</li>
                    <li>额外福利:毕设引流项目,500套源码配论文、不定期分享</li>
                </ul>
            </div>
        </div>
        
        <!-- 价格和二维码区 -->
        <div class="bottom-section">
            <div class="price-column">
                <div class="price-badge">
                    <div class="limited-tag">限前20名</div>
                    <div class="price-label">原价</div>
                    <div class="price-content">
                        <span class="original-price">¥459</span>
                        <span class="current-price">¥399</span>
                    </div>
                    <div class="price-note">限前20名,先到先得</div>
                    <div class="price-warning">第二年无需续费</div>
                </div>
                
                <div class="contact-info">
                    微信私信: 970985518
                </div>
            </div>
            
            <div class="qr-column">
                <div class="qr-code-container">
                    <div class="qr-code">
                        <!-- 简化的二维码表示 -->
                        <div class="qr-row">
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                        </div>
                        <div class="qr-row">
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                        </div>
                        <div class="qr-row">
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                        </div>
                        <div class="qr-row">
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                        </div>
                        <div class="qr-row">
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                            <div class="qr-cell white"></div>
                            <div class="qr-cell"></div>
                        </div>
                    </div>
                </div>
                <div class="qr-note">扫码查看详情</div>
            </div>
        </div>
    </div>
</body>
</html>