html {
    background-color: rgba(241, 241, 241, 1);

}

.news_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    margin-top: 30px;
    padding: 0 20px;
}


.news_box {
    cursor: pointer;
    width: calc(100% - 20px);
    margin: 0 auto 45px auto;
    animation-name: appear;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

}

@keyframes appear {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.news_box img {
    display: block;
    width: 100%;
}

.introduce_box {
    box-sizing: border-box;
    padding: 35px 15px 25px 15px;
    background-color: #ffffff;
}

.news_box:hover .introduce_box {
    transition: all 1s ease-out;
    background-color: #ececec;
}

.top_title {
    width: 100%;
    font-size: 28.547px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top_title:hover {
    color: #D80C24;
    transition: all .3s ease-out;

}

.below_title {
    font-size: 17.128px;
    line-height: 20px;
    margin: 20px 0 33px 0;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.detail {
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail>span {
    color: rgba(204, 204, 204, 1);
    font-size: 20px;
}

.more {
    background-color: #ffffff;
    width: 142.737px;
    height: 46.389px;
    line-height: 46.389px;
    font-size: 12px;
    display: block;
    font-weight: bold;
    color: rgba(216, 12, 36, 1);
    border: 1px solid rgba(216, 12, 36, 1);
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
}

.more:hover {
    animation: box-shadow-drop-bottom 0.6s both;
    color: #ffffff;
    background-color: rgba(216, 12, 36, 1);
}

/* ------- */
.news_container {
    padding: 30px 0 0 0;
    width: 100%;
}

.select_container {
    display: flex;
    align-items: center;
    justify-content: center;
}




.search_text {
    font-size: 24px;
}

.select {
    box-sizing: border-box;
    padding: 0 20px;
    display: block;
    width: 421px;
    height: 57px;
    font-size: 24px;
}

/* ------------------------------ */
.image_container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner {
    display: block;
    width: 100%;
    object-fit: cover;
    -webkit-animation: kenburns-top 3s ease-out both;
    animation: kenburns-top 3s ease-out both;
}

@keyframes kenburns-top {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
    }

    100% {
        -webkit-transform: scale(1.06) translateY(-15px);
        transform: scale(1.06) translateY(-15px);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}


/* 查看更多 */
.view_more {
    width: 200px;
    height: 65px;
    line-height: 65px;
    font-size: 18px;
    display: block;
    font-weight: bold;
    color: rgba(216, 12, 36, 1);
    border: 1px solid rgba(216, 12, 36, 1);
    margin: 40px auto 88px auto;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
}

.view_more:hover {
    animation: box-shadow-drop-bottom 0.6s both;
    color: #ffffff;
    background-color: rgba(216, 12, 36, 1);
}

.empty {
    font-size: 14px;
    display: block;
    font-weight: bold;
    color: rgba(216, 12, 36, 1);
    margin: 80px auto 60px auto;
    text-align: center;
}