﻿
/*封装插件的样式*/


/*----------------------------Begin  加载框----------------------------------*/
.Sharp_Loading {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999999;
    display: none;
}

    .Sharp_Loading div {
        position: absolute;
        top: 50%;
        left: 40%;
        border: 1px solid #ccc;
        padding: 0px 30px 0 60px;
        height: 50px;
        line-height: 50px;
        background: #fff url('/Images/Platform/Commom/Tips/loading.gif') no-repeat scroll 0.13rem 0.09rem;
        background-position-y: center;
        background-position-x: 20px;
        border-radius: 5px;
    }
/*----------------------------End  加载框----------------------------------*/
/*----------------------Begin  信息提示框----------------------------------*/
.Sharp_Tips {
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 0px 30px 0 60px;
    height: 45px;
    line-height: 45px;
    color: #333;
    z-index: 999999;
    border-radius: 5px;
}

    /*提示信息成功 浅绿色*/
    .Sharp_Tips.success {
        background: #afde5c url('/Images/Platform/Commom/Tips/success.png') no-repeat scroll 0.13rem 0.09rem;
        /*color: #3c763d;*/
        color: #fff;
    }

    /*提示信息失败 浅红色*/
    .Sharp_Tips.error {
        background: #de815c url('/Images/Platform/Commom/Tips/error.png') no-repeat scroll 0.13rem 0.09rem;
        /*color: #a94442;*/
        color: #fff;
    }
    /*提示信息为空 蓝色*/
    .Sharp_Tips.none {
        background: #53c5ff url('/Images/Platform/Commom/Tips/none.png') no-repeat scroll 0.13rem 0.09rem;
        color: #fff;
    }
    /*提示信息为警告  浅黄色*/
    .Sharp_Tips.warning {
        background: #deb25c url('/Images/Platform/Commom/Tips/warning.png') no-repeat scroll 0.13rem 0.09rem;
        /*color: #8a6d3b;*/
        color: #fff;
    }
    /*提示信息为问题 浅蓝色*/
    .Sharp_Tips.question {
        background: #5cafde url('/Images/Platform/Commom/Tips/question.png') no-repeat scroll 0.13rem 0.09rem;
        /*color: #31708f;*/
        color: #fff;
    }

    /*提示信息字符串 浅灰色*/
    .Sharp_Tips.note {
        background: #f5f5f5 url('/Images/Platform/Commom/Tips/note.png') no-repeat scroll 0.13rem 0.09rem;
        color: #999;
        border: 1px solid #f7f7f7;
    }


    .Sharp_Tips.success,
    .Sharp_Tips.error,
    .Sharp_Tips.none,
    .Sharp_Tips.warning,
    .Sharp_Tips.question,
    .Sharp_Tips.note {
        background-size: 20px;
        background-position-y: center;
        background-position-x: 20px;
    }
/*----------------------End  信息提示框----------------------------------*/
/*----------------------Begin  信息询问框----------------------------------*/
.Sharp_ConfirmModal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
}

.Sharp_Confirm {
    position: absolute;
    left: 45%;
    top: 30%;
    background: #fff;
    border-radius: 5px;
    width: 350px;
    border: 1px solid #e5e5e5;
    padding: 0 0 10px 0;
}

    .Sharp_Confirm .Sharp_Confirm_Header {
        padding: 10px 16px;
        border-bottom: 1px solid #e5e5e5;
    }

        .Sharp_Confirm .Sharp_Confirm_Header > span:last-child {
            cursor: pointer;
        }

    .Sharp_Confirm .Sharp_Confirm_Content {
        margin: 20px 16px;
    }

        .Sharp_Confirm .Sharp_Confirm_Content img {
            width: 20px;
            height: auto;
            margin: 0 10px 0 0;
        }

    .Sharp_Confirm .Sharp_BtnsBlock {
        text-align: center;
    }

