.news-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}
html, body {
    font-size: 14px;
}
/* 顶部图片样式 */
.header-image {
    margin-top: 8rem;
    margin-bottom: 7.1429rem;
    width: 100%;
    height: 12rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-image .left {
    width: 21.4286rem;
    height: 8rem;
    font-weight: bold;
    font-size: 2.8571rem;
    color: #1A1A1A;
    line-height: 4rem;
}

.header-image .right {
    width: 21.3571rem;
    height: 12rem;
    font-weight: 500;
    font-size: 2.8571rem;
    color: #999999;
    line-height: 4rem;
    text-align: right;
}

/* 选项卡样式 */
.tabs {
    display: flex;
    margin-bottom: 5.1429rem;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 0.7143rem;
}

.tab {
    padding: 0.9286rem 1.7143rem;
    text-align: center;
    margin: 0 0.5714rem;
    cursor: pointer;
    font-size: 1rem;
    color: #000000;
    border-radius: 7.1429rem;
    border: 0.0714rem solid #E5E5E5;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.tab:hover {
    background: #f0f0f0;
}

.tab.active {
    background: #EA5B15;
    color: #fff;
    border-color: #EA5B15;
}

/* 新闻列表样式 */
.news-list {
    margin-bottom: 2.2143rem;
}

.news-item {
    display: flex;
    background: #f7f8fa;
    border-radius: 0.5714rem;
    overflow: hidden;
    margin-bottom: 1.4286rem;
    cursor: pointer;
}

.news-image {
    width: 22.8571rem;
    height: 17.1429rem;
}

.news-image img {
    width: 100%;
    height: 100%;
}

.news-content {
    padding: 1.7857rem 2.5714rem 0 2.5714rem;
    flex: 1;
}

.news-title {
    margin-bottom: 0.7143rem;
    font-weight: 500;
    font-size: 1.0714rem;
    color: #333333;
    line-height: 1.7143rem;
    height: 1.7143rem;
}

.news-desc {
    height: 5.1429rem;
    font-size: 1.1429rem;
    color: #999999;
    line-height: 1.7143rem;
    margin-bottom: 3.5714rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8571rem;
    color: #999999;
}

.news-time {
    margin-right: 1.0714rem;
}

.news-time i,
.news-views i {
    margin-right: 0.3571rem;
}

/* 分页器样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 76px 0;
}

.page-item {
    margin: 0 8px;
}

/*.page-link {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-decoration: none;*/
/*    width: 28px;*/
/*    height: 28px;*/
/*    background: #FFFFFF;*/
/*    border-radius: 100px;*/
/*    font-size: 16px;*/
/*    color: #333333;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.page-link:hover {*/
/*    background: #e8f4ff;*/
/*    color: #EA5B15;*/
/*}*/

/*.page-link.active {*/
/*    background: #EA5B15;*/
/*    color: #FFFFFF;*/
/*}*/

/*.page-link.disabled {*/
/*    opacity: 0.5;*/
/*    cursor: not-allowed;*/
/*}*/

/* 加载动画 */
.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.loading p {
    margin-top: 15px;
    color: #7f8c8d;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(234, 91, 21, 0.2);
    border-radius: 50%;
    border-top-color: #EA5B15;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 0;
    color: #7f8c8d;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.empty-state p {
    font-size: 1.2rem;
}

