/* 内容列表模板css  +  评论部分css */

/* 内容列表模板css 》》》》》》》》》》》》》》》》》》*/

/* 默认、sns模板———————————————————————————————————— */
[list-style="default"] {
    display: flex;
    flex-direction: column;
}

[list-style="default"] .jinsom-empty-page {
    background: none;
}

.list-style-default {
    padding: 15px;
    background: #fff;
    border-radius: var(--jinsom-border-radius);
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.list-style-default .list-left {
    display: flex;
    width: 40px;
}

.list-style-default .list-left a {
    width: 40px;
    height: 40px;
    position: relative;
}

.list-style-default .list-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.list-style-default .list-right .post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
}

.list-style-default .list-right .post-header .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.list-style-default .list-right .post-header .more {
    line-height: 40px;
    width: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-style-default .list-right .post-header .more i {
    font-size: 22px;
    color: #eee;
    transition: 0.3s;
}

.list-style-default .list-right .post-header .name {
    color: #333;
    display: flex;
    height: 20px;
    line-height: 20px;
    align-items: center;
}

.list-style-default .list-right .post-header .name a {
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.list-style-default .list-right .post-header .desc {
    font-size: 12px;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 18px;
    line-height: 18px;
}

.list-style-default .list-right .post-header .desc span {
    height: 18px;
    display: flex;
    align-items: center;
}

.list-style-default .list-right .post-title {
    word-break: break-all;
    line-height: 20px;
    font-size: 15px;
}

.list-style-default .list-right .post-title a {
    color: #111;
}

.list-style-default .list-right .post-content {
    line-height: 22px;
    position: relative;
    word-break: break-all;
    font-size: 14px;
}

.list-style-default .list-right .post-content .article-content {
    display: flex;
}

.list-style-default .list-right .post-content p {
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.list-style-default .list-right .post-content .post-cover {
    width: 150px;
    display: flex;
    position: absolute;
    height: 100%;
}

.list-style-default .list-right .post-content .post-cover img {
    height: 100%;
    border-radius: var(--jinsom-border-radius);
    filter: brightness(.9);
    width: 100%;
    object-fit: cover;
}

.list-style-default .list-right .post-content .content-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.list-style-default .list-right .post-content .post-cover + .content-info {
    padding-left: 160px;
    min-height: 80px;
}

.list-style-default .list-right .post-content .content-info .title {
    font-size: 16px;
    color: #111;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.list-style-default .list-right .post-content img:not(.jinsom-emoji) {
    max-width: 100%;
    height: auto;
}

.list-style-default .list-right .emotion {
    display: inline-block;
    vertical-align: bottom;
}


.list-style-default .list-right .post-content .read-all-content {
    color: var(--jinsom-link-color);
    margin-left: 10px;
}

.list-style-default .list-right .post-bar {
    display: flex;
    align-items: center;
    gap: 35px;
    padding-top: 10px;
}

.list-style-default .list-right .post-bar a {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    line-height: 20px;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    white-space: nowrap;
}

.list-style-default .list-right .post-bar .avatar {
    width: 20px;
}

.list-style-default .list-right .post-bar i {
    font-size: 16px;
}

.list-style-default .list-right .post-bar em {
    font-style: normal;
}

.list-style-default .list-right .post-bar .post-bbs-info {
    border-radius: 20px;
    background: #eee;
    padding: 0 8px 0 1px;
}

.list-style-default .list-right .post-bar .post-bbs-info img {
    width: 18px;
    height: 18px;
    border-radius: 100%;
}

.list-style-default .list-right .post-bar .post-bbs-info span {
    color: #666;
}

.list-style-default .list-right .post-bar .placeholder {
    flex: 1;
}

.list-style-default .list-right .post-bar .jinsom-like {
    color: #ffbebb;
}


/* 艾特列表 */
.list-style-default .list-right .at-list {
    margin-bottom: 10px;
    width: fit-content;
    color: #535353;
    border-bottom: 1px #ddd dashed;
    padding-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.list-style-default .list-right .at-list .at {
    color: #3897ff;
}


/* 图片列表 */
.list-style-default .list-right .post-img {
    position: relative;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3, 1fr);
    width: fit-content;
}

.list-style-default .list-right .post-img.img-1 {
    grid-template-columns: repeat(2, 1fr);
}

.list-style-default .list-right .post-img.img-1 a {
    aspect-ratio: auto;
}

.list-style-default .list-right .post-img.img-1 img {
    max-height: 300px;
}

.list-style-default .list-right .img-2 {
    grid-template-columns: repeat(2, 1fr);
    width: 88%;
}

.list-style-default .list-right .post-img a {
    position: relative;
    background: rgb(0 0 0 / 20%);
    border-radius: var(--jinsom-border-radius-img);
    border: 1px #f1f1f1 solid;
    aspect-ratio: 1 / 1;
    width: 100%;
    display: block;
    object-fit: cover;
    overflow: hidden;
}

.list-style-default .list-right .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--jinsom-border-radius-img);
}

.list-style-default .list-right .post-img .more-img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    opacity: 0.6;
    font-size: 16px;
    color: #fff;
    z-index: 1;
}

