// :host ::ng-deep 
.platform {
    &-menu {
        position: fixed;
        top: @layout-header-height;
        bottom: 0;
        z-index: 1;
        color: #fff;
        width: @platform-menu-width;
        max-width: 800px;
        background-color: #fff;

        &-wrap {
            position: relative;
            height: 100%;
        }

        nz-spin,
        .ant-spin-container {
            height: 100%;
        }
        
        &-header {
            color: #4a4a4a;
            font-size: 14px;
            height: @layout-header-height + 10px;
            line-height: @layout-header-height + 10px;
            text-align: center;
            margin: 0;
            border-right: 1px solid @border-color-dark;
            border-bottom: 1px solid @border-color-dark;
            position: relative;

        }

        &-body {
            height: 100%;
            border-right: 1px solid #d8d8d8;

            & .ant-menu-inline {
                border-right: 0;
            }
            
            & .left-menu > a {
              white-space: nowrap;
              text-overflow: ellipsis;
              overflow: hidden;
            }
        }
    }
    
    &-header {
        position: fixed;
        top: @layout-header-height;
        left: @platform-menu-width;
        right: 0;
        z-index: 1;

        & .mat-tabs {
            background: @tabs-bg;
            padding: 10px 0 0 48px;
        }
    }

    &-content {
        // height: 84%;
        min-width: 880px;
        padding: 20px;
        margin: 90px 0 90px @platform-menu-width;
        overflow-y: auto;
    }
}

