﻿/*覆盖网页的层*/
.digDiv1
{
    background-color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    opacity: 0.1; /*透明度 */
}

/*模式窗口层*/
.digDiv2
{

    position: absolute;
    z-index: 2;
    display: none;
    border: 1px inset white;
    background-color: white;
}


/*覆盖网页的层*/
.digDiv1
{
    position: fixed;
    left: 0px;
    top: 0;
    bottom: 0px;
    right: 0px;
    background-color: #273240;
    z-index: 9997;
    opacity: 0.4;
    filter: alpha(opacity=50); /*透明度 */
    display: none;
    overflow-y:hidden;
}

/*模式窗口层*/
.digDiv2
{
    text-align: center;
    background-color: white;
    left: 40%;
    top: 35%;
    border: 1px solid gainsboro;
    z-index: 9998;
    position: absolute;
    display: none;
}

/* 标题栏 */
.digTitle
{
    height: 35px;
    line-height: 35px;
    background-color: #F8F8F8;
    text-align: left;
    text-indent: 15px;
    font-size: 14px;
    position: relative;
    border-bottom: solid 1px #bebebe;
}

/* 标题栏-关闭按钮 */
.digClose
{
    top: 6px;
    right: 20px;
    line-height: 30px;
    position: absolute;
}
.digClose i
{
    font-size: 18px;
}
.digClose i:hover
{
    color: red;
    cursor: pointer;
}
/* 内容页 */
.digContent
{
    position: relative;
    font-size: 13px;
    color: red;
    text-align: center;
    line-height: 25px;
    height: 110px;
    overflow: auto;
}

/* 操作栏 */
.digFooter
{
    height: 35px;
    background-color: #F8F8F8;
    position: relative;
    border-top: solid 1px #bebebe;
}
.digFooter input
{
    float: right;
    margin-right: 10px;
}
#digIfmContent
{
    border: none;
}

