@charset "utf-8";

/* ==========================================================================
   新闻频道样式 (包含新闻首页、列表页、详情页)
   创建时间: 2026-05-12
========================================================================== */

/* ================== 新闻入口页 (news_index.asp) ================== */
.news-index-wrap {
    margin-bottom: 20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    overflow: hidden;
}

.news-index-wrap h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3266A0;
}

.news-grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.news-grid-container .box1 {
    width: 48.5%;
    margin-bottom: 25px;
}

.news-list-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list-ul li {
    padding: 12px 0;
    border-bottom: 1px dashed #ececec;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.news-list-ul li:last-child {
    border-bottom: none;
}

.news-list-ul li::before {
    content: "•";
    color: #3266A0;
    font-size: 16px;
    margin-right: 8px;
}

.news-list-ul li a {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    font-size: 14px;
}

.news-list-ul li a:hover {
    color: #3266A0;
    padding-left: 5px;
}

.news-list-ul li span {
    color: #999;
    font-size: 13px;
    margin-left: 15px;
    white-space: nowrap;
}

/* ================== 新闻列表页 (news_list.asp) ================== */
.news-list-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    overflow: hidden;
}

.news-list-wrap h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3266A0;
}

.news-cat-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px 0;
}

.news-cat-nav a {
    padding: 6px 16px;
    border-radius: 4px;
    background: #f0f5fa;
    color: #3266A0;
    font-size: 15px;
    border: 1px solid #d4e3f3;
}

.news-cat-nav a.active {
    background: #3266A0;
    color: #fff;
    border-color: #3266A0;
}

.news-cat-nav a:hover {
    background: #3266A0;
    color: #fff;
    border-color: #3266A0;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #ececec;
    transition: background-color 0.3s;
}

.news-item:hover {
    background-color: #fcfcfc;
}

.news-item .news-pic {
    width: 160px;
    height: 110px;
    margin-right: 20px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
    padding: 2px;
}

.news-item .news-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item .news-info {
    flex: 1;
    overflow: hidden;
}

.news-item .news-info h2 {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item .news-info h2 a {
    color: #333;
}

.news-item .news-info h2 a:hover {
    color: #3266A0;
}

.news-item .news-info .meta {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
}

.news-item .news-info .meta span {
    margin-right: 20px;
    display: inline-block;
}

/* 分页导航 - 对齐www站样式 2026-05-12 */
.news-page {
    text-align: center;
    padding: 30px 0 10px;
    font-size: 0;
}

.news-page a,
.news-page span,
.news-page font {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 3px;
    border: 1px solid #ddd;
    color: #555;
    font-size: 14px;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    vertical-align: middle;
    transition: all 0.25s ease;
}

.news-page a:hover {
    border-color: #3266A0;
    color: #3266A0;
    background: #f0f5fa;
}

.news-page font {
    background: #3266A0;
    color: #fff;
    border-color: #3266A0;
    font-weight: bold;
    font-style: normal;
}

/* ================== 新闻详情页 (news_cont.asp) ================== */
.news-detail-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    overflow: hidden;
}

.news-detail-wrap h1 {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
    font-weight: normal;
    text-align: center;
}

.news-meta {
    color: #999;
    font-size: 13px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    margin-bottom: 25px;
    text-align: center;
}

.news-meta span {
    margin: 0 10px;
    display: inline-block;
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news-body img {
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
}

.news-body p {
    margin-bottom: 15px;
    text-indent: 2em;
}

.news-source {
    font-size: 13px;
    color: #999;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    text-align: right;
}

.news-nav2 {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    line-height: 2;
    display: flex;
    justify-content: space-between;
}

.news-nav2 a {
    color: #3266A0;
}

.news-nav2 a:hover {
    text-decoration: underline;
}

.news-related {
    margin-top: 30px;
}

.news-related h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3266A0;
}

.news-related ul {
    list-style: none;
    padding: 0;
}

.news-related li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    transition: background-color 0.3s;
}

