Observer: 思维 ≠ 自己
<style>
:root {
color-scheme: light;
--ink: #13283a;
--muted: #5f7180;
--paper: #f4f0e8;
--card: rgba(255, 255, 255, 0.9);
--line: rgba(27, 58, 79, 0.12);
--gold: #d6ad58;
}
* { box-sizing: border-box; }
html, body {
margin: 0;
background: #e9eff2;
color: var(--ink);
font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
}
body { padding: clamp(10px, 2vw, 24px); }
.page {
width: min(1200px, 100%);
margin: 0 auto;
}
.hero {
position: relative;
min-height: clamp(480px, 68vw, 680px);
display: flex;
align-items: flex-end;
overflow: hidden;
border-radius: 30px;
box-shadow: 0 24px 70px rgba(17, 39, 55, 0.22);
}
.hero > img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.hero::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(7, 22, 36, 0.04) 24%, rgba(7, 22, 36, 0.9) 100%);
}
.hero-copy {
position: relative;
z-index: 1;
width: min(760px, 100%);
padding: clamp(28px, 6vw, 64px);
color: #fff;
}
.eyebrow {
margin: 0 0 12px;
color: #f0cc7a;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
}
h1 {
margin: 0;
font-family: Georgia, "Songti SC", serif;
font-size: clamp(44px, 8vw, 82px);
font-weight: 500;
letter-spacing: -0.04em;
line-height: 0.98;
}
.lead {
max-width: 680px;
margin: 20px 0 0;
color: rgba(255, 255, 255, 0.86);
font-size: clamp(17px, 2.3vw, 22px);
line-height: 1.7;
}
.lead + .lead { margin-top: 10px; }
.quote {
margin: 24px 0 0;
padding-left: 18px;
border-left: 2px solid #e8c571;
color: rgba(255, 255, 255, 0.76);
font-family: Georgia, "Songti SC", serif;
font-size: 15px;
line-height: 1.8;
}
.quote cite {
display: block;
margin-top: 6px;
color: rgba(255, 255, 255, 0.52);
font-family: Inter, "PingFang SC", sans-serif;
font-size: 12px;
font-style: normal;
}
.scenes {
display: grid;
gap: 22px;
margin-top: 22px;
}
.scene {
display: grid;
grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
align-items: center;
padding: 14px;
overflow: hidden;
border: 1px solid var(--line);
border-radius: 26px;
background: var(--card);
box-shadow: 0 12px 34px rgba(26, 53, 70, 0.08);
}
.scene:nth-child(even) {
grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
}
.scene:nth-child(even) .scene-image { order: 2; }
.scene-image {
display: block;
width: 100%;
height: auto;
align-self: center;
border-radius: 18px;
}
.scene-copy {
display: flex;
flex-direction: column;
justify-content: center;
padding: clamp(24px, 3vw, 42px);
}
.index {
margin-bottom: 16px;
color: var(--gold);
font-size: 12px;
font-weight: 800;
letter-spacing: 0.16em;
}
h2 {
margin: 0 0 16px;
font-family: Georgia, "Songti SC", serif;
font-size: clamp(27px, 3.5vw, 40px);
font-weight: 500;
line-height: 1.2;
}
.scene p {
margin: 0;
color: var(--muted);
font-size: 16px;
line-height: 1.9;
}
.scene-quote {
margin: 0 0 16px;
padding-left: 14px;
border-left: 2px solid rgba(214, 173, 88, 0.72);
color: var(--ink);
font-family: Georgia, "Songti SC", serif;
font-size: 15px;
line-height: 1.8;
}
.scene-quote cite {
display: block;
margin-top: 6px;
color: var(--muted);
font-family: Inter, "PingFang SC", sans-serif;
font-size: 12px;
font-style: normal;
}
.scene .scene-body {
grid-column: 1 / -1;
order: 3;
margin: 10px clamp(24px, 3vw, 42px) 18px;
padding-top: 20px;
border-top: 1px solid var(--line);
}
.scene-body p + p { margin-top: 12px; }
.closing {
margin-top: 22px;
padding: clamp(34px, 6vw, 68px);
border-radius: 26px;
background: var(--paper);
text-align: center;
}
.closing strong {
display: block;
max-width: 760px;
margin: 0 auto;
font-family: Georgia, "Songti SC", serif;
font-size: clamp(24px, 4vw, 40px);
font-weight: 500;
line-height: 1.5;
}
.closing p {
max-width: 700px;
margin: 18px auto 0;
color: var(--muted);
line-height: 1.9;
}
.nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 28px;
}
.nav a {
padding: 10px 16px;
border: 1px solid var(--line);
border-radius: 999px;
color: var(--ink);
background: rgba(255, 255, 255, 0.58);
font-size: 13px;
text-decoration: none;
}
@media (max-width: 760px) {
body { padding: 10px; }
.hero { min-height: 620px; border-radius: 22px; }
.scene { grid-template-columns: 1fr; padding: 10px; border-radius: 22px; }
.scene:nth-child(even) { grid-template-columns: 1fr; }
.scene:nth-child(even) .scene-image { order: 0; }
.scene-image { height: auto; border-radius: 14px; }
.scene .scene-body { margin: 6px 18px 18px; }
}
</style>
<main class="page">
<header class="hero">
<img src="https://static.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/1787096500813-observer-thinker-ligne-claire-landscape.png" alt="观察思考者">
<div class="hero-copy">
<p class="eyebrow">Observer · 核心概念</p>
<h1>观察者</h1>
<p class="lead">我们常常把头脑中不断出现的思维当成自己。可当你开始倾听并观察它,就会发现:你不是思维本身,而是思维背后那份能够观察它的临在。</p>
<p class="lead">从思维中解放出来,不是停止思考,而是不再把自己完全等同于思维。当你听见头脑中的声音,却不评判、不跟随它时,一个比思维更高维度的意识层面便显现出来 —— 观察者 Observer</p>
</div>
</header>
<section class="scenes" aria-label="观察者的三个意象">
<article class="scene">
<img class="scene-image" src="https://static.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/1787096500813-observer-thinker-ligne-claire-landscape.png" alt="观察思考者">
<div class="scene-copy">
<span class="index">01 · 觉察</span>
<h2>观察者</h2>
<blockquote class="scene-quote">
“那里有一种声音,而我在这里倾听它,观察它。”
<cite>《当下的力量实践手册》第一章「从你的思维中解放出来」</cite>
</blockquote>
</div>
<div class="scene-body">
<p>画面中,宁静的人微笑着看向一个喋喋不休的半透明小人,这个透明小人就是你的思维。声音仍在,但观察它的人不再被它牵着走。</p>
<p>当你知道“我正在思考”时,Observer 已经出现。它是对思维、情绪和身体反应的清楚觉察。</p>
</div>
</article>
<article class="scene">
<img class="scene-image" src="https://static.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/1787445138909-observer-car-alarm-angry-thinker.png" alt="汽车警报声响起时,平静的人观察愤怒的思维">
<div class="scene-copy">
<span class="index">02 · 自动反应</span>
<h2>自动升起的愤怒</h2>
<blockquote class="scene-quote">
“你没有这样做,而是思维在这样做。它是自动的,完全无意识的。”
<cite>《当下的力量实践手册》第八章「利用和放弃消极心态」</cite>
</blockquote>
</div>
<p class="scene-body">你在家里安静地坐着时,突然街道上传来汽车的警报声。半透明的思维立刻攥紧拳头,仿佛愤怒能让声音消失。坐着的人依然微笑,因为他看见:这份抗拒是思维自动制造的反应,并不是自己。</p>
</article>
<article class="scene">
<img class="scene-image" src="https://static.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/1787445577699-deep-lake-stillness-ligne-claire-landscape.png" alt="深湖的宁静">
<div class="scene-copy">
<span class="index">03 · 空间</span>
<h2>深湖的宁静</h2>
<blockquote class="scene-quote">
“你生活的外在情况和生活中所发生的任何事情,都是这面湖泊的表面。随着循环和季节的变化,湖面有时平静,有时波澜起伏。然而在湖的深处,总是宁静的。”
<cite>《当下的力量实践手册》第八章「慈悲的本质」</cite>
</blockquote>
</div>
<div class="scene-body">
<p>湖面的波浪像不断变化的思维、情绪、外在的生活情境;在湖的深处,是没有被波浪占据的空间,这里总是宁静的。</p>
<p>观察不会消灭思维,也不否定有用的判断。它只是让一个响亮的思维重新成为经验的一部分,为选择和行动留出距离。</p>
</div>
</article>
</section>
<footer class="closing">
<nav class="nav" aria-label="继续探索">
<a href="https://www.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/page/895bc0fc-4c97-40e6-b01f-3f639aadc4b0" target="_top">Timeless: 当下</a>
<a href="https://www.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/page/560ab46c-784e-4113-98f6-537775fd5fbf" target="_top">练习 · 观察思维</a>
<a href="https://www.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/page/143489ab-20ef-44b2-ac07-5c358950e21c" target="_top">返回核心概念</a>
</nav>
</footer>
</main>
Plain Note
Observer: 思维 ≠ 自己
我们常常把头脑中不断出现的思维当成自己。可当你开始倾听并观察它,就会发现:你不是思维本身,而是思维背后那份能够观察它的临在。
从思维中解放出来,不是停止思考,而是不再把自己完全等同于思维。当你听见头脑中的声音,却不评判、不跟随它时,一个比思维更高维度的意识层面便显现出来 —— 观察者 Observer
观察者

