/**
 * 内页样式 v1 —— 与首页（home.css v2）统一的设计体系
 * 原则：白底大留白、扁平卡片（1px #e6ecf2 细边框、圆角 8、hover 上浮）、
 *       天空蓝 #3E9BDF 交互色 / #2374B9 标题 / #F5C542 金点缀
 * 本文件在 responsive.css 之后加载，覆盖皮肤 style.css 的内页旧样式；
 * 仅非首页加载（layout 中与 home.css 互补）。
 */

/* ============ 0. 容器与页面底色 ============ */
body { background: #fff; }
.submian .w1200,
.page-head .w1200,
.position .w1200 {
    width: 100%;
    max-width: 1840px;
    margin: 0 auto;
    padding-left: 44px;
    padding-right: 44px;
    box-sizing: border-box;
}

/* ============ 1. 内页页头：浅蓝渐变条（标题 + 面包屑） ============ */
.page-head {
    background: linear-gradient(135deg, #D8ECFB 0%, #C2E1F7 55%, #A9D2F1 100%);
    padding: 34px 0 30px;
}
.page-head .ph-crumb {
    font-size: 13px;
    color: #2A6CA8;
    margin-bottom: 12px;
}
.page-head .ph-crumb a { color: #2A6CA8; text-decoration: none; }
.page-head .ph-crumb a:hover { color: #1F6FAE; text-decoration: underline; }
.page-head .ph-crumb i { font-style: normal; margin: 0 9px; opacity: .55; }
.page-head h1 {
    font-size: 32px;
    line-height: 1.3;
    color: #1F6FAE;
    font-weight: 700;
    margin: 0;
}
.page-head h1 span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #2A6CA8;
    margin-left: 14px;
    vertical-align: 3px;
}
/* 旧面包屑条（zhao 等未改造页兜底）：与页头同底、轻量化 */
.position {
    background: linear-gradient(135deg, #D8ECFB 0%, #C2E1F7 55%, #A9D2F1 100%);
    height: auto;
    padding: 18px 0;
    color: #2A6CA8;
    font-size: 13px;
}
.position a { color: #2A6CA8; }
.position a:hover { color: #1F6FAE; }

/* ============ 2. 内容区骨架：flex 双栏（浮动类失效于 flex） ============ */
.submian { background: #fff; padding: 48px 0 72px; }
.submian .w1200 { display: flex; align-items: flex-start; gap: 28px; }
.submian .subleft,
.submian .subright { float: none !important; }
.submian .subleft { flex: 0 0 320px; width: 320px; }
.submian .subright {
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
}

/* ============ 3. 侧栏：扁平卡片 ============ */
.subleft .lefta {
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}
.subleft .lefta .title {
    background: #F7F9FB;
    border: 0;
    border-bottom: 1px solid #e6ecf2;
    color: #2374B9;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    padding: 20px 24px 16px;
    height: auto;
    text-indent: 0;
}
.subleft .lefta .title span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #9aa9b8;
    margin: 6px 0 0;
}
.subleft .lefta .comt { padding: 8px 0; background: #fff; height: auto; }
.subleft .lefta .comt ul { margin: 0; padding: 0; list-style: none; }
.subleft .lefta .comt ul li { margin: 0; background: none; }
.subleft .lefta .comt ul li a,
.subleft .lefta .comt .bolt-item > a {
    display: block;
    position: relative;
    margin: 0;
    background: none;
    border: 0;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #f1f5f9;
    color: #33475c;
    font-size: 15px;
    line-height: 1.5;
    padding: 14px 22px;
    text-decoration: none;
    transition: all .2s;
}
.subleft .lefta .comt ul li:last-child > a { border-bottom: 0; }
.subleft .lefta .comt ul li a:hover,
.subleft .lefta .comt .bolt-item > a:hover {
    background: #F7F9FB;
    color: #3E9BDF;
}
.subleft .lefta .comt ul li a.on,
.subleft .lefta .comt .bolt-item > a.on {
    background: #F7F9FB;
    border-left-color: #3E9BDF;
    color: #3E9BDF;
    font-weight: 600;
}
/* 二级分类（嵌套在 li 内，悬停或当前项展开） */
.bolt-submenu { display: none; margin: 0; padding: 0 0 8px; list-style: none; background: #F7F9FB; }
.bolt-item:hover > .bolt-submenu,
.bolt-item.on > .bolt-submenu { display: block; }
.subleft .lefta .comt ul li .bolt-submenu li a {
    display: block;
    border-left: 3px solid transparent;
    border-bottom: 0;
    color: #52687e;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 22px 10px 40px;
    text-decoration: none;
    transition: all .2s;
}
.subleft .lefta .comt ul li .bolt-submenu li a:hover { color: #3E9BDF; }
.subleft .lefta .comt ul li .bolt-submenu li a.on { color: #3E9BDF; font-weight: 600; border-left-color: #3E9BDF; }
/* 旧版 hover 展开结构（ul 后跟同级 dl）兜底 */
dl.bolt-submenu { padding: 0; }
dl.bolt-submenu dd { margin: 0; }
.subleft .lefta .comt ul li dl.bolt-submenu dd a {
    display: block;
    color: #52687e;
    font-size: 14px;
    padding: 10px 22px 10px 40px;
}

/* 侧栏联系块 */
.subleft .leftcont {
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 8px;
    padding: 22px 24px;
}
.subleft .leftcont .tel {
    background: none;
    height: auto;
    padding: 0 0 14px;
    margin: 0 0 14px;
    border-bottom: 1px solid #eef2f6;
    text-indent: 0;
}
.subleft .leftcont .tel p {
    font-size: 13px;
    color: #9aa9b8;
    margin: 0 0 4px;
    letter-spacing: 1px;
}
.subleft .leftcont .tel h3 {
    font-size: 21px;
    color: #2374B9;
    font-weight: 700;
    margin: 0;
}
.subleft .leftcont .con {
    background: none;
    color: #52687e;
    font-size: 13px;
    line-height: 30px;
    padding: 0;
    height: auto;
}

/* ============ 4. 列表：扁平卡片网格（同首页产品卡） ============ */
.Piclist { background: none; padding: 0; }
.Piclist ul.list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.Piclist ul.list li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    background: none;
}
.Piclist ul.list li > a {
    display: block;
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color .22s, transform .22s;
}
.Piclist ul.list li > a:hover {
    border-color: #3E9BDF;
    transform: translateY(-3px);
    box-shadow: none;
}
/* 图：正方形 cover，去掉皮肤扫光与放大动效 */
.Piclist ul.list li .img,
.Piclist ul.list li .img.white {
    position: relative;
    float: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0;
    overflow: hidden;
    background: #F7F9FB;
}
.Piclist ul.list li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none;
    transform: none;
}
.Piclist ul.list li .img.white::after,
.Piclist ul.list li a:hover .img img { transform: none; background: none; }
.Piclist ul.list li .img.white:hover::after { display: none; }
/* 标题条：左对齐，去掉蓝底 hover */
.Piclist ul.list li h3 {
    background: #fff;
    border-top: 1px solid #eef2f6;
    color: #2374B9;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    text-align: left;
    padding: 13px 16px;
    height: auto;
    margin: 0;
    white-space: normal;
    transition: color .2s;
}
.Piclist ul.list li a:hover h3 { background: #fff; color: #3E9BDF; }
/* 空提示占满整行 */
.Piclist ul.list li.empty-tip {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: #6b7f92;
    font-size: 15px;
}
/* 新闻卡：横向图文（2 列） */
.Piclist ul.list.newslist { grid-template-columns: repeat(2, 1fr); }
.newslist li > a {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 16px;
}
.newslist li .img,
.newslist li .img.white {
    flex: 0 0 224px;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
}
.newslist li h3 {
    border-top: 0;
    padding: 2px 0 8px;
    font-size: 17px;
}
.newslist li i {
    display: block;
    font-style: normal;
    font-size: 12px;
    color: #9aa9b8;
    padding: 0;
    height: auto;
    line-height: 1.6;
    background: none;
}
.newslist li p {
    font-size: 13px;
    color: #6b7f92;
    line-height: 1.75;
    margin: 6px 0 0;
    padding: 0;
    height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* ============ 5. 文章/详情卡 ============ */
.conBox,
.Aboutpage {
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 8px;
    padding: 30px 34px;
    color: #41586e;
    font-size: 15px;
    line-height: 2;
    min-height: 0;
}
.Aboutpage p { margin: 0 0 10px; }
.Aboutpage a { color: #3E9BDF; }
.Aboutpage h2 {
    font-size: 22px;
    color: #2374B9;
    font-weight: 700;
    margin: 0 0 12px;
    padding: 0;
}
.conBox .ArticleTitle { border: 0; padding: 0; margin: 0; }
.conBox .ArticleTitle h1 {
    font-size: 26px;
    color: #2374B9;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    margin: 0 0 16px;
    padding: 0 0 14px;
    border-bottom: 1px solid #eef2f6;
}
.ArticleMessage {
    border: 0;
    border-bottom: 1px dashed #e6ecf2;
    color: #9aa9b8;
    font-size: 13px;
    padding: 0 0 14px;
    margin: 0;
    line-height: 1.8;
}
.ArticleMessage span { margin-right: 18px; }
.ArticleMessage i { font-style: normal; color: #3E9BDF; }
.ArticleTencont {
    color: #41586e;
    font-size: 15px;
    line-height: 2.1;
    padding: 18px 0 0;
}
.ArticleTencont img { border-radius: 6px; }
/* 上一篇 / 下一篇 */
.reLink {
    background: #F7F9FB;
    border: 0;
    border-radius: 6px;
    margin-top: 26px;
    padding: 14px 20px;
    font-size: 14px;
    color: #52687e;
    line-height: 2;
}
.reLink a { color: #3E9BDF; text-decoration: none; }
.reLink a:hover { color: #2374B9; text-decoration: underline; }
.reLink .prevLink { float: left; text-align: left; max-width: 48%; }
.reLink .nextLink { float: right; text-align: right; max-width: 48%; }

/* ============ 6. 产品详情：图 + 规格表 + 按钮组 ============ */
.detail-top { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
.detail-top .detail-img { flex: 0 0 320px; }
.detail-top .detail-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #F7F9FB;
    border: 1px solid #e6ecf2;
    border-radius: 8px;
}
.detail-top .detail-info { flex: 1 1 300px; min-width: 0; }
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 6px 0 22px;
    font-size: 14px;
    line-height: 1.8;
}
.spec-table th,
.spec-table td {
    border: 1px solid #e6ecf2;
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
}
.spec-table th {
    background: #F7F9FB;
    color: #2374B9;
    font-weight: 600;
    white-space: nowrap;
    width: 120px;
}
.action-btns { margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.action-btns a {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin: 0;
    transition: background .2s, transform .2s;
}
.action-btns a:hover { transform: translateY(-2px); color: #fff; }
.action-btns .btn-cert { background: #25a79a; }
.action-btns .btn-cert:hover { background: #1e8d82; }
.action-btns .btn-enquiry { background: #3E9BDF; }
.action-btns .btn-enquiry:hover { background: #2374B9; }
.action-btns .btn-wa { background: #25D366; }
.action-btns .btn-wa:hover { background: #1fbf5b; }
.article-content { width: 100%; line-height: 2.1; color: #41586e; }

/* ============ 7. 表单体系（留言 / 索取報價） ============ */
.message-form {
    background: #F7F9FB;
    border: 1px solid #e6ecf2;
    border-radius: 8px;
    padding: 26px 28px 28px;
    margin: 26px 0 0;
}
.message-form h3 {
    font-size: 18px;
    color: #2374B9;
    font-weight: 700;
    margin: 0 0 18px;
    padding-left: 12px;
    border-left: 3px solid #3E9BDF;
    line-height: 1.4;
}
.msgform p { margin: 0 0 14px; }
.msgform input[type="text"],
.msgform textarea {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #dbe4ec;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    color: #23405c;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}
.msgform input[type="text"]:focus,
.msgform textarea:focus {
    border-color: #3E9BDF;
    box-shadow: 0 0 0 3px rgba(62, 155, 223, .12);
}
.msgform ::placeholder { color: #a6b5c3; }
.msgform .captcha-line { display: flex; align-items: center; gap: 12px; }
.msgform .captcha-line input { flex: 1 1 auto; width: auto; }
.msgform .captcha-line img {
    flex: 0 0 auto;
    height: 46px;
    border-radius: 4px;
    border: 1px solid #dbe4ec;
    cursor: pointer;
}
.msgform button[type="submit"] {
    display: inline-block;
    background: #3E9BDF;
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 13px 44px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.msgform button[type="submit"]:hover { background: #2374B9; }

/* ============ 8. 分页 ============ */
.pglist {
    background: none;
    text-align: center;
    padding: 34px 0 0;
    font-size: 14px;
    color: #6b7f92;
    border: 0;
}
.pglist a,
.pglist span {
    display: inline-block;
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 4px;
    padding: 8px 16px;
    margin: 0 4px;
    color: #33475c;
    text-decoration: none;
    transition: all .2s;
}
.pglist a:hover {
    border-color: #3E9BDF;
    color: #3E9BDF;
    box-shadow: none;
}
.pglist span { background: #F7F9FB; border-color: #eef2f6; color: #b9c7d4; }
.pglist select {
    border: 1px solid #dbe4ec;
    border-radius: 4px;
    padding: 7px 10px;
    color: #33475c;
    background: #fff;
    outline: none;
}

/* ============ 9. 响应式 ≤1024 ============ */
@media screen and (max-width: 1024px) {
    .submian .w1200,
    .page-head .w1200,
    .position .w1200 { padding-left: 28px; padding-right: 28px; }
    .Piclist ul.list { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .submian .subleft { flex: 0 0 272px; width: 272px; }
}

/* ============ 10. 响应式 ≤768 ============ */
@media screen and (max-width: 768px) {
    .submian { padding: 24px 0 48px; }
    .submian .w1200,
    .page-head .w1200,
    .position .w1200 {
        display: block;
        padding-left: 16px;
        padding-right: 16px;
    }
    .page-head { padding: 22px 0 20px; }
    .page-head h1 { font-size: 23px; }
    .page-head h1 span { display: block; margin: 8px 0 0; }
    .page-head .ph-crumb { margin-bottom: 8px; }

    /* 侧栏折叠到内容上方；分类变横向胶囊 */
    .submian .subleft { float: none; width: auto; margin: 0 0 18px; }
    .subleft .lefta { margin-bottom: 16px; }
    .subleft .lefta .title { padding: 14px 18px 12px; font-size: 17px; }
    .lefta .comt { padding: 10px 12px 12px; }
    .lefta .comt ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        max-height: none;
        overflow: visible;
    }
    .subleft .lefta .comt ul li { margin: 0; }
    .lefta .comt ul li a,
    .lefta .comt .bolt-item > a {
        display: inline-block;
        border: 1px solid #dbe4ec;
        border-left: 1px solid #dbe4ec;
        border-radius: 18px;
        padding: 7px 15px;
        font-size: 13px;
        line-height: 1.4;
    }
    .lefta .comt ul li a.on,
    .lefta .comt .bolt-item > a.on {
        background: #3E9BDF;
        border-color: #3E9BDF;
        color: #fff;
    }
    .bolt-submenu { display: block !important; background: none; padding: 2px 0 0; }
    .bolt-submenu li { display: inline-block; margin: 4px 4px 0 0; }
    .bolt-submenu li a,
    .subleft .lefta .comt ul li dl.bolt-submenu dd a {
        display: inline-block;
        border: 1px dashed #dbe4ec;
        border-left: 1px dashed #dbe4ec;
        border-radius: 16px;
        padding: 5px 12px;
        font-size: 12px;
        color: #52687e;
    }
    .subleft .leftcont { padding: 16px 18px; }
    .subleft .leftcont .tel h3 { font-size: 18px; }

    /* 列表 2 列 */
    .Piclist ul.list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .Piclist ul.list li h3 { font-size: 13px; padding: 10px 12px; }
    .Piclist ul.list li.empty-tip { padding: 36px 0; font-size: 13px; }
    .newslist li > a { gap: 12px; padding: 12px; }
    .newslist li .img,
    .newslist li .img.white { flex: 0 0 108px; }
    .newslist li h3 { font-size: 14px; padding: 0 0 6px; }
    .newslist li p { -webkit-line-clamp: 2; font-size: 12px; }

    /* 详情与表单 */
    .conBox, .Aboutpage { padding: 20px 16px; border-radius: 6px; }
    .ArticleTitle h1 { font-size: 19px; padding-bottom: 10px; }
    .ArticleTencont { font-size: 14px; padding-top: 14px; }
    .reLink { padding: 12px 14px; font-size: 13px; }
    .reLink .prevLink, .reLink .nextLink { float: none; max-width: none; text-align: left; }
    .action-btns a { flex: 1 1 100%; text-align: center; }
    .detail-top { gap: 18px; }
    .detail-top .detail-img { flex: 1 1 100%; }
    .spec-table { font-size: 13px; }
    .message-form { padding: 18px 16px 20px; }
    .msgform .captcha-line img { height: 40px; }
    .pglist { font-size: 12px; }
    .pglist a, .pglist span { padding: 6px 10px; margin: 0 2px; }
}

/* ≤400：列表单列 */
@media screen and (max-width: 400px) {
    .Piclist ul.list { grid-template-columns: 1fr; }
}

/* ============ 11. 关于页富内容 ============ */
.about-rich .ab-row { display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-start; margin: 0 0 6px; }
.about-rich .ab-img { flex: 0 0 340px; }
.about-rich .ab-img img { display: block; width: 100%; border: 1px solid #e6ecf2; border-radius: 8px; }
.about-rich .ab-txt { flex: 1 1 300px; min-width: 0; }
.about-rich .ab-txt h3 { font-size: 19px; color: #2374B9; margin: 4px 0 12px; padding: 0; border: 0; }
.about-rich p { margin: 0 0 10px; }
.about-rich h3.ab-h { font-size: 19px; color: #2374B9; border-left: 3px solid #3E9BDF; padding-left: 12px; line-height: 1.4; margin: 30px 0 16px; }
.about-rich .ab-adv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.about-rich .ab-adv li { background: #F7F9FB; border: 1px solid #e6ecf2; border-radius: 8px; padding: 16px 18px; }
.about-rich .ab-adv li b { display: inline-block; color: #3E9BDF; font-size: 20px; margin-right: 8px; font-family: Arial, sans-serif; }
.about-rich .ab-adv li strong { color: #2374B9; font-size: 15px; }
.about-rich .ab-adv li p { margin: 8px 0 0; font-size: 13px; color: #6b7f92; line-height: 1.75; }
.about-rich .ab-prods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.about-rich .ab-prods img { display: block; width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; border: 1px solid #e6ecf2; background: #F7F9FB; }
.about-rich .ab-prods span { display: block; margin-top: 8px; color: #2374B9; font-size: 14px; font-weight: 600; text-align: center; }
.about-rich .ab-serve { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.about-rich .ab-serve img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; border: 1px solid #e6ecf2; background: #F7F9FB; }
.about-rich .ab-serve span { display: block; margin-top: 8px; color: #33475c; font-size: 14px; font-weight: 600; text-align: center; }

@media screen and (max-width: 768px) {
    .about-rich .ab-row { gap: 16px; }
    .about-rich .ab-img { flex: 1 1 100%; }
    .about-rich h3.ab-h { margin: 22px 0 12px; font-size: 17px; }
    .about-rich .ab-adv { grid-template-columns: 1fr; }
    .about-rich .ab-prods { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .about-rich .ab-serve { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== 供貨實績详情：封面图（图文呈现） ===== */
.case-cover { margin: 18px 0 6px; }
.case-cover img {
    display: block; width: 100%; max-height: 420px;
    object-fit: cover; border-radius: 8px;
    border: 1px solid #eef2f6;
}
@media screen and (max-width: 768px) {
    .case-cover { margin: 14px 0 4px; }
    .case-cover img { max-height: 240px; border-radius: 6px; }
}

/* ===== 新聞中心 v2：头条大卡 + 行式列表 ===== */
.nw-feature, .nw-row {
    display: flex; align-items: stretch;
    background: #fff; border: 1px solid #e6ecf2; border-radius: 8px;
    overflow: hidden; text-decoration: none;
    transition: border-color .22s, box-shadow .22s, transform .22s;
}
.nw-feature { margin-bottom: 20px; }
.nw-feature:hover, .nw-row:hover {
    border-color: #3E9BDF; transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 53, 92, .08);
}
.nw-feature:hover h3, .nw-row:hover h3 { color: #1E5C96; }
.nwf-img { flex: 0 0 46%; }
.nwf-img img { display: block; width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.nwf-txt { flex: 1; padding: 26px 30px; display: flex; flex-direction: column; }
.nwf-txt h3 { font-size: 21px; line-height: 1.45; color: #2374B9; font-weight: 700; margin: 10px 0 12px; }
.nwf-txt p { flex: 1; color: #63788c; font-size: 14px; line-height: 1.9; margin: 0 0 14px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nw-more { color: #3E9BDF; font-size: 14px; font-weight: 600; font-style: normal; }
.nw-more i { font-style: normal; margin-left: 6px; transition: margin .2s; }
.nw-feature:hover .nw-more i { margin-left: 10px; }
.nw-date {
    display: inline-block; color: #93a5b5; font-size: 13px; font-style: normal;
}
.nw-row { margin-bottom: 14px; }
.nwr-img { flex: 0 0 200px; }
.nwr-img img { display: block; width: 100%; height: 140px; object-fit: cover; }
.nwr-txt { flex: 1; padding: 16px 22px; min-width: 0; }
.nwr-txt h3 { font-size: 16px; color: #2374B9; font-weight: 700; margin: 6px 0 8px;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.nwr-txt p { color: #7c8ea0; font-size: 13px; line-height: 1.8; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media screen and (max-width: 768px) {
    .nw-feature { flex-direction: column; }
    .nwf-img { flex: none; }
    .nwf-img img { min-height: 0; height: 200px; }
    .nwf-txt { padding: 18px 16px; }
    .nwf-txt h3 { font-size: 18px; }
    .nwr-img { flex: 0 0 120px; }
    .nwr-img img { height: 90px; }
    .nwr-txt { padding: 12px 14px; }
}
