/* 迅睿 — 名医在线风格 + 一套模板自适应 */

*, *::before, *::after { box-sizing: border-box; }
html, body {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; }

.hidden { display: none !important; }

/* 今日推荐缩略图：去掉 blur 遮罩（PC 全屏也生效） */
.recom .recom-img::after,
.recom .recom-m .img::after,
.recom .recom-r .recom-likeTop .img::after {
    display: none !important;
    content: none !important;
}
.recom .recom-m .img img,
.recom .recom-r .recom-likeTop .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f0f0f0;
}
/* 更多资讯（手机访问 PC 首页时同样生效） */
.tag-article li .img::after,
.ask-content .ask-tj .img::after,
.topic .topic-img::after {
    display: none !important;
    content: none !important;
}
.tag-article li .img,
.tag-article li .img img {
    filter: none !important;
}

    .recom-r-tag a {
        min-height: 72px;
        background: #e8f4ff;
        text-decoration: none;
        overflow: hidden;
    }
    .recom-r-tag a .pd-10 {
        position: relative;
        z-index: 1;
        color: #333;
        padding-right: 12px !important;
    }
    .recom-r-tag a .pd-10 p:first-child {
        font-size: 15px;
        font-weight: 600;
        color: #4194e2;
    }
    .recom-r-tag a:hover {
        opacity: 0.9;
    }


/* 头部默认（桌面）：一行 Logo + 导航 + 搜索 */
.head {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    box-shadow: 0 8px 24px rgba(37, 99, 150, 0.06);
    border-bottom: 1px solid rgba(65, 148, 226, 0.08);
}
.head::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7ec4f5 20%, #4194e2 50%, #5ad0e8 80%, transparent 100%);
    opacity: 0.85;
    pointer-events: none;
}
.head .head-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 16px;
}
.head .logo {
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    display: flex;
    align-items: center;
}
.head .logo img {
    display: block;
    width: auto !important;
    height: 52px !important;
    max-width: 280px;
    object-fit: contain;
}
.head .nav-t {
    flex: 1;
    min-width: 0;
    margin-left: 0 !important;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 6px;
}
.head .nav-t .nav-home,
.head .nav-t .nav-item > .nav-link {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1 !important;
    padding: 0 16px !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    letter-spacing: 0.04em;
    color: #2c3a4a;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.head .nav-t .nav-item.has-sub > .nav-link::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #8aa0b5;
    transition: transform 0.2s ease, border-top-color 0.2s ease;
}
.head .nav-t .nav-home.cur,
.head .nav-t .nav-item.cur > .nav-link,
.head .nav-t .nav-home:hover,
.head .nav-t .nav-item:hover > .nav-link {
    color: #fff !important;
    background: linear-gradient(135deg, #5bb0f0 0%, #4194e2 55%, #3a86d4 100%);
    box-shadow: 0 8px 18px rgba(65, 148, 226, 0.28);
}
.head .nav-t .nav-item.has-sub:hover > .nav-link::after,
.head .nav-t .nav-item.has-sub.cur > .nav-link::after {
    border-top-color: #fff;
    transform: rotate(180deg);
}
.head .nav-t .nav-item {
    position: relative;
    flex-shrink: 0;
}
/* 二级下拉：渐变玻璃感 */
.head .nav-t .nav-sub {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 2000;
    min-width: 148px;
    padding: 10px 8px;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 246, 255, 0.96) 100%);
    border: 1px solid rgba(65, 148, 226, 0.16);
    box-shadow:
        0 16px 36px rgba(37, 99, 150, 0.14),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.head .nav-t .nav-sub::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    background: linear-gradient(135deg, #fff 0%, #eaf5ff 100%);
    border-left: 1px solid rgba(65, 148, 226, 0.16);
    border-top: 1px solid rgba(65, 148, 226, 0.16);
    transform: rotate(45deg);
}
.head .nav-t .nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}
.head .nav-t .nav-item:hover .nav-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.head .nav-t .nav-sub a {
    display: block;
    margin: 4px 0;
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1.3 !important;
    color: #334155 !important;
    white-space: nowrap !important;
    text-align: center;
    border-radius: 10px;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.head .nav-t .nav-sub a:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #6bb8f2, #4194e2);
    box-shadow: 0 6px 14px rgba(65, 148, 226, 0.25);
    transform: translateY(-1px);
}