.news-related li:hover {
    background-color: #fcfcfc;
    padding-left: 5px;
}

.news-related li::before {
    content: "•";
    color: #3266A0;
    font-size: 16px;
    margin-right: 8px;
}

.news-related li a {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
}

.news-related li a:hover {
    color: #3266A0;
}

.news-related li span {
    color: #999;
    font-size: 13px;
    margin-left: 15px;
    white-space: nowrap;
}

.news-reco {
    margin-top: 30px;
}

.news-reco h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6600;
}

.news-reco ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-reco li {
    width: 48%;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-reco li::before {
    content: "•";
    color: #ff6600;
    font-size: 16px;
    margin-right: 8px;
}

.news-reco li a {
    color: #333;
}

.news-reco li a:hover {
    color: #ff6600;
}

/* ================== 移动端响应式适配 2026-05-12 ================== */
/* 百度白皮书5.0 §4.2.3 要求移动端可正常展现 */
@media (max-width: 768px) {

    /* --- 修复: 取消对头部(nav-inner等)和尾部的强制修改，防止小导航错乱 --- */
    /* 仅保留对内容区域的自适应控制 */
    #content {
        width: 100% !important;
        max-width: 100vw;
        box-sizing: border-box;
        padding-left: 12px;
        padding-right: 12px;
        margin-bottom: 15px !important;
    }

    /* --- 新闻首页 --- */
    .news-grid-container {
        flex-direction: column;
    }

    .news-grid-container .box1 {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .news-grid-container .box1 .t {
        padding: 0 12px;
    }

    .news-box-content {
        padding: 8px 12px !important;
    }

    .news-list-ul li {
        padding: 10px 0;
        max-width: 100%;
        overflow: hidden;
    }

    .news-list-ul li a {
        font-size: 13px;
        min-width: 0;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .news-list-ul li span {
        font-size: 11px;
        margin-left: 6px;
        white-space: nowrap;
        max-width: 78px;
        overflow: hidden;
        text-overflow: clip;
        flex-shrink: 0;
    }

    /* --- 新闻列表页 --- */
    .news-list-wrap {
        padding: 12px 15px;
        border-radius: 0;
    }

    .news-list-wrap h1 {
        font-size: 20px;
    }

    .news-cat-nav {
        flex-wrap: wrap;
        gap: 8px;
    }

    .news-cat-nav a {
        padding: 5px 12px;
        font-size: 13px;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .news-item .news-pic {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .news-item .news-pic img {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: cover;
    }

    .news-item .news-info {
        width: 100%;
    }

    .news-item .news-info h2 {
        font-size: 16px;
        white-space: normal;
    }

    .news-item .news-info .meta {
        margin-top: 8px;
    }

    .news-item .news-info .meta span {
        margin-right: 10px;
        font-size: 12px;
    }

    .news-page a,
    .news-page span,
    .news-page font {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0 2px;
    }

    /* --- 新闻详情页 --- */
    .news-detail-wrap {
        padding: 15px;
        border-radius: 0;
    }

    .news-detail-wrap h1 {
        font-size: 20px;
        line-height: 1.4;
        text-align: left;
    }

    .news-meta {
        font-size: 12px;
        text-align: left;
    }

    .news-meta span {
        margin: 0 8px 0 0;
    }

    .news-body {
        font-size: 15px;
        line-height: 1.8;
    }

    .news-body p {
        text-indent: 0;
    }

    .news-body img {
        margin: 8px auto;
    }

    .news-nav2 {
        flex-direction: column;
        font-size: 13px;
        line-height: 2.2;
    }

    .news-nav2 div {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .news-related h2,
    .news-reco h2 {
        font-size: 16px;
    }

    .news-related li {
        padding: 8px 0;
    }

    .news-related li a {
        font-size: 14px;
    }

    .news-reco ul {
        flex-direction: column;
    }

    .news-reco li {
        width: 100%;
    }

    /* 移动端查看器提示文字缩小 */
    .img-viewer-tip {
        font-size: 12px;
        bottom: 12px;
    }
}

/* ================== 图片点击放大查看器 2026-05-13 ================== */
/* 百度白皮书5.0 §4.3.3.2: 图片应支持点击调起查看大图 */
.news-body img {
    cursor: zoom-in;
}

.img-viewer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .88);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity .25s ease;
}

.img-viewer-overlay.active {
    display: flex;
    opacity: 1;
}

.img-viewer-overlay img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
    transform: scale(.92);
    transition: transform .25s ease;
    cursor: default;
}

.img-viewer-overlay.active img {
    transform: scale(1);
}

.img-viewer-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 100000;
    opacity: .7;
    transition: opacity .2s;
}

.img-viewer-close:hover {
    opacity: 1;
}

.img-viewer-close::before,
.img-viewer-close::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.img-viewer-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.img-viewer-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.img-viewer-tip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    white-space: nowrap;
}