.list-style-default .list-right .post-img .gif {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 10px;
    background: rgb(0 0 0 / 30%);
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 2px;
    color: #fff;
    bottom: unset;
}

.list-style-default .list-right .post-img .no {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.list-style-default .list-right .post-img .no i {
    font-size: 30px;
    opacity: 0.4;
    color: #818181;
}

.list-style-default .list-right .post-img .no em {
    font-size: 14px;
    text-align: center;
    z-index: 1;
    color: #818181;
    margin-top: 10px;
}

.list-style-default .list-right .post-img .no:before {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #e5e5e5;
}

/* 标签列表 */
.list-style-default .list-right .post-tag-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
}

.list-style-default .list-right .post-tag-list a {
    display: flex;
    background: #f5f5f5;
    line-height: 25px;
    border-radius: var(--jinsom-border-radius-btn, 3px);
    position: relative;
    overflow: hidden;
    color: #777;
    border: 1px #f1f1f1 solid;
    gap: 1px
}

.list-style-default .list-right .post-tag-list i {
    font-size: 12px;
    width: 20px;
    text-align: center
}

.list-style-default .list-right .post-tag-list m {
    padding-right: 7px
}

/* 定位 */
.list-style-default .list-right .post-address {
    font-size: 14px;
}

.list-style-default .list-right .post-address a {
    display: flex;
    align-items: center;
    color: #888;
}

.list-style-default .list-right .post-address i:first-child {
    color: #888;
    font-size: 16px;
    margin-right: 3px;
}

.list-style-default .list-right .post-address span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* 转发 */
.list-style-default .list-right .post-reprint-box {
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.list-style-default .list-right .reprint-user-name {
    margin-bottom: 5px;
}

.list-style-default .list-right .reprint-user-name a {
    display: block;
}

.list-style-default .list-right .reprint-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.list-style-default .list-right .reprint-title a {
    color: #555;
}

.list-style-default .list-right .reprint-content a {
    color: #666;
    display: block;
}


/* 视频 */
.list-style-default .list-right .video {
    width: 80%;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 70%);
    border-radius: var(--jinsom-border-radius);
    position: relative;
    overflow: hidden;
}

.list-style-default .list-right .video .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
}

.list-style-default .list-right .video .art-loading-show {
    min-height: 240px;
}

.list-style-default .list-right .video .art-danmuku img.jinsom-emoji {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    vertical-align: -3px;
}

.list-style-default .list-right .video .cover {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px) brightness(0.9);
}

.list-style-default .list-right .video .cover .duration {
    color: #fff;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.list-style-default .list-right .video .cover img {
    object-fit: cover;
    object-position: var(--jinsom-img-object-position, center);
    border-radius: 2px;
    background: #f1f1f1;
    position: relative;
    height: 100%;
    max-width: 100%;
    filter: brightness(0.8);
}

.list-style-default .list-right .video .cover i {
    position: absolute;
    color: #fff;
    font-size: 50px;
    opacity: 0.8;
    cursor: pointer;
}

