/** 打印预览样式 **/
.print-view-container {
    display: none;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1000;
    background: rgba(242, 244, 247, 1);
    display: flex;
    flex-direction: column;

    .print-view-title {
        flex: 0 0 auto;
        width: 100%;
        flex-basis: 60px;
        margin-bottom: 20px;
        padding: 0 20px;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.07);

        display: flex;
        justify-content: space-between;
        align-items: center;

        & > div {
            flex: 0 0 auto;
            font-size: 14px;
            color: rgba(102, 102, 102, 1);
            line-height: 14px;
        }

        .print-view-title-operate {
            width: 150px;
            display: flex;
            justify-content: space-between;
            align-items: center;

            .print-view-toolbar-button {
                display: block;
                text-align: center;
                padding: 10px;
                border-radius: 5px;
                cursor: pointer;
                border: #fff 1px solid;

                &:hover {
                    background: #edeff5;
                    border: #d8dce9 1px solid;
                }

                .mc-icon {
                    position: relative;
                    margin-right: 5px;
                    top: 1px;
                    &.mc-icon-close {
                        margin-right: 3px;
                    }
                }
            }
        }
    }

    #print-view {
        flex-grow: 1;
        overflow: scroll;
        #_previewDiv {
            order: 0;
            z-index: -1;
            background: #ffffff;
            margin: 0 auto;
            hr {
                height: 1;
                border-top: 1px dashed black;
                border-left: none;
                border-right: none;
                border-bottom: none;
                position: absolute;
                z-index: 1000;
            }
        }
    }
}
