/* 知识库关于我卡片小工具 */

.child-about-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 32px;
    background: var(--main-bg, #fff);
    border-radius: var(--main-radius, 18px);
    box-shadow: var(--main-shadow, 0 8px 28px rgba(31, 91, 180, 0.06));
    margin-bottom: 16px;
}

/* 左侧：头像 + 文字 */
.child-about-card .about-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.child-about-card .about-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f4fa;
    flex-shrink: 0;
}

.child-about-card .about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.child-about-card .about-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--key-color, #101828);
    margin-bottom: 12px;
}

.child-about-card .about-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--key-color, #253858);
    margin-bottom: 8px;
}

.child-about-card .about-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted-color, #667085);
    margin-bottom: 8px;
}

.child-about-card .about-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--focus-color, #1677ff);
    text-decoration: none;
}

.child-about-card .about-link:hover {
    opacity: 0.8;
}

/* 分隔线 */
.child-about-card .about-divider {
    width: 1px;
    height: 135px;
    background: var(--main-border-color, #e8eef7);
    flex-shrink: 0;
}

/* 右侧：统计项 */
.child-about-card .about-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex: 1;
}

.child-about-card .about-stat {
    text-align: center;
    min-width: 82px;
}

.child-about-card .about-stat-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.child-about-card .about-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--key-color, #101828);
    margin-bottom: 5px;
}

.child-about-card .about-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-2-color, #7a8699);
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .child-about-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .child-about-card .about-left {
        flex-direction: column;
        text-align: center;
    }

    .child-about-card .about-avatar {
        width: 80px;
        height: 80px;
    }

    .child-about-card .about-title {
        font-size: 20px;
    }

    .child-about-card .about-subtitle {
        font-size: 16px;
    }

    .child-about-card .about-divider {
        width: 100%;
        height: 1px;
    }

    .child-about-card .about-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .child-about-card .about-stat {
        min-width: 70px;
    }

    .child-about-card .about-stat-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .child-about-card .about-stat-value {
        font-size: 18px;
    }

    .child-about-card .about-stat-label {
        font-size: 12px;
    }
}
