File size: 17,964 Bytes
4a3e308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>新员工入职导航</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .progress-bar {
            height: 8px;
            transition: width 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .animate-pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <div class="container mx-auto px-4 py-8 max-w-6xl">
        <!-- 头部 -->
        <header class="text-center mb-12">
            <h1 class="text-4xl font-bold text-indigo-700 mb-4">欢迎加入我们的团队!</h1>
            <p class="text-xl text-gray-600 max-w-2xl mx-auto">以下是您入职第一周需要了解和完成的事项</p>
            
            <!-- 进度条 -->
            <div class="mt-8 max-w-2xl mx-auto">
                <div class="flex justify-between mb-2">
                    <span class="text-sm font-medium text-gray-600">入职进度</span>
                    <span class="text-sm font-medium text-indigo-600" id="progress-percentage">0%</span>
                </div>
                <div class="w-full bg-gray-200 rounded-full h-2.5">
                    <div class="progress-bar bg-indigo-600 rounded-full h-2.5" id="progress-bar" style="width: 0%"></div>
                </div>
            </div>
        </header>

        <!-- 主要内容 -->
        <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-12">
            <!-- 第一天 -->
            <div class="bg-white rounded-xl shadow-md overflow-hidden card-hover transition-all duration-300">
                <div class="bg-indigo-100 p-4 flex items-center">
                    <div class="bg-indigo-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
                        <i class="fas fa-calendar-day"></i>
                    </div>
                    <h2 class="text-xl font-semibold text-gray-800">第一天</h2>
                </div>
                <div class="p-6">
                    <ul class="space-y-3">
                        <li class="flex items-start">
                            <span class="text-green-500 mr-2 mt-1"><i class="fas fa-check-circle"></i></span>
                            <span>办理入职手续</span>
                        </li>
                        <li class="flex items-start">
                            <span class="text-green-500 mr-2 mt-1"><i class="fas fa-check-circle"></i></span>
                            <span>领取办公设备</span>
                        </li>
                        <li class="flex items-start">
                            <span class="text-blue-500 mr-2 mt-1"><i class="fas fa-circle-notch animate-spin"></i></span>
                            <span>团队介绍会</span>
                        </li>
                        <li class="flex items-start">
                            <span class="text-gray-300 mr-2 mt-1"><i class="far fa-circle"></i></span>
                            <span class="text-gray-400">公司文化培训</span>
                        </li>
                    </ul>
                </div>
            </div>

            <!-- 第一周 -->
            <div class="bg-white rounded-xl shadow-md overflow-hidden card-hover transition-all duration-300">
                <div class="bg-blue-100 p-4 flex items-center">
                    <div class="bg-blue-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
                        <i class="fas fa-calendar-week"></i>
                    </div>
                    <h2 class="text-xl font-semibold text-gray-800">第一周</h2>
                </div>
                <div class="p-6">
                    <ul class="space-y-3">
                        <li class="flex items-start">
                            <span class="text-gray-300 mr-2 mt-1"><i class="far fa-circle"></i></span>
                            <span class="text-gray-400">产品知识培训</span>
                        </li>
                        <li class="flex items-start">
                            <span class="text-gray-300 mr-2 mt-1"><i class="far fa-circle"></i></span>
                            <span class="text-gray-400">系统权限申请</span>
                        </li>
                        <li class="flex items-start">
                            <span class="text-gray-300 mr-2 mt-1"><i class="far fa-circle"></i></span>
                            <span class="text-gray-400">第一次团队会议</span>
                        </li>
                        <li class="flex items-start">
                            <span class="text-gray-300 mr-2 mt-1"><i class="far fa-circle"></i></span>
                            <span class="text-gray-400">导师一对一交流</span>
                        </li>
                    </ul>
                </div>
            </div>

            <!-- 第一个月 -->
            <div class="bg-white rounded-xl shadow-md overflow-hidden card-hover transition-all duration-300">
                <div class="bg-purple-100 p-4 flex items-center">
                    <div class="bg-purple-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-3">
                        <i class="fas fa-calendar-alt"></i>
                    </div>
                    <h2 class="text-xl font-semibold text-gray-800">第一个月</h2>
                </div>
                <div class="p-6">
                    <ul class="space-y-3">
                        <li class="flex items-start">
                            <span class="text-gray-300 mr-2 mt-1"><i class="far fa-circle"></i></span>
                            <span class="text-gray-400">部门轮岗体验</span>
                        </li>
                        <li class="flex items-start">
                            <span class="text-gray-300 mr-2 mt-1"><i class="far fa-circle"></i></span>
                            <span class="text-gray-400">月度绩效评估</span>
                        </li>
                        <li class="flex items-start">
                            <span class="text-gray-300 mr-2 mt-1"><i class="far fa-circle"></i></span>
                            <span class="text-gray-400">职业发展计划</span>
                        </li>
                        <li class="flex items-start">
                            <span class="text-gray-300 mr-2 mt-1"><i class="far fa-circle"></i></span>
                            <span class="text-gray-400">公司全员大会</span>
                        </li>
                    </ul>
                </div>
            </div>
        </div>

        <!-- 快速链接 -->
        <div class="mb-12">
            <h2 class="text-2xl font-bold text-gray-800 mb-6 flex items-center">
                <i class="fas fa-link text-indigo-600 mr-3"></i>快速链接
            </h2>
            <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
                <a href="#" class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition-shadow flex flex-col items-center text-center">
                    <div class="bg-indigo-100 text-indigo-600 w-12 h-12 rounded-full flex items-center justify-center mb-3">
                        <i class="fas fa-book text-xl"></i>
                    </div>
                    <span class="font-medium">员工手册</span>
                </a>
                <a href="#" class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition-shadow flex flex-col items-center text-center">
                    <div class="bg-blue-100 text-blue-600 w-12 h-12 rounded-full flex items-center justify-center mb-3">
                        <i class="fas fa-network-wired text-xl"></i>
                    </div>
                    <span class="font-medium">组织架构</span>
                </a>
                <a href="#" class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition-shadow flex flex-col items-center text-center">
                    <div class="bg-green-100 text-green-600 w-12 h-12 rounded-full flex items-center justify-center mb-3">
                        <i class="fas fa-laptop-code text-xl"></i>
                    </div>
                    <span class="font-medium">IT支持</span>
                </a>
                <a href="#" class="bg-white p-4 rounded-lg shadow-sm hover:shadow-md transition-shadow flex flex-col items-center text-center">
                    <div class="bg-purple-100 text-purple-600 w-12 h-12 rounded-full flex items-center justify-center mb-3">
                        <i class="fas fa-question-circle text-xl"></i>
                    </div>
                    <span class="font-medium">常见问题</span>
                </a>
            </div>
        </div>

        <!-- 重要联系人 -->
        <div class="mb-12">
            <h2 class="text-2xl font-bold text-gray-800 mb-6 flex items-center">
                <i class="fas fa-address-book text-indigo-600 mr-3"></i>重要联系人
            </h2>
            <div class="bg-white rounded-xl shadow-md overflow-hidden">
                <div class="grid grid-cols-1 md:grid-cols-3 divide-y md:divide-y-0 md:divide-x">
                    <div class="p-6">
                        <div class="flex items-center mb-4">
                            <div class="bg-indigo-100 text-indigo-600 w-10 h-10 rounded-full flex items-center justify-center mr-3">
                                <i class="fas fa-user-tie"></i>
                            </div>
                            <h3 class="font-semibold">直属主管</h3>
                        </div>
                        <p class="text-gray-600 mb-2">张经理</p>
                        <p class="text-gray-500 text-sm">电话: 138-1234-5678</p>
                        <p class="text-gray-500 text-sm">邮箱: zhang@company.com</p>
                    </div>
                    <div class="p-6">
                        <div class="flex items-center mb-4">
                            <div class="bg-blue-100 text-blue-600 w-10 h-10 rounded-full flex items-center justify-center mr-3">
                                <i class="fas fa-hands-helping"></i>
                            </div>
                            <h3 class="font-semibold">入职导师</h3>
                        </div>
                        <p class="text-gray-600 mb-2">李主管</p>
                        <p class="text-gray-500 text-sm">电话: 139-8765-4321</p>
                        <p class="text-gray-500 text-sm">邮箱: li@company.com</p>
                    </div>
                    <div class="p-6">
                        <div class="flex items-center mb-4">
                            <div class="bg-green-100 text-green-600 w-10 h-10 rounded-full flex items-center justify-center mr-3">
                                <i class="fas fa-headset"></i>
                            </div>
                            <h3 class="font-semibold">HR支持</h3>
                        </div>
                        <p class="text-gray-600 mb-2">王专员</p>
                        <p class="text-gray-500 text-sm">电话: 400-123-4567</p>
                        <p class="text-gray-500 text-sm">邮箱: hr@company.com</p>
                    </div>
                </div>
            </div>
        </div>

        <!-- 待办事项 -->
        <div class="mb-12">
            <h2 class="text-2xl font-bold text-gray-800 mb-6 flex items-center">
                <i class="fas fa-tasks text-indigo-600 mr-3"></i>待办事项
            </h2>
            <div class="bg-white rounded-xl shadow-md overflow-hidden">
                <div class="p-6">
                    <div class="flex items-center justify-between mb-4">
                        <h3 class="font-semibold text-lg">今日待办</h3>
                        <button class="text-sm text-indigo-600 hover:text-indigo-800">查看全部</button>
                    </div>
                    <ul class="space-y-3">
                        <li class="flex items-center justify-between p-3 bg-indigo-50 rounded-lg">
                            <div class="flex items-center">
                                <input type="checkbox" class="h-5 w-5 text-indigo-600 rounded mr-3">
                                <span>签署劳动合同</span>
                            </div>
                            <span class="text-sm text-gray-500">10:00 AM</span>
                        </li>
                        <li class="flex items-center justify-between p-3 hover:bg-gray-50 rounded-lg">
                            <div class="flex items-center">
                                <input type="checkbox" class="h-5 w-5 text-indigo-600 rounded mr-3">
                                <span>IT设备领取</span>
                            </div>
                            <span class="text-sm text-gray-500">11:30 AM</span>
                        </li>
                        <li class="flex items-center justify-between p-3 hover:bg-gray-50 rounded-lg">
                            <div class="flex items-center">
                                <input type="checkbox" class="h-5 w-5 text-indigo-600 rounded mr-3">
                                <span>团队午餐会</span>
                            </div>
                            <span class="text-sm text-gray-500">12:30 PM</span>
                        </li>
                    </ul>
                </div>
            </div>
        </div>

        <!-- 欢迎视频 -->
        <div class="mb-12 bg-indigo-700 rounded-xl overflow-hidden">
            <div class="md:flex">
                <div class="md:w-1/2 p-8 text-white">
                    <h2 class="text-2xl font-bold mb-4">欢迎视频</h2>
                    <p class="mb-6">观看CEO的欢迎致辞,了解公司愿景和价值观</p>
                    <button class="bg-white text-indigo-700 px-6 py-2 rounded-full font-medium hover:bg-gray-100 transition-colors">
                        <i class="fas fa-play mr-2"></i>立即观看
                    </button>
                </div>
                <div class="md:w-1/2 bg-gray-800 flex items-center justify-center p-4">
                    <div class="relative w-full h-64 md:h-full">
                        <div class="absolute inset-0 bg-gradient-to-r from-indigo-900 to-indigo-700 opacity-50 rounded-lg"></div>
                        <div class="absolute inset-0 flex items-center justify-center">
                            <div class="bg-white bg-opacity-20 rounded-full w-20 h-20 flex items-center justify-center animate-pulse">
                                <i class="fas fa-play text-white text-3xl"></i>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <!-- 底部 -->
        <footer class="text-center text-gray-500 text-sm py-8 border-t">
            <p>如有任何问题,请联系人力资源部 | 电话: 400-123-4567 | 邮箱: hr@company.com</p>
            <p class="mt-2">© 2023 公司名称. 保留所有权利.</p>
        </footer>
    </div>

    <script>
        // 模拟进度条加载
        document.addEventListener('DOMContentLoaded', function() {
            let progress = 0;
            const progressBar = document.getElementById('progress-bar');
            const progressPercentage = document.getElementById('progress-percentage');
            
            const interval = setInterval(() => {
                progress += 5;
                if (progress > 25) {
                    clearInterval(interval);
                } else {
                    progressBar.style.width = progress + '%';
                    progressPercentage.textContent = progress + '%';
                }
            }, 300);
            
            // 待办事项复选框交互
            const checkboxes = document.querySelectorAll('input[type="checkbox"]');
            checkboxes.forEach(checkbox => {
                checkbox.addEventListener('change', function() {
                    const item = this.closest('li');
                    if (this.checked) {
                        item.classList.add('bg-green-50');
                        item.classList.remove('hover:bg-gray-50');
                        item.querySelector('span').classList.add('line-through', 'text-gray-400');
                    } else {
                        item.classList.remove('bg-green-50');
                        item.classList.add('hover:bg-gray-50');
                        item.querySelector('span').classList.remove('line-through', 'text-gray-400');
                    }
                });
            });
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=tianzhenMN/html" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>