// 列表页面 顶部操作
$padding: 15px;
$margin: 25px;
$breadcrumbbfclolr: #ddd;

.layout-content {
    .main{
        height:100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .contain {
        position: relative;
        height: 100%;
    }
    .contain-head {
        padding: 8px $padding;
        position: fixed;
        width: 100%;
        z-index: 999;
        padding-right: 220px;
        .ivu-radio-group {
            vertical-align: top;
        }
    }
    .contain-main {
        height: inherit;
        width: 100%;
        overflow: hidden
    }
    
    .contain-aside{
        width: 180px;
        min-width: 180px;
        transition: min-width 0.3s;
        transition: width 0.3s;
        position: relative;
        background: #fff;
        height: 100%;
        bottom: 0;
        border-right: 1px solid #ddd;
        .slide-bar{
            
        }
        .slide-icon{
            display: none
        }
        .slide-title{
            display: none
        }
        .el-tree-node__content{
            height: 34px;
        }
        .is-current{
            &>.el-tree-node__content{
                background: #f2f2f2
            }
        }
    }
    .contain-aside-hide{
        width: 0px;
        min-width: 0px;
        transition: min-width 0.3s;
        transition: width 0.3s;
        .slide-main{
            display: none
        }
        .slide-icon{
            transform:rotate(180deg);
        }
    }
    .search{
        padding:10px 15px 0 15px;
        border-bottom: 1px solid #ddd;
        overflow: hidden;
        .el-form-item{
            margin-bottom: 10px
        }
    }
    .search-limit{
        height: 42px;
        transition: height 0.5s
    }
    .action-bar{
        padding: 10px 15px
    }
    .page-main{
        padding: 10px 15px;
        height: auto;
        min-height: 100%;
    }
     
    
}
// 分页
.page-wrapper {
    position: relative;
    text-align: right;
    margin: $margin 0;
    &::after {
        content: '';
        display: table;
        height: 0;
        width: 0;
        clear: right;
    }
    .ivu-page {
        float: right;
    }
}

.table-footer-box {
    margin-top: 20px;
    margin-bottom: 2px;
}

//共公标题
.section-title{
    border-left: 3px solid #0099CC;
    font-size: 14px;
    height: 14px;
    line-height: 14px;
    padding: 0 5px;
    .title{
        font-weight: bold
    }
    .info{
        margin-left: 20px; 
        font-size: 12px;
        color: #888;
    }
    .second-title{
        margin-left: 20px; 
        font-size: 12px;
    }
}

//step进度
.step{
    height: 32px;
    padding-bottom: 30px;
    &::after{
        content: '';
        overflow: hidden;
        clear: both
    }
    .step-item{
        width: 14px;
        height: 14px;
        border-radius: 7px;
        background: #ddd;
        display: inline-block;
        margin-right: 88px;
        position: relative;
        float: left;
        top: 9px;
        &:after{
            content: '';
            width:85px;
            height: 2px;
            background: #ebebeb;
            position: relative;
            top: 6px;
            left: 16px;
            display: block
        }
        &:last-child{
            &:after{
                display: none
            }
        }
        .text{
            position: absolute;
            bottom: -28px;
            left: -18px;
            width: 50px;
            color: #888;
            text-align: center
        }
    }
    .step-item.active{
        top: 0px;
        background: #fff;
        color: #0099CC;
        font-size: 32px;
        &:after{
            content: '';
            width:69px;
            height: 2px;
            background: #0099CC;
            position: relative;
            top: -16px;
            left: 32px;
            display: block;
        }
        .text{
            bottom: -37px;
            left: -10px;
            color: #0099CC;
            font-size: 12px;
            font-family: Microsoft YaHei
        }
    }
    .step-item.error{
        top: 0px;
        background: #fff;
        border-radius: 16px;
        color: #E66565;
        font-size: 32px;
        &:after{
            content: '';
            width:69px;
            height: 2px;
            background: #0099CC;
            position: relative;
            top: -16px;
            left: 32px;
            display: block;
        }
        .text{
            bottom: -37px;
            left: -10px;
            color: #E66565;
            font-size: 12px;
            font-family: Microsoft YaHei
        }
    }
}
.record-list{
    .record-item{
        margin-bottom: 20px;
        position: relative;
        padding-left: 46px;
        span{
            margin-right: 10px;
            font-size: 13px;    
        }
        p{
            height: 18px;
            line-height: 18px;
        }
        .photo{
            position: absolute;
            left: 0;
            top: 0;
            width:36px;
            height: 36px;
            border-radius: 50%;
            overflow: hidden;
            background: url('../../assets/icons/avatar.png');
            background-size: 36px 36px;
            img{
                width: 100%;
                height: 100%;
            }
        }
        .r1{
            .role{
                margin-right: 5px;
            }
            .deparment{
                
            }
            .date{
                color: #888
            }
        }
        .r2{
            .action{
                color: #888
            }
            .info{
                color: #888
            }
        }
    }
}
//页面状态控制条
.page-status-bar{
    padding:9px 20px;
    .page-location{
        padding-top: 7px;
        text-align: right;
        a{
            margin-left: 15px;
        }
    }
    .timer{
        padding-top:7px;
        font-size: 14px;
        .icon-clock{
            display: inline-block;
            background: #E66565;
            width:17px;
            height: 20px;
            top: -3px;
            line-height: 16px;
            margin-right: 10px;
            position: relative;
            padding-left:3px;
            border-radius: 50%;
            font-size: 12px;
            color: #fff
        }
        .num{
            color:#E66565
        }
    }
}

.button-icon-r-large{
    font-size: 14px;
    height: 42px;
    line-height: 42px;
    background: #ebebeb;
    display: inline-block;
    padding:0 10px 0 12px;
    padding-right: 40px;
    min-width: 140px;
    position: relative;
    margin: 0 10px 10px 0;
    i{
        position: absolute;
        right: 12px;
        top: 13px;
        color: #C6C6C6;
        cursor: pointer;
        font-size: 16px;
    }
    &:hover i{
        color: #E66565
    }
}
.button-icon-r-large-blue{
    font-size: 13px;
    height: 42px;
    line-height: 42px;
    background: #0099cc;
    display: inline-block;
    padding:0 10px 0 12px;
    padding-right: 40px;
    color: #fff;
    min-width: 114px;
    position: relative;
    margin: 0 10px 10px 0;
    i{
        position: absolute;
        right: 12px;
        top: 13px;
        color: rgba(255,255,255,0.3);
        cursor: pointer;
        font-size: 16px;
    }
    &:hover i{
        color: #fff
    }
}
.button-icon-r-small{
    font-size: 13px;
    height: 36px;
    line-height: 36px;
    background: #ebebeb;
    display: inline-block;
    padding:0 10px 0 12px;
    padding-right: 40px;
    min-width: 114px;
    position: relative;
    margin: 0 10px 10px 0;
    i{
        position: absolute;
        right: 12px;
        top: 9px;
        color: #C6C6C6;
        cursor: pointer;
        font-size: 16px;
    }
    &:hover i{
        color: #E66565
    }
}
.button-icon-r-small-blue{
    font-size: 13px;
    height: 36px;
    line-height: 36px;
    background: #0099cc;
    display: inline-block;
    padding:0 10px 0 12px;
    padding-right: 40px;
    color: #fff;
    min-width: 114px;
    position: relative;
    margin: 0 10px 10px 0;
    i{
        position: absolute;
        right: 12px;
        top: 9px;
        color: rgba(255,255,255,0.3);
        cursor: pointer;
        font-size: 16px;
    }
    &:hover i{
        color: #fff
    }
}
.button-icon-r-large-bolid{
    font-size: 13px;
    height: 42px;
    line-height: 42px;
    background: #fff;
    border: 1px solid #0099cc;
    display: inline-block;
    padding:0 10px 0 12px;
    padding-right: 40px;
    color: #0099cc;
    min-width: 114px;
    position: relative;
    margin: 0 10px 10px 0;
    i{
        position: absolute;
        right: 12px;
        top: 13px;
        color: #ddd;
        cursor: pointer;
        font-size: 16px;
    }
    &:hover i{
        color: #0099cc
    }
}
//竖式菜单
.collapse-tree{
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    .el-tree-node__content{
        height: 42px;
        line-height: 42px;
        border-bottom: 1px solid #ddd
    }
}
.collapse-tree .el-tree-node .el-tree-node__conten:last-child{
    border-bottom: none
}

//表头设置
.columns-config{
    width: 260px;
    height: 200px;
    position: absolute;
    border: 1px solid #ddd;
    right: 0px;
    top: 28px;
    padding: 10px 15px;
    z-index: 10;
    background: #fff;
    text-align: left;
    overflow-y: auto;
    display: none;
}
.columns-config .el-col{
    margin-top: 5px;
}
.detail-common-img img{
    height: 150px;
    width: auto;
    margin-right:20px;
}
.btn-upload{

}
.btn-status{
    height: 32px;
    line-height: 32px;
    background: #D4EEF6;
    color: #0099CC;
    padding: 0 20px !important;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}
//装态图标
.icon-status-red{
    color: #FA6C6C;
}
.icon-status-orange{
    color: #FF8F18
}
.icon-status-green{
    color: #129E5B
}
.icon-status-blue{
    color: #00C1DE;
}
.icon-status-yellow{
    color: #FFD618;
}
.icon-status-gray{
    color: #C6C6C6;
}
//
.circle-status-red{
    vertical-align: sub;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 7px;
    background: #FA6C6C
}
.circle-status-orange{
    vertical-align: sub;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 7px;
    background: #FF8F18
}
.circle-status-green{
    vertical-align: sub;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 7px;
    background: #129E5B
}
.circle-status-blue{
    vertical-align: sub;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 7px;
    background: #00C1DE
}
.circle-status-yellow{
    vertical-align: sub;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 7px;
    background: #FFD618
}

.circle-status-gray{
    vertical-align: sub;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 7px;
    background: #C6C6C6
}