/*----------------------End  信息询问框----------------------------------*/
/*----------------------Begin  下拉列表----------------------------------*/
.Sharp_ComBox {
    position: relative;
    width: 150px;
}

    .Sharp_ComBox select {
        padding: 2px 20px 2px 10px;
        border: 0;
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        border: 1px solid #ced4da;
        border-radius: 3px;
    }

        .Sharp_ComBox select img {
            width: 10px;
            height: auto;
            position: absolute;
            right: 0;
        }

        .Sharp_ComBox select:focus {
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }



    .Sharp_ComBox .selectpicker {
        display: inline-block !important;
        width: 150px;
    }

    .Sharp_ComBox img {
        width: 18px;
        height: auto;
        position: absolute;
        right: 5px;
        top: 8px;
    }

/*----------------------End  下拉列表----------------------------------*/

#SharpDialogModal_Dialog.fade {
    opacity: 1;
    background: rgba(0,0,0,0.5);
    padding:100px 0 0 0;
}

.modal.fade .modal-dialog {
    top: 20%;
    left: 0;
}
/*------------------------------------ Begin   按钮--------------------------------*/
.Sharp_BtnsBlock {
    text-align:center;
}
.Sharp_BtnsBlock input[type=button] {
    /*border:0;*/
    margin: 10px;
    /*color:#fff;*/
}

.Sharp_Button_Default,
.Sharp_Button_Primary,
.Sharp_Button_Success,
.Sharp_Button_Warning,
.Sharp_Button_Error,
.Sharp_Button_Info,
.Sharp_Button_Disabled {
    font-size: .8rem;
    /*width: 6rem;*/
    padding: .3rem .6rem .3rem 1.8rem;
    cursor: pointer;
    border-radius: 3px;
}
/*默认浅蓝色*/
.Sharp_Button_Default {
    background-color: #138e5c;
    color: #fff;
    border: 0;
}
/*背景白色有边框*/
.Sharp_Button_Primary {
    background: #fff;
    border: 1px solid #e5e5e5;
    color: #333;
}
/*绿色*/
.Sharp_Button_Success {
    background: #1ab394;
    color: #fff;
    border: 0;
}
/*橙色*/
.Sharp_Button_Warning {
    background: #f8ac59;
    color: #fff;
    border: 0;
}
/*红色*/
.Sharp_Button_Error {
    background: #ed5565;
    color: #fff;
    border: 0;
}
/*蓝色*/
 .Sharp_Button_Info {
    background: #55b7e8;
    color: #fff;
    border: 0;
}
/*灰色*/
.Sharp_Button_Disabled {
    background: #e5e5e5;
    color: #333;
    cursor: not-allowed;
}


.Sharp_Button_Default.Sharp_Icon {
    background-image: url(/Images/Platform/Commom/Button/search.png);
}

.Sharp_Button_Primary.Sharp_Icon {
    background-image: url(/Images/Platform/Commom/Button/close_black.png);
}

.Sharp_Button_Success.Sharp_Icon {
    background-image: url(/Images/Platform/Commom/Button/save_white.png);
}

.Sharp_Button_Warning.Sharp_Icon {
    background-image: url(/Images/Platform/Commom/Button/warning_white.png);
}

.Sharp_Button_Error.Sharp_Icon {
    background-image: url(/Images/Platform/Commom/Button/error_white.png);
}

.Sharp_Button_Info.Sharp_Icon {
    background-image: url(/Images/Platform/Commom/Button/add_white.png);
}

.Sharp_Button_Disabled.Sharp_Icon {
    background-image: url(/Images/Platform/Commom/Button/disabled_white.png);
}

.Sharp_Button_Primary.Sharp_Icon,
.Sharp_Button_Default.Sharp_Icon,
.Sharp_Button_Success.Sharp_Icon,
.Sharp_Button_Warning.Sharp_Icon,
.Sharp_Button_Error.Sharp_Icon,
.Sharp_Button_Info.Sharp_Icon,
.Sharp_Button_Disabled.Sharp_Icon {
    background-size: 12px;
    background-position: .6rem center;
    background-repeat: no-repeat;
}


