feat(wiki): 新增 GHC06 任务页与图库发布体系,级联更新既有页面
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -13,177 +13,215 @@
|
||||
.wiki-article .gallery-item .thumbcaption { padding: 4px 2px 2px; }
|
||||
@media (max-width: 820px) { .wiki-article { padding: 18px 16px 36px; } .gallery-grid { grid-template-columns: 1fr; } }
|
||||
|
||||
.wiki-article img[data-wiki-asset] { cursor: zoom-in; }
|
||||
.wiki-image-lightbox { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(32,33,34,0.84); z-index: 10000; box-sizing: border-box; }
|
||||
/* mission-gallery-enhancements:start */
|
||||
.wiki-article .gallery-grid {
|
||||
grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
|
||||
align-items: stretch;
|
||||
}
|
||||
.wiki-article .gallery-item {
|
||||
display: grid;
|
||||
grid-template-rows: auto 1fr;
|
||||
overflow: hidden;
|
||||
content-visibility: auto;
|
||||
contain-intrinsic-size: 340px 300px;
|
||||
}
|
||||
.wiki-article .gallery-item img[data-wiki-asset] {
|
||||
width: 100%;
|
||||
aspect-ratio: 16 / 9;
|
||||
object-fit: contain;
|
||||
background: #202122;
|
||||
cursor: zoom-in;
|
||||
}
|
||||
.wiki-article .gallery-item .thumbcaption {
|
||||
padding: 8px 7px 7px;
|
||||
}
|
||||
.wiki-article .gallery-notice {
|
||||
margin: 1em 0 1.25em;
|
||||
padding: 10px 12px;
|
||||
border-left: 4px solid #36c;
|
||||
background: #f1f4fd;
|
||||
color: #202122;
|
||||
}
|
||||
.wiki-article .image-placeholder {
|
||||
position: relative;
|
||||
border: 1px dashed #72777d;
|
||||
background: linear-gradient(135deg, #f8f9fa, #eaecf0);
|
||||
color: #54595d;
|
||||
}
|
||||
.wiki-article.gallery-planning .gallery-grid {
|
||||
grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
|
||||
gap: 12px;
|
||||
}
|
||||
.wiki-article.gallery-planning .gallery-item {
|
||||
display: block;
|
||||
content-visibility: visible;
|
||||
contain-intrinsic-size: none;
|
||||
border-color: #a2a9b1;
|
||||
background: #fff;
|
||||
box-shadow: 0 1px 2px rgba(32, 33, 34, 0.08);
|
||||
}
|
||||
.wiki-article.gallery-planning .image-placeholder {
|
||||
min-height: 0 !important;
|
||||
display: block;
|
||||
padding: 14px 14px 12px;
|
||||
border: 0;
|
||||
border-left: 4px solid #72777d;
|
||||
background: #f8f9fa;
|
||||
color: #202122;
|
||||
text-align: left;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
line-height: 1.65;
|
||||
}
|
||||
.wiki-article.gallery-planning .gallery-item .thumbcaption {
|
||||
padding: 10px 14px 12px;
|
||||
border-top: 1px solid #eaecf0;
|
||||
color: #54595d;
|
||||
}
|
||||
.wiki-article.gallery-planning > .image-placeholder {
|
||||
min-height: 0;
|
||||
padding: 22px 18px;
|
||||
border-left: 4px solid #72777d;
|
||||
}
|
||||
.wiki-image-lightbox {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 24px;
|
||||
background: rgba(32, 33, 34, 0.88);
|
||||
z-index: 10000;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.wiki-image-lightbox[hidden] { display: none; }
|
||||
.wiki-image-lightbox-panel { position: relative; width: min(1120px, 96vw); max-height: 92vh; overflow: auto; margin: 0; padding: 10px; border: 1px solid #a2a9b1; background: #fff; box-shadow: 0 12px 38px rgba(0,0,0,0.35); box-sizing: border-box; }
|
||||
.wiki-image-lightbox-panel img { display: block; width: 100%; height: auto; max-height: 82vh; object-fit: contain; background: #000; }
|
||||
.wiki-image-lightbox-close { position: sticky; top: 0; float: right; width: 30px; height: 30px; margin: -2px -2px 8px 10px; border: 1px solid #a2a9b1; background: #eaecf0; color: #202122; font-weight: bold; line-height: 26px; cursor: pointer; }
|
||||
.wiki-image-lightbox-close:hover, .wiki-image-lightbox-close:focus { background: #fff; }
|
||||
.wiki-image-lightbox-panel {
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: 44px minmax(0, 1fr) 44px;
|
||||
grid-template-areas: "close close close" "prev image next" "counter caption caption";
|
||||
gap: 8px;
|
||||
width: min(1320px, 96vw);
|
||||
max-height: 94vh;
|
||||
overflow: auto;
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
border: 1px solid #a2a9b1;
|
||||
background: #fff;
|
||||
box-shadow: 0 12px 38px rgba(0, 0, 0, 0.35);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.wiki-image-lightbox-panel > img {
|
||||
grid-area: image;
|
||||
width: 100%;
|
||||
height: min(78vh, 900px);
|
||||
object-fit: contain;
|
||||
background: #000;
|
||||
}
|
||||
.wiki-image-lightbox-close {
|
||||
grid-area: close;
|
||||
justify-self: end;
|
||||
position: static;
|
||||
float: none;
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
margin: 0;
|
||||
border: 1px solid #a2a9b1;
|
||||
border-radius: 3px;
|
||||
background: #eaecf0;
|
||||
color: #202122;
|
||||
font-size: 22px;
|
||||
line-height: 30px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.wiki-image-lightbox-close:hover,
|
||||
.wiki-image-lightbox-close:focus { background: #fff; }
|
||||
.wiki-image-lightbox-prev { grid-area: prev; }
|
||||
.wiki-image-lightbox-next { grid-area: next; }
|
||||
.wiki-image-lightbox-nav {
|
||||
align-self: center;
|
||||
width: 40px;
|
||||
height: 56px;
|
||||
border: 1px solid #a2a9b1;
|
||||
border-radius: 3px;
|
||||
background: #eaecf0;
|
||||
color: #202122;
|
||||
font-size: 26px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.wiki-image-lightbox-nav:hover,
|
||||
.wiki-image-lightbox-nav:focus { background: #fff; }
|
||||
.wiki-image-lightbox-counter { grid-area: counter; color: #54595d; white-space: nowrap; }
|
||||
.wiki-image-lightbox-panel .thumbcaption { grid-area: caption; padding: 0 4px 3px; }
|
||||
body.wiki-image-lightbox-open { overflow: hidden; }
|
||||
@media (max-width: 820px) { .wiki-image-lightbox { padding: 12px; } .wiki-image-lightbox-panel { width: 98vw; max-height: 94vh; } }
|
||||
@media (max-width: 820px) {
|
||||
.wiki-article .gallery-grid { grid-template-columns: 1fr; }
|
||||
.wiki-image-lightbox-panel {
|
||||
grid-template-columns: 36px minmax(0, 1fr) 36px;
|
||||
width: 98vw;
|
||||
}
|
||||
.wiki-image-lightbox-panel > img { height: 70vh; }
|
||||
.wiki-image-lightbox-nav { width: 34px; height: 48px; }
|
||||
}
|
||||
/* mission-gallery-enhancements:end */
|
||||
</style>
|
||||
|
||||
<article class="mw-parser-output wiki-article">
|
||||
|
||||
<h1 id="top">广寒基地建设任务-04 任务图集</h1>
|
||||
<p><a href="/home/mission/Guanghan_Program/GHC-04">← 返回任务页</a> | 共 21 张影像,按任务阶段排列</p>
|
||||
<p style="margin-bottom:1.5em;"><b>任务图集导航</b>:<a href="/home/mission/Guanghan_Program/GHC-03/Gallery">← GHC-03 图集</a></p>
|
||||
<p style="margin-bottom:1.5em;"><b>任务图集导航</b>:<a href="/home/mission/Guanghan_Program/GHC-03/Gallery">← GHC-03 图集</a> | <a href="/home/mission/Guanghan_Program/GHC-05/Gallery">GHC-05 图集 →</a></p>
|
||||
|
||||
<p>GHC-04 是广寒计划迄今最复杂的月面任务——46 天驻留,19 次 EVA,将广寒基地从模块集合体整合为互联前哨站。以下影像记录了从双火箭发射到返回舱着陆的全流程。</p>
|
||||
<p>广寒基地建设任务-04 是广寒计划首次月面常驻任务——46 天驻留,19 次 EVA,将广寒基地从模块集合体整合为互联前哨站。以下影像记录了从双火箭发射到返回舱着陆的全流程。</p>
|
||||
|
||||
<h2>发射与地月转移</h2>
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/launch.png" alt="CZ-10E发射嫦娥5号" data-wiki-asset="/guanghan-ghc-04/launch.png"><div class="thumbcaption">CZ-10E 搭载嫦娥 5 号从文昌发射场升空。本次发射为航区回收模式——一级分离后降落在海上回收驳船。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/launch2.png" alt="CZ-10E发射嫦娥5号" data-wiki-asset="/guanghan-ghc-04/launch2.png"><div class="thumbcaption">CZ-10E 上升段另一视角,二级 YF-215X Vac 发动机正在推进。5 m 直径箭体在发射塔对比下显得紧凑。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/leaving_earth.png" alt="嫦娥5号离开地球" data-wiki-asset="/guanghan-ghc-04/leaving_earth.png"><div class="thumbcaption">嫦娥 5 号完成 TLI 后离开地球。地月转移阶段约 4 天航程,乘组在此期间进行系统检查和轨道修正。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/launch.png" alt="CZ-10E发射嫦娥5号" data-wiki-asset="/guanghan-ghc-04/launch.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">长征十号戊型运载火箭搭载嫦娥 5 号从文昌发射场升空。本次发射为航区回收模式——一级分离后降落在海上回收驳船。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/launch2.png" alt="CZ-10E发射嫦娥5号" data-wiki-asset="/guanghan-ghc-04/launch2.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">长征十号戊型运载火箭上升段另一视角,二级 YF-215X Vac 发动机正在推进。5 m 直径箭体在发射塔对比下显得紧凑。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/leaving_earth.png" alt="嫦娥5号离开地球" data-wiki-asset="/guanghan-ghc-04/leaving_earth.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">嫦娥 5 号完成 TLI 后离开地球。地月转移阶段约 4 天航程,乘组在此期间进行系统检查和轨道修正。</div></div>
|
||||
</div>
|
||||
|
||||
<h2>月球轨道操作</h2>
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/loi.png" alt="嫦娥5号近月制动" data-wiki-asset="/guanghan-ghc-04/loi.png"><div class="thumbcaption">嫦娥 5 号执行近月制动(LOI),Hecate 发动机点火将飞船减速至被月球引力捕获。下方为月球澄海区域。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/dock_wugang.png" alt="嫦娥5号对接吴刚1号" data-wiki-asset="/guanghan-ghc-04/dock_wugang.png"><div class="thumbcaption">嫦娥 5 号在 LLO 对接吴刚一号——这艘着陆器已经历 GHC-02/03 两次任务,此次是第三次复用。乘组转移至吴刚后将与嫦娥 5 号分离,执行月面下降。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/loi.png" alt="嫦娥5号近月制动" data-wiki-asset="/guanghan-ghc-04/loi.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">嫦娥 5 号执行近月制动(LOI),Hecate 发动机点火将飞船减速至被月球引力捕获。下方为月球澄海区域。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/dock_wugang.png" alt="嫦娥5号对接吴刚1号" data-wiki-asset="/guanghan-ghc-04/dock_wugang.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">嫦娥 5 号在 LLO 对接吴刚一号——这艘着陆器已经历广寒基地建设任务-02 与广寒基地建设任务-03 两次任务,此次是第三次复用。乘组转移至吴刚后将与嫦娥 5 号分离,执行月面下降。</div></div>
|
||||
</div>
|
||||
|
||||
<h2>冰轮二号 与金蟾一号 燃料转移(10 月 1–2 日)</h2>
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/wugang_landing.png" alt="吴刚1号着陆在东方海基地" data-wiki-asset="/guanghan-ghc-04/wugang_landing.png"><div class="thumbcaption">9 月 30 日 23:06,吴刚一号 着陆于东方海广寒基地。画面中可见广寒核心舱和电力模块在地平线附近。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl2_launch.png" alt="冰轮2号起飞" data-wiki-asset="/guanghan-ghc-04/bl2_launch.png"><div class="thumbcaption">10 月 1 日,冰轮二号 无人起飞——EVA-1 已完成冰轮一号 与 #2 的断开。冰轮二号 将前往 LLO 与金蟾一号 对接进行燃料转移。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl2_dock_jinchan.png" alt="冰轮2号与金蟾1号对接" data-wiki-asset="/guanghan-ghc-04/bl2_dock_jinchan.png"><div class="thumbcaption">冰轮二号 与金蟾一号 在 LLO 对接——两型可复用航天器首次在月球轨道完成燃料转移。完成后冰轮二号 返回月面,金蟾一号 点火返回地球。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/wugang_landing.png" alt="吴刚1号着陆在东方海基地" data-wiki-asset="/guanghan-ghc-04/wugang_landing.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">9 月 30 日 23:06,吴刚一号 着陆于东方海广寒基地。画面中可见广寒核心舱和电力模块在地平线附近。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl2_launch.png" alt="冰轮2号起飞" data-wiki-asset="/guanghan-ghc-04/bl2_launch.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">10 月 1 日,冰轮二号 无人起飞——EVA-1 已完成冰轮一号 与 #2 的断开。冰轮二号 将前往 LLO 与金蟾一号 对接进行燃料转移。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl2_dock_jinchan.png" alt="冰轮2号与金蟾1号对接" data-wiki-asset="/guanghan-ghc-04/bl2_dock_jinchan.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">冰轮二号 与金蟾一号 在 LLO 对接——两型可复用航天器首次在月球轨道完成燃料转移。完成后冰轮二号 返回月面,金蟾一号 点火返回地球。</div></div>
|
||||
</div>
|
||||
|
||||
<h2>金蟾一号 地球 ↔ LEO 周转(10 月 6–15 日)</h2>
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/jinchan_leo.png" alt="金蟾1号点火泊入LEO" data-wiki-asset="/guanghan-ghc-04/jinchan_leo.png"><div class="thumbcaption">10 月 6 日,金蟾一号 点火泊入 LEO。经过约 4 天的地月返回航程后进入近地轨道,等待 CZ-16 发射广寒 02 模块。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/jinchan_dock_gh02.png" alt="金蟾1号对接广寒02模块" data-wiki-asset="/guanghan-ghc-04/jinchan_dock_gh02.png"><div class="thumbcaption">10 月 14 日,金蟾一号 在 LEO 对接广寒 02 模块(由 CZ-16 于前一日发射)。金蟾完成燃料加注后——这是它的第三次物流循环——与 CZ-16 上面级分离,准备 TLI。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/jinchan_tli.png" alt="金蟾一号TLI" data-wiki-asset="/guanghan-ghc-04/jinchan_tli.png"><div class="thumbcaption">10 月 15 日 00:22,金蟾一号 执行 TLI 点火,搭载广寒 02 模块飞往月球——这是金蟾一号 的第三次地月转移。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/jinchan_leo.png" alt="金蟾1号点火泊入LEO" data-wiki-asset="/guanghan-ghc-04/jinchan_leo.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">10 月 6 日,金蟾一号 点火泊入 LEO。经过约 4 天的地月返回航程后进入近地轨道,等待长征十六号运载火箭发射广寒 02 模块。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/jinchan_dock_gh02.png" alt="金蟾1号对接广寒02模块" data-wiki-asset="/guanghan-ghc-04/jinchan_dock_gh02.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">10 月 14 日,金蟾一号 在 LEO 对接广寒 02 模块(由长征十六号运载火箭于前一日发射)。金蟾完成燃料加注后——这是它的第三次物流循环——与长征十六号运载火箭上面级分离,准备 TLI。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/jinchan_tli.png" alt="金蟾一号TLI" data-wiki-asset="/guanghan-ghc-04/jinchan_tli.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">10 月 15 日 00:22,金蟾一号 执行 TLI 点火,搭载广寒 02 模块飞往月球——这是金蟾一号 的第三次地月转移。</div></div>
|
||||
</div>
|
||||
|
||||
<h2>冰轮三号 接驳广寒 02 模块(10 月 19–21 日)</h2>
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl3_launch.png" alt="冰轮3号起飞" data-wiki-asset="/guanghan-ghc-04/bl3_launch.png"><div class="thumbcaption">10 月 20 日,冰轮三号(Block 2)无人起飞。EVA-4 期间断开与冰轮一号 的连接时不慎损坏了一块太阳能电池板(画面中可见碎裂区域)。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl3_rendezvous.png" alt="冰轮3号与金蟾一号交汇" data-wiki-asset="/guanghan-ghc-04/bl3_rendezvous.png"><div class="thumbcaption">冰轮三号 在 LLO 与金蟾一号 交会——Block 2 冰轮的加宽货仓首次执行模块接驳任务。金蟾一号 将广寒 02 模块转移给冰轮三号 后,本任务中不再执行后续物流。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl3_receive_gh02.png" alt="冰轮3号接收广寒02模块" data-wiki-asset="/guanghan-ghc-04/bl3_receive_gh02.png"><div class="thumbcaption">冰轮三号 完成广寒 02 模块的接收——模块固定在冰轮货仓上方,将在数小时后下行着陆至东方海。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl3_landing.png" alt="冰轮3号着陆" data-wiki-asset="/guanghan-ghc-04/bl3_landing.png"><div class="thumbcaption">10 月 21 日 02:34,冰轮三号 搭载广寒 02 模块着陆东方海。着陆后乘组将开始为期一周的模块拆卸和安装作业(EVA-5 至 EVA-9)。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl3_launch.png" alt="冰轮3号起飞" data-wiki-asset="/guanghan-ghc-04/bl3_launch.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">10 月 20 日,冰轮三号(Block 2)无人起飞。EVA-4 期间断开与冰轮一号 的连接时不慎损坏了一块太阳能电池板(画面中可见碎裂区域)。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl3_rendezvous.png" alt="冰轮3号与金蟾一号交汇" data-wiki-asset="/guanghan-ghc-04/bl3_rendezvous.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">冰轮三号 在 LLO 与金蟾一号 交会——Block 2 冰轮的加宽货仓首次执行模块接驳任务。金蟾一号 将广寒 02 模块转移给冰轮三号 后,本任务中不再执行后续物流。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl3_receive_gh02.png" alt="冰轮3号接收广寒02模块" data-wiki-asset="/guanghan-ghc-04/bl3_receive_gh02.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">冰轮三号 完成广寒 02 模块的接收——模块固定在冰轮货仓上方,将在数小时后下行着陆至东方海。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/bl3_landing.png" alt="冰轮3号着陆" data-wiki-asset="/guanghan-ghc-04/bl3_landing.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">10 月 21 日 02:34,冰轮三号 搭载广寒 02 模块着陆东方海。着陆后乘组将开始为期一周的模块拆卸和安装作业(EVA-5 至 EVA-9)。</div></div>
|
||||
</div>
|
||||
|
||||
<h2>基地整合后全景</h2>
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/base_overview.png" alt="广寒基地当前全览" data-wiki-asset="/guanghan-ghc-04/base_overview.png"><div class="thumbcaption">GHC-04 任务后期(11 月中旬)的广寒基地全景。从近至远:三艘冰轮呈弧形分布在电力模块周围,核心舱位于画面左上方。柔性管道网和配电电缆已完成全系统互联。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/base_overview.png" alt="广寒基地当前全览" data-wiki-asset="/guanghan-ghc-04/base_overview.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">广寒基地建设任务-04 任务后期(11 月中旬)的广寒基地全景。从近至远:三艘冰轮呈弧形分布在电力模块周围,核心舱位于画面左上方。柔性管道网和配电电缆已完成全系统互联。</div></div>
|
||||
</div>
|
||||
|
||||
<h2>返回</h2>
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/wugang_takeoff.png" alt="吴刚一号起飞" data-wiki-asset="/guanghan-ghc-04/wugang_takeoff.png"><div class="thumbcaption">11 月 17 日 15:49,吴刚一号 从月面起飞。EVA-19 已在两日前断开加压管道和所有物理连接——这是吴刚一号 第三次从广寒基地起飞。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/wugang_dock_chang_e.png" alt="吴刚一号准备对接嫦娥5号" data-wiki-asset="/guanghan-ghc-04/wugang_dock_chang_e.png"><div class="thumbcaption">11 月 18 日,吴刚一号 在 LLO 接近嫦娥 5 号准备对接。吴刚留轨后,嫦娥 5 号将独自点火返回地球。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/return_burn.png" alt="嫦娥5号点火返回地球" data-wiki-asset="/guanghan-ghc-04/return_burn.png"><div class="thumbcaption">嫦娥 5 号执行地月返回点火。画面中下方远处可见吴刚一号 继续留轨——它将进入 500×500 km 停泊轨道等待下一次任务。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/sm_sep.png" alt="嫦娥5号分离服务舱" data-wiki-asset="/guanghan-ghc-04/sm_sep.png"><div class="thumbcaption">地月返回途中,嫦娥 5 号服务舱与返回舱分离。返回舱以热盾朝前姿态准备进入大气层。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/reentry.png" alt="嫦娥5号再入" data-wiki-asset="/guanghan-ghc-04/reentry.png"><div class="thumbcaption">返回舱以约 11 km/s 速度再入大气层,烧蚀热盾承受数千度高温。11 月 20 日 13:57 着陆于文昌回收场——GHC-04 任务正式结束。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/wugang_takeoff.png" alt="吴刚一号起飞" data-wiki-asset="/guanghan-ghc-04/wugang_takeoff.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">11 月 17 日 15:49,吴刚一号 从月面起飞。EVA-19 已在两日前断开加压管道和所有物理连接——这是吴刚一号 第三次从广寒基地起飞。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/wugang_dock_chang_e.png" alt="吴刚一号准备对接嫦娥5号" data-wiki-asset="/guanghan-ghc-04/wugang_dock_chang_e.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">11 月 18 日,吴刚一号 在 LLO 接近嫦娥 5 号准备对接。吴刚留轨后,嫦娥 5 号将独自点火返回地球。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/return_burn.png" alt="嫦娥5号点火返回地球" data-wiki-asset="/guanghan-ghc-04/return_burn.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">嫦娥 5 号执行地月返回点火。画面中下方远处可见吴刚一号 继续留轨——它将进入 500×500 km 停泊轨道等待下一次任务。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/sm_sep.png" alt="嫦娥5号分离服务舱" data-wiki-asset="/guanghan-ghc-04/sm_sep.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">地月返回途中,嫦娥 5 号服务舱与返回舱分离。返回舱以热盾朝前姿态准备进入大气层。</div></div>
|
||||
<div class="gallery-item"><img src="/guanghan-ghc-04/reentry.png" alt="嫦娥5号再入" data-wiki-asset="/guanghan-ghc-04/reentry.png" loading="lazy" decoding="async" fetchpriority="low"><div class="thumbcaption">返回舱以约 11 km/s 速度再入大气层,烧蚀热盾承受数千度高温。11 月 20 日 13:57 着陆于文昌回收场——广寒基地建设任务-04 任务正式结束。</div></div>
|
||||
</div>
|
||||
|
||||
<p style="margin-top:1.5em;"><b>任务图集导航</b>:<a href="/home/mission/Guanghan_Program/GHC-03/Gallery">← GHC-03 图集</a></p>
|
||||
<p style="margin-top:1.5em;"><b>任务图集导航</b>:<a href="/home/mission/Guanghan_Program/GHC-03/Gallery">← GHC-03 图集</a> | <a href="/home/mission/Guanghan_Program/GHC-05/Gallery">GHC-05 图集 →</a></p>
|
||||
<p style="margin-top:1.5em;"><a href="/home/mission/Guanghan_Program/GHC-04">← 返回任务页</a></p>
|
||||
<script>
|
||||
(function () {
|
||||
function ready(fn) {
|
||||
if (document.readyState === 'loading') {
|
||||
document.addEventListener('DOMContentLoaded', fn, { once: true });
|
||||
} else {
|
||||
fn();
|
||||
}
|
||||
}
|
||||
|
||||
function captionFor(image) {
|
||||
var container = image.closest('figure, td, tr, .infobox-image, .gallery-item');
|
||||
if (!container) {
|
||||
return image.alt || '';
|
||||
}
|
||||
var caption = container.querySelector('.thumbcaption');
|
||||
return caption ? caption.textContent.trim() : (image.alt || '');
|
||||
}
|
||||
|
||||
function install(article) {
|
||||
if (!article || article.dataset.lightboxReady === '1') {
|
||||
return;
|
||||
}
|
||||
article.dataset.lightboxReady = '1';
|
||||
|
||||
var overlay = document.createElement('div');
|
||||
overlay.className = 'wiki-image-lightbox';
|
||||
overlay.hidden = true;
|
||||
overlay.innerHTML = '<figure class="wiki-image-lightbox-panel" role="dialog" aria-modal="true"><button class="wiki-image-lightbox-close" type="button" aria-label="Close image preview">x</button><img alt=""><figcaption class="thumbcaption"></figcaption></figure>';
|
||||
document.body.appendChild(overlay);
|
||||
|
||||
var previewImage = overlay.querySelector('img');
|
||||
var previewCaption = overlay.querySelector('figcaption');
|
||||
var closeButton = overlay.querySelector('.wiki-image-lightbox-close');
|
||||
|
||||
function closePreview() {
|
||||
overlay.hidden = true;
|
||||
previewImage.removeAttribute('src');
|
||||
previewCaption.textContent = '';
|
||||
document.body.classList.remove('wiki-image-lightbox-open');
|
||||
}
|
||||
|
||||
function openPreview(image, event) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
if (event.stopImmediatePropagation) {
|
||||
event.stopImmediatePropagation();
|
||||
}
|
||||
previewImage.src = image.currentSrc || image.src;
|
||||
previewImage.alt = image.alt || '';
|
||||
previewCaption.textContent = captionFor(image);
|
||||
overlay.hidden = false;
|
||||
document.body.classList.add('wiki-image-lightbox-open');
|
||||
closeButton.focus();
|
||||
}
|
||||
|
||||
article.querySelectorAll('img[data-wiki-asset]').forEach(function (image) {
|
||||
if (image.dataset.lightboxBound === '1') {
|
||||
return;
|
||||
}
|
||||
image.dataset.lightboxBound = '1';
|
||||
image.addEventListener('click', function (event) {
|
||||
openPreview(image, event);
|
||||
}, true);
|
||||
});
|
||||
|
||||
article.addEventListener('click', function (event) {
|
||||
var image = event.target.closest && event.target.closest('img[data-wiki-asset]');
|
||||
if (!image || !article.contains(image) || image.closest('.wiki-image-lightbox')) {
|
||||
return;
|
||||
}
|
||||
openPreview(image, event);
|
||||
});
|
||||
|
||||
closeButton.addEventListener('click', closePreview);
|
||||
overlay.addEventListener('click', function (event) {
|
||||
if (event.target === overlay) {
|
||||
closePreview();
|
||||
}
|
||||
});
|
||||
document.addEventListener('keydown', function (event) {
|
||||
if (event.key === 'Escape' && !overlay.hidden) {
|
||||
closePreview();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function installAll() {
|
||||
document.querySelectorAll('.wiki-article, .vulture-article').forEach(install);
|
||||
}
|
||||
|
||||
ready(function () {
|
||||
installAll();
|
||||
if (window.MutationObserver) {
|
||||
var observer = new MutationObserver(installAll);
|
||||
observer.observe(document.body, { childList: true, subtree: true });
|
||||
}
|
||||
window.setTimeout(installAll, 500);
|
||||
window.setTimeout(installAll, 1500);
|
||||
window.setTimeout(installAll, 3000);
|
||||
});
|
||||
}());
|
||||
</script>
|
||||
</article>
|
||||
|
||||
Reference in New Issue
Block a user