/* 小工具-全局css */

/* 小工具 loading 骨架屏 */
.jinsom-sidebar-wrap.loading {
    min-height: 120px;
}

.jinsom-sidebar-wrap .widget-skeleton {
    padding: 15px;
}

.jinsom-sidebar-wrap .widget-skeleton .skeleton-line {
    height: 16px;
    background: var(--skeleton-color);
    border-radius: 4px;
    margin-bottom: 12px;
    animation: skeleton-effect-fade 1s infinite;
}

.jinsom-sidebar-wrap .widget-skeleton .skeleton-line.short {
    width: 60%;
}

.sidebar-left {
    position: relative;
    width: 300px;
}

.sidebar-right {
    position: relative;
    width: 300px;
}

.jinsom-sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jinsom-sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jinsom-sidebar-wrap {
    position: relative;
    overflow: hidden;
    background: var(--jinsom-bg-block);
    border-radius: var(--jinsom-border-radius);
    display: flex;
    flex-direction: column;
}

.jinsom-sidebar-wrap .jinsom-empty-page {
    grid-column: 1 / -1;
}

.jinsom-sidebar-wrap .header {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding-left: 20px;
    margin: 0 15px;
    height: 40px;
}

.jinsom-sidebar-wrap .header:before {
    content: "";
    width: 3px;
    height: 15px;
    background: #ff5473;
    position: absolute;
    left: 0;
    border-radius: var(--jinsom-border-radius);
    transform: rotate(15deg);
}

.jinsom-sidebar-wrap .header:after {
    content: "";
    width: 3px;
    height: 12px;
    background: #2196f3;
    position: absolute;
    left: 7px;
    border-radius: var(--jinsom-border-radius);
    transform: rotate(15deg);
}

.jinsom-sidebar-wrap .header + div {
    margin-top: 0;
}

.jinsom-sidebar-wrap .header span {
    font-size: 16px;
    color: var(--jinsom-color-link);
    flex: 1;
}

.jinsom-sidebar-wrap .header a {
    color: #ccc;
    font-size: 12px;
}

.jinsom-sidebar-wrap .header a:hover {
    color: var(--jinsom-theme-color-hover);
}

.jinsom-sidebar-wrap .header m:hover {
    opacity: 0.7;
    color: var(--jinsom-theme-color-hover);
}

.jinsom-sidebar-wrap .header m {
    font-size: 13px;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
}

.jinsom-sidebar-wrap .content {
    position: relative;
    overflow: hidden;
    margin: 15px;
}

.jinsom-sidebar-wrap .list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 15px;
}

/* 全局通用列表布局：左图+右信息 */
.widget-list-flex {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.widget-list-flex .left {
    width: 40px;
    height: 40px;
    position: relative;
}

.widget-list-flex .left .avatarimg {
    display: flex;
}

.widget-list-flex .right {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2px;
    flex-direction: column;
}

.widget-list-flex .info {
    display: flex;
    align-items: center;
    height: 20px;
    line-height: 20px;
    justify-content: space-between;
}

.widget-list-flex .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.widget-list-flex .name .nickname {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.widget-list-flex .number {
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: #777;
    font-size: 12px;
}

.widget-list-flex .number i {
    font-size: 14px;
    margin-right: 3px;
}

.widget-list-flex .desc {
    display: block;
    font-size: 12px;
    color: var(--jinsom-color-desc);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 18px;
    min-height: 18px;
}








/* 用户资料 */
.jinsom-widget-user-info .content li {
    display: flex;
    line-height: 35px;
    gap: 10px;
}

.jinsom-widget-user-info .content li m {
    width: 75px;
    color: #999;
    text-align: right;
}

.jinsom-widget-user-info .content li span {
    flex: 1;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
}




/* 头衔 */
.jinsom-widget-honor .content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jinsom-widget-honor .content li {
    padding: 0 10px;
    line-height: 25px;
    border: 1px solid #f1f1f1;
    border-radius: var(--jinsom-border-radius);
    cursor: pointer;
    color: #777;
    transition: 0.3s;
}

.jinsom-widget-honor .content li:hover {
    color: var(--jinsom-theme-color);
    border-color: rgba(var(--jinsom-theme-color-rgb), 0.3);
}



/* 搜索 */
.jinsom-widget-search .form {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    height: 40px;
    border-radius: var(--jinsom-border-radius);
}

.jinsom-widget-search .form input {
    flex: 1;
    border: 0;
    background: none;
    padding: 0 15px;
    line-height: 40px;
}

.jinsom-widget-search .form i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}



/* 礼物 */
.jinsom-widget-gift .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.jinsom-widget-gift li {
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: var(--jinsom-border-radius);
    text-align: center;
    font-size: 12px;
    flex-direction: column;
    border: 1px #f1f1f1 solid;
    padding-bottom: 20px;
    height: 100px;
}

.jinsom-widget-gift li img {
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #f5f5f5;
}

.jinsom-widget-gift li p {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    font-size: 11px;
    gap: 3px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.jinsom-widget-gift li em {
    font-style: normal;
}

.jinsom-widget-gift li i {
    font-style: normal;
    color: #FF5722;
}



/* 访客 */
.jinsom-widget-visitor {
    overflow: initial;
}

.jinsom-widget-visitor .content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    overflow: initial;
}

.jinsom-widget-visitor .content a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1;
}

