/* ============================================
   Joe Theme Custom Styles
   ============================================ */

/* ---------- 顶部头部半透明 + 导航栏完整重写 ---------- */
/* 覆盖 joe.global.min.css 中的原始样式 */

/* 头部容器 */
html .joe_header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255,255,255,0.65) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* 移动端：恢复 sticky 定位，隐藏主导航使用侧滑菜单 */
@media (max-width: 768px) {
    html .joe_header {
        position: sticky !important;
        background: var(--background) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
    }
    html .joe_header__above {
        background: var(--background) !important;
    }
    html .joe_header__above-nav {
        display: none !important;
    }
    html body {
        padding-top: 0 !important;
    }
}

/* 头部滚动隐藏 */
html .joe_header.active {
    top: -60px;
}
html .joe_header.active .joe_header__below {
    border-top: none;
}
html .joe_header.active.current .joe_header__below-title {
    display: block;
}
html .joe_header.active.current .joe_header__below-class {
    display: none;
}

/* 顶部栏容器 */
html .joe_header__above {
    position: relative;
    z-index: 999;
    background: transparent !important;
    box-shadow: none !important;
}
html .joe_header__above .joe_container {
    align-items: center;
    background: transparent !important;
}

/* Logo */
html .joe_header__above-logo {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
    padding-right: 15px;
    margin-right: 15px;
    color: #666 !important;
    fill: #666 !important;
}
html .joe_header__above-logo img {
    max-width: 150px;
    max-height: 50px;
    -o-object-fit: cover;
    object-fit: cover;
}
html .joe_header__above-logo svg {
    display: none;
}
html .joe_header__above-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 20px;
    background: var(--classC);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* 导航菜单 */
html .joe_header__above-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap !important;
}
html .joe_header__above-nav .item {
    position: relative;
    height: 60px;
    line-height: 60px;
    font-size: 15px;
    padding: 0 8px;
    margin-right: 15px;
    transition: color 0.35s;
    white-space: nowrap;
    color: #666 !important;
}
html .joe_header__above-nav .item:last-child {
    margin-right: 0;
}
html .joe_header__above-nav .item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
    border-radius: 6px 6px 0 0;
    opacity: 0;
    -webkit-transform: scaleX(0.25);
    transform: scaleX(0.25);
    background: var(--theme);
}
html .joe_header__above-nav .item.active,
html .joe_header__above-nav .item:hover {
    color: var(--theme) !important;
}
html .joe_header__above-nav .item.active::after,
html .joe_header__above-nav .item:hover::after {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* 下拉菜单 */
html .joe_header__above-nav .joe_dropdown__link a {
    height: 60px;
    line-height: 60px;
    font-size: 15px;
    padding-left: 8px;
    padding-right: 3px;
    transition: color 0.35s;
    white-space: nowrap;
    color: #666 !important;
}
html .joe_header__above-nav .joe_dropdown__menu {
    width: 110px;
    text-align: center;
}
html .joe_header__above-nav .joe_dropdown__menu a {
    display: block;
    line-height: 34px;
    height: 34px;
    transition: color 0.35s, background 0.35s;
    color: var(--minor);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 15px;
}
html .joe_header__above-nav .joe_dropdown__menu a:hover,
html .joe_header__above-nav .joe_dropdown__menu a.active {
    color: var(--theme);
    background: var(--classD);
}

/* 搜索框 */
html .joe_header__above-search .input {
    color: #666 !important;
    background: transparent !important;
}
html .joe_header__above-search .input::placeholder {
    color: #999 !important;
}
html .joe_header__above-search .submit {
    color: #666 !important;
}

/* 图标 */
html .joe_header__above-slideicon,
html .joe_header__above-searchicon {
    color: #666 !important;
    fill: #666 !important;
}
html .joe_header__above-slideicon path,
html .joe_header__above-searchicon path {
    fill: #666 !important;
}

/* 副导航栏 */
html .joe_header__below {
    background: transparent !important;
}
html .joe_header__below-class .item {
    color: #666 !important;
}

/* ---------- WAP端侧滑面板作者名称 ---------- */
.joe_header__slideout-author .info {
    flex: 1;
    min-width: 0;
    overflow: visible;
}
.joe_header__slideout-author .info .link,
.joe_header__slideout-author .info .motto {
    white-space: normal !important;
    word-break: break-all !important;
    text-overflow: clip !important;
    overflow: visible !important;
}

/* ---------- 作者V认证标识 ---------- */
.v-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #1d9bf0;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(29,155,240,0.4);
}
.v-badge svg {
    width: 11px;
    height: 11px;
    fill: #fff;
}
.avatar-wrapper {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

/* ---------- 作者认证标签 ---------- */
.author-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}
.author-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    padding: 1px 7px;
    border-radius: 8px;
    line-height: 1.7;
    letter-spacing: 0.3px;
}
.author-tag.owner {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}
.author-tag.dev {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.author-tag.src {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}
.joe_header__slideout-author .info .link {
    white-space: normal !important;
    word-break: break-all !important;
    text-overflow: clip !important;
    overflow: visible !important;
}

.submit img {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 35px;
}
.submit input {
    width: 80px;
    padding: 8px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

/* ---------- 底部友情链接 ---------- */
.joe_footer__links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.joe_footer__links-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}
.joe_footer__links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.joe_footer__links-item a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}
.joe_footer__links-item a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.joe_footer__links-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}
.joe_footer__links-name {
    font-size: 14px;
    white-space: nowrap;
}

