
.subGrid{
    width: 100%;
    border: 1px solid #657d6999;
        display: grid;
    grid-template-rows: auto 1fr;
}
.subGridHeader{
    display: flex;
    background: #657d6999;
    color: #fff;
    line-height: 25px;
    font-weight: 600;
}
.subGridHeader >*{
    padding: 5px 10px;
    cursor: pointer;

}
.subGridHeader .active{
    background: #fff;
    color: #657d69;
    cursor: auto;
}
.subGridHeader .space{
    flex: 1;
    cursor: auto;
}
.subGrid .toolbar{
    cursor: auto;
    padding: 0;
    display: flex;
    align-items: center;
}
.subGrid .toolbar > div{
    display: inline-block;
    padding: 0 10px;
}
.subGrid .toolbar svg{
    width: 20px;
    height: 18px;
    fill: #fff;
    cursor: pointer;
}

.subGrid .toolbar button:hover{
    border: 1px solid #516655;
}
.subGridContent{
    padding: 10px;
    overflow: auto;
}
.subGridContent table {
    line-height: 25px;
}
.subGridContent table thead{
    background-color: #657d6933;
    
}
.subGridContent table tbody tr{
    cursor: pointer;
}
.subGridContent table tbody td{
    padding: 0 2px;
}
.subGridContent tfoot td{
    text-align: right;
    font-weight: 600;
}

.form .title .formHead{
    background: none;
    color: #fff;
}
.form .title .formHead.active{
    background: #fff;
    color: #657d69;
}
.form .formContent{
    display: none;
}
.form .formContent.active{
    display: flex;
}