/* 搜索栏样式开始 */

.swiper_plate {
    padding: 0 40px;
}

.swiper-slide-box {
    max-width: 1280px;
    margin: auto;
}

.article_bar {
    padding: 76px 0 0;
    margin: 0 auto 20px;
}

.article_bar .search_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1470px;
    margin: auto;
}

.article_bar .search_section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search_section .releace_time_box {
    width: 120px;
    height: 32px;
}

.search_section .dropdown-display {
    height: 32px;
    line-height: 26px;
}

.search_section .dropdown-display .placeholder:first-child {
    line-height: 30px;
}

.search_section .dropdown-display::after {
    top: 12px;
}

.search_section .dropdown-clear-all {
    /* top: 0px !important; */
    transform: rotate(45deg);
    /* 旋转 45 度 */
}

.search_section .search_box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 12px;
    width: 280px;
}

.search_section .search_box input {
    width: 100%;
    height: 32px;
    border-radius: 16px;
    padding: 0 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.search_section .search_box input:focus {
    border-color: var(--colorBlue);
    ;
}

.search_section .search_icon {
    position: absolute;
    right: 12px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.card_switch {
    width: 216px;
    height: 32px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    border: 1px solid;
    border-image: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 53%, rgba(255, 255, 255, 0.38) 100%) 1;
    box-shadow: 0px 2.54px 10.15px 0px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    gap: 2%;
    flex-wrap: wrap;
    position: relative;
}

.card_switch .card {
    width: 49%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colorgree01);
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.card_switch .card.active {
    color: var(--colorBlue);
}

.card_switch .card_switch_bg {
    position: absolute;
    top: 2px;
    left: 0px;
    transition: all 0.4s ease;
    background: #FFFFFF;
    box-shadow: 0px 2.54px 7.61px 0px rgba(74, 192, 247, 0.15);
    z-index: 0;
    height: calc(100% - 4px);
    width: 49%;
    min-width: 100px;
    border-radius: 40px;
    z-index: 0;
}


/* 搜索栏样式结束 */


/* 文章列表样式开始 */

.article_list_box {
    margin: auto;
}

.article_item {
    position: relative;
    justify-content: space-between;
    align-items: start;
    padding: 0 442px 0 28px;
    height: 30vh;
    min-height: 170px;
    max-height: 240px;
    background: #fff;
    margin-bottom: 16px;
    gap: 40px;
    box-shadow: 0px 3px 6px 0px rgba(0, 31, 112, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.article_item:hover {
    box-shadow: 0px 3px 6px 4px rgba(0, 31, 112, 0.1);
    .article_title {
        color: var(--colorBlue);
    }
}

.article_item.noImages {
    padding: 0 28px 0;
}

.article_item.noImages .article_image_box {
    display: none;
}

.card_layout .article_item.noImages .article_image_box {
    display: block;
}

.article_item:last-of-type {
    margin-bottom: 0;
}

.article_list .article_text {
    width: 100%;
    padding-right: 28px;
    padding: 3vh 0 60px;
    height: 100%;
    position: relative;
}

.article_list .article_title {
    color: var(--colorBlack);
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: color 0.4s ease;
}

.article_list .article_desc {
    color: #666666;
    font-size: 16px;
    margin-top: 30px;
    height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article_list .article_time {
    color: #666;
    font-size: 16px;
    position: absolute;
    left: 0;
    bottom: 3vh;
}

.article_list .article_image_box {
    width: 386px;
    height: 100%;
    overflow: hidden;
    padding: 15px 0;
    position: absolute;
    right: 16px;
}

.article_image_box .article_image {
    height: 100%;
    width: 100%;
}

.card_layout.article_list .article_list_box {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    column-gap: 1%;
    row-gap: 26px;
}

.card_layout.article_list .article_item {
    width: 19.2%;
    height: auto;
    max-height: 327px;
    display: block;
    padding: 0;
    margin: 0;
    box-shadow: 0px 3px 6px 0px rgba(0, 31, 112, 0.05);
}

.card_layout.article_list .article_item:hover {
    box-shadow: 0px 3px 6px 4px #ccc;
}

.card_layout.article_list .article_image_box {
    position: initial;
    width: 100%;
    height: 155px;
    padding: 0;
    background-color: #f7f7f7;
}

.card_layout.article_list .article_text {
    padding: 9px 1vw 34px;
    height: 172px;
}

.card_layout.article_list .article_text .article_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 16px;
}

.card_layout.article_list .article_text .article_desc {
    margin-top: 1.3vh;
}

.card_layout.article_list .article_text .article_time {
    bottom: 9px;
    left: 1vw;
}

.pagination_box {
    display: flex;
    justify-content: end;
    margin-top: 40px;
	align-items: center;
}

.pagination_box .p_example {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EBDBC1;
    color: var(--colorBlack);
    ;
    font-size: 14px;
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.4s ease;
}

.pagination_box .p_example:hover {
    opacity: 0.6;
}

.pagination_box .paeg_item {
    width: 40px;
}

.pagination_box .page_jump {
    padding: 0 20px;
}

.pagination_box .pager_list {
    display: flex;
}

.pagination_box .pager_list .paeg_item.active {
    opacity: 1;
}

.pagination_box .btn_prev {
    margin-right: 14px;
}

.pagination_box .btn_next {
    margin-left: 14px;
}

.mobile_article_time {
    width: 78px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #C7C7C7;
    display: none;
}

.mobile_article_time::after {
    content: " ";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background-color: #001F70;
    opacity: 0.1;
}

.mobile_article_time p {
    width: 100%;
    text-align: center;
}

.mobile_article_time .day {
    font-size: 18px;
}


/* 文章列表样式结束 */


/* 信息公开样式开始 */

.info_disclosure_card {
    display: flex;
    max-width: 1470px;
    max-height: 662px;
    height: 54.2vh;
    margin: auto;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 4px 0px rgba(92, 164, 232, 0.1);
    padding: 12px;
}

.info_disclosure_card .member_list_left {
    margin-right: 26px;
    display: flex;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.info_disclosure_card .member_plank {
    flex: 1;
    width: 96px;
    min-width: 70px;
    max-width: 100px;
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    font-size: 24px;
    margin-bottom: 1.8vh;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.info_disclosure_card .member_plank:first-of-type {
    background: linear-gradient(180deg, #FBF3DB 2%, #DDC7AB 98%);
}

.info_disclosure_card .member_plank:last-of-type {
    margin-bottom: 0;
}

.info_disclosure_card .article_list {
    padding: 0;
    height: 100%;
    overflow-y: auto;
    flex: 1;
}

.info_disclosure_card .article_list .article_item {
    height: 200px;
    padding: 0 16px 0 28px;
    display: flex;
    flex-wrap: wrap;
}

.info_disclosure_card .article_list .article_text {
    padding-bottom: 4.6vh;
    width: calc(100% - 340px);
}

.info_disclosure_card .article_list .article_time {
    bottom: 2.4vh;
}

.info_disclosure_card .article_list .article_image_box {
    position: initial;
    height: 100%;
    width: 300px;
}


/* 信息公开样式结束 */