.ui-app-list {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 50px;
    padding-top: 82px;
    z-index: 1000;

    .app-item {
        position: relative;
        float: left;
        width: 160px;
        height: 185px;
        padding: 20px;
        color: white;
        text-align: center;
        cursor: pointer;
        border-radius: 5px;
        &:hover {
            background-color: #000;
            .app-name {
                white-space: normal;
            }
        }
    }

    .app-icon {
        width: 120px;
        height: 120px;
    }

    .app-name {
        position: absolute;
        top: 145px;
        left: 20px;
        width: 120px;
        line-height: 20px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}