-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1221 lines (814 loc) · 43.1 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.2.0">
<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.2/css/all.min.css" integrity="sha256-XOqroi11tY4EFQMR9ZYwZWKj5ZXiftSx36RRuC3anlA=" 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":"qqhsx.github.io","root":"/","images":"/images","scheme":"Gemini","darkmode":false,"version":"8.20.0","exturl":false,"sidebar":{"position":"left","width_expanded":320,"width_dual_column":240,"display":"post","padding":18,"offset":12},"copycode":{"enable":true,"style":null},"fold":{"enable":true,"height":500},"bookmark":{"enable":false,"color":"#222","save":"auto"},"mediumzoom":false,"lazyload":false,"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"}},"i18n":{"placeholder":"搜索...","empty":"没有找到任何搜索结果:${query}","hits_time":"找到 ${hits} 个搜索结果(用时 ${time} 毫秒)","hits":"找到 ${hits} 个搜索结果"},"path":"/search.xml","localsearch":{"enable":true,"trigger":"auto","top_n_per_article":1,"unescape":true,"preload":true}}</script><script src="/js/config.js"></script>
<meta property="og:type" content="website">
<meta property="og:title" content="读懂世界">
<meta property="og:url" content="https://qqhsx.github.io/index.html">
<meta property="og:site_name" content="读懂世界">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="H1985">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://qqhsx.github.io/">
<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>读懂世界</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">读懂世界</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>标签<span class="badge">17</span></a></li><li class="menu-item menu-item-categories"><a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类<span class="badge">7</span></a></li><li class="menu-item menu-item-archives"><a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档<span class="badge">18</span></a></li><li class="menu-item menu-item-中国概况"><a href="/Chinaprofile/" rel="section"><i class="fa fa-history fa-fw"></i>中国概况</a></li><li class="menu-item menu-item-经济大事年表"><a href="/economyTime/" rel="section"><i class="fa fa-history fa-fw"></i>经济大事年表</a></li><li class="menu-item menu-item-经济时间轴"><a href="/economy/" rel="section"><i class="fa fa-pie-chart fa-fw"></i>经济时间轴</a></li><li class="menu-item menu-item-60秒读懂世界"><a href="/60s_news/" rel="section"><i class="fa fa-newspaper fa-fw"></i>60秒读懂世界</a></li><li class="menu-item menu-item-新闻"><a href="/news/" rel="section"><i class="fa fa-file-alt fa-fw"></i>新闻</a></li><li class="menu-item menu-item-书籍"><a href="/book/" rel="section"><i class="fa fa-book 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">
<p class="site-author-name" itemprop="name">H1985</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">18</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/">
<span class="site-state-item-count">7</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">17</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="http://www.reformdata.org/records/1978.shtml" title="改革开放全纪录(1978-2018) → http://www.reformdata.org/records/1978.shtml" rel="noopener me" target="_blank">改革开放全纪录(1978-2018)</a>
</span>
<span class="links-of-author-item">
<a href="http://www.mzdbl.cn/rmrb/index.html" title="人民日报(1946-2003) → http://www.mzdbl.cn/rmrb/index.html" rel="noopener me" target="_blank">人民日报(1946-2003)</a>
</span>
<span class="links-of-author-item">
<a href="https://govopendata.com/" title="公共数据开放平台 → https://govopendata.com/" rel="noopener me" target="_blank">公共数据开放平台</a>
</span>
<span class="links-of-author-item">
<a href="https://reader.jojokanbao.cn/" title="JOJO看报 → https://reader.jojokanbao.cn/" rel="noopener me" target="_blank">JOJO看报</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="https://qqhsx.github.io/newpost/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="H1985">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="读懂世界">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 读懂世界">
<meta itemprop="description" content="">
</span>
<div class="post-body" itemprop="articleBody">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
display: flex;
align-items: center;
padding: 1px;
width: 100%;
box-sizing: border-box;
}
.scroll-container {
display: flex;
align-items: center;
overflow: hidden;
white-space: nowrap;
flex: 1; /* 使滚动容器占据剩余空间 */
border: 1px solid #d3d3d3;
border-radius: 8px;
padding: 0 12px;
}
.scroll-content {
display: inline-block;
padding: 0 12px;
white-space: nowrap;
animation: scroll-left 20s linear infinite;
}
@keyframes scroll-left {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
.fa {
margin-right: 10px;
}
.announcement-title {
font-size: 22px;
margin-right: 10px;
}
</style>
<div class="container">
<i class="fa fa-bullhorn fa-shake" style="font-size: 22px;"></i>
<span class="announcement-title">公告</span>
<div class="scroll-container">
<div class="scroll-content">
- <span id="holiday-info">加载中...</span>
</div>
</div>
</div>
<link rel="stylesheet" href="styles.css">
<div id="scroll-container">
<button id="scroll-left" class="scroll-button">≪</button>
<div id="stock-data">
</div>
<button id="scroll-right" class="scroll-button">≫</button>
</div>
<script type="text/javascript" src="/js/holiday.js"></script>
<script type="text/javascript" src="/js/indices/sse.js"></script>
<link rel="stylesheet" href="/css/indices.css">
</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="https://qqhsx.github.io/%E7%BB%8F%E6%B5%8E/%E5%85%A8%E9%9D%A2%E4%BA%86%E8%A7%A3%E6%8A%95%E8%B5%84%E4%BA%A7%E5%93%81%EF%BC%9A%E4%BB%8E%E9%A3%8E%E9%99%A9%E5%88%B0%E6%94%B6%E7%9B%8A%E7%9A%84%E6%AF%94%E8%BE%83%E5%88%86%E6%9E%90/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="H1985">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="读懂世界">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 读懂世界">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/%E7%BB%8F%E6%B5%8E/%E5%85%A8%E9%9D%A2%E4%BA%86%E8%A7%A3%E6%8A%95%E8%B5%84%E4%BA%A7%E5%93%81%EF%BC%9A%E4%BB%8E%E9%A3%8E%E9%99%A9%E5%88%B0%E6%94%B6%E7%9B%8A%E7%9A%84%E6%AF%94%E8%BE%83%E5%88%86%E6%9E%90/" 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-05 19:24:43 / 修改时间:19:28:54" itemprop="dateCreated datePublished" datetime="2024-07-05T19:24:43+08:00">2024-07-05</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E7%BB%8F%E6%B5%8E/" itemprop="url" rel="index"><span itemprop="name">经济</span></a>
</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>在投资世界中,有多种类型的投资产品可供选择,每种产品都有其独特的特点和风险回报特征。以下是对常见投资产品的全面比较和分析,帮助投资者理解并选择适合自己的投资工具。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/%E7%BB%8F%E6%B5%8E/%E5%85%A8%E9%9D%A2%E4%BA%86%E8%A7%A3%E6%8A%95%E8%B5%84%E4%BA%A7%E5%93%81%EF%BC%9A%E4%BB%8E%E9%A3%8E%E9%99%A9%E5%88%B0%E6%94%B6%E7%9B%8A%E7%9A%84%E6%AF%94%E8%BE%83%E5%88%86%E6%9E%90/#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="https://qqhsx.github.io/%E7%BB%8F%E6%B5%8E/%E5%80%BA%E5%88%B8/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="H1985">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="读懂世界">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 读懂世界">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/%E7%BB%8F%E6%B5%8E/%E5%80%BA%E5%88%B8/" 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-05 17:18:52 / 修改时间:18:10:29" itemprop="dateCreated datePublished" datetime="2024-07-05T17:18:52+08:00">2024-07-05</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E7%BB%8F%E6%B5%8E/" itemprop="url" rel="index"><span itemprop="name">经济</span></a>
</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h3 id="债券:理解债务的投资方式"><a href="#债券:理解债务的投资方式" class="headerlink" title="债券:理解债务的投资方式"></a>债券:理解债务的投资方式</h3><p>在金融世界中,债券是一种常见的投资工具,它为投资者提供了一种安全稳定的投资选择。让我们一起来了解一下什么是债券,以及如何购买债券以及它如何运作。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/%E7%BB%8F%E6%B5%8E/%E5%80%BA%E5%88%B8/#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="https://qqhsx.github.io/%E7%BB%8F%E6%B5%8E/%E4%BF%9D%E9%9A%9C%E6%80%A7%E4%BD%8F%E6%88%BF/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="H1985">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="读懂世界">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 读懂世界">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/%E7%BB%8F%E6%B5%8E/%E4%BF%9D%E9%9A%9C%E6%80%A7%E4%BD%8F%E6%88%BF/" 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-05 09:54:40 / 修改时间:10:17:34" itemprop="dateCreated datePublished" datetime="2024-07-05T09:54:40+08:00">2024-07-05</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E7%BB%8F%E6%B5%8E/" itemprop="url" rel="index"><span itemprop="name">经济</span></a>
</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>保障性住房是中国政府为了解决中低收入家庭住房困难问题,保障居民基本居住需求而推出的一系列住房政策和项目。保障性住房主要包括以下几种类型:</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/%E7%BB%8F%E6%B5%8E/%E4%BF%9D%E9%9A%9C%E6%80%A7%E4%BD%8F%E6%88%BF/#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="https://qqhsx.github.io/%E7%BB%8F%E6%B5%8E/%E4%B8%AD%E5%9B%BD%E6%88%BF%E4%BB%B7%E9%AB%98%E6%AD%8C%E7%8C%9B%E6%B6%A8%E6%97%B6%E6%9C%9F/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="H1985">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="读懂世界">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 读懂世界">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/%E7%BB%8F%E6%B5%8E/%E4%B8%AD%E5%9B%BD%E6%88%BF%E4%BB%B7%E9%AB%98%E6%AD%8C%E7%8C%9B%E6%B6%A8%E6%97%B6%E6%9C%9F/" 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-03 17:08:46 / 修改时间:19:09:03" itemprop="dateCreated datePublished" datetime="2024-07-03T17:08:46+08:00">2024-07-03</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E7%BB%8F%E6%B5%8E/" itemprop="url" rel="index"><span itemprop="name">经济</span></a>
</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>中国房价的高歌猛涨主要集中在以下几个时间段:</p>
<h3 id="1998年-房改启动"><a href="#1998年-房改启动" class="headerlink" title="1998年 房改启动"></a>1998年 房改启动</h3><p><strong>1998年</strong>,国务院发布《关于进一步深化城镇住房制度改革加快住房建设的通知》,决定全面停止住房实物分配,实行住房分配货币化。这一政策使得商品房市场快速发展,住房成为商品,房价开始逐步上涨。</p>
<ul>
<li><strong>1998年房价</strong>:一线城市如北京和上海的平均房价约为2000-3000元/平方米。</li>
</ul>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/%E7%BB%8F%E6%B5%8E/%E4%B8%AD%E5%9B%BD%E6%88%BF%E4%BB%B7%E9%AB%98%E6%AD%8C%E7%8C%9B%E6%B6%A8%E6%97%B6%E6%9C%9F/#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="https://qqhsx.github.io/%E7%BB%8F%E6%B5%8E/%E6%88%BF%E5%9C%B0%E4%BA%A7%E5%B8%82%E5%9C%BA%E5%8C%96/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="H1985">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="读懂世界">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 读懂世界">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/%E7%BB%8F%E6%B5%8E/%E6%88%BF%E5%9C%B0%E4%BA%A7%E5%B8%82%E5%9C%BA%E5%8C%96/" 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-03 14:17:35" itemprop="dateCreated datePublished" datetime="2024-07-03T14:17:35+08:00">2024-07-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-07-05 10:21:41" itemprop="dateModified" datetime="2024-07-05T10:21:41+08:00">2024-07-05</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E7%BB%8F%E6%B5%8E/" itemprop="url" rel="index"><span itemprop="name">经济</span></a>
</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>房地产市场化是指房地产行业从计划经济体制向市场经济体制转变的过程。这个过程主要包括以下几个方面:</p>
</blockquote>
<h3 id="1-市场供需决定房价"><a href="#1-市场供需决定房价" class="headerlink" title="1. 市场供需决定房价"></a>1. 市场供需决定房价</h3><p>在计划经济体制下,房价由政府制定,供应也由政府控制。市场化之后,房价由市场供需关系决定。房子供不应求时,房价上涨;供过于求时,房价下跌。比如在大城市,人口多、需求大,房价就可能更高。</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/%E7%BB%8F%E6%B5%8E/%E6%88%BF%E5%9C%B0%E4%BA%A7%E5%B8%82%E5%9C%BA%E5%8C%96/#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="https://qqhsx.github.io/%E7%BB%8F%E6%B5%8E/%E9%80%9A%E8%B4%A7%E7%B4%A7%E7%BC%A9/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="H1985">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="读懂世界">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 读懂世界">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/%E7%BB%8F%E6%B5%8E/%E9%80%9A%E8%B4%A7%E7%B4%A7%E7%BC%A9/" 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-02 08:29:00 / 修改时间:11:03:48" itemprop="dateCreated datePublished" datetime="2024-07-02T08:29:00+08:00">2024-07-02</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E7%BB%8F%E6%B5%8E/" itemprop="url" rel="index"><span itemprop="name">经济</span></a>
</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h4 id="小镇的故事"><a href="#小镇的故事" class="headerlink" title="小镇的故事"></a>小镇的故事</h4><p>在一个宁静的小镇上,居民们的生活就是买东西和卖东西。</p>
<p><strong>一、一切正常的时候</strong></p>
<ol>
<li><strong>市场运作</strong>:小镇的商店、农场和工厂都在正常运作。居民们赚取薪水,然后用这些钱买食物、衣物和其他日常必需品。</li>
<li><strong>价格稳定</strong>:市场上的商品和服务价格相对稳定。比如,一个面包的价格是5块钱,一杯牛奶的价格是2块钱。</li>
</ol>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/%E7%BB%8F%E6%B5%8E/%E9%80%9A%E8%B4%A7%E7%B4%A7%E7%BC%A9/#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="https://qqhsx.github.io/%E7%BB%8F%E6%B5%8E/%E4%BB%80%E4%B9%88%E6%98%AF%E5%B9%B4%E5%A2%9E%E7%8E%87%EF%BC%9F/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="H1985">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="读懂世界">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 读懂世界">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/%E7%BB%8F%E6%B5%8E/%E4%BB%80%E4%B9%88%E6%98%AF%E5%B9%B4%E5%A2%9E%E7%8E%87%EF%BC%9F/" 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-01 15:55:55" itemprop="dateCreated datePublished" datetime="2024-07-01T15:55:55+08:00">2024-07-01</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-02 08:31:48" itemprop="dateModified" datetime="2024-07-02T08:31:48+08:00">2024-07-02</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E7%BB%8F%E6%B5%8E/" itemprop="url" rel="index"><span itemprop="name">经济</span></a>
</span>
</span>
</div>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h3 id="什么是年增率?"><a href="#什么是年增率?" class="headerlink" title="什么是年增率?"></a>什么是年增率?</h3><p>年增率(Year-over-Year Growth Rate)是用来衡量一个指标(如收入、利润、房价等)在一年的时间跨度内增长(或减少)的百分比。用简洁的公式表示:</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/%E7%BB%8F%E6%B5%8E/%E4%BB%80%E4%B9%88%E6%98%AF%E5%B9%B4%E5%A2%9E%E7%8E%87%EF%BC%9F/#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="https://qqhsx.github.io/%E7%BB%8F%E6%B5%8E/%E7%BB%8F%E6%B5%8E%E4%B9%A6%E7%B1%8D/%E8%AF%84%E5%B0%8F%E5%B2%9B%E7%BB%8F%E6%B5%8E%E5%AD%A6-%E9%B1%BC-%E7%BE%8E%E5%85%83%E5%92%8C%E7%BB%8F%E6%B5%8E%E7%9A%84%E6%95%85%E4%BA%8B/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="H1985">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="读懂世界">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/CreativeWork">
<meta itemprop="name" content="undefined | 读懂世界">
<meta itemprop="description" content="">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/%E7%BB%8F%E6%B5%8E/%E7%BB%8F%E6%B5%8E%E4%B9%A6%E7%B1%8D/%E8%AF%84%E5%B0%8F%E5%B2%9B%E7%BB%8F%E6%B5%8E%E5%AD%A6-%E9%B1%BC-%E7%BE%8E%E5%85%83%E5%92%8C%E7%BB%8F%E6%B5%8E%E7%9A%84%E6%95%85%E4%BA%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-06-29 14:18:30" itemprop="dateCreated datePublished" datetime="2024-06-29T14:18:30+08:00">2024-06-29</time>
</span>
<span class="post-meta-item">