/* 搜索框微调 */
.head .ss {
    flex-shrink: 0;
    border: 1px solid rgba(65, 148, 226, 0.18) !important;
    background: linear-gradient(180deg, #ffffff, #f3f8ff);
    box-shadow: 0 4px 14px rgba(65, 148, 226, 0.08);
}
.head .ss .ss-btn {
    background: linear-gradient(135deg, #5bb0f0, #4194e2) !important;
}

.myzx-TOP {
    position: fixed;
    right: 30px;
    bottom: 80px;
    z-index: 500;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #4194e2;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.myzx-TOP:hover { opacity: 0.85; }

/* PC 右侧咨询入口，指向介绍页 zixun.html */
.pc-consult-float {
    position: fixed;
    right: 24px;
    bottom: 140px;
    z-index: 500;
    width: 52px;
    padding: 12px 8px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ff9a3c, #ff8401);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255, 132, 1, 0.35);
}
.pc-consult-float:hover { opacity: 0.92; color: #fff !important; }
@media screen and (max-width: 980px) {
    .pc-consult-float { display: none; }
}

/* 分页：兼容 ul.pagination / .pagesize / 直接 a+span */
.xrpagination {
    width: 100%;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.xrpagination ul,
.xrpagination ul.pagination,
.xrpagination .pagesize {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.xrpagination li {
    display: inline-flex !important;
    float: none !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}
.xrpagination li > a,
.xrpagination li > span,
.xrpagination > a,
.xrpagination > span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    line-height: 1;
    border-radius: 10px;
    margin: 0;
    border: 1px solid #e5eaf0;
    text-align: center;
    padding: 0 12px;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    text-decoration: none;
    white-space: nowrap;
}
.xrpagination li > a:hover,
.xrpagination > a:hover {
    color: #4194e2;
    border-color: #9fc7ef;
}
/* 当前页：只给 a/span 上色，不要给 li 铺满整行蓝条 */
.xrpagination li.active,
.xrpagination li.cur,
.xrpagination .active,
.xrpagination .cur {
    background: transparent !important;
    width: auto !important;
}
.xrpagination li.active > a,
.xrpagination li.active > span,
.xrpagination li.cur > a,
.xrpagination li.cur > span,
.xrpagination span.current,
.xrpagination .current {
    background: #4194e2 !important;
    color: #fff !important;
    border-color: #4194e2 !important;
    box-shadow: 0 6px 14px rgba(65, 148, 226, 0.25);
}

.art-back-home {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 16px;
    background: #4194e2;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
}
.art-back-home:hover { opacity: 0.9; color: #fff !important; }

.crumbs { padding: 16px 0; font-size: 14px; color: #999; line-height: 22px; }
.crumbs a { color: #999; }
.crumbs a:hover { color: #4194e2; }
.crumbs .i-zy,
.crumbs .i-next {
    font-size: 12px;
    color: #999;
    padding: 0 6px;
    vertical-align: middle;
}
.crumbs .i-zy { padding-left: 0; padding-right: 4px; font-size: 14px; }
.crumbs span { color: #999; }

.neirong,
.xrcontent {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding: 20px 0;
    word-break: break-word;
}
.neirong img,
.xrcontent img { max-width: 100%; height: auto; border-radius: 5px; }
.neirong p,
.xrcontent p { margin-bottom: 14px; }

.art-show-meta { padding: 12px 0 20px; border-bottom: 1px solid #eee; }
@keyframes yzdst-ad-flash {
    0%, 100% { filter: brightness(1); transform: scale(1); }
    50% { filter: brightness(1.14); transform: scale(1.008); }
}
@keyframes yzdst-ad-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(65, 148, 226, 0); }
    50% { box-shadow: 0 0 14px rgba(65, 148, 226, 0.55); }
}
.art-show-ad {
    margin: 0 0 20px;
    border-radius: 8px;
    overflow: hidden;
    animation: yzdst-ad-glow 0.8s ease-in-out infinite;
}
.art-show-ad img {
    display: block;
    width: 100%;
    height: auto;
    animation: yzdst-ad-flash 0.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .art-show-ad,
    .art-show-ad img { animation: none; }
}
.art-show-ad-link { display: block; }
.art-show-meta span { color: #999; font-size: 14px; margin-right: 20px; }
.art-show-tags { padding: 16px 0; }
.art-show-tags a {
    display: inline-block;
    padding: 2px 10px;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid #4194e2;
    color: #4194e2;
    border-radius: 3px;
    font-size: 13px;
}
.art-show-tags a:hover { background: #4194e2; color: #fff; }
.art-prevnext { padding: 20px 0; border-top: 1px solid #eee; font-size: 14px; line-height: 28px; }
.art-prevnext a { color: #4194e2; }

.list-page-wrap { padding-bottom: 40px; }
.tag-article li { padding: 20px 0; border-bottom: 1px solid #eee; }
.tag-article li:last-child { border-bottom: 0; }
.tag-article li .img { width: 180px; height: 112px; flex-shrink: 0; }
.tag-article li .flex-1 { padding-left: 16px; min-width: 0; }

.side-hot li { padding: 10px 0; border-bottom: 1px dashed #eee; }
.side-hot li:last-child { border-bottom: 0; }
.side-hot a { font-size: 14px; line-height: 22px; }
.side-hot a:hover { color: #4194e2; }

.list-side { width: 300px; flex-shrink: 0; }
.list-main { flex: 1; min-width: 0; }

/* ========== 列表页视觉升级 ========== */
.list-page {
    background:
        radial-gradient(1200px 420px at 10% -10%, rgba(65, 148, 226, 0.10), transparent 60%),
        radial-gradient(900px 360px at 90% 0%, rgba(78, 201, 237, 0.08), transparent 55%),
        #f7f9fc;
    min-height: 60vh;
}
.list-page .list-page-wrap {
    padding-bottom: 56px;
}
.list-page .crumbs {
    padding-top: 18px;
    padding-bottom: 12px;
}

.list-hero {
    position: relative;
    margin-bottom: 28px;
    padding: 28px 32px 22px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f2f8ff 55%, #eaf5ff 100%);
    border: 1px solid rgba(65, 148, 226, 0.12);
    box-shadow: 0 10px 28px rgba(37, 99, 150, 0.06);
    overflow: hidden;
}
.list-hero::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65, 148, 226, 0.16), transparent 70%);
    pointer-events: none;
}
.list-hero-eyebrow {
    position: relative;
    display: inline-block;
    margin: 0 0 10px;
    padding: 3px 10px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #4194e2;
    background: rgba(65, 148, 226, 0.1);
    border-radius: 999px;
}
.list-hero-title {
    position: relative;
    margin: 0;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #1f2a37;
    letter-spacing: 0.02em;
}
.list-hero-desc {
    position: relative;
    margin: 10px 0 0;
    max-width: 640px;
    font-size: 14px;
    line-height: 1.7;
    color: #6b7785;
}
.list-hero-tabs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.list-tab {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 13px;
    color: #4b5563;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5eaf0;
    transition: all 0.2s ease;
}
.list-tab:hover {
    color: #4194e2;
    border-color: #9fc7ef;
    background: #fff;
}
.list-tab.on {
    color: #fff;
    background: linear-gradient(135deg, #4aa3eb, #4194e2);
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(65, 148, 226, 0.28);
}

.list-layout {
    align-items: flex-start;
    gap: 24px;
}

.list-feed {
    margin: 0;
    padding: 0;
    list-style: none;
}
.list-card {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(31, 42, 55, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.list-card:hover {
    transform: translateY(-2px);
    border-color: rgba(65, 148, 226, 0.28);
    box-shadow: 0 12px 28px rgba(37, 99, 150, 0.1);
}
.list-card-cover {
    display: block;
    width: 200px;
    height: 124px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #eef4fa;
}
.list-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.list-card:hover .list-card-cover img {
    transform: scale(1.04);
}
.list-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.list-card-title {
    display: block;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    color: #1f2a37;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.list-card-title:hover {
    color: #4194e2;
}
.list-card-desc {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #7a8694;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.list-card-meta {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9aa5b1;
}
.list-card-meta em {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c5ced8;
}
.list-card-more {
    margin-left: auto;
    color: #4194e2;
    font-weight: 600;
}
.list-card-more:hover {
    opacity: 0.85;
}

.side-panel {
    margin-bottom: 18px;
    padding: 18px 18px 10px;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(31, 42, 55, 0.03);
}
.side-panel-hd {
    position: relative;
    margin-bottom: 14px;
    padding-left: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2a37;
}
.side-panel-hd::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 16px;
    border-radius: 4px;
    background: linear-gradient(180deg, #4ec9ed, #4194e2);
}
.side-cats {
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
}
.side-cats li a {
    display: block;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-radius: 8px;
    font-size: 14px;
    color: #4b5563;
    background: #f7f9fc;
    transition: all 0.18s ease;
}
.side-cats li a:hover {
    color: #4194e2;
    background: #eef6ff;
}
.side-cats li.on a {
    color: #fff;
    background: linear-gradient(135deg, #4aa3eb, #4194e2);
    box-shadow: 0 6px 14px rgba(65, 148, 226, 0.25);
}
.side-rank {
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
    counter-reset: side-rank;
}
.side-rank li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #eef2f6;
    counter-increment: side-rank;
}
.side-rank li:last-child {
    border-bottom: 0;
}
.side-rank .rank-n {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 6px;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: #6b7785;
    background: #eef2f6;
}
.side-rank .rank-n::before {
    content: counter(side-rank);
}
.side-rank li:nth-child(1) .rank-n,
.side-rank li:nth-child(2) .rank-n,
.side-rank li:nth-child(3) .rank-n {
    color: #fff;
    background: linear-gradient(135deg, #5bb0f0, #4194e2);
}
.side-rank a {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
}
.side-rank a:hover {
    color: #4194e2;
}

.list-page .xrpagination {
    margin-top: 8px;
}

.p-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    z-index: 9999;
    font-size: 14px;
}

/* ========== ≤1200：流体宽度 ========== */
@media screen and (max-width: 1200px) {
    .w-1200 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ========== ≤992：平板 / 大屏手机 ========== */
@media screen and (max-width: 992px) {
    .head {
        position: sticky !important;
        top: 0;
        transform: none !important;
    }
    .head .head-cont {
        height: auto !important;
        flex-wrap: wrap;
        align-items: center;
        padding: 10px 16px !important;
        gap: 10px;
    }
    .head .logo {
        width: auto;
        height: 36px;
        max-width: 120px;
        order: 1;
    }
    .head .logo img {
        width: auto !important;
        height: 36px !important;
        object-fit: contain;
    }
    .head .ss {
        order: 2;
        flex: 1;
        height: 36px;
        max-width: none;
        min-width: 140px;
    }
    .head .ss .ss-text {
        width: 100% !important;
        flex: 1;
        min-width: 0;
        font-size: 13px;
    }
    .head .ss .ss-btn {
        width: 56px;
        height: 36px;
        flex-shrink: 0;
    }
    .head .ss .i-ss { font-size: 22px !important; }
    .head .ss .i-hot { font-size: 18px !important; }
    .head .nav-t {
        order: 3;
        width: 100%;
        flex: none !important;
        margin-left: 0 !important;
        justify-content: flex-start !important;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
        scrollbar-width: none;
    }
    .head .nav-t::-webkit-scrollbar { display: none; }
    .head .nav-t a,
    .head .nav-t .nav-home,
    .head .nav-t .nav-item > .nav-link {
        font-size: 15px !important;
        padding: 0 12px !important;
        white-space: nowrap;
        flex-shrink: 0;
        line-height: 28px;
    }
    .head .nav-t .nav-sub {
        position: static;
        transform: none;
        display: none;
        box-shadow: none;
        padding: 0;
        min-width: 0;
    }
    /* 小屏：点击一级仍进栏目页；子栏目在栏目页内展示，避免挤导航 */
    .head .nav-t .nav-item:hover .nav-sub {
        display: none;
    }

    /* sticky 头不占固定空隙 */
    .page {
        padding-top: 0 !important;
    }

    .t-banner {
        height: 160px !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .t-banner .t-banner-cont {
        width: 92% !important;
        left: 4% !important;
        right: 4% !important;
        top: 50% !important;
        transform: translateY(-50%);
        text-align: center;
    }
    .t-banner .t-banner-cont .t-banenr-title {
        font-size: 18px !important;
        line-height: 26px !important;
    }
    .t-banner .t-banner-cont .t-banenr-btn {
        width: 150px;
        line-height: 34px;
        margin: 12px auto 0;
    }

    .recom { flex-direction: column !important; gap: 0; }
    .recom .recom-l,
    .recom .recom-m,
    .recom .recom-r {
        width: 100% !important;
        margin-bottom: 20px;
    }
    .recom .recom-img { height: 200px !important; }
    .recom .recom-img::after,
    .recom .recom-m .img::after,
    .recom .recom-r .recom-likeTop .img::after,
    .ask-content .ask-tj .img::after,
    .tag-article li .img::after,
    .topic .topic-img::after {
        display: none !important;
    }
    .recom .recom-m .img,
    .recom .recom-r .recom-likeTop .img {
        width: 110px !important;
        height: 76px !important;
        flex-shrink: 0;
    }
    .recom-roll ul {
        width: calc(100% - 70px) !important;
        max-width: none !important;
    }

    .ask-content {
        flex-direction: column !important;
        display: flex !important;
    }
    .ask-content.h { display: none !important; }
    .ask-content .col-2 {
        width: 100% !important;
        margin-bottom: 16px;
    }
    .ask-content .ask-tj .img {
        width: 110px !important;
        height: 74px !important;
        flex-shrink: 0;
    }
    .ask-content .ask-list .t {
        width: auto !important;
        flex: 1;
        min-width: 0;
    }
    .ask-content .ask-list .other {
        width: auto !important;
        flex-shrink: 0;
    }

    .bk-list .col-5 {
        width: 100% !important;
    }
    .topic {
        flex-wrap: wrap !important;
    }
    .topic .col-4 {
        width: 48% !important;
        margin-bottom: 12px;
    }
    .topic img { height: 110px !important; }

    .list-page-wrap > .flex.jc-sb,
    .list-layout {
        flex-direction: column !important;
    }
    .list-side {
        width: 100% !important;
        margin-top: 20px;
    }
    .list-hero {
        padding: 22px 18px 16px;
        border-radius: 12px;
    }
    .list-hero-title {
        font-size: 24px;
    }
    .list-card {
        gap: 12px;
        padding: 12px;
        border-radius: 12px;
    }
    .list-card-cover {
        width: 120px;
        height: 84px;
        border-radius: 8px;
    }
    .list-card-title {
        font-size: 15px;
    }
    .list-card-desc {
        display: none;
    }
    .tag-article li .img {
        width: 120px !important;
        height: 80px !important;
    }
    .art-h1 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }

    .foot .foot-cp { width: 100% !important; }
    .foot .foot-cp ul { flex-wrap: wrap; }
    .link .link-tab { height: auto !important; }
}

/* ========== ≤640：手机 ========== */
@media screen and (max-width: 640px) {
    .w-1200 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .head .head-cont {
        padding: 8px 12px !important;
        gap: 8px;
    }
    .head .logo {
        height: 32px;
        max-width: 110px;
    }
    .head .logo img { height: 32px !important; }
    .head .ss { height: 34px; }
    .head .ss .ss-btn {
        width: 50px;
        height: 34px;
    }
    .head .nav-t a {
        font-size: 14px !important;
        padding-right: 14px !important;
    }

    .t-banner {
        height: 120px !important;
    }
    .t-banner .t-banner-cont .t-banenr-title {
        font-size: 15px !important;
        line-height: 22px !important;
    }
    .t-banner .t-banner-cont .t-banenr-btn {
        width: 130px;
        line-height: 30px;
        margin-top: 8px;
        border-radius: 12px;
    }
    .t-banner .t-banner-cont .t-banenr-btn a {
        font-size: 12px;
    }

    .mt-50 { margin-top: 24px !important; }
    .mt-30 { margin-top: 16px !important; }
    .mt-20 { margin-top: 12px !important; }

    .t-h2 {
        height: auto !important;
        line-height: 1.3 !important;
    }
    .t-h2 span { font-size: 16px !important; }
    .t-h2 .i-tj,
    .t-h2 .i-wd,
    .t-h2 .i-bk,
    .t-h2 .i-ht {
        font-size: 20px !important;
    }

    .recom .recom-img { height: 160px !important; }
    .recom .t2,
    .recom .t2 a {
        font-size: 15px !important;
        line-height: 22px !important;
        height: auto !important;
    }
    .recom .d { font-size: 12px !important; }
    .recom .recom-m li { margin-bottom: 14px !important; }
    .recom .recom-m .img,
    .recom .recom-r .recom-likeTop .img {
        width: 96px !important;
        height: 68px !important;
    }
    .recom-r-tag .col-2 { width: 48% !important; }
    .recom-r-tag img { height: 64px !important; }
    .recom-r-tag a div { font-size: 12px !important; }
    .recom-r-tag .pd-10 { padding-right: 36px !important; }
    .recom-r-tag .pd-10 .pt-10 { font-size: 10px !important; line-height: 14px !important; }

    .ask-item .ask-container {
        overflow-x: auto;
    }
    .ask-item .ask-slide .ask-tag {
        font-size: 13px;
        white-space: nowrap;
        padding: 4px 10px;
    }
    .ask-content .ask-tj {
        flex-direction: row !important;
        gap: 10px;
    }
    .ask-content .ask-tj .img {
        width: 100% !important;
        height: 90px !important;
        margin-bottom: 6px;
    }
    .ask-content .ask-tj > .flex,
    .ask-content .ask-tj {
        display: flex;
    }
    .ask-content .ask-list li {
        margin-top: 12px !important;
        align-items: flex-start !important;
    }
    .ask-content .ask-list .t {
        font-size: 14px !important;
        line-height: 20px !important;
        height: auto !important;
        -webkit-line-clamp: 2;
    }
    .ask-content .ask-list .other {
        font-size: 11px;
        margin-left: 8px;
        white-space: nowrap;
    }

    .bk-table { width: 100% !important; flex-wrap: wrap; }
    .bk-table .bk-tabTitle {
        margin-right: 8px;
        margin-bottom: 6px;
        font-size: 13px;
        padding: 4px 10px;
    }
    .topic .col-4 {
        width: 100% !important;
    }
    .topic img { height: 130px !important; }

    .line2 {
        height: auto !important;
        max-height: 44px;
        line-height: 22px !important;
    }

    .tag-article li { padding: 12px 0 !important; }
    .tag-article li .img {
        width: 100px !important;
        height: 70px !important;
    }
    .tag-article li .flex-1 { padding-left: 10px !important; }
    .tag-article li .t2 {
        font-size: 15px !important;
        line-height: 22px !important;
        height: auto !important;
    }

    .art-h1 { font-size: 18px !important; }
    .neirong, .xrcontent { font-size: 15px; padding: 12px 0; }
    .art-show-meta span {
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 4px;
        font-size: 12px;
    }

    .myzx-TOP {
        right: 12px;
        bottom: 16px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .foot.mt-50 { margin-top: 24px !important; }
    .foot .pt-50 { padding-top: 20px !important; }
    .link-nav li {
        font-size: 13px;
        margin-right: 12px !important;
        height: 32px !important;
    }
    .xrpagination a,
    .xrpagination span {
        min-width: 30px;
        height: 30px;
        line-height: 30px;
        margin: 0 3px;
        font-size: 13px;
    }
}