/*------------------------------------ End   按钮--------------------------------*/
/*------------------------------------ Begin   上传图片 上传文件--------------------------------*/

/*.Sharp_ImgBlock,
.Sharp_ImgBlock .Sharp_Img {
    width: 150px;
    height: 100px;
}

.Sharp_ImgBlock {
    position: relative;
    border: 1px solid #e5e5e5;
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
    margin: 5px;
}

    .Sharp_ImgBlock .Sharp_Img {
        background: url(/Images/Platform/Commom/Image/error.png) no-repeat;
        background-size: contain;
        background-position: center;
    }

    .Sharp_ImgBlock .Sharp_ImgOperat {
        position: absolute;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,0.3);
        width: 100%;
        height: 30px;
    }

.Sharp_ImgOperat span {
    position: absolute;
    bottom: 0;
    background: url(../../Images/Platform/arrowLeft_white_2.png) no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 5px 15px;
}

    .Sharp_ImgOperat span:nth-of-type(2) {
        left: 36%;
        background: url(../../Images/Platform/delete_White.png) no-repeat;
        background-size: 20px;
    }

    .Sharp_ImgOperat span:nth-of-type(3) {
        right: 0;
        background: url(../../Images/Platform/arrowRight_white_2.png) no-repeat;
        background-size: 20px;
    }*/


/*上传图片*/
.item-box {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
/*    width: 500px;*/
}

    .item-box .item,
    .item-box .button-add {
        display: inline-block;
        border: 1px solid #d7d7d7;
        background: #f7f7f7;
        border-radius: 3px;
        overflow: hidden;
        margin: 3px;
        cursor:pointer;
    }

        .item-box .item .tmbnail-image {
            padding: .1rem;
        }

        .item-box .tmbnail-image img,
        .item-box .button-add input {
            width: 4rem;
            height: 4rem;
        }

    .item-box .buttons,
    .item-box .progressbar {
        width: 100%;
        height: 1.2rem;
        background: #fff;
    }
    .item-box .progressbar {
        opacity:0;
    }

    .item-box .buttons .button-left {
        background: url(/Images/Platform/Commom/Image/uploadLeft.png) no-repeat center;
        float: left;
    }

    .item-box .buttons .button-right {
        background: url(/Images/Platform/Commom/Image/uploadRight.png) no-repeat center;
        float: left;
    }

    .item-box .buttons .button-remove {
        background: url(/Images/Platform/Commom/Image/uploadRemove.png) no-repeat center;
        float: right;
    }

        .item-box .buttons .item-button {
            width: 1rem;
            height: 1rem;
            background-size: .7rem;
            margin: .1rem 0 0 0;
        }

    .item-box .button-add input {
        opacity: 0;
        cursor:pointer;
    }

    .item-box .button-add {
        background: url(/Images/Platform/Commom/Image/uploadAdd.png) no-repeat center;
        background-size: 2rem;
    }

    .item-box .progressbar {
        width: 4rem;
        height: 1.4rem;
    }


/*上传文件*/
.file-box {
    width:500px;
    height: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    display: flex;
    padding: 0;
    justify-content: space-between;
    margin-bottom: 5px;
    overflow:hidden;
}
    .file-box .file-name {
       flex:1;
    }
    .file-box .button-add {
        width: 4rem;
        height: 2rem;
        background: #f7f7f7 url(/Images/Platform/Commom/Image/uploadAdd.png) no-repeat center;
        background-size: 1.2rem;
        border-left: 1px solid #e5e5e5;
    }
    .file-box .button-add input{
        opacity:0;
    }
.comment {
    font-size:12px;
}
/*------------------------------------ End   上传图片--------------------------------*/

/*------------------------------------ Begin   下拉列表--------------------------------*/
.Sharp_Select select {
    border: 1px solid #ced4da;
    border-radius:3px;
    width:192px;
    height:30px;
    margin:0 0 10px 0;
}

/*------------------------------------ End   下拉列表--------------------------------*/
