.page__banner {
    display: block;
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: #ccc;
}

/* 项目标题 */
.project-title {
    margin: 20px auto 25px auto;
    width: 1134px;
    height: 60px;
    border-bottom: 2px solid #a01f19;
}

.project-title .text {
    display: inline-flex;
    align-items: center;
    height: 100%;
    font-size: 20px;
    color: #a01f19;
    font-weight: bold;
    position: relative;
}

.project-title .text::after {
    content: "";
    width: 100%;
    height: 6px;
    background-color: #a01f19;
    position: absolute;
    bottom: -4px;
}

.news__bg:hover {
    background-color: #f5f5f5;
}

.news {
    box-sizing: border-box;
    width: 1134px;
    margin: auto;
    padding: 24px 14px 24px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.news__date {
    align-self: flex-start;
    width: 110px;
}

.news__date__month {
    font-weight: bold;
    font-size: 20px;
    color: #090909;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news__date__month .line {
    width: 24px;
    height: 4px;
    background-color: #a01f19;
}

.news__date__year {
    font-size: 13px;
    color: #757575;
}

.news__cover {
    width: 222px;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
}

.news__info {
    width: 540px;
    margin-left: 24px;
}

.news__info__title {
    line-height: 24px;
    font-size: 18px;
}

.news__info__date {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #8b8b8b;
}

.news__info__date .icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.news__info__intro {
    line-height: 24px;
    font-size: 14px;
    color: #6a6a6a;
}

.news__btu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    height: 36px;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 18px;
    color: #373737;
}

.news__btu img {
    margin-left: 6px;
}

.news__btu__icon--active {
    display: none;
}

.news__bg:hover .news__btu {
    border: 1px solid #a01f19;
    background-color: #a01f19;
    color: #ffffff;
}

.news__bg:hover .news__btu__icon--active {
    display: inline;
}

.news__bg:hover .news__btu__icon {
    display: none;
}

.page {
    width: 1134px;
    margin: 50px auto 50px auto;
    display: flex;
    justify-content: right;
}

.page__item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 38px;
    margin: 0 0 0 10px;
    border: 1px solid #a01f19;
    border-radius: 4px;
    font-size: 14px;
    color: #a01f19;
}

.page__item--active {
    background-color: #a01f19;
    color: #ffffff;
}

.page__item:hover {
    background-color: #a01f19;
    color: #ffffff;
}