/* 新闻tab切换样式 */
.news-tabs {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: -45px;
}

.tabs-header {
    display: flex;
    align-items: center;
    padding: 0 0 15px 0;
    gap: 15px;
    flex-wrap: wrap;
}

.title-icon {
    display: block;
    flex-shrink: 0;
}

.tabs-buttons {
    display: flex;
    gap: 35px;
    flex: 1;
}

.tab-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.3s ease;
    font-weight: normal;
}

.tab-btn:hover {
    color: #9a7646;
}

.tab-btn.active {
    color: #9a7646;
    font-weight: bold;
}

.more-link {
    color: #999;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.more-link:hover {
    color: #9a7646;
}

.tabs-content {
    flex: 1;
    position: relative;
}

.news-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list.active {
    display: block;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    border-bottom: 1px dashed #e8dcc8;
    padding-bottom: 10px;
    list-style: none;
}

.news-list li a {
    color: #5a4a42;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 20px;
}

.news-list li a:hover {
    color: #9a7646;
}

.news-list li i {
    color: #999;
    font-size: 12px;
    font-style: normal;
    flex-shrink: 0;
    white-space: nowrap;
    margin-top: 0 !important;
}