.list-style-default .list-right .video .cover i:hover {
    opacity: 1;
}

.list-style-default .list-right .video.horizontal.ok .video-dom {
    max-width: 100%;
    max-height: 280px;
}

.list-style-default .list-right .video .artplayer-plugin-danmuku {
    background-color: #000;
    padding: 10px;
    height: 52px;
}

/* 音乐 */
.list-style-default .list-right .music {
    position: relative;
    height: 80px;
    display: flex;
    overflow: hidden;
    align-items: center;
    border-radius: var(--jinsom-border-radius);
    background-size: cover;
    background-position: 80px center;
    background-repeat: no-repeat;
}

.list-style-default .list-right .music .music-cover {
    width: 80px;
    height: 80px;
    position: relative;
}

.list-style-default .list-right .music .music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-style-default .list-right .music .music-cover .jinsom-icon {
    position: absolute;
    color: #fff;
    font-size: 25px;
    top: 0;
    cursor: pointer;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.list-style-default .list-right .music .music-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 10px;
    position: relative;
    z-index: 1;
    height: 100%;
    justify-content: center;
    padding: 0 10px;
    background: rgb(0 0 0 / 20%);
    cursor: pointer;
}

.list-style-default .list-right .music .music-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    font-size: 16px;
    line-height: 25px;
}

.list-style-default .list-right .music .music-author {
    font-size: 13px;
    line-height: 20px;
}

.list-style-default .list-right .music:after {
    content: "";
    position: absolute;
    width: calc(100% - 80px);
    height: 100%;
    right: 0;
    backdrop-filter: blur(25px);
}

/* 红包 */
@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.list-style-default .redbag-box {
    background: #ce2c3e;
    border-radius: 8px;
    overflow: hidden;
    width: 180px;
    height: 300px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.list-style-default .redbag-box-bg {
    flex: 1;
    overflow: hidden;
    background-color: #e94658;
    background-size: cover;
    border-bottom-left-radius: 50% 30px;
    border-bottom-right-radius: 50% 30px;
}

.list-style-default .redbag-box-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 60px;
    position: relative;
    perspective: 800px;
}

.list-style-default .redbag-box-bottom i {
    font-size: 20px;
    position: absolute;
    top: -28px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #e9cf94;
    text-align: center;
    border-radius: 100%;
    font-style: normal;
    color: #393938;
    box-shadow: 0 3px 10px rgb(0 0 0 / 50%);
    transition: transform 0.6s ease;
    transform-origin: center;
}

.list-style-default .redbag-box-bottom.on i {
    animation: flip 1s linear infinite;
}

.list-style-default .redbag-box-bottom span {
    color: #FFC107;
    font-size: 12px;
    line-height: 30px;
}

/* 简约模板———————————————————————————————————— */
[list-style="normal"] {
    border-radius: var(--jinsom-border-radius);
}

.list-style-normal {
    display: flex;
    padding: 15px;
    border-bottom: 1px rgb(228 230 235 / 50%) dashed;
    gap: 10px;
    align-items: center;
    background: var(--jinsom-color-block);
}

.list-style-normal .list-left {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center
}

.list-style-normal .list-left a {
    height: 100%;
    width: 100%;
    position: relative
}

.list-style-normal .list-right {
    display: grid;
    flex: 1
}

.list-style-normal .list-right .title {
    font-size: 16px;
    color: #252933;
    display: flex;
    overflow: hidden;
    gap: 5px
}

.list-style-normal .list-right .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 30px
}

.list-style-normal .list-right .title i {
    line-height: 30px;
    font-size: 14px;
    color: #999
}

.list-style-normal .list-right .footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bbb;
    font-size: 13px
}

.list-style-normal .list-right .footer a {
    color: #bbb;
    height: 20px
}

.list-style-normal .list-right .footer span {
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    min-width: 35px;
    justify-content: flex-start
}

.list-style-normal .list-right .footer span i {
    line-height: 20px;
    font-size: 14px
}

