body{
    background: #fff;
}
.news-container {
    margin: 0 auto;
    margin-top: 120px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    /* opacity: 0; */
    transform: translateY(50px);
    transition: all 0.4s ease-out;
    padding-top: 1rem;
}

.title-divider {
    width: 60px;
    height: 4px;
    margin: 0 auto 50px;
    /* opacity: 0; */
    transform: translateY(50px);
    transition: all 0.8s ease-out 0.2s;
}

.news-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    /* opacity: 0; */
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.news-item:hover{
    cursor: pointer;
    /* transform: scale(1.1); */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-in-out;
    color: #F0831F;
}

.section-title.animate,
.title-divider.animate,
.news-item.animate {
    opacity: 1;
    transform: translateY(0);
}
.image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 80px; 
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
    transform-origin: center center;  
    display: block;                    
}
.news-list-wrapper a:hover .image-wrapper .news-image {
    transform: scale(1.2);
}

.news-content {
    padding: 20px 24px;
}

.news-date {
    font-size: 13px;
    color: #666666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date img{
    width: 20px;
    height: 20px;
}

.news-title {
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.2s ease-in-out;
}
.news-description {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.news-arrow {
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.news-arrow img{
    width: 50px;
    height: 10px;
    position: absolute;
    /*bottom: 20%;*/
}
.news-list-wrapper a:hover .news-title {
    color: #F0831F;
}

@media (min-width: 768px) {
    
    .news-item {
        flex-direction: row;
        align-items: anchor-center;
    }
    .image-wrapper {
        width: 350px;
        height: 250px;
        margin-right: 0;  
    }
    .image-wrapper {
        margin-right: 80px;  
    }

    .news-content {
        flex: 1;
        padding: 24px 32px;
    }
    .news-arrow img{
        /*bottom: 5%;*/
    }
    .news-container{margin-top: 100px;}
    /*.section-title{font-size:2rem;}*/
}

@media (max-width: 375px) {
    .news-container{margin-top: 100px;}
    .image-wrapper {
        height: 180px;  
    }
    .news-content {
        padding: 16px 20px;
    }
    .news-arrow img{
        bottom: 5%;
    }
}


/*分页页码*/
.page {
    padding:100px 0px;
    text-align:center;
    overflow:hidden;
}
.page  a {
    display:inline-block;
    font-size:14px;
    line-height:30px;
    height:30px;
    margin:0 2px;
    padding:0 12px;
    text-align:center;
    color:#999;
    border:1px solid #f6f6f6;
    background:#fff;
}
.page a:hover {
    text-decoration:none;
}
.page a.page-num-current {
    line-height:30px;
    padding:0 12px;
    text-align:center;
    margin-left:2px;
    background:#f0831f;
    border:1px solid #d36b0c;
    color: #fff;
}
.page a.active a {
    color:#fff;
}
/*分页页码 end*/
