diff --git a/construction.html b/construction.html index a1f35ad..a965e47 100644 --- a/construction.html +++ b/construction.html @@ -1,101 +1,438 @@ - - - - - - - - - 建造模拟 - 轻索方舱 | 高海拔环境乡村医疗服务基站 - - - - - - - - - - - - - - - - - - -
+ + +
-

场地总图

-
-

在此处插入场地总图的详细说明...

+

建造总图

+
+ 建造总图 +
-
-
-

建造流程

-
-

在此处插入建造流程的详细说明...

-
-
-
- -
+ +

构件表

-
-

在此处插入构件表的详细说明...

+ + +
+

2.1 基座部分

+ + +
+
+ 基座部分示意图 + +
+
+ + + + + + + + + + + + + + + +
编号名称规格数量
B-01基础梁200×400mm12
B-02柱基础500×500mm8
B-03地脚螺栓M2032
B-04垫层C15混凝土1
+
+
+ + +
+ +
← 左右滑动查看更多 →
+
+
+ + +
+

2.2 主体结构部分

+ + +
+
+ 主体结构示意图 + +
+
+ + + + + + + + + + + + + + + +
编号名称规格数量
M-01钢柱H200×2008
M-02钢梁H250×12516
M-03拉索Φ1224
M-04连接件M1664
+
+
+ + +
+ +
← 左右滑动查看更多 →
+
+
+ + +
+

2.3 屋面围护部分

+ + +
+
+ 屋面围护示意图 + +
+
+ + + + + + + + + + + + + + + +
编号名称规格数量
R-01屋面板1200×6000mm20
R-02檩条C160×6040
R-03防水层TPO卷材1
R-04保温层岩棉板100mm1
+
+
+ + +
+ +
← 左右滑动查看更多 →
+
+
+ + +
+

2.4 墙面围护部分

+ + +
+
+ 墙面围护示意图 + +
+
+ + + + + + + + + + + + + + + +
编号名称规格数量
W-01外墙板1200×3000mm48
W-02龙骨C75×5096
W-03玻璃窗1500×1800mm12
W-04900×2100mm4
+
+
+ + +
+ +
← 左右滑动查看更多 →
+
+
+ + +
+

2.5 温棚部分

+ + +
+
+ 温棚示意图 + +
+
+ + + + + + + + + + + + + + + +
编号名称规格数量
G-01骨架镀锌钢管24
G-02覆盖膜PO膜0.12mm1
G-03通风窗电动开启4
G-04遮阳网外遮阳系统1
+
+
+ + +
+ +
← 左右滑动查看更多 →
+
+
+ + +
+

2.6 设备部分

+ + + + + + + + + + + + + + + + + + + + + +
编号设备名称型号规格数量备注
E-01太阳能光伏板550W单晶20屋顶安装
E-02逆变器10kW2室内安装
E-03蓄电池组48V/200Ah4储能系统
E-04雨水收集系统5000L1地下埋设
E-05净水设备RO反渗透1室内安装
E-06供暖设备空气源热泵2室外安装
E-07通风系统新风换气机2吊顶安装
E-08照明系统LED智能控制1全屋覆盖
-
-
-

© 2026 毕业设计展示 | 青藏高原轻钢拉索结构医疗站

-
-
- - - - - diff --git a/css/style.css b/css/style.css index 6ddbe21..304a9c0 100644 --- a/css/style.css +++ b/css/style.css @@ -1385,3 +1385,138 @@ body { max-height: 50vh; } } + +/* ======================================== + 建造模拟 - 构件表专用样式 + ======================================== */ + +/* 子板块标题 */ +.subsection { + margin-bottom: var(--spacing-xl); + padding-bottom: var(--spacing-lg); + border-bottom: 2px solid var(--primary-muted); +} + +.subsection:last-child { + border-bottom: none; +} + +.subsection-title { + font-size: 1.8rem; + color: var(--text-primary); + margin-bottom: var(--spacing-md); + font-weight: 600; + letter-spacing: 1px; +} + +/* 上方左图右表布局 */ +.text-image-layout .layout-images img { + width: 100%; + height: auto; + max-height: 500px; + object-fit: contain; + background: #FFFFFF; + border-radius: var(--border-radius); + box-shadow: var(--shadow-soft); +} + +.placeholder-text.medium { + min-height: 400px; + display: flex; + align-items: center; + justify-content: center; + background: linear-gradient(135deg, var(--primary-muted) 0%, var(--primary-light) 100%); + color: var(--primary-dark); + font-size: 1.2rem; + border-radius: var(--border-radius); +} + +/* 下方横向滑动小图 */ +.image-slider-container { + margin-top: var(--spacing-lg); +} + +.slider-hint { + text-align: center; + color: var(--text-secondary); + font-size: 0.9rem; + margin-top: var(--spacing-sm); + font-style: italic; +} + +.image-slider.construction-gallery .slider-item { + width: 250px; + flex-shrink: 0; +} + +.image-slider.construction-gallery .slider-item img { + width: 100%; + height: 200px; + object-fit: contain; + background: #FFFFFF; + border-radius: var(--border-radius); + box-shadow: var(--shadow-soft); +} + +.image-slider.construction-gallery .image-caption { + font-size: 0.85rem; + padding: var(--spacing-xs) 0; + border-top: 1px solid var(--primary-muted); +} + +/* 响应式调整 */ +@media (max-width: 1024px) { + .text-image-layout { + flex-direction: column; + } + + .layout-images { + width: 100%; + } + + .layout-table-right { + width: 100%; + } + + .text-image-layout .layout-images img { + max-height: 400px; + } + + .placeholder-text.medium { + min-height: 300px; + } + + .image-slider.construction-gallery .slider-item { + width: 200px; + } + + .image-slider.construction-gallery .slider-item img { + height: 160px; + } +} + +@media (max-width: 768px) { + .subsection-title { + font-size: 1.5rem; + } + + .text-image-layout .layout-images img { + max-height: 300px; + } + + .placeholder-text.medium { + min-height: 250px; + } + + .image-slider.construction-gallery .slider-item { + width: 180px; + } + + .image-slider.construction-gallery .slider-item img { + height: 140px; + } + + .image-slider.construction-gallery .image-caption { + font-size: 0.8rem; + } +}