﻿.NZ-Window-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111;
    opacity: 0.3;
}

.NZ-Window-normal {
    box-sizing: initial;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1000;
    min-width: 180px;
    min-height: 50px;
    box-shadow: 1px 1px 50px rgba(100,100,100,.3);
}

.NZ-Window-normal-title {
    height: 42px;
    line-height: 42px;
    background-color: #e8e8e8;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: move;
    text-indent: 10px;
    /*border-bottom: 1px solid #eee;*/
    border-radius: 2px 2px 0 0;
}

.NZ-Window-normal-operate {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

    .NZ-Window-normal-operate::after {
        clear: both;
    }

    .NZ-Window-normal-operate > li {
        float: right;
        margin: 0;
        padding: 0;
        width: 44px;
        height: 42px;
        background-size: 35px;
        position: relative;
        transition: all .3s;
        -webkit-transition: all .3s;
    }

        .NZ-Window-normal-operate > li::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
        }

        .NZ-Window-normal-operate > li:hover::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            z-index: 5;
            opacity: 0.2;
            transition: all .4s;
            -webkit-transition: all .4s;
        }

        .NZ-Window-normal-operate > li.white:hover::after {
            background-color: #ccc;
        }

        .NZ-Window-normal-operate > li.black:hover::after {
            background-color: #888;
        }


        .NZ-Window-normal-operate > li::before {
            content: "";
            width: 30px;
            height: 30px;
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -15px;
            margin-top: -15px;
            z-index: 6;
            transition: all .3s;
            -webkit-transition: all .3s;
        }

        .NZ-Window-normal-operate > li.close {
            opacity: 1; /*兼容bootstrap的css，防止被处理为透明*/
            filter: alpha(opacity=100);
        }

            .NZ-Window-normal-operate > li.close:hover::after {
                content: "";
                background-color: #ff0000;
                opacity: 0.9;
                transition: all .4s;
                -webkit-transition: all .4s;
            }

            .NZ-Window-normal-operate > li.close.black::before {
                background: url(../Image/window/disposebtn-black.png) center 1px no-repeat;
            }

            .NZ-Window-normal-operate > li.close.white::before {
                background: url(../Image/window/disposebtn-white.png) center 1px no-repeat;
            }

        .NZ-Window-normal-operate > li.max.black::before {
            background: url(../Image/window/disposebtn-black.png) center -29px no-repeat;
        }

        .NZ-Window-normal-operate > li.max.white::before {
            background: url(../Image/window/disposebtn-white.png) center -29px no-repeat;
        }

        .NZ-Window-normal-operate > li.normal.black::before {
            background: url(../Image/window/disposebtn-black.png) center -60px no-repeat;
        }

        .NZ-Window-normal-operate > li.normal.white::before {
            background: url(../Image/window/disposebtn-white.png) center -60px no-repeat;
        }

        .NZ-Window-normal-operate > li.newWindow.black::before {
            background: url(../Image/window/disposebtn-black.png) center -89px no-repeat;
        }

        .NZ-Window-normal-operate > li.newWindow.white::before {
            background: url(../Image/window/disposebtn-white.png) center -89px no-repeat;
        }

        .NZ-Window-normal-operate > li.refresh.black::before {
            background: url(../Image/window/disposebtn-black.png) center -119px no-repeat;
        }

        .NZ-Window-normal-operate > li.refresh.white::before {
            background: url(../Image/window/disposebtn-white.png) center -119px no-repeat;
        }

.NZ-Window-normal-conLocation {
    position: absolute;
    left: 0;
    right: 0;
    top: 42px;
    bottom: 0;
}

.NZ-Window-normal-con {
    z-index: 99;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: auto;
}

    .NZ-Window-normal-con iframe {
        width: 100%;
        height: 100%;
        border: 0;
        margin: 0;
        padding: 0;
    }

.NZ-Window-normal-loadingbg {
    z-index: 101;
    background-color: #fff;
    opacity: 0.1;
}

.NZ-Window-normal-resize {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 999;
    cursor: nwse-resize;
}

.NZ-Window-normal-marchIn {
    animation: NZ-Window-scaleIn;
    animation-duration: .58s;
    animation-timing-function: cubic-bezier(1,-0.04,.03,1.37);
    -webkit-animation: NZ-Window-scaleIn;
    -webkit-animation-duration: .58s;
    -webkit-animation-timing-function: cubic-bezier(1,-0.04,.03,1.37);
}

.NZ-Window-normal-marchOut {
    animation: NZ-Window-scaleOut;
    animation-duration: .3s;
    animation-timing-function: cubic-bezier(.78,-0.52,.37,1.06);
    animation-fill-mode: forwards;
    -webkit-animation: NZ-Window-scaleOut;
    -webkit-animation-duration: .3s;
    -webkit-animation-timing-function: cubic-bezier(.78,-0.52,.37,1.06);
    -webkit-animation-fill-mode: forwards;
}

