Files
bim_engine/src/bim-engine.css

23 lines
447 B
CSS
Raw Normal View History

.bim-engine-wrapper {
position: relative;
width: 100%;
height: 100%;
font-family: sans-serif;
2025-12-04 18:39:07 +08:00
color: #bf1d1d;
box-sizing: border-box;
2025-12-04 18:39:07 +08:00
overflow: hidden;
/* 防止内容溢出 */
}
2025-12-04 18:39:07 +08:00
/* ... (中间代码不变) ... */
/* 操作按钮组容器 */
.bim-engine-opt-btn-container {
position: absolute;
/* 改为绝对定位 */
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 100;
}