.design-view2 {
    height: 100%;
    width: 100%;

    .design-view-header {
        height: 42px;
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.09);
        .home {
            position: absolute;
            right: 300px;
            height: 100%;
            display: flex;
            font-size: 20px;
            align-items: center;
            cursor: pointer;
        }
        .home:active {
            color: #3283f9;
        }
        .title{
            height:100%;
            display: flex;
            align-items: center;
            padding-left:10px;
            font-size: 15px;
            font-weight: 600;
        }
    }

    .design-view-content {
        height: calc(100% - 42px);
    }
}