.list-style-normal .list-right .footer span em {
    line-height: 20px
}

.list-style-normal .list-right .footer .placeholder {
    flex: 1
}

.list-style-normal .list-right .footer em {
    font-style: normal;
}


/* 左图模板———————————————————————————————————— */
[list-style="leftimg"] {
    background: #fff;
    border-radius: var(--jinsom-border-radius);
}

.list-style-leftimg {
    padding: 15px 0;
    margin: 0 15px;
    border-bottom: 1px rgb(228 230 235 / 50%) dashed;
    display: flex;
    gap: 10px;
}

.list-style-leftimg .list-left {
    width: 150px;
    height: 100px;
    border-radius: var(--jinsom-border-radius);
    position: relative;
    overflow: hidden;
    border: 1px #f1f1f1 solid;
}

.list-style-leftimg .list-left img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.list-style-leftimg .list-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
    overflow: hidden;
}

.list-style-leftimg .title {
    font-size: 18px;
    height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.list-style-leftimg .title a {
    display: block;
    color: #333;
}

.list-style-leftimg .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    line-height: 20px;
    color: #777;
    min-height: 40px;
}

.list-style-leftimg .footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bbb;
    font-size: 13px;
    line-height: 20px;
}

.list-style-leftimg .footer .placeholder {
    flex: 1
}

.list-style-leftimg .footer a {
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.list-style-leftimg .footer .avatar {
    width: 20px;
    height: 20px;
}

.list-style-leftimg .footer span {
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px
}

.list-style-leftimg .footer span i {
    font-size: 14px
}

.list-style-leftimg .footer span em {
    font-style: normal;
}


/* 右图模板———————————————————————————————————— */
[list-style="rightimg"] {
    background: #fff;
    border-radius: var(--jinsom-border-radius);
}

.list-style-rightimg {
    padding: 15px 0;
    margin: 0 15px;
    border-bottom: 1px rgb(228 230 235 / 50%) dashed;
    display: flex;
    gap: 10px;
}

.list-style-rightimg:last-child {
    margin-bottom: 20px;
}

.list-style-rightimg .list-left {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
    overflow: hidden;
}

.list-style-rightimg .title {
    font-size: 18px;
    height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.list-style-rightimg .title a {
    display: block;
    color: #333;
}

.list-style-rightimg .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    line-height: 20px;
    color: #777;
    min-height: 40px;
}

.list-style-rightimg .footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bbb;
    font-size: 13px;
    line-height: 20px;
}

.list-style-rightimg .footer .placeholder {
    flex: 1
}

.list-style-rightimg .footer a {
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.list-style-rightimg .footer .avatar {
    width: 20px;
    height: 20px;
}

.list-style-rightimg .footer span {
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px
}

.list-style-rightimg .footer .comment {
    padding-left: 10px;
}

.list-style-rightimg .footer span i {
    font-size: 14px
}

.list-style-rightimg .footer span em {
    font-style: normal;
}

.list-style-rightimg .list-right {
    width: 150px;
    height: 100px;
    border-radius: var(--jinsom-border-radius);
    position: relative;
    overflow: hidden;
    border: 1px #f1f1f1 solid;
}

.list-style-rightimg .list-right img {
    width: 100%;
    height: 100%;
    object-fit: cover
}


/* 格子模板———————————————————————————————————— */
[list-style="grid"] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

[list-style="grid"] .jinsom-empty-page {
    grid-column: 1 / -1;
}

[list-style="grid"] .jinsom-more-loading {
    grid-column: 1 / -1;
}

.list-style-grid {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--jinsom-border-radius);
    position: relative;
    overflow: hidden;
    padding: 0 0 7px 0;
}

.list-style-grid .cover {
    width: 100%;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center
}

.list-style-grid .cover i {
    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
}

.list-style-grid .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--jinsom-border-radius);
    filter: brightness(.9)
}

.list-style-grid .title {
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 5px 10px;
}

.list-style-grid .info {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    line-height: 25px;
    font-size: 12px;
    padding: 0 10px;
}

