﻿/*公共包*/
.jzart {
    position: absolute;
    color: #333;
    display: block;
    min-width: 10px;
    font-size: 14px;
    line-height: 150%;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #c3c3c3;
    box-shadow: 0 2px 4px #c3c3c3;
    font-family: Microsoft YaHei;
}

    .jzart a, .jzart input {
        outline: none;
        resize: none;
    }

    /*头部*/
    .jzart .jzart-header {
        height: 40px;
        padding: 0 15px;
        min-width: 150px;
        line-height: 40px;
        white-space: nowrap;
        background-color: #fdfafa;
        border-bottom: 1px solid #ddd;
    }

        .jzart .jzart-header .jzart-header-title {
            font-size: 16px;
            margin-right: 50px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .jzart .jzart-header .jzart-header-cloase {
            border: none;
            float: right;
            color: #b4b4b4;
            cursor: pointer;
            font-size: 18px;
            line-height: 40px;
            text-decoration: none;
            vertical-align: middle;
        }

            .jzart .jzart-header .jzart-header-cloase:hover {
                color: #333;
                text-decoration: none;
            }

    /*内容*/
    .jzart .jzart-body {
        overflow-y: auto;
        overflow-x: hidden;
        padding: 20px 25px;
        word-break: break-all;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    /*弹窗*/
    .jzart .jzart-iframe {
        width: 100%;
        border: none;
        height: 400px;
        box-sizing: border-box;
    }

    /*底部按钮包*/
    .jzart .jzart-footer {
        min-width: 200px;
        text-align: right;
        box-sizing: border-box;
        padding: 10px 20px 10px 30px;
    }

    /*确定按钮*/
    .jzart .art-ok {
        color: #fff;
        font-size: 15px;
        cursor: pointer;
        line-height: 1.5;
        margin-left: 15px;
        text-align: center;
        border-radius: 3px;
        white-space: nowrap;
        display: inline-block;
        padding: 0.3em 0.85em;
        text-decoration: none;
        background-color: #17a2b8;
        border: 1px solid transparent;
    }

        .jzart .art-ok:link, .jzart .art-ok:visited {
            color: #fff;
            background-color: #17a2b8;
        }

        .jzart .art-ok:hover, .jzart .art-ok:active {
            color: #fff;
            text-decoration: none;
            background-color: #138496;
        }

    /*取消按钮*/
    .jzart .art-cancel {
        color: #333;
        font-size: 15px;
        cursor: pointer;
        line-height: 1.5;
        text-align: center;
        border-radius: 3px;
        white-space: nowrap;
        display: inline-block;
        padding: 0.34em 0.88em;
        text-decoration: none;
        background-color: #fff;
        border: 1px solid #cccccc;
    }

        .jzart .art-cancel:link, .jzart .art-cancel:visited {
            color: #333;
            text-decoration: none;
            background-color: #fff;
        }

        .jzart .art-cancel:hover, .jzart .art-cancel:active {
            color: #333;
            text-decoration: none;
            border: 1px solid #999;
            background-color: #f2f2f2;
        }



    /*  小提示 三角符号*/
    .jzart .tip-em {
        position: absolute;
        width: 0;
        height: 0;
        font-size: 0;
        line-height: 0;
        border-width: 9px;
        border-style: dashed;
        border-color: transparent;
    }

    /* 上 */
    .jzart .em-top1 {
        left: 15px;
        bottom: -18px;
        border-top-style: solid;
        border-top-color: #b4b4b4;
    }

    .jzart .em-top2 {
        left: 15px;
        bottom: -16px;
        border-top-color: #fff;
        border-top-style: solid;
    }
    /* 右 */
    .jzart .em-right1 {
        top: 15px;
        left: -18px;
        border-right-style: solid;
        border-right-color: #b4b4b4;
    }

    .jzart .em-right2 {
        top: 15px;
        left: -16px;
        border-right-color: #fff;
        border-right-style: solid;
    }
    /* 左 */
    .jzart .em-left1 {
        top: 15px;
        right: -18px;
        border-left-style: solid;
        border-left-color: #b4b4b4;
    }

    .jzart .em-left2 {
        top: 15px;
        right: -16px;
        border-left-color: #fff;
        border-left-style: solid;
    }
    /* 下 */
    .jzart .em-bottom1 {
        top: -18px;
        left: 15px;
        border-bottom-style: solid;
        border-bottom-color: #b4b4b4;
    }

    .jzart .em-bottom2 {
        top: -16px;
        left: 15px;
        border-bottom-color: #fff;
        border-bottom-style: solid;
    }




/*  遮罩层 */
.jzart-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    position: fixed;
    background-color: black;
    filter: alpha(opacity=30);
}