/* 2026-05-17 移动端新闻列表修复：日期列溢出、文章图片溢出 */
@media (max-width: 767px) {

    /* 新闻列表：标题+日期同行在小屏下改为日期单独一行或隐藏 */
    .news-list li,
    .list-item {
        flex-wrap: wrap !important;
    }

    .news-list .date,
    .list-item .date,
    .list-date {
        flex-shrink: 0;
        font-size: 11px;
    }

    /* 新闻列表行：标题最大宽度 */
    .news-list .title,
    .list-item .title,
    .list-title {
        flex: 1;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 文章正文图片 */
    .news-cont img,
    .article-content img,
    #article img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* 文章正文表格 */
    .news-cont table,
    .article-content table,
    #article table {
        max-width: 100% !important;
        overflow-x: auto;
        display: block;
    }

    /* 资讯首页 */
    .news-index .sidebar {
        display: none;
    }
}

/* ==========================================================================
   新增：热门园区图文网格卡片布局与高端交互微动效 - 2026-05-22 [新增] - By 99cfw.com
   ========================================================================== */

/* 热门园区卡片整体外围容器：设定圆角阴影和与主风格一致的间距 */
.news-hot-yuanqu-wrap {
    padding: 15px !important;
}

/* 卡片排布 Flex 容器：通过 gap 间隙实现精准自适应，配合子元素的 width: 18.8% 实现完美的一行 5 个 */
.news-hot-yuanqu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 1.5%;
}

/* 单个园区卡片：包含卡片圆角裁切、精致边框和用于位移滑动的过渡动效 */
.news-hot-yuanqu-list li {
    width: 18.8%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #f0f0f0;
}

/* 鼠标悬停高级微特效：卡片轻微平滑上浮 4px，边框转为品牌蓝，同时呈现发散柔和投影，极具质感 */
.news-hot-yuanqu-list li:hover {
    transform: translateY(-4px);
    border-color: #3266A0;
    box-shadow: 0 8px 20px rgba(50, 102, 160, 0.1);
}

/* 园区图片容器：通过 aspect-ratio 设定 260:160（约1.625:1）黄金图文高宽比，并隐藏溢出以供放大动效 */
.news-hot-yuanqu-list li .yq-pic {
    width: 100%;
    aspect-ratio: 260 / 160;
    overflow: hidden;
    position: relative;
    background: #fafafa;
}

/* 园区缩略图：增加过渡动效，使鼠标进入卡片时图片能够优雅缓慢放大 6% */
.news-hot-yuanqu-list li .yq-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* 触发悬停图片缓慢放大动效 */
.news-hot-yuanqu-list li:hover .yq-pic img {
    transform: scale(1.06);
}