.list-style-grid .name {
    color: #999;
    display: flex;
    align-items: center;
    gap: 3px
}

.list-style-grid .name .avatar {
    width: 20px;
    height: 20px
}

.list-style-grid .like {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 12px
}

.list-style-grid .like i {
    font-size: 12px;
    transform: translateY(1px)
}

.list-style-grid .like .jinsom-like {
    color: #ffbebb;
}

.list-style-grid .like em {
    font-style: normal;
}


/* 图库模板———————————————————————————————————— */
[list-style="gallery"] {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
}

[list-style="gallery"] .jinsom-empty-page {
    grid-column: 1 / -1;
}

[list-style="gallery"] .jinsom-more-loading {
    grid-column: 1 / -1;
}

.list-style-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 180px;
    border-radius: var(--jinsom-border-radius)
}

.list-style-gallery .cover {
    width: 100%;
    height: 100%
}

.list-style-gallery .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s
}

.list-style-gallery .cover:hover img {
    transform: scale(1.1)
}

.list-style-gallery .title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    color: #fff;
    background: linear-gradient(to top, rgba(5, 5, 5, .6), rgba(8, 8, 8, 0));
    line-height: 18px;
    padding: 5px 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    transition: .3s;
    opacity: 0;
    z-index: -1
}

.list-style-gallery:hover .title {
    z-index: 1;
    opacity: 1;
    bottom: 0
}

.list-style-gallery .count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(var(--jinsom-theme-color-rgb), .35);
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    padding: 0 10px;
    border-radius: 3px;
    pointer-events: none
}


/* 瀑布流模板———————————————————————————————————— */
[list-style="waterfall"] {
    display: flex;
    gap: 15px;
}

[list-style="waterfall"] .jinsom-empty-page {
    grid-column: 1 / -1;
}

[list-style="waterfall"] .jinsom-more-loading {
    grid-column: 1 / -1;
}

.waterfall-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.list-style-waterfall {
    position: relative;
    background: #fff;
    overflow: hidden;
    transition: .3s;
    min-height: 80px;
    border-radius: var(--jinsom-border-radius);
}

.list-style-waterfall .cover a {
    display: inline;
    position: relative
}

.list-style-waterfall .cover a > i {
    position: absolute;
    color: #fff;
    right: 10px;
    top: 7px;
    font-size: 20px;
    text-shadow: 0 0 2px #b2b2b2
}

.list-style-waterfall .cover img {
    width: 100%;
    display: block;
    border-radius: 4px 4px 0 0;
    max-height: 50vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    min-height: 100px
}

.list-style-waterfall .title {
    text-overflow: ellipsis;
    padding: 0 10px;
    line-height: 35px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.list-style-waterfall.image_text_hover .title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    transition: .3s;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 100%);
    color: #fff
}

.list-style-waterfall.image_text_hover .title a {
    color: #fff
}

.list-style-waterfall.image_text_hover:hover .title {
    bottom: 0
}

.list-style-waterfall.image_text_hover .cover img {
    border-radius: var(--jinsom-border-radius)
}

.list-style-waterfall .title .jinsom-emoji {
    width: 20px;
    height: 20px !important
}

.list-style-waterfall .info {
    display: flex;
    align-items: center;
    padding: 0 10px 5px;
    justify-content: space-between;
    font-size: 12px;
    line-height: 25px;
}

.list-style-waterfall .name {
    color: #999;
    display: flex;
    align-items: center;
    gap: 3px
}

.list-style-waterfall .name .avatar {
    width: 20px;
    height: 20px
}

.list-style-waterfall .like {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    cursor: pointer
}

.list-style-waterfall .like i {
    margin-right: 3px;
    display: inline-block
}

.list-style-waterfall .like em {
    font-style: normal;
}

.list-style-waterfall .like .jinsom-like {
    color: #ffbebb;
}

/* 扩展模板———————————————————————————————————— */
/* 扩展模板———————————————————————————————————— */
/* 扩展模板———————————————————————————————————— */







