
/*上传图片插件的样式*/

.upload-box {
    padding: 0px;
    margin: 0 auto;
}

    .upload-box .clear {
        clear: both;
    }

    .upload-box .clear:after {
            content: '';
            display: block;
            clear: both;
        }

    .upload-box .upload-tip {
        margin-bottom: 20px;
        font-size: 16px;
        color: #555;
    }

    .upload-box .image-box {
        padding-right: 10px;
        border: 2px dashed #E7E6E6;
    }

.image-box section {
    position: relative;
    width: 80px;
    height: 80px;
    float: left;
}

.image-box .upload-section {
    position: relative;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.image-box .image-section {
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom:10px;
}

.image-section:hover {
    border: 1px solid #f15134;
}

/*/图片遮罩层样式*/
.image-section .image-shade {
    display: block;
    width: 100%;
    height: 100%;
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9;
    background: rgba(0,0,0,.5);
}

/*鼠标放上去时显示遮罩层*/
.image-section:hover .image-shade {
    visibility: visible;
}

.image-section .image-zoom {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 25px;
    right: 25px;
    display: none;
    z-index: 10;
    background: url(../images/zoom.png) no-repeat center;
}

.image-section .image-delete {
    position: absolute;
    width: 20px;
    height: 20px;
    top: -10px;
    right: -10px;
    display: none;
    z-index: 10;
    border-radius: 50%;
    background: url(../images/delete.png) no-repeat center;
}

.image-section:hover .image-delete {
    display: block;
    cursor: pointer;
}

.image-section:hover .image-zoom {
    display: block;
    cursor: pointer;
}

.image-section-border {
    border: 1px solid #D1D1D1;
}

.image-box .image-show {
    display: block;
    width: 100%;
    height: 100%;
}

.image-loading {
    border: 1px solid #D1D1D1;
    background: url(../images/loading.gif) no-repeat center;
}

.image-opcity {
    opacity: 0;
}




/*上传域样式*/
.upload-section .leave_image_upload_input {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100;
}

/*上传按钮样式*/
.upload-section .upload-btn {
    border: 1px dashed #d0d0d0;
    width: 80px;
    height: 80px;
    background: url(../images/upload.png) no-repeat center;
    background-size: 80px;
}

/*遮罩层样式*/
.delete-modal {
    z-index: 1000;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
}

    .delete-modal .modal-content-upload {
        width: 500px;
        position: absolute;
        top: 0px;
        left: 0px;
        /*margin-left: -250px;
        margin-top: -80px;*/
        background: white;
        height: 160px;
        text-align: center;
    }

.modal-content-upload p {
    margin: 0;
    padding: 0;
}

.modal-content-upload .modal-tip {
    color: #555;
    height: 94px;
    line-height: 94px;
    font-size: 18px;
    border-bottom: 1px solid #D1D1D1;
}

.modal-content-upload .modal-btn {
    height: 66px;
    line-height: 66px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
}

    .modal-content-upload .modal-btn span {
        width: 49.8%;
        display: inline-block;
        text-align: center;
        color: #d4361d;
        font-size: 18px;
        border-right: 1px solid #D1D1D1;
    }

.modal-btn:hover span {
    cursor: pointer;
}


/*图片预览样式*/
/*#zoom-shade {
    position: absolute;
    top: -270px;
    left: 0;
    width: 100%;
    min-height: 400px;
    height: 100%;
    z-index: 1100;
    background-color: rgb(119, 119, 119);
    opacity: 0.7;
    cursor: pointer;
    display: none;
}*/

#zoom-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    height: 440px;
    z-index: 1100;
    background-color: rgb(119, 119, 119);
    opacity: 0.8;
    cursor: pointer;
    display: none;
}


#zoom-box {
    position: relative;
    padding: 20px;
    top: 40px;
    width: 80%;
    margin: 0 auto;
}

/*#zoom-box {
    position: absolute;
    padding: 20px;
    z-index: 1101;
    outline: none;
    display: none;
    height: auto;
    top: -250px;
    left: 70px;
    width: 80%;
}*/

#zoom-content {
    outline: none;
    overflow: hidden;
    z-index: 1102;
    border: 10px solid #fff;
    opacity: 1;
    height: 320px;
}

    #zoom-content img {
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0 auto;
        border: none;
        outline: none;
        line-height: 0;
        vertical-align: top;
    }