/* 园区标题容器：让标题在卡片底部垂直居中，具备内边距 */
.news-hot-yuanqu-list li .yq-title {
    padding: 10px 8px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 园区链接标题：限定最大两行溢出截断展示（-webkit-line-clamp），字号设定 14px，平滑过渡颜色 */
.news-hot-yuanqu-list li .yq-title a {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: normal;
    transition: color 0.3s;
}

/* 鼠标悬停链接标题高亮 */
.news-hot-yuanqu-list li .yq-title a:hover {
    color: #3266A0;
    text-decoration: none;
}

/* 移动端响应式布局自适应 (屏幕宽度 <= 768px)：自动切换为一行 2 个，保障小屏下的可读性 */
@media (max-width: 768px) {
    .news-hot-yuanqu-wrap {
        padding: 10px 12px !important;
    }

    .news-hot-yuanqu-list {
        gap: 12px 3%;
    }

    .news-hot-yuanqu-list li {
        width: 48.5%;
    }

    .news-hot-yuanqu-list li .yq-title {
        padding: 8px 6px;
    }

    .news-hot-yuanqu-list li .yq-title a {
        font-size: 12px;
    }

    /* 热门园区大盒子外围，移动端精细微调上下间距 (By 99cfw.com 2026-05-22) */
    .news-hot-yuanqu-box {
        margin-top: -10px !important;
        margin-bottom: 15px !important;
    }
}

/* ==========================================================================
   抽离的通用基础样式以实现全表现彻底解耦 (By 99cfw.com 2026-05-22)
   ========================================================================== */

/* 新闻面包屑导航 */
.news-breadcrumb {
    font-size: 13px;
    color: #999;
    padding: 10px 0;
}
.news-breadcrumb a {
    color: #333;
}
.news-breadcrumb a:hover {
    color: #3266A0;
    text-decoration: underline;
}

/* 新闻首页标题 */
.news-index-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
}

/* 新闻分类板块内层衬垫容器 */
.news-box-content {
    padding: 10px 20px;
}

/* 新闻无数据块提示 */
.news-no-data {
    color: #999;
    text-align: center;
    list-style: none;
    padding: 15px 0;
}

/* 热门园区大盒子外围，PC端精细微调上下间距 */
.news-hot-yuanqu-box {
    margin-top: -20px !important;
    margin-bottom: 25px !important;
}

/* ==========================================================================
   新增：新闻详情页推荐房源图文卡片式布局样式 (.infoTZ) - 2026-05-22 [新增] - By 99cfw.com
   ========================================================================== */

/* 推荐房源整体容器 */
.news-reco.infoTZ {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
}

/* 推荐房源标题，重设为与房源推荐一致的高端品牌蓝下划线 */
.news-reco.infoTZ h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3266A0;
}

/* Flex 卡片容器，去除原本的列表默认样式 */
.news-reco.infoTZ ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* 单个房源卡片：一行5个，精准计算宽度占比为 18.8%，带有精致卡片投影和过渡效果 */
.news-reco.infoTZ ul li {
    width: 18.8% !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0;
    text-align: left;
    white-space: normal;
}

/* 悬停微动画特效：卡片平滑平移上浮 5px，边框呈品牌蓝，展示质感阴影 */
.news-reco.infoTZ ul li:hover {
    transform: translateY(-5px);
    border-color: #3266A0;
    box-shadow: 0 12px 24px rgba(50, 102, 160, 0.08);
}

/* 原本的 news-reco li::before 伪元素去除，以免多出橙色小圆点 */
.news-reco.infoTZ ul li::before {
    display: none !important;
    content: none !important;
}

/* 房源卡片链接块 */
.news-reco.infoTZ ul li a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.news-reco.infoTZ ul li a:hover {
    text-decoration: none;
}

/* 卡片图片容器 */
.news-reco.infoTZ ul li .titlepic {
    width: 100%;
    height: 173px;
    overflow: hidden;
    background: #fafafa;
}

.news-reco.infoTZ ul li .titlepic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
    transition: transform 0.4s ease;
}

/* 悬停时卡片图片缓慢放大 6% */
.news-reco.infoTZ ul li:hover .titlepic img {
    transform: scale(1.06);
}

