body{
    background-color: #f1f6fd;
}

/* 平台标题 */
.news-header {
    background-image: url('../images/news-1.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 380px;
    padding: 85px 0;
    padding-left: 280px;
    text-align: left;
    color: white;
}

.news-header h1 {
    font-size: 100px;
    margin-bottom: 10px;
}

.news-header h2 {
    font-size: 48px;
    margin: 0;
}

/* 密销资讯内容 */
.news-content {
    padding: 80px 0;
    background-color: #f1f6fd;
}

.news-content .container {
    max-width: 1360px;
    margin: 0 auto;
}

/* 资讯列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

/* 资讯项链接 */
.news-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 资讯项 */
.news-item {
    display: flex;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* 日期部分 */
.news-date {
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.date-day {
    font-size: 48px;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

.date-year {
    font-size: 32px;
    color: #666;
}

/* 资讯内容包装器 */
.news-content-wrapper {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

/* 资讯图片 */
.news-image {
    flex: 0 0 200px;
}

.news-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* 资讯信息 */
.news-info {
    flex: 1;
}

.news-info h3 {
    font-size: 32px;
    color: #222;
    margin-bottom: 53px;
    line-height: 1.4;
}

.news-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 分页导航 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-prev,
.pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
    background-color: #f8f9fa;
    color: #BE0110;
    border-color: #BE0110;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: white;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-item:hover {
    background-color: #f8f9fa;
    color: #BE0110;
}

.pagination-item.active {
    background-color: #BE0110;
    color: white;
}

.pagination-ellipsis {
    color: #666;
    margin: 0 10px;
}

footer{
    margin-top: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-date {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
        padding: 10px;
    }
    
    .date-day {
        font-size: 24px;
    }
    
    .news-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .news-image {
        flex: 0 0 100%;
    }
    
    .news-image img {
        width: 100%;
        height: 200px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}