.dialog {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.dialog .dialog-content {
    width: 61.8%;
}


.dialog-content-view {
    display: flex;
    flex-direction: row;
    background-color: #FFF;
    overflow: hidden;
}
@media (max-width: 1199px) { 
    .dialog .dialog-content {
        width: 100%;
    }
}

.dialog-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.dialog-footer-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFF;
    border-radius: 50%;
    margin-top: 20px;
}

.dialog-footer-view-icon {
    width: 20px;
    height: 20px;
}

.dialog-hidden {
    display: none;
}

.overflow-hidden { 
    ovcerflow: hidden;
}

.card-app {
    position: relative;
}
.card-app img {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    position: absolute;
    transform: translate(100%, 0);
    width: 200px;
    height: 200px;
    right: 0;
    bottom: 0;
}
.card-app:hover img { 
    display: block;
}

.card-item-icon {
    width: 44px !important;
    height: 44px !important;
    transform: scale(1) !important;
}

.file-catelog {
    min-width: 150px !important;
    padding: 10px;
}
.file-catelog-item {
    color: #666; 
    margin-bottom: 10px;  
    cursor: default;
}
.file-ul {
    padding-left: 20px;
}

.file-catelog-sub-item {
    color: #333;
}
.file-catelog-sub-item-selected { 
    color: #2563eb;
    text-decoration: underline;
}
.file-catelog-sub-item:hover { 
    color: #2563eb;
    cursor: pointer;
}

.card-flex {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.card-flex-item {
    flex: 2;
}
.card-flex-item:last-child { 
    flex: 1;
    padding-left: 20px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}
.card-header-row h3 {
    margin-left: 20px;
}
.card-header-row .icon-wrap {
    margin-bottom: 0;
}
.card-flex-item img {
    width: 100px;
    height: 100px;
}
.card-flex-item img:hover { 
    transform: scale(1.8);
}

.card-header-title {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.card-header-title h3 {
    margin-left: 0;
}

.card-img {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.card-img img {
    width: 100px;
    height: 100px;
}
.card-img img:hover { 
    transform: scale(1.5);

}

@media (max-width: 1199px) { 
    .card-flex {
        flex-direction: column;
    }
    .card-flex-item:last-child { 
        padding-left: 0;
        padding-top: 20px;
    }
}

.app-download-tip {
    font-size: 12px; 
    color: #80818A; 
    font-weight: normal;
}