/* 用于定义一些常用的类名与样式，避免重复书写样式 */
/* v-cloak 的样式 */
[v-cloak] {
    display: none;
}
:root {
    --textColor: #4e5969;
    --themeColor: #0277EF;
}
.mainColor {
    color: #0277EF;
}
/* 文字 */
.text-center {
    text-align: center;
}
/* 超出两行变省略号 */
.truncate-two {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    /* autoprefixer: ignore next */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -ms-box-orient: vertical;
    -ms-line-clamp: 2;
    text-overflow: ellipsis;
}
.truncate-one {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    -ms-box-orient: vertical;
    -ms-line-clamp: 1;
    text-overflow: ellipsis;
}
.truncate-three {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    -ms-box-orient: vertical;
    -ms-line-clamp: 3;
    text-overflow: ellipsis;
}
.truncate-five {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    -ms-box-orient: vertical;
    -ms-line-clamp: 5;
    text-overflow: ellipsis;
}
/* 弹性布局 */
.flex {
    display: flex;
}
.space-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}
.flex-center {
    justify-content: center;
}
.flex-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.overflow-x-auto {
    overflow-x: auto;
}
.invisible {
    visibility: hidden;
}
.hidden {
    display: none !important;
}
.hidden\! {
    display: none !important;
}
.grid {
    display: grid;
}
.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-column {
    flex-direction: column;
}
.none {
    display: none;
}
/* 底部加载 */
.layui-flow-more {
    display: block;
    width: 100%;
    text-align: center;
}
/* 预览 */
.maskPopup {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}
.maskPopup img {
    max-width: 90%;
    max-height: 90%;
}
/* 无数据 */
.no_data_box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.no_data_box .no_data {
    width: 5.33rem;
    height: 4.83rem;
    margin-top: 2rem;
}
.no_data_box .text {
    color: #585858;
    text-align: center;
    font-size: 0.32rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 0.32rem;
}