schemeDetail.less 2.06 KB
.editModal_container{
    width: 100%;
    overflow-y: hidden;
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    button[ant-click-animating-without-extra-node]:after {
        border: 0 none;
        
        opacity: 0;
        
        animation:none 0 ease 0 1 normal;
        
        }
    .content{
        height: calc(100vh - 140px);
        overflow-y: scroll;
    }
    .cardList{
        display: flex;
        flex-wrap: wrap;
        .cardListItem{
            width: 50%;
            margin-bottom: 1rem;
        }
 
    }
    .ant-card-bordered {
        border-right: none;
    }
    .push_trench{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction:row;
        flex-wrap: wrap;
        justify-content: space-between;
        .trench_card{
            margin-top: 1rem;
            width: 49.2%;
            border-width: 1px;
            border-color: #EEEEEE;
            border-style: solid;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #ffffff;
            .card_title{
                border-bottom-style: solid;
                border-bottom-width: 1px;
                border-bottom-color:#F6F7F9;
                height:50px;
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content:space-between;
                padding: 0 24px;
                align-items: center;
                .lable{
                    font-size: large;
                    margin-left: 10px;
                }
            }
            .card_body{
                margin-top: 10px;
                width: 100%;
                padding: 10px;
                height: 12rem;
                display: flex;
                flex-direction: column;
            }
            .ant-switch{
                margin-right: 0.5rem;
            }
            .ant-form-item{
                margin-left: 1.3rem;
            }
            
        }

    }
}