.reservoir-box {
    position: absolute;

    z-index: 101;
    width: 100%;
    height: 100%;
    box-sizing: border-box;


    .el-card__body {
        position: absolute;
        padding: 0;
        width: 100%;
        height: 100%;

        .header {
            position: relative;
            height: 36px;
            line-height: 36px;
            font-size: 16px;

            display: flex;
            align-items: center;
            justify-content: flex-start;

            & label {
                margin-right: 0px !important;
                margin-left: 20px;
            }
        }

        .search-condition {
            display: flex;

            .el-date-editor {
                margin: 0 5px;
                width: calc(100% - 90px)
            }

        }

        .reservoir-content {

            .text-overview {
                border: 1px solid rgba(1, 1, 1, 0);

                p {
                    margin: 5px;
                    padding: 5px;
                    box-sizing: border-box;
                    width: calc(100% - 10px);
                    height: 240px;
                    overflow-y: auto;
                    border: 1px solid #ccc;
                    border-radius: 5px;
                    text-indent: 2em;
                    font-size: 16px;
                    line-height: 24px;
                    letter-spacing: 1.2px;
                    word-break: break-all;

                    scrollbar-width: thin;

                    .text-tab {
                        color: red;
                        cursor: pointer;
                        font-weight: normal;
                    }

                    .text-tab:hover {
                        border-bottom: 1px solid red;
                    }
                }
            }

            .statistics {
                padding: 4px 20px;

                div {
                    height: 36px;
                    line-height: 36px;

                    button {
                        border: none !important;

                        vertical-align: middle;
                    }
                }
            }
        }

    }


    .el-dialog__wrapper {
        width: calc(100% - 360px);
        height: calc(100% - 60px);
        top: auto;
        left: auto;
        right: 0;
        bottom: 0;

        .el-dialog {
            padding: 10px;

            .el-dialog__header {
                padding: 0;
                height: 48px;
                line-height: 48px;


            }

            .el-dialog__body {
                padding: 0;
                height: calc(100% - 48px);

                .dialog-data-table {

                    width: 100%;
                    height: 100%;

                    .el-table {
                        height: calc(100% - 32px);


                        .el-table__header-wrapper {
                            .el-table__header tr {
                                position: relative;

                                .cell {
                                    font-size: 16px;
                                }

                            }
                        }

                        .el-table__body-wrapper {
                            height: calc(100% - 48px);
                            overflow-y: auto;

                            scrollbar-width: thin;

                            .el-table__body td {
                                position: relative;

                                .cell {
                                    font-size: 16px;
                                }

                            }
                        }
                    }
                }
            }
        }

    }

    .reservoir-detail-popup {
        position: fixed;
        z-index: 999;
        padding: 10px;
        background: rgba(0, 0, 0, .7);
        color: #fff;
        border-radius: 10px;

        ul {
            margin: 0;
            padding: 0;

            li {
                line-height: 36px;
            }
        }

    }

}