.jinsom-widget-visitor .jinsom-empty-page {
    grid-column: 1 / -1;
}



/* 登录工具 */
.jinsom-widget-login .content {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.jinsom-widget-login .content .bg {
    background-size: cover;
    height: 100px;
    position: relative;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.jinsom-widget-login .content .bg:before {
    content: "";
    background: linear-gradient(0deg, #fff, rgb(255 255 255 / 0%));
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
}

.jinsom-widget-login .content .bg .avatarimg {
    background: rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: relative;
}

.jinsom-widget-login .content .bg .avatarimg:hover {
    opacity: 1;
}

.jinsom-widget-login .content .bg .avatarimg i {
    bottom: 0px;
    right: 0px;
}

.jinsom-widget-login .content .name {
    font-size: 22px;
    line-height: 35px;
    text-align: center;
    padding: 0 10px;
}

.jinsom-widget-login .content .info {
    text-align: center;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    gap: 3px;
}

.jinsom-widget-login .content .info .jinsom-honor {
    color: #fff;
}

.jinsom-widget-login .content .desc {
    font-size: 13px;
    color: #777;
    padding: 5px;
    text-align: center;
    line-height: 20px;
}

.jinsom-widget-login .content .number {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.jinsom-widget-login .content .number a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px #f7f7f7 solid;
}

.jinsom-widget-login .content .number a:last-of-type {
    border: 0;
}

.jinsom-widget-login .content .number a b {
    color: #333;
    font-size: 16px;
}

.jinsom-widget-login .content .number a span {
    color: #999;
    font-size: 12px;
}

.jinsom-widget-login .container {
    padding: 15px 15px 0;
}



/* 客服中心 */
.jinsom-widget-contact .content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jinsom-widget-contact .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jinsom-widget-contact .info-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jinsom-widget-contact .info-main .icon {
    border-right: 1px #f7f7f7 solid;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
}

.jinsom-widget-contact .info-main .icon i {
    font-size: 35px;
    color: #bbb;
}

.jinsom-widget-contact .info-main .time {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.jinsom-widget-contact .info-main .time p {
    font-size: 25px;
    color: #777;
    line-height: 25px;
}

.jinsom-widget-contact .info-main .time span {
    font-size: 12px;
    color: #999;
    line-height: 20px;
    padding: 0 2px;
}

.jinsom-widget-hel .info-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.jinsom-widget-contact .info-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.jinsom-widget-contact .info-menu a {
    position: relative;
    display: flex;
    height: 30px;
    align-items: center;
    padding-left: 30px;
    color: #666;
    border: 1px #f1f1f1 solid;
    border-radius: 3px;
}

.jinsom-widget-contact .info-menu i {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jinsom-widget-contact .codeimg {
    display: flex;
    flex-direction: column;
}

.jinsom-widget-contact .codeimg-title {
    line-height: 30px;
}

.jinsom-widget-contact .codeimg-list {
    display: flex;
    flex-wrap: wrap;
}

.jinsom-widget-contact .codeimg-list li {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.jinsom-widget-contact .codeimg-list a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.jinsom-widget-contact .codeimg-list img {
    width: 100%;
    height: 100%;
}

.jinsom-widget-contact .codeimg-list p {
    line-height: 25px;
    text-align: center;
}





/* 小工具-图文广告 */
.jinsom-widget-ad-img {
    background: none;
}

.jinsom-widget-ad-img .header {
    background: #fff;
    margin: 0;
    padding: 0 15px 0 35px;
}

.jinsom-widget-ad-img .header::before {
    left: 15px;
}

.jinsom-widget-ad-img .header::after {
    left: 22px;
}

.jinsom-widget-ad-img .content {
    background: #fff;
    margin: 0;
    padding: 0 15px 15px;
    border-radius: var(--jinsom-border-radius);
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.jinsom-widget-ad-img li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 125px;
    border-radius: var(--jinsom-border-radius);
}

.jinsom-widget-ad-img li a {
    flex: 1;
    display: flex;
    height: 100%;
}

.jinsom-widget-ad-img li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jinsom-widget-ad-img li span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    line-height: 30px;
    padding: 0 10px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    transition: 0.3s;
}

.jinsom-widget-ad-img li:hover span {
    bottom: 0;
}

.jinsom-widget-ad-img .no-title {
    margin: 0;
    padding: 0;
    background: none;
}











/* 用户展示 */
.jinsom-widget-user-list {
    overflow: initial;
}

.jinsom-widget-user-list .grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    overflow: initial;
    margin: 15px;
}

.jinsom-widget-user-list .grid a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jinsom-widget-user-list .grid .avatarimg {
    aspect-ratio: 1 / 1;
}


/* 登录签到 */
.jinsom-widget-signin {
    display: flex;
    flex-direction: column;
}

.jinsom-widget-signin .content {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 10px 15px;
}

.jinsom-widget-signin .content .tips {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.jinsom-widget-signin .tips .title {
    color: #252933;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.jinsom-widget-signin .tips .text {
    color: #888;
    font-size: 12px;
    line-height: 24px;
}

.jinsom-widget-signin .tips .text i {
    color: var(--jinsom-theme-color);
    font-style: normal;
    padding-right: 3px;
    font-weight: bold;
}

.jinsom-widget-signin .signedin {
    color: #999;
    border: 1px solid #f1f1f1;
}

.jinsom-widget-signin .list {
    border-top: 1px #f1f1f1 solid;
    margin: 0 15px 15px;
    padding: 15px 0 0 0;
}

.jinsom-widget-signin .list .rank {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 2;
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 2px #fff solid;
    color: #fff;
}

.jinsom-widget-signin .list a:nth-of-type(1) .rank {
    background: #ff3b30;
}

.jinsom-widget-signin .list a:nth-of-type(2) .rank {
    background: #ff9500;
}

.jinsom-widget-signin .list a:nth-of-type(3) .rank {
    background: #28a745;
}

.jinsom-widget-signin .list .left {
    width: 40px;
    height: 40px;
}

.jinsom-widget-signin .list .right {
    gap: 0;
}

.jinsom-widget-signin .list .info {
    height: 20px;
}

.jinsom-widget-signin .zero {
    color: #fe6d6d;
}

.jinsom-widget-signin .zero i {
    font-style: normal;
    font-size: 10px;
    background: #fe6d6d;
    height: 16px;
    color: #fff;
    padding: 0 3px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 8px;
}

.jinsom-widget-signin .zero i:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    right: -3px;
    background: #fe6d6d;
    transform: rotate(45deg);
    border-radius: 0 0 0 5px;
}



/* 关于作者 */
.jinsom-widget-post-user-info .bg {
    position: absolute;
    background-size: cover;
    height: 100px;
    width: 100%;
    background-position: center;
}

.jinsom-widget-post-user-info .bg:before {
    content: "";
    background: linear-gradient(0deg, #fff, rgb(255 255 255 / 0));
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
}

.jinsom-widget-post-user-info .info {
    align-items: center;
    display: grid;
    justify-content: center;
    text-align: center;
    padding: 50px 15px 0
}

.jinsom-widget-post-user-info .info-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    margin: auto
}

.jinsom-widget-post-user-info .info-desc {
    display: grid;
    align-items: center;
    text-align: center
}

.jinsom-widget-post-user-info .info-desc .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.jinsom-widget-post-user-info .info-desc .desc {
    color: #999;
    font-size: 12px
}

.jinsom-widget-post-user-info .number {
    display: flex;
    text-align: center;
    padding: 15px
}

.jinsom-widget-post-user-info .number span {
    flex: 1;
    cursor: pointer;
    transition: .3s;
    display: grid
}

.jinsom-widget-post-user-info .number span n {
    font-weight: 500;
    font-size: 16px;
    color: #333;
    line-height: 22px
}

.jinsom-widget-post-user-info .number span p {
    font-size: 12px;
    line-height: 20px;
    color: #999
}

.jinsom-widget-post-user-info .jinsom-follow-chat-btn {
    padding: 0 15px 15px
}


/* 推广分享小工具 */
.jinsom-widget-share .content {
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.jinsom-widget-share .item {
    display: flex;
    height: 25px;
    align-items: center;
    gap: 5px;
    line-height: 25px;
    position: relative;
}

.jinsom-widget-share .item span {
    color: #666;
}

.jinsom-widget-share .item i {
    color: var(--jinsom-theme-color);
    font-style: normal;
}

.jinsom-widget-share .item n {
    color: #999;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    background: #f7f7f7;
    padding: 0 10px;
    font-size: 12px;
}

.jinsom-widget-share .item .copy {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jinsom-widget-share .item .copy g {
    position: absolute;
    line-height: 20px;
    background: var(--jinsom-theme-color);
    color: #fff;
    font-size: 12px;
    padding: 0 5px;
    border-radius: 3px;
}

.jinsom-widget-share .item .copy em {
    background: var(--jinsom-theme-color);
    color: #fff;
    font-size: 12px;
    font-style: normal;
    border-radius: var(--jinsom-border-radius-btn);
    position: absolute;
    right: -40px;
    width: 35px;
    text-align: center;
    cursor: pointer;
    transition: .15s;
}

.jinsom-widget-share .item .copy em:hover {
    opacity: .7;
}

.jinsom-widget-share .item .copy:hover em {
    right: 0;
}

.jinsom-widget-share .platform {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    justify-content: center;
    gap: 20px;
}

.jinsom-widget-share .platform li i {
    color: #777;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.jinsom-widget-share .platform li i {
    font-size: 30px;
}

.jinsom-widget-share .platform li:hover {
    opacity: .7;
}

.jinsom-widget-share .platform .wechat i {
    color: #3eb135;
}

.jinsom-widget-share .platform .qzone i {
    color: #ff9800;
}

.jinsom-widget-share .platform .qq i {
    color: #00a1e0;
}

.jinsom-widget-share .platform .weibo i {
    color: #e6162d;
}

.jinsom-widget-share .platform .telegram i {
    color: #374151;
}



/* html代码 */


/* 实时动态 */
.jinsom-widget-now .jinsom-auto-scroll {
    max-height: 350px;
    overflow-y: scroll;
    margin: 15px 5px 15px 15px;
    padding-right: 5px;
}

.jinsom-widget-now .jinsom-auto-scroll-on {
    overflow-y: scroll;
}

.jinsom-widget-now .jinsom-auto-scroll::-webkit-scrollbar {
    width: 5px;
}

.jinsom-widget-now .jinsom-auto-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.jinsom-widget-now .jinsom-auto-scroll::-webkit-scrollbar-thumb {
    background: #fff;
}

.jinsom-widget-now .jinsom-auto-scroll-on::-webkit-scrollbar-thumb {
    background: #999;
}


/* 热搜 */
.jinsom-widget-search-rank .list {
    gap: 0;
}

.jinsom-widget-search-rank .list a {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 35px;
}

.jinsom-widget-search-rank .list .rank {
    width: 20px;
    color: #999;
    font-size: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
}

.jinsom-widget-search-rank .list a:nth-of-type(-n+3) .rank {
    font-size: 10px;
    border-radius: 3px;
    color: #fff;
}

.jinsom-widget-search-rank .list a:nth-of-type(1) .rank {
    background: #ff3b30;
}

.jinsom-widget-search-rank .list a:nth-of-type(2) .rank {
    background: #ff9500;
}

.jinsom-widget-search-rank .list a:nth-of-type(3) .rank {
    background: #28a745;
}

.jinsom-widget-search-rank .list .conter {
    flex: 1;
    display: flex;
    gap: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jinsom-widget-search-rank .list .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0078b6;
    font-size: 13px;
}

.jinsom-widget-search-rank .list .tip {
    font-size: 12px;
    width: 18px;
    height: 18px;
    background: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 3px;
    min-width: 18px;
}

.jinsom-widget-search-rank .list .new {
    background-image: linear-gradient(to right, #4cd964, #34c759);
}

.jinsom-widget-search-rank .list .hot {
    background-image: linear-gradient(to right, #FFC107, #FF9800);
}

.jinsom-widget-search-rank .list .boiling {
    background-image: linear-gradient(to right, #ff6b22, #ff3b30);
}

.jinsom-widget-search-rank .list .count {
    color: #808080;
    font-size: 12px;
}




/* 内容列表--简约 */
.jinsom-widget-post-list .style-normal {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.jinsom-widget-post-list .style-normal a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 30px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jinsom-widget-post-list .style-normal em {
    width: 20px;
    color: #999;
    font-size: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
    font-style: normal;
}

.jinsom-widget-post-list .style-normal span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jinsom-widget-post-list .style-normal a:nth-of-type(-n+3) em {
    color: #fff;
    font-size: 10px;
    border-radius: 3px;
}

.jinsom-widget-post-list .style-normal a:nth-of-type(1) em {
    background-color: #ff3b30
}

.jinsom-widget-post-list .style-normal a:nth-of-type(2) em {
    background-color: #ff9500
}

.jinsom-widget-post-list .style-normal a:nth-of-type(3) em {
    background-color: #28a745
}

.jinsom-widget-post-list .style-normal .emotion-type-big_img {
    width: 22px;
    height: 22px;
}

/* 内容列表--音乐视频播放图标 */
.jinsom-widget-post-list .video-icon,
.jinsom-widget-post-list .music-icon {
    position: absolute;
    font-size: 35px;
    color: #fff;
    background: rgb(255 255 255 / 35%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0 0 35px #fff;
    z-index: 9;
    top: 10px;
}


/* 内容列表--无图布局 */
.jinsom-widget-post-list .style-no-img {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jinsom-widget-post-list .style-no-img li {
    display: flex;
    flex-direction: column;
}

.jinsom-widget-post-list .style-no-img .link {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 25px;
}

.jinsom-widget-post-list .style-no-img .info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    line-height: 20px;
}

.jinsom-widget-post-list .style-no-img .avatarimg {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #999;
}

/* 内容列表--左右布局 */
.jinsom-widget-post-list .style-flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jinsom-widget-post-list .style-flex li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jinsom-widget-post-list .style-flex .left {
    width: 115px;
    height: 70px;
    border: 1px #f1f1f1 solid;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jinsom-widget-post-list .style-flex .left img {
    width: 100%;
    height: 100%;
    border-radius: var(--jinsom-border-radius-img);
    object-fit: cover;
    transition: .1s;
}

.jinsom-widget-post-list .style-flex .left:hover img {
    transform: scale(1.05);
}

.jinsom-widget-post-list .style-flex .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jinsom-widget-post-list .style-flex .title {
    color: #000;
    line-height: 22px;
    font-size: 14px;
    height: 44px;
}

.jinsom-widget-post-list .style-flex .title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.jinsom-widget-post-list .style-flex .info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    line-height: 20px;
}

/* 内容列表--单列布局 */
.jinsom-widget-post-list .style-one {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jinsom-widget-post-list .style-one a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 125px;
    border: 1px #f1f1f1 solid;
    border-radius: var(--jinsom-border-radius-img);
}

.jinsom-widget-post-list .style-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.jinsom-widget-post-list .style-one .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5, 5, 5, .6), rgba(8, 8, 8, 0));
    color: #fff;
    font-size: 13px;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 5px;
}

.jinsom-widget-post-list .style-one .jinsom-emoji {
    width: 20px;
    height: 20px;
}

.jinsom-widget-post-list .style-one .video-icon {
    top: calc(50% - 30px);
}

.jinsom-widget-post-list .style-one .music-icon {
    top: calc(50% - 30px);
}

/* 内容列表--两列布局 */
.jinsom-widget-post-list .style-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.jinsom-widget-post-list .style-two a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 80px;
    border: 1px #f1f1f1 solid;
    border-radius: var(--jinsom-border-radius-img);
}

.jinsom-widget-post-list .style-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.jinsom-widget-post-list .style-two .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, .25);
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 5px;
}

.jinsom-widget-post-list .style-two .jinsom-emoji {
    width: 20px;
    height: 20px;
}


/* 贡献排行 */
.jinsom-widget-contrib .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jinsom-widget-contrib .jinsom-follow-chat-btn {
    padding: 0;
}

.jinsom-widget-contrib .chat {
    display: none;
}

.jinsom-widget-contrib .follow {
    font-size: 12px;
    line-height: 28px;
    padding: 0 10px;
}