.news-grid-page{
    padding:105px 0 70px;
    background:#f5f6f8;
    min-height:65vh;
}
.news-top-line{
    margin-bottom:28px;
}
.news-breadcrumb{
    color:#253787;
    font-size:16px;
    margin-bottom:15px;
}
.news-breadcrumb a{
    color:#253787;
    font-weight:700;
    text-decoration:none;
}
.news-breadcrumb a:after{
    content:" ";
}
.news-breadcrumb span{
    color:#1f2937;
}
.news-search{
    display:flex;
    width:100%;
    max-width:360px;
    border:1px solid #d1d5db;
    background:#fff;
}
.news-search input{
    flex:1;
    border:0;
    padding:10px 12px;
    outline:0;
    background:#fff;
}
.news-search button{
    width:46px;
    border:0;
    background:#fff;
    color:#253787;
}
.news-card-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px 30px;
}
.news-card-item{
    background:#fff;
    border:1px solid #e0e0e0;
    border-radius:2px;
    overflow:hidden;
    box-shadow:0 1px 2px rgba(15,23,42,.04);
}
.news-card-image{
    display:block;
    height:355px;
    background:#253787;
    overflow:hidden;
}
.news-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.news-card-meta-strip{
    position:relative;
    height:52px;
    background:#f2f5f9;
    border-bottom:1px solid #e5e7eb;
    padding-left:96px;
    display:flex;
    align-items:center;
    color:#253787;
    font-weight:600;
    font-size:13px;
}
.news-card-icon{
    position:absolute;
    left:28px;
    top:50%;
    width:58px;
    height:58px;
    transform:translateY(-50%);
    border-radius:999px;
    background:#253787;
    border:5px solid #fff;
    box-shadow:0 2px 8px rgba(0,0,0,.12);
}
.news-card-content{
    padding:30px 25px 22px;
}
.news-card-content h2{
    font-size:18px;
    line-height:1.35;
    margin:0 0 13px;
    font-weight:700;
}
.news-card-content h2 a{
    color:#4b4f58;
    text-decoration:none;
}
.news-card-content h2 a:hover{
    color:#253787;
}
.news-card-content p{
    color:#666;
    line-height:1.65;
    margin:0 0 4px;
    font-size:15px;
}
.news-card-more{
    color:#777;
    font-style:italic;
    font-weight:700;
    margin-left:8px;
    text-decoration:none;
    white-space:nowrap;
}
.news-card-more:hover{
    color:#253787;
}
.news-card-tags{
    color:#9aa1ad;
    font-size:13px;
    padding-left:22px;
    position:relative;
}
.news-card-tags i{
    position:absolute;
    left:0;
    top:3px;
    color:#253787;
}
.news-empty{
    grid-column:1/-1;
    background:#fff;
    border:1px solid #e5e7eb;
    padding:25px;
}
.news-detail-page{
    padding:115px 0 70px;
    background:#fff;
    min-height:65vh;
}
.news-detail-page h1{
    color:#253787;
    font-weight:800;
    margin-bottom:18px;
}
.news-detail-date{
    color:#64748b;
    margin-bottom:18px;
}
.news-detail-image{
    width:100%;
    max-height:420px;
    object-fit:cover;
    border-radius:10px;
    margin:20px 0;
    background:#f8fafc;
}
.news-detail-content{
    font-size:16px;
    line-height:1.85;
}
.back-news{
    display:inline-block;
    margin-bottom:20px;
    color:#253787;
    font-weight:700;
    text-decoration:none;
}
@media(max-width:1199px){
    .news-card-image{
        height:310px;
    }
}
@media(max-width:991px){
    .news-card-grid{
        grid-template-columns:1fr;
    }
    .news-card-image{
        height:auto;
    }
    .news-card-image img{
        height:auto;
    }
}
@media(max-width:640px){
    .news-grid-page{
        padding-top:95px;
    }
    .news-card-content{
        padding:24px 18px 20px;
    }
    .news-card-meta-strip{
        padding-left:84px;
    }
    .news-card-icon{
        left:20px;
        width:54px;
        height:54px;
    }
}