/* 评论部分css 》》》》》》》》》》》》》》》》》》 */
.jinsom-comment-toggle {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 评论框 */
.jinsom-comment-toggle .jinsom-more-loading {
    margin: auto;
    height: 70px;
    align-items: center;
}

.jinsom-comment-toggle .jinsom-empty-page {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.jinsom-comment-toggle .jinsom-empty-page i {
    font-size: 35px;
    line-height: 50px;
}

.jinsom-comment-textarea-box {
    margin: 10px 0;
    position: relative;
    background: #f5f5f5;
    border-radius: var(--jinsom-border-radius);
}

.jinsom-comment-textarea-box textarea {
    width: 100%;
    padding: 10px;
    border-radius: var(--jinsom-border-radius);
    height: 55px;
    background-color: #f5f5f5;
    max-width: 100%;
    max-height: 500px;
}

.jinsom-comment-textarea-box .jinsom-form-btn {
    height: 30px;
    padding: 0 10px;
    display: grid;
    grid-template-columns: auto auto auto 1fr;
}

.jinsom-comment-textarea-box .jinsom-form-btn .btn {
    justify-self: end;
}

.jinsom-comment-textarea-box .comment-count {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    text-shadow: 0 0 1px #999;
}

.jinsom-comment-img-upload-list {
    display: inline-flex;
    margin: 0 10px 10px;
    gap: 10px;
}
.jinsom-comment-img-upload-list:empty {
    display: none;
}
.jinsom-comment-img-upload-list  li {
    width: 58px;
    height: 58px;
    border: 1px solid #f7f7f7;
    position: relative;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.jinsom-comment-img-upload-list  .close {
    position: absolute;
    top: -25px;
    right: 0;
    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
    border-radius: 0 5px 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    transition: 0.2s;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
}

.jinsom-comment-img-upload-list  li:hover .close {
    top: 0;
}

.jinsom-comment-img-upload-list  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 评论列表 */
.jinsom-comment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jinsom-comment-list .jinsom-comment-textarea-box:before {
    content: "";
    background: #f8f8f9;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: -4px;
    width: 7px;
    height: 7px;
    z-index: 999;
    border-left: 1px solid #f1f1f1;
    border-top: 1px solid #f1f1f1;
    border-radius: 2px;
    left: 20px;
    right: 0;
}

.jinsom-comment-list .jinsom-more {
    margin-top: 15px;
}

.jinsom-comment-box {
    position: relative;
    display: flex;
    gap: 10px;
}

.jinsom-comment-box .comment-left {
    width: 28px;
    height: 28px;
    position: relative;
}

.jinsom-comment-box .comment-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    border-bottom: 1px #f1f1f1 dashed;
}



.jinsom-comment-list .jinsom-comment-box:last-of-type > .comment-right {
    border: 0;
}

.jinsom-comment-box .header {
    display: flex;
}

.jinsom-comment-box .userinfo {
    align-items: center;
    display: flex;
    gap: 5px;
    height: 28px;
}

.jinsom-comment-box .content a:not(.hyperlink) {
    color: #333;
}

.jinsom-comment-box .content .comment-sticky {
    color: #2997f7;
    border-color: #2997f7;
    background-color: rgb(41 151 247 / 10%);
}

.jinsom-comment-box .content .gift-img img {
    width: 40px;
    height: 40px;
    vertical-align: bottom;
    margin-left: 5px;
}

.jinsom-comment-box .comment-right .content .comment-at {
    color: #3897ff;
}

.jinsom-comment-box .jinsom-comment-textarea-box {
    margin: 0;
}



.jinsom-comment-box .bar {
    font-size: 13px;
    display: flex;
    gap: 10px;
    line-height: 25px;
    justify-content: space-between;
}

.jinsom-comment-box .bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jinsom-comment-box .bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
    transition: .3s;
}

.jinsom-comment-box .bar span {
    display: flex;
    gap: 5px;
}

.jinsom-comment-box .bar i {
    font-size: 14px;
}

.jinsom-comment-box .bar em {
    font-style: normal;
}


.jinsom-comment-box .child-list {
    display: flex;
    flex-direction: column;
}

.jinsom-comment-box .child-list .jinsom-comment-box:before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 100%;
    position: absolute;
    left: -4px;
    top: 10px;
}

