*,*::before,*::after{box-sizing:border-box}
/* ============ 头条大标题区 ============ */
.top-headline-wrap{
    background:#fff;
    padding:25px 10px 18px;
    text-align:center;
    border-bottom:1px solid #f4f4f4;
}
.top-headline{
    font-size:42px;
    font-weight:700;
    color:#1b448f;
    line-height:1.25;
    letter-spacing:1px;
    margin-bottom:14px;
    word-break:break-all;
}
.top-headline a{color:#1b448f}
.top-headline a:hover{color:#960e15}
.top-sub-headlines{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px 26px;
    font-size:16px;
    color:#2d2d2d;
    line-height:1.8;
}
.top-sub-headlines a{color:#2d2d2d}
.top-sub-headlines a:hover{color:#960e15}
.top-sub-headlines .sep{color:#ccc}

/* ============ 主体左右分栏 ============ */
.main-row{
    display:flex;
    gap:12px;
    padding:10px 0;
    align-items:stretch;
}
.main-row .left-col{width:800px;flex-shrink:0}
.main-row .right-col{
    width:388px;flex-shrink:0;
    display:flex;flex-direction:column;
}
/* ============ 焦点轮播大图 ============ */
.focus-slider{
    position:relative;
    width:100%;
    height:420px;
    border-radius:4px;
    overflow:hidden;
    background:#000;
}
.focus-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .5s ease-in-out;
}
.focus-slide.active{opacity:1;z-index:2}
.focus-slide a{display:block;width:100%;height:100%;position:relative}
.focus-slide img{
    width:100%;height:100%;object-fit:cover;
    display:block;
}
.focus-slide .slide-mask{
    position:absolute;left:0;right:0;bottom:0;
    padding:40px 20px 18px;
    background:linear-gradient(transparent, rgba(0,0,0,.8));
    color:#fff;
}
.focus-slide .slide-title{
    font-size:22px;font-weight:700;line-height:1.35;
    margin-bottom:5px;
    text-shadow:0 1px 3px rgba(0,0,0,.5);
}
.focus-slide .slide-summary{
    font-size:13px;color:rgba(255,255,255,.85);line-height:1.5;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.focus-nav{
    position:absolute;bottom:18px;right:24px;z-index:5;
    display:flex;gap:8px;
}
.focus-nav span{
    width:12px;height:12px;border-radius:50%;
    background:rgba(255,255,255,.5);cursor:pointer;
    transition:background .2s;
}
.focus-nav span.active{background:#b8121b}
.focus-arrow{
    position:absolute;top:50%;transform:translateY(-50%);
    width:42px;height:60px;background:rgba(0,0,0,.35);
    color:#fff;font-size:28px;line-height:60px;text-align:center;
    cursor:pointer;z-index:5;user-select:none;
    opacity:0;transition:opacity .25s;
}
.focus-slider:hover .focus-arrow{opacity:1}
.focus-arrow.prev{left:0;border-radius:0 6px 6px 0}
.focus-arrow.next{right:0;border-radius:6px 0 0 6px}

/* ============ 即时新闻（右栏） ============ */
.flash-box{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:2px;
    padding:12px 14px 10px;
    height:420px;
    display:flex;flex-direction:column;
}
.section-title{
    height:34px;
    display:flex;align-items:center;
    border-bottom:1px solid #b8121b;
    margin-bottom:6px;
}
.section-title .title-text{
    font-size:18px;font-weight:700;color:#b8121b;
    line-height:1;
    border-left:3px solid #b8121b;
    padding-left:8px;
}
.section-title .title-text a{color:#b8121b}
.section-title .title-text a:hover{color:#960e15}
.section-title .title-more{
    margin-left:auto;
    font-size:12px;color:#888;font-weight:normal;
}
.section-title .title-more:hover{color:#b8121b}

.flash-list{flex:1;overflow:hidden}
.flash-list .flash-item{
    display:flex;align-items:center;
    line-height:32px;
    border-bottom:1px dashed #f0f0f0;
    padding:0 2px;
}
.flash-list .flash-item:last-child{border-bottom:none}
.flash-list .flash-dot{
    width:5px;height:5px;background:#b8121b;
    margin-right:8px;flex-shrink:0;border-radius:50%;
}
.flash-list .flash-title{
    flex:1;font-size:14px;color:#2d2d2d;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.flash-list .flash-title:hover{color:#960e15}
.flash-list .flash-time{
    font-size:12px;color:#a4a4a4;
    margin-left:8px;flex-shrink:0;
}

/* ============ 精品视频稿件区 ============ */
.video-section{
    background:#fff;
    padding:0 0 12px;
    margin-top:12px;
}
.video-row{
    display:flex;gap:10px;
}
.video-card{
    flex:1;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:2px;
    overflow:hidden;
    transition:box-shadow .15s, transform .15s;
}
.video-card:hover{
    box-shadow:0 2px 8px rgba(0,0,0,.06);
    transform:translateY(-1px);
}
.video-thumb{
    position:relative;
    width:100%;
    height:130px;
    background:#000;
    overflow:hidden;
}
.video-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.video-thumb .play-icon{
    position:absolute;left:50%;top:50%;
    transform:translate(-50%,-50%);
    width:40px;height:40px;border-radius:50%;
    background:rgba(184,18,27,.85);
    color:#fff;font-size:16px;
    display:flex;align-items:center;justify-content:center;
    text-shadow:0 1px 2px rgba(0,0,0,.3);
}
.video-thumb .duration{
    position:absolute;right:6px;bottom:6px;
    background:rgba(0,0,0,.6);color:#fff;
    font-size:11px;padding:1px 5px;border-radius:2px;
}
.video-info{padding:8px 10px 10px}
.video-info .v-title{
    font-size:14px;color:#2d2d2d;font-weight:600;
    line-height:1.4;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.video-info .v-title:hover{color:#960e15}
.video-info .v-meta{
    font-size:12px;color:#a4a4a4;margin-top:4px;
}

/* ============ 要闻区（左右反转） ============ */
.yaowen-section{
    background:#fff;
    margin-top:12px;
    border-top:2px solid #b8121b;
}
.yaowen-row{
    display:flex;gap:12px;padding:6px 0 12px;
}
.yaowen-feature{
    width:390px;flex-shrink:0;
    border:1px solid #e8e8e8;
    border-radius:2px;
    padding:12px;
    background:#fff;
}
.yaowen-feature .feat-item{
    display:flex;gap:12px;
    padding:10px 0;
    border-bottom:1px dashed #f0f0f0;
}
.yaowen-feature .feat-item:last-child{border-bottom:none}
.yaowen-feature .feat-img{
    width:200px;height:130px;flex-shrink:0;
    border-radius:2px;overflow:hidden;
    background:#f6f6f6;
}
.yaowen-feature .feat-img img{width:100%;height:100%;object-fit:cover;display:block}
.yaowen-feature .feat-body{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}
.yaowen-feature .feat-title{
    font-size:16px;font-weight:700;color:#2d2d2d;line-height:1.35;
    margin-bottom:6px;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.yaowen-feature .feat-title:hover{color:#960e15}
.yaowen-feature .feat-summary{
    font-size:12px;color:#888;line-height:1.5;
    display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.yaowen-feature .feat-meta{
    font-size:12px;color:#a4a4a4;margin-top:6px;
}

.yaowen-list-box{
    flex:1;
    border:1px solid #ececec;
    border-radius:10px;
    padding:14px 18px;
    background:#fff;
}
.yaowen-list-box .yaowen-list-title{
    font-size:18px;font-weight:700;color:#b8121b;
    padding-bottom:8px;margin-bottom:6px;
    border-bottom:2px solid #b8121b;
}
.yaowen-list-box .yaowen-item{
    display:flex;align-items:center;
    line-height:40px;
    border-bottom:1px dashed #f4f4f4;
    padding-left:15px;position:relative;
}
.yaowen-list-box .yaowen-item:last-child{border-bottom:none}
.yaowen-list-box .yaowen-item::before{
    content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
    width:4px;height:4px;background:#b8121b;border-radius:50%;
}
.yaowen-list-box .yaowen-title{
    flex:1;font-size:16px;color:#2d2d2d;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.yaowen-list-box .yaowen-title:hover{color:#960e15}
.yaowen-list-box .yaowen-time{
    font-size:13px;color:#a4a4a4;margin-left:12px;
}

/* ============ 英文新闻专区 ============ */
.en-news-section{
    background:#fff;
    margin-top:18px;
    padding:0 18px 16px;
    border:1px solid #ececec;
    border-radius:6px;
}
.en-news-row{
    display:flex;gap:25px;
}
.en-feature{
    width:380px;flex-shrink:0;
}
.en-feature-img{
    display:block;width:100%;height:230px;
    border-radius:5px;overflow:hidden;
    background:#f6f6f6;margin-bottom:10px;
}
.en-feature-img img{width:100%;height:100%;object-fit:cover;display:block}
.en-feature-title{
    display:block;font-size:20px;font-weight:700;color:#1b448f;line-height:1.4;
    margin-bottom:8px;
}
.en-feature-title:hover{color:#960e15}
.en-feature-desc{font-size:13px;color:#8d8d8d;line-height:1.7}
.en-list{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}
.en-item{
    display:flex;align-items:center;gap:8px;
    padding:8px 0;
    border-bottom:1px dashed #f0f0f0;
}
.en-item:last-child{border-bottom:none}
.en-dot{
    width:4px;height:4px;background:#1b448f;border-radius:50%;flex-shrink:0;
}
.en-title{
    flex:1;font-size:15px;color:#2d2d2d;line-height:1.5;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.en-title:hover{color:#960e15}
.en-time{font-size:12px;color:#a4a4a4;flex-shrink:0}

/* ============ 图片新闻 / 视觉新闻 ============ */
.photo-news-section{
    background:#fff;
    margin-top:18px;
    padding:0 18px 16px;
    border:1px solid #ececec;
    border-radius:6px;
}
.photo-row{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:14px;
}
.photo-card{display:flex;flex-direction:column}
.photo-img{
    display:block;width:100%;height:130px;
    border-radius:5px;overflow:hidden;
    background:#f6f6f6;margin-bottom:8px;
}
.photo-img img{width:100%;height:100%;object-fit:cover;display:block}
.photo-title{
    font-size:14px;color:#2d2d2d;line-height:1.5;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.photo-title:hover{color:#960e15}

/* ============ 分类区块 ============ */
.cat-section{
    background:#fff;
    margin-top:18px;
    padding:0 0 8px;
}
.cat-section .section-title{margin-bottom:0}
.cat-row{
    display:flex;gap:15px;
    padding:14px 0 18px;
}
.cat-left-group{
    flex:1;
    min-width:0;
    display:flex;gap:0;
}
.lanmu-left{
    width:340px;flex-shrink:0;
    background:#f6f6f6;
    border-radius:8px;
    padding:12px;
    margin-right:12px;
    box-sizing:border-box;
}
.lanmu-left .ll-feature{
    display:flex;gap:10px;
}
.lanmu-left .ll-img{
    width:150px;height:110px;flex-shrink:0;
    border-radius:5px;overflow:hidden;
    background:#e5e5e5;
}
.lanmu-left .ll-img img{width:100%;height:100%;object-fit:cover;display:block}
.lanmu-left .ll-body{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}
.lanmu-left .ll-title{
    font-size:18px;font-weight:700;color:#2d2d2d;line-height:1.4;
    margin-bottom:8px;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.lanmu-left .ll-title:hover{color:#960e15}
.lanmu-left .ll-summary{
    font-size:13px;color:#8d8d8d;line-height:1.6;
    display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.lanmu-left .ll-meta{
    font-size:12px;color:#a4a4a4;margin-top:8px;
}
.lanmu-left .ll-list{
    margin-top:12px;
    border-top:1px dashed #e5e5e5;
    padding-top:8px;
}
.lanmu-left .ll-list-item{
    line-height:24px;font-size:14px;color:#2d2d2d;
    padding:4px 0 4px 12px;position:relative;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.lanmu-left .ll-list-item::before{
    content:"";position:absolute;left:0;top:12px;
    width:4px;height:4px;background:#999;border-radius:50%;
}
.lanmu-left .ll-list-item:hover{color:#960e15}

.lanmu-middle{
    flex:1;
    min-width:0;
    padding:0 4px 0 15px;
}
.lanmu-middle .lm-item{
    display:flex;align-items:flex-start;
    padding:10px 0 10px 15px;
    border-bottom:1px dashed #f4f4f4;
    position:relative;
}
.lanmu-middle .lm-item:last-child{border-bottom:none}
.lanmu-middle .lm-item::before{
    content:"";position:absolute;left:0;top:18px;
    width:5px;height:5px;background:#b8121b;border-radius:50%;
}
.lanmu-middle .lm-title{
    flex:1;font-size:15px;color:#2d2d2d;line-height:1.6;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.lanmu-middle .lm-title:hover{color:#960e15}
.lanmu-middle .lm-time{
    font-size:12px;color:#a4a4a4;margin-left:10px;flex-shrink:0;margin-top:2px;
}

.lanmu-right{
    width:280px;
    flex-shrink:0;
}
.lanmu-right .lr-item{
    display:flex;flex-direction:column;
    margin-bottom:10px;
}
.lanmu-right .lr-item:last-child{margin-bottom:0}
.lanmu-right .lr-img{
    width:100%;
    height:95px;
    border-radius:5px;overflow:hidden;
    background:#f6f6f6;
    position:relative;
}
.lanmu-right .lr-img img{width:100%;height:100%;object-fit:cover;display:block}
.lanmu-right .lr-img .lr-cat{
    position:absolute;left:6px;top:6px;
    background:rgba(205,19,28,.85);color:#fff;
    font-size:11px;padding:2px 6px;border-radius:3px;
}
.lanmu-right .lr-title{
    font-size:13px;color:#2d2d2d;line-height:1.5;
    margin-top:6px;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.lanmu-right .lr-title:hover{color:#960e15}
.lanmu-right .lr-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:10px 8px;
}

/* ============ 侧边栏 ============ */
.sidebar-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:6px;
    padding:14px 16px 16px;
    margin-bottom:15px;
}
.sidebar-title{
    font-size:18px;font-weight:700;color:#b8121b;
    padding-bottom:8px;margin-bottom:10px;
    border-bottom:2px solid #b8121b;
    display:flex;align-items:center;justify-content:space-between;
}
.sidebar-title h3{font-size:18px;font-weight:700;color:#b8121b;margin:0;padding:0;line-height:1}
.sidebar-title .more-link{font-size:12px;color:#8d8d8d;font-weight:normal}
.sidebar-title .more-link:hover{color:#960e15}

.rank-list{display:flex;flex-direction:column}
.rank-item{
    display:flex;align-items:center;gap:10px;
    padding:8px 0;
    border-bottom:1px dashed #f4f4f4;
}
.rank-item:last-child{border-bottom:none}
.rank-num{
    width:22px;height:22px;flex-shrink:0;
    display:flex;align-items:center;justify-content:center;
    font-size:12px;color:#fff;font-weight:700;
    background:#bdbdbd;border-radius:3px;
}
.rank-num.top{background:#b8121b}
.rank-text{
    flex:1;font-size:14px;color:#2d2d2d;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
    line-height:1.5;
}
.rank-text:hover{color:#960e15}
.rank-views{
    font-size:12px;color:#a4a4a4;flex-shrink:0;
}

.tag-cloud{display:flex;flex-wrap:wrap;gap:8px}
.tag-item{
    padding:5px 12px;background:#f6f6f6;color:#666;
    font-size:13px;border-radius:14px;
    transition:all .2s;
}
.tag-item:hover{background:#b8121b;color:#fff}

.side-ad{
    background:linear-gradient(135deg, #1b448f 0%, #2d5fa8 100%);
    color:#fff;padding:18px;border-radius:6px;
    margin-bottom:15px;text-align:center;
}
.side-ad .ad-title{font-size:16px;font-weight:700;margin-bottom:6px}
.side-ad .ad-desc{font-size:13px;opacity:.9;line-height:1.6}

.right-col .sidebar-about{margin-top:auto !important;flex-shrink:0}
.right-col .filler-container{flex:1 1 auto;min-height:0;display:flex;flex-direction:column;gap:15px}
.right-col .filler-container > .sidebar-box{flex-shrink:0;margin-bottom:0}

.side-thumb-list{display:flex;flex-direction:column;gap:12px}
.side-thumb-item{display:flex;gap:10px;align-items:flex-start}
.side-thumb{width:120px;height:80px;flex-shrink:0;border-radius:4px;overflow:hidden;background:#f6f6f6;display:block}
.side-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.side-thumb-info{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}
.side-thumb-title{
    font-size:14px;color:#2d2d2d;line-height:1.5;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.side-thumb-title:hover{color:#960e15}
.side-thumb-time{font-size:12px;color:#a4a4a4;margin-top:4px}

.side-text-list{display:flex;flex-direction:column}
.side-text-item{
    display:flex;align-items:flex-start;gap:8px;
    padding:7px 0;
    border-bottom:1px dashed #f4f4f4;
}
.side-text-item:last-child{border-bottom:none}
.side-text-dot{
    width:4px;height:4px;background:#b8121b;border-radius:50%;
    flex-shrink:0;margin-top:9px;
}
.side-text-title{
    flex:1;font-size:14px;color:#2d2d2d;line-height:1.5;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.side-text-title:hover{color:#960e15}

/* ============ 工具条 ============ */
.quick-bar{
    display:flex;gap:10px;margin:18px 0;
    background:#fff;border:1px solid #ececec;border-radius:6px;
    padding:12px 14px;
}
.quick-bar .qb-item{
    flex:1;text-align:center;padding:10px 6px;
    border-right:1px solid #f4f4f4;
    font-size:14px;color:#2d2d2d;
}
.quick-bar .qb-item:last-child{border-right:none}
.quick-bar .qb-item:hover{color:#960e15;background:#fafafa}
.quick-bar .qb-icon{font-size:22px;color:#b8121b;display:block;margin-bottom:4px}

/* ============ 响应式 ============ */
@media(max-width:1200px){
    .main-row .left-col,.main-row .right-col{width:auto;flex:1}
    .focus-slider{width:100%}
    .lanmu-left{width:45%;margin-right:5%}
    .lanmu-left .ll-img{width:140px;height:100px}
    .lanmu-middle{width:50%}
    .cat-left-group{width:100%;flex-wrap:wrap}
    .yaowen-feature{width:48%}
    .lanmu-right{width:100%;margin-top:12px}
    .lanmu-right .lr-grid{grid-template-columns:repeat(3,1fr)}
    .en-news-row{flex-direction:column}
    .en-feature{width:100%}
    .photo-row{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:768px){
    .top-headline{font-size:26px}
    .main-row{flex-direction:column}
    .main-row .left-col,.main-row .right-col{width:100%}
    .focus-slider{width:100%;height:260px}
    .focus-slide .slide-title{font-size:17px}
    .flash-box{height:auto}
    .video-row{flex-direction:column}
    .yaowen-row{flex-direction:column}
    .yaowen-feature,.yaowen-list-box{width:100%}
    .cat-row{flex-direction:column}
    .cat-left-group{flex-direction:column;width:100%}
    .lanmu-left,.lanmu-middle{width:100%;margin-right:0;margin-bottom:12px}
    .lanmu-left .ll-img{width:140px;height:90px}
    .lanmu-right .lr-grid{grid-template-columns:repeat(2,1fr)}
    .section-title .title-text{font-size:18px}
    .section-title{height:auto;padding:10px 0}
    .quick-bar{flex-wrap:wrap}
    .quick-bar .qb-item{flex:1 0 30%;border-right:none;border-bottom:1px solid #f4f4f4}
    .photo-row{grid-template-columns:repeat(2,1fr)}
    .en-feature-img{height:180px}
}