{source}<!--
觀察雜誌 2025年11月 NO.147 分期目錄
依 observer-156-inline-editor-final.html 定稿範本製作。
最終整合版:HTML + CSS,可直接貼入 Joomla 文章 EDITOR 原始碼模式。
純 HTML + CSS,不使用 JavaScript。
分類使用原生 details/summary,可點擊展開與收合。
文章與超連結取自客戶提供的 NO.147 HTML。
文章依 ID 4830 至 4872 由小到大排列。
-->

<style>
/* =========================================================
Observer Taipei 分期目錄
純 CSS、RWD、CSS-only 展開收合
全部限制在 .ot-toc,不影響其他 Joomla 頁面
========================================================= */

.ot-toc {
--ot-red: #a7262a;
--ot-blue: #317ca2;
--ot-text: #252525;
--ot-gray: #d1d1d1;
--ot-line: #ececec;

width: 100%;
max-width: 920px;
margin: 32px auto;
color: var(--ot-text);
font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", sans-serif;
font-size: 16px;
line-height: 1.65;
}

.ot-toc,
.ot-toc *,
.ot-toc *::before,
.ot-toc *::after {
box-sizing: border-box;
}

.ot-toc__header {
margin-bottom: 22px;
text-align: center;
}

.ot-toc__heading {
margin: 0 0 12px;
padding: 0;
color: #111;
font-size: clamp(25px, 3vw, 32px);
font-weight: 700;
line-height: 1.35;
letter-spacing: .08em;
}

.ot-toc__issue {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0 8px;
margin: 0;
color: #222;
font-size: clamp(15px, 2vw, 17px);
font-weight: 700;
}

/* 分類區塊 */
.ot-toc__section {
margin: 0 0 14px;
padding: 0;
border: 0;
}

.ot-toc__section > summary {
list-style: none;
}

.ot-toc__section > summary::-webkit-details-marker {
display: none;
}