/* 区域与类型及面积信息条 */
.news-reco.infoTZ ul li .team {
    padding: 12px 15px 6px;
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: normal;
}

.news-reco.infoTZ ul li .team span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 5px;
    flex: 1;
}

.news-reco.infoTZ ul li .team span:last-child {
    white-space: nowrap;
    flex-shrink: 0;
}

/* 房源标题：限制最大展示两行，超出省略，字号 15px */
.news-reco.infoTZ ul li .title {
    padding: 0 15px 15px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    margin: 0;
    box-sizing: content-box;
    transition: color 0.2s;
}

.news-reco.infoTZ ul li:hover .title {
    color: #3266A0;
}

/* ========================================
   移动端响应式适配 (屏幕宽度 <= 768px)
   ======================================== */
@media screen and (max-width: 768px) {
    .news-reco.infoTZ {
        margin-top: 25px !important;
        margin-bottom: 15px !important;
    }
    
    /* 2026-06-06 修复：移动端下推荐房源图片列表一行显示一个 - By 99cfw.com */
    .news-reco.infoTZ ul {
        gap: 15px 0;
        justify-content: flex-start !important;
    }
    
    .news-reco.infoTZ ul li {
        width: 100% !important;
        margin-bottom: 15px !important;
        border-radius: 6px;
    }
    
    .news-reco.infoTZ ul li .titlepic {
        height: 180px;
    }
    
    .news-reco.infoTZ ul li .team {
        padding: 8px 10px 4px;
        font-size: 11px;
    }
    
    .news-reco.infoTZ ul li .title {
        height: 36px;
        font-size: 13px;
        padding: 0 10px 10px;
        -webkit-line-clamp: 2;
    }
}

/* ==========================================================================
   新增：新闻首页聚焦图文卡片容器 - 2026-06-08 - By 99cfw.com
   ========================================================================== */
.news-featured-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5px;
}
.news-featured-card {
    width: 48.5%;
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #f0f0f0;
    height: 150px; /* 2026-06-08 修改：由 140px 调大为 150px 以容纳 3 行导读 - By 99cfw.com */
    margin-bottom: 20px;
}
.news-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.news-featured-card .img-box {
    width: 210px; /* 2026-06-08 修改：图片宽由 200px 调大为 210px - By 99cfw.com */
    height: 150px; /* 2026-06-08 修改：图片高由 140px 调大为 150px - By 99cfw.com */
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: #fafafa;
}
.news-featured-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-featured-card:hover .img-box img {
    transform: scale(1.06);
}
.news-featured-card .info-box {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
}
.news-featured-card .info-box .title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}
.news-featured-card:hover .info-box .title {
    color: #3266A0;
}
.news-featured-card .info-box .desc {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 0 0 6px 0;
    text-indent: 2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 2026-06-08 修改：由 2 行调整为最多 3 行 - By 99cfw.com */
    -webkit-box-orient: vertical;
    max-height: 54px; /* 2026-06-08 修改：最大高度调整为 3 行 (12px * 1.5 * 3 = 54px)，移去 flex:1，防止底行裁切 - By 99cfw.com */
}
.news-featured-card .info-box .date-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 11px;
    color: #999;
}

/* 聚焦图文移动端及平板响应式适配 */
@media screen and (max-width: 768px) {
    .news-featured-wrap {
        flex-direction: column;
        margin-bottom: 10px;
    }
    .news-featured-card {
        width: 100% !important;
        flex-direction: column;
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px;
        border: 1px solid #f0f0f0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        background: #fff;
    }
    .news-featured-card .img-box {
        width: 100%;
        height: 160px;
    }
    .news-featured-card .info-box {
        padding: 15px;
        gap: 8px;
    }
    .news-featured-card .info-box .title {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    .news-featured-card .info-box .desc {
        -webkit-line-clamp: 3;
        margin-bottom: 4px;
    }
    .news-featured-card .info-box .date-row {
        justify-content: flex-end;
    }
}