.top_nav {
    width: 100%;
    min-width: 1280px;
    height: 66px;
    line-height: 66px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    color: #fff;
    background-color: #323232;
    padding-left: 100px;
}

.top_nav_logo {
    width: 260px;
    height: 100px;
    background-color: #cd1e2b;
    background-image: url(../images/logo03.png);
    background-repeat: no-repeat;
    background-position: center 32px;
    background-size: 211px 69px;
}

.top_nav .nav_menu {
    display: flex;
    flex: 1;
    align-items: center;
    max-width: 1900px;
    justify-content: flex-start;
    margin-left: 40px;
}

.top_nav .nav_menu a {
    display: block;
    color: #fff;
    font-family: "\5FAE\8F6F\96C5\9ED1", sans-serif;
    font-size: 20px;
    flex: 1;
    text-align: center;
    transition: 0.3s;
    background-color: #323232;
    border: 5px solid #323232;
    height: 66px;
    line-height: 60px;
    border-radius: 0;

}

.top_nav .nav_menu a:hover {
    background-color: #cd1e2b;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.top_nav .nav_menu i {
    font-size: 13px;
    color: #fff;
    font-style: normal;
}

.nav_menu a:first-child {
    min-width: 130px;
}




.search {
    position: relative;
    padding-right: 20px;
    margin-left: auto;
}



.search-wrapper {
    position: relative;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    top: 0;
    right: 0;
    padding-left: 40px;
}


.search-wrapper .input-holder {
    overflow: hidden;
    height: 66px;
    background: rgba(255, 255, 255, 0);
    position: relative;
    width: 66px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    right: 0;
}

.search-wrapper.active .input-holder {
    border-radius: 50px;
    width: 300px;
    line-height: 66px;
    background: #323232;
    -webkit-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    right: 40px;
}

.search-wrapper .input-holder .search-input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0px 66px 0 20px;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #FFF;

}

.search-wrapper.active .input-holder .search-input {
    opacity: 1;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    transform: translate(0, 10px);
}

.search-wrapper .input-holder .search-icon {
    width: 66px;
    height: 66px;
    border: none;
    background: #323232;
    padding: 0px;
    outline: none;
    position: relative;
    z-index: 2;
    float: right;
    cursor: pointer;
}

.search-wrapper.active .input-holder .search-icon {
    width: 50px;
    height: 50px;
    margin: 10px;
    border-radius: 30px;
}

.search-wrapper .input-holder .search-icon span {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    -moz-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);

}

.search-wrapper.active .input-holder .search-icon span {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.search-wrapper .input-holder .search-icon span::before,
.search-wrapper .input-holder .search-icon span::after {
    position: absolute;
    content: '';
}

.search-wrapper .input-holder .search-icon span::before {
    width: 4px;
    height: 11px;
    left: 8px;
    top: 18px;
    border-radius: 2px;
    background: #fff;
}

.search-wrapper .input-holder .search-icon span::after {
    width: 20px;
    height: 20px;
    left: 0px;
    top: 0px;
    border-radius: 16px;
    border: 4px solid #fff;
}

.search-wrapper .close {
    position: absolute;
    z-index: 1;
    top: 24px;
    right: 20px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -moz-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);

}

.search-wrapper.active .close {
    right: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);

}

.search-wrapper .close::before,
.search-wrapper .close::after {
    position: absolute;
    content: '';
    background: #FFF;
    border-radius: 2px;
}

.search-wrapper .close::before {
    width: 5px;
    height: 25px;
    left: 10px;
    top: 0px;
}

.search-wrapper .close::after {
    width: 25px;
    height: 5px;
    left: 0px;
    top: 10px;
}




@media screen and (max-width: 560px) {
    .search-wrapper.active .input-holder {
        width: 200px;
    }
}










.top_news {
    width: 1280px;
    height: auto;
    border-bottom: 1px solid #f1f1f1;
    padding: 40px 0 30px;
    margin: 0 auto;
}

.top_news_container {
    width: 1280px;
    height: auto;
    margin: 0 auto;
    max-width: 2000px;
}

.top_news_container .top_main {
    background-image: url("../images/logo02.png");
    background-repeat: no-repeat;
    background-position: left 6px;
    padding-left: 150px;
}

.top_news_container .top_main a {
    display: block;
    font-weight: bold;
    color: #000;
    font-size: 40px;
    margin-bottom: 26px;
}

.top_news_container .top_main a:hover {
    color: #b61c12;
    text-decoration: none;
}