/* ---------- 手机端副导航 ---------- */
@media (max-width: 768px) {
    .joe_header__below-class {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 10px 15px;
        gap: 8px;
        width: 100%;
        background: var(--background, rgba(255,255,255,0.95));
        border-bottom: 1px solid rgba(0,0,0,0.06);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .joe_header__below-class .item {
        display: inline-block;
        font-size: 12px;
        padding: 5px 14px;
        color: #555;
        border-radius: 20px;
        background: rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        text-decoration: none;
        white-space: nowrap;
        font-weight: 400;
    }
    .joe_header__below-class .item:active {
        transform: scale(0.95);
        background: var(--theme, #4a90d9);
        color: #fff;
    }
    .joe_header__below {
        display: flex !important;
        flex-wrap: wrap;
        padding: 0;
        height: auto !important;
        min-height: auto;
    }
    .joe_header__below .joe_container {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding: 0;
        flex-direction: column;
    }
    .joe_header__below-sign {
        display: none !important;
    }
    .joe_header__below-class nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        width: 100%;
    }
    .joe_footer__links-list {
        gap: 10px;
    }
    .joe_footer__links-item a {
        padding: 6px 10px;
    }
    .joe_footer__links-avatar {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
    .joe_footer__links-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .joe_header__below-class .item {
        font-size: 11px;
        padding: 4px 10px;
    }
    .joe_header__below-class {
        padding: 8px 10px;
        gap: 5px;
    }
}

/* ---------- 桌面端 ---------- */
@media (min-width: 769px) {
    .joe_header__below-sign {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .joe_index__list {
        padding: 0 4px !important;
    }
}

/* ---------- WAP端侧滑栏 ---------- */
.joe_header__slideout-vip {
    padding: 10px 16px 4px;
}
.payvip-icon {
    display: block;
    text-align: center;
    padding: 12px 0;
    background: linear-gradient(300deg, #4c4d51, #2a2a31 15%, #85858a 40%, #393a3c 60%, #393838 80%, #5e5f62 100%);
    text-shadow: none;
    font-weight: 400;
    position: relative;
    color: #ece0e0;
    border: none;
    overflow: hidden;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.payvip-icon:hover {
    opacity: 0.92;
    color: #fff;
}
.joe_header__slideout-menu a[href*="ucenter"] {
    display: none !important;
}
.joe_header__slideout-auth {
    display: flex;
    gap: 6px;
    padding: 12px 16px 20px;
    justify-content: center;
}
.auth-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s;
    background: transparent;
}
.auth-btn svg {
    width: 28px;
    height: 28px;
}
.auth-btn:hover {
    opacity: 0.75;
}
.auth-btn.auth-login {
    color: #4facfe;
}
.auth-btn.auth-reg {
    color: #43e97b;
}
.auth-btn.auth-forgot {
    color: #a78bfa;
}

/* ============================================
   Homepage (index.php) Styles
   ============================================ */

/* ---------- 海报网格 ---------- */
html .joe_index__hot-list {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    column-gap: 10px;
}
@media (max-width: 768px) {
    html .joe_index__hot-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 6px;
    }
    html .joe_index__hot-list .item .link .inner .image {
        height: 80px;
    }
    html .joe_index__hot-list .item .link .inner .title {
        padding: 6px 8px 2px;
        font-size: 12px;
    }
}

/* ---------- 海报卡片 ---------- */
html .joe_index__hot-list .item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
html .joe_index__hot-list .item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
html .joe_index__hot-list .item .link .inner {
    position: relative;
}
html .joe_index__hot-list .item .link .inner .image {
    height: 147px;
    border-radius: 10px 10px 0 0;
}
html .joe_index__hot-list .item .link .inner .title {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    padding: 8px 12px 2px;
    line-height: 1.4;
    color: #333;
    background: #fff;
    border-radius: 0;
    font-weight: 500;
}
html .joe_index__hot-list .item .link .inner .hot-cat-wrap {
    padding: 0 12px 8px;
    background: #fff;
    line-height: 1;
}
html .joe_index__hot-list .item .link .inner .hot-cat-wrap svg {
    display: none !important;
}
html .joe_index__hot-list .item .link .inner .hot-cat-wrap a {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    color: #1a8cff !important;
    background: #e8f4fd;
    padding: 1px 7px;
    border-radius: 3px;
    line-height: 1.7;
    text-decoration: none;
}
html .joe_index__hot-list .item .link .inner .hot-cat-wrap a:hover {
    color: #1a8cff !important;
}

/* ---------- WAP端搜索模块 ---------- */
.joe_wap_search {
    position: relative;
    width: 100%;
    padding: 120px 20px 100px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.joe_wap_search_inner {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}
.joe_wap_search_title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 1px;
}
.joe_wap_search_box form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    padding: 4px 4px 4px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.joe_wap_search_box .search-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: #bbb;
    margin-right: 8px;
}
.joe_wap_search_box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
}
.joe_wap_search_box input::placeholder {
    color: #bbb;
}
.joe_wap_search_tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}
.joe_wap_search_tags a {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 15px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all .2s;
}
.joe_wap_search_tags a:hover {
    background: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
    .joe_wap_search {
        padding: 80px 16px 35px;
        min-height: 280px;
    }
    .joe_wap_search_title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .joe_wap_search_box input {
        padding: 8px 0;
        font-size: 13px;
    }
    .joe_wap_search_tags a {
        font-size: 11px;
        padding: 3px 11px;
    }
}
@media (min-width: 769px) {
    .joe_wap_search {
        background-position: center -30px;
    }
}

