        /* 重置浏览器默认样式 */
        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow: hidden; /* 防止出现滚动条 */
        }

        #iframe-container {
            position: relative;
            width: 100%;
            min-height: 100vh; /* 加载时默认高度 */
            overflow: hidden;
        }

        #logo-container{
            position: absolute;
            left:0;
            top: 0;
            z-index: 10;
            width: 86px;
            height: 56px;
            background-color: #ffffff;
        }
        #logo{
            display: block;
            padding: 16px 4px;
        }
        
        /* iframe样式，确保填满整个视口 */
        #embedded-frame {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 9;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* 响应式设计，确保在各种设备上都能正常显示 */
        @media screen and (max-width: 768px) {
            #embedded-frame {
                height: 100svh; /* 小屏幕设备使用安全视口高度（如果浏览器支持） */
            }
        }
        /* 触摸滚动优化 */
        .iframe-container {
        -webkit-overflow-scrolling: touch;
        }

        @media (pointer: coarse) {
        iframe {
            /* 移动端点击延迟优化 */
            touch-action: manipulation;
        }
        }