-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1496 lines (1118 loc) · 52.7 KB
/
index.html
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#222"><meta name="generator" content="Hexo 7.1.1">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha256-wiz7ZSCn/btzhjKDQBms9Hx4sSeUYsDrTLg7roPstac=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.1.1/animate.min.css" integrity="sha256-PR7ttpcvz8qrF57fur/yAx1qXMFJeJFiA6pSzWi0OIE=" crossorigin="anonymous">
<script class="next-config" data-name="main" type="application/json">{"hostname":"example.com","root":"/","images":"/images","scheme":"Muse","darkmode":false,"version":"8.19.1","exturl":false,"sidebar":{"position":"left","display":"always","padding":10,"offset":12},"copycode":{"enable":true,"style":"flat"},"fold":{"enable":true,"height":500},"bookmark":{"enable":false,"color":"#222","save":"auto"},"mediumzoom":false,"lazyload":true,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"stickytabs":false,"motion":{"enable":true,"async":false,"transition":{"menu_item":"fadeInDown","post_block":"fadeIn","post_header":"fadeInDown","post_body":"fadeInDown","coll_header":"fadeInLeft","sidebar":"fadeInUp"}},"prism":false,"i18n":{"placeholder":"搜索...","empty":"没有找到任何搜索结果:${query}","hits_time":"找到 ${hits} 个搜索结果(用时 ${time} 毫秒)","hits":"找到 ${hits} 个搜索结果"},"path":"/search.xml","localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false}}</script><script src="/js/config.js"></script>
<meta name="description" content="学而时习之,生活·学习·解决">
<meta property="og:type" content="website">
<meta property="og:title" content="pxBang的个人博客">
<meta property="og:url" content="http://example.com/index.html">
<meta property="og:site_name" content="pxBang的个人博客">
<meta property="og:description" content="学而时习之,生活·学习·解决">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="pxBang">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="http://example.com/">
<script class="next-config" data-name="page" type="application/json">{"sidebar":"","isHome":true,"isPost":false,"lang":"zh-CN","comments":"","permalink":"","path":"index.html","title":""}</script>
<script class="next-config" data-name="calendar" type="application/json">""</script>
<title>pxBang的个人博客</title>
<noscript>
<link rel="stylesheet" href="/css/noscript.css">
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage" class="use-motion">
<div class="headband"></div>
<main class="main">
<div class="column">
<header class="header" itemscope itemtype="http://schema.org/WPHeader"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="切换导航栏" role="button">
<span class="toggle-line"></span>
<span class="toggle-line"></span>
<span class="toggle-line"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<i class="logo-line"></i>
<h1 class="site-title">pxBang的个人博客</h1>
<i class="logo-line"></i>
</a>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger" aria-label="搜索" role="button">
<i class="fa fa-search fa-fw fa-lg"></i>
</div>
</div>
</div>
<nav class="site-nav">
<ul class="main-menu menu"><li class="menu-item menu-item-home"><a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a></li><li class="menu-item menu-item-tags"><a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a></li><li class="menu-item menu-item-archives"><a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a></li>
<li class="menu-item menu-item-search">
<a role="button" class="popup-trigger"><i class="fa fa-search fa-fw"></i>搜索
</a>
</li>
</ul>
</nav>
<div class="search-pop-overlay">
<div class="popup search-popup"><div class="search-header">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<div class="search-input-container">
<input autocomplete="off" autocapitalize="off" maxlength="80"
placeholder="搜索..." spellcheck="false"
type="search" class="search-input">
</div>
<span class="popup-btn-close" role="button">
<i class="fa fa-times-circle"></i>
</span>
</div>
<div class="search-result-container no-result">
<div class="search-result-icon">
<i class="fa fa-spinner fa-pulse fa-5x"></i>
</div>
</div>
</div>
</div>
</header>
<aside class="sidebar">
<div class="sidebar-inner sidebar-overview-active">
<ul class="sidebar-nav">
<li class="sidebar-nav-toc">
文章目录
</li>
<li class="sidebar-nav-overview">
站点概览
</li>
</ul>
<div class="sidebar-panel-container">
<!--noindex-->
<div class="post-toc-wrap sidebar-panel">
</div>
<!--/noindex-->
<div class="site-overview-wrap sidebar-panel">
<div class="site-author animated" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" alt="pxBang"
src="https://raw.githubusercontent.com/pxBang/ImageHostingService/main/202402232302599.jpg">
<p class="site-author-name" itemprop="name">pxBang</p>
<div class="site-description" itemprop="description">学而时习之,生活·学习·解决</div>
</div>
<div class="site-state-wrap animated">
<nav class="site-state">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">34</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/">
<span class="site-state-item-count">12</span>
<span class="site-state-item-name">标签</span></a>
</div>
</nav>
</div>
<div class="links-of-author animated">
<span class="links-of-author-item">
<a href="https://github.com/pxBang" title="GitHub → https://github.com/pxBang" rel="noopener me" target="_blank"><i class="fab fa-github fa-fw"></i>GitHub</a>
</span>
</div>
</div>
</div>
</div>
</aside>
</div>
<div class="main-inner index posts-expand">
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://example.com/2024/09/01/%E8%99%B9%E6%A1%A5%E7%A7%9F%E6%88%BF%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="https://raw.githubusercontent.com/pxBang/ImageHostingService/main/202402232302599.jpg">
<meta itemprop="name" content="pxBang">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="pxBang的个人博客">
<meta itemprop="description" content="学而时习之,生活·学习·解决">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | pxBang的个人博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/09/01/%E8%99%B9%E6%A1%A5%E7%A7%9F%E6%88%BF%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9/" class="post-title-link" itemprop="url">虹桥租房注意事项</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-09-01 17:30:08 / 修改时间:17:48:25" itemprop="dateCreated datePublished" datetime="2024-09-01T17:30:08+08:00">2024-09-01</time>
</span>
<span class="post-meta-break"></span>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>77</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>1 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言">前言</h2>
<ol type="1">
<li>我目前的房子还有一个月到期</li>
<li>目前仍然没给什么时候搬到虹桥的日子。</li>
<li>目前仍然没给什么时候去培训</li>
</ol>
<p>虽然没有确定的搬家日期,但是估计快了。所以考虑这段时间看看房子</p>
<h2 id="section"></h2>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://example.com/2024/09/01/%E4%B8%AA%E4%BA%BA%E5%81%87%E6%9C%9F%E6%B8%85%E5%8D%95/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="https://raw.githubusercontent.com/pxBang/ImageHostingService/main/202402232302599.jpg">
<meta itemprop="name" content="pxBang">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="pxBang的个人博客">
<meta itemprop="description" content="学而时习之,生活·学习·解决">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | pxBang的个人博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/09/01/%E4%B8%AA%E4%BA%BA%E5%81%87%E6%9C%9F%E6%B8%85%E5%8D%95/" class="post-title-link" itemprop="url">个人假期清单</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-09-01 17:09:34 / 修改时间:17:14:30" itemprop="dateCreated datePublished" datetime="2024-09-01T17:09:34+08:00">2024-09-01</time>
</span>
<span class="post-meta-break"></span>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>207</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>1 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言">前言</h2>
<p>上班期间,假期很少,每一个假期都是精力的补充,每一个假期都是恢复精力的好时机,只有在假期里恢复好精力,下一个周才能以最佳状态迎接新一周的工作。所以假期的重要性不言而喻。工作的安排在工作时解决,工作时无法安排假期,所以在下班后列出假期清单就尤为重要</p>
<p>假期清单以表格的形式列出来</p>
<h2 id="年9月">2024年9月</h2>
<table>
<thead>
<tr class="header">
<th>日期</th>
<th>持续时长</th>
<th>内容</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>9月6日~9月7日</td>
<td>2天</td>
<td>正常放假</td>
</tr>
<tr class="even">
<td>9月15日~9月17日</td>
<td>3天</td>
<td>中秋节,应该是和刘奥男玩</td>
</tr>
<tr class="odd">
<td>9月21日</td>
<td>1天</td>
<td>正常放假</td>
</tr>
<tr class="even">
<td>9月22日</td>
<td>1天</td>
<td>去迪士尼玩</td>
</tr>
<tr class="odd">
<td>9月28日</td>
<td>1天</td>
<td>正常放假</td>
</tr>
</tbody>
</table>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://example.com/2024/08/03/%E6%B7%B1%E5%85%A5%E8%AE%A4%E8%AF%86%E5%B7%A5%E8%B5%84%E5%92%8C%E4%BA%94%E9%99%A9%E4%B8%80%E9%87%91%E2%80%94%E2%80%94%E5%8A%9F%E8%83%BD%E3%80%81%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E3%80%81%E4%BD%BF%E7%94%A8%E5%9C%BA%E6%99%AF/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="https://raw.githubusercontent.com/pxBang/ImageHostingService/main/202402232302599.jpg">
<meta itemprop="name" content="pxBang">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="pxBang的个人博客">
<meta itemprop="description" content="学而时习之,生活·学习·解决">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | pxBang的个人博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/08/03/%E6%B7%B1%E5%85%A5%E8%AE%A4%E8%AF%86%E5%B7%A5%E8%B5%84%E5%92%8C%E4%BA%94%E9%99%A9%E4%B8%80%E9%87%91%E2%80%94%E2%80%94%E5%8A%9F%E8%83%BD%E3%80%81%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E3%80%81%E4%BD%BF%E7%94%A8%E5%9C%BA%E6%99%AF/" class="post-title-link" itemprop="url">深入认识工资和五险一金——功能、使用方法、使用场景</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-08-03 22:09:51" itemprop="dateCreated datePublished" datetime="2024-08-03T22:09:51+08:00">2024-08-03</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-08-10 19:30:42" itemprop="dateModified" datetime="2024-08-10T19:30:42+08:00">2024-08-10</time>
</span>
<span class="post-meta-break"></span>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>1.7k</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>6 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言">前言</h2>
<p>作为一个打工人,我辛辛苦苦付出脑力、体力、时间,换来的收益中,最重要最有用的就是工资和五险一金,那么提高对工资和五险一金的认识,用好工资和五险一金就十分重要。得到了工资和五险一金并不意味的收益的结束,距离你用好工资和五险一金还有很远的距离。</p>
<p>本篇博客的目的是为了深入认识工资和五险一金,从功能、使用方法、使用场景三个方面理解工资和五险一金。</p>
<h2 id="工资">工资</h2>
<p>工资暂且不说。等发工资了之后补充该部分内容</p>
<h2 id="住房公积金">住房公积金</h2>
<h3 id="功能">功能</h3>
<ol type="1">
<li><p>购房贷款:住房公积金账户中的余额可以作为购房的首付款,或者申请公积金贷款。相比商业贷款,公积金贷款的利率较低,可以减轻购房者的还款压力。</p></li>
<li><p>租房支出:如果没有购房计划,可以提取住房公积金用于支付房租,特别是对于在大城市工作的年轻人来说,这项功能非常实用。</p></li>
<li><p>房屋装修:一些地方的公积金政策允许提取住房公积金用于房屋装修,这样可以提升居住环境。</p></li>
<li><p>大修或重建住房:对于已经拥有住房但需要大修或重建的家庭,住房公积金也可以提供资金支持。</p></li>
<li><p>退休后提取:退休后,未使用的住房公积金可以一次性提取,作为养老金的补充。</p></li>
</ol>
<h3 id="使用方法">使用方法</h3>
<p>当然可以。以下是针对每个功能的住房公积金使用方法:</p>
<ol type="1">
<li>购房贷款:
<ul>
<li>条件:需连续正常缴存住房公积金达到一定期限(通常为6个月至1年,各地规定不同)。</li>
<li>步骤:
<ol type="1">
<li>提交购房申请材料,包括购房合同、身份证明、收入证明等。</li>
<li>向住房公积金管理中心提出公积金贷款申请。</li>
<li>经过审批后,签订贷款合同。</li>
<li>贷款资金直接划入售房单位账户,用于支付购房款。</li>
</ol></li>
</ul></li>
<li>租房支出:
<ul>
<li>条件:需无自有住房,并且连续正常缴存住房公积金达到一定期限(通常为3个月至6个月)。</li>
<li>步骤:
<ol type="1">
<li>准备租房合同、身份证明、收入证明等材料。</li>
<li>向住房公积金管理中心提交提取申请。</li>
<li>审核通过后,提取公积金用于支付房租,提取额度及频率由当地公积金政策规定。</li>
</ol></li>
</ul></li>
<li>房屋装修:
<ul>
<li>条件:已购自住房屋,并且连续正常缴存住房公积金达到一定期限。</li>
<li>步骤:
<ol type="1">
<li>准备房屋产权证、装修合同、身份证明等材料。</li>
<li>向住房公积金管理中心提交提取申请。</li>
<li>审核通过后,提取公积金用于支付装修费用。</li>
</ol></li>
</ul></li>
<li>大修或重建住房:
<ul>
<li>条件:房屋已达到需要大修或重建的标准,并且连续正常缴存住房公积金达到一定期限。</li>
<li>步骤:
<ol type="1">
<li>准备房屋产权证、大修或重建的相关证明材料、身份证明等。</li>
<li>向住房公积金管理中心提交提取申请。</li>
<li>审核通过后,提取公积金用于支付大修或重建费用。</li>
</ol></li>
</ul></li>
<li>退休后提取:
<ul>
<li>条件:达到法定退休年龄,并且停止缴存住房公积金。</li>
<li>步骤:
<ol type="1">
<li>准备退休证明、身份证明等材料。</li>
<li>向住房公积金管理中心提交提取申请。</li>
<li>审核通过后,一次性提取账户内的全部余额。</li>
</ol></li>
</ul></li>
</ol>
<h3 id="使用场景">使用场景</h3>
<p>当然可以,以下是根据上述5点列出的对应使用场景:</p>
<ol type="1">
<li>购房贷款:
<ul>
<li>场景:小李在武汉工作已有两年,打算在当地购买一套新房。他缴存住房公积金已满一年,于是向住房公积金管理中心申请了购房贷款,以较低的利率减轻了购房压力。</li>
</ul></li>
<li>租房支出:
<ul>
<li>场景:小张刚毕业后在北京找到工作,但暂时没有购房计划。他每月缴存的住房公积金已经达到了当地的提取标准,因此他向公积金管理中心申请提取公积金,用于支付每月的房租,缓解了租房的经济压力。</li>
</ul></li>
<li>房屋装修:
<ul>
<li>场景:小王购买了一套二手房,房屋状况一般,需进行装修。他向住房公积金管理中心提交了房屋产权证和装修合同等材料,提取了部分公积金,用于支付装修费用,改善了居住条件。</li>
</ul></li>
<li>大修或重建住房:
<ul>
<li>场景:小刘的老家房屋年久失修,需要进行大修。由于他已经连续缴存住房公积金多年,于是他向公积金管理中心申请提取公积金,支付房屋大修费用,确保房屋的安全和舒适。</li>
</ul></li>
<li>退休后提取:
<ul>
<li>场景:小赵今年正式退休,按照规定,他停止缴存住房公积金。他向公积金管理中心提交了退休证明和身份证明,顺利提取了账户内的全部公积金余额,作为退休后的经济补充。</li>
</ul></li>
</ol>
<h2 id="养老保险">养老保险</h2>
<p>养老保险暂且不说。还没发呢,发了再补充内容</p>
<h2 id="医疗保险">医疗保险</h2>
<p>养老保险暂且不说。还没发呢,发了再补充内容</p>
<h2 id="失业保险">失业保险</h2>
<p>养老保险暂且不说。还没发呢,发了再补充内容## 工伤保险</p>
<h2 id="工伤保险">工伤保险</h2>
<p>养老保险暂且不说。还没发呢,发了再补充内容## 工伤保险</p>
<h2 id="生育保险">生育保险</h2>
<p>养老保险暂且不说。还没发呢,发了再补充内容</p>
<h2 id="个人所得税">个人所得税</h2>
<p>个人所得税暂且不说。还没发呢,发了再补充内容</p>
<h2 id="工资单">工资单</h2>
<p>工资计算环节</p>
<ol type="1">
<li>应发工资</li>
<li>五险一金</li>
<li>个人所得税</li>
</ol>
<h3 id="应发工资">应发工资</h3>
<ul>
<li>应发工资31000元</li>
</ul>
<h3 id="五险一金">五险一金</h3>
<table style="width:100%;">
<colgroup>
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
</colgroup>
<thead>
<tr class="header">
<th>名称</th>
<th>金额-个人(元)</th>
<th>金额-公司(元)</th>
<th>比例-个人(%)</th>
<th>比例-公司(%)</th>
<th>金额-个人+公司(元)</th>
<th>比例-个人+公司(%)</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>养老保险</td>
<td>2480</td>
<td>4960</td>
<td>8</td>
<td>16</td>
<td>7440</td>
<td>24</td>
</tr>
<tr class="even">
<td>医疗保险</td>
<td>620</td>
<td>2790</td>
<td>2</td>
<td>9</td>
<td>3410</td>
<td>11</td>
</tr>
<tr class="odd">
<td>失业保险</td>
<td>155</td>
<td>155</td>
<td>0.5</td>
<td>0.5</td>
<td>310</td>
<td>1</td>
</tr>
<tr class="even">
<td>工伤保险</td>
<td>0</td>
<td>49.6</td>
<td>0</td>
<td>0.16</td>
<td>49.6</td>
<td>0.16</td>
</tr>
<tr class="odd">
<td>生育保险</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr class="even">
<td>住房公积金</td>
<td>3720</td>
<td>3720</td>
<td>12</td>
<td>12</td>
<td>7440</td>
<td>24</td>
</tr>
<tr class="odd">
<td>合计</td>
<td>6975</td>
<td>11674.6</td>
<td>22.5</td>
<td>37.66</td>
<td>18649.6</td>
<td>60.16</td>
</tr>
</tbody>
</table>
<h3 id="个税">个税</h3>
<p>应纳税所得额=应发工资-起征点-五险一金-专项扣除附加</p>
<p>应发工资=31000 起征点=5000 五险一金=6975 累计专项扣除附加=3000</p>
<p>应纳税所得额=应发工资-起征点-五险一金-专项扣除附加=31000-5000-6975-3000=16025元</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://example.com/2024/07/09/%E7%99%BD%E5%A4%A9%E4%B8%8A%E7%8F%AD%E6%97%A0%E6%B3%95%E8%A7%A3%E5%86%B3%E7%9A%84%E4%B8%AA%E4%BA%BA%E9%97%AE%E9%A2%98%EF%BC%8C%E7%95%99%E5%88%B0%E6%99%9A%E4%B8%8A%E8%A7%A3%E5%86%B3/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="https://raw.githubusercontent.com/pxBang/ImageHostingService/main/202402232302599.jpg">
<meta itemprop="name" content="pxBang">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="pxBang的个人博客">
<meta itemprop="description" content="学而时习之,生活·学习·解决">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | pxBang的个人博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/07/09/%E7%99%BD%E5%A4%A9%E4%B8%8A%E7%8F%AD%E6%97%A0%E6%B3%95%E8%A7%A3%E5%86%B3%E7%9A%84%E4%B8%AA%E4%BA%BA%E9%97%AE%E9%A2%98%EF%BC%8C%E7%95%99%E5%88%B0%E6%99%9A%E4%B8%8A%E8%A7%A3%E5%86%B3/" class="post-title-link" itemprop="url">白天上班无法解决的个人问题,留到晚上解决</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-07-09 21:21:26" itemprop="dateCreated datePublished" datetime="2024-07-09T21:21:26+08:00">2024-07-09</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-09-01 17:00:44" itemprop="dateModified" datetime="2024-09-01T17:00:44+08:00">2024-09-01</time>
</span>
<span class="post-meta-break"></span>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>2.9k</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>10 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言">前言</h2>
<p>由于白天上班,心思放在工作上,无法集中精力解决个人问题,因此新建这篇博客,用于记录当天遗留的个人问题,并提出解决方法,并记录最终解决问题的时间。
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2024/07/09/%E7%99%BD%E5%A4%A9%E4%B8%8A%E7%8F%AD%E6%97%A0%E6%B3%95%E8%A7%A3%E5%86%B3%E7%9A%84%E4%B8%AA%E4%BA%BA%E9%97%AE%E9%A2%98%EF%BC%8C%E7%95%99%E5%88%B0%E6%99%9A%E4%B8%8A%E8%A7%A3%E5%86%B3/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://example.com/2024/07/06/China-Joy-%E6%B8%B8%E7%8E%A9%E6%8C%87%E5%8D%97/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="https://raw.githubusercontent.com/pxBang/ImageHostingService/main/202402232302599.jpg">
<meta itemprop="name" content="pxBang">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="pxBang的个人博客">
<meta itemprop="description" content="学而时习之,生活·学习·解决">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | pxBang的个人博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/07/06/China-Joy-%E6%B8%B8%E7%8E%A9%E6%8C%87%E5%8D%97/" class="post-title-link" itemprop="url">China Joy 游玩指南</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-07-06 23:10:35" itemprop="dateCreated datePublished" datetime="2024-07-06T23:10:35+08:00">2024-07-06</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-07-27 21:19:29" itemprop="dateModified" datetime="2024-07-27T21:19:29+08:00">2024-07-27</time>
</span>
<span class="post-meta-break"></span>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>337</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>1 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言">前言</h2>
<p>本篇博客的目的是为了提前了解China
Joy的游玩亮点,方便到时候去现场可以直接前往目的地,而不是漫无目的的乱逛。
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2024/07/06/China-Joy-%E6%B8%B8%E7%8E%A9%E6%8C%87%E5%8D%97/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">
<article itemscope itemtype="http://schema.org/Article" class="post-content" lang="">
<link itemprop="mainEntityOfPage" href="http://example.com/2024/07/06/%E5%8E%A8%E6%88%BF%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97%E5%8F%8A%E5%81%9A%E9%A5%AD%E6%B5%81%E7%A8%8B/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="https://raw.githubusercontent.com/pxBang/ImageHostingService/main/202402232302599.jpg">
<meta itemprop="name" content="pxBang">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="pxBang的个人博客">
<meta itemprop="description" content="学而时习之,生活·学习·解决">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | pxBang的个人博客">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/07/06/%E5%8E%A8%E6%88%BF%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97%E5%8F%8A%E5%81%9A%E9%A5%AD%E6%B5%81%E7%A8%8B/" class="post-title-link" itemprop="url">厨房使用指南及做饭流程</a>
</h2>
<div class="post-meta-container">
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2024-07-06 23:09:42" itemprop="dateCreated datePublished" datetime="2024-07-06T23:09:42+08:00">2024-07-06</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2024-07-07 10:22:35" itemprop="dateModified" datetime="2024-07-07T10:22:35+08:00">2024-07-07</time>
</span>
<span class="post-meta-break"></span>
<span class="post-meta-item" title="本文字数">
<span class="post-meta-item-icon">
<i class="far fa-file-word"></i>
</span>
<span class="post-meta-item-text">本文字数:</span>
<span>135</span>
</span>
<span class="post-meta-item" title="阅读时长">
<span class="post-meta-item-icon">
<i class="far fa-clock"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span>1 分钟</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="前言">前言</h2>
<p>本篇博客的目的是为了给出厨房厨具的使用方法指南,并为三餐制定详细的做饭流程。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2024/07/06/%E5%8E%A8%E6%88%BF%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97%E5%8F%8A%E5%81%9A%E9%A5%AD%E6%B5%81%E7%A8%8B/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</div>
<div class="post-block">