body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.max-container {
    max-width: var(--max-container);
    margin: 20px auto 0 auto;
}

.container-post {
    border-radius: var(--radius);
    padding: 24px;
    height: auto;
    background-color: #fff;
}

.liked {
    color: var(--logo);
}

.favorited {
    color: var(--fuzhu);
}

.fl {
    display: flex;
    gap: 1rem;
    flex-direction: row;
}

/* 侧边栏 */
.opnod-right {
    width: 25%;
    height: 100%;
}

.flex-rty {
    width: 75%;
}

/* 帖子内容 */
.posts {
    /* background-color: #9ca3af; */
    width: 100%;
    /* min-height: 470px; */
    word-break: break-word;
}

.posts p {
    line-height: 1.5;
    margin-top: 22px;
    margin-bottom: 22px;

}

/* 用户头像 */
.userdata {
    /* width: 100%; */
    display: flex;
    gap: 13px;
    /* height: 34px; */
    justify-content: space-between;
    align-items: center;
}

.userdata .userimg {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    overflow: hidden;
}

.userdata .userimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-span {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
}

.user-span .user-name {
    font-size: 16px;
    gap: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.user-span .user-name .ali a {
    color: #000000;
}

.user-span span {
    display: flex;
    gap: 4px;
    font-size: 0.77rem;
    max-width: 480px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    white-space: nowrap;
    color: var(--size);
    align-items: center;
}

/* 徽章 */
.boloi {
    width: 32px;
    height: 100%;
}
.boloi img{
    width:100%;
    height:100%;
    object-fit: contain;
}
/* end */
/* 话题 */
.topic-tags {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 13px;
}

.topic-tags a {
    padding: 4px 8px;
    color: #898989;
    font-size: 14px;
    background: #f5f5f5;
    border-radius: 10px;
    margin-right: 10px;
}

.topic-tags a:hover {
    transition: all 0.3s;
    color: var(--logo);
}

/* 关注按钮 */
.btn-sf {
    background-color: var(--logo);
    color: white;
    padding: 6px 18px;
    border-radius: 5px;
    font-size: 0.9rem;
    box-shadow: 0 1px 3px rgba(30, 128, 255, 0.2);
    border: none;
    cursor: pointer;
}


/* 图片组 */
.garp-img {
    width: 100%;
    /* max-width: 600px; */
    /* 可选，限制最大宽度 */
    margin: 0 auto;
    margin-top: 16px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 默认三列 */
    gap: 10px;
    /* 图片间距 */
}

.grid-item {
    aspect-ratio: 1 / 1;
    /* 保持正方形 */
    overflow: hidden;
    border-radius: 8px;
    cursor: zoom-in;
    transition: all 0.3s;
}

.grid-item:hover {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 图片铺满不变形 */
    display: block;
}

/* 针对单张图片的样式（可选） */
.grid-container.single {
    grid-template-columns: 1fr;
    /* 单列 */
}

.grid-container.single .grid-item {
    aspect-ratio: auto;
    /* 取消正方形限制，让图片按原比例显示 */
    max-height: 400px;
    /* 可限制高度 */
}

.footer-post {
    width: 100%;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    border-top: 1px solid #f0f0f0;
}

.flex-ku {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.divider {
    display: inline-block;
    width: 1px;
    height: 13px;
    background: var(--gray-border);
    margin: 0 3px;
}

.flex-ku li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.flex-ku li:hover {
    color: var(--logo);
}

.flex-ku li svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 评论 */

/* 评论 */
.commentxy {
    width: 100%;
    height: 100%;
    /* margin-top: 25px;
    padding: 20px; */
    background-color: #fff;
}

.commentxy .flex-comment {
    display: flex;
    gap: 10px;
    /* margin-top: 16px; */
}

/* 用户头像 */
.commentxy .flex-comment .avatar-box a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.commentxy .flex-comment .avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 用户上传的图片 */
.flex-imgaes {
    width: 100%;
    padding-left: 12px;
    display: flex;
    gap: 9px;
    /* height: 50px; */
}

.flex-imgaes .image-preview-box {
    width: 64px;
    height: 64px;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.flex-imgaes .image-preview-box .btn-end {
    position: absolute;
    top: 1px;
    right: 1px;
    padding: 4px;
    border-radius: 50%;
    width: 16px;
    transition: all .2s;
    height: 16px;
    line-height: 6px;
    cursor: pointer;
    font-size: 11px;
    color: var(--white);
    background-color: #8a919f9a;
}

.flex-imgaes .image-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 评论输入组 */
.commentxy .flex-comment .content {
    width: 100%;
}

.commentxy .flex-comment .content {
    background-color: #f2f3f570;
    transition: all 0.3s;
    border-radius: 6px;
    overflow: hidden;
}

.commentxy .flex-comment .content .min-body {
    display: flex;
    flex-direction: column;
}

.commentxy .flex-comment .content:hover {
    background-color: #ebebed;
}

/* 点击放大 输入框*/
.focused {
    border: 1px solid var(--logo);
    background-color: var(--white) !important;
}

.empty:before {
    content: attr(placeholder);
    position: absolute;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #8a919f;
}

.focused .dig.rich-input {
    position: relative;
    min-height: 150px !important;
    max-height: 300px !important;
}



.commentxy .flex-comment .content .min-body .rich-input {
    position: relative;
    padding: 8px 12px;
    width: 100%;
    color: #1f67c5;
    outline: none;
    border: none;
    box-sizing: border-box;
    line-height: 28px;
    background-color: transparent;
    font-size: 16px;
    min-height: 44px;
    max-height: 100px;
    overflow: auto;

    flex: 1;
    max-height: none;
}

.commentxy .flex-comment .content .min-body .emji-flex {
    height: 48px;
    padding: 0 12px 0 6px;
    display: flex;
    align-items: center;
}

.hover-color:hover {
    color: var(--logo) !important;
}

.commentxy .flex-comment .content .min-body .emji-flex li {
    font-size: 20px;
    padding: 6px;
    cursor: pointer;
    display: flex;
    color: var(--size);
}

.text-count-limit,
.color-ff {
    color: var(--size);
}

.commentxy .flex-comment .content .min-body .emji-flex .submit-btn {
    border-radius: 4px;
    background: var(--logo);
    height: 32px;
    flex-shrink: 0;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    border: none;
    cursor: pointer;
    margin-left: 9px;
}

.submit-btn.hover-op {
    cursor: not-allowed;
    opacity: .5;
}

/* 评论内容显示部分style */

.comment-list-header {
    margin-top: 25px;
    gap: 15px;
    align-items: center;
}



.comment-list-header span {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    display: inline-block;
    color: var(--size);
    font-weight: 400;
    cursor: pointer;
    border-radius: 2px;
    padding: 3px 4px;
}

.comment-list-header span.avt {
    color: var(--logo);
}

.comment-list-wrapper .comment-card {
    gap: 10px;
    margin-top: 25px;
}

.comment-list-wrapper .comment-card .comm-box {
    gap: 10px;
    /* align-items: center; */
    margin-bottom: 25px;
}

.comment-avatar a {
    width: 40px;
    display: block;
    height: 40px;
    /* background-color: #1e80ff; */
    border-radius: 50%;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-header {
    /* font-size: 14px; */
    font-weight: 400;
    width: 100%;
}

.comment-content-short,
.content-se {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 0;
    word-break: break-word;
}

/* 评论图片 */
.comment-image {
    position: relative;
    border-radius: 4px;
    display: inline-block;
    width: 120px;
    height: 120px;
    margin-right: 12px;
    border: 1px solid var(--gray-border);
    overflow: hidden;
    cursor: zoom-in;
}

.comment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-header .name a {
    color: var(--size);
    display: block;
}

.comment-header .name a {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    white-space: nowrap;
}

.comment-header .author-tag {
    background: rgba(41, 151, 247, 0.1);
    color: #2997f7;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    border-radius: 2px;
    width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    flex-shrink: 0;
}

.comment-header .author-intro {
    color: var(--size);
}

/* 多更 */
.comment-header .comment-action {
    align-items: center;
    justify-content: space-between;
    color: var(--size);
    font-size: 13px;
}

.comment-header .comment-action .flex-op {
    display: flex;
    gap: 16px;
    align-items: center;
}

.comment-header .comment-action .flex-op .align {
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}

.comment-header .comment-action .flex-op .align:hover {
    color: var(--logo);
}

/* 更多按钮 */
/* 更多按钮容器，必须相对定位 */
.comment-header .comment-action .more-btn {
    position: relative;
    cursor: pointer;
}

/* 菜单容器：默认隐藏，绝对定位在按钮下方 */
.comment-header .comment-action .more-btn .more-menu {
    display: none;
    position: absolute;
    top: 100%;
    /* 贴在按钮底部 */
    right: 0;
    /* 右对齐（可根据需要调整） */
    margin-top: 8px;
    /* 与按钮的间隙，留给小三角和桥接层 */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    padding: 6px 0;
    z-index: 1000;
    white-space: nowrap;
    animation: menuFade 0.2s ease;
}

/* 小三角（指向按钮）- 朝上 */
.comment-header .comment-action .more-btn .more-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    /* 贴在菜单顶部外侧 */
    right: 12px;
    /* 与按钮三个点的位置对齐（可微调） */
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    /* 朝上的三角 */
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.03));
    z-index: 2;
}

/* 透明桥接层：覆盖按钮与菜单之间的间隙（8px） */
.comment-header .comment-action .more-btn .more-menu::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    /* 贴在菜单顶部外侧 */
    height: 8px;
    /* 与 margin-top 等宽，覆盖间隙 */
    background: transparent;
    z-index: 1;
}

