/* 标签组外层容器（对应你的 .th-group-tags） */
.th-group-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

/* 单个标签卡片（对应你的 .th-tag-chip） */
.th-tag-chip {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #dfe6e9;
    padding: 5px 6px;
    border-radius: 12px;
    font-size: 12px;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

/* 标签hover交互效果 */
.th-tag-chip:hover {
    background: #4ecdc4; /* 可自定义主色 */
    border-color: #4ecdc4;
    color: #fff;
    transform: scale(1.05);
}

/* 标签彩色小圆点（对应你的 .th-chip-dot） */
.th-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

/* hover时小圆点变白色 */
.th-tag-chip:hover .th-chip-dot {
    background-color: #fff !important;
}


.th-chip-count {
    margin-left: 6px;
    opacity: 0.6;
    font-size: 12px;
}





/* 在线标识 */
.pls .avatar .avtm {
    position: relative;
}
.online_dot {
    position: absolute;
    top: 0;
    left: 10px;
    width: 15px;
    height: 15px;
    background-color: #2ecc71;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.bui .avtm {
    position: relative;
    display: inline-block;
  
}







.t_f a:hover {
    text-decoration: none;
    background: var(--comiis-color);
    border-width: 0;
    color: var(--comiis-bgf) !important;
    border-radius: 4px;
}