.ui-dialog {
    display: none;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: arial,'Hiragino Sans GB',sans-serif;
    position: fixed;
    left: 40%;
    top: 40%
}

.ui-dialog-close {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: #FFF;
    font-weight: 700;
    font-family: cursive
}

.ui-dialog-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .3;
    display: none;
    filter: alpha(opacity=30)
}

.ui-dialog-title {
    background-color: #288df0;
    color: #fff;
    padding: 5px 10px
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        -moz-transform: scale3d(.3,.3,.3);
        -ms-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@-moz-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        -moz-transform: scale3d(.3,.3,.3);
        -ms-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0,0,0)
    }

    100% {
        opacity: 1;
        transform: scale3d(1,1,1)
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
        transform: scale3d(1,1,1)
    }

    100% {
        opacity: 0;
        transform: scale3d(0,0,0)
    }
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
        transform: scale3d(1,1,1)
    }

    100% {
        opacity: 0;
        transform: scale3d(0,0,0)
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    -moz-animation-name: zoomIn;
    -ms-animation-name: zoomIn;
    animation-name: zoomIn
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    -moz-animation-name: zoomOut;
    -ms-animation-name: zoomOut;
    animation-name: zoomOut
}

.animated {
    -webkit-animation-duration: .5s;
    -ms-animation-duration: .5s;
    -moz-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both
}

#confirmDialog {
    width: 350px;
    background-color: #fff
}

.ui-alert-title,.ui-confirm-title {
    white-space: nowrap;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 40px
}

.confirm-title2 {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    text-align: center;
    line-height: 1.8
}

.ui-alert-submit,.ui-confirm-submit,.ui-dialog-submit {
    background-color: #e05658
}

.ui-confirm-close,.ui-confirm-no,.ui-dialog-cancel {
    background-color: #999
}

.ui-dialog-action {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    border: none
}

.ui-dialog-action td {
    text-align: center;
    border: none
}

.ui-dialog-action button {
    display: inline-block;
    border-radius: 5px;
    padding: 5px 20px;
    color: #fff;
    border: none;
    outline: 0;
    cursor: pointer;
    box-sizing: border-box
}

.ui-alert {
    border-radius: 5px;
    overflow: hidden;
    padding: 20px
}

.ui-alert .ui-dialog-close {
    display: none
}

.ui-alert .ui-alert-submit {
    margin: 0 auto
}

.ui-alert-info {
    text-align: center;
    margin-top: 20px
}

.ui-preview {
    background-color: rgba(0,0,0,.5);
    border: none;
    color: #fff
}

#imgPreview>div {
    background: url(loading.gif) center center no-repeat;
    background-size: 2rem 2rem;
    height: 100%;
    float: left;
    box-sizing: border-box;
    display: inline-block;
    font-size: 0;
    position: relative
}

#imgPreview,#imgPreview>div img {
    position: absolute
}

.ui-preview .imgViewTop {
    height: 24px;
    line-height: 24px
}

.ui-preview .ui-dialog-close {
    font-size: 24px;
    z-index: 2;
    line-height: 1;
    right: 0;
    padding: 0 10px 3px
}

.pos-relative {
    position: relative
}