/* 菜单项样式 */
.comment-header .comment-action .more-btn .more-menu .menu-item {
    padding: 8px 16px;
    font-size: 14px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.comment-header .comment-action .more-btn .more-menu .menu-item:hover {
    background-color: rgba(0, 114, 255, 0.05);
    color: var(--logo);
}

/* 显示菜单：鼠标悬停在按钮或菜单上时显示 */
.comment-header .comment-action .more-btn:hover .more-menu,
.comment-header .comment-action .more-btn .more-menu:hover {
    display: block;
}

/* 入场动画 */
@keyframes menuFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
        /* 菜单从下往上出现，更自然 */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 回复缩小头像 */
.Reply .comment-avatar a {
    width: 32px;
    height: 32px;
}

/* 加载更多评论按钮 */
.fetch-more-comment {
    border: none;
    width: 100%;
    margin-top: 12px;
    border-radius: 4px;
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--size);
    font-size: 15px;
    height: 52px;
    cursor: pointer;
    background: var(--gray-light);
    font-weight: 500;
    transition: all .2s;
}

/* end */
/* tab */

.card {
    margin-top: 30px;
    height: auto;
    width: 100%;
    background-color: #fff;
    padding: 24px;
}

.card .tab-nav {
    width: auto;
    padding-left: 10px;
    gap: 18px;
    display: flex;
    align-items: center;
}

