2025这一年真是辛苦了

2025年真是高强度找工作的一年,现在找工作的水平就和高考前的学习水平一样,恐怕是人生巅峰期了;2025年不止是我,还有看到这篇内容的牛友,想必都很辛苦了,希望大家2026年能过得顺利一些!

自己简单做了1个总结报告

代码附上了,大家可以自己复制改字

在桌面新建文本文档---复制代码--保存HTML格式,然后打开就是了

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>2025年度面试报告</title>
    <!-- 引入图标库 -->
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
    <style>
        :root {
            --primary-orange: #FF6B00;
            --primary-blue: #2B4CFF;
            --highlight: #FFD700;
            --bg-gradient: linear-gradient(135deg, #FFF6E5 0%, #EDF2FF 100%);
            --card-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }

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

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }

        /* 手机端容器模拟 */
        .container {
            width: 100%;
            max-width: 480px;
            background: var(--bg-gradient);
            min-height: 100vh;
            padding: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0,0,0,0.1);
        }

        /* 顶部标题区 */
        .header {
            text-align: center;
            padding: 40px 0 20px;
            animation: fadeInDown 1s ease;
        }

        .header h1 {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary-orange), var(--primary-blue));
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }

        .header p {
            color: #666;
            font-size: 14px;
            background: #fff;
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        /* 用户卡片 */
        .user-card {
            background: white;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            box-shadow: var(--card-shadow);
            border: 2px solid rgba(255, 107, 0, 0.1);
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .avatar {
            width: 60px;
            height: 60px;
            background: #eee;
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
        }

        .user-info h2 {
            font-size: 18px;
            color: #333;
        }

        .user-info span {
            font-size: 12px;
            color: var(--primary-blue);
            background: rgba(43, 76, 255, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            margin-right: 5px;
        }

        /* 数据核心区 - 网格布局 */
        .data-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .data-item {
            background: white;
            padding: 20px 15px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s;
            animation: zoomIn 0.8s ease backwards;
        }

        /* 动画延迟设置 */
        .data-item:nth-child(1) { animation-delay: 0.3s; }
        .data-item:nth-child(2) { animation-delay: 0.4s; }
        .data-item:nth-child(3) { animation-delay: 0.5s; }
        .data-item:nth-child(4) { animation-delay: 0.6s; }

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

        .data-num {
            display: block;
            font-size: 32px;
            font-weight: 800;
            font-family: 'Arial Black', sans-serif;
            margin-bottom: 5px;
        }

        .num-orange { color: var(--primary-orange); }
        .num-blue { color: var(--primary-blue); }
        .num-purple { color: #8A2BE2; }
        .num-gold { color: #DAA520; }

        .data-label {
            font-size: 13px;
            color: #888;
            font-weight: bold;
        }

        .icon-bg {
            font-size: 24px;
            margin-bottom: 8px;
            opacity: 0.8;
        }

        /* 实习经历条 */
        .exp-bar {
            background: linear-gradient(90deg, #2B4CFF, #6E85FF);
            color: white;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 8px 16px rgba(43, 76, 255, 0.25);
            animation: slideInLeft 1s ease 0.7s backwards;
        }

        .exp-left h3 {
            font-size: 24px;
            font-weight: 800;
        }
        
        .exp-left p {
            font-size: 12px;
            opacity: 0.9;
            margin-top: 5px;
        }

        .exp-icon {
            font-size: 32px;
            background: rgba(255,255,255,0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 漏斗转化率吐槽区 */
        .funnel-card {
            background: white;
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--card-shadow);
            position: relative;
            animation: fadeInUp 1s ease 0.8s backwards;
        }

        .funnel-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary-orange);
            padding-left: 10px;
        }

        .funnel-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            font-size: 13px;
            color: #555;
        }

        .progress-bg {
            flex: 1;
            height: 10px;
            background: #f0f0f0;
            border-radius: 5px;
            margin: 0 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            border-radius: 5px;
            position: relative;
        }

        /* 进度条动画 */
        .fill-1 { width: 100%; background: #FF6B00; animation: grow1 1.5s ease-out 1s forwards; width: 0; }
        .fill-2 { width: 20%; background: #FF9F43; animation: grow2 1.5s ease-out 1.2s forwards; width: 0; }
        .fill-3 { width: 16%; background: #2B4CFF; animation: grow3 1.5s ease-out 1.4s forwards; width: 0; }
        .fill-4 { width: 1%; background: #00D2D3; animation: grow4 1.5s ease-out 1.6s forwards; width: 0; }

        @keyframes grow1 { to { width: 100%; } }
        @keyframes grow2 { to { width: 20%; } }
        @keyframes grow3 { to { width: 16%; } }
        @keyframes grow4 { to { width: 1%; } } /* Offer率极低,真实 */

        /* 底部标签 */
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 30px;
            animation: fadeIn 1.5s ease 1s backwards;
        }

        .tag {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(-2deg);
        }
        .tag:nth-child(even) { transform: rotate(2deg); }

        .tag-1 { background: #FFEAA7; color: #d35400; border: 1px solid #d35400; }
        .tag-2 { background: #74b9ff; color: #0984e3; border: 1px solid #0984e3; }
        .tag-3 { background: #55efc4; color: #00b894; border: 1px solid #00b894; }

        /* 底部 */
        .footer {
            text-align: center;
            padding-bottom: 30px;
            font-size: 12px;
            color: #999;
            animation: fadeIn 1s ease 1.5s backwards;
        }

        .stamp {
            position: absolute;
            right: 20px;
            bottom: 80px;
            width: 100px;
            height: 100px;
            border: 3px solid var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-orange);
            font-weight: 900;
            font-size: 18px;
            transform: rotate(-20deg) scale(0);
            opacity: 0.6;
            animation: stampIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2s forwards;
            background: rgba(255, 255, 255, 0.8);
            z-index: 10;
        }

        /* 关键帧动画 */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes zoomIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes stampIn {
            to { transform: rotate(-20deg) scale(1); }
        }

    </style>
</head>
<body>

<div class="container">
    <!-- 顶部标题 -->
    <header class="header">
        <h1>2025 求职生存报告</h1>
        <p>致那个在暴风雨中奔跑的自己</p>
    </header>

    <!-- 用户信息 -->
    <div class="user-card">
        <div class="avatar">👨‍🎓</div>
        <div class="user-info">
            <h2>2026届毕业生</h2>
            <div style="margin-top:5px;">
                <span>#焦虑中前行</span>
                <span>#面霸完全体</span>
                <span>#大厂练习生</span>
            </div>
        </div>
    </div>

    <!-- 核心数据网格 -->
    <div class="data-grid">
        <!-- 投递 -->
        <div class="data-item">
            <div class="icon-bg num-orange"><i class="fas fa-paper-plane"></i></div>
            <span class="data-num num-orange">500+</span>
            <span class="data-label">疯狂投递</span>
        </div>
        
        <!-- 笔试 -->
        <div class="data-item">
            <div class="icon-bg num-purple"><i class="fas fa-edit"></i></div>
            <span class="data-num num-purple">100+</span>
            <span class="data-label">做过的笔试</span>
        </div>

        <!-- 面试 -->
        <div class="data-item">
            <div class="icon-bg num-blue"><i class="fas fa-comments"></i></div>
            <span class="data-num num-blue">80+</span>
            <span class="data-label">面试场次</span>
        </div>

        <!-- Offer -->
        <div class="data-item">
            <div class="icon-bg num-gold"><i class="fas fa-trophy"></i></div>
            <span class="data-num num-gold">5+</span>
            <span class="data-label">收获Offer</span>
        </div>
    </div>

    <!-- 实习经历 -->
    <div class="exp-bar">
        <div class="exp-left">
            <h3>2段 实习经历</h3>
            <p>从打杂到独当一面,被社会毒打的勋章</p>
        </div>
        <div class="exp-icon">
            <i class="fas fa-briefcase"></i>
        </div>
    </div>

    <!-- 转化率漏斗 -->
    <div class="funnel-card">
        <div class="funnel-title">📊 扎心的转化漏斗</div>
        
        <div class="funnel-row">
            <span>投递</span>
            <div class="progress-bg"><div class="progress-fill fill-1"></div></div>
            <span>500+</span>
        </div>

        <div class="funnel-row">
            <span>笔试</span>
            <div class="progress-bg"><div class="progress-fill fill-2"></div></div>
            <span>100+</span>
        </div>

        <div class="funnel-row">
            <span>面试</span>
            <div class="progress-bg"><div class="progress-fill fill-3"></div></div>
            <span>80+</span>
        </div>

        <div class="funnel-row">
            <span style="font-weight:bold; color:#DAA520;">Offer</span>
            <div class="progress-bg"><div class="progress-fill fill-4"></div></div>
            <span style="font-weight:bold; color:#DAA520;">5+</span>
        </div>
        
        <p style="text-align:center; font-size:12px; color:#999; margin-top:15px;">
            * 约 1% 的通关率,你比大熊猫还珍贵
        </p>
    </div>

    <!-- 趣味标签 -->
    <div class="tags">
        <div class="tag tag-1">行走的八股文</div>
        <div class="tag tag-2">面试巅峰期</div>
        <div class="tag tag-3">笔试题库管理员</div>
        <div class="tag tag-1">心态已Next Level</div>
    </div>

    <!-- 盖章效果 -->
    <div class="stamp">
        未来<br>可期
    </div>

    <footer class="footer">
        <p>2025求职季 · 凡杀不死我的,终将使我强大</p>
        <p style="margin-top:5px; font-size:10px; opacity:0.5;">长按保存图片分享</p>
    </footer>

</div>

</body>
</html>

#2025年终总结#
全部评论
有5个offer已经很厉害了
1 回复 分享
发布于 今天 18:31 吉林
太强了佬
点赞 回复 分享
发布于 今天 19:35 四川
太硬核啦
点赞 回复 分享
发布于 今天 18:44 浙江
这个有趣!我也要做1个
点赞 回复 分享
发布于 今天 18:32 河南
感谢分享!我也去做一个
点赞 回复 分享
发布于 今天 18:01 浙江
太棒了吧!
点赞 回复 分享
发布于 今天 17:37 北京

相关推荐

烤点老白薯:他第二句话的潜台词是想让你帮他点个瑞幸或者喜茶啥的
mt对你说过最有启发的一...
点赞 评论 收藏
分享
12-15 12:50
河北工程大学
sta666:我也是这个国际商业化的,三天,一天一面,就通过了,不过我是后端实习生,好好面感觉能过。
点赞 评论 收藏
分享
12-15 11:27
门头沟学院 Java
点赞 评论 收藏
分享
评论
7
7
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务