.leftCont {
    width: 820px;
    padding: 0;
    box-sizing: border-box;
}

.leftCont .news-list .news-item {
    padding: 20px;
    height: 180px;
    background: #FBFDFF;
    box-shadow: 0px 0px 10px 0px rgba(3, 29, 51, 0.1);
    margin-bottom: 30px;
}

.leftCont .news-list .news-item a {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.leftCont .news-list .news-item a .news-date {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 20px;
    padding-top: 5px;
}

.leftCont .news-list .news-item a .news-date .day {
    font-size: 26px;
    font-weight: bold;
    color: #004582;
    line-height: 1;
}

.leftCont .news-list .news-item a .news-date .line {
    width: 30px;
    height: 3px;
    background: #004582;
    margin: 10px 0;
}

.leftCont .news-list .news-item a .news-date .year {
    font-size: 20px;
    color: #004582;
}

.leftCont .news-list .news-item a .news-body {
    flex: 1;
    width: 630px;
    transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-header {
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-header .title {
    font-size: 20px;
    color: #000;
    margin: 0;
    border-left: 5px solid #004582;
    padding-left: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-divider {
    height: 3px;
    height: 21px;
}

.leftCont .news-list .news-item a .news-body .news-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.leftCont .news-list .news-item a .news-body .news-main .news-desc {
    width: 430px;
    min-width: 430px;
    font-size: 14px;
    color: #aaa;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-main .news-desc p {
    margin: 0 0 15px;
}

.leftCont .news-list .news-item a .news-body .news-main .news-desc p:last-child {
    margin-bottom: 0;
}

.leftCont .news-list .news-item a .news-body .news-main .news-img {
    width: 162px;
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.leftCont .news-list .news-item a .news-body .news-main .news-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.leftCont .news-list .news-item a .news-body .news-main:not(:has(.news-img)) .news-desc {
    width: 100%;
    min-width: 600px;
    -webkit-line-clamp: 5;
}

.leftCont .news-list .news-item:hover {
    height: 320px;
    box-shadow: 0px 5px 20px 0px rgba(3, 29, 51, 0.2);
}

.leftCont .news-list .news-item:hover:not(:has(.news-img)) {
    height: 180px;
}

.leftCont .news-list .news-item:hover a .news-body .news-main .news-desc {
    width: 300px;
    min-width: 300px;
    -webkit-line-clamp: 11;
}

.leftCont .news-list .news-item:hover a .news-body .news-main:not(:has(.news-img)) .news-desc {
    width: 100%;
    -webkit-line-clamp: 5;
}

.leftCont .news-list .news-item:hover a .news-body .news-main .news-img {
    width: 320px;
    height: 215px;
}

.rightCont {
    width: 320px;
    border-left: 1px solid #004582;
    padding-left: 20px;
}

.rightCont .feature-card {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.rightCont .feature-card:last-child {
    margin-bottom: 0;
}

.rightCont .feature-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.rightCont .feature-card .card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.rightCont .feature-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rightCont .feature-card:hover .card-img img {
    transform: scale(1.05);
}

.rightCont .feature-card .card-body {
    padding: 25px 20px;
    border: 1px solid #f0f0f0;
    border-top: none;
}

.rightCont .feature-card .card-body .card-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rightCont .feature-card .card-body .card-meta .meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #999;
    font-size: 14px;
}

.rightCont .feature-card .card-body .card-meta .meta-item:last-child {
    margin-bottom: 0;
}

.rightCont .feature-card .card-body .card-meta .meta-item .icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    display: block;
    object-fit: contain;
}

.rightCont .feature-card .card-body .card-meta .meta-item .icon-placeholder {
    display: none;
    margin-right: 8px;
    font-style: normal;
}

.pagination {
    margin: 10px 0;
    text-align: center;
}

.pagination .pn {
    display: inline-block;
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    padding-left: 7px;
    padding-right: 7px;
    color: #434343;
    background-color: #fff;
    height: 28px;
    line-height: 28px;
    margin: 0 5px;
}

.pagination .btns a {
    display: inline-block;
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #434343;
    background-color: #fff;
    padding: 0 12px;
    font-weight: 400;
    margin: 0 5px;
    height: 28px;
    line-height: 28px;
}

.pagination .btns a.active {
    border: 1px solid #004582;
}

.pagination a.dian {
    display: inline-block;
    margin: 0 5px;
    background-color: #f4f4f5;
    color: #606266;
    min-width: 30px;
    border-radius: 2px;
}

.pagination input {
    width: 50px;
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    height: 28px;
    line-height: 28px;
    margin: 0 5px;
    text-align: center;
}

.pagination .first {
    margin-right: 10px;
}

.pagination .next {
    margin: 0 10px;
}