.medium-small-risk {
    display: flex;
    position: absolute;
    z-index: 101;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color: #606266;

    &>.content-box {

        &>.risk-content {

            .risk-table {
                .el-date-editor {
                    width: calc(100% - 80px)
                }
            }

            div.content {
                position: relative;
                height: calc(100% - 44px);

                p {
                    position: absolute;
                    top: 0;
                    left: 0;
                    padding: 5px;
                    margin: 0;
                    height: 100%;
                    word-wrap: break-word;
                    box-sizing: border-box;
                    overflow-y: auto;
                    font-size: 16px;
                    line-height: 24px;
                    letter-spacing: 1.2px;
                    text-indent: 2em;
                    word-break: break-all;
                    scrollbar-width: thin;

                    span {
                        color: red;

                        i {
                            font-style: normal;
                            color: #606266;
                        }

                        strong {
                            font-weight: normal;
                            cursor: pointer;
                        }
                    }

                    span[ii="0"],
                    span[ii="1"],
                    span[ii="2"],
                    span[ii="3"],
                    span[ii="4"] {
                        cursor: pointer;
                    }

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

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

        }
    }

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

        ul {
            margin: 0;
            padding: 0;

            li {
                line-height: 36px;
            }
        }

    }

}