/* 分享 */
.pix_icon {
    display: flex;
    align-items: center;
    flex-direction: row;
    align-content: center;
    margin-left: 5px;
    color: #7a7fae;
    font-size: 12px;
}

.share_btn_icon {
    margin-left: 15px;
    font-size: 13px;
}
/* 底部没有更多动态啦 */
#t_pagination , #pagination {
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ebf2ed;
}

#t_pagination a , #pagination a {
    padding: 10px 15px;
    background: #22bb6d;
    color: #fff;
    border-radius: 8px;
    display: flex;
}

/* 添加在 moments.css 文件中 */
.img_list .mo_img {
    position: relative;
    display: block;
}

.img_list .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* 点赞样式 - 确保图标变红色 */
.up_like.liked .iconfont {
    color: #ff3860 !important;
}

/*
*评论滑块
*/
.comment-form-validate {
    display: inline-block;
	position: relative;
	margin-right: 10px;
}

.comment-form-validate input {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: pointer;	
}

label.comment_check_style {
    width: 50px;
    height: 2px;
    background: #ccc;
    position: relative;
    display: inline-block;
    border-radius: 46px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
	top: -4px;
}

label.comment_check_style:after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    left: 0;
    top: -8px;
    z-index: 2;
    background: #bcbcd4;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.comment-form-validate input:hover + label:after {
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2), 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}
.comment-form-validate input:checked + label:after {
  left: 32px;
  background: #2942ff;
}
/* 基础样式 */
.moments-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* 公告样式 */
.moments-announcement {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
    cursor: pointer;
    transition: all 0.3s ease;
}

.announcement-icon {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.announcement-icon i {
    font-size: 24px;
    color: #e74c3c;
}

.announcement-content {
    position: fixed;
    bottom: -100%;
    right: 20px;
    width: 300px;
    max-width: 80vw;
    background: var(--main-bg-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
    z-index: 1001;
}

.moments-announcement.expanded .announcement-content {
    opacity: 1;
    transform: translateY(0);
    bottom: 20px;
    z-index: 10000;
}

/* 头部区域 */
.index_banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.user_info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
    z-index: 2;
}

.user_info .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.user_info .left .name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.user_info .left .des {
    font-size: 16px;
    opacity: 0.9;
}

.user_info .avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* 分类导航 */
.moment_cat_nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex-wrap: wrap;
    gap: 8px;
}

.moment_cat_nav ul li {
    margin: 0;
}

.moment_cat_nav ul li a {
    display: block;
    padding: 8px 18px;
    background: #f8f9fa;
    border-radius: 30px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border: 1px solid #eaeaea;
}

.moment_cat_nav ul li a:hover {
    background: #f0f2f5;
}

.moment_cat_nav ul li a.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* 动态项 */
.moment_item {
    background: var(--main-bg-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--blur-bg);
}

.list_user_meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.list_user_meta .avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.list_user_meta .name {
    font-weight: 600;
    font-size: 16px;
    color: var(--main-color);
}

.list_user_meta time {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 3px;
}