.card .tab-nav li {
    letter-spacing: 0.3px;
    cursor: default;
    position: relative;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;

    background-color: var(--white);
    color: #000000;
    border: 1px solid var(--gray-border);
    transition: all 0.3s;
}

/* 点击状态 */
.active-posts {
    background-color: var(--logo) !important;
    color: var(--white) !important;
}

/* 面板 */
.tab-content {
    width: 100%;
}

/* 举报二级菜单 */


/* 包含菜单的 li 设为相对定位，作为菜单锚点 */
.flex-ku li:last-child {
    position: relative;
}

/* 菜单默认隐藏（透明且不可见） */
.flex-ku li:last-child .menu {
    position: absolute;
    top: 119%;
    /* 显示在按钮下方 */
    right: 0;
    z-index: 100;
    min-width: 100px;
    margin-top: 0;
    /* 与按钮的间距，可根据需要调整（例如 4px） */
    padding: 4px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;

    /* 透明 + 不可见，用于动画 */
    opacity: 0;
    visibility: hidden;
    /* 过渡动画：透明度变化 0.2s，visibility 同步变化 */
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* 三角形指示器 */
.flex-ku li:last-child .menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 1px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

/* 鼠标悬停在 li 上时菜单显示（不透明且可见） */
.flex-ku li:last-child:hover .menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* 菜单项样式 */
.flex-ku li:last-child .menu .menu-item {
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    transition: all 0.3s;

}

.flex-ku li:last-child .menu .menu-item:hover {
    background-color: rgba(0, 114, 255, 0.05);
    color: var(--logo, #1e80ff);
}

/* 可选：图标悬停反馈 */
.flex-ku li:last-child:hover svg {
    opacity: 0.8;
}

/* 面板设置 */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* 热门*/

.view-list li {
    gap: 19px;
    display: flex;
    width: 100%;
    padding: 10px 1px;
    transition: all 0.3s;
    flex-direction: column;
    border-bottom: 1px solid #f0f0f0;
}

.ol-ve span {
    display: inline-flex;
    align-items: center;
    gap: 3px;

}

.view-list li h3 a {
    color: #252933;
}

.ol-ve a {
    color: var(--size);
}

.view-list li:hover {
    background: #f5f5f5;
}

.flex-view {
    color: var(--size);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-view .ol-ve .divider {
    margin: 0 13px;
}

/* 标签 */
.view-list .item-tag a {
    background: #f5f5f5;
    padding: 0 6px;
    border-radius: 2px;
    max-width: 76px;
    box-sizing: border-box;
    margin-left: 6px;
    color: #898989;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 104px;
    white-space: nowrap;
    min-height: 18px;
    line-height: 18px;
}

/* 侧边栏 */


.right-contaienr .card-index {
    width: 100%;
    background-color: #fff;
    border-radius: var(--radius);
    margin-bottom: 16px;
    padding: 0 8px 8px;
}

.card-index .ant-card-head-title {
    font-weight: 700;
}

.card-index .ant-card-head-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-index .ant-card-head {
    padding: 10px;
}

.ant-card-extra {
    color: #86868b;
    font-size: .85rem;
}

.ant-card-extra:hover {
    color: var(--logo);
}

.ant-card-extra:hover .trans {
    transform: translateX(2px);
    color: #0072ff;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ant-card-body {
    font-size: 15px;
    /* padding: 0 7px; */
}

.ant-card-body ul {
    height: 100%;
    /* display: flex;  */
}

.ant-card-body li .mtllotop {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 111, 6, 0.1);
    color: #ff6f06;
    padding: .25rem;
}

.ant-card-body .hot-article-item {
    display: flex;
    gap: 5px;
    /* padding: 5px 10px; */
    font-size: .86rem;
}

.ant-card-body ul li {
    padding: 10px;
    transition: all 0.3s ease;
}

.ant-card-body ul li:hover {
    background-color: #f0f0f080;
    border-radius: 10px;
    color: var(--logo);
}

.ant-card-body .hot-article-item .hot-article-title {
    color: #333333;
    flex: 1;
}

.ant-card-body .hot-article-item .flex-space-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #66666699;
    font-size: .75rem;
}


/* 学习排行榜 */
.Studycheck-in .hot-article-title {
    justify-content: space-between;
    align-items: center;
}

.Studycheck-in .hot-article-title .uspimg {
    width: 22px;
    height: 22px;
    background-color: #0072ff;
    overflow: hidden;
    border-radius: 50%;
}

.Studycheck-in .flex-1-s {
    gap: 5px;
}

.Studycheck-in .hot-article-title .uspimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Studycheck-in span a {
    color: #000000;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    display: block;
    white-space: nowrap;
}

.Studycheck-in span a:hover {
    color: var(--logo);
}

/* end 学习排行榜*/

/* 推荐关注 */
/* ========== 推荐关注卡片 - 与学习排行榜样式统一 ========== */
/* 卡片容器 */
.card-index.Studycheck-in {
    width: 100%;
    background-color: #fff;
    border-radius: var(--radius, 16px);  /* 使用你项目的圆角变量，若无则默认16px */
    margin-bottom: 16px;
    padding: 0 8px 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

/* 卡片头部 — 模拟 .ant-card-head 风格 */
.card-index.Studycheck-in .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px 4px 10px;
    margin-bottom: 0;
}

.card-index.Studycheck-in .card-title {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    color: #1e1f2c;
}

.card-index.Studycheck-in .badge a{
    color: #86868b;
    font-size: 0.85rem;
    cursor: default;
    transition: color 0.2s;
}

/* 推荐列表容器 */
.card-index.Studycheck-in .follow-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 单个推荐项 — 与 .hot-article-item 布局对齐 */
.card-index.Studycheck-in .follow-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

.card-index.Studycheck-in .follow-item:hover {
    background-color: #f0f0f080;
    border-radius: 10px;
}

/* 推荐关注头像   */
.card-index.Studycheck-in .avatar {
    width: 40px;
    height: 40px;
    background-color: #eef2fa;
    border-radius: 50%; 
    overflow: hidden;

}
.card-index.Studycheck-in .avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 用户信息区 */
.card-index.Studycheck-in .user-info {
    flex: 1;
    min-width: 0;
}

.card-index.Studycheck-in .name a{
    font-weight: 550;
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.3;
    transition: color 0.2s ease;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-index.Studycheck-in .follow-item:hover .name a{
    color: var(--logo, #0072ff);
}

.card-index.Studycheck-in .bio {
    font-size: 0.75rem;
    color: #8e8e93;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* 关注按钮  */
.card-index.Studycheck-in .follow-btn {
    background: transparent;
    border: 1px solid #d9d9e3;
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #3a3a44;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-family: inherit;
    flex-shrink: 0;
    white-space: nowrap;
}

.card-index.Studycheck-in .follow-btn:hover {
    border-color: var(--logo);
    background-color: rgba(0, 114, 255, 0.04);
    color: var(--logo);
    transform: scale(0.96);
}

.card-index.Studycheck-in .follow-btn.following {
    background-color: #eff2f8;
    border-color: #e2e8f2;
    color: #475569;
}

.card-index.Studycheck-in .follow-btn.following:hover {
    background-color: #e6ecf5;
    border-color: #cbd5e1;
    color: #1e293b;
    transform: scale(0.96);
}

 
.card-index.Studycheck-in .more-link {
    color: #86868b;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.card-index.Studycheck-in .more-link::after {
    content: "→";
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.card-index.Studycheck-in .more-link:hover {
    color: var(--logo);
}

.card-index.Studycheck-in .more-link:hover::after {
    transform: translateX(2px);
}

/* 响应式微调 */
@media (max-width: 480px) {
    .card-index.Studycheck-in .avatar {
        width: 36px;
        height: 36px; 
    }
    .card-index.Studycheck-in .follow-btn {
        padding: 3px 10px;
        font-size: 0.65rem;
    }
    .card-index.Studycheck-in .name {
        font-size: 0.85rem;
    }
    .card-index.Studycheck-in .bio {
        font-size: 0.7rem;
    }
} 