/* 文字 */
 .active-list-wrap {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}
.active-list {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    min-width: 0;
}
.active-list:hover {
    box-shadow: var(--glass-shadow-accent);
}
.active-list__avatar-link {
    display: contents;
}
.active-list__avatar {
    width: 22px;
    height: 22px;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    flex-shrink: 0;
}
.active-list__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
    display: block;
}
.active-list__title {
    font-size: 16px;
    color: var(--text-primary);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    z-index: 1;
    min-width: 0;
}
.active-list__title:hover {
    color: var(--accent-primary);
}
.active-list__meta {
    font-size: 15px;
    flex-shrink: 0;
    white-space: nowrap;
}
.active-list__top-tag {
    color: #c2c2c2;
}
.active-list__time {
    color: var(--text-tertiary);
}
/* 图文 */
 .one-reco-list {
    display: grid;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.one-item-card {
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    padding: 16px;
}
.one-item-card:hover {
    box-shadow: var(--glass-shadow-accent);
}
.one-entry-title {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 1;
}
.one-entry-title a {
    color: var(--text-primary);
    text-decoration: none;
}
.one-entry-title a:hover {
    color: var(--accent-primary);
}
.one-entry-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.one-meta-left {
    display: flex;
    gap: 6px;
}
.one-author-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}
.one-meta-left a {
    text-decoration: none;
}
.one-feature-img {
    height: 150px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.one-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.one-feature-img:hover img {
    transform: scale(1.1);
}
.one-entry-footer {
    margin-top: 10px;
    padding: 8px 8px;
    border-radius: 8px;
    background: var(--pink-background);
}
.one-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-tertiary);
}
.one-footer-left {
    display: flex;
    gap: 10px;
}
.one-footer-left i {
    margin-right: 3px;
    color: var(--accent-primary);
    font-size: 11px;
}
.one-cat-tag {
    color: var(--text-tertiary);
}
.one-cat-tag a {
    color: var(--text-tertiary);
    text-decoration: none;
}
.one-cat-tag a:hover {
    color: var(--accent-primary);
}
/* 卡片 */
 .one-card-list {
    width: 100%;
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}
.one-card-item {
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, opacity 0.3s, transform 0.3s;
}
.one-card-item:hover {
    box-shadow: var(--glass-shadow-accent);
}
.one-card-image {
    z-index: 10;
    width: 33.333333%;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}
.one-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}
.one-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, opacity 0.3s ease;
}
.one-card-image:hover img {
    transform: scale(1.1);
}
.one-card-content {
    z-index: 10;
    width: 66.666667%;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.one-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}
.one-card-stats {
    display: flex;
    gap: 6px;
}
.one-card-time i, .one-card-view i, .one-card-comment i {
    margin-right: 0.15rem;
    font-size: 12px;
    color: var(--accent-primary);
}
.one-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.75rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--text-primary);
    z-index: 1;
    position: relative;
}
.one-card-title:hover {
    color: var(--accent-primary);
}
.one-card-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5rem;
    word-break: break-all;
    margin: 0;
    color: var(--text-secondary);
}
.one-card-item:nth-of-type(even) {
    flex-direction: row-reverse;
}
.one-card-item:nth-of-type(even) .one-card-image {
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}

/* 瀑布流图文 */
 .one-twpb-wrap {
    container-type: inline-size;
    margin: 0 auto;
    width: 100%;
}
.one-twpb-grid {
    position: relative;
    opacity: 0;
    contain: paint;
}
.one-twpb-grid.one-twpb-ready {
    opacity: 1;
}
.one-twpb-item {
    float: left;
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 16px;
    width: calc((100% - 16px) / 2);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    contain: paint;
    background: var(--glass-bg);
    border-radius: var(--radius);
}
.one-twpb-item:hover {
    box-shadow: var(--glass-shadow-accent);
}
@container (min-width: 722px) {
    .one-twpb-item {
        width: calc((100% - 32px) / 3);
    }
}
@container (min-width: 968px) {
    .one-twpb-item {
        width: calc((100% - 48px) / 4);
    }
}
@container (min-width: 1214px) {
    .one-twpb-item {
        width: calc((100% - 64px) / 5);
    }
}
@container (min-width: 1460px) {
    .one-twpb-item {
        width: calc((100% - 80px) / 6);
    }
}
@container (min-width: 1706px) {
    .one-twpb-item {
        width: calc((100% - 96px) / 7);
    }
}
.one-twpb-media {
    overflow: hidden;
    position: relative;
}
.one-twpb-media img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 350px;
    object-fit: cover;
    transition: transform 0.4s, opacity 0.3s ease;
}
.one-twpb-media:hover img {
    opacity: 0.92;
    transform: scale(1.1);
}
.one-twpb-media > i.icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    color: #fff;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    text-shadow: 2px 2px 4px rgb(0 0 0);
}
.one-twpb-info {
    padding: 10px 12px 14px;
}
.one-twpb-title {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--text-primary);
    position:relative;
    font-weight: 600;
}
.one-twpb-item:hover .one-twpb-title {
    color: var(--accent-primary);
}
.one-twpb-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.one-twpb-author {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    min-width: 0;
}
.one-twpb-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
    background: #eee;
}
.one-twpb-name {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-tertiary);
}
.one-twpb-like {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    flex-shrink: 0;
    color: var(--text-tertiary);
}
.one-twpb-like i {
    color: var(--accent-primary);
    font-size: 12px;
}