.ot-toc__category {
position: relative;
display: flex;
align-items: center;
min-height: 40px;
margin: 0;
padding: 8px 50px 8px 35px;
color: var(--ot-red);
font-size: 17px;
font-weight: 700;
line-height: 1.4;
background: linear-gradient(90deg, #c8c8c8, #dedede 70%, #cfcfcf);
cursor: pointer;
user-select: none;
transition: filter .2s ease;
}

.ot-toc__category:hover {
filter: brightness(.96);
}

.ot-toc__category::before {
content: "";
position: absolute;
left: 18px;
top: 9px;
bottom: 9px;
width: 4px;
background: var(--ot-red);
}

.ot-toc__category::after {
content: "+";
position: absolute;
right: 18px;
top: 50%;
width: 24px;
height: 24px;
color: var(--ot-red);
font-size: 22px;
font-weight: 400;
line-height: 22px;
text-align: center;
transform: translateY(-50%);
}

.ot-toc__section[open] > .ot-toc__category::after {
content: "−";
}

/* 列表 */
.ot-toc__list {
padding: 5px 20px 2px;
}

.ot-toc__item {
display: grid;
grid-template-columns: 78px minmax(0, 1fr);
gap: 18px;
align-items: start;
width: 100%;
min-height: 40px;
padding: 8px;
color: inherit;
text-decoration: none;
border-bottom: 1px solid transparent;
transition:
background-color .2s ease,
transform .2s ease;
}

.ot-toc__item:hover,
.ot-toc__item:focus {
color: inherit;
text-decoration: none;
background: #f3f7f9;
outline: none;
transform: translateX(3px);
}

.ot-toc__page {
color: #2c2c2c;
font-size: 15px;
font-weight: 500;
white-space: nowrap;
}

.ot-toc__info {
display: block;
min-width: 0;
}

.ot-toc__title {
color: var(--ot-blue);
font-size: 16px;
font-weight: 700;
overflow-wrap: anywhere;
}

.ot-toc__author {
display: inline-block;
margin-left: 9px;
color: var(--ot-blue);
font-size: 15px;
font-weight: 600;
white-space: nowrap;
}

.ot-toc__author::before {
content: "|";
margin-right: 8px;
color: #9da5aa;
font-weight: 400;
}

.ot-toc__item:hover .ot-toc__title,
.ot-toc__item:hover .ot-toc__author {
color: var(--ot-red);
}

/* 鍵盤焦點 */
.ot-toc__category:focus-visible,
.ot-toc__item:focus-visible {
outline: 3px solid rgba(49, 124, 162, .28);
outline-offset: 2px;
}

/* 平板 */
@media (max-width: 768px) {
.ot-toc {
margin: 24px auto;
}

.ot-toc__list {
padding-right: 10px;
padding-left: 10px;
}

.ot-toc__item {
grid-template-columns: 64px minmax(0, 1fr);
gap: 12px;
}
}

/* 手機 */
@media (max-width: 576px) {
.ot-toc {
margin: 18px auto;
font-size: 15px;
}

.ot-toc__issue {
display: block;
line-height: 1.8;
}

.ot-toc__issue span {
display: inline;
}

.ot-toc__category {
min-height: 42px;
padding: 9px 45px 9px 31px;
font-size: 16px;
}

.ot-toc__category::before {
left: 14px;
}

.ot-toc__category::after {
right: 13px;
}

.ot-toc__list {
padding: 7px 0 0;
}

.ot-toc__item {
grid-template-columns: 52px minmax(0, 1fr);
gap: 10px;
padding: 10px 5px;
border-bottom-color: var(--ot-line);
transform: none;
}

.ot-toc__page {
font-size: 14px;
}

.ot-toc__title {
display: block;
font-size: 15px;
line-height: 1.55;
}

.ot-toc__author {
display: block;
margin: 3px 0 0;
font-size: 14px;
}

.ot-toc__author::before {
content: "作者:";
margin-right: 2px;
color: #777;
}
}

@media (prefers-reduced-motion: reduce) {
.ot-toc *,
.ot-toc *::before,
.ot-toc *::after {
transition: none !important;
}
}
</style>

<div class="ot-toc">

<header class="ot-toc__header">
<h2 class="ot-toc__heading">分期目錄</h2>
<p class="ot-toc__issue">
<span>2025年11月</span>
<span aria-hidden="true">|</span>
<span>NO. 147</span>
<span aria-hidden="true">|</span>
<span>設立「台灣光復紀念日」 銘記歷史 共創未來</span>
</p>
</header>

<details class="ot-toc__section" open>
<summary class="ot-toc__category">發行人的話</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4830">
<span class="ot-toc__page">P.1</span>
<span class="ot-toc__info">
<span class="ot-toc__title">設立「台灣光復紀念日」銘記歷史、共創未來</span>
<span class="ot-toc__author">紀欣</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">國民黨主席</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4831">
<span class="ot-toc__page">P.6</span>
<span class="ot-toc__info">
<span class="ot-toc__title">鄭麗文當選國民黨主席後的挑戰</span>
<span class="ot-toc__author">曲兆祥</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4832">
<span class="ot-toc__page">P.8</span>
<span class="ot-toc__info">
<span class="ot-toc__title">期待國民黨重返兩岸中國人的「九二共識」</span>
<span class="ot-toc__author">桂宏誠</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4833">
<span class="ot-toc__page">P.10</span>
<span class="ot-toc__info">
<span class="ot-toc__title">「黨的建設」是鄭麗文的首要之務</span>
<span class="ot-toc__author">朱駿</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4834">
<span class="ot-toc__page">P.12</span>
<span class="ot-toc__info">
<span class="ot-toc__title">鄭麗文接任主席後的藍白合趨勢</span>
<span class="ot-toc__author">馮國豪</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">政治</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4835">
<span class="ot-toc__page">P.14</span>
<span class="ot-toc__info">
<span class="ot-toc__title">幻想國際化,不如務實化</span>
<span class="ot-toc__author">張雅屏</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4836">
<span class="ot-toc__page">P.15</span>
<span class="ot-toc__info">
<span class="ot-toc__title">賴清德在雙十晚會把話講反了</span>
<span class="ot-toc__author">趙興鵬</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4837">
<span class="ot-toc__page">P.16</span>
<span class="ot-toc__info">
<span class="ot-toc__title">登馬太鞍溪感知2026大勢</span>
<span class="ot-toc__author">林松青</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4838">
<span class="ot-toc__page">P.18</span>
<span class="ot-toc__info">
<span class="ot-toc__title">花蓮縣光復鄉滅村事件責任歸屬</span>
<span class="ot-toc__author">魏國彥</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4839">
<span class="ot-toc__page">P.20</span>
<span class="ot-toc__info">
<span class="ot-toc__title">賴欲靜而習不停的台海風雲</span>
<span class="ot-toc__author">莊清隆</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4840">
<span class="ot-toc__page">P.21</span>
<span class="ot-toc__info">
<span class="ot-toc__title">台灣和美國誰是棋手,誰忽悠誰?</span>
<span class="ot-toc__author">楊建業</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">兩岸關係</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4841">
<span class="ot-toc__page">P.22</span>
<span class="ot-toc__info">
<span class="ot-toc__title">台獨不行!獨台行嗎?</span>
<span class="ot-toc__author">汪榮祖</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4842">
<span class="ot-toc__page">P.24</span>
<span class="ot-toc__info">
<span class="ot-toc__title">《沉默的榮耀》對台灣釋出訊號</span>
<span class="ot-toc__author">張鈞凱</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4843">
<span class="ot-toc__page">P.26</span>
<span class="ot-toc__info">
<span class="ot-toc__title">阻斷兩岸文化交流才是「沒出息」</span>
<span class="ot-toc__author">黃浩天</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4844">
<span class="ot-toc__page">P.28</span>
<span class="ot-toc__info">
<span class="ot-toc__title">民進黨費盡心機搞「仇中」結果一場空</span>
<span class="ot-toc__author">吳東昇</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4845">
<span class="ot-toc__page">P.30</span>
<span class="ot-toc__info">
<span class="ot-toc__title">美國的兩岸關係政策及其影響</span>
<span class="ot-toc__author">周忠菲</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">國際觀察</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4846">
<span class="ot-toc__page">P.32</span>
<span class="ot-toc__info">
<span class="ot-toc__title">鷹派高市或將改變日本發展方向</span>
<span class="ot-toc__author">李中邦</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4847">
<span class="ot-toc__page">P.35</span>
<span class="ot-toc__info">
<span class="ot-toc__title">伯恩斯:「中國是值得尊敬的對手」</span>
<span class="ot-toc__author">花俊雄</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4848">
<span class="ot-toc__page">P.38</span>
<span class="ot-toc__info">
<span class="ot-toc__title">從國際現勢看美國的衰退</span>
<span class="ot-toc__author">徐勉生</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4849">
<span class="ot-toc__page">P.40</span>
<span class="ot-toc__info">
<span class="ot-toc__title">「嚇阻中國侵台法案」效力及影響</span>
<span class="ot-toc__author">柳金財</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4850">
<span class="ot-toc__page">P.42</span>
<span class="ot-toc__info">
<span class="ot-toc__title">南韓政局與APEC峰會</span>
<span class="ot-toc__author">劉順達</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">大陸焦點</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4851">
<span class="ot-toc__page">P.44</span>
<span class="ot-toc__info">
<span class="ot-toc__title">四中全會的政治訊息</span>
<span class="ot-toc__author">姜新立</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4852">
<span class="ot-toc__page">P.46</span>
<span class="ot-toc__info">
<span class="ot-toc__title">中國再次引領全球婦女發展</span>
<span class="ot-toc__author">胡勇</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">財經</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4853">
<span class="ot-toc__page">P.48</span>
<span class="ot-toc__info">
<span class="ot-toc__title">川普復興美國製造之路知易行難</span>
<span class="ot-toc__author">戴肇洋</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4854">
<span class="ot-toc__page">P.50</span>
<span class="ot-toc__info">
<span class="ot-toc__title">賴政府「經濟三箭」的機會與挑戰</span>
<span class="ot-toc__author">李沃牆</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4855">
<span class="ot-toc__page">P.52</span>
<span class="ot-toc__info">
<span class="ot-toc__title">台灣晶片「與美對分」還是「脫中豪賭」?</span>
<span class="ot-toc__author">蔡哲明</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4856">
<span class="ot-toc__page">P.54</span>
<span class="ot-toc__info">
<span class="ot-toc__title">營所稅應扣除通膨稅以符租稅公平</span>
<span class="ot-toc__author">王有康</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4857">
<span class="ot-toc__page">P.56</span>
<span class="ot-toc__info">
<span class="ot-toc__title">蔣介石若撤退至海南,經濟奇蹟是否會發生?</span>
<span class="ot-toc__author">林建甫</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">當代人物</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4858">
<span class="ot-toc__page">P.59</span>
<span class="ot-toc__info">
<span class="ot-toc__title">楊振寧自然天成的民族情懷</span>
<span class="ot-toc__author">江才健</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4859">
<span class="ot-toc__page">P.60</span>
<span class="ot-toc__info">
<span class="ot-toc__title">一位清華圖書館員眼中的楊振寧</span>
<span class="ot-toc__author">何玉</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">社會關懷</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4860">
<span class="ot-toc__page">P.62</span>
<span class="ot-toc__info">
<span class="ot-toc__title">人均GDP屢破新高 民眾依然薪情不好</span>
<span class="ot-toc__author">謝雅卉</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4861">
<span class="ot-toc__page">P.64</span>
<span class="ot-toc__info">
<span class="ot-toc__title">苗栗隨機砍人案:社會安全網出現破口</span>
<span class="ot-toc__author">羅鼎鈞</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4862">
<span class="ot-toc__page">P.66</span>
<span class="ot-toc__info">
<span class="ot-toc__title">破解紙箱會致白血病的迷思</span>
<span class="ot-toc__author">潘懷宗、黃巧妮</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4863">
<span class="ot-toc__page">P.68</span>
<span class="ot-toc__info">
<span class="ot-toc__title">有機農業值得推廣、實施</span>
<span class="ot-toc__author">吳文希</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">人文歷史</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4864">
<span class="ot-toc__page">P.70</span>
<span class="ot-toc__info">
<span class="ot-toc__title">警察分局長為取締圓山飯店違建丟官</span>
<span class="ot-toc__author">高靖</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">科技新知</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4865">
<span class="ot-toc__page">P.72</span>
<span class="ot-toc__info">
<span class="ot-toc__title">中國新一代戰車性能發展</span>
<span class="ot-toc__author">宋磊</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4866">
<span class="ot-toc__page">P.74</span>
<span class="ot-toc__info">
<span class="ot-toc__title">中國人工智慧崛起:技術紅利與風險隱憂</span>
<span class="ot-toc__author">蔡鎤銘</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4867">
<span class="ot-toc__page">P.76</span>
<span class="ot-toc__info">
<span class="ot-toc__title">人工智能時代的人本主義倫理</span>
<span class="ot-toc__author">邢天立</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4868">
<span class="ot-toc__page">P.78</span>
<span class="ot-toc__info">
<span class="ot-toc__title">以色列國防軍的陸戰裝備</span>
<span class="ot-toc__author">王尊平</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">抗戰80年</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4869">
<span class="ot-toc__page">P.80</span>
<span class="ot-toc__info">
<span class="ot-toc__title">宋慶齡對抗日民族統一戰線的貢獻</span>
<span class="ot-toc__author">宋菊芳</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4870">
<span class="ot-toc__page">P.83</span>
<span class="ot-toc__info">
<span class="ot-toc__title">台灣光復與新時期戰後秩序的維護</span>
<span class="ot-toc__author">汪濱</span>
</span>
</a>
</div>
</details>
<details class="ot-toc__section" open>
<summary class="ot-toc__category">關懷鄉土</summary>
<div class="ot-toc__list">
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4871">
<span class="ot-toc__page">P.85</span>
<span class="ot-toc__info">
<span class="ot-toc__title">探訪抗日名將楊泗洪故里</span>
<span class="ot-toc__author">張健豐</span>
</span>
</a>
<a class="ot-toc__item" href="https://observer-taipei.com/book2021/item/4872">
<span class="ot-toc__page">P.88</span>
<span class="ot-toc__info">
<span class="ot-toc__title">仙境張家界 峰迷全世界</span>
<span class="ot-toc__author">陳淑英</span>
</span>
</a>
</div>
</details>

</div>
{/source}