.news-search {
    margin: 20px 0 50px;
}
.news-search .box {
    display: flex;
    margin: 0 auto;
    width: 700px;
    background-color: var(--bs-white);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    z-index: 1;
}
.news-search .box input {
     padding: 0 10px 0 45px;
     width: 600px;
     height: 49px;
     background: url('../images/icon-search-1.png') no-repeat 15px center / 15px;
     color: var(--bs-secondary);
     font-size: 14px;
 }
.news-search .box span {
    margin: 3px;
    width: 100px;
    height: 43px;
    line-height: 43px;
    background-color: var(--bs-success);
    border-radius: 10px;
    color: var(--bs-white);
    text-align: center;
    transition: all .1s linear;
    cursor: pointer;
}
.news-search .box span:hover {
    background-color: var(--bs-warning);
}
.news-item {
    display: block;
    margin-bottom: 21px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--bs-border-color);
}
.news-item:last-child {
    margin-bottom: 0;
}
.news-item .info,
.news-item .date {
    float: left;
}
.news-item .info {
    width: calc(100% - 80px);
}
.news-item .title {
    margin-bottom: 12px;
    height: 22px;
    font-size: 16px;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}
.news-item .text {
    display: -webkit-box;
    height: 40px;
    line-height: 20px;
    color: var(--bs-secondary);
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}
.news-item .date {
    margin-left: 20px;
    width: 60px;
}
.news-item .date span,
.news-item .date i {
    display: block;
    text-align: right;
}
.news-item .date span {
    color: var(--bs-secondary);
    font-size: 36px;
    font-weight: 700;
}
.news-item .date i {
    color: var(--bs-default);
}
.news-item.image .box {
    float: left;
    width: 132px;
    height: 74px;
    background: no-repeat center center / cover;
}
.news-item.image .info {
    margin-left: 21px;
    width: calc(100% - 153px - 80px);
}
.news-empty {
    padding: 50px 0;
    color: var(--bs-default);
    text-align: center;
}
.news-page {
    margin-top: 20px;
}
.news-page ul {
    justify-content: center;
}
.news-page li {
    margin: 0 3px;
}
.news-page li a,
.news-page li span {
    border-radius: 5px;
}