.project_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: 18px;
                margin-right: 10px;
            }
        }

        .anticon svg {
            margin-top: -5px;
        }

        .fast_search {
            height: 60px;
            margin-right: 10px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;

            .title {
                margin-left: 25px;
                margin-right: 10px;
            }
        }
    }

    .list_view {
        width: 100%;
        height: calc(100vh - 187px);
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;

        .ant-pagination {
            padding-right: 10px;
        }

        .ant-table-thead tr th {
            font-weight: 600;
            color: rgba(0, 0, 0, 0.85);
        }

        .ant-table-container {
            max-height: calc(100vh - 240px) !important;
            min-height: calc(100vh - 240px) !important;
            overflow-y: scroll;
        }
    }

}