/* 公共组件：空状态 c-empty-data */
.c-empty-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.c-empty-data__img {
    display: block;
    width: 150px;
    height: auto;
    max-width: 100%;
}

.c-empty-data__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
}

@media (max-width: 767.98px) {
    .c-empty-data {
        padding: 40px 16px;
    }

    .c-empty-data__img {
        width: 120px;
    }

    .c-empty-data__text {
        margin-top: 12px;
    }
}
