.l_content {
    background-color: #f7f7f5;
}
.container {
    max-width: 1200px;
    color: #333;
    padding: 80px 0;
    margin: auto;
}
.news-header {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f7f7f5;
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); */
    margin-bottom: 20px;
}

/* 导航标签 */
.nav-tabs {
    display: flex;
}

.tab {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #d8d8d8;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 16px;
    color: #808180;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 10px;
}

.tab:hover,
.tab.active {
    background: #108cda;
    color: white;
}

/* 新闻卡片 */
.news-card {
    display: flex;
    width: 100%;
    height: 335px;
    background: #ffffff;
    border-radius: 6px;
}

.news-card img {
    width: 540px;
    height: 335px;
    border-radius: 6px 0 0 6px;
}

.card-content {
    width: 660px;
    height: 335px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h2 {
    width: 600px;
    height: 75px;
    font-weight: 500;
    font-size: 24px;
    color: #3c3e42;
    line-height: 1.4;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 0 25px;
    margin-top: 35px;
    -webkit-line-clamp: 2;
}

.card-content p {
    width: 600px;
    height: 77px;
    font-weight: 350;
    font-size: 16px;
    color: #808180;
    line-height: 1.6;
    margin-bottom: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 0 25px;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #b6b6b6;
    padding: 0 25px;
    margin-bottom: 28px;
}

.meta .xflex {
   display: flex;
   align-content: center;
}
.card-con2 .lflex{
    display: flex;
    align-items: center;
     font-weight: 350;
    font-size: 12px;
    color: #b6b6b6;
}
.view-more {
    font-weight: 350;
    font-size: 16px;
    color: #b6b6b6;
    text-decoration: none;
}

.view-more:hover {
    color: #0a66b8;
}

.category-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 12px;
    background: #108cda;
    color: white;
    font-size: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.aggre2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 43px;
}

.card {
    width: 291px;
    height: 302px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    width: 291px;
    height: 177px;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* background-color: #108CDA; */
    transition: transform 0.5s ease;
}

/* .card:hover .card-image img {
            transform: scale(1.05);
        } */

.card-tag {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #2a8af7;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 0 8px 0 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.card-con2 {
    width: 291px;
    height: 125px;
    /* padding: 12px 14px 16px; */
}

.card-title {
    width: 275px;
    /* height: 19px; */
    font-weight: 500;
    font-size: 16px;
    color: #3c3e42;
    margin: 9px 8px 12px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* line-height: 1.3; */
}

.card-desc {
    font-weight: 350;
    font-size: 14px;
    color: #808180;
    /* line-height: 1.4; */
    /* height: 45px; */
    margin: 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    font-weight: 350;
    font-size: 12px;
    color: #108cda;
    margin-left: 192px;
    text-decoration: none;
}

.confirm {
    width: 147px;
    height: 40px;
    background: #108cda;
    border-radius: 348px;
    font-weight: 350;
    font-size: 14px;
    color: #ffffff;
    margin: auto;
    margin-top: 30px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex {
    display: flex;
    align-items: center;
}

.beijjing {
    width: 6px;
    height: 29px;
    background: #108cda;
    margin-left: 10px;
}

.title {
    font-weight: 700;
    font-size: 24px;
    color: #3c3e42;
    margin-left: 15px;
}
