.news_tab_list{
    display: flex;
    justify-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.news_tab_list_item{
    display: flex;
    height: 42px;
    line-height: 40px;
    padding: 0 16px;
    border-radius: 6px;
    border: 1px solid #666;
}


.news_tab_list_item:hover{
    color: #005EFF;
    border: 1px solid #005EFF;
}

.news_tab_list_item_active {
    color: #FFF;
    background: #005EFF;
    border: 1px solid #005EFF;
}
.news_tab_list_item_active:hover {
    color: #FFF;
    background: #005EFF;
    border: 1px solid #005EFF;
}
.news_list_top{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    font-family: "Microsoft YaHei UI";
    gap: 24px;
}

.news_list_top_left{
    position: relative;
    width: 412px;
    min-width: 412px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}
.news_list_big_item_img{
    width: 100%;
    height: 206px;
}
.news_list_big_item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_list_big_item_content{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 16px 12px;
    width: 100%;
    height: 126px;
    border-radius: 0 0 8px 8px;
    border-right: 1px solid rgba(0, 0, 0, 0.10);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-left: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
}
.news_list_big_item_title{
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
}
.news_list_big_item_remarks{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 44px;
    overflow: hidden;
    color: #666;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}
.news_list_big_item_text{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #999;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.news_list_top_left:hover{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.news_list_big_item:hover .news_list_big_item_title{
    color: #005EFF;
}
.news_list_big_item:hover .news_list_big_item_img img{
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


.news_list_top_right{
  width: calc(100% - 440px);
  min-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news_list_medium_item{
    width: 100%;
    display: flex;
    gap: 16px;
}
.news_list_medium_item_img{
    width: 272px;
    height: 157px;
    border-radius: 0;
}
.news_list_medium_item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_list_medium_item_content{
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news_list_medium_item_title{
    width: 100%;
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}
.news_list_medium_item_remarks{
    width: 100%;
    overflow: hidden;
    color: #666;
    text-overflow: ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
}
.news_list_medium_item_text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news_list_medium_item_text div{
    display: flex;
    align-items: center;
}
.news_list_medium_item_blue{
    color: #0050C8;
    font-size: 14px;
    font-weight: 400;
}
.news_list_medium_item_blue{
    display: none;
}
.news_list_medium_item:hover .news_list_medium_item_title{
    color: #005EFF;
}
.news_list_medium_item:hover .news_list_medium_item_img img{
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
/* 轮播轨道 */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

/* 轮播项 */
.carousel-item {
    flex: 0 0 100%;
    height: 100%;
}

/* 控制按钮 */
.carousel-control {
    position: absolute;
    top: 100px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}
.prev-btn {
    left: 10px;
}
.next-btn {
    right: 10px;
}

/* 指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.indicator-dot.active {
    background: white;
}

/*适配 780px - 1280px*/
@media (max-width: 1360px) and (min-width: 780px) {
    .search_content{
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 780px) {
    .news_list_top_right{
        width: 100%;
        min-width: 360px;
    }
    .news_list_medium_item_img{
        width: 161px;
        height: 93px;
    }
    .news_list_medium_item_remarks{
        -webkit-line-clamp:1;
    }
}
