.banner_swiper {
    width: 100%;
    z-index: 2;
    border-bottom-left-radius: 75px;
    position: relative;
}

.banner_swiper .swiper-slide {
    position: relative;
}

.banner_swiper img {
    width: 100%;
}


.tab_list {
    width: 100%;
    height: 50px;
    border-bottom: 2px solid #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.tab_style {
    display: block;
    align-content: center;
    padding: 0 20px;
    color: black;
    line-height: 47px;
    letter-spacing: 0.4px;
    position: relative;
}

.tab_style:hover {
    font-weight: bold;
    background-color: var(--theme-color-blue);
    color: #fff;
}

.tab_active {
    font-weight: bold;
    background-color: var(--theme-color-blue);
    color: #fff;
    border-bottom: solid 3px var(--theme-color-orange);
}

.common_title {
    font-size: 32px;
    font-weight: bold;
    color: var(--theme-color-blue);
    margin-bottom: 30px;
}

.search_style {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-top: 0.5px solid #c9c9c969;
    border-bottom: 0.5px solid #c9c9c969;
    margin-bottom: 30px;
}

.input_style {
    width: 25%;
    position: relative;
}

.input_style input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid transparent;
    background-color: #f7f8fc;
}

.input_style input:focus {
    outline: none;
    border: 2px solid var(--theme-color-blue);
}

.click_search {
    width: auto;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    cursor: pointer;
}

.search_style a {
    color: var(--theme-color-blue);
    font-weight: bold;
}

.news_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    opacity: 1;
    transition: opacity 0.5s;
}

.news_list.loadings {
    opacity: 0;
}

.news_list_detail {
    position: relative;
    width: 32%;
    box-shadow: 2px 2px 10px #002f742e;
}

.news_list_detail a {
    display: block;
    overflow: hidden;
}

.news_list_detail>a>img {
    width: 100%;
    transition: 0.3s transform ease-in;
}

.news_list_detail>a>img:hover {
    transform: scale(1.1);
}

.news_info {
    padding: 0 20px 0;
}

.news_list_detail:hover .news_info {
    background-image: url('/assets/img/newslist/news_bk.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.news_list .news_list_detail:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--theme-color-blue);
}

.news_title {
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: unset;
}

.news_dec {
    width: 100%;
    min-height: 60px;
    color: #898D8D;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news_info>a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 25px;
    min-height: 210px;
}

.news_time_share {
    padding: 20px 0;
    border-top: 2px solid #c9c9c969;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news_time,
.news_share {
    display: flex;
    align-items: center;
}

.news_time span {
    font-size: 16px;
    color: #54585A;
}

.news_time img {
    margin-right: 10px;
}

.news_share {
    gap: 20px;
}

.news_share img {
    cursor: pointer;
}

.qr_code>img,.wb_style>img,img.copy-link-btn {
    width: 28px;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 90px;
}

.page-btn {
    width: 30px;
    height: 30px;
    padding: 5px 0px;
    background-color: #fff;
    color: var(--theme-color-blue);
    box-shadow: 2px 2px 4px #002f742e;
    border: unset;
    border-bottom: 2px solid var(--theme-color-blue);
    cursor: pointer;
    font-size: 14px;
    justify-content: center;
}

.page-btn:hover:not(.disabled, .ellipsis) {
    background: #f5f5f5;
    border-bottom: 2px solid var(--theme-color-orange);
}

.page-btn.active {
    font-weight: bold;
    border-bottom: 2px solid var(--theme-color-orange);

}

.ellipsis {
    cursor: not-allowed !important;
}

/* 加载状态 */
.loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.no-result {
    text-align: center;
    padding: 40px;
    color: #999;
}

.qr_code {
    position: relative;
}

.code_show {
    display: none;
    position: absolute;
    top: -120px;
    left: -2vw;
    z-index: 1000;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.code_show canvas {
    display: block;
}

.copy_result {
    width: 250px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgb(77 74 74);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    text-align: center;
}

.copy_result.show {
    opacity: 1;
}

.tab_list .tab_style {
    padding-top: 5px !important;
    margin-top: 0 !important;
}

@media screen and (max-width:1366px) and (min-width:992px) {
    .news_share {
        gap: 10px;
    }

    .news_time span {
        font-size: 14px;
        color: #54585A;
        line-height: 14px;
    }

    .news_title {
        font-size: 22px;
    }
}


@media screen and (min-width: 992px) {
    .page_contents .container {
        max-width: 80%;
    }
    .news_list .news_list_detail:nth-child(-n+3) {
        margin-bottom: 3%;
    }
}


@media screen and (max-width: 991px) {
    .tab_list {
        margin-bottom: 35px;
        height: 45px;
    }

    .tab_style {
        font-size: 14px;
        padding: 0 15px;
        line-height: 42px;
    }

    .common_title {
        font-size: 24px;
    }

    .input_style {
        width: 65%;
    }

    .search_style a,.input_style input {
        font-size: 14px;
    }
    
    .news_list_detail {
        width: 49%;
        margin-bottom: 20px;
    }

    .news_list_detail:nth-child(n+5):nth-child(-n+6) {
        margin-bottom: 0;
    }

    .news_title {
        font-size: 18px;
        line-height: 26px;
    }

    .news_info {
        padding: 0 10px 0;
    }

    .news_info>a {
        min-height: 150px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .news_dec {
        min-height: 44px;
        font-size: 14px;
        line-height: 22px;
    }

    .news_time_share {
        padding: 10px 0;
    }

    .news_time span {
        font-size: 11px;
    }

    .news_time img {
        margin-right: 5px;
        width: 15px;
    }

    .qr_code>img,.wb_style>img,img.copy-link-btn {
        width: 20px;
    }

    .news_share {
        gap: 5px;
    }

    .pagination {
        margin-top: 40px;
    }

    .code_show {
        top: -8vh;
        left: -6vw;
        padding: 5px;
        border-radius: 3px;
    }

}<!--耗时1774789840.3779秒-->