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

.banner {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
}

.banner_box:hover .banner {
    transform: scale(1.1);
}


.banner-text {
    position: absolute;
    top: 50%;
    right: 20%;
    color: white;
    text-align: left;
    font-family: Impact;
    font-size: 64px;
    line-height: 70px;
    opacity: 1;
}



.container {
    padding: 30px 0;
    background: #F1F1F1;
}

/* 文本框样式 */
.search_container {
    margin: 0 auto 30px auto;
    width: 90%;
    height: 69px;
    border-radius: 30px;
    border: 1px solid #ccc;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}


.search_container img {
    margin: 20px 20px;
    width: 29;
    height: 29px;
}

input[type="search"] {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    border: none;
    box-sizing: border-box;
    outline: none;
    border-radius: 30px;
    font-size: 22px;
    background-color: transparent;

}

/* 下拉框 */
.select_container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;

}

#subject {
    width: calc(25% - 30px);
    height: 40px;
    font-size: 16px;
    font-family: Arial;
    color: #666;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    border: 1px solid #616060;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    background-color: transparent;
}


/* 新闻列表 */
.news_list {
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto;
    width: 90%;
}


.news_box {
    cursor: pointer;
    width: 100%;
    transition: transform 0.4s ease-in-out;
    margin-top: 70px;
}

.news_box:hover {
    transform: translateY(-10px);
}

.news_box img {
    display: block;
    width: 100%;
    min-height: 200px;
}

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

.title p {
    width: 100%;
    font-size: 40px;
    font-family: Impact;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.detail {
    font-size: 24px;
    margin: 20px 0 65px 0;
    font-family: Arial;
    line-height: 137.99%;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 95px;
}

.view_item {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.time {
    color: rgba(204, 204, 204, 1);
    font-size: 24px;
}

.news_more {
    width: 158px;
    height: 51px;
    line-height: 51px;
    font-size: 20px;
    font-family: Impact;
    display: block;
    color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
    border-radius: 5px;
}

.news_more:hover {
    color: rgba(241, 241, 241, 1);
    background-color: #D80C24;
    border: 1px solid #fff;
    animation: box-shadow-drop-bottom 0.6s both;

}


.more {
    width: 200px;
    height: 65px;
    line-height: 65px;
    font-size: 18px;
    font-family: Impact;
    display: block;
    color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    margin: 80px auto 60px auto;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
    border-radius: 5px;
}

.more:hover {
    color: rgba(241, 241, 241, 1);
    background-color: #D80C24;
    border: 1px solid #fff;
    animation: box-shadow-drop-bottom 0.6s both;

}

@keyframes box-shadow-drop-bottom {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }
}

.empty_title {
    margin: 80px auto 60px auto;
    font-size: 24px;
    font-family: Impact;
    display: block;
    color: rgba(0, 0, 0, 1);
    text-align: center;
}