.NZ-Window-bg-Motion-In {
    animation: NZ-Window-bgFadeIn;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.7,.25,.73,.95);
    -webkit-animation: NZ-Window-bgFadeIn;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-duration: .4s;
    -webkit-animation-timing-function: cubic-bezier(.7,.25,.73,.95);
}

.NZ-Window-bg-Motion-Out {
    animation: NZ-Window-bgFadeOut;
    animation-fill-mode: forwards;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.7,.25,.73,.95);
    -webkit-animation: NZ-Window-bgFadeOut;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-duration: .4s;
    -webkit-animation-timing-function: cubic-bezier(.7,.25,.73,.95);
}

.NZ-Window-loading {
    width: 110px;
    height: 30px;
    position: absolute;
    left: 5%;
    bottom: 5%;
    z-index: 102;
}

.k-line11-1 {
    animation: k-loadingP 2s infinite;
    -webkit-animation: k-loadingP 2s infinite;
}

.k-line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #4b9cdb;
}

.k-line11-2 {
    animation: k-loadingP 2s infinite;
    animation-delay: .15s;
    -webkit-animation: k-loadingP 2s infinite;
    -webkit-animation-delay: .15s;
}

.k-line11-3 {
    animation: k-loadingP 2s infinite;
    animation-delay: .30s;
    -webkit-animation: k-loadingP 2s infinite;
    -webkit-animation-delay: .30s;
}

.k-line11-4 {
    animation: k-loadingP 2s infinite;
    animation-delay: .45s;
    -webkit-animation: k-loadingP 2s infinite;
    -webkit-animation-delay: .45s;
}

.k-line11-5 {
    animation: k-loadingP 2s infinite;
    animation-delay: .60s;
    -webkit-animation: k-loadingP 2s infinite;
    -webkit-animation-delay: .60s;
}

@keyframes k-loadingP {
    0% {
        transform: translateY(0);
    }

    35% {
        transform: translateY(0);
        opacity: .3;
    }

    50% {
        transform: translateY(-20px);
        opacity: .8;
    }

    70% {
        transform: translateY(3px);
        opacity: .8;
    }

    85% {
        transform: translateY(-3px);
    }
}

@-webkit-keyframes k-loadingP {
    0% {
        -webkit-transform: translateY(0);
    }

    35% {
        -webkit-transform: translateY(0);
        opacity: .3;
    }

    50% {
        -webkit-transform: translateY(-20px);
        opacity: .8;
    }

    70% {
        -webkit-transform: translateY(3px);
        opacity: .8;
    }

    85% {
        -webkit-transform: translateY(-3px);
    }
}

/*Window-Panel*/
.NZ-Window-panel-virtual {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: transparent;
    overflow-y: auto;
    z-index: 1000;
}

.NZ-Window-panel {
    width: 60%;
    min-width: 600px;
    max-width: 95%;
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    margin: 50px auto;
    padding: 40px;
}

.NZ-Window-panel-Close {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -85px;
    top: 0px;
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    line-height: 50px;
    transition: all .1s;
    -webkit-transition: all .1s;
}

    .NZ-Window-panel-Close:hover {
        transition: all .1s;
        transform: rotate(360deg);
        -webkit-transition: all .1s;
        -webkit-transform: rotate(360deg);
        color: #ff6a00;
    }

.NZ-motion-ghost {
    animation: ghost;
    animation-duration: .15s;
    animation-timing-function: linear;
    -webkit-animation: ghost;
    -webkit-animation-duration: .15s;
    -webkit-animation-timing-function: linear;
}

.NZ-motion-panelIn {
    animation: scaleIn;
    animation-duration: .3s;
    animation-timing-function: ease-in;
    -webkit-animation: scaleIn;
    -webkit-animation-duration: .3s;
    -webkit-animation-timing-function: ease-in;
}

.NZ-motion-panelOut {
    animation: scaleOut;
    animation-duration: .2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    -webkit-animation: scaleOut;
    -webkit-animation-duration: .2s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-out;
}


@keyframes NZ-Window-bgFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.3;
    }
}

@-webkit-keyframes NZ-Window-bgFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.3;
    }
}

@keyframes NZ-Window-bgFadeOut {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes NZ-Window-bgFadeOut {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
    }
}

@keyframes NZ-Window-scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes NZ-Window-scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes NZ-Window-scaleOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.1;
        transform: scale(0.7);
    }
}

@-webkit-keyframes NZ-Window-scaleOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
    }

    100% {
        opacity: 0.1;
        -webkit-transform: scale(0.7);
    }
}

@keyframes ghost {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.03);
    }
}

@-webkit-keyframes ghost {
    0% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.03);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes scaleIn {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

@-webkit-keyframes scaleOut {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(0.9);
        opacity: 0;
    }
}
