-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPoJvSiwei.html
More file actions
1260 lines (1085 loc) · 139 KB
/
Copy pathPoJvSiwei.html
File metadata and controls
1260 lines (1085 loc) · 139 KB
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
<body id="activity-detail" class="zh_CN wx_wap_page wx_wap_desktop_fontsize_2 mm_appmsg comment_feature discuss_tab appmsg_skin_default appmsg_style_default pages_skin_pc not_in_mm">
<script type="text/javascript" nonce="" reportloaderror="">
var biz = "MzA5NzAzMjIxMw==" || "";
var sn = "e401686fdb5310f3bf01c81a6c88dca0" || "" || "";
var mid = "2650975219" || "" || "";
var idx = "1" || "" || "";
window.__allowLoadResFromMp = true; // 允许从mp.weixin.qq.com加载js资源
// window.__loadAllResFromMp = true; // 所有js资源都从mp域名加载
</script>
<script nonce="" reportloaderror="">
var page_begintime = (+new Date());
// 辟谣需求
var is_rumor = "";
var norumor = "";
if (!!(is_rumor * 1) && !(norumor*1) && !!biz && !!mid) {
if (!document.referrer || document.referrer.indexOf("mp.weixin.qq.com/mp/rumor") == -1){
location.href = "http://mp.weixin.qq.com/mp/rumor?action=info&__biz=" + biz + "&mid=" + mid + "&idx=" + idx + "&sn=" + sn + "#wechat_redirect";
}
}
</script>
<link rel="dns-prefetch" href="//res.wx.qq.com" reportloaderror="">
<link rel="dns-prefetch" href="//mmbiz.qpic.cn" reportloaderror="">
<link rel="dns-prefetch" href="https://wxa.wxs.qq.com" reportloaderror="">
<link rel="shortcut icon" type="image/x-icon" href="//res.wx.qq.com/a/wx_fed/assets/res/NTI4MWU5.ico" reportloaderror="">
<link rel="mask-icon" href="//res.wx.qq.com/a/wx_fed/assets/res/MjliNWVm.svg" color="#4C4C4C" reportloaderror="">
<link rel="apple-touch-icon-precomposed" href="//res.wx.qq.com/a/wx_fed/assets/res/OTE0YTAw.png" reportloaderror="">
<script type="text/javascript" nonce="" reportloaderror="">
String.prototype.html = function (encode) {
var replace = ["'", "'", """, '"', " ", " ", ">", ">", "<", "<", "¥", "¥", "&", "&"];
// 最新版的safari 12有一个BUG,如果使用字面量定义一个数组,var a = [1, 2, 3]
// 当调用了 a.reverse() 方法把变量 a 元素顺序反转成 3, 2, 1 后,
// 即使此页面刷新了, 或者此页面使用 A标签、 window.open 打开的页面,
// 只要调用到同一段代码, 变量 a 的元素顺序都会变成 3, 2, 1
// 所以这里不用 reverse 方法
/*
if (encode) {
replace.reverse();
}*/
var replaceReverse = ["&", "&", "¥", "¥", "<", "<", ">", ">", " ", " ", '"', """, "'", "'"];
var target;
if (encode) {
target = replaceReverse;
} else {
target = replace;
}
for (var i = 0, str = this; i < target.length; i += 2) {
str = str.replace(new RegExp(target[i], 'g'), target[i + 1]);
}
return str;
};
window.isInWeixinApp = function () {
return /MicroMessenger/.test(navigator.userAgent);
};
window.getQueryFromURL = function (url) {
url = url || 'http://qq.com/s?a=b#rd'; // 做一层保护,保证URL是合法的
var tmp = url.split('?'),
query = (tmp[1] || "").split('#')[0].split('&'),
params = {};
for (var i = 0; i < query.length; i++) {
var arg = query[i].split('=');
params[arg[0]] = arg[1];
}
if (params['pass_ticket']) {
params['pass_ticket'] = encodeURIComponent(params['pass_ticket'].html(false).html(false).replace(/\s/g, "+"));
}
return params;
};
(function () {
var params = getQueryFromURL(location.href);
window.uin = params['uin'] || "" || '';
window.key = params['key'] || "" || '';
window.wxtoken = params['wxtoken'] || '';
window.pass_ticket = params['pass_ticket'] || '';
window.appmsg_token = "";
var ua = navigator.userAgent;
if (ua.match(/Mac\sOS\sX\s(\d+[\.|_]\d+)/) || ua.match(/Windows(\s+\w+)?\s+?(\d+\.\d+)/) || ua.match(/Linux\s/)) {
document.body.classList.add('pages_skin_pc');
}
})();
</script>
<script type="text/javascript" nonce="" reportloaderror="">window.PAGE_MID="mmbizwap:appmsg/newindex.html"</script>
<script type="text/javascript" nonce="" reportloaderror="">
var write_sceen_time = (+new Date());
var preview = "" * 1 || 0;
var currencyMap = {
'USD': '$',
'HKD': 'HK$',
'CAD': 'C$',
'AUD': 'A$',
'TWD': 'NT$',
'JPY': 'JPY¥',
'EUR': '€',
'SGD': 'S$',
'GBP': '£',
'NZD': 'NZ$',
'MYR': 'RM',
'KZT': '〒',
'KRW': '₩',
'THB': '฿',
'PHP': '₱',
'TRY': '₺',
'MXN': 'Mex$',
'CNY': '¥'
};
var can_use_wecoin = '1' * 1; // 是否个人号
var wecoin_tips = '0' * 1; // 是否出教育弹窗
/* var can_use_wecoin = 1; */
var wecoin_amount = '0' * 1; // 微信豆个数
</script>
<div id="js_article" class="rich_media">
<div id="js_top_ad_area" class="top_banner"></div>
<div class="rich_media_inner">
<div id="page-content" class="rich_media_area_primary">
<div class="rich_media_area_primary_inner js_rich_media_area_primary_inner">
<div id="img-content" class="rich_media_wrp">
<h1 class="rich_media_title " id="activity-name">牛逼的人都有破局思维</h1>
<div id="meta_content" class="rich_media_meta_list">
<span class="rich_media_meta rich_media_meta_nickname" id="profileBt">
<a href="javascript:void(0);" class="wx_tap_link js_wx_tap_highlight weui-wa-hotarea" id="js_name">
互联网思维 </a>
<div id="js_profile_qrcode" aria-hidden="true" class="profile_container" style="display:none;">
<div class="profile_inner">
<strong class="profile_nickname">互联网思维</strong>
<img class="profile_avatar" id="js_profile_qrcode_img" src="" alt="">
<p class="profile_meta">
<label class="profile_meta_label">Weixin ID</label>
<span class="profile_meta_value">webthinking</span>
</p>
<p class="profile_meta">
<label class="profile_meta_label">About Feature</label>
<span class="profile_meta_value">点我关注,每日精选互联网创投深度干货,126万互联网精英都在关注,陪你一起成长。</span>
</p>
</div>
<span class="profile_arrow_wrp" id="js_profile_arrow_wrp">
<i class="profile_arrow arrow_out"></i>
<i class="profile_arrow arrow_in"></i>
</span>
</div>
</span>
<em id="publish_time" class="rich_media_meta rich_media_meta_text">2022-07-30 11:30</em>
<em id="js_ip_wording_wrp" class="rich_media_meta rich_media_meta_text" role="option" style="display: inline-block;">Posted on <span id="js_ip_wording">江西</span></em>
</div>
<div id="js_tags" class="article-tag__list" style="display: none;" data-len="0">
<div class="article-tag-card__title">收录于合集</div>
<div class="article-tags">
</div>
</div>
<div class="original_area_primary" style="margin-bottom: 0;">
</div>
<div class="original_area_primary">
<p role="option" class="original_primary_card_tips">
<span>The following article is from 自言稚语</span>
<span>Author Windy Liu</span>
</p>
<a class="weui-flex original_primary_card appmsg_card_context wx_tap_card js_wx_tap_highlight" href="#" id="copyright_info">
<div class="weui-flex__hd">
<span class="radius_avatar">
<img class="avatar" src="http://wx.qlogo.cn/mmhead/Q3auHgzwzM4MzX7aZAYdvAatuiampu6tYucvfmxHe3Mp4iaiaUmG7oSxA/0" alt="">
</span>
</div>
<div class="weui-flex__item" role="option">
<strong class="original_primary_nickname">自言稚语</strong>
<span class="weui-hidden_abs">.</span>
<p class="original_primary_desc">我是雨令(Windy),探索人生哲学,追求自我成长的理性思考者,专注于心智成长和自我精进。和我一起,由内而外地重构自己,获得自由富足的人生。</p>
</div>
<div class="weui-flex__ft"></div>
</a>
</div>
<div class="rich_media_content " id="js_content" style="visibility: visible;">
<section data-tools="新媒体管家" data-label="powered by xmt.cn" style="padding-left: 0.5em; padding-right: 0.5em; visibility: visible;" data-mpa-powered-by="yiban.io"><img class="rich_pages wxw-img" data-backh="374" data-backw="561" data-ratio="0.6675126903553299" data-src="https://mmbiz.qpic.cn/mmbiz_jpg/ica0BbQJ0cyeds2icjjAjrChtONy2UfD6JJ7GgELTj8NRWiaUZ5UCIwb8ezqpsUpPErmfnaDB3sUwLeQJLp7icJXNQ/640?wx_fmt=jpeg" data-type="jpeg" data-w="2364" style="visibility: visible !important; width: 100% !important; height: auto !important;" _width="100%" src="https://mmbiz.qpic.cn/mmbiz_jpg/ica0BbQJ0cyeds2icjjAjrChtONy2UfD6JJ7GgELTj8NRWiaUZ5UCIwb8ezqpsUpPErmfnaDB3sUwLeQJLp7icJXNQ/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1&wx_co=1" crossorigin="anonymous" alt="Image" data-fail="0"></section><section powered-by="xiumi.us" style="padding-left: 0.5em; padding-right: 0.5em; visibility: visible;"><section powered-by="xiumi.us" style="visibility: visible;"><section powered-by="xiumi.us" style="visibility: visible;"><section powered-by="xiumi.us" style="visibility: visible;"><section style="visibility: visible;"><section style="visibility: visible;"><p style="visibility: visible;"><span style="font-size: 15px; letter-spacing: 0.5px; color: rgb(62, 62, 62); visibility: visible;">作者:Windy Liu<br style="visibility: visible;"></span></p></section></section></section></section></section></section><p style="padding-left: 0.5em; padding-right: 0.5em; letter-spacing: 0.5px; line-height: 1.75em; visibility: visible;"><span style="font-size: 15px; color: rgb(62, 62, 62); visibility: visible;">来源:自言稚语(ID:selfgrowth-handbook)</span></p><p style="padding-left: 0.5em; padding-right: 0.5em; letter-spacing: 0.5px; line-height: 1.75em; visibility: visible;"><span style="font-size: 15px; color: rgb(62, 62, 62); visibility: visible;"><br style="visibility: visible;"></span></p><p style="padding-left: 0.5em; padding-right: 0.5em; letter-spacing: 0.5px; line-height: 1.75em; visibility: visible;"><span style="font-size: 16px; color: rgb(47, 47, 47); visibility: visible;">有时候,我们已经够努力了,却还是看不到生活有所改变的迹象,内心就像陷入了一个迷宫,迷茫而焦虑。</span></p><p style="padding-left: 0.5em; padding-right: 0.5em; letter-spacing: 0.5px; line-height: 1.75em; visibility: visible;"><span style="font-size: 16px; color: rgb(47, 47, 47); visibility: visible;"> </span></p><p style="padding-left: 0.5em; padding-right: 0.5em; letter-spacing: 0.5px; line-height: 1.75em; visibility: visible;"><span style="font-size: 16px; color: rgb(47, 47, 47); visibility: visible;">爱因斯坦曾说,这个层次的问题,很难靠这个层次的思考来解决。</span></p><p style="padding-left: 0.5em; padding-right: 0.5em; letter-spacing: 0.5px; line-height: 1.75em; visibility: visible;"><span style="font-size: 16px; color: rgb(47, 47, 47); visibility: visible;"> </span></p><p style="padding-left: 0.5em; padding-right: 0.5em; letter-spacing: 0.5px; line-height: 1.75em; visibility: visible;"><span style="font-size: 16px; color: rgb(47, 47, 47); visibility: visible;">那如果这个层次的思考失效,我们又该如何找到出路呢?</span></p><p style="padding-left: 0.5em; padding-right: 0.5em; visibility: visible;"><br style="visibility: visible;"></p><p style="padding-left: 0.5em; padding-right: 0.5em; visibility: visible;"><br style="visibility: visible;"></p><p style="padding-left: 0.5em; padding-right: 0.5em; letter-spacing: 0.5px; line-height: 1.75em; text-align: center; visibility: visible;"><span style="color: rgb(0, 112, 192); visibility: visible;"><strong style="visibility: visible;"><span style="font-size: 20px; visibility: visible;">01</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="color: rgb(0, 112, 192);font-size: 20px;">你眼下的难题</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="color: rgb(0, 112, 192);font-size: 20px;">需要提升一个思维层次来解决</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">在现实生活中,我们常常会陷入到一种人生无解的怪圈中。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">你很穷,然后紧衣缩食,结果却依然入不敷出;</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"><br></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">你很胖,然后拼命节食,结果却依然大腹便便;</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"><br></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">你很忙,然后天天加班,结果工作成效依然不高。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">你会很无奈地发现,自己努力做出的改变,却并没有得到预期的结果,这就像推磨的驴子,因为被蒙住了眼睛,所以它不停地一圈一圈地拉着磨。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">它感觉自己是一直在往前走,不断进步不断成长,但事实上,它一直在原地打转。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">让我们一起来做一个简单的实验。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">将一束光投注在墙上,形成一片光亮的区域。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">然后,把你的手伸到光源前面,结果在光亮的墙上就会出现你手掌的影子。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">这时候,如果想要改变墙上影子的形状,你可以直接在墙这个平面上对影子做任何修改吗?</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">显然你是做不到的,我们只能回到立体世界的你这个人面前,改变你手掌的姿势,这样才能真正改变影子的形状。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">墙上的影子,处于二维平面,而现实中你的手,处于三维立体世界,影子只是三维立体的手在二维平面上的投射。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">如果想要改变二维平面的影像,就得要上升一个层次,到达三维去做改变。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">这其实就是一个升维解决问题的过程。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">你很穷,要求自己少买衣服少花销,能走路绝不坐车,有朋友在绝不主动买单,你会为自己省了几块车钱而沾沾自喜,觉得自己真会过日子,也会因为贪了别人的便宜而觉得自己聪明。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">可是,你从来也没有意识到,你眼下的生活被太多琐碎的事情所填满,内心被各种鸡毛蒜皮的算计所占据,这反而让自己可控的时间越来越少,身边的朋友也渐渐疏离。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">其实,你的穷,是一种心态上的穷,思维宽带太窄,自控力稀缺,真正能让你富足的,是摆脱你的『穷人心态』,懂得长远地为生活打算。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">你很胖,要求自己每天痛苦地节食,可是你总是会不经意地在某一天,经过一番纠结犹豫之后,选择到一家火锅店大快朵颐,结果回到家一称,体重又回去了。这时候,你又会跟自己发狠誓,下次绝对要管住嘴。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">可是,你从来也没有意识到,节食减肥只会让你的潜意识降低你的新陈代谢率,这会让你减少消耗,反而不利于减脂。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">而真正能够帮助你减肥的,不是管住嘴,而是借助饮食,运动的规律性来加速你的新陈代谢率。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">你很忙,天天周旋于各种会议,报表,为了赶上进度,加班加点,可是,这样连续几天的加班之后,你又开始陷入一种需要休息调整的状态,这时候你会开始给自己找各种借口,把事情往后拖,结果当别人来催你的时候,你又开始进入下一个加班周期,奔波忙碌。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">可是,你也从来也没有意识到,这种周而复始的繁忙状态只会让你陷入一种高效率的假象中,你的工作并没有因此变得出色,反而因为紧张忙碌而漏洞百出。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">真正能让你摆脱工作负循环的,不是加班加点的穷忙,而是懂得做好计划,提升能力,辨别事情的轻重缓急。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);">人的思维是有层次的,你眼下的难题,往往需要提升一个思维层次来解决。</span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="font-size: 20px;">02</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="color: rgb(0, 112, 192);font-size: 20px;">从更高的思维层次上改变</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="color: rgb(0, 112, 192);font-size: 20px;">才能在根源上解决问题</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">一个人的认知系统是非常复杂的,我们脑子里可能存在着各种声音,想法,评判,而外界成千上万的讯息也在不断地涌入大脑。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">所以有时候我们会下决心做出一些选择,行动。但过不了多久,又会因为内心的无序,精神上的熵增半途而废。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">大部分人都容易陷入思维的瓶颈,不确定自己的努力是不是有效,不知道自己的改变能不能持续,至于短暂利益和长远考量之间的取舍,更是无从抉择,整个状态就是困惑,纠结和迷惘,从而当下的难题也自然成了一团迷雾,无法看清楚其中的关键。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><mpcpc js_editor_cpcad="" class="" src="/cgi-bin/readtemplate?t=tmpl/cpc_tmpl#1659182070046" data-category_id_list="1|16|17|24|28|29|31|35|36|37|39|41|42|43|46|47|48|5|50|51|55|6|7|8" data-id="1659182070046" style="display: none;"></mpcpc><span style="font-size: 16px;color: rgb(47, 47, 47);"></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"><br></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">不过,尽管思维有其复杂性,但是当我们的大脑在思考和决策的时候,还是有其不同的逻辑层次,从上到下依次如下图所示:</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><img class="rich_pages wxw-img" data-backh="585" data-backw="637" data-before-oversubscription-url="https://mmbiz.qpic.cn/mmbiz_png/IuvEqpuCSPQxzj4CL5yth0XZ4a6PEPuX6BceNOurNhKibISkmOpCjpCgozv5VUlP7JycYgELxDmkmpQEcibRb0rA/640" data-copyright="0" data-ratio="0.9171974522292994" data-s="300,640" data-src="https://mmbiz.qpic.cn/mmbiz_png/IuvEqpuCSPQxzj4CL5yth0XZ4a6PEPuX6BceNOurNhKibISkmOpCjpCgozv5VUlP7JycYgELxDmkmpQEcibRb0rA/640?wx_fmt=jpeg" data-type="png" data-w="942" style="border-color: rgb(0, 0, 0); border-style: solid; border-width: 1px; width: 100% !important; height: auto !important; visibility: visible !important;" _width="100%" src="https://mmbiz.qpic.cn/mmbiz_png/IuvEqpuCSPQxzj4CL5yth0XZ4a6PEPuX6BceNOurNhKibISkmOpCjpCgozv5VUlP7JycYgELxDmkmpQEcibRb0rA/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1&wx_co=1" crossorigin="anonymous" alt="Image" data-fail="0"></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);">1、价值观层面</span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">价值观,其实就是我们内心的一套信念拼图,它会潜移默化地影响着我们看待周围事物和为人处事的方式。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">我们在这个思维层次上的思考往往是:</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">为什么做(或者不做)这件事情?<br></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">这件事情重要还是不重要?</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">这件事原本应该是怎样的?</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);">2、能力层面</span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">能力层面,则与一个人在现实中能有的选择相关,每一个选择都是一种能力,所以选择越多,能力越大。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">比如,你英语听说读写能力很强,那你就能够选择当英语老师,也可以选择做同声传译。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);">3、行动层面</span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">行动层面,指的是“做什么?”,“有没有做?”,即能力的挑选和实际发挥,是指我们如何用自己的能力去做事情。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);">4、环境层面</span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">环境层面的思考,包括了对所有身体以外的条件的感知,比如人、事、物、地点、金钱等等。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">在思维的层次中,每一层的思考都会对下面的思维层次产生影响,而更高层次思维上的改变,将会向下传递,从而在低层次上产生相应的改变。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">层次越低的问题,越容易解决。日常生活中的问题多是环境及行为层次的问题,当问题是在信念价值观的层次的时候,解决起来就更为困难。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);">一般来说,一个低层次的问题,在更高的层次里容易找到解决方法。反过来说,一个高层次的问题,用一个低层次的解决办法,则难以有效果。</span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">就像有的人生活窘迫,大部分时候他都只是从外界和行动的层面上去思考,认为大环境不好,个人的努力还不够,但这样的思考却并不能真正解决一个人贫穷的困境。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">但是,如果用思维逻辑层次来推演,往往就能找到更本质的原因。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">首先从环境层面来看,他周围依然有很多人生活富足,而且现在的互联网社会让彼此之间的连接和沟通都更高效,当下环境在历史上来看反而是一个更好的致富环境。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">从行为层面来看,他目前很拮据,爱贪小便宜,只懂得索取,不懂得给予,甚至愿意牺牲宝贵的时间来换取金钱上的节约。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">然后从能力层面看,他没有专精的技能,找不到一份更好的工作,也没有领导力,亲和力与他人很好地合作。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">对此,他在价值观层面的信念往往是:</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">财源供给有限,我和他人是你争我夺的竞争关系,而我花钱时,钱就少了,我必须减少支出才能拥有更多财富。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">简单地推演之后,我们就会发现,上一层的思维模式是直接影响着下一层的思考方式的。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">当他把这几个层次的思考都理顺了之后,再从高层次到低层次对思维模式进行重新定义,那就有可能真正地改变现状。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">这时候,他可以先从价值观层面来重新定义信念——我们只要有高价值的能力资源,就可以交换到足够的金钱。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">基于这个信念,他就不再把精力放在金钱上,而是放在未来发展的战略上,提升自己的能力价值,让自身的高价值来吸引金钱流向自己;</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">而他后续的行动上也会变得开放,懂得与他人构建双赢的关系,愿意在自己身上进行投资,而他所处的环境也会变得更加有利于他的个人发展,从而让人生进入一个正循环。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);">在更高的思维层次上进行改变,往往才会从根源上解决问题,产生质的变化。</span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="font-size: 20px;">03</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="color: rgb(0, 112, 192);font-size: 20px;">你对于时间的认知</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="color: rgb(0, 112, 192);font-size: 20px;">决定了升维思考的高度</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">关于提升思维的层次,很重要的一点是把时间这个维度纳入考量。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">大部分时候,我们都容易高估短期的收益,而低估长期的价值。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">但是如果加入时间这个维度,那大部分事情就容易变得清晰明了起来。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">在美国华尔街的游戏规则里,一家公司每个季度财报上的数据都得要足够亮眼才会获得资本的青睐,因为他们注重的是短期利润。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">不过,『亚马逊』公司却不以为然,反而选择以长线思维牺牲短期利润来获取增长。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">在『亚马逊』CEO贝索斯的观念里:</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);">所有只能产生短期利润的项目都不重要,无论现在多赚钱;能够产生长期现金流的项目才是最重要的,无论现在亏多少钱。</span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">在他看来,如果在你做的每件事情中把眼光放到未来三年,和你同台竞技的人会很多;但是如果你的目光能放到未来七年,那么可以和你竞争的就很少了,因为很少有公司愿意做那么长远的打算。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">而如今,『亚马逊』颠覆了书店,把美国最大的书店巴诺击败了;也颠覆了超市,它的市值超过了美国前10大零售店的市值总和;甚至颠覆了计算能力市场,其作为一家电商,居然进入到云计算的行业,而现在Oracel,IBM,惠普,Dell等等这些世界有名的传统计算公司巨头的市值加起来,都不如『亚马逊』。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">而贝索斯自己,在2017年3月也超过巴菲特,成为世界第二富翁;而在2017年10月28日,身价飙升至近千亿美元,成为世界首富。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">其实,一个人对于时间的认知,往往决定了升维思考的高度。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">之前有个同学发了一条朋友圈,说当年『小米』公司招募初创核心成员,结果他没有选『小米』,而是去了『微软』,现在『小米』即将上市,他后悔错失了财富自由的机会。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">其实这种选择,往往就是只看到了眼前的短利,而忽视了时间维度上的升维思考。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">如果他能够从10年的跨度来看一家公司的长远发展,那往往能够做出更好的选择。因为从更长的时间上来考量不同的选择,很多眼前的蝇头小利就不值一提,关注的焦点反而更多是公司是否具有高成长性,是否能给自己带来阶层跃迁,财务自由的机会。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">如果你准备投资理财,不妨从更长的周期去考虑,这样才有可能获得稳定的复利效应;</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">如果你准备学习成长,不妨确立一个长远的目标,给自己一步一步脚踏实地践行的动力;</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">如果你在工作中遇到难题,不妨从更长远的职业生涯规划来思考,给自己一个明确的发展方向。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">当把思考架构于时间之上,我们的思维视角就提升到了一个新的高度。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="font-size: 20px;">04</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="color: rgb(0, 112, 192);font-size: 20px;">用升维思考来降维攻击</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="color: rgb(0, 112, 192);font-size: 20px;">才能完成人生破局</span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;text-align: center;"><span style="color: rgb(0, 112, 192);"><strong><span style="color: rgb(0, 112, 192);font-size: 20px;"> </span></strong></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">从低层次的思维模式,逐层往上探究高层次的思维模式,这样一种升维的过程往往能够挖掘出问题的关键所在;</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">而同时结合时间维度进行思考,则会让我们更清楚事情未来的演化方向,明晰自己的选择。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);">当我们处于一个更高的维度,也就拥有了『降维攻击』的能力,它让我们从眼下的困局中跳脱出来,以一种全新的方式来看待世界,原来的问题也就随之迎刃而解。</span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><strong><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></strong></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">这就像在玩游戏,打不过敌人,打不过怪兽,你非常郁闷,该怎么办呢?</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;"><br></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">这时候你就需要去升级自己的装备,添加各种技能属性,这样才能提升你的战斗力,对比你装备差,战斗力比你低的对手进行降维攻击,从中获胜。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">其实,提升了思维的层次,你就对现状有了一个全新的认知,你拥有了更高的视野,看清了事实的真相,从而改变现状也就是成了水到渠成,顺势而为的事情。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">人生就是一场长途跋涉的旅程,有时候我们会遇到一片浓雾,不知所向。这时候,如果我们试着爬上一处高地,对照着手里的那张信念地图,往往就能辨别出旅程的方向,然后继续鼓起勇气,耐心地走下去。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);"> </span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="font-size: 16px;color: rgb(47, 47, 47);">如果你发现自己总是周而复始地遇到同样的问题,那就需要提升自己的思维层次,用『升维思考』来『降维攻击』,从而完成人生中的破局。</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="color: rgb(62, 62, 62);font-size: 15px;"><br></span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><span style="color: rgb(62, 62, 62);font-size: 15px;">作者简介</span><span style="color: rgb(62, 62, 62);font-size: 15px;">:</span><span style="color: rgb(62, 62, 62);font-size: 15px;">Windy Liu,探索人生哲学,关注自我成长的理性思考者。公众号自言稚语(ID:selfgrowth-handbook)</span></p><p style="padding-left: 0.5em;padding-right: 0.5em;letter-spacing: 0.5px;line-height: 1.75em;"><br></p><section mpa-from-tpl="t" style="margin: 0px 0.5em;padding: 0px 0em;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-style: normal;font-variant-ligatures: normal;font-variant-caps: normal;font-weight: 400;letter-spacing: 0.544px;orphans: 2;text-indent: 0px;text-transform: none;white-space: normal;widows: 2;word-spacing: 0px;-webkit-text-stroke-width: 0px;text-decoration-thickness: initial;text-decoration-style: initial;text-decoration-color: initial;font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;background-color: rgb(255, 255, 255);text-align: center;font-size: 15px;color: rgb(63, 63, 63);line-height: 1.75em;"><span style="margin: 0px;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 16px;"><strong mpa-from-tpl="t" style="margin: 0px;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;">THE END</strong></span></section><section data-style-type="6" data-tools="新媒体排版" data-id="8751" mpa-from-tpl="t" style="margin: 0px 0.5em;padding: 0px 0em;outline: 0px;max-width: 100%;font-style: normal;font-variant-ligatures: normal;font-variant-caps: normal;font-weight: 400;letter-spacing: 0.544px;orphans: 2;text-indent: 0px;text-transform: none;white-space: normal;widows: 2;word-spacing: 0px;-webkit-text-stroke-width: 0px;text-decoration-thickness: initial;text-decoration-style: initial;text-decoration-color: initial;font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;background-color: rgb(255, 255, 255);text-align: center;font-size: 15px;color: rgb(63, 63, 63);box-sizing: border-box !important;overflow-wrap: break-word !important;"><section data-mpa-template-id="90" data-mpa-color="#ffffff" data-mpa-category="quote" mpa-from-tpl="t" style="margin: 0px 0em;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;"><section mpa-from-tpl="t" style="margin: 0px 0em;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;"><section data-preserve-color="t" mpa-from-tpl="t" style="margin: 0px 0em;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;"><section data-style-type="7" data-tools="新媒体排版" data-id="9145" mpa-from-tpl="t" style="margin: 0px 0em;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;"><section mpa-from-tpl="t" style="margin: 0px 0em;padding: 0px 0em;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;line-height: 1.75em;"><span style="margin: 0px;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 16px;"><strong mpa-from-tpl="t" style="margin: 0px;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="margin: 0px;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;color: rgb(0, 112, 192);">如果喜欢我们的文章</span></strong></span></section><section mpa-from-tpl="t" style="margin: 0px 0em;padding: 0px 0em;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;line-height: 1.75em;"><span style="margin: 0px;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 16px;"><strong mpa-from-tpl="t" style="margin: 0px;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="margin: 0px;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;color: rgb(0, 112, 192);">可以点击右下角的在看</span></strong></span></section><p style="margin: 0px 0em;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;clear: both;min-height: 1em;"><img class="rich_pages wxw-img" data-cropselx1="0" data-cropselx2="563" data-cropsely1="0" data-cropsely2="310" data-fileid="503480120" data-galleryid="" data-ratio="0.5555555555555556" data-s="300,640" data-type="jpeg" data-w="720" data-src="https://mmbiz.qpic.cn/mmbiz_jpg/ica0BbQJ0cyezNEDlhibhrucr5DMPJxjoqD0vX5r5hXM06icsG51cMPFYj4oEFMKynPzAhXhI6cHZ5Uqes3yrmJibQ/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1&wx_co=1" style="margin: 0px; padding: 0px; outline: 0px; max-width: 100%; vertical-align: bottom; box-sizing: border-box !important; overflow-wrap: break-word !important; visibility: visible !important; width: 563px !important; height: auto !important;" _width="563px" src="https://mmbiz.qpic.cn/mmbiz_jpg/ica0BbQJ0cyezNEDlhibhrucr5DMPJxjoqD0vX5r5hXM06icsG51cMPFYj4oEFMKynPzAhXhI6cHZ5Uqes3yrmJibQ/640?wx_fmt=jpeg&wxfrom=5&wx_lazy=1&wx_co=1" crossorigin="anonymous" alt="Image" data-fail="0"></p></section></section></section></section></section>
</div>
<script type="text/javascript" nonce="" reportloaderror="">
var first_sceen__time = (+new Date());
if ("" == 1 && document.getElementById('js_content')) {
document.getElementById('js_content').addEventListener("selectstart",function(e){ e.preventDefault(); });
}
</script>
<div id="js_sponsor_ad_area" style="display: none;"></div>
</div>
<div id="js_tags_preview_toast" class="article-tag__error-tips" style="display: none;">预览时标签不可点</div>
<div id="js_album_keep_read" class="appmsg_card_context album_read_card" style="display: none;">
<div role="button" class="album_read_hd weui-flex" id="js_album_directory">
<div class="album_read_source">收录于合集 <span class="weui-link wx_tap_link js_album_directory__name">#<span id="js_album_keep_read_title"></span></span></div>
<span class="weui-btn__word-wrp wx_tap_link js_album_directory__size"> <span id="js_album_keep_read_size"></span><span class="weui-hidden_abs">个</span></span>
</div>
<div class="album_read_bd weui-flex">
<span role="button" class="album_read_nav_item album_read_nav_prev weui-flex__item wx_tap_link js_wx_tap_highlight" id="js_album_prev">
<span class="album_read_nav_inner">
<span class="album_read_nav_btn">上一篇</span>
<span class="album_read_nav_title">
<span class="album_read_nav_title_inner" id="js_album_keep_read_pre_title"></span>
</span>
</span>
</span>
<span role="button" class="album_read_nav_item album_read_nav_next weui-flex__item wx_tap_link js_wx_tap_highlight" id="js_album_next">
<span class="album_read_nav_inner">
<span class="album_read_nav_btn">下一篇</span>
<span class="album_read_nav_title">
<span class="album_read_nav_title_inner" id="js_album_keep_read_next_title"></span>
</span>
</span>
</span>
</div>
</div>
<div id="content_bottom_area" class="rich_media_tool_area"><div class="rich_media_tool__wrp"><div id="js_toobar3" class="rich_media_tool"><!----><div class="weui-flex"><div class="weui-flex__item"><a id="js_view_source" href="javascript:;" class="media_tool_meta meta_primary js_wx_tap_highlight wx_tap_link">Read more</a><!----></div></div><div id="js_bottom_opr_right" class="weui-flex sns_opr_area sns_opr_overflow" style="display: none;"><!----></div></div><!----></div></div>
</div>
</div>
<div class="rich_media_area_primary sougou" id="sg_tj" style="display:none"></div>
<div class="rich_media_area_extra">
<div class="rich_media_area_extra_inner">
<div class="wx_follow_container" id="js_like_profile_container"></div>
<div class="related_container" id="js_related_container"><div class="relate_mod_transition function_mod js_related_area" style="opacity: 1; overflow: visible; height: 21.681em; margin: 12px 0px 0px; transition: none 0s ease 0s;"> <div class="function_mod_index js_related_main"> <div class="function_hd js_related_title"> <!-- 其它 --> People who liked this content also liked </div> <div class="function_bd"> <div class="relate_article_index_list relate_article_list js_related_list" style="height: auto; opacity: 1;"> <div class="weui-media-box weui-media-box_appmsg js_related_item js_wx_tap_highlight wx_tap_cell" data-index="0" data-url="http://mp.weixin.qq.com/s?__biz=MzI1MzM3ODczNg==&mid=2247490524&idx=1&sn=f5d071778ce4f9fb881e7f9c74025088&chksm=e9d43203dea3bb15eb93ac6433175b030576d9c421b7ba5498f07d716f46b5f7a9ea0ffe0fcd&scene=132#wechat_redirect" data-time="1657497600" data-recalltype="1006" data-isreaded="0" data-bizuin="3253378736" data-mid="2247490524" data-idx="1" data-item_show_type="0" data-exptype="unsubscribed_card_0_article_relatedread_0_#1_level1" data-ext_info="{&quot;rec_info&quot;:{&quot;model_id&quot;:0}}" data-report_info="{}"> <div class="weui-media-box__bd"> <div class="ellipsis_relate_title mask_ellipsis_wrp mask_ellipsis_auto_height relate_article_default " role="link" tabindex="0" aria-labelledby="relate_article_title_2247490524_1 js_a11y_comma relate_article_nickname_2247490524_1 js_a11y_comma relate_article_num_2247490524_1"> <div aria-hidden="true" class="mask_ellipsis_text"> 每日原则:每个人都至少有一个最大的弱点阻碍其成功,找到你的这个弱点并解决它 </div> <div aria-hidden="true" class="mask_ellipsis"> <div class="mask_ellipsis_text" id="relate_article_title_2247490524_1"> 每日原则:每个人都至少有一个最大的弱点阻碍其成功,找到你的这个弱点并解决它 </div> <div class="mask_ellipsis_placeholder"></div> <div class="mask_ellipsis_extra"> ... </div> </div> </div> <div class="weui-media-box__info weui-flex"> <div class="weui-media-box__info__inner weui-flex weui-flex__item"> <div aria-hidden="true" id="relate_article_nickname_2247490524_1" class="js_profile relate_profile_nickname weui-media-box__info__meta" data-username="gh_e4651e13f3d7"> 瑞达利欧 </div> <div class="weui-media-box__info__meta" aria-hidden="true" id="relate_article_num_2247490524_1"> </div> </div> <div class="relate_article_opr"> <button type="button" class="reset_btn dislike_btn js_feedback_btn weui-wa-hotarea">不喜欢</button> </div> <!-- 去掉display:none;改用样式默认隐藏,加classnamme:feedback_dialog_show显示 --> <div class="feedback_dialog_wrp js_feedback_dialog" role="dialog" aria-modal="true" tabindex="0" aria-hidden="true"> <div class="weui-mask js_mask" role="button" aria-label="Close"></div> <!-- 底部时弹窗向上,加.feedback_dialog_pos_top --> <div class="feedback_dialog js_dialog_wrp"> <div class="feedback_dialog_hd weui-flex"> <div class="weui-flex__item feedback_dialog_title">不看的原因</div> <button type="button" class="weui-btn weui-btn_primary weui-btn_mini weui-btn_disabled js_submit">OK</button> </div> <div class="feedback_dialog_bd"> <ul class="feedback_tag_list"> <!-- 选中时tag加.feedback_tag_selected --> <li role="checkbox" aria-checked="false" class="feedback_tag_item js_reason js_tag_item" data-value="1">内容质量低</li> <li role="checkbox" aria-checked="false" class="feedback_tag_item js_reason js_tag_item" data-value="2">不看此公众号</li> </ul> </div> </div> </div> </div> </div> <div class="weui-media-box__ft"> <img class="relate_article_cover" data-relatecover="" src="https://mmbiz.qlogo.cn/mmbiz_jpg/QWVkSicmpIpk2etJJhCfgQbTPFSuoGkEBwq0VUlEFxqsPhrDicK0h7GN4uJcXnxpAWXQhWL8iaCHNWf211zMlzQpQ/0?wx_fmt=jpeg&mp_rel=1"> </div> </div> <div class="weui-media-box weui-media-box_appmsg js_related_item js_wx_tap_highlight wx_tap_cell" data-index="1" data-url="http://mp.weixin.qq.com/s?__biz=MzU3MTc1MjE4OQ==&mid=2247659425&idx=3&sn=f7baedef6f92c67c3218978655c8e82e&chksm=fcd74433cba0cd25fdf590c714bbeb9cb5025f0e8d0c29b342e3051c7c6ad6be98d20a0dab72&scene=132#wechat_redirect" data-time="1656333876" data-recalltype="1006" data-isreaded="0" data-bizuin="3571752189" data-mid="2247659425" data-idx="3" data-item_show_type="0" data-exptype="unsubscribed_card_0_article_relatedread_0_#1_level1" data-ext_info="{&quot;rec_info&quot;:{&quot;model_id&quot;:0}}" data-report_info="{}"> <div class="weui-media-box__bd"> <div class="ellipsis_relate_title mask_ellipsis_wrp mask_ellipsis_auto_height relate_article_default " role="link" tabindex="0" aria-labelledby="relate_article_title_2247659425_3 js_a11y_comma relate_article_nickname_2247659425_3 js_a11y_comma relate_article_num_2247659425_3"> <div aria-hidden="true" class="mask_ellipsis_text"> 真正靠谱的人:事不拖,话不多,人不作 </div> <div aria-hidden="true" class="mask_ellipsis"> <div class="mask_ellipsis_text" id="relate_article_title_2247659425_3"> 真正靠谱的人:事不拖,话不多,人不作 </div> <div class="mask_ellipsis_placeholder"></div> <div class="mask_ellipsis_extra"> ... </div> </div> </div> <div class="weui-media-box__info weui-flex"> <div class="weui-media-box__info__inner weui-flex weui-flex__item"> <div aria-hidden="true" id="relate_article_nickname_2247659425_3" class="js_profile relate_profile_nickname weui-media-box__info__meta" data-username="gh_253f4704ca80"> 粥左罗 </div> <div class="weui-media-box__info__meta" aria-hidden="true" id="relate_article_num_2247659425_3"> </div> </div> <div class="relate_article_opr"> <button type="button" class="reset_btn dislike_btn js_feedback_btn weui-wa-hotarea">不喜欢</button> </div> <!-- 去掉display:none;改用样式默认隐藏,加classnamme:feedback_dialog_show显示 --> <div class="feedback_dialog_wrp js_feedback_dialog" role="dialog" aria-modal="true" tabindex="0" aria-hidden="true"> <div class="weui-mask js_mask" role="button" aria-label="Close"></div> <!-- 底部时弹窗向上,加.feedback_dialog_pos_top --> <div class="feedback_dialog js_dialog_wrp"> <div class="feedback_dialog_hd weui-flex"> <div class="weui-flex__item feedback_dialog_title">不看的原因</div> <button type="button" class="weui-btn weui-btn_primary weui-btn_mini weui-btn_disabled js_submit">OK</button> </div> <div class="feedback_dialog_bd"> <ul class="feedback_tag_list"> <!-- 选中时tag加.feedback_tag_selected --> <li role="checkbox" aria-checked="false" class="feedback_tag_item js_reason js_tag_item" data-value="1">内容质量低</li> <li role="checkbox" aria-checked="false" class="feedback_tag_item js_reason js_tag_item" data-value="2">不看此公众号</li> </ul> </div> </div> </div> </div> </div> <div class="weui-media-box__ft"> <img class="relate_article_cover" data-relatecover="" src="https://mmbiz.qlogo.cn/mmbiz_jpg/qicHLaUZniblN5W5QLibkYrEvB7t5ZkH40UxQgh83ic73CL1ulFCLw6Z24E4VzicS53dwqicuS92UDIl0Vv0oYc2aolQ/0?wx_fmt=jpeg&mp_rel=1"> </div> </div> <div class="weui-media-box weui-media-box_appmsg js_related_item js_wx_tap_highlight wx_tap_cell" data-index="2" data-url="http://mp.weixin.qq.com/s?__biz=MzUyODg1ODYzMQ==&mid=2247569721&idx=1&sn=f8cb144cc125bbee65307cf6ab0ad9e6&chksm=fa6a7a51cd1df347cde55f9b0acad0031be5a36a25a10a463785b8fea0af56b6c49fbcde0362&scene=132#wechat_redirect" data-time="1656373500" data-recalltype="1006" data-isreaded="0" data-bizuin="3528858631" data-mid="2247569721" data-idx="1" data-item_show_type="0" data-exptype="unsubscribed_card_0_article_relatedread_0_#1_level1" data-ext_info="{&quot;rec_info&quot;:{&quot;model_id&quot;:0}}" data-report_info="{}"> <div class="weui-media-box__bd"> <div class="ellipsis_relate_title mask_ellipsis_wrp mask_ellipsis_auto_height relate_article_default " role="link" tabindex="0" aria-labelledby="relate_article_title_2247569721_1 js_a11y_comma relate_article_nickname_2247569721_1 js_a11y_comma relate_article_num_2247569721_1"> <div aria-hidden="true" class="mask_ellipsis_text"> 人生不浪费指南 </div> <div aria-hidden="true" class="mask_ellipsis"> <div class="mask_ellipsis_text" id="relate_article_title_2247569721_1"> 人生不浪费指南 </div> <div class="mask_ellipsis_placeholder"></div> <div class="mask_ellipsis_extra"> ... </div> </div> </div> <div class="weui-media-box__info weui-flex"> <div class="weui-media-box__info__inner weui-flex weui-flex__item"> <div aria-hidden="true" id="relate_article_nickname_2247569721_1" class="js_profile relate_profile_nickname weui-media-box__info__meta" data-username="gh_7566bf852dd3"> 行研君 </div> <div class="weui-media-box__info__meta" aria-hidden="true" id="relate_article_num_2247569721_1"> </div> </div> <div class="relate_article_opr"> <button type="button" class="reset_btn dislike_btn js_feedback_btn weui-wa-hotarea">不喜欢</button> </div> <!-- 去掉display:none;改用样式默认隐藏,加classnamme:feedback_dialog_show显示 --> <div class="feedback_dialog_wrp js_feedback_dialog" role="dialog" aria-modal="true" tabindex="0" aria-hidden="true"> <div class="weui-mask js_mask" role="button" aria-label="Close"></div> <!-- 底部时弹窗向上,加.feedback_dialog_pos_top --> <div class="feedback_dialog js_dialog_wrp"> <div class="feedback_dialog_hd weui-flex"> <div class="weui-flex__item feedback_dialog_title">不看的原因</div> <button type="button" class="weui-btn weui-btn_primary weui-btn_mini weui-btn_disabled js_submit">OK</button> </div> <div class="feedback_dialog_bd"> <ul class="feedback_tag_list"> <!-- 选中时tag加.feedback_tag_selected --> <li role="checkbox" aria-checked="false" class="feedback_tag_item js_reason js_tag_item" data-value="1">内容质量低</li> <li role="checkbox" aria-checked="false" class="feedback_tag_item js_reason js_tag_item" data-value="2">不看此公众号</li> </ul> </div> </div> </div> </div> </div> <div class="weui-media-box__ft"> <img class="relate_article_cover" data-relatecover="" src="https://mmbiz.qlogo.cn/mmbiz_jpg/twBMGU6UCV0ZZic6dLqqUZQbibDYFgMpibibhUCXl0MIWB7iaeic3CRCqjCxB1lxL7EPX5m2Ith9kRbWBiau5icciaVcWQw/0?wx_fmt=jpeg&mp_rel=1"> </div> </div> </div> </div> </div> </div></div>
<div id="page_bottom_area"><div class="mpda_bottom_container"><!----></div><div class="rich_media_extra rich_media_extra_discuss" style="display: none;"><div role="dialog" aria-modal="true" tabindex="0" aria-hidden="true" style="display: none;"><div class="discuss_form_write_area"><div class="discuss_form_write_mod"><div class="rich_media_extra_title_wrp weui-flex"><div class="weui-flex__item"><strong class="rich_media_extra_title js_wx_tap_highlight wx_tap_link">Comment</strong></div><a role="button" class="weui-wa-hotarea js_wx_tap_highlight wx_tap_link">Cancel</a></div><textarea placeholder="After being approved, comments along with IP regions are visible to everyone." class="discuss_form_write_input"></textarea><textarea aria-hidden="true" placeholder="After being approved, comments along with IP regions are visible to everyone." readonly="readonly" class="discuss_form_write_input" style="display: none;"></textarea><div><div class="discuss_form_write_tool weui-flex"><div class="weui-flex__item"><span class="discuss_form_write_tips"></span></div><a role="button" aria-label="表情" title="轻点两下打开表情键盘" class="icon_discuss_emotion"></a><button disabled="disabled" title="不可点击" type="button" class="weui-btn weui-btn_primary weui-btn_xmini weui-wa-hotarea discuss_form_write_btn weui-btn_disabled">Comment</button></div></div></div></div><div class="weui-mask_transparent" style="display: none;"></div></div><!----><div id="js_cmt_area" class="discuss_mod discuss_special" style="display: none;"><div class="discuss_container my_discuss_container" style="display: none;"><div class="rich_media_extra_title_wrp weui-flex"><div class="weui-flex__item"><strong class="rich_media_extra_title">My Comments</strong></div><p class="tips_global" style="display: none;"></p><a role="button" href="javascript:;" class="weui-wa-hotarea js_wx_tap_highlight wx_tap_link" style="display: none;">Comment</a></div><div class="discuss_list_wrp"><div><ul class="discuss_list"></ul></div></div><div role="alert" class="weui-loadmore weui-loadmore_default" style="display: none;"><i class="weui-loading"></i><span class="weui-loadmore__tips">Loading...</span></div><div class="weui-fold-tips weui-wa-hotarea_before" style="display: none;">Show My Comments</div> <div class="my_dicuss_list_end_tips weui-loadmore weui-loadmore_default weui-loadmore_line"><span class="weui-loadmore__tips"> 留言被精选后将公开 </span></div></div><div class="discuss_container star_discuss_container" style="display: none;"><div class="rich_media_extra_title_wrp weui-flex"><div class="weui-flex__item"><strong class="rich_media_extra_title">Top Comments</strong></div><p class="tips_global" style="display: none;"></p><a href="javascript:;" role="button" class="weui-wa-hotarea js_wx_tap_highlight wx_tap_link" style="display: none;">Comment</a></div><div class="discuss_list_wrp"><div><ul class="discuss_list"></ul></div></div></div><div class="discuss_container discuss_data_empty" style="display: none;"><div class="rich_media_extra_title_wrp tc"><div class="tips_global" style="display: none;"></div><a href="javascript:;" role="button" class="weui-wa-hotarea js_wx_tap_highlight wx_tap_link" style="display: none;">Comment</a></div></div><div role="option" class="discuss_container" style="display: none;"><div class="weui-loadmore weui-loadmore_default"><span class="weui-primary-loading"><i class="weui-primary-loading__dot"></i></span><span class="weui-loadmore__tips">Loading...</span></div></div><div role="option" class="weui-loadmore weui-loadmore_default weui-loadmore_line weui-loadmore_dot" style="display: none;"><div class="weui-hidden_abs">已无更多数据</div><span class="weui-loadmore__tips"></span></div><div role="alert" class="discuss_warn_toast weui-toast__wrp" style="display: none;"><div class="weui-mask_transparent"></div><div class="weui-toast weui-toast_text-more"><i class="weui-icon-warn weui-icon_toast"></i><p class="weui-toast__content js_content"> </p></div></div></div><div id="js_msg_area" class="discuss_mod discuss_special" style="display: none;"><div class="discuss_container discuss_data_empty" style="display: none;"><div class="rich_media_extra_title_wrp tc"><div class="tips_global" style="display: none;"></div><a href="javascript:;" role="button" class="weui-wa-hotarea js_wx_tap_highlight wx_tap_link" style="display: none;">Send Message</a></div></div></div><div role="dialog" aria-modal="true" aria-hidden="true" tabindex="0" class="discuss_write_dialog_wrp wx_bottom_modal_wrp"><div class="weui-half-screen-dialog wx_bottom_modal" style="max-height: none;"><div class="weui-half-screen-dialog__hd__wrp"><div class="weui-half-screen-dialog__hd"><div class="weui-half-screen-dialog__hd__side"><button class="weui-btn_icon weui-wa-hotarea">Close<i class="weui-icon-half-screen-close"></i></button></div><div class="weui-half-screen-dialog__hd__main"><strong class="weui-half-screen-dialog__title">Comment</strong></div><div class="weui-half-screen-dialog__hd__side"><button class="weui-btn_disabled weui-btn weui-btn_primary weui-btn_mini">Submit</button><button class="weui-btn_icon weui-wa-hotarea" style="display: none;">更多<i class="weui-icon-more"></i></button></div></div></div><div class="weui-half-screen-dialog__bd"><div class="weui-loadmore" style="display: none;"><i class="weui-loading"></i><span class="weui-loadmore__tips">Loading...</span></div><div class="wx_bottom_modal_msg_wrp" style="display: none;"><div class="wx_bottom_modal_msg"><i class="weui-loading"></i></div></div><div class="weui-loadmore weui-loadmore_line weui-loadmore_dot" style="display: none;"><span class="weui-loadmore__tips"></span></div><div class="comment_reply_context_wrp"><div class="comment_reply_context"><!----><textarea placeholder="Comments are visible to everyone after being approved by the Official Account" class="weui-textarea comment_textarea"></textarea><textarea aria-hidden="true" placeholder="Comments are visible to everyone after being approved by the Official Account" readonly="readonly" class="weui-textarea comment_textarea" style="flex: 1 1 0%; display: none;"></textarea><div class="discuss_toolbar"><a role="button" href="javascript:;" class="icon_discuss_emotion">表情</a><span class="comment_write_counter"></span></div></div></div><div class="weui-loadmore" style="display: none;"><i class="weui-loading"></i><span class="weui-loadmore__tips">Loading...</span></div></div><!----></div><div class="wx_bottom_modal_mask_fixed"></div><div class="weui-mask wx_bottom_modal_mask" style="opacity: 1;"></div></div><div class="discuss_more_pc_dialog_wrp" style="display: none;"><div class="discuss_more_pc_dialog"><div class="discuss_more_pc_dialog_hd"><strong class="discuss_more_pc_dialog_title">Comment</strong><button class="discuss_more_pc_dialog_close_btn reset_btn"><i class="weui-icon-close"></i></button></div><div class="discuss_more_pc_dialog_bd"><!----></div></div><div class="weui-mask"></div></div></div></div>
</div>
</div>
<div id="js_pc_qr_code" class="qr_code_pc_outer" style="display: block;">
<div class="qr_code_pc_inner">
<div class="qr_code_pc">
<img id="js_pc_qr_code_img" class="qr_code_pc_img" src="/mp/qrcode?scene=10000004&size=102&__biz=MzA5NzAzMjIxMw==&mid=2650975219&idx=1&sn=e401686fdb5310f3bf01c81a6c88dca0&send_time=">
<p>Scan to Follow</p>
</div>
</div>
</div>
</div>
</div>
<div class="comment_primary_emotion_panel_wrp" id="js_emotion_panel_pc" style="display: none">
<div class="comment_primary_emotion_panel">
<ul class="comment_primary_emotion_list_pc" id="js_emotion_list_pc">
</ul>
</div>
</div>
<div class="weui-dialog__wrp" id="js_alert_panel" style="display:none;">
<div class="weui-mask"></div>
<div class="weui-dialog">
<div class="weui-dialog__bd" id="js_alert_content"></div>
<div class="weui-dialog__ft">
<a href="javascript:;" class="weui-dialog__btn weui-dialog__btn_default" id="js_alert_confirm">Got It</a>
</div>
</div>
</div>
<script type="text/javascript" nonce="" reportloaderror="">
window.img_popup = 1; // 全量小程序弹窗
</script>
<div id="js_pc_weapp_code" class="weui-desktop-popover weui-desktop-popover_pos-up-center weui-desktop-popover_img-text" style="display: none;">
<div class="weui-desktop-popover__content">
<div class="weui-desktop-popover__desc">
<img id="js_pc_weapp_code_img">
Scan with Weixin to <br>use this Mini Program<span id="js_pc_weapp_code_des"></span>
</div>
</div>
</div>
<div id="js_minipro_dialog" role="dialog" aria-modal="true" tabindex="0" aria-labelledby="js_minipro_dialog_head" style="display:none;">
<div class="weui-mask"></div>
<div class="weui-dialog weui-dialog_link">
<div class="weui-dialog__hd">
<strong class="weui-dialog__title" id="js_minipro_dialog_head" tabindex="0"></strong>
</div>
<div class="weui-dialog__bd" id="js_minipro_dialog_body"></div>
<div class="weui-dialog__ft">
<a role="button" id="js_minipro_dialog_cancel" href="javascript:void(0);" class="weui-dialog__btn weui-dialog__btn_default">Cancel</a>
<a role="button" id="js_minipro_dialog_ok" href="javascript:void(0);" class="weui-dialog__btn weui-dialog__btn_primary">Allow</a>
</div>
</div>
</div>
<div id="js_link_dialog" role="dialog" aria-modal="true" tabindex="0" aria-labelledby="js_link_dialog_body" style="display:none;">
<div class="weui-mask"></div>
<div class="weui-dialog weui-dialog_link">
<div class="weui-dialog__hd">
<strong class="weui-dialog__title" id="js_link_dialog_head" tabindex="0"></strong>
</div>
<div class="weui-dialog__bd" id="js_link_dialog_body" tabindex="0"></div>
<div class="weui-dialog__ft">
<a role="button" id="js_link_dialog_cancel" href="javascript:void(0);" class="weui-dialog__btn weui-dialog__btn_default">Cancel</a>
<a role="button" id="js_link_dialog_ok" href="javascript:void(0);" class="weui-dialog__btn weui-dialog__btn_primary">Allow</a>
</div>
</div>
</div>
<script type="text/javascript" nonce="" reportloaderror="">
window.logs.pagetime.page_begin = Date.now();
// // 广告iframe预加载
try {
var adIframeUrl = localStorage.getItem('__WXLS_ad_iframe_url');
if (window === top) {
if (adIframeUrl) {
if (navigator.userAgent.indexOf('iPhone') > -1) {
var img = new Image();
img.src = adIframeUrl;
} else {
var link = document.createElement('link');
link.rel = 'prefetch';
link.href = adIframeUrl;
document.getElementsByTagName('head')[0].appendChild(link);
}
}
}
} catch (err) {
}
</script>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_colon">: </span>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_comma">,</span>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_period">.</span>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_space"> </span>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_type_video">Video</span>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_type_weapp">Mini Program</span>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_zan_btn_txt">Like</span>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_zan_btn_tips">,轻点两下取消赞</span>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_like_btn_txt">Wow</span>
<span aria-hidden="true" class="weui-a11y_ref" style="display:none" id="js_a11y_like_btn_tips">,轻点两下取消在看</span>
<script type="text/javascript" nonce="" reportloaderror="">
(function () {
var totalCount = 0,
finishCount = 0;
function _addVConsole(uri, cb) {
totalCount++;
var node = document.createElement('SCRIPT');
node.type = 'text/javascript';
node.src = uri;
node.setAttribute('nonce', '1913439569');
if (cb) {
node.onload = cb;
}
document.getElementsByTagName('head')[0].appendChild(node);
}
if (
(document.cookie && document.cookie.indexOf('vconsole_open=1') > -1)
|| location.href.indexOf('vconsole=1') > -1
) {
_addVConsole('https://mp.weixin.qq.com/mmbizappmsg/zh_CN/htmledition/js/scripts/vconsole-3.14.6.js', function () {
var vConsole = new window.VConsole();
});
}
})();
</script>
<script type="text/javascript" nonce="" reportloaderror="">var __INLINE_SCRIPT__=function(){"use strict";var e=function(e,n){if(e.indexOf("——")>-1){e=e.replace(/——/g,'<span style="letter-spacing:normal">——</span>')}n&&(n.innerHTML=e)};if(!window.__second_open__){e("牛逼的人都有破局思维",document.getElementById("activity-name")),window.__setTitle=e}return e}();</script><script type="text/javascript" nonce="" reportloaderror="">var __INLINE_SCRIPT__=function(){"use strict";var e=function(e,t,n,i){var _=new Date(1e3*(1*t)),o=function(e){return"0".concat(e).slice(-2)},r=_.getFullYear()+"-"+o(_.getMonth()+1)+"-"+o(_.getDate())+" "+o(_.getHours())+":"+o(_.getMinutes());i&&(i.innerText=r)};if(!window.__second_open__){e(0,"1659195002",0,document.getElementById("publish_time")),window.__setPubTime=e}return e}();</script>
<script type="text/javascript" nonce="" reportloaderror="">
//兼容 IE
if (!window.console) window.console = { log: function() {} };
// 图片占位 @ekili
if (typeof getComputedStyle == 'undefined') {
if (document.body.currentStyle) {
window.getComputedStyle = function(el) {
return el.currentStyle;
}
} else {
window.getComputedStyle = {};
}
}
// 图片和视频预加载逻辑,记得H5和秒开要对齐逻辑
(function(){
window.__zoom = 1;
var ua = navigator.userAgent.toLowerCase();
var re = new RegExp("msie ([0-9]+[\.0-9]*)");
var version;
if (re.exec(ua) != null) {
version = parseInt(RegExp.$1);
}
var isIE = false;
if (typeof version != 'undefined' && version >= 6 && version <= 9) {
isIE = true;
}
var bodyWidth = '' * 1;
if (bodyWidth) {
var styles = getComputedStyle(document.getElementById('page-content'));
bodyWidth - parseFloat(styles.paddingLeft) - parseFloat(styles.paddingRight);
}
var getMaxWith = function () {
var container = document.getElementById('img-content');
var max_width = container.offsetWidth;
!max_width && bodyWidth && (max_width = bodyWidth);
var container_padding = 0;
var container_style = getComputedStyle(container);
container_padding = parseFloat(container_style.paddingLeft) + parseFloat(container_style.paddingRight);
max_width -= container_padding;
if (!max_width) {
max_width = window.innerWidth - 30; //防止offsetTop不可用,30为padding
}
return max_width;
};
var getParentWidth = function (dom) {
var parent_width = 0;
var parent = dom.parentNode;
var outerWidth = 0;
while (true) {
if (!parent || parent.nodeType != 1) break;
var parent_style = getComputedStyle(parent);
if (!parent_style) break;
parent_width = parent.clientWidth - parseFloat(parent_style.paddingLeft) - parseFloat(parent_style.paddingRight) - outerWidth;
if (parent_width > 0) break;
outerWidth += parseFloat(parent_style.paddingLeft) + parseFloat(parent_style.paddingRight) + parseFloat(parent_style.marginLeft) + parseFloat(parent_style.marginRight) + parseFloat(parent_style.borderLeftWidth) + parseFloat(parent_style.borderRightWidth);
parent = parent.parentNode;
}
return parent_width;
}
var getOuterW = function (dom) {
var style = getComputedStyle(dom),
w = 0;
if (!!style) {
w = parseFloat(style.paddingLeft) + parseFloat(style.paddingRight) + parseFloat(style.borderLeftWidth) + parseFloat(style.borderRightWidth);
}
return w;
};
var getOuterH = function (dom) {
var style = getComputedStyle(dom),
h = 0;
if (!!style) {
h = parseFloat(style.paddingTop) + parseFloat(style.paddingBottom) + parseFloat(style.borderTopWidth) + parseFloat(style.borderBottomWidth);
}
return h;
};
var insertAfter = function (dom, afterDom) {
var _p = afterDom.parentNode;
if (!_p) {
return;
}
if (_p.lastChild === afterDom) {
_p.appendChild(dom);
} else {
_p.insertBefore(dom, afterDom.nextSibling);
}
};
var getQuery = function (name, url) {
//参数:变量名,url为空则表从当前页面的url中取
var u = arguments[1] || window.location.search,
reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"),
r = u.substr(u.indexOf("\?") + 1).match(reg);
return r != null ? r[2] : "";
};
/**
* 设置图片size
*
* @param {HTMLElement} item 图片元素
* @param {number} widthNum 宽度数值
* @param {string} widthUnit 宽度单位
* @param {number} ratio 宽高比
* @param {boolean} breakParentWidth 是否突破父元素宽度(父元素是否被撑大)
*/
function setImgSize(item, widthNum, widthUnit, ratio, breakParentWidth) {
setTimeout(function () {
var img_padding_border = getOuterW(item) || 0;
var img_padding_border_top_bottom = getOuterH(item) || 0;
var isAccessibilityKey = 'isMpUserAccessibility';
var isAccessMode = window.localStorage.getItem(isAccessibilityKey);
// 如果设置的宽度超过了父元素最大宽度,则取父元素宽度
if (widthNum > getParentWidth(item) && !breakParentWidth) {
widthNum = getParentWidth(item);
}
height = (widthNum - img_padding_border) * ratio + img_padding_border_top_bottom;
if (isIE || '0' === '1' || '' === '1' || isAccessMode === '1') { // 判一下是不是漫画原创,如果是,不走懒加载
var url = item.getAttribute('data-src');
item.src = url;
// 不走懒加载但是需要跟懒加载一样去除占位高度
item.style.height = 'auto';
} else {
if (parseFloat(widthNum, 10) > 40 && height > 40 && breakParentWidth) {
item.className += ' img_loading';
}
item.src = "data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGBgAAAABQABh6FO1AAAAABJRU5ErkJggg==";
widthNum !== 'auto' && (item.style.cssText += ";width: " + widthNum + widthUnit + " !important;");
widthNum !== 'auto' && (item.style.cssText += ";height: " + height + widthUnit + " !important;");
}
}, 10);
}
// 图片和视频预加载逻辑,记得H5和秒开要对齐逻辑
(function () {
var images = document.getElementsByTagName('img');
var length = images.length;
var max_width = getMaxWith();
for (var i = 0; i < length; ++i) {
if (window.__second_open__ && images[i].getAttribute('__sec_open_place_holder__')) {
continue;
}
var imageItem = images[i];
var src_ = imageItem.getAttribute('data-src');
var realSrc = imageItem.getAttribute('src');
if (!src_ || realSrc) continue;
// 图片原始宽度
var originWidth = imageItem.getAttribute('data-w');
var ratio_ = 1 * imageItem.getAttribute('data-ratio');
var height = 100;
if (ratio_ && ratio_ > 0) {
var parent_width = getParentWidth(imageItem) || max_width;
var initWidth = imageItem.style.width || imageItem.getAttribute('width') || originWidth || parent_width;
initWidth = parseFloat(initWidth, 10) > max_width ? max_width : initWidth;
// 有attribute或style中的width,写入_width属性,在图片加载完成时写入img标签
if (initWidth) {
imageItem.setAttribute('_width', !isNaN(initWidth * 1) ? initWidth + 'px' : initWidth);
}
// 使用百分比,则计算出像素宽度
if (typeof initWidth === 'string' && initWidth.indexOf('%') !== -1) {
initWidth = parseFloat(initWidth.replace('%', ''), 10) / 100 * parent_width;
}
// 使用auto,就是原始宽度
if (initWidth === 'auto') {
initWidth = originWidth;
}
var widthNum;
var widthUnit;
if (initWidth === 'auto') {
widthNum = 'auto';
} else {
var res = /^(\d+(?:\.\d+)?)([a-zA-Z%]+)?$/.exec(initWidth);
widthNum = res && res.length >= 2 ? res[1] : 0;
widthUnit = res && res.length >= 3 && res[2] ? res[2] : 'px';
}
// 试探一下parent宽度在设置了图片的大小之后是否会变化
setImgSize(imageItem, widthNum, widthUnit, ratio_, true);
// 真正设置宽高
(function (item, widthNumber, unit, ratio) {
setTimeout(function () {
setImgSize(item, widthNumber, unit, ratio, false);
});
})(imageItem, widthNum, widthUnit, ratio_);
} else {
imageItem.style.cssText += ";visibility: hidden !important;";
}
}
})();
window.__videoDefaultRatio = 16 / 9;//默认值是16/9
window.__getVideoWh = function (dom) {
var max_width = getMaxWith(),
width = max_width,
ratio_ = dom.getAttribute('data-ratio') * 1,//mark16/9
arr = [4 / 3, 16 / 9],
ret = arr[0],
abs = Math.abs(ret - ratio_);
if (!ratio_) { // 没有比例
if (dom.getAttribute("data-mpvid")) { // MP视频
ratio_ = 16 / 9;
} else { // 非MP视频,需要兼容历史图文
ratio_ = 4 / 3;
}
} else { // 有比例,则判断更接近4/3还是更接近16/9
for (var j = 1, jl = arr.length; j < jl; j++) {
var _abs = Math.abs(arr[j] - ratio_);
if (_abs < abs) {
abs = _abs;
ret = arr[j];
}
}
ratio_ = ret;
}
var parent_width = getParentWidth(dom) || max_width,
width = width > parent_width ? parent_width : width,
outerW = getOuterW(dom) || 0,
outerH = getOuterH(dom) || 0,
videoW = width - outerW,
videoH = videoW / ratio_,
speedDotH = 12, // 播放器新样式的进度条在最下面,为了避免遮住拖动的点点,需要额外设置高一些
height = videoH + outerH + speedDotH;
return { w: Math.ceil(width), h: Math.ceil(height), vh: videoH, vw: videoW, ratio: ratio_, sdh: speedDotH };
};
// 图片和视频预加载逻辑,记得H5和秒开要对齐逻辑
(function () {
var iframe = document.getElementsByTagName('iframe');
for (var i = 0, il = iframe.length; i < il; i++) {
if (window.__second_open__ && iframe[i].getAttribute('__sec_open_place_holder__')) {
continue;
}
var a = iframe[i];
var src_ = a.getAttribute('src') || a.getAttribute('data-src') || "";
/* if (!/^http(s)*\:\/\/v\.qq\.com\/iframe\/(preview|player)\.html\?/.test(src_)
&& !/^http(s)*\:\/\/mp\.weixin\.qq\.com\/mp\/readtemplate\?t=pages\/video_player_tmpl/.test(src_)
) {
continue;
} */
var vid = getQuery("vid", src_) || a.getAttribute('data-mpvid');
if (!vid) {
continue;
}
vid = vid.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");//清除前后空格
a.removeAttribute('src');
a.style.display = "none";
var obj = window.__getVideoWh(a),
videoPlaceHolderSpan = document.createElement('span'),
videoPlayerIconSpan = document.createElement('span'),
mydiv = document.createElement('img');
videoPlaceHolderSpan.className = "js_img_loading db";
videoPlaceHolderSpan.setAttribute("data-vid", vid);
// videoPlaceHolderSpan.style.display = 'block';
videoPlayerIconSpan.className = 'wx_video_context db'; // 预加载的视频封面图占位
videoPlayerIconSpan.style.display = 'none';
videoPlayerIconSpan.innerHTML = '<span class="wx_video_thumb_primary"></span><button class="wx_video_play_btn">Play</button><span class="wx_video_mask"></span>'; // 曝光后设置这里img的src
mydiv.className = "img_loading";
mydiv.src = "data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGBgAAAABQABh6FO1AAAAABJRU5ErkJggg==";
// mydiv.style.cssText += ';height:100%;width:100%;';
// mydiv.setAttribute("data-vid",vid);
videoPlaceHolderSpan.style.cssText = "width: " + obj.w + "px !important;";
mydiv.style.cssText += ";width: " + obj.w + "px";
videoPlaceHolderSpan.appendChild(videoPlayerIconSpan);
videoPlaceHolderSpan.appendChild(mydiv);
insertAfter(videoPlaceHolderSpan, a); // 在视频后面插入占位
/* var parentNode = a.parentNode;
var copyIframe = a;
var index = i; */
// 由于视频需要加一个转载的来源,所以这里需要提前设置高度
function ajax(obj) {
var url = obj.url;
var xhr = new XMLHttpRequest();
var data = null;
if (typeof obj.data == "object") {
var d = obj.data;
data = [];
for (var k in d) {
if (d.hasOwnProperty(k)) {
data.push(k + "=" + encodeURIComponent(d[k]));
}
}
data = data.join("&");
} else {
data = typeof obj.data == 'string' ? obj.data : null;
}
xhr.open('POST', url, true);
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status >= 200 && xhr.status < 400) {
obj.success && obj.success(xhr.responseText);
} else {
obj.error && obj.error(xhr);
}
obj.complete && obj.complete();
obj.complete = null;
}
};
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
xhr.send(data);
}
var mid = "" || "" || "2650975219";
var biz = "" || "MzA5NzAzMjIxMw==";
var sessionid = "" || "svr_26dd8bc9d0c";
var idx = "";
(function sendReq(parentNode, copyIframe, index, vid) {
ajax({
url: '/mp/videoplayer?vid=' + vid + '&mid=' + mid + '&idx=1&__biz=' + biz + '&sessionid=' + sessionid + '&f=json',
type: "GET",
dataType: 'json',
success: function (json) {
var ret = JSON.parse(json || '{}');
var ori = ret.ori_status;
var hit_biz_headimg = ret.hit_biz_headimg + '/64';
var hit_nickname = ret.hit_nickname;
var hit_username = ret.hit_username;
var sourceBiz = ret.source_encode_biz;
var selfUserName = "gh_82a2e55f24ab";
if (ori === 2 && selfUserName !== hit_username) {
var videoBar = document.createElement('div');
var videoBarHtml = '<div class="wx-edui-video_source_link js_wx_tap_highlight wx_tap_card" id="' + (hit_username + index) + '" data-hit-username="' + hit_username + '" data-hit-biz="' + sourceBiz + '">';
videoBarHtml += '<div class="wx-edui-video_source_word">以下视频来源于</div>';
videoBarHtml += '<div class="wx-edui-video_account_info">';
videoBarHtml += '<div class="wx-edui-video_account_avatar" id="' + (hit_biz_headimg + index) + '" data-src="' + hit_biz_headimg + '"></div>';
videoBarHtml += '<div class="wx-edui-video_account_name">' + hit_nickname + '</div>';
videoBarHtml += '<i class="wx-edui-video_account_arrow"></i>';
videoBarHtml += '</div>';
videoBarHtml += '<div class="wx-edui-video_source_link__layer_mask"></div>';
videoBarHtml += '</div>';
videoBar.innerHTML = videoBarHtml;
var spanContainer = document.getElementById('js_mp_video_container_' + index);
if (spanContainer) {
spanContainer.parentNode.insertBefore(videoBar, spanContainer);
} else if (parentNode.contains && parentNode.contains(copyIframe)) {
parentNode.insertBefore(videoBar, copyIframe);
} else {
parentNode.insertBefore(videoBar, parentNode.firstElementChild);
}
var avatorEle = document.getElementById(hit_biz_headimg + index);
var avatorSrc = avatorEle.dataset.src;
console.log('avatorSrc' + avatorSrc);
if (ret.hit_biz_headimg) {
avatorEle.style.backgroundImage = 'url(' + avatorSrc + ')';
}
}
},
error: function (xhr) {
}
});
})(a.parentNode, a, i, vid);
a.style.cssText += ";width: " + obj.w + "px !important;";
a.setAttribute("width", obj.w);
if (window.__zoom != 1) {
a.style.display = "block";
videoPlaceHolderSpan.style.display = "none";
a.setAttribute("_ratio", obj.ratio);
a.setAttribute("_vid", vid);
} else {
videoPlaceHolderSpan.style.cssText += "height: " + (obj.h - obj.sdh) + "px !important;margin-bottom: " + obj.sdh + "px !important;";
mydiv.style.cssText += "height: " + (obj.h - obj.sdh) + "px !important;";
a.style.cssText += "height: " + obj.h + "px !important;";
a.setAttribute("height", obj.h);
}
a.setAttribute("data-vh", obj.vh);
a.setAttribute("data-vw", obj.vw);
if (a.getAttribute("data-mpvid")) {
a.setAttribute("data-src", location.protocol + "//mp.weixin.qq.com/mp/readtemplate?t=pages/video_player_tmpl&auto=0&vid=" + vid);
} else {
a.setAttribute("data-src", location.protocol + "//v.qq.com/iframe/player.html?vid=" + vid + "&width=" + obj.vw + "&height=" + obj.vh + "&auto=0");
}
}
})();
(function () {
if (window.__zoom != 1) {
if (!window.__second_open__) {
document.getElementById('page-content').style.zoom = window.__zoom;
var a = document.getElementById('activity-name');
var b = document.getElementById('meta_content');
if (!!a) {
a.style.zoom = 1 / window.__zoom;
}
if (!!b) {
b.style.zoom = 1 / window.__zoom;
}
}
var images = document.getElementsByTagName('img');
for (var i = 0, il = images.length; i < il; i++) {
if (window.__second_open__ && images[i].getAttribute('__sec_open_place_holder__')) {
continue;
}
images[i].style.zoom = 1 / window.__zoom;
}
var iframe = document.getElementsByTagName('iframe');
for (var i = 0, il = iframe.length; i < il; i++) {
if (window.__second_open__ && iframe[i].getAttribute('__sec_open_place_holder__')) {
continue;
}
var a = iframe[i];
a.style.zoom = 1 / window.__zoom;
var src_ = a.getAttribute('data-src') || "";
if (!/^http(s)*\:\/\/v\.qq\.com\/iframe\/(preview|player)\.html\?/.test(src_)
&& !/^http(s)*\:\/\/mp\.weixin\.qq\.com\/mp\/readtemplate\?t=pages\/video_player_tmpl/.test(src_)
) {
continue;
}
var ratio = a.getAttribute("_ratio");
var vid = a.getAttribute("_vid");
a.removeAttribute("_ratio");
a.removeAttribute("_vid");
var vw = a.offsetWidth - (getOuterW(a) || 0);
var vh = vw / ratio;
var h = vh + (getOuterH(a) || 0)
a.style.cssText += "height: " + h + "px !important;"
a.setAttribute("height", h);
if (/^http(s)*\:\/\/v\.qq\.com\/iframe\/(preview|player)\.html\?/.test(src_)) {
a.setAttribute("data-src", location.protocol + "//v.qq.com/iframe/player.html?vid=" + vid + "&width=" + vw + "&height=" + vh + "&auto=0");
}
a.style.display = "none";
var parent = a.parentNode;
if (!parent) {
continue;
}
for (var j = 0, jl = parent.children.length; j < jl; j++) {
var child = parent.children[j];
if (child.className.indexOf("img_loading") >= 0 && child.getAttribute("data-vid") == vid) {
child.style.cssText += "height: " + h + "px !important;";
child.style.display = "";
}
}
}
}
})();
})();
</script><script type="text/javascript" nonce="" reportloaderror="">!function(){"use strict";var t={defaultContentTpl:'<span class="js_img_loading db" style="width:#width#px !important;height:#height#px !important;text-indent: 0"><img style="width:#width#px !important;height:#height#px !important;border-radius:#borderRadius#px;" class="img_loading" src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGBgAAAABQABh6FO1AAAAABJRU5ErkJggg=="></span>',config:[{querySelector:"redpacketcover",genId:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return decodeURIComponent(t.node.getAttribute("data-coveruri")||"")},calW:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return.7854*t.parentWidth},calH:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return this.calW({parentWidth:t.parentWidth})/.73346+27+37},replaceContentCssText:"",appendContentCssText:"display: inline-block;position: relative;",outerContainerLeft:'<section style="display:block;font-size:0;text-align:center;margin:16px 0;">',outerContainerRight:"</section>"},{querySelector:"qqmusic",genId:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(t.node.getAttribute("musicid")||"").replace(/^\s/,"").replace(/\s$/,"")+"_"+t.index},calW:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 1*t.parentWidth},calH:function(){return 88},replaceContentCssText:"",appendContentCssText:"margin:16px 0;diplay:block;",outerContainerLeft:"",outerContainerRight:""},{querySelector:"mpvoice",genId:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=decodeURIComponent(t.node.getAttribute("voice_encode_fileid")||"").replace(/^\s/,"").replace(/\s$/,"");return e+"_"+t.index},calW:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 1*t.parentWidth},calH:function(){return 122},replaceContentCssText:"",appendContentCssText:"margin:16px 0;diplay:block;",outerContainerLeft:"",outerContainerRight:""},{querySelector:"mppoi",genId:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return t.node.getAttribute("data-id")||""},calW:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 1*t.parentWidth},calH:function(){return 219},replaceContentCssText:"",appendContentCssText:"margin:16px 0;diplay:block;",outerContainerLeft:"",outerContainerRight:""},{querySelector:"mpsearch",genId:function(){return decodeURIComponent("mpsearch")},calW:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 1*t.parentWidth},calH:function(){return 100},replaceContentCssText:"",appendContentCssText:"margin:16px 0;diplay:block;",outerContainerLeft:"",outerContainerRight:""},{querySelector:"mpvideosnap",genId:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.node.getAttribute("data-type")||"video";return"live"===e?decodeURIComponent(t.node.getAttribute("data-noticeid")||""):decodeURIComponent(t.node.getAttribute("data-id")||"")},calW:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.node.getAttribute("data-type")||"video",n=t.node.getAttribute("data-width")||"",r=t.node.getAttribute("data-height")||"";if("live"===e||"topic"===e)return t.parentWidth;var i=1,o=0,a=0,d=!1;return 1===(i=n/r)||i===3/4||(i===4/3||i===16/9?d=!0:i<3/4?i=3/4:i>1&&i<4/3?i=1:i>4/3?d=!0:("number"!=typeof i||Object.is(i,NaN))&&(i=1)),t.node.setAttribute("data-ratio",i),t.node.setAttribute("data-isHorizontal",d),o=(a=!0===d?t.parentWidth:window.innerWidth<1024?.65*window.innerWidth:.65*t.parentWidth)/i,t.node.setAttribute("data-computedWidth",a),t.node.setAttribute("data-computedHeight",o),a},calH:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.node.getAttribute("data-desc")||"",n=t.node.getAttribute("data-type")||"video",r=t.node.getAttribute("data-computedHeight")||"";switch(n){case"live":return e?152:116;case"topic":return 201;case"image":case"video":return parseFloat(r)}},getBorderRadius:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.node.getAttribute("data-type")||"video";return"video"===e?4:8},replaceContentCssText:"",appendContentCssText:"margin:16px auto;diplay:block;",outerContainerLeft:"",outerContainerRight:""},{querySelector:"mp-wxaproduct",genId:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return decodeURIComponent(t.node.getAttribute("data-wxaproduct-productid")||"")},calW:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 1*t.parentWidth},calH:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.node.getAttribute("data-wxaproduct-cardtype")||"";return"mini"===e?124:466},replaceContentCssText:"",appendContentCssText:"margin:16px 0;diplay:block;",outerContainerLeft:"",outerContainerRight:""},{querySelector:"mpprofile",genId:function(t){return t.node.getAttribute("data-id")||""},calW:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 1*t.parentWidth},calH:function(){return 143},replaceContentCssText:"",appendContentCssText:"margin:16px 0 16px;diplay:block;",outerContainerLeft:"",outerContainerRight:""},{querySelector:"mp-common-profile",genId:function(t){return t.node.getAttribute("data-id")||""},calW:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return 1*t.parentWidth},calH:function(){return 143},replaceContentCssText:"",appendContentCssText:"margin:16px 0 16px;diplay:block;",outerContainerLeft:"",outerContainerRight:""}]};!function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if("function"==typeof document.querySelectorAll)for(var e={maxWith:document.getElementById("img-content").getBoundingClientRect().width,idAttr:"data-preloadingid"},n=0,r=t.config.length;n<r;n++)for(var i=t.config[n],o=document.querySelectorAll(i.querySelector),a=0,d=o.length;a<d;a++){var c=o[a],u=c.parentNode.getBoundingClientRect().width;if(u=Math.min(u,e.maxWith),!c.getAttribute("has-insert-preloading")){var l=i.calW({parentWidth:u,node:c}),p=i.calH({parentWidth:u,node:c}),g=i.genId({index:a,node:c}),s="function"==typeof i.getBorderRadius?i.getBorderRadius({index:a,node:c}):8,h=t.defaultContentTpl.replace(/#height#/g,p).replace(/#width#/g,l).replace(/#borderRadius#/g,s),C=document.createElement("div");if(C.innerHTML=h,i.replaceContentCssText){var f=i.replaceContentCssText.replace(/#height#/g,p).replace(/#width#/g,l);C.firstChild.style.cssText=f}else i.appendContentCssText&&(C.firstChild.style.cssText+=i.appendContentCssText);var v=i.outerContainerLeft+C.innerHTML+i.outerContainerRight;C.innerHTML=v,C.firstChild.setAttribute(e.idAttr,g),c.parentNode.insertBefore(C.firstChild,c.nextSibling),c.setAttribute("has-insert-preloading","1")}}}(t)}();</script>
<script type="text/javascript" nonce="" reportloaderror="">
function htmlDecode(str) {
return str
.replace(/'/g, '\'')
.replace(/<br\s*(\/)?\s*>/g, '\n')
.replace(/ /g, ' ')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"')
.replace(/&/g, '&')
.replace(/ /g, ' ');
}
var uin = '';
var key = '';
var pass_ticket = '';
var new_appmsg = 1;
var item_show_type = "0";
var real_item_show_type = "0";
var can_see_complaint = "0";
var tid = "";
var aid = "";
var clientversion = "6300002f";
var appuin = "" || "MzA5NzAzMjIxMw==";
var voiceid = "";
var source = "";
var ascene = "";
var subscene = "";
var sessionid = "" || "svr_26dd8bc9d0c";
var abtest_cookie = "";
var scene = 75;
var itemidx = "";
var appmsg_token = "";
var _copyright_stat = "2";
var _ori_article_type = "";
var is_follow = "";
var nickname = "互联网思维";
var appmsg_type = "9";
var ct = "1659195002";
var user_name = "gh_82a2e55f24ab";
var fakeid = "";
var version = "";
var is_limit_user = "0";
var round_head_img = "http://mmbiz.qpic.cn/mmbiz_png/ica0BbQJ0cyeIu0xvibudnhl6Ypq2vaye8C1FWWBDcWUXYClelHJHduiawbBvIYHp603m0faY4RRJRsVHibqjNnCxw/0?wx_fmt=png&wx_head=1";
var hd_head_img = "http://wx.qlogo.cn/mmhead/Q3auHgzwzM5rGibgUOibPAvf6nBmYtVoWlIn7Bic2MibPAMcL2CEcXglVg/0" || "";
var ori_head_img_url = "http://wx.qlogo.cn/mmhead/Q3auHgzwzM5rGibgUOibPAvf6nBmYtVoWlIn7Bic2MibPAMcL2CEcXglVg/132";
var msg_title = '牛逼的人都有破局思维'.html(false);
var msg_desc = htmlDecode("努力和辛苦都很廉价,训练眼光和格局才是正经事。");
var msg_cdn_url = "https://mmbiz.qpic.cn/mmbiz_jpg/ica0BbQJ0cyeds2icjjAjrChtONy2UfD6J4ibywoK3AqniciaicialvdxWILsAkvsic9qAqW6GXfge11gr2nBG1xD43fVw/0?wx_fmt=jpeg"; // 首图idx=0时2.35:1 , 次图idx!=0时1:1
var cdn_url_1_1 = "https://mmbiz.qpic.cn/mmbiz_jpg/ica0BbQJ0cyeds2icjjAjrChtONy2UfD6J5NM2XO56UYbqAGCbKKu3HYUUWLicRv3ELIYCaypa5Bk3ibeTSEZq2qMg/0?wx_fmt=jpeg"; // 1:1比例的封面图
var cdn_url_235_1 = "https://mmbiz.qpic.cn/mmbiz_jpg/ica0BbQJ0cyeds2icjjAjrChtONy2UfD6J4ibywoK3AqniciaicialvdxWILsAkvsic9qAqW6GXfge11gr2nBG1xD43fVw/0?wx_fmt=jpeg"; // 首图idx=0时2.35:1 , 次图idx!=0时1:1
// var msg_link = "http://mp.weixin.qq.com/s?__biz=MzA5NzAzMjIxMw==\x26amp;mid=2650975219\x26amp;idx=1\x26amp;sn=e401686fdb5310f3bf01c81a6c88dca0\x26amp;chksm=8b510a89bc26839fcc905e8f1c5694335f3211f46016fcf4cb85c66446f103898c465d2e280e#rd";
var msg_link = "http://mp.weixin.qq.com/s?__biz=MzA5NzAzMjIxMw==&mid=2650975219&idx=1&sn=e401686fdb5310f3bf01c81a6c88dca0&chksm=8b510a89bc26839fcc905e8f1c5694335f3211f46016fcf4cb85c66446f103898c465d2e280e#rd"; // @radeonwu
var user_uin = "" * 1;
var msg_source_url = 'https://mp.weixin.qq.com/s/eZeg2pELrxaWdMyv5VdoVQ#rd';
var img_format = 'jpeg';
var srcid = '';
var req_id = '3108DW4EX87m7Pv2gWu05WLM';
var networkType;
var appmsgid = "2650975219" || '' || '';
var comment_id = "2509724496585605121" || "2509724496585605121" * 1;
var comment_enabled = "" * 1;
var open_fansmsg = "0" * 1;
var is_https_res = ("" * 1) && (location.protocol == "https:");
var msg_daily_idx = "1" || "";
var profileReportInfo = "" || "";
var devicetype = "Windows10x64";
var source_encode_biz = "MzI4NjYzMjg4MA=="; // 转载来源的公众号encode biz
var source_username = "gh_dc8d1b10c0c6";
// var profile_ext_signature = "" || "";
var reprint_ticket = "DgWzPm%2BKg96UBWz1gUS6RbAppFJSEUSQvn47Q0QeV36oRZQp%2FM2FsF0N%2B8%2FZqQxZ";
var source_mid = "2247484500";
var source_idx = "1";
var source_biz = "3286632880";
var author_id = "";
// 压缩标志位
var optimizing_flag = "0" * 1;
// 广告灰度实验取消 @add by scotthuang
// var ad_abtest_padding = "0" * 1;
var show_comment = "";
var __appmsgCgiData = {
wxa_product: "" * 1,
wxa_cps: "" * 1,
show_msg_voice: "0" * 1,
can_use_page: "" * 1,
is_wxg_stuff_uin: "0" * 1,
card_pos: "0",
copyright_stat: "2",
source_biz: "3286632880",
hd_head_img: "http://wx.qlogo.cn/mmhead/Q3auHgzwzM5rGibgUOibPAvf6nBmYtVoWlIn7Bic2MibPAMcL2CEcXglVg/0" || (window.location.protocol + "//" + window.location.host + "//res.wx.qq.com/mmbizappmsg/en_US/htmledition/js/images/pic/pic_rumor_link5f9163.jpg"),
has_red_packet_cover: "0" * 1 || 0,
minishopCardData: ""
};
var _empty_v = "//res.wx.qq.com/mmbizappmsg/en_US/htmledition/js/audios/empty5f9163.mp3";
var appmsg_album_info = (function () {
var curAlbumId = '';
var publicTagInfo = [
];
for (var i = 0; i < publicTagInfo.length; i++) {
if (curAlbumId) {
if (curAlbumId === publicTagInfo[i].id) {
return publicTagInfo[i];
}
} else {
if (publicTagInfo[i].continousReadOn) {
return publicTagInfo[i];
}
}
}
return {};