.jinsom-comment-box .child-list .jinsom-comment-box {
    padding-bottom: 10px;
    padding-left: 10px;
    margin-left: 6px;
    border-left: 1px solid rgb(235, 235, 235);
}

.jinsom-comment-box .child-list .jinsom-comment-box:last-of-type {
    padding-bottom: 0;
}

.jinsom-comment-box .child-list .jinsom-comment-box:last-of-type .comment-right {
    border: 0;
    padding-bottom: 0;
}

.jinsom-comment-box .child-list .comment-right {
    padding-bottom: 10px;
}


.jinsom-comment-box .more-reply {
    line-height: 25px;
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #333;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.jinsom-comment-box .more-reply .more {
    display: flex;
    align-items: center;
}

.jinsom-comment-box .more-reply .fold {
    display: flex;
    gap: 5px;
    margin-left: -28.5px;
}

.jinsom-comment-box .more-reply .fold i {
    transform: translateX(-1.5px) rotate(180deg);
    transition: .3s;
}

.jinsom-comment-box .more-reply .more:hover + .fold i {
    transform: translateX(-1.5px) rotate(0deg);
    color: #FF5722;
}


/* 评论列表其他css */


.jinsom-comment-box .gift-text {
    color: #ff0078;
}

.jinsom-comment-list .jinsom-comment-box .comment-img {
    grid-template-columns: repeat(3, 1fr);
}

.jinsom-comment-box .comment-img a {
    aspect-ratio: 1;
    position: relative;
}

.jinsom-comment-box .comment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    max-height: 220px;
    border: 1px solid #f1f1f1;
}

.jinsom-comment-box .comment-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    width: 80%;
}

.jinsom-comment-box .reply-content {
    font-size: 12px;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    margin: 0 0 6px;
    color: #666;
    cursor: pointer;
}

.jinsom-comment-toggle .jinsom-comment-box .comment-img.img-1 {
    max-width: 30%;
}


/* 内页评论列表css */
.jinsom-comment-list-box .jinsom-comment-list > .jinsom-comment-box > .comment-left {
    width: 40px;
    height: 40px;
}

.jinsom-comment-list-box .jinsom-comment-list > .jinsom-comment-box > .comment-right > .userinfo {
    height: 20px;
}


/* 隐藏内容 */
.content-detail .content-hide {
    background: #fff8f8;
    padding: 20px;
    border-radius: var(--jinsom-border-radius);
    border: 1px #ffe8e8 dashed;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    align-items: center;
    margin-top: 15px;
}

.content-detail .content-hide .hide-message {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 13px;
    color: #999;
    gap: 5px
}

.content-detail .content-hide .hide-message i {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: var(--jinsom-theme-color);
    font-size: 26px;
    border-radius: 100%;
    background: rgba(var(--jinsom-theme-color-rgb), 0.2);
}

.content-detail .content-hide .hide-btn {
    display: flex;
    gap: 20px
}

.content-detail .content-hide .hide-btn li {
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    border-radius: var(--jinsom-border-radius-btn);
    line-height: 35px;
    text-align: center;
    transition: .3s;
    padding: 0 30px;
    position: relative;
    background: var(--jinsom-theme-color)
}

.content-detail .content-hide .hide-btn li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--jinsom-border-radius-btn);
    background: linear-gradient(to right, rgb(255 255 255 / 30%), transparent)
}

.content-detail .content-hide .hide-btn .reg {
    background: #31bdec
}

.content-detail .content-hide .hide-btn .login {
    background: var(--jinsom-theme-color)
}

.content-detail .content-hide .hide-tips {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(var(--jinsom-theme-color-rgb), 0.15);
    padding: 0 10px;
    line-height: 25px;
    color: var(--jinsom-theme-color);
    border-radius: 0 0 3px 0;
    font-size: 13px;
}

.content-detail .content-hide .hide-btn .vip {
    background: #f75f2f
}