.clearfix:after,
.clearfix:before {
    display: table;
    content: " ";
    clear: both;
}

.banner {
    text-align: center;
}

.banner img {
    max-width: 1920px;
    width: 100%;
    height: auto;
}

/* 中间内容 */
.content {
    background-color: rgb(25, 98, 213);
    padding-top: 40px;
    padding-bottom: 40px;
}

.news_container {
    background-color: #fafafa;
    box-sizing: border-box;
    overflow: hidden;
    padding: 60px 0px 30px;
    position: relative;
}

.news_wrap {
    width: 100%;
}

.news_item {
    box-sizing: border-box;
    padding: 0px 10px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    transition: .3s ease;
}

.news_item.active {
    display: flex;
    transition: .3s ease-in;
}

.news_li {
    width: calc(33% - 80px);
    position: relative;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    border: solid 1px #e9e9e9;
    margin-bottom: 50px;
    display: block;
    box-shadow: 13px 13px 0px 0px #ebebeb;
    height: 280px;
}

.news_li img {
    width: 100%;
    height: 100%;
    display: block;
}

.news_li:hover .news_li_content {
    top: 10px;
    left: 10px;
    opacity: 1;
    visibility: visible;
}

.news_li_content {
    position: absolute;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 0px 40px;
    background-color: rgba(25, 98, 213, .86);
    display: flex;
    opacity: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: .3s ease-in;
}

.news_li_txt {
    max-width: 244px;
    font-size: 18px;
    text-align: center;
    color: white;
}

.news_li_more {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin-top: 10px;
    color: white;
    border: solid 1px white;
    cursor: pointer;
}

.news_li_more:hover {
    background-color: white;
    color: black;
}

.news_car {
    width: 100%;
    display: flex;
    justify-content: center;
}

.news_car li {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0px 10px;
    background-color: #dcdcdc;
    cursor: pointer;
    transition: .3s ease-in;
}

.news_car li.cur {
    background-color: rgb(9, 91, 216);
}

.news_car li:hover {
    background-color: rgb(9, 91, 216);
}

.news_more {
    margin: 30px auto 10px;
    display: block;
    width: 383px;
    height: 40px;
    background-color: #ea4d4b;
    color: white;
    font-size: 18px;
    border-radius: 40px;
    text-align: center;
    line-height: 40px;
    transition: .3s ease-in;
}

.news_more span {
    color: #fffe84;
    font-size: 18px;
    margin-right: 10px;
    transition: .3s ease-in;
}

.news_more:hover {
    background-color: rgb(9, 91, 216);
    transform: translateX(5px);
}

/* 分页 */
.lucidity_pgToolbar {
    border: 0 !important;
    background: none !important;
    text-align: center !important;
}
.lucidity_pgPanel {
    float: none !important;
    margin: 0 auto !important;
}

@media (max-width: 767px) {
    .content {
        background: none;
        padding-top: 0;
        padding-bottom: 0;
    }

    .news_container {
        padding: 3rem;
    }

    .news_li {
        width: 100%;
        margin-bottom: 4rem;
        height: 24rem;
    }

    .lucidity_pgToolbar td {
        display: inline-block;
        height: auto !important;
    }
}