<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "gb2312";

.dialog-overlay
{
    opacity:0.5;
    filter:alpha(opacity:50);
    background:gray;
}

.dialog
{
    /*border:5px solid rgba(200,200,200,0.9);*/
    background:gray;
    padding:10px;
    opacity:1;
    filter:alpha(opacity:70);
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    _width:expression('200px'); /* IE6下不指定此值，会一直粘在右侧 */
}



.dialog .bar
{
    cursor:move;
    color:#fff;
    background:#000;
    padding:6px;
	width:660px;
    min-height:15px; /* 不指定此值，在title和closeText都为空的情况下，可能移动条会消失不见 */
    _height:expression('20px'); /* ie6下不指定高度，标题栏会变得很小 */
}

.dialog .bar .title
{
    float:left;
    margin-right:10px;
}

.dialog .bar .close
{
    float:right;
    cursor:pointer;
    text-decoration:underline;
}

.dialog .content
{
    background:#fff;
    padding:10px;
	width:660px;
	height:575px;
}

.dialog iframe
{
    width:100%;
	height:100%;
}



/* 指定图像最大尺寸，不需要可以删除。 */
.content img
{
    overflow:auto;
    max-width:700px;
    max-height:500px;
    /* IE6版的max-width和max-height，但是也会有点BUG在图片太小时，也会显示最大值，需要同时指定width和height */
    _width:expression((document.body.clientWidth &gt; 700) ? '700px' : 'auto');
    _height:expression((document.body.clientHeight &gt; 500) ? '500px' : 'auto');
}

</pre></body></html>