
.news-container {


    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
    #background-color: #f5f5f5;
    max-width: 1200px;
    height: 382px;
    margin: 0 auto;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
}

.news-tabs {
    display: flex;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.news-tab {
    padding: 15px 25px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 60px;
    text-align: center;
}

.news-tab:hover {
    color: #1e88e5;
    background-color: #f0f7ff;
}

.news-tab.active {
    color: #1e88e5;
    font-weight: bold;
    background-color: white;
}

.news-tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1e88e5;
}

.news-content {
    padding: 5px 20px;
    overflow-y: auto;
}

.news-item {
    display: flex;
    padding: 12px 0 12px 15px;
    border-bottom: 1px dashed #e0e0e0;
    position: relative;
    margin-left: 10px;
}

.news-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    background-color: #1e88e5;
    border-radius: 2px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-title {
    flex: 1;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    padding-left: 10px;
    line-height: 1.4;
    /* 多行文本截断 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em; /* 行高1.4 * 2行 */
    word-break: break-all; /* 允许单词内断行 */
}

.news-title:hover {

    -webkit-line-clamp: unset;
    max-height: none;
    color: #1e88e5;
    text-decoration: underline;
    white-space: normal;
}

.news-date {
    width: 100px;
    text-align: center;
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-source {
    width: 80px;
    text-align: center;
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-link {
    display: block;
    text-align: right;
    color: #1e88e5;
    text-decoration: none;
    font-size: 14px;
}

.more-link:hover {
    text-decoration: underline;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.news-tab i {
    color: #666;
    font-size: 20px;
    margin-bottom: 5px;
}

.news-tab.active i {
    color: #1e88e5;
}

.news-tab:hover i {
    color: #1e88e5;
}

.news-content::-webkit-scrollbar {
    width: 6px;
}

.news-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.news-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.news-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #666;
}