
/* 新闻动态区块简化样式 */
.index_pg05 {
    background: #fff;
    padding: 60px 0;
}

.width1724 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.title_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.page_tit {
    font-size: 28px;
    font-weight: bold;
    color: #005a38;
    margin-bottom: 5px;
}

.page_fit {
    font-size: 14px;
    color: #999;
}

.watch-more {
    color: #005a38;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 20px;
    border: 1px solid #005a38;
    border-radius: 15px;
    transition: all 0.3s;
}

.watch-more:hover {
    background: #005a38;
    color: white;
}

/* 列表布局 */
.lists {
    display: flex;
    gap: 30px;
}

.item_l {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s;
}

.item_l:hover {
    transform: translateY(-5px);
}

.item_l .img {
    height: 200px;
    overflow: hidden;
}

.item_l .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item_l .texts {
    padding: 20px;
}

.item_l .tit {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.item_l .tips_time {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.item_l .con {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 右侧小列表 */
.item_r {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item_r .item {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    transition: all 0.3s;
    gap: 15px;
}

.item_r .item:hover {
    background: #e8f5f0;
}

.item_r .icon {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.item_r .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item_r .texts {
    flex: 1;
}

.item_r .tit {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.item_r .tips_time {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.item_r .con {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* 响应式 */
@media (max-width: 768px) {
    .lists {
        flex-direction: column;
    }
    
    .title_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .item_l .img {
        height: 150px;
    }
}
