﻿/*框架常用控件只读时只显示文本内容，不显示边框, 不显示阴影*/

/*普通input text*/
/*.el-input.is-disabled .el-input__inner {
    padding-left:0px !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
    color: #000000;
    font-size: 14px;
    font-weight:400;
    line-height: 16px;
    cursor: text !important;
}*/

.el-input.is-disabled .el-input__prefix {
    display:none;
}
.inputDisabled {
    background-color: #F5F7FA;
    border-color: #E4E7ED;
    color: #333333;
    cursor: not-allowed;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
    padding-left: 15px
}
.el-input.is-disabled .el-input__suffix {
    display: none;
}


/*隐藏掉textBox后面包含的选择按纽*/
.el-input.is-disabled .el-input-group__append {
    display: none;
}


/*switch开关*/
.el-switch.is-disabled {
    opacity: 1 !important;
}

.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label {
    display: none;
    color: #000000 !important;
    line-height: 16px;
    cursor: text !important;
}

.el-switch.is-disabled .is-active {
    display: inline;
}

/*el-cascader*/
.el-cascader.el-cascader--mini.is-disabled .el-input__inner {
    font-size:12px;
}

/*input-number数字输入框*/
.el-input-number.is-disabled .el-input-number__decrease {
    display: none;
}

.el-input-number.is-disabled .el-input-number__increase {
    display: none;
}

/*el-date-editor*/
.el-range-editor.is-disabled {
    background-color: transparent !important;
    border-color: rgba(0, 0, 0, 0) !important;
    cursor: text !important;
}

    .el-range-editor.is-disabled .el-range-input {
        background-color: transparent !important;
    }

    .el-range-editor.is-disabled .el-icon-time {
        margin-left: -35px;
        color: transparent !important;
    }
    .el-range-editor.is-disabled .el-range-input {
        color: #000;
        font-size: 12px;
        cursor: text !important;
    }
    .el-range-editor.is-disabled .el-range-separator {
        color: #000 !important;
        font-size: 12px;
    }

    /*在列表中的框如果只读时加个top=18px这样就和普通文字一样高*/
    .el-table__row .el-form-item .el-input.is-disabled {
        padding-top: 18px;
    }

/*textarea*/
/*.el-textarea.is-disabled .el-textarea__inner {
    padding-left: 0px !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
    color: #000000;
    font-size: 12px;
    cursor: text !important;
    box-sizing: content-box !important;
    overflow-y:auto;
}*/

/*el-cascader*/
.el-cascader.is-disabled .el-tag {
    background-color: transparent;
    color: #000000 !important;
    font-size: 12px;
    cursor: text !important;
}

/*el-checkbox-group*/
.el-checkbox-group .el-checkbox.is-disabled{
    display:none;
}
.el-checkbox-group .el-checkbox.is-disabled.is-checked {
    display: inline-block;
}
    .el-checkbox-group .el-checkbox.is-disabled.is-checked .el-checkbox__input.is-disabled.is-checked {
        display: none;
    }
    .el-checkbox-group .el-checkbox.is-disabled.is-checked .el-checkbox__label {
        padding-left:0px;
        background-color: transparent;
        color: #000000 !important;
        font-size: 12px;
        cursor: text !important;
    }

    /*upload*/
.el-upload-list.el-upload-list--text.is-disabled{
    /*margin-top:-36px;*/
}

    .el-upload-list.el-upload-list--text.is-disabled .el-upload-list__item-status-label {
        display: none;
    }

        .el-upload-list.el-upload-list--text.is-disabled .el-upload-list__item-status-label:hover {
            display: none !important;
        }

        .el-upload-list.el-upload-list--text.is-disabled .el-upload-list__item-status-label:hover {
            display: none !important;
        }

        .el-upload-list.el-upload-list--text.is-disabled .el-upload-list__item-status-label .el-icon-upload-success.el-icon-circle-check {
            display: none !important;
        }


/* 只读下对placeholder进行透明化处理 */
.is-disabled input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: transparent !important;
}

.is-disabled input::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: transparent !important;
}

.is-disabled input:-moz-placeholder { /* Mozilla Firefox 19+ */
    color: transparent !important;
}

.is-disabled input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: transparent !important;
}

.is-disabled textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: transparent !important;
}

.is-disabled textarea::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: transparent !important;
}

.is-disabled textarea:-moz-placeholder { /* Mozilla Firefox 19+ */
    color: transparent !important;
}

.is-disabled textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: transparent !important;
}
.elformlabeltop .el-table__body td .el-form-item .el-form-item__content .is-disabled {
    margin-left: 0px !important;
}


/*流程汇报进度*/
.list-item {
    display: flex;
    padding: 12px 24px;
    position: relative;
}

.list-item > .item-time {
    display: inline-block;
    width: 50px;
    text-align: center;
    line-height: 1.6;
    color: #666666;
    position: relative;
    top: -10px;
}

.list-item > .liner-icon {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #3791ff;
    position: absolute;
    top: 12px;
    left: 80px;
}

.list-item > .iconfont {
    position: absolute;
    top: 10px;
    left: 77px;
    color: #3791ff;
    font-size: 17px;
}

.big-icon {
    color: #999 !important;
    font-size: 20px !important;
    left: 75px !important;
}

.liner {
    position: absolute;
    left: 84px;
    height: 100%;
    border-left: 2px solid #b7d7ff;
}

.list-item > .item-content {
    padding-left: 16px;
    margin-left: 16px;
}

.content-title {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    top: -5px;
}

.deal-person {
    max-width: 290px;
    padding: 4px 0;
    color: #666666;
}

.conten-container {
    width: 290px;
    padding: 8px;
    margin-top: 8px;
    color: #666666;
    background-color: #f9fcff;
    border: 1px dashed #d1e2f5;
}

.sign-box {
    display: inline-block;
    margin-top: 5px;
    margin-right: 5px;
}

.sign-img-box {
    width: 128px;
    height: 60px;
    background-color: #eff4fb;
}

    .sign-img-box img {
        width: 100%;
        height: 100%;
    }

.sign-times {
    margin-top: 2px;
    font-size: 13px;
    color: #999999;
    text-align: center;
}

.times-box {
    display: flex;
}

    .times-box > p:first-of-type {
        width: 58px;
    }

.button-box {
    text-align: right;
}

    .button-box span:active {
        opacity: .7;
    }

.mt2 {
    margin-top: 5px;
}

.color-blue {
    color: #3791ff !important;
}

.border-dashed {
    border-left: 2px dashed #e4e7ed;
}

.pointer {
    cursor: pointer;
}













