.contaienr {
    /* margin-top: 55px !important; */
    max-width: var(--max-container);
    margin: 0 auto;
}

.sm-active {
    color: var(--logo) !important;
}

/* 左侧内容 */
/* .flex {
    height: 100vh;
} */

.p-10 {
    padding: 10px;
}

.left-contaienr {
    width: 75%;
    height: 100%;
}

/* 右侧内容 */

.right-contaienr {
    width: 25%;
    height: 100%;
}

/* 统计卡片 */
.byte-card {
    width: 100%;
    background: var(--white);
    border-radius: 17px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.2s;
}

.byte-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* 左右布局 */
.card-layout {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
}

/* 左侧图片区 */
.media-area {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--size);
    font-size: 2rem;
}

/* 右侧内容区 */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* 标题 */
.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--logo);
    letter-spacing: -0.2px;
    margin: 0;
}

/* 描述文案 */
.card-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--size);
    margin: 0;
}

/* 底部操作栏 */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #edf2f7;
}

.participant-section {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem; 
}
 

.share-btn {
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #5f7f9e;
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.share-btn i {
    font-size: 0.85rem;
}

.share-btn:hover {
    background: #f0f2f5;
    color: #1e80ff;
}

.share-btn:active {
    transform: scale(0.96);
}

/* 响应式设计 */
@media (max-width: 560px) {
    .card-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .media-area {
        width: 100px;
        height: 100px;
    }

    .content-area {
        align-items: center;
    }

    .card-footer {
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* end */

/* 主内容 */
.fer-ajax {
    width: 100%;
    border-radius: 17px;
    overflow: hidden;
    background-color: #fff;
}

.com {}

.fer-ajax .tab {
    padding: 0 16px;
    border-bottom: 1px solid #f0f0f0;
}

.fer-ajax .tab .hera-tag {
    align-items: center;
    gap: 13px;
    height: 55px;
    position: relative;
}

.fer-ajax .tab .hera-tag li {
    height: 100%;
    cursor: pointer;
    padding: 16px;
    color: var(--size);
    font-size: 18px;
}

.fer-ajax .tab .hera-tag .ge-bag {
    position: absolute;
    bottom: 4px;
    left: 20px;
    transition: left 0.3s ease, width 0.3s ease;
    width: 23px;
    height: 4px;
    border-radius: 5px;
    background-color: var(--logo);
}

/* 排序 */
.ol-s {

    padding: 3px 16px;
}

.ol-s li {
    cursor: pointer;
    padding: 16px;
}

/* 数据展示 */
.data-cont {
    width: 100%;
    padding: 0 20px 20px 20px;

    background-color: #fff;
}

/* 没有更多了 */
.load-more-end {
    text-align: center;
    margin: 20px 10px;
    color: var(--size);
}