.go_card_two_block {
    float: left;
    margin-right: 40px;
    margin-bottom: 18px;
    text-align: center;
    position: relative;

    .layoutName {
        line-height: 30px;
    }

    .block_operation {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 12;
        background: rgba(0, 0, 0, .5);
        border-radius: 8px;
    }

    .canChoose {
        border-radius: 8px;
        position: relative;
        border: 1px solid #eee;
        box-shadow: 0 2px 6px 0 rgba(166, 166, 166, 0.50);
    }
    //操作更多的图标
    .more_icon {
        position: absolute;
        right: 12px;
        top: 10px;
        cursor: pointer;
        border: 2px solid @whiteFFF;
        border-radius: 50%;

        i {
            color: @whiteFFF;
            font-size: 18px;
        }
    }

    //操作区域
    .operate {
        position: absolute;
        width: 120px;
        top: 25px;
        right: 25px;
        background-color: @whiteFFF;
        border-radius: 4px;
        border: 1px solid #429ffb;
        z-index: 26;
        box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.36);

        li {
            line-height: 28px;

            &:hover {
                background-color: #1f85ec;
                color: @whiteFFF;
                cursor: pointer;
            }
        }
    }
}



