/* 面包屑导航区域 */
.max_bg {
    background-color: #ffffff;
    border-bottom: 0.01rem solid #eef2f6;
    padding: 0.12rem 0.16rem;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.96);
}

#catejs {
    font-size: 0.24rem;
    /* 16px 面包屑文字 */
    color: #7c8ba0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#catejs a {
    text-decoration: none;
    color: #7c8ba0;
    transition: color 0.2s ease;
    font-size: 0.16rem;
}

#catejs a:hover {
    color: #2c7da0;
}

#catejs a:last-of-type {
    color: #2c7da0;
    font-weight: 500;
}

#catejs > a:not(:last-child)::after {
    content: "›";
    margin: 0 0.06rem;
    color: #cbd5e1;
    text-decoration: none;
}

/* 主文章卡片区域 */
.art_text {
    background: #ffffff;
    margin: 0.12rem 0.12rem 0.2rem 0.12rem;
    border-radius: 0.24rem;
    box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.02), 0 0.01rem 0.02rem rgba(0, 0, 0, 0.03);
    overflow: hidden;
    padding: 0.2rem 0.18rem 0.28rem;
}

/* 文章主标题 */
.art_text h1 {
    font-size: 0.30rem;
    /* 30px 主标题增大 */
    font-weight: 700;
    line-height: 1.3;
    color: #0f2b3d;
    margin-bottom: 0.12rem;
    letter-spacing: -0.002rem;
    padding-bottom: 0.06rem;
    border-bottom: 0.02rem solid #f0f4f9;
    display: inline-block;
    width: 100%;
}

/* 来源 & 时间 */
.art_text cite {
    display: block;
    font-size: 0.20rem;
    /* 15px */
    color: #94a3b8;
    font-style: normal;
    margin: 0.08rem 0 0.2rem 0;
    padding-bottom: 0.08rem;
    border-bottom: 0.01rem dashed #eef2f8;
}

/* 文章内容容器 */
.art_con {
    font-size: 0.24rem;
    /* 20px 正文增大 */
    color: #1e2f3e;
    line-height: 1.65;
}

/* 文章段落 */
.art_con p {
    margin-bottom: 0.16rem;
    text-align: justify;
    font-size: 0.24rem;
    /* 20px 正文增大 */
    letter-spacing: 0.002rem;
}

/* 统一图片样式 — 自适应宽度，圆角 */
.art_con img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.16rem auto;
    border-radius: 0.2rem;
    box-shadow: 0 0.08rem 0.2rem rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s;
    background-color: #fafcff;
}

/* 针对内联style="width:530px" 做覆盖，使图片自适应容器宽度 */
.art_con img[style*="width: 530px"] {
    width: 100% !important;
    max-width: 100%;
    height: auto;
}

/* 图片轻微悬浮效果 */
.art_con img:hover {
    transform: scale(1.01);
    box-shadow: 0 0.12rem 0.24rem rgba(0, 0, 0, 0.08);
}


/* 医院名/专家子标题加强 */
.art_con p:not(:first-of-type) {
    margin-top: 0.18rem;
    margin-bottom: 0.06rem;
    font-size: 0.24rem;
    /* 21px 子标题稍大 */
    padding-left: 0.08rem;
}

/* 推荐阅读模块 */
.m4 {
    background: #ffffff;
    margin: 0 0.12rem 0.3rem 0.12rem;
    border-radius: 0.28rem;
    box-shadow: 0 0.06rem 0.18rem rgba(0, 0, 0, 0.03);
    overflow: hidden;
    padding: 0.04rem 0 0.2rem 0;
}

.tit_bg {
    padding: 0.3rem 0.2rem 0.2rem 0.3rem;
    border-bottom: 0.01rem solid #f0f2f6;
}

.withbt a {
    font-size: 0.20rem;
    /* 20px 推荐阅读标题增大 */
    font-weight: 600;
    color: #0f2b3d;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 0.06rem 0.14rem;
    border-radius: 0.4rem;
    display: inline-block;
    letter-spacing: -0.002rem;
    text-decoration: none;
}

.withbt a::before {
    content: "📖 ";
    font-size: 0.18rem;
    font-weight: normal;
}

/* 推荐列表 flex 布局 - 基于750px，两列等宽 */
.jblist {
    padding: 0.12rem 0.16rem 0.08rem 0.16rem;
    margin: 0 !important;
    gap: 0.12rem 0.1rem;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.jblist li {
    width: 100%;
    list-style: none;
    background: #f9fbfe;
    border-radius: 0.18rem;
    transition: all 0.2s ease;
    border: 0.01rem solid #eff3f8;
    overflow: hidden;
    margin-bottom: 0.04rem;
}

.jblist li a {
    display: block;
    padding: 0.14rem 0.12rem;
    text-decoration: none;
    font-size: 0.24rem;
    /* 17px 推荐文章链接增大 */
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.35;
    transition: color 0.2s, background 0.2s;
    word-break: break-word;
}

.jblist li a:before {
    content: "•";
    color: #2c7da0;
    font-weight: bold;
    font-size: 0.18rem;
    margin-right: 0.08rem;
    display: inline-block;
    vertical-align: middle;
}

.jblist li:hover {
    background-color: #ffffff;
    border-color: #dce5f0;
    box-shadow: 0 0.03rem 0.1rem rgba(0, 0, 0, 0.02);
    transform: translateY(-0.01rem);
}

.jblist li:hover a {
    color: #2c7da0;
}

/* 图片组之间间距优化 */
.art_con br + img,
.art_con p + br + img {
    margin-top: 0;
}

.art_con img + img {
    margin-top: 0.08rem;
}

/* 文章结尾留白 */
.art_con:after {
    content: "";
    display: block;
    height: 0.12rem;
}

/* 辅助圆润滚动条 */
::-webkit-scrollbar {
    width: 0.04rem;
    height: 0.04rem;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0.1rem;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 0.1rem;
}

/* 所有图片保持圆角和底色 */
img {
    max-width: 100%;
    vertical-align: middle;
}

/* 段落底部间距微调 */
.art_con p {
    margin-bottom: 0.12rem;
}