.template_container{
    width: 100%;
    height: calc(100vh - 124px);
    
    .operate_bar{
        width: 100%;
        height: 60px;
        background-color: white;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        .template_type{
            height: 60px;
            
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center; 
            .title{
                margin-left: 5px;
                margin-right: 5px;
            } 
        }
        .fast_search{
            height: 60px;
            margin-right: 10px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center; 
            .title{
                margin-left: 20px;
                margin-right: 5px;
            }    
        }
    }
    .list_view{
        width: 100%;
        height: calc(100vh - 184px);
        background-color: white;
       overflow-y: scroll;
    }
}