“那里有一种声音,而我在这里倾听它,观察它。”
——《当下的力量实践手册》第一章「从你的思维中解放出来」
画面中,宁静的人微笑着看向一个喋喋不休的半透明小人,这个透明小人就是你的思维。声音仍在,但观察它的人不再被它牵着走。
当你知道“我正在思考”时,Observer 已经出现。它是对思维、情绪和身体反应的清楚觉察。
自动升起的愤怒

“你没有这样做,而是思维在这样做。它是自动的,完全无意识的。”
——《当下的力量实践手册》第八章「利用和放弃消极心态」
你在家里安静地坐着时,突然街道上传来汽车的警报声。半透明的思维立刻攥紧拳头,仿佛愤怒能让声音消失。坐着的人依然微笑,因为他看见:这份抗拒是思维自动制造的反应,并不是自己。
深湖的宁静

“你生活的外在情况和生活中所发生的任何事情,都是这面湖泊的表面。随着循环和季节的变化,湖面有时平静,有时波澜起伏。然而在湖的深处,总是宁静的。”
——《当下的力量实践手册》第八章「慈悲的本质」
湖面的波浪像不断变化的思维、情绪、外在的生活情境;在湖的深处,是没有被波浪占据的空间,这里总是宁静的。
观察不会消灭思维,也不否定有用的判断。它只是让一个响亮的思维重新成为经验的一部分,为选择和行动留出距离。