.top_news_container .bottom_main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top_news_container .bottom_main a {
    display: block;
    width: 48%;
    font-size: 22px;
    line-height: 44px;
    height: 44px;
    overflow: hidden;
    color: #333;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
    position: relative;
    padding-left: 28px;
}

.top_news_container .bottom_main a:hover {
    color: #b61c12;
    text-decoration: none;
    font-weight: bold;
}

.top_news_container .bottom_main a::before {
    content: "·";
    position: absolute;
    left: 8px;
    top: 45%;
    transform: translateY(-50%);
    font-size: 46px;
    color: #176eb6;
    line-height: 1;
}





.top_news_container .bottom_main_a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.top_news_container .bottom_main_a .news-container {
    overflow: hidden;
    white-space: nowrap;
    width: 620px;
    /* 固定宽度 */
    margin: 0;
    position: relative;
}

.top_news_container .bottom_main_a .news-content {
    display: inline-block;
    transition: transform 0.5s linear;
}

.top_news_container .bottom_main_a .news-content.scrolling {
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 20px));
    }

    /* 多移动20px确保完全滚出 */
}


.top_news_container .bottom_main_a a {
    display: block;
    width: 100%;
    font-size: 22px;
    line-height: 44px;
    height: 44px;
    overflow: hidden;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
    position: relative;
    padding-left: 28px;
}

.top_news_container .bottom_main_a a:hover {
    color: #b61c12;
    text-decoration: none;
    font-weight: bold;
}

.top_news_container .bottom_main_a a::before {
    content: "·";
    position: absolute;
    left: 8px;
    top: 45%;
    transform: translateY(-50%);
    font-size: 46px;
    color: #176eb6;
    line-height: 1;
}




















