Ease: 无负担、无抗拒
<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;
}
.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/1787492824298-one-task-now-ligne-claire-landscape.png" alt="放下一百件事,只做眼前一件事">
<div class="hero-copy">
<p class="eyebrow">Ease · 核心概念</p>
<h1>无负担<br>无抗拒</h1>
<p class="lead">Ease 不是外界毫无问题,而是停止内在抗拒。所有内心的抗拒都是各种形式的消极心态。本质上是想要逃离当下,不愿接受事物的本然。</p>
<blockquote class="quote">
“不抗拒并不是说不采取任何行动。它是指你做的所有事情都不是由反应引起的。”
<cite>《当下的力量实践手册》第八章「在个人关系中臣服」</cite>
</blockquote>
</div>
</header>
<section class="scenes" aria-label="Ease 的四个意象">
<article class="scene">
<img class="scene-image" src="https://static.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/1787492824298-one-task-now-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>身后的纸张像未来的一百件事,在思维里纠缠成重担。暖光只落在眼前这一页:Ease 不是事情变少,而是不把尚未发生的事同时搬到此刻。</p>
</div>
</article>
<article class="scene">
<img class="scene-image" src="https://static.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/1787492844363-peace-amid-collapse-symbolic-v2-ligne-claire-landscape.png" alt="外在形式倒塌时,内在仍然安稳">
<div class="scene-copy">
<span class="index">02 · 无抗拒</span>
<h2>万物倒塌,内在仍然安稳</h2>
<blockquote class="scene-quote">
“即使你周围的所有事情都瓦解倒塌,你仍然能感到内心的深深的宁静。你可能无法快乐,但是你的内心却很平和。”
<cite>《当下的力量实践手册》第八章「生命的无常和循环」</cite>
</blockquote>
</div>
<div class="scene-body">
<p>没有什么事情是永恒的;关系、财产、身份、房子与身体都可能改变或消失,中央的人却没有随之瓦解。</p>
<p>Ease 不是否认失去,也不是逼自己快乐。它是在事实已经发生时,不再用内心的抗拒制造第二场灾难。外在形式正在消散,更深处的宁静仍然没有被夺走。</p>
</div>
</article>
<article class="scene">
<img class="scene-image" src="https://static.notedeep.com/workspace/fca0826c-3766-480d-9af5-476ec60e8ad3/1787492845130-lilies-effortless-growth-ligne-claire-landscape.png" alt="不耕不纺而自然生长的百合花">
<div class="scene-copy">
<span class="index">03 · 无挣扎</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/1787492845822-transparent-body-ligne-claire-landscape.png" alt="外界刺激穿过透明身体">
<div class="scene-copy">
<span class="index">04 · 不滞留</span>
<h2>让它穿过透明身体</h2>
<blockquote class="scene-quote">
“把你自己看成是透明的,而不是一个固体的肉身。现在,允许噪声或任何造成消极反应的东西穿越你。”
<cite>《当下的力量实践手册》第八章「利用和放弃消极心态」</cite>
</blockquote>
</div>
<p class="scene-body">噪声、冒犯或突发事件像箭一样穿过透明身体,只留下短暂涟漪,没有撞上抗拒之墙。无抗拒不是软弱:仍然可以说“不”或采取行动,只是不把内心交给外界控制。</p>
</article>
</section>
<footer class="closing">
<p>Ease 是清醒地接纳此刻,再做眼前需要做的事。它没有承诺顺利,只让行动从宁静与清楚中发生。</p>
<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/cddf8106-1c57-4c1e-a945-b8767e425312" target="_top">Observer: 思维 ≠ 自己</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
Ease: 无负担、无抗拒
Ease 不是外界毫无问题,而是停止内在抗拒。所有内心的抗拒都是各种形式的消极心态。本质上是想要逃离当下,不愿接受事物的本然。
“不抗拒并不是说不采取任何行动。它是指你做的所有事情都不是由反应引起的。”
——《当下的力量实践手册》第八章「在个人关系中臣服」
只拿起眼前这一件

“不要将注意力集中在未来需要做的一百件事情上,而要将注意力集中在此刻可以做的一件事情上。”
——《当下的力量实践手册》第八章「臣服的智慧」
背负着过去和未来的重担,会让此刻步履维艰。
身后的纸张像未来的一百件事,在思维里纠缠成重担。暖光只落在眼前这一页:Ease 不是事情变少,而是不把尚未发生的事同时搬到此刻。
万物倒塌,内在仍然安稳

“即使你周围的所有事情都瓦解倒塌,你仍然能感到内心的深深的宁静。你可能无法快乐,但是你的内心却很平和。”
——《当下的力量实践手册》第八章「生命的无常和循环」
没有什么事情是永恒的;关系、财产、身份、房子与身体都可能改变或消失,中央的人却没有随之瓦解。
Ease 不是否认失去,也不是逼自己快乐。它是在事实已经发生时,不再用内心的抗拒制造第二场灾难。外在形式正在消散,更深处的宁静仍然没有被夺走。
不耕不纺的百合花

“看看这些百合花是如何生长的;它们不耕不纺却过得好好的。”
——《当下的力量实践手册》第八章「臣服的智慧」
没有园丁在旁边焦虑地催促,花苞仍借着阳光、风、水与自身的节律依次开放。百合花并非什么都不做:它在扎根、吸收、生长,只是没有内在的不满与自我催逼。放下角力后,行动仍会发生,而且更贴近此刻真正需要做的事。
让它穿过透明身体

“把你自己看成是透明的,而不是一个固体的肉身。现在,允许噪声或任何造成消极反应的东西穿越你。”
——《当下的力量实践手册》第八章「利用和放弃消极心态」
噪声、冒犯或突发事件像箭一样穿过透明身体,只留下短暂涟漪,没有撞上抗拒之墙。无抗拒不是软弱:仍然可以说“不”或采取行动,只是不把内心交给外界控制。
Ease 是清醒地接纳此刻,再做眼前需要做的事。它没有承诺顺利,只让行动从宁静与清楚中发生。