/* ---------- 分类导航 ---------- */
.joe_home_category {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
.joe_home_category_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.joe_home_category_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255,255,255,0.85);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all .25s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.joe_home_category_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.joe_home_category_icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
}
.joe_home_category_icon svg {
    width: 22px;
    height: 22px;
}
.joe_home_category_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.joe_home_category_info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.joe_home_category_name {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}
.joe_home_category_desc {
    font-size: 11px;
    color: #999;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .joe_home_category_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .joe_home_category_item {
        padding: 12px 8px;
    }
    .joe_home_category_icon {
        width: 36px;
        height: 36px;
    }
    .joe_home_category_icon svg {
        width: 18px;
        height: 18px;
    }
    .joe_home_category_name {
        font-size: 12px;
    }
}

/* ---------- 公告图片 ---------- */
.joe_home_announce_img {
    padding: 6px 0;
}
.joe_home_announce_img img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.joe_home_announce_img a {
    display: block;
}

/* ---------- 底部容器 ---------- */
.joe_index {
    padding: 15px 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.joe_container,
.joe_main {
    background: transparent !important;
}
.joe_container {
    padding: 0 8px;
}
@media (min-width: 1200px) {
    .joe_container {
        max-width: 100%;
        padding: 0 20px;
    }
}
@media (min-width: 1400px) {
    .joe_container {
        max-width: 100%;
        padding: 0 30px;
    }
}
.joe_wap_list {
    padding-top: 4px;
}

/* ---------- 轮播图 ---------- */
.swiper-container .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- 文章卡片网格 ---------- */
@media (min-width: 769px) {
    .joe_index__list .joe_list {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px;
        padding: 0 !important;
    }
    .joe_index__list .joe_list .joe_list__item {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff;
        border-radius: 8px !important;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        border-bottom: none !important;
    }
    .joe_index__list .joe_list .joe_list__item .thumbnail {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 147px !important;
        border-radius: 0 !important;
        overflow: hidden;
        margin-right: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: #f5f5f5;
    }
    .joe_index__list .joe_list .joe_list__item .thumbnail img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        border-radius: 0 !important;
    }
    .joe_index__list .joe_list .joe_list__item .thumbnail time {
        position: absolute;
        bottom: 6px;
        right: 6px;
        background: rgba(0,0,0,0.6);
        color: #fff;
        font-size: 11px;
        padding: 2px 7px;
        border-radius: 4px;
    }
    .joe_index__list .joe_list .joe_list__item .information {
        display: block !important;
        width: 100% !important;
        padding: 10px 12px !important;
        margin: 0 !important;
        border-top: 1px solid #f0f0f0;
    }
    .joe_index__list .joe_list .joe_list__item .information .title {
        font-size: 14px !important;
        font-weight: 500;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .joe_index__list .joe_list .joe_list__item .information .abstract {
        display: none !important;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 6px 0 0;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags {
        display: flex;
        flex-wrap: nowrap;
        gap: 4px;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 4px;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags svg {
        display: none !important;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags a {
        display: inline-block;
        flex-shrink: 0;
        font-size: 11px;
        font-weight: 500;
        color: #666;
        background: #f0f0f0;
        padding: 1px 8px;
        border-radius: 4px;
        line-height: 1.8;
        text-decoration: none;
        transition: all .2s;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags a:hover {
        color: #1a8cff;
        background: #e8f4fd;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags a.link {
        color: #fff !important;
        background: #1a8cff;
        font-size: 10px;
        padding: 1px 7px;
        border-radius: 3px;
        line-height: 1.7;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags a.link:hover {
        background: #0a7cf0;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags a[href*="tag="]::before {
        content: "#";
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-line {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 11px;
        color: #999;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-date {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-views {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-views svg {
        vertical-align: middle;
        margin-right: 2px;
        width: 14px;
        height: 14px;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .last {
        display: none !important;
    }
    .joe_index__list .joe_list .joe_list__item .line {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .joe_index__list .joe_list {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
        padding: 0 !important;
    }
    .joe_index__list .joe_list .joe_list__item {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff;
        border-radius: 8px !important;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        border-bottom: none !important;
    }
    .joe_index__list .joe_list .joe_list__item .thumbnail {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 147px !important;
        border-radius: 0 !important;
        overflow: hidden;
        margin-right: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: #f5f5f5;
    }
    .joe_index__list .joe_list .joe_list__item .thumbnail img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        border-radius: 0 !important;
    }
    .joe_index__list .joe_list .joe_list__item .thumbnail time {
        display: none;
    }
    .joe_index__list .joe_list .joe_list__item .information {
        display: block !important;
        width: 100% !important;
        padding: 8px 10px !important;
        margin: 0 !important;
        border-top: 1px solid #f0f0f0;
    }
    .joe_index__list .joe_list .joe_list__item .information .title {
        font-size: 13px !important;
        font-weight: 500;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .joe_index__list .joe_list .joe_list__item .information .abstract {
        display: none !important;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 6px 0 0;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags {
        display: flex;
        flex-wrap: nowrap;
        gap: 4px;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        max-width: 100%;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags::-webkit-scrollbar {
        display: none;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags svg {
        display: none !important;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags a {
        display: inline-block;
        flex-shrink: 0;
        font-size: 11px;
        font-weight: 500;
        color: #666;
        background: #f0f0f0;
        padding: 1px 8px;
        border-radius: 4px;
        line-height: 1.8;
        text-decoration: none;
        transition: all .2s;
        white-space: nowrap;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags a.link {
        color: #fff !important;
        background: #1a8cff;
        font-size: 10px;
        padding: 1px 7px;
        border-radius: 3px;
        line-height: 1.7;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags a[href*="tag="]::before {
        content: "#";
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-line {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 11px;
        color: #999;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-date {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-views {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-views svg {
        vertical-align: middle;
        margin-right: 2px;
        width: 14px;
        height: 14px;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .last {
        display: none !important;
    }
    .joe_index__list .joe_list .joe_list__item .line {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .joe_index__title {
        margin: 10px 8px 6px !important;
    }
    .joe_main .joe_index {
        padding-bottom: 20px !important;
    }
    .joe_index__list {
        padding: 0 6px !important;
    }
    .joe_index__list .joe_list .joe_list__item .thumbnail svg {
        display: none;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags {
        display: flex;
        flex-wrap: nowrap;
        gap: 4px;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        max-width: 100%;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-tags::-webkit-scrollbar {
        display: none;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-line {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 11px;
        color: #999;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-date {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-views {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .joe_index__list .joe_list .joe_list__item .information .meta .meta-views svg {
        vertical-align: middle;
        margin-right: 2px;
        width: 14px;
        height: 14px;
    }
}

/* ---------- 懒加载 ---------- */
.lazy-img {
    transition: opacity .4s ease;
    opacity: 0;
}
.lazy-img.loading {
    opacity: 0;
}
.lazy-img.loaded {
    opacity: 1;
}
.lazy-img-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
}
.lazy-img-wrapper .lazy-loader {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 2;
    width: 48px !important;
    height: 48px !important;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.lazy-img-wrapper .lazy-loader.hide {
    display: none !important;
}
@keyframes lazySpin {
    0% { transform: translate(-50%,-50%) rotate(0deg); }
    100% { transform: translate(-50%,-50%) rotate(360deg); }
}
