@import 'common.scss';

.title {
    position: relative;
    width: 100%;
    height: 63px;
    border-bottom: 1px solid rgba(238,238,238,1);
    box-sizing: border-box;
    font-size: 14px;
    p {
        position: absolute;
        width: 100px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        cursor: pointer;
        z-index: 1; 
        &:first-child {
            bottom: -1px;
            left: 35px;
        }
        &:last-child {
            bottom: -1px;
            left: 135px;
        }
        &.active {
            border-top: 3px solid rgba(237,50,42,1);
            border-bottom: 1px solid #ffffff;
            border-left: 1px solid rgba(238,238,238,1);
            border-right: 1px solid rgba(238,238,238,1);
        }
    }
    
}

.status-list {
    height: 57px;
    line-height: 57px;
    font-size: 14px;
    li {
        margin-right: 24px;
        cursor: pointer;
        &.active {
            color: rgba(237,50,42,1);
        }
    }
}

.table-wrap {
    margin: 0;
    .delete {
        color: rgba(0,102,204,1);
        cursor: pointer;
    }
}