.listnews{
    padding-top: 92px;
    background-color: #f4f0ec;
    padding-bottom: 124px;
}

.listnews .page-container{
    display: flex;
    gap: 40px;
}

.listnews .main{
    flex: 1;
    flex-shrink: 0;
}

.listnews .main .list .item{
    text-align: center;
    margin-bottom: 48px;
}

.listnews .main .list a:last-child .item{
    margin-bottom: 0;
}

.listnews .main .list .item img{
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 17px;
    transition: filter .3s ease;
}

.listnews .main .list .item:hover img{
    filter: grayscale(100%);
}

.listnews .main .list .item h2{
    font-weight: 700;
    font-size: 24px;
    color: #482B20;
    margin-bottom: 11px;
}

.listnews .main .list .item p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #5C5C5C;
    margin-bottom: 13px;
}

.listnews .main .list .item span{
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #CF5D2C;
}


 .aside{
    width: 395px;
    position: sticky;
    top: 92px;
    height: max-content;
}

 .aside form{
    display: flex;
    margin-bottom: 34px;
}

 .aside form input{
    flex: 1;
    height: 50px;
    background-color: #F4F0EC;
    border: 1px solid #D1C9C4;
    padding: 0 22px;
    font-weight: 400;
    font-size: 16px;
    color: #333;
}

 .aside form input::placeholder{
    font-weight: 400;
    font-size: 16px;
    color: #989796;
}

 .aside form button{
    display: block;
    background-color: #D05E2E;
    border: none;
    cursor: pointer;
    padding: 0 16px;
}


 .aside .newest h2{
    font-weight: 700;
    font-size: 24px;
    color: #482B20;
    margin-bottom: 27px;
}

 .aside .newest .list .item{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}


.aside .newest .list a:last-child .item{
    margin-bottom: 0;
}


 .aside .newest .list .item .pic{
    width: 135px;
    height: 90px;
    flex-shrink: 0;
}

 .aside .newest .list .item .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .3s ease;
}

 .aside .newest .list a:hover .item .pic img{
    filter: grayscale(100%);
}


 .aside .newest .list .item .info h3{
    font-weight: 700;
    font-size: 20px;
    color: #482B20;
    margin-bottom: 6px;
}

 .aside .newest .list .item .info p{
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #5C5C5C;
}