-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode (5).html
More file actions
266 lines (235 loc) · 9.81 KB
/
code (5).html
File metadata and controls
266 lines (235 loc) · 9.81 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>姜胡说 - 赚钱之道 (精简摘要)</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f7f9;
color: #333;
line-height: 1.6;
}
header {
background-color: #2980b9; /* 蓝色系头部 */
color: white;
text-align: center;
padding: 20px 0;
margin-bottom: 20px;
}
header h1 {
margin-bottom: 10px;
font-size: 2em;
}
header .subtitle {
font-size: 1em;
opacity: 0.8;
}
.themed-section {
margin: 15px auto;
padding: 15px;
max-width: 800px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
display: flex;
flex-direction: column;
align-items: flex-start;
position: relative; /* For icon positioning */
}
.section-icon {
position: absolute;
top: -20px; /* Adjust as needed */
left: 20px;
font-size: 2em;
color: white; /* Icon color will be white to stand out on color blocks */
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Add a subtle shadow to the icon */
background-color: inherit; /* Icon background inherits section color */
}
.blue-theme { background-color: #3498db; color: white; }
.green-theme { background-color: #2ecc71; color: white; }
.orange-theme { background-color: #f39c12; color: white; }
.purple-theme { background-color: #9b59b6; color: white; }
.red-theme { background-color: #e74c3c; color: white; }
.themed-section h2 {
color: inherit; /* Inherit color from themed-section */
margin-top: 0;
margin-bottom: 1em;
border-bottom: 2px solid rgba(255,255,255,0.5); /* White underline for headings */
padding-bottom: 0.5em;
width: 100%; /* Heading takes full width of section */
text-align: center; /* Center the heading within the section */
}
.content-block {
background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white block for content */
color: #333; /* Content text color is dark */
padding: 1em 1.5em;
border-radius: 6px;
margin-bottom: 1em;
width: calc(100% - 3em); /* Adjust width to account for padding */
align-self: stretch; /* Stretch content blocks to full section width */
}
.content-block h3 {
margin-top: 0;
color: #555; /* Darker heading within content block */
margin-bottom: 0.8em;
border-bottom: 1px solid #eee; /* Light separator under content block heading */
padding-bottom: 0.3em;
}
.content-block ul {
padding-left: 1.5em;
margin-bottom: 0;
}
.content-block li {
margin-bottom: 0.5em;
}
.key-point {
font-weight: bold;
color: #e67e22; /* Example highlight color - orange */
}
footer {
text-align: center;
padding: 1em 0;
margin-top: 2em;
background-color: #e0e0e0;
color: #777;
font-size: 0.9em;
}
/* 媒体查询,针对手机屏幕优化 */
@media (max-width: 600px) {
header {
padding: 1.5em 0;
margin-bottom: 1.5em;
}
header h1 {
font-size: 1.7em;
}
.themed-section {
padding: 1em;
margin: 1em auto;
}
.content-block {
padding: 1em;
width: calc(100% - 2em);
}
.section-icon {
top: -15px;
left: 15px;
font-size: 1.5em;
width: 30px;
height: 30px;
}
}
</style>
</head>
<body>
<header>
<h1><span style="font-size:1.2em;">💡</span> 姜胡说 - 赚钱之道</h1>
<p class="subtitle">精简核心要点,助您快速掌握</p>
</header>
<section id="core-philosophy" class="themed-section blue-theme">
<div class="section-icon"><span style="font-size:1.5em;">⭐</span></div>
<h2>核心理念:价值交换与问题解决</h2>
<div class="content-block">
<h3>价值交换 <span style="font-size:1.1em;">🔄</span></h3>
<ul>
<li><span class="key-point">赚钱的本质</span>:提供价值,与人交换</li>
<li><span class="key-point">核心</span>:拥有别人需要的东西</li>
</ul>
</div>
<div class="content-block">
<h3>问题解决 <span style="font-size:1.1em;">❓</span></h3>
<ul>
<li><span class="key-point">发现需求</span>:洞察他人问题与需求</li>
<li><span class="key-point">提供方案</span>:提供解决方案,创造价值</li>
</ul>
</div>
</section>
<section id="key-to-success" class="themed-section green-theme">
<div class="section-icon"><span style="font-size:1.5em;">✅</span></div>
<h2>成功关键:时间与专注</h2>
<div class="content-block">
<h3>时间管理 <span style="font-size:1.1em;">⏱️</span></h3>
<ul>
<li><span class="key-point">珍惜时间</span>:成功人士重视时间</li>
<li><span class="key-point">专注目标</span>:集中精力于重要事情</li>
<li><span class="key-point">每日写作</span>:养成写作习惯,积累思考</li>
</ul>
</div>
<div class="content-block">
<h3>拒绝无效 <span style="font-size:1.1em;">🚫</span></h3>
<ul>
<li><span class="key-point">拒绝闲聊</span>:不浪费时间在无效社交</li>
<li><span class="key-point">拒绝分心</span>:规避干扰,专注核心目标</li>
</ul>
</div>
</section>
<section id="actionable-steps" class="themed-section orange-theme">
<div class="section-icon"><span style="font-size:1.5em;">🚀</span></div>
<h2>行动步骤:从小做起,迭代优化</h2>
<div class="content-block">
<h3>小步快跑 <span style="font-size:1.1em;">👣</span></h3>
<ul>
<li><span class="key-point">起步</span>:从赚取第一块钱开始验证</li>
<li><span class="key-point">PMF验证</span>:验证产品与市场匹配度</li>
<li><span class="key-point">迭代优化</span>:根据反馈快速迭代改进</li>
</ul>
</div>
<div class="content-block">
<h3>用户至上 <span style="font-size:1.1em;">🧑🤝🧑</span></h3>
<ul>
<li><span class="key-point">用户导向</span>:用户在哪里,就在哪里推广</li>
<li><span class="key-point">社群扩展</span>:利用社群扩大用户基数</li>
</ul>
</div>
</section>
<section id="leverage-ai" class="themed-section purple-theme">
<div class="section-icon"><span style="font-size:1.5em;">🤖</span></div>
<h2>拥抱AI:提升效率与价值</h2>
<div class="content-block">
<h3>AI工具 <span style="font-size:1.1em;">🧰</span></h3>
<ul>
<li><span class="key-point">AI赋能</span>:利用AI提升效率,解放生产力</li>
<li><span class="key-point">AI创造者</span>:成为AI创造者,而非消费者</li>
</ul>
</div>
<div class="content-block">
<h3>深度思考 <span style="font-size:1.1em;">🤔</span></h3>
<ul>
<li><span class="key-point">独立思考</span>:培养独立思考能力,不依赖AI</li>
<li><span class="key-point">费曼学习法</span>:用费曼学习法检验学习效果</li>
</ul>
</div>
</section>
<section id="financial-insights" class="themed-section red-theme">
<div class="section-icon"><span style="font-size:1.5em;">💰</span></div>
<h2>财务认知:多元收入与低成本</h2>
<div class="content-block">
<h3>多元收入 <span style="font-size:1.1em;">📈</span></h3>
<ul>
<li><span class="key-point">多渠道</span>:构建多元收入来源</li>
<li><span class="key-point">自媒体变现</span>:利用自媒体平台实现收益</li>
<li><span class="key-point">投资增值</span>:合理投资,实现财富增值</li>
</ul>
</div>
<div class="content-block">
<h3>成本控制 <span style="font-size:1.1em;">📉</span></h3>
<ul>
<li><span class="key-point">低成本生活</span>:降低生活成本,减少经济压力</li>
<li><span class="key-point">价值驱动</span>:追求价值实现,而非单纯金钱</li>
</ul>
</div>
</section>
<footer>
<p>© 2025 姜胡说 - 精简摘要 | 声明:内容整理自姜胡说直播,仅供学习参考</p>
</footer>
</body>
</html>