.b_img {
    width: 1280px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.b_img a {
    display: block;
    width: 100%;
    height: 100%;
}

.b_img img {
    display: block;
    width: 1280px;
    height: 100px;
}




.hero_image {
    width: 1280px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
    justify-content: space-between;
}

.hero_image_top {
    width: 100%;
    font-size: 33px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 40px;
}

.hero_image_top a {
    color: #000;
}

.hero_image_top a:hover {
    color: #b61c12;
    text-decoration: none;
}

.hero_image_left {
    width: 830px;
    height: 465px;
    overflow: hidden;
}

.hero_image_left .swiper {
    width: 100%;
    height: 100%;
}

.hero_image_left .swiper-slide {
    background: #fff;
    display: block;
    position: relative;
}

.hero_image_left .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.hero_image_left .swiper-slide p {
    position: relative;
    z-index: 99;
    bottom: 70px;
    display: block;
    width: 100%;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.hero_image_left .swiper-slide p a {
    color: #fff;
    display: block;
    width: 600px;
    height: 70px;
    overflow: hidden;
    padding-left: 20px;
}



.hero_image_left .swiper-button-next,
.hero_image_left .swiper-rtl .swiper-button-prev,
.hero_image_left .swiper-button-prev,
.hero_image_left .swiper-rtl .swiper-button-next {
    color: #fff;
    top: 430px;
}


.hero_image_left .swiper-button-next:after,
.hero_image_left .swiper-button-prev:after {
    font-size: 26px !important;
}


.hero_image_left .swiper-pagination {
    bottom: 24px;
    right: 40px;
}

.hero_image_left .swiper-pagination-bullet {
    margin: 0 5px;
    background-color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: #a0d0f7 !important;
    width: 40px !important;
    border-radius: 50px !important;
}



.hero_image_right {
    width: 430px;
}

.hero_image_right .top_content {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
}

.hero_image_right .top_content a {
    display: block;
    width: 210px;
    height: 90px;
}

.hero_image_right .top_content a img {
    display: block;
    width: 100%;
    height: 100%;
}


.hero_image_right .bottom_comtent {
    width: 430px;
    height: 374px;
    overflow: hidden;
    box-sizing: border-box;
    background-image: url("../images/index0004.png");
    background-repeat: no-repeat;
    background-position: left 165px;
    padding-top: 20px;
}

.hero_image_right .bottom_comtent a {
    display: block;
    height: 44px;
    line-height: 44px;
    width: 420px;
    overflow: hidden;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
    font-size: 16px;
    color: #000;
}


.hero_image_right .bottom_comtent a:hover {
    color: #b61c12;
}

.hero_image_right .bottom_comtent a:nth-child(1),
.hero_image_right .bottom_comtent a:nth-child(4) {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Microsoft YaHei', '\5FAE\8F6F\96C5\9ED1', sans-serif;
}

.hero_image_right .bottom_comtent a:nth-child(3) {
    margin-bottom: 46px;
}







.flash_news {
    width: 1280px;
    height: 80px;
    line-height: 80px;
    overflow: hidden;

    position: relative;
    background-image: url("../images/index0005.png");
    background-repeat: no-repeat;
    background-position: left center;
    margin: 0 auto;
}

.flash_news a {
    font-size: 16px;
    color: #000;
}

.flash_news a:hover {
    color: #b61c12;
    text-decoration: none;
}

.flash_news i {
    font-style: normal;
    padding: 0 15px;
}


.news-container {
    overflow: hidden;
    white-space: nowrap;
    width: 1160px;
    margin-left: 120px;
}

.news-wrapper {
    display: inline-block;
    animation: marquee 30s linear infinite;
}


.news-wrapper:hover {
    animation-play-state: paused;
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


















.weidu_news {
    width: 1280px;
    height: 327px;
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0;
}

.weidu_news_left {
    width: 840px;
    height: 325px;
    display: flex;
    justify-content: space-between;
    background-image: url("../images/index0006.png");
    background-repeat: no-repeat;
    background-position: 15px top;
    flex-wrap: wrap;
}

.weidu_news_content_more {
    height: 50px;
    width: 100%;
    line-height: 50px;
}

.weidu_news_content_more a {
    width: 80px;
    height: 40px;
    display: block;
    float: right;
}





.weidu_news_left .turn_img {
    width: 427px;
    height: 266px;
    overflow: hidden;
}

.weidu_news_left .turn_img .swiper {
    width: 100%;
    height: 100%;
}

.weidu_news_left .turn_img .swiper-slide {
    background: #fff;
    display: block;
    position: relative;
}

.weidu_news_left .turn_img .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.weidu_news_left .turn_img .swiper-slide p {
    position: relative;
    z-index: 99;
    bottom: 70px;
    display: block;
    width: 100%;
    height: 70px;
    line-height: 70px;
    font-size: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.weidu_news_left .turn_img .swiper-slide p a {
    color: #fff;
    display: block;
    width: 407px;
    height: 70px;
    overflow: hidden;
    padding-left: 10px;
}




.weidu_news_left .turn_img .swiper-pagination {
    bottom: 0;
    right: 6px;
}

.weidu_news_left .turn_img .swiper-pagination-bullet {
    margin: 0 5px;
    background-color: #fff;
    opacity: 1;
}

.weidu_news_left .turn_img .swiper-pagination-bullet-active {
    background-color: #df3429 !important;
    width: 26px !important;
    border-radius: 50px !important;
}

















.weidu_news_left .news_content {
    width: 398px;
    height: 265px;
    overflow: hidden;
    box-sizing: border-box;
    background-image: url("../images/index0004.png");
    background-repeat: no-repeat;
    background-position: left 128px;
    margin-left: 15px;
}







.weidu_news_left .news_content a {
    display: block;
    height: 40px;
    line-height: 40px;
    width: 398px;
    overflow: hidden;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
    font-size: 16px;
    color: #000;
}


.weidu_news_left .news_content a:hover {
    color: #b61c12;
}

.weidu_news_left .news_content a:nth-child(1),
.weidu_news_left .news_content a:nth-child(4) {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Microsoft YaHei', '\5FAE\8F6F\96C5\9ED1', sans-serif;
}

.weidu_news_left .news_content a:nth-child(3) {
    margin-bottom: 35px;
}









.weidu_news_right {
    width: 420px;
    background-image: url("../images/index0007.png");
    background-repeat: no-repeat;
    background-position: left 10px;
}

.weidu_news_right_more {
    height: 60px;
    line-height: 60px;
}

.weidu_news_right_more a {
    width: 80px;
    height: 40px;
    display: block;
    float: right;
}

.weidu_news_right_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.weidu_news_right_content a {
    display: block;
    width: 204px;
    height: 124px;
    margin-bottom: 17px;
}

.weidu_news_right_content img {
    display: block;
    width: 100%;
    height: 100%;
}








.a_img {
    width: 1280px;
    height: auto;
    margin: 40px auto 30px;
    overflow: hidden;
}

.a_img a {
    display: block;
    width: 100%;
    height: 100%;
}

.a_img img {
    display: block;
    width: 100%;
    height: auto;
}

.a_img div {
    width: 1280px;
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0;
}

.a_img div a {
    width: 48%;
}






.audio_news {
    width: 1280px;
    height: 380px;
    margin: 0 auto 40px;
    overflow: hidden;
    background-image: url("../images/index0009.png");
    background-repeat: no-repeat;
    background-position: 15px top;
}


.audio_news_more {
    height: 60px;
    line-height: 60px;
}

.audio_news_more a {
    width: 80px;
    height: 40px;
    display: block;
    float: right;
}

.audio_news .swiper {
    width: 100%;
    height: 316px;
}

.audio_news .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 236px;
    height: 316px;
    overflow: hidden;
    border-radius: 8px;
}

.audio_news .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.audio_news .swiper-slide em {
    display: block;
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 100;
    width: 100%;
    height: 20px;
    background-image: url("../images/index0010.png");
    background-repeat: no-repeat;
    background-position: left center;
}

.audio_news .swiper-slide a i {
    position: absolute;
    z-index: 99;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    top: 100px;
    background-position: bottom center;
    opacity: 0;
}

.audio_news .swiper-slide a:hover i {
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url("../images/index0012.png");
    background-repeat: no-repeat;
    background-position: center center;
    transition: 0.3s;
    opacity: 1;
}

.audio_news .swiper-slide img {
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}


.audio_news .swiper-slide a:hover img {
    bottom: 316px;
}









.national_news {
    width: 1280px;
    height: 350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.national_news_left {
    width: 840px;
    background-image: url("../images/index0011.png");
    background-repeat: no-repeat;
    background-position: 15px top;
}

.national_news_left_more {
    height: 60px;
    line-height: 60px;
}

.national_news_left_more a {
    width: 80px;
    height: 40px;
    display: block;
    float: right;
}




.national_news_left_bottom {
    width: 840px;
    height: 265px;
    display: flex;
    justify-content: space-between;
}

.national_news_left_bottom div {
    width: 275px;
    height: 280px;
}


.national_news_left_bottom div img {
    width: 275px;
    height: 192px;
}

.national_news_left_bottom div a {
    display: block;
    height: 70px;
    line-height: 25px;
    width: 100%;
    overflow: hidden;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
    font-size: 16px;
    color: #000;
    box-sizing: border-box;
    padding-right: 10px;
    position: relative;
    padding-left: 20px;
    padding-top: 20px;
}

.national_news_left_bottom div:hover a {
    color: #b61c12;
}

.national_news_left_bottom div a::before {
    content: "•";
    position: absolute;
    left: -13px;
    color: #999;
    font-size: 44px;
    line-height: 22px;
}










.national_news_right {
    width: 420px;
    height: 350px;
    overflow: hidden;
    box-sizing: border-box;
    background-image: url("../images/index0013.png");
    background-repeat: no-repeat;
    background-position: left 8px;
}




.national_news_right_more {
    height: 60px;
    line-height: 60px;
}

.national_news_right_more a {
    width: 120px;
        height: 40px;
        display: block;
}





.national_news_right .swiper {
    width: 100%;
    height: 290px;
    overflow: initial;
}

.national_news_right .swiper-slide {
    font-size: 18px;
}

.national_news_right .swiper-slide img {
    display: block;
    /*width: 396px;*/
    max-width: 396px;
    height: 103px;
    object-fit: cover;
    margin: 0 auto;
}

.national_news_right .swiper-button-next,
.national_news_right .swiper-button-prev {
    top: -28px;
    height: 18px;
    width: 16px;
    color: #fff;
    background-color: #999999;
    line-height: 18px;
    text-align: center;

}


.national_news_right .swiper-button-prev:after,
.national_news_right .swiper-button-next:after {
    font-size: 12px !important;
}


.national_news_right .swiper-button-prev,
.national_news_right .swiper-rtl .swiper-button-next {
    left: 320px !important;
}


.national_news_right .swiper-horizontal>.swiper-pagination-bullets,
.national_news_right .swiper-pagination-bullets.swiper-pagination-horizontal,
.national_news_right .swiper-pagination-custom,
.national_news_right .swiper-pagination-fraction {
    top: -54px !important;
    width: 50px !important;
    left: 341px !important;
    height: 30px;
}


.national_news_right .swiper-slide_bottom {
    background-image: url("../images/index0015.png");
    background-repeat: no-repeat;
    background-position: 10px 20px;
    height: 200px;
    box-sizing: border-box;
    padding-left: 30px;
    padding-top: 8px;
}

.national_news_right .swiper-slide_bottom a {
    display: block;
    height: 36px;
    line-height: 36px;
    width: 398px;
    overflow: hidden;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
    font-size: 16px;
    color: #000;
}


.national_news_right .swiper-slide_bottom a:hover {
    color: #b61c12;
}






.publication_news {
    width: 1280px;
    height: 290px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
}

.publication_news_left {
    width: 810px;
    background-image: url("../images/index0016.png");
    background-repeat: no-repeat;
    background-position: 15px top;
}

.publication_news_left_more {
    height: 60px;
    line-height: 60px;
}

.publication_news_left_more a {
    width: 80px;
    height: 40px;
    display: block;
    float: right;
}


.publication_news_left_bottom {
    width: 810px;
    height: 230px;
    display: flex;
    justify-content: space-between;
}

.publication_news_left_bottom div {
    width: 250px;
    height: 185px;
    border-bottom: 4px solid #0461d6;
    transition: 0.2s;
}

.publication_news_left_bottom div:hover {
    width: 272px;
    height: 213px;
    border-bottom: 4px solid #df3429;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: 0.2s;
    margin-top: -12px;
}

.publication_news_left_bottom div a {
    display: block;
    height: 40px;
    line-height: 40px;
    width: 100%;
    overflow: hidden;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
    font-size: 16px;
    color: #000;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}

.publication_news_left_bottom div img {
    width: 100%;
    height: 141px;
    object-fit: cover;
    object-position: center;
}



.publication_news_left_bottom div:hover a {
    height: 57px;
    line-height: 24px;
    padding-top: 6px;
}





.publication_news_right {
    width: 450px;
    height: 246px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 60px;
    background-image: url("../images/index0004.png");
    background-repeat: no-repeat;
    background-position: center 12px;
}









.news_news {
    width: 1280px;
    height: 415px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.news_news_content {
    width: 415px;
    height: 415px;
    background-repeat: no-repeat;
    background-position: left top;
}

.news_news_content_more {
    height: 50px;
    line-height: 50px;
}

.news_news_content_more a {
    width: 80px;
    height: 40px;
    display: block;
    float: right;
}

.news_news_education {
    height: 415px;
    background-image: url("../images/index0023.png");
}


.news_news_economics {
    height: 415px;
    background-image: url("../images/index0024.png");
}


.news_news_health {
    height: 415px;
    background-image: url("../images/index0025.png");
}





.news_news_content_bottom {
    height: 360px;
    background-image: url("../images/index0026.png");
    background-position: left 258px;
    background-repeat: no-repeat;
}

.news_news_content_bottom img {
    display: block;
    margin: 0 auto 13px;
    width: 100%;
    height: 233px;
    object-fit: cover;
    object-position: center;

}

.news_news_content_bottom span {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    padding-left: 20px;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
}

.news_news_content_bottom span a {
    display: block;
    color: #000;
    overflow: hidden;
    /* 溢出隐藏 */
    text-overflow: ellipsis;
    /* 文本溢出显示省略号 */
    white-space: nowrap;
}

.news_news_content_bottom span a:hover {
    color: #b61c12;
}


.news_news_content_bottom span i {
    display: block;
    font-style: normal;
    color: #6e6e6e;
    margin-left: 10px;
}



.culture_news {
    width: 1280px;
    height: 466px;
    margin: 0 auto;
    background-image: url("../images/index0027.png");
    background-repeat: no-repeat;
    background-position: 15px top;
    overflow: hidden;
}


.culture_news_content_more {
    height: 50px;
    line-height: 50px;
}

.culture_news_content_more a {
    width: 80px;
    height: 40px;
    display: block;
    float: right;
}

.culture_news_bottom {
    width: 1280px;
    height: 417px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}


.culture_news_bottom div {
    position: relative;
    overflow: hidden;
}




.culture_news_bottom div span {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    top: 100%;
    transition: 0.2s;
    opacity: 0;
    z-index: 9;
    position: relative;
    overflow: hidden;
    color: #fff;
    justify-content: space-around;
    box-sizing: border-box;
    padding: 10px 20px;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
}

.culture_news_bottom div:hover span {
    top: 0;
    transition: 0.2s;
}

.culture_news_bottom div span:hover {
    transition: 0.2s;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.2);
}


.culture_news_bottom div span em {
    display: block;
    width: 42px;
    height: 4px;
    background-color: #f17815;
}

.culture_news_bottom div span p {
    display: block;
    font-size: 22px;
    line-height: 30px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-align: justify;
}

.culture_news_bottom div span i {
    font-style: normal;
    font-size: 18px;
    display: none;
    line-height: 28px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.culture_news_bottom div span a {
    display: block;
    width: 98px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    background-color: #df6501;
    align-self: end;
    transition: 0.2s;
}

.culture_news_bottom div span a:hover {
    background-color: #df5a01;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.2s;
}

.culture_news_bottom div img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: filter 0.3s;
}

.culture_news_bottom div span:hover~img {
    filter: blur(3px);
}



.culture_news_bottom_left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 480px;
    height: 416px;
}


.culture_news_bottom_left div:nth-child(1) {
    width: 50%;
    height: 240px;
}


.culture_news_bottom_left div:nth-child(2) {
    width: 50%;
    height: 240px;
}


.culture_news_bottom_left div:nth-child(3) {
    width: 100%;
    height: 176px;
}




.culture_news_bottom_center {
    width: 318px;
    height: 416px;
}

.culture_news_bottom_center span i {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}


.culture_news_bottom_right {
    height: 416px;
    width: 480px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.culture_news_bottom_left div span p,
.culture_news_bottom_right div span p {
    display: block;
    font-size: 20px;
    line-height: 30px;
}





.culture_news_bottom_right div:nth-child(1) {
    width: 100%;
    height: 176px;
}


.culture_news_bottom_right div:nth-child(2) {
    width: 50%;
    height: 240px;
}


.culture_news_bottom_right div:nth-child(3) {
    width: 50%;
    height: 240px;
}










.link {
    width: 100%;
    height: 195px;
    background-color: #f5f5f7;
    margin-top: 60px;
}

.link_content {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    height: 195px;
    overflow: hidden;
}

.link_content_top {
    width: 100%;
}


.link_content_top .lib_Menubox {
    height: 50px;
    line-height: 50px;
    position: relative;
}

.link_content_top .lib_Menubox ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    position: absolute;
    left: 0;
    height: 50px;
    text-align: left;
}

.link_content_top .lib_Menubox li {
    float: left;
    display: block;
    cursor: pointer;
    width: 100px;
    color: #6b6b6b;
    font-size: 18px;
    height: 25px;
    line-height: 25px;
    margin-top: 10px;
}

.link_content_top .lib_Menubox li.hover {
    color: #bf1818;
}

.link_content_top .lib_Menubox li:nth-child(1) {
    border-right: 1px solid #999;
    margin-right: 30px;
}

.link_content_top .lib_Contentbox {
    clear: both;
    height: 70px;
    font-family: 'Noto Serif SC', SimSun, "\5B8B\4F53", serif;
    width: 100%;
}

.link_content_top .lib_Contentbox a {
    color: #000;
    display: block;
    margin-right: 20px;
    float: left;
}















.link_content_bottom {
    display: flex;
}

.link_content_bottom a {
    display: block;
    color: #000;
}

.link_content_bottom i {
    display: block;
    margin: 0 20px;
    font-style: normal;
}




.footer {
    width: 1280px;
    height: auto;
    margin: 30px auto 40px;
}

.footer div {
    height: 36px;
    line-height: 36px;
    display: flex;
}

.footer div p {
    margin-right: 20px;
}

.footer img {
    display: block;
    margin-right: 10px;
    height: 25px;
    width: 25px;
    margin-top: 5px;
}

.footer a {
    color: #000;
}









.float-sidebar {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    width: 80px;
    height: 275px;
    border: 1px solid #e54b4b;
    border-radius: 10px;
    background-color: #fff2f2;
}

.qr-code-btn,
.back-to-top {
    width: 100%;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}


.qr-code-btn:nth-child(1) {
    border-radius: 10px 10px 0 0;
}

.back-to-top {
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #e54b4b;
    overflow: hidden;
}

.qr-code-btn:hover,
.back-to-top:hover {
    background: #b61c12;
    color: #fff;
}

.qr-code-btn:hover img {
    opacity: 1;
    visibility: visible;
}

.qr-code-btn img {
    display: block;
    position: absolute;
    right: 79px;
    top: 76%;
    transform: translateY(-50%);
    width: 87px;
    height: 87px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 120px !important;
}

.back-to-top:hover {
    background: #b61c12;
}

.back-to-top svg {
    fill: #333;
}

.back-to-top:hover svg {
    fill: #fff;
}