.go_card_list {
    overflow: hidden;
}
.go_card_list .card_item {
    width: 348px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 4px 0 rgba(218, 224, 231, 1);
    border-radius: 3px;
    border: 1px solid rgba(230, 230, 230, 1);
    margin-right: 15px;
    margin-bottom: 15px;
    float: left;
    position: relative;

    //卡片操作栏样式
    .operation_bar {
        padding-top: 10px;
        width: 100%;
        height: 40px;
        background: rgba(31, 133, 236, 0.05);
        border-radius: 0px 0px 5px 5px;
        border-top: 1px solid rgba(228, 231, 237, 1);
        position: absolute;
        bottom: 0;
        //操作按钮样式
        .btn {
            float: left;
            text-align: center;
            width: 50%;
            box-sizing: border-box;
            height: 15px;
            font-size: 13px;
            cursor: pointer;
            //按钮字的样式
            .btn_label {
                font-size: 14px;
                font-family: @font-family;
                font-weight: 400;
                color: rgba(31, 133, 236, 1);
                line-height: 20px;
            }

        }
        //分割线样式
        .split_line {
            width: 1px;
            height: 20px;
            background: rgba(228, 231, 237, 1);
            position: absolute;
            left: 50%;
        }
    }
    //新增card的样式
    .add_item {
        width: 90px;
        margin: auto;
        position: relative;
        top: 39%;
        cursor: pointer;
        font-family: @font-family;
        color: rgba(31, 133, 236, 1);
        line-height: 19px;

        .addIcon {
            font-size: 16px;
            margin-right: 6px;
        }

        .label {
            font-size: 14px;
        }

    }
}

.card_item .list_item {
    padding: 14px 15px 10px 15px;
}
.card_item .list_item .content {
    padding-top: 10px;
}
.card_item .list_item{
    //标题
    .title {
        height: 22px;
        font-size: 16px;
        font-family: @font-family;
        font-weight: 500;
        color: rgba(0, 0, 0, 1);
        line-height: 22px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .row_info {
        width: 100%;
        overflow: hidden;

        .cell_label {
            float: left;
            font-size: @tag-font-size;
            font-family: @font-family;
            font-weight: 400;
            color: rgba(163, 163, 163, 1);
            line-height: 22px;
            text-align: left;
        }

        .cell_content {
            padding-left: 6px;
            box-sizing: border-box;
            width: auto;
            height: 30px;
            font-size: @tag-font-size;
            font-family: @font-family;
            font-weight: 400;
            color: rgba(66, 66, 66, 1);
            line-height: 22px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }
    }
}
