.footer-info {
    position: fixed;
    z-index: 305;
    bottom: 0;
    left: 0;
    zoom: 1;
    height: 39px;
    padding-top: 1px;
    line-height: 39px;
    background: var(--el-menu-bg-color);
    width: 100%;
}

.footer-info .content {
    margin: 0 17px;
    text-align: center;
}

.footer-info .content .text-color {
    color: #bbb;
}

.footer-info .content a {
    font-size: 12px;
    text-decoration: none;
}

/* 为 el-aside 的宽度变化添加过渡 */
.el-aside {
    transition: width 0.3s ease-in-out;
}

/* 确保 el-menu 本身的宽度过渡 */
.el-menu--vertical {
    transition: width 0.3s ease-in-out;
}

/* 与折叠后的 el-aside 宽度一致 */
.el-menu--collapse {
    width: 64px;
}

.my-card-header {
    font-size: 14px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.my-card-body {
    padding: 10px;
}

.my-card-body-title::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #10b981;
    margin-right: 0.5rem;
}

.my-card-body-desc {
    font-size: 14px;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

