/* iframe公共样式 */
.common-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.common-header iframe {
    width: 100%;
    border: none;
    display: block;
}

.common-footer {
    width: 100%;
}

.common-footer iframe {
    width: 100%;
    min-height: 200px;
    border: none;
    display: block;
}

/* 页面内容占位 - 为固定导航栏留出空间 */
.page-content-wrapper {
    /* 高度会通过JavaScript动态调整 */
}

/* iframe加载状态 */
.iframe-loading {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    /* 响应式样式会通过JavaScript动态调整 */
}