.blog_content .p_title a {
    font-weight: bold;
    color: var(--main-color);
    text-decoration: none;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.blog_content .t_content {
    margin: 10px 0;
    line-height: 1.6;
    color: var(--main-color);
    font-size: 15px;
}

/* 图片展示 - 修复为指定结构 */
.img_list {
    margin: 15px 0;
}

.img_list .list_inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

.img_list .list_inner a {
    display: block;
    position: relative;
    padding-top: 100%; /* 1:1 比例 */
    border-radius: 8px;
    overflow: hidden;
}

.img_list .list_inner a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img_list .list_inner a:hover img {
    transform: scale(1.05);
}

/* 底部操作栏 */
.entry-footer {
    margin-top: 10px;
    background: var(--main-bg-color);
    padding: 5px 7px;
    border-radius: 8px;
    border: 1px solid var(--body-bg-color);
}
.post_footer_meta .left, .post_footer_meta .right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.post_footer_meta .left, .post_footer_meta .right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.post_footer_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky_icon {
    background: #ffcc00;
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.post_footer_meta span.sticky_icon {
    padding: 2px 7px;
    border-radius: 3px;
    margin-right: 5px;
}

.post_footer_meta span {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    color: var(--main-color);
    font-size: 12px;
}

.post_footer_meta span i {
    margin-right: 3px;
    font-size: 13px;
    color: #819286;
}
.post_footer_meta span.comnum {
    padding: 2px 7px;
    background: var(--muted-2-color);
    color: var(--main-bg-color);
    border-radius: 3px;
    cursor: pointer;
}

.post_footer_meta span.comnum i {
    color: #fff;
    position: relative;
}

a.up_like {
    display: flex;
    align-items: center;
    flex-direction: row;
    align-content: center;
    margin-left: 5px;
    color: #444444;
    font-size: 12px;
}

a.up_like i {
    margin-right: 3px;
    font-size: 13px;
    color: #819286;
    position: relative;
}


a.up_like.done span {
    color: #fc7f70;
}

a.up_like.done i {
    color: #fc7f70;
}

span.ip_loca {
    font-size: 12px;
    display: flex;
    align-items: center;
    align-content: center;
    margin-top: 10px;
    color: #354677;
    margin-bottom: 5px;
}

span.ip_loca i {
    margin-right: 3px;
}

.comnum {
    display: flex;
    align-items: center;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}

.comnum:hover {
    color: #3498db;
}

.comnum i {
    margin-right: 5px;
    font-size: 18px;
}

/* 评论区域 */
.topic_comments_wrap {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--main-border-color);
}

.comments-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    color: #2c3e50;
}

.comments-title i {
    margin-right: 8px;
    color: #3498db;
}

.toi_comments_main {
    margin-top: 20px;
}

.vi_avatar_box {
    position: relative;
    margin-bottom: 20px;
}

a.edit-profile img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 5px;
}

.edit-profile {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: var(--main-bg-color);
    border: 1px solid var(--body-bg-color);
}

.edit-profile img {
    margin-right: 10px;
}

.edit-profile small {
    font-size: 12px;
    color: #666;
}

.uk-drop {
    position: absolute;
    top: 100%;
    left: 0;
    width: -webkit-fill-available;
    border-radius: 8px;
    padding: 15px;
    z-index: 100;
}

.uk-drop .card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.uk-drop input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ava_comments {
    margin-bottom: 15px;
}

.comment {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    background: var(--body-bg-color);
    border: azure;
}

.topic_comments_foobar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.comment_smile_box {
    position: relative;
}

.com_smile_show {
    left: 0;
    width: 300px;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
}

.inner {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
}

.smile_btn {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
}

.smile_btn:hover {
    background: #f0f2f5;
}

.com_push {
    display: flex;
    align-items: center;
}

input#push_comment {
    font-size: 13px;
    border: none;
    display: flex;
    align-items: center;
    padding: 8px 18px;
    cursor: pointer;
    background: #22bb6d;
    color: #fff;
    border-radius: 5px;
}

.push_comment:hover {
    background: #2980b9;
}

.topic_comments_foobar .right {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
/* 评论列表 */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.comment-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;


.comment_body {
    display: flex;
}

.profile {
    margin-right: 15px;
}

.profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.com_right {
    flex: 1;
}

.commeta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.commeta .left {
    display: flex;
    align-items: center;
}

.commeta .author {
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

.commeta time {
    font-size: 12px;
    color: #888;
    margin-left: 10px;
}

.commeta .info a {
    color: #666;
    text-decoration: none;
}

.comment_list_footer {
    margin-top: 10px;
}
/* 底部 */
    .no-moments {
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ebf2ed;
}
/* 响应式调整 */
@media (max-width: 768px) {
    .index_banner {
        height: 250px;
    }
    
    .user_info .avatar img {
        width: 55px;
        height: 55px;
    }
    
    .img_list .list_inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .moments-announcement {
        top: 10px;
        right: 10px;
    }
    
    .announcement-content {
        width: 90%;
        right: 5%;
        left: 5%;
    }
    
    .com_smile_show {
        width: 100%;
    }
    
    .inner {
        grid-template-columns: repeat(6, 1fr);
    }

}