.tab-container {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tabs-container {
    display: flex;
    align-items:center;
    justify-content: space-between;
    border-bottom: 1px solid #EDEDED;
}

.tabs {
    padding: 0;
    margin: 0;
    display: flex;
    list-style-type: none;
}

.tab {
    width: 124px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    transition: background-color 0.3s;
}

.tab.active {
    background-color: #004BCB ;
    color: #fff;
}

.tab:hover {
    background-color: #004BCB ;
    color: #fff;
}

/* 查看更多按钮样式 */
.view-more {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #999999;
}

.view-more img {
    margin-top: -2px;
    transform: rotate(270deg);
    transform-origin: center;
}

.view-more:hover {
    color: #0066cc;
}



.tab-pane {
    width: 100%;
    display: none;
}
.headline-data{
    margin-top: 18px;
    box-sizing: border-box;
    padding: 0 8px 0 0;
    display: flex;
    justify-content: space-between;
}
.headline {
    display: inline-block;
    width: 483px;
    height: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
}
.data {
    color: #999999 ;
    font-size: 15px;
}
.tab-pane.active {
    display: block;
}