﻿/*shadow*/
.shadow {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    _position: absolute;
    _top: expression(documentElement.scrollTop);
    z-index: 2147483646;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5) !important;
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#7f000000', EndColorStr='#7f000000');
}

:root .shadow {
    filter: none;
}

.dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,.2) !important;
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#33ffffff', EndColorStr='#33ffffff');
    color: #000;
}

    .dialog .close {
        position: absolute;
        right: 30px;
        top: 30px;
        width: 24px;
        height: 24px;
        background: url(/Content/images/close.png) no-repeat;
        background-position: 0 -24px;
    }

    .dialog .txt {
        padding: 12px 25px;
        border: 1px solid #dadada;
        line-height: 24px;
        border-radius: 5px;
        font-family: tahoma;
        outline: none;
        color: #999;
        _color: #666;
        font-size: 14px;
        font-family: "microsoft yahei";
    }

        .dialog .txt:focus {
            color: #666;
            border-color: #0992f2;
            box-shadow: 0 0 5px #0992f2;
        }

    .dialog .dia-con {
        display: none;
        padding: 20px;
        min-height: 300px;
        background-color: #fff;
        border-radius: 15px;
    }

        .dialog .dia-con p {
            text-indent: 2em;
            font-size: 18px;
            line-height: 2;
        }

        .dialog .dia-con .t {
            margin: 0 0 20px 0;
            line-height: 1;
            font-size: 24px;
            text-align: center;
            font-weight: lighter;
        }
