@charset "UTF-8";
/*
    官网：www.95mxd.com
*/

body {background: transparent;font-size: 12px;font-family: "微软雅黑";}
a {color: #000;text-decoration: none;font-size: 12px;}
a:hover {color: #f00;text-decoration: underline;}
.red {color: #f00;}
.tableBorder1 { FONT-WEIGHT: normal; FONT-SIZE: 12px; BORDER-LEFT: #20a3c7fa 0px solid; LINE-HEIGHT: normal; FONT-STYLE: normal; BACKGROUND-COLOR: #20a3c7fa; FONT-VARIANT: normal }
.tableBorder1 th {color: #fff;}
.tableBorder1 td b{font-size:13px;}
.banner { width: 1250px; margin: 0 auto; height: 210px; overflow: hidden; position: relative; background: url('wmtx5.gif') no-repeat; }
.footer {background: #4C0405;width: 1100;margin: 0 auto;color: #fff;padding:20px 0;line-height:28px;}
.th th {padding:10px 0;}
// 在 01mxd.com 页面中
function getActualContentHeight() {
    const body = document.body;
    const html = document.documentElement;
    
    // 取文档高度和滚动高度中的较大值
    const height = Math.max(
        body.scrollHeight, 
        body.offsetHeight, 
        html.clientHeight, 
        html.scrollHeight, 
        html.offsetHeight
    );
    
    return height;
}

// 周期性检查高度变化
setInterval(() => {
    const height = getActualContentHeight();
    if (window.parent && height !== lastHeight) {
        window.parent.postMessage(
            { height: height, type: 'iframe-resize' },
            '*'
        );
        lastHeight = height;
    }
}, 100);