body{
    background: #FFFFFF;
}
.bannerSwipperBox{
    height: 285px;
}
.mainWrapper{
    min-height: 83vh;
}
.swiper{
    height: 100%;
}
.swiper-slide a{
    background-size: cover !important;
}
.articleList{
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}
.articleWrapper{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.news-list {
    margin-bottom: 80px;
}

.news-item {
    display: flex;
    padding: 20px 10px;
    border-bottom: 1px solid rgba(229, 229, 229, 1);
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 10px;
}

.news-item:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.news-date {
    display: flex;
    flex-direction: column;
    padding-right: 25px;
    color: #000000;
}

.date-day {
font-size: 30px;
font-weight: 400;
letter-spacing: 0px;
line-height: 26px;
color: rgba(0, 0, 0, 1);
margin-bottom: 5px;
}

.date-month-year {
font-size: 16px;
font-weight: 400;
letter-spacing: 0px;
line-height: 19px;
color: rgba(166, 166, 166, 1);
border: 1px solid rgba(166, 166, 166, 1);
text-align: center;
width: 48px;
height: 21px;
}
.news-separator{
    width: 40px;
    height: 1px;
    background: rgba(166, 166, 166, 1);
    margin-top: 15px;
    margin-right: 35px;
}
.news-content {
    flex: 1;
    padding-right: 35px;
}

.news-title {
    margin-bottom: 20px;
font-size: 20px;
font-weight: 400;
letter-spacing: 0px;
line-height: 26px;
color: rgba(0, 0, 0, 1);


}

.news-subtitle {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
font-size: 16px;
font-weight: 400;
letter-spacing: 0px;
line-height: 26px;
color: rgba(166, 166, 166, 1);


}

.news-cover {
    width: 300px;
    height: 165px;
    background: rgba(204, 204, 204, 1);
    overflow: hidden;
    transition: transform 0.3s;
}

.news-cover:hover {
    transform: scale(1.05);
}

.news-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 5px;
    /* border-radius: 6px; */
    background: #FFFFFF;
    border: 1px solid rgba(166, 166, 166, 1);
    color: rgba(166, 166, 166, 1);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.pagination-item:hover {
    background: #f0f0f0;
    border-color: #3498db;
    color: #3498db;
}

.pagination-item.active {
    background: rgba(26, 70, 214, 1);
    color: #FFFFFF;
    border-color: rgba(26, 70, 214, 1);
}

.pagination-ellipsis {
    color: #aaa;
    margin: 0 5px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    padding: 0 5px;
    transition: color 0.3s;
}

.pagination-ellipsis:hover {
    color: #3498db;
}

.pagination-prev, .pagination-next {
    width: auto;
    padding: 0 10px;
}

.pagination-prev:hover, .pagination-next:hover {
    background: #3498db;
    color: white;
}

@media (max-width: 768px) {
    .bannerSwipperBox{
        height: calc(100vw / 2.88);
    }
    .articleList{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .news-list{
        margin-bottom: 30px;
    }
    .news-item {
        flex-direction: column;
        padding: 0 0 10px 0;
    }
    
    .news-date {
        justify-content: flex-start;
        padding-right: 0;
        margin-bottom: 10px;
    }
   
    
    .date-day {
        font-size: 24px;
        margin-right: 8px;
    }
    
    .date-month-year {
        margin-top: 0;
    }
    .news-separator{
        width: 80px;
        margin-bottom: 10px;
        margin-top: 0px;
    }
    .news-content {
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .news-title {
        font-size: 16px;
    }
    .news-subtitle{
        font-size: 14px;
    }
    .news-cover {
        width: 100%;
        height: calc(100vw / 1.5);
    }
    
    .pagination-item {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin: 0 3px;
    }
    
    .pagination-prev, .pagination-next {
        padding: 0 10px;
    }
}
