.jushoujigzh-fuli-wrap{
    background:#fff;
    border:1px solid rgba(42,140,119,.14);
    border-radius:14px;
    box-shadow:0 2px 14px rgba(42,140,119,.08);
    padding:16px 18px 18px;
    margin:16px 0;
    position:relative;
    overflow:hidden;
}

/* 头部 */
.jushoujigzh-fuli-head{
    display:flex;align-items:center;justify-content:space-between;
    gap:10px;flex-wrap:wrap;margin-bottom:14px;
}
.jushoujigzh-fuli-title{
    display:flex;align-items:center;gap:8px;
    font-size:16px;font-weight:700;color:#1f3b35;
    padding-left:10px;line-height:1.4;position:relative;
}
.jushoujigzh-fuli-title::before{
    content:"";position:absolute;left:0;top:50%;
    transform:translateY(-50%);
    width:4px;height:16px;border-radius:2px;
    background:linear-gradient(180deg,#2a8c77,#4cc4a5);
}
.jushoujigzh-fuli-badge{
    display:inline-block;
    font-size:11.5px;font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,#ff7a45,#ff4d2e);
    padding:2px 10px;border-radius:999px;
    box-shadow:0 3px 10px rgba(255,77,46,.30);
    animation:jushoujigzh-fuli-pulse 1.6s ease-in-out infinite;
}
@keyframes jushoujigzh-fuli-pulse{
    0%,100%{transform:scale(1);}
    50%{transform:scale(1.06);}
}
.jushoujigzh-fuli-more{
    font-size:13px;color:#2a8c77;font-weight:600;
    text-decoration:none;cursor:pointer;
    transition:.25s;
}
.jushoujigzh-fuli-more:hover{color:#1f6b5c;transform:translateX(2px);}

/* 卡片网格 */
.jushoujigzh-fuli-body{position:relative;}
.jushoujigzh-fuli-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}
.jushoujigzh-fuli-card{
    display:flex;align-items:center;gap:10px;
    padding:14px 12px;
    background:linear-gradient(135deg,#f2faf7,#f7fbf9);
    border:1px solid rgba(42,140,119,.14);
    border-radius:12px;
    cursor:pointer;
    transition:.28s;
    position:relative;
    overflow:hidden;
}
.jushoujigzh-fuli-card::after{
    content:"";
    position:absolute;right:-20px;top:-20px;
    width:60px;height:60px;border-radius:50%;
    background:radial-gradient(circle,rgba(42,140,119,.14),transparent 70%);
}
.jushoujigzh-fuli-card:hover{
    background:#fff;
    border-color:rgba(42,140,119,.35);
    box-shadow:0 8px 22px rgba(42,140,119,.16);
    transform:translateY(-3px);
}
.jushoujigzh-fuli-icon{
    flex:0 0 40px;width:40px;height:40px;
    border-radius:12px;
    background:linear-gradient(135deg,#2a8c77,#4cc4a5);
    color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-size:18px;
    box-shadow:0 4px 12px rgba(42,140,119,.28);
}
.jushoujigzh-fuli-info{min-width:0;flex:1;}
.jushoujigzh-fuli-name{
    font-size:14px;font-weight:700;color:#1f3b35;
    line-height:1.4;margin-bottom:3px;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.jushoujigzh-fuli-desc{
    font-size:12px;color:#7b8b88;
    line-height:1.5;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}

/* 未登录：内容模糊 + 遮罩 */
.jushoujigzh-fuli-locked .jushoujigzh-fuli-grid{
    filter:blur(5px);
    pointer-events:none;
    user-select:none;
    opacity:.75;
}
.jushoujigzh-fuli-mask{
    position:absolute;inset:0;
    display:flex;flex-direction:column;
    align-items:center;justify-content:center;
    gap:10px;
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(1px);
    border-radius:10px;
    z-index:2;
}
.jushoujigzh-fuli-lock{
    width:52px;height:52px;
    color:#f00;
    display:flex;align-items:center;justify-content:center;
    animation:jushoujigzh-fuli-lock-in .5s cubic-bezier(.2,.8,.3,1.2);
}
@keyframes jushoujigzh-fuli-lock-in{
    from{transform:scale(.5);opacity:0;}
    to{transform:scale(1);opacity:1;}
}
.jushoujigzh-fuli-locktext{
    font-size:14px;font-weight:600;color:#1f3b35;
    text-shadow:0 1px 0 #fff;
}
.jushoujigzh-fuli-btn{
    font-family:inherit;
    font-size:13.5px;font-weight:600;
    padding:9px 26px;
    border:none;border-radius:999px;
    background:linear-gradient(135deg,#2a8c77,#38b092);
    color:#fff;cursor:pointer;
    box-shadow:0 4px 14px rgba(42,140,119,.32);
    transition:.25s;
}
.jushoujigzh-fuli-btn:hover{
    background:linear-gradient(135deg,#1f6b5c,#2a8c77);
    box-shadow:0 8px 22px rgba(42,140,119,.42);
    transform:translateY(-2px);
}

/* 已登录：卡片小角标 */
.jushoujigzh-fuli-card .jushoujigzh-fuli-tag{
    position:absolute;top:6px;right:6px;
    font-size:10px;font-weight:600;
    color:#fff;background:#ff7a45;
    padding:1px 7px;border-radius:999px;
    z-index:1;
}

/* ---------- 双端适配 ---------- */
@media (max-width:991px){
    .jushoujigzh-fuli-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:768px){
    .jushoujigzh-fuli-wrap{padding:14px 14px 16px;border-radius:12px;}
    .jushoujigzh-fuli-title{font-size:15px;}
    .jushoujigzh-fuli-grid{gap:10px;}
    .jushoujigzh-fuli-card{padding:11px 10px;gap:8px;}
    .jushoujigzh-fuli-icon{flex:0 0 34px;width:34px;height:34px;font-size:15px;border-radius:10px;}
    .jushoujigzh-fuli-name{font-size:13px;}
    .jushoujigzh-fuli-desc{font-size:11.5px;}
    .jushoujigzh-fuli-lock{width:46px;height:46px;font-size:19px;}
    .jushoujigzh-fuli-locktext{font-size:13px;}
    .jushoujigzh-fuli-btn{font-size:13px;padding:8px 22px;}
}
@media (max-width:480px){
    .jushoujigzh-fuli-grid{grid-template-columns:1fr 1fr;gap:8px;}
    .jushoujigzh-fuli-card{padding:10px 8px;}
    .jushoujigzh-fuli-info{min-width:0;}
    .jushoujigzh-fuli-name{font-size:12.5px;}
    .jushoujigzh-fuli-desc{font-size:11px;}
}
/* ==================== 聚指引 ==================== */
.jushoujigzh20260910jzy-wrap {
    background: #fff !important;
    border: 1px solid #e6efeb !important;
    border-radius: 14px !important;
    margin: 14px auto !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
    box-shadow: 0 4px 14px rgba(42, 140, 119, .06) !important;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910jzy-wrap * {
    box-sizing: border-box !important
}

.jushoujigzh20260910jzy-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 12px 18px !important;
    background: linear-gradient(135deg, #f0fbf6 0%, #fff 100%) !important;
    border-bottom: 1px solid #f0f5f3 !important;
    flex-wrap: wrap !important
}

.jushoujigzh20260910jzy-h3 {
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #1f6e5c !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    line-height: 1.4 !important
}

.jushoujigzh20260910jzy-h3::before {
    content: '' !important;
    width: 4px !important;
    height: 15px !important;
    background: linear-gradient(180deg, #2a8c77, #3aa88d) !important;
    border-radius: 3px !important;
    flex-shrink: 0 !important
}

.jushoujigzh20260910jzy-tip {
    font-size: 12px !important;
    color: #7a9990 !important;
    white-space: nowrap !important;
    padding: 4px 12px !important;
    background: #f5f9f7 !important;
    border-radius: 20px !important
}

.jushoujigzh20260910jzy-scroll {
    position: relative !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 10px 14px 12px !important;
    cursor: grab
}

.jushoujigzh20260910jzy-scroll::-webkit-scrollbar {
    display: none !important
}

.jushoujigzh20260910jzy-scroll:active {
    cursor: grabbing
}

.jushoujigzh20260910jzy-nav {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    min-width: max-content !important;
    padding: 4px 2px !important;
    user-select: none
}

.jushoujigzh20260910jzy-item {
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 7px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #555 !important;
    background: #f7faf9 !important;
    border: 1px solid #e6efeb !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: all .22s ease !important;
    line-height: 1.4 !important
}

.jushoujigzh20260910jzy-item:hover {
    background: #e6f7f2 !important;
    border-color: #b9e6d8 !important;
    color: #1f6e5c !important
}

.jushoujigzh20260910jzy-item-active {
    background: linear-gradient(135deg, #2a8c77, #34a58c) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(42, 140, 119, .28) !important
}

.jushoujigzh20260910jzy-item.tuijian::before {
    content: '★' !important;
    font-size: 11px !important;
    margin-right: 5px !important;
    color: #ffb700 !important
}

.jushoujigzh20260910jzy-item-active.tuijian::before {
    color: #fff3b0 !important
}

@media (max-width:640px) {
    .jushoujigzh20260910jzy-wrap {
        border-radius: 12px !important;
        margin: 10px !important
    }

    .jushoujigzh20260910jzy-head {
        padding: 10px 14px !important
    }

    .jushoujigzh20260910jzy-h3 {
        font-size: 13px !important
    }

    .jushoujigzh20260910jzy-tip {
        font-size: 11px !important;
        padding: 3px 10px !important
    }

    .jushoujigzh20260910jzy-scroll {
        padding: 8px 10px 10px !important
    }

    .jushoujigzh20260910jzy-item {
        padding: 6px 14px !important;
        font-size: 12px !important
    }
}


/* ==================== 外层容器：强制宽度覆盖原站 ==================== */
.jushoujigzh20260910tjzdqy {
    --p: #2a8c77;
    --pd: #1f6e5c;
    --pl: #3aa88d;
    --bg: #e6f7f2;
    --bg2: #f0fbf6;
    --bd: #e6efeb;
    --bs: #f0f5f3;
    --ts: #7a9990;
    --tm: #a8b6b1;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif !important;
    color: #222;
    font-size: 13px;
    line-height: 1.6;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    display: block !important;
    float: none !important;
    position: relative !important;
}

.jushoujigzh20260910tjzdqy *,
.jushoujigzh20260910tjzdqy *::before,
.jushoujigzh20260910tjzdqy *::after {
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy a {
    text-decoration: none !important;
    color: inherit
}

.jushoujigzh20260910tjzdqy ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 10%;
    background: #fff;
}

.jushoujigzh20260910tjzdqy li {
    list-style: none !important
}

.jushoujigzh20260910tjzdqy img {
    display: block !important;
    max-width: 100% !important
}

/* ==================== 主容器：flex 布局，最稳定 ==================== */
.jushoujigzh20260910tjzdqy-main {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    float: none !important;
    position: relative !important;
}

.jushoujigzh20260910tjzdqy-left {
    flex: 1 1 480px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: auto !important;
    overflow: hidden !important;
    float: none !important;
    box-sizing: border-box !important;
}

.jushoujigzh20260910tjzdqy-right {
    flex: 0 0 340px !important;
    width: 340px !important;
    min-width: 340px !important;
    max-width: 340px !important;
    overflow: visible !important;
    float: none !important;
    box-sizing: border-box !important;
}

/* 右栏内部的用户中心容器强制撑满 */
.jushoujigzh20260910tjzdqy-right #jsjdhwcom-user,
.jushoujigzh20260910tjzdqy-right .hediv-sort {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

.jushoujigzh20260910tjzdqy-card {
    background: #fff !important;
    border: 1px solid var(--bd) !important;
    border-radius: 16px !important;
    margin-bottom: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 14px rgba(42, 140, 119, .06) !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    float: none !important;
    display: block !important;
}

.jushoujigzh20260910tjzdqy-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    background: linear-gradient(135deg, var(--bg2) 0%, #fff 100%) !important;
    border-bottom: 1px solid var(--bs) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: var(--pd) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.jushoujigzh20260910tjzdqy-title::before {
    content: '' !important;
    width: 4px !important;
    height: 15px !important;
    background: linear-gradient(180deg, var(--p), var(--pl)) !important;
    border-radius: 3px !important;
    flex-shrink: 0 !important;
}

.jushoujigzh20260910tjzdqy-title .cbl-a {
    margin-left: auto !important;
    padding: 5px 14px !important;
    background: linear-gradient(135deg, var(--p), var(--pl)) !important;
    color: #fff !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.jushoujigzh20260910tjzdqy-title .cbl-a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 140, 119, .3) !important
}

/* ==================== 推荐站点 ==================== */
.jushoujigzh20260910tjzdqy ul.indexWebList {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 14px 16px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.jushoujigzh20260910tjzdqy ul.indexWebList>li {
    position: relative !important;
    background: #fafcfb !important;
    border: 1px solid var(--bs) !important;
    border-radius: 10px !important;
    padding: 10px 6px !important;
    transition: all .25s ease;
    overflow: visible !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    float: none !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.jushoujigzh20260910tjzdqy ul.indexWebList>li:hover {
    background: #fff !important;
    border-color: #b9e6d8 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 140, 119, .12);
    z-index: 5;
}

.jushoujigzh20260910tjzdqy ul.indexWebList>li>div {
    position: relative !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.jushoujigzh20260910tjzdqy ul.indexWebList>li>div>a {
    display: -webkit-box !important;
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-align: center !important;
    line-height: 1.4 !important;
    word-break: break-all !important;
    white-space: normal !important;
    overflow: hidden !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.jushoujigzh20260910tjzdqy ul.indexWebList>li>div>a:hover {
    color: var(--p) !important
}

.jushoujigzh20260910tjzdqy ul.indexWebList>li img {
    display: block !important;
    margin: 0 auto 6px !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
    object-fit: contain !important;
    background: #fff !important;
    padding: 3px !important;
    border: 1px solid var(--bs) !important;
    box-sizing: border-box !important;
}

.jushoujigzh20260910tjzdqy ul.indexWebList>li .tuijianwei,
.jushoujigzh20260910tjzdqy ul.indexWebList>li .tuijianh,
.jushoujigzh20260910tjzdqy ul.indexWebList>li .jsjtjwr {
    display: none !important
}

.jushoujigzh20260910tjzdqy ul.indexWebList .info {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(4px) !important;
    background: #fff !important;
    border: 1px solid var(--bd) !important;
    border-radius: 10px !important;
    padding: 8px !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .1) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    min-width: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.jushoujigzh20260910tjzdqy ul.indexWebList>li:hover .info {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
}

.jushoujigzh20260910tjzdqy ul.indexWebList .info a {
    padding: 5px 10px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    color: #555 !important;
    white-space: nowrap !important;
    display: block !important;
    width: auto !important;
    text-align: center !important;
}

.jushoujigzh20260910tjzdqy ul.indexWebList .info a:hover {
    background: var(--bg) !important;
    color: var(--p) !important
}

/* ==================== 社区 ==================== */
.jushoujigzh20260910tjzdqy .jushoujicom-list {
    padding: 14px 16px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__card {
    position: relative !important;
    background: #fafcfb !important;
    border: 1px solid var(--bs) !important;
    border-radius: 10px !important;
    padding: 15px 6px !important;
    display: inline-flex;
    flex-direction: column !important;
    gap: 6px !important;
    min-width: 0 !important;
    height: 50px;
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__card:hover {
    background: #fff !important;
    border-color: #b9e6d8 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 140, 119, .1)
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__card--featured {
    background: linear-gradient(135deg, #fff8f2 0%, #fff 100%) !important;
    border-color: #ffe1cc !important
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__top-tag {
    display: inline-block !important;
    padding: 2px 8px !important;
    background: linear-gradient(135deg, #ff6b35, #ff8c42) !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    align-self: flex-start !important;
    width: 28px;
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__category {
    font-size: 11px !important;
    align-self: flex-start !important
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__category a {
    color: var(--ts) !important;
    padding: 1px 8px !important;
    background: var(--bg2) !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    width: 38px;
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__title {
    font-size: 12px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 14px !important;
    display: block;
    width: 60%;
    position: absolute;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__title a {
    color: #222 !important
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__title a:hover {
    color: var(--p) !important
}

.jushoujigzh20260910tjzdqy .jushoujicom-list__date {
    font-size: 11px !important;
    color: var(--tm) !important;
    margin-top: auto !important;
    position: absolute;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    width: 15%;
    display: block;
    right: 0;
}

/* ==================== 影视 ==================== */
.jushoujigzh20260910tjzdqy-ys .yingshi-nr {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-ys .currency_cen {
    background: #fafcfb !important;
    border: 1px solid var(--bs) !important;
    border-radius: 10px !important;
    padding: 8px !important;
    cursor: pointer;
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    float: none !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-ys .currency_cen:hover {
    background: #fff !important;
    border-color: #b9e6d8 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 140, 119, .12)
}

.jushoujigzh20260910tjzdqy-ys .cen_title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 0 !important
}

.jushoujigzh20260910tjzdqy-ys .cen_title img {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 200px !important;
    max-height: 200px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    background: #f0f0f0 !important;
    margin: 0 !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-ys .yingshiat {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-align: center !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    width: 100% !important;
    min-width: 0 !important;
    word-break: break-all !important
}

.jushoujigzh20260910tjzdqy-ys .currency_cen:hover .yingshiat {
    color: var(--p) !important;
    background: #fff;
}

.jushoujigzh20260910tjzdqy-ys .yingshiat.xwzred {
    color: #ff3333 !important
}

.jushoujigzh20260910tjzdqy-ys .tgshenhe {
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    z-index: 1 !important
}

.jushoujigzh20260910tjzdqy-ys .sortlja {
    font-size: 10px !important;
    padding: 2px 7px !important;
    background: rgba(42, 140, 119, .85) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important
}

/* ==================== 今日榜单 ==================== */
.jushoujigzh20260910tjzdqy-top .content_rank {
    padding: 8px 12px 12px !important;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li {
    border-bottom: 1px dashed var(--bs) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li:last-child {
    border-bottom: none !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 5px !important;
    border-radius: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li a:hover {
    background: var(--bg2) !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li i {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    background: #f0f5f3 !important;
    color: #7a9990 !important;
    flex-shrink: 0 !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li:nth-child(1) i {
    background: linear-gradient(135deg, #ff6b35, #ff8c42) !important;
    color: #fff !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li:nth-child(2) i {
    background: linear-gradient(135deg, #f39c12, #f1c40f) !important;
    color: #fff !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li:nth-child(3) i {
    background: linear-gradient(135deg, #3498db, #5dade2) !important;
    color: #fff !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li h3 {
    flex: 1 !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    line-height: 1.4 !important;
    min-width: 0 !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li a:hover h3 {
    color: var(--p) !important
}

.jushoujigzh20260910tjzdqy-top .content_rank li span {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #e74c3c !important;
    flex-shrink: 0 !important
}

/* ==================== 站外更新 ==================== */
.jushoujigzh20260910tjzdqy-update .updatelistdiv {
    padding: 8px 12px 12px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-update .updatelist {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-update .updatelist li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 9px 6px !important;
    border-bottom: 1px dashed var(--bs) !important;
    border-radius: 6px !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-update .updatelist li:last-child {
    border-bottom: none !important
}

.jushoujigzh20260910tjzdqy-update .updatelist li:hover {
    background: var(--bg2) !important
}

.jushoujigzh20260910tjzdqy-update .updatelist li::before {
    content: '' !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--pl) !important;
    flex-shrink: 0 !important
}

.jushoujigzh20260910tjzdqy-update .updatelist li a {
    flex: 1 !important;
    font-size: 14px !important;
    color: #333 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    min-width: 0 !important
}

.jushoujigzh20260910tjzdqy-update .updatelist li a:hover {
    color: var(--p) !important
}

.jushoujigzh20260910tjzdqy-update .updatelist li span {
    font-size: 14px !important;
    color: var(--tm) !important;
    flex-shrink: 0 !important
}

.jushoujigzh20260910tjzdqy-update .updatelist li span.new-time {
    color: #e74c3c !important;
    font-weight: 700 !important
}

/* ==================== 最新收录 ==================== */
.jushoujigzh20260910tjzdqy-zuixinshoulu {
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-item {
    padding: 0 16px !important;
    border-bottom: 1px solid var(--bs) !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-item:last-child {
    border-bottom: none !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-info:hover {
    padding-left: 4px !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-logo {
    flex-shrink: 0 !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-logo img {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 10px !important;
    object-fit: contain !important;
    background: #fafcfb !important;
    border: 1px solid var(--bs) !important;
    padding: 4px !important;
    margin: 0 !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-txt {
    flex: 1 !important;
    min-width: 0 !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-name {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 0 4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    overflow: hidden !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-name:hover {
    color: var(--p) !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-time {
    font-size: 10px !important;
    color: var(--tm) !important;
    font-weight: 400 !important;
    padding: 1px 7px !important;
    background: #f5f9f7 !important;
    border-radius: 8px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important
}

.jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-desc {
    font-size: 11px !important;
    color: var(--ts) !important;
    margin: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important
}

/* ==================== 会员中心（右栏顶部） ==================== */
.jushoujigzh20260910hyzxyd-box {
    background: #fff;
    border: 1px solid #e6efeb;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(42, 140, 119, .06);
    overflow: hidden;
    font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 13px;
    color: #333;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

.jushoujigzh20260910hyzxyd-box * {
    box-sizing: border-box !important
}

.jushoujigzh20260910hyzxyd-box a {
    text-decoration: none
}

.jushoujigzh20260910hyzxyd-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f5f3;
    background: linear-gradient(135deg, #f0fbf6 0%, #fff 100%);
    width: 100% !important
}

.jushoujigzh20260910hyzxyd-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a8c77;
    box-shadow: 0 0 0 3px rgba(42, 140, 119, .15);
    flex-shrink: 0
}

.jushoujigzh20260910hyzxyd-title {
    font-size: 14px;
    font-weight: 800;
    color: #1f6e5c;
    flex: 1;
    min-width: 0;
    white-space: nowrap
}

.jushoujigzh20260910hyzxyd-more {
    font-size: 12px;
    color: #2a8c77;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0
}

.jushoujigzh20260910hyzxyd-guest {
    padding: 20px 18px 16px;
    text-align: center;
    border-bottom: 1px dashed #eef4f1
}

.jushoujigzh20260910hyzxyd-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6f7f2, #f0fbf6);
    border: 2px solid #d7efe6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px
}

.jushoujigzh20260910hyzxyd-welcome {
    font-size: 14px;
    font-weight: 700;
    color: #1f6e5c;
    text-align: center;
    margin: 0 0 4px
}

.jushoujigzh20260910hyzxyd-tips {
    font-size: 11px;
    color: #7a9990;
    margin: 0 0 14px;
    text-align: center;
    line-height: 1.6
}

.jushoujigzh20260910hyzxyd-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.jushoujigzh20260910hyzxyd-btn-login,
.jushoujigzh20260910hyzxyd-btn-reg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap
}

.jushoujigzh20260910hyzxyd-btn-login {
    background: linear-gradient(270deg,#f2ca5b 0%,#ffdf89 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(42, 140, 119, .25)
}

.jushoujigzh20260910hyzxyd-btn-reg {
    background: #fff;
    color: #2a8c77;
    border: 1.5px solid #2a8c77
}

.jushoujigzh20260910hyzxyd-rights {
    list-style: none;
    margin: 0;
    padding: 10px 18px
}

.jushoujigzh20260910hyzxyd-rights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f5f3
}

.jushoujigzh20260910hyzxyd-rights li:last-child {
    border-bottom: none
}

.jushoujigzh20260910hyzxyd-ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e6f7f2, #f0fbf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    border: 1px solid #e0f0ea
}

.jushoujigzh20260910hyzxyd-rights div {
    flex: 1;
    min-width: 0
}

.jushoujigzh20260910hyzxyd-rights b {
    display: block;
    font-size: 13px;
    color: #333;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 13px;
    white-space: normal;
    word-break: break-all
}

.jushoujigzh20260910hyzxyd-rights em {
    display: block;
    font-size: 11px;
    color: #7a9990;
    font-style: normal;
    line-height: 1.5;
    white-space: normal;
    word-break: break-all
}

.jushoujigzh20260910hyzxyd-footer {
    padding: 12px 18px;
    background: linear-gradient(135deg, #f7fdfb 0%, #f0fbf6 100%);
    border-top: 1px solid #f0f5f3;
    font-size: 12px;
    color: #7a9990;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center
}

.jushoujigzh20260910hyzxyd-footer b {
    color: #2a8c77;
    font-size: 15px;
    font-weight: 800
}

/* ==================== 分页条（上一页 / 下一页） ==================== */
.jushoujigzh20260910-loadmore {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 0px !important;
    border-top: 1px solid var(--bs) !important;
    background: #fbfdfc !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.jushoujigzh20260910-loadmore-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 66px !important;
    padding: 8px 15px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--p), var(--pl)) !important;
    border: none !important;
    border-radius: 22px !important;
    cursor: pointer !important;
    font-family: inherit !important;
    box-shadow: 0 4px 12px rgba(42, 140, 119, .25) !important;
    transition: all .22s ease !important;
    white-space: nowrap !important
}

.jushoujigzh20260910-loadmore-btn:hover:not(:disabled) {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 18px rgba(42, 140, 119, .35) !important
}

.jushoujigzh20260910-loadmore-btn:disabled {
    background: #e6efeb !important;
    color: #a8b6b1 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    opacity: .85 !important
}

.jushoujigzh20260910-loadmore-stat {
    font-size: 12px !important;
    color: var(--ts) !important;
    white-space: nowrap !important;
    text-align: center !important;
    min-width: 132px !important;
    padding: 0 4px !important;
    font-variant-numeric: tabular-nums
}

/* ==================== 响应式 ==================== */
@media (max-width:991px) {
    .jushoujigzh20260910tjzdqy-main {
        flex-direction: column !important
    }

    .jushoujigzh20260910tjzdqy-left {
        flex: 1 1 auto !important;
        width: 100% !important;
        max-width: 100% !important
    }

    .jushoujigzh20260910tjzdqy-right {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important
    }

    .jushoujigzh20260910tjzdqy ul.indexWebList {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important
    }

    .jushoujigzh20260910tjzdqy-ys .yingshi-nr {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important
    }
}

@media (max-width:640px) {
    .jushoujigzh20260910tjzdqy {
        padding: 0 10px !important
    }

    .jushoujigzh20260910tjzdqy ul.indexWebList {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 6px !important;
        padding: 10px 12px !important
    }

    .jushoujigzh20260910tjzdqy ul.indexWebList>li {
        padding: 8px 4px !important
    }

    .jushoujigzh20260910tjzdqy ul.indexWebList>li img {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important
    }

    .jushoujigzh20260910tjzdqy ul.indexWebList>li>div>a {
        font-size: 11px !important
    }

    .jushoujigzh20260910tjzdqy ul.indexWebList .info {
        display: none !important
    }

    .jushoujigzh20260910tjzdqy-title {
        padding: 12px 14px !important;
        font-size: 13px !important
    }

    .jushoujigzh20260910tjzdqy .jushoujicom-list {
        grid-template-columns: 1fr !important;
        padding: 10px 12px !important
    }

    .jushoujigzh20260910tjzdqy-ys .yingshi-nr {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 6px !important;
        padding: 8px 12px !important
    }

    .jushoujigzh20260910tjzdqy-ys .cen_title img {
        height: 88px !important;
        max-height: 88px !important
    }

    .jushoujigzh20260910tjzdqy-zuixinshoulu .recommend-logo img {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important
    }

    .jushoujigzh20260910-loadmore {
        padding: 10px 12px !important;
        gap: 8px !important
    }

    .jushoujigzh20260910-loadmore-btn {
        min-width: 70px !important;
        padding: 6px 14px !important;
        font-size: 12px !important
    }

    .jushoujigzh20260910-loadmore-stat {
        font-size: 11px !important;
        min-width: 110px !important
    }
}


@media (max-width:359px) {
    .jushoujigzh20260910tjzdqy ul.indexWebList {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important
    }

    .jushoujigzh20260910tjzdqy-ys .yingshi-nr {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }

    .jushoujigzh20260910-loadmore-stat {
        min-width: 96px !important
    }
}