.view-content {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;

}

.flex-column {
    display: flex;
    flex-direction: column !important;
}

.flex-row {
    display: flex;
    flex-direction: row !important;
}

.text-right {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: 550;
}

.text-hidden {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 自定义loading效果样式 */
.loading-toast{ 
    font-size: 11px !important;
    color: #222222 !important;
    background: transparent !important;
}