.banner {
    width: 100%;
    height: 100%;
    position: relative;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: linear-gradient(180deg, #014591 -15%, rgba(1, 69, 145, 0) 100%);
}

#scroll-down-arrow {
    cursor: pointer;
}

.header_box {
    box-sizing: border-box;
    padding: 5px 100px;
}

.header_top {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    padding: 10px 100px;
    position: relative;
    z-index: 99;
}

.header::before {
    content: '';
    width: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

/* 当页面出现滑动的时候，导航栏背景色变白 */
.header_active {
    background: #FFFFFF;
}

.header.header_active {
    opacity: 1;
}

.header_active .header_top {
    background: #014591;
}

.header_active .header1_top {
    background: #014591;
}

.header_active .nav_box .on a {
    color: #014591;
}

.header_active .nav_box li a {
    color: #333;
    /* font-weight:normal; */
}

.header_active .nav_box .sub ul {
    background: #FFFFFF;
}

.header_active .nav_box .sub li a {
    color: #333;
}

.header_active::before {
    background: #FFFFFF;
    box-shadow: 5px 5px 70px 10px #333;
}

.header.header_active .header_box {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1);
}

.header .header_box .logo .logo_white {
    display: block;
}

.header .header_box .logo .logo_blue {
    display: none;
}

.header.header_active .header_box .logo .logo_blue {
    display: block;
}

.header.header_active .header_box .logo .logo_white {
    display: none;
}


.banlist {
    width: 100%;
    position: relative;
}

.banlist .ban {
    position: absolute;
    left: 50%;
    top: 91%;
    z-index: 9;
    width: 50px;
    height: 50px;
    border-radius: 50% 50%;
    border: 1px solid #FFFFFF;

}


.banlist .ban img {
    position: absolute;
    left: 18px;
    top: 12px;
    animation: downico 1.5s ease-out infinite;
}

@keyframes downico {
    0% {
        top: 0;
        opacity: 1;
    }

    35% {
        top: 50%;
        opacity: 0;
    }

    65% {
        top: -50%;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

.banlist .swiper-slide img {
    width: 100%;
}

.banlist a,
.banlist .img img {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.platform {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 8;
}


/* 日期和搜索框 */
.header_week {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.week {
    color: #fff;
    display: flex;
}

.search-container {
    width: 193px;
    margin: 0 20px;
    position: relative;
}

.search-input {
    width: 100%;
    height: 32px;
    line-height: 32px;
    border-radius: 20px;
    outline: none;
    box-sizing: border-box;
    border: none;
    color: #9E9E9E;
    padding: 0 40px 0 15px;
}

.search-input::placeholder {
    color: #9E9E9E;
}

/* 搜索图标容器 */
.search-icon {
    position: absolute;
    right: 15px;
    top: 7px;
    width: 20px;
    height: 20px;
    background: url(../img/search-icon.png) no-repeat center;
    border: none;
}


.logo_nav {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 99;
}

.logo_nav .logo {
    display: flex;
    align-items: center;
}

.logo_nav .logo .logo_divider {
    width: 1px;
    height: 80px;
    border: 1px solid #fff;
    background-color: #fff;
    margin: 0 20px;
    opacity: 0.6;
}

.nav_box {
    margin-top: 20px;
}

.nav_box li {
    display: inline;
    align-items: center;
}

.nav {
    position: relative;
    z-index: 20;
    margin-top: 20px;
}

.nav>ul>li {
    position: relative;
    margin-left: 45px;
}

.nav>ul>li:nth-child(1).sub {
    display: none !important;
}

.nav>ul>li:nth-child(9) .sub {
    transform: translateX(-60%);
}

.nav_box li a {
    text-decoration: none;
}

nav>ul>li:nth-child(9) .sub::after {
    left: 60%;
    transform: translateX(-60%);
}

.nav>ul>li:nth-child(10) .sub {
    width: 300px;
}

.nav>ul>li:nth-child(10) .sub ul {
    padding: 20px;
}

.nav>ul>li:nth-child(10) .sub ul li {
    width: 100%;
}

.nav ul li .sub ul li {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.nav>ul>li>a {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.nav>ul>li>a::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-out;
}

.nav>ul>li:hover>a,
.nav>ul>li.on>a {
    font-weight: bold;
}

.nav>ul>li:hover>a::after,
.nav>ul>li.on>a::after {
    width: 100%;
}

.nav>ul>li .sub {
    position: absolute;
    width: 115px;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-out;
    opacity: 0;
    height: 0;
    box-sizing: border-box;
    overflow: hidden;
}


.nav>ul>li .sub ul {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, rgba(11, 76, 149, 0.8) 0%, rgba(70, 159, 104, 0.8) 100%);
    display: inline-block;
    flex-wrap: wrap;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 5px;
}

.nav>ul>li .sub ul li a {
    color: #FFFFFF;
    font-size: 16px;
    display: inline-block;
}

.nav>ul>li ul li {
    flex: 0 0 auto;
    width: calc(100% / 5);
    border-bottom: 0.5px dashed rgba(255, 255, 255, 0.4);
}

.nav>ul>li ul li:last-child {
    border-bottom: none;
}

.nav>ul>li ul li a {
    line-height: 30px;
    position: relative;
    padding-bottom: 5px;
}


.nav>ul>li ul li a:hover {
    font-weight: bold;
    color: #FFFFFF;
}

.nav>ul>li:hover .sub {
    opacity: 1;
    height: auto;
    top: 100%;
    overflow: visible;
}


.nav>ul>li .sch_blue {
    display: none;
}

.nav ul li {
    display: inline-block;
}

.nav ul li:hover {
    border-bottom: 2px solid #FFFFFF;
}

.platform {
    width: 625px;
    height: 84px;
    border-radius: 1000px 0 0 0;
    opacity: 0.8;
    background: linear-gradient(90deg, #0B4C95 0%, #469F68 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 0px;
}

.platform img {
    position: absolute;
    left: 80px;
    top: 15px;
}


/* ----------工作动态-------------- */

.content1 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.yinxing {
    width: 166px;
    position: absolute;
    display: flex;
    left: 57px;
    top: 110px;
}

.yinxing img {
    width: 100%;
}

.yinxing1 {
    width: 170px;
    position: absolute;
    display: flex;
    right: 0px;
    top: 70%;
}

.yinxing1 img {
    width: 100%;
}


.work_dynamic {
    width: 100%;
    height: 100%;
}

.column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0 35px 0;
}

.column .viewMore {
    width: 110px;
    height: 55px;
    background: url(../img/ckgd-logo.svg) no-repeat center;
}

.column .viewMore:hover {
    background: url(../img/ckgd-logo-hover.svg) no-repeat center;
}

.column .ckgd_logo {
    width: 110px;
    height: 55px;
    background: url(../img/ckgd-logo.svg) no-repeat center;
}

.column .ckgd_logo:hover {
    background: url(../img/ckgd-logo-hover.svg) no-repeat center;
}

.column .ckgd {
    width: 110px;
    height: 55px;
    background: url(../img/ckgd-logo.svg) no-repeat center;
}

.column .ckgd:hover {
    background: url(../img/ckgd-logo-hover.svg) no-repeat center;
}



/* 工作动态 */
.gzdt_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.gzdt_box .content {
    flex: 1;
    box-sizing: border-box;
    padding-left: 25px;
    margin-top: -14px;
}

.gzdt_slide .swiper-pagination-bullet {
    width: 65px;
    height: 65px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid #fff;
    opacity: 1;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.gzdt_slide .swiper-pagination-bullet-active {
    width: 87px;
    height: 87px;
    border: 4px solid #fff;
}

.gzdt_slide .title {
    font-size: 18px;
    font-weight: bold;
    margin: 0.3rem 0;
    height: 24px;
    line-height: 25px;
    position: relative;
}

.gzdt_slide .line {
    opacity: 0.2;
    position: relative;
}

.gzdt_slide .line::after {
    content: '';
    width: calc(100% - 15px);
    height: 1px;
    border-top: 1px dashed #E62903;
    position: absolute;
    left: 15px;
    top: -15px;
}

.gzdt_slide .line .dot {
    height: 5px;
    width: 5px;
    background: #E62903;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-17px);
    border-radius: 100%;
    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-out;
}

.gzdt_slide .line::before {
    content: '';
    height: 1px;
    width: 0;
    background: #E62903;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-15px);
    border-radius: 100%;
    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-out;
}

.gzdt_slide a:hover .line::before {
    width: calc(100% - 15px);
    height: 1px;
}

.gzdt_slide .desc {
    line-height: 30px;
    color: #999999;
    margin-bottom: 0.2rem;
    height: 60px;
}

.gzdt_slide .time {
    color: #999999;
}

.gzdt_slide .hit {
    color: #999999;
}

.gzdt_slide .time .iconfont {
    font-size: 20px;
    color: #E62A03;
    margin-right: 5px;
}

.gzdt_slide a {
    display: inline-block;
    width: 100%;
}

.gzdt_slide .pic img {
    width: 100%;
    height: 380px;
    /* height: 480px; */
}

.gzdt_slide .himg .text {
    position: relative;
    box-sizing: border-box;
    padding-top: 15px;
}

.gzdt_slide .himg .text .title {
    width: 100%;
    color: #0B0B0B;
}

.gzdt_slide .himg .text .title2 {
    opacity: 0.7;
    line-height: 28px;
    height: 56px;
    color: #858585;
    margin: 7px 0 23px 0;
}

.gzdt_slide .text .time_hitNum1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.gzdt_slide .text .time_hitNum1 .hitNum1 {
    margin-left: 20px;
}

.gzdt_slide .text .time_hitNum1 .time1 .icon {
    display: flex;
}

.gzdt_slide .text .time_hitNum1 .hitNum1 .icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gzdt_slide .text .time_hitNum1 .time1 .icon img {
    margin-right: 5px;
}

.gzdt_slide .text .time_hitNum1 .hitNum1 .icon img {
    margin-right: 5px;
}

.gzdt_slide .swiper-button-prev {
    width: 45px;
    height: 58px;
    background: rgba(1, 68, 139, 0.5);
    left: 0;
    top: 185px;
    margin-top: 0;
    text-align: center;
    line-height: 50px;
    color: #fff;
}

.gzdt_slide .swiper-button-next {
    width: 45px;
    height: 58px;
    background: rgba(1, 68, 139, 0.5);
    position: absolute;
    left: 0;
    top: 185px;
    right: 40px;
    margin-top: 0;
    text-align: center;
    line-height: 50px;
    color: #fff;
}

.gzdt_slide .swiper-button-prev img {
    width: 45px;
    height: 58px;
}

.gzdt_slide .swiper-button-next {
    left: auto;
    right: 0;
}

.gzdt_slide .layui-icon {
    font-size: 22px;
}

.gzdt_slide .swiper-button-next:hover,
.gzdt_slide .swiper-button-prev:hover {
    background: rgba(230, 41, 3, 0.5);
}

.gzdt_main {
    /* width: 860px; */
    width: 680px;
    /* padding: 30px 20px;
    background: linear-gradient(90deg, #EFF7FF 0%, rgba(239, 247, 255, 0) 100%); */
    position: relative;
}

.gzdt_main .swiper-slide {
    opacity: 0 !important;
}

.gzdt_main .swiper-slide-active {
    opacity: 1 !important;
}

.gzdt_main .swiper-pagination1 {
    position: absolute;
    right: 10px;
    bottom: 0;
    z-index: 99;
}

.gzdt_main .swiper-slide:hover .text .title {
    color: #0B4C95;
}

.gzdt_main .swiper-slide .pic img:hover {
    transform: scale(1.1);
    transition: all .5s;
    overflow: hidden;
}

.gzdt_main .swiper-slide:hover .time_hitNum1 .time {
    color: #0B4C95;
}

.gzdt_main .swiper-slide:hover .time_hitNum1 .hit {
    color: #0B4C95;
}

.content .panel {
    display: block;
}

.window {
    display: block;
}

.window li {
    list-style: none;
    position: relative;
}

.window ul li .con {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 13px;
    z-index: 1;
}

.window ul li:hover {
    background: #FFFFFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    z-index: 9;
}

.window ul li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    display: inline-block;
    border-bottom: 1px solid #429062;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.window ul li:hover::after {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.window ul li .con .title {
    width: 100%;
}


.window ul li::before {
    content: '';
    width: 75px;
    height: 71.34px;
    display: inline-block;
    background: url(../img/xiaohui.svg) no-repeat right;
    background-size: 100% 100%;
    position: absolute;
    right: 20px;
    top: 7px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.window ul li:hover::before {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.window ul li a {
    text-decoration: none;
    color: #0B0B0B;
    transition: all 0.4s ease-in-out;
}

.window ul li .time {
    display: flex;
    background: #EFF7FF;
    width: 80px;
    height: 65px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.window ul li .year {
    color: #9E9E9E;
}

.window ul li .day {
    color: #0B4C95;
    font-size: 24px;
}

.window ul li .text {
    flex: 1;
    box-sizing: border-box;
    padding-left: 20px;
}

.window ul li .title {
    font-size: 18px;
    line-height: 25px;
    height: 25px;
    color: #0B0B0B;
}

.window ul li .desc {
    opacity: 0.4;
    color: #0B0B0B;
    line-height: 21px;
    height: 21px;
    margin-top: 5px;
}

.window ul li:hover .time {
    background: #0B4C95;
    color: #FFFFFF;
}

.window ul li:hover .day {
    color: #FFFFFF;
}

.window ul li:hover .year {
    color: #FFFFFF;
}

.wave {
    margin-top: 60px;
}

.wave img {
    width: 100%;
}

.arrow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-container:hover .swiper-left,
.swiper-container:hover .swiper-right {
    opacity: 1;
}

.swiper-container .swiper-left,
.swiper-container .swiper-right {
    opacity: 0;
}

.swiper-button-next {
    right: 7px;
}

.swiper-button-prev {
    left: 0;
}

/* 通知公告*/
.noticeAd {
    width: 100%;
    height: 100%;
    background: url(../img/tzgg-bg.png), linear-gradient(180deg, #EAF4FF 0%, rgba(234, 244, 255, 0) 100%);
    padding-bottom: 75px;
}

.noticeAd .container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 89;
}

.noticeAd .column {
    padding: 0 0 35px 0;
}

.noticeAd .tzgg,
.noticeAd .zcfg {
    width: calc((100% - 40px) / 2);
}

.notice_content {
    width: 100%;
    height: 100%;
    margin-top: 20px;

}

.notice_content .dis {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.notice_content .single {
    width: calc((100% - 20px) / 2);
    height: 130px;
    box-sizing: border-box;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 0 23px;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    position: relative;
}

.notice_content .single::before {
    content: '';
    width: 307px;
    height: 125.22px;
    display: inline-block;
    background: url(../img/mark.png) top right no-repeat;
    background-size: cover;
    position: absolute;
    top: -2px;
    right: -2px;
    z-index: -1;
}

.notice_content .single:hover:before {
    background: url(../img/mark2.png) top right no-repeat;
    background-size: cover;
}

.notice_content .single::after {
    content: '';
    width: 82px;
    height: 78px;
    display: inline-block;
    background: url(../img/tzgg-ico.png) center no-repeat;
    background-size: cover;
    position: absolute;
    right: 20px;
    bottom: 25px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.notice_content .single:hover::after {
    opacity: 1;
}

.single .dete {
    color: #AFAFAF;
}

.single .dete::before {
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    background: url(../img/clock.svg) center no-repeat;
    background-size: cover;
    margin-right: 1px;
    position: relative;
    top: 1px;
}

.single .title {
    font-size: 18px;
    line-height: 30px;
    height: 60px;
    color: #3D3D3D;
    margin-top: 5px;
}

.single .detail {
    font-size: 16px;
}

.single .time {
    display: flex;
    align-items: center;
}

.single .time .month {
    font-size: 26px;
    color: #004386;
    font-weight: bold;
    opacity: .7;
}

.single .time .year {
    font-size: 18px;
    margin-left: 20px;
    color: #004386;
}


.single:hover .title {
    color: #0B4C95;
    /* font-weight: bold; */
}

.single:hover {
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #004386;
}

.single .detail1 {
    font-size: 14px;
    font-weight: 350;
    line-height: 30px;
    letter-spacing: normal;
    color: #999999;
}

/* 服务项目 */
.service {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.service .box1 {
    width: calc(100% / 2);
    background: red;
    border-radius: 0 500px 500px 0;
    position: absolute;
    top: 0;
    height: 560px;
    z-index: 1;
}

.service .box2 {
    width: calc(100% -(100% / 2));
    height: 559px;
    position: absolute;
    left: 700px;
    background: #ccc;
    z-index: 99;
}


/* 党建宣传 */
.party_build {
    width: 100%;
    height: 100%;
    position: relative;
    /* margin-top: 530px; */
}


.content2 {
    width: 100%;
    height: 100%;
    margin-top: 20px;
}

.img_content {
    width: 100%;
    height: 345px;
    display: flex;
}

.img_content>div:nth-child(1n) {
    margin-right: 40px;
}

.img_content div:nth-child(3) {
    margin-right: 0px;
}

.img_content .imgCon1 {
    width: 441px;
    height: 100%;
    background: linear-gradient(180deg, #EDEDED 0%, rgba(255, 255, 255, 0) 100%);
    display: flex;
    justify-content: center;
}

.img_content .imgCon1:hover {
    border-bottom: 1px solid #469F68;
    background: linear-gradient(0deg, #EAF4FF 0%, rgba(216, 216, 216, 0) 100%);
}

.img_content .imgCon1 .imgCon1_bg {
    width: 380px;
    height: 100%;
}

.img_content .imgCon1 .imgCon1_bg .image img {
    width: 380px;
    height: 214.7px;
    transition: transform 0.5s ease;
}

.img_content .imgCon1 .imgCon1_bg .image img:hover {
    transform: scale(1.1);
}

.img_content .imgCon1 .content {
    width: 380px;
    margin-top: 10px;
}

.img_content .imgCon1 .content .title {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    color: #0B0B0B;
    ;
}

.img_content .imgCon1:hover .content .title {
    color: #0B4C95;
}


.img_content .imgCon1 .content .text .time {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    font-weight: normal;
    margin-right: 5px;
    position: relative;
}

.img_content .imgCon1 .content .text .time .month {
    width: 51px;
}

.img_content .imgCon1 .content .text .time .month::after {
    content: '';
    width: 18px;
    height: 2px;
    background: #0B4C95;
    position: absolute;
    right: 0;
    top: 30px;
}

.img_content .imgCon1 .content .text .time .year {
    width: 33px;
    height: 30px;
    font-size: 14px;
    color: #9E9E9E;
    float: right;
    margin-right: 4px;
}

.img_content .imgCon1 .content .text .time .month {
    color: #0B4C95;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    font-weight: normal;
}

.img_content .imgCon1 .content .text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-sizing: border-box; */
}

.img_content .imgCon1 .content .text .cont {
    font-size: 14px;
    line-height: 25px;
    color: #9E9E9E;
}

/* 第二个盒子 */
.imgCon2 {
    width: 441px;
    height: 100%;
    background: linear-gradient(180deg, #EDEDED 0%, rgba(255, 255, 255, 0) 100%);
    display: flex;
    justify-content: center;
}

.imgCon2:hover {
    border-top: 1px solid #469F68;
    background: linear-gradient(180deg, #EAF4FF 0%, rgba(216, 216, 216, 0) 100%);
}


.imgCon2 .imgCon2_bg {
    width: 380px;
    margin-top: 20px;
}

.imgCon2 .imgCon2_bg .title {
    width: 380px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    color: #0B0B0B;
}

.imgCon2 .imgCon2_bg:hover .title {
    color: #0B4C95;
}

.imgCon2 .imgCon2_bg .text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.imgCon2 .imgCon2_bg .text .time {
    width: 51px;
    position: relative;
}

.imgCon2 .imgCon2_bg .text .time .month {
    width: 51px;
    font-size: 18px;
    color: #0B4C95;
    line-height: 30px;
}

.imgCon2 .imgCon2_bg .text .time .month::after {
    content: '';
    width: 18px;
    height: 2px;
    background: #0B4C95;
    position: absolute;
    right: 0;
    top: 30px;
}

.imgCon2 .imgCon2_bg .text .time .year {
    width: 33px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    color: #9E9E9E;
    float: right;
    margin-right: 4px;
}

.imgCon2 .imgCon2_bg .text .cont {
    width: 315px;
    height: 74px;
    font-size: 14px;
    font-weight: normal;
    line-height: 25px;
    display: flex;
    align-items: center;
    letter-spacing: normal;
    color: #9E9E9E;
}

.imgCon2 .imgCon2_bg .image img {
    width: 380px;
    height: 214.7px;
    transition: transform 0.5s ease;
}

.imgCon2 .imgCon2_bg .image img:hover {
    transform: scale(1.1);
}

/* 下层两个内容盒子 */
.content2 .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}

.content2 .list .left {
    width: calc((100% - 40px) / 2);
    height: 208px;
    padding: 20px;
    background: linear-gradient(180deg, #FFFDF5 0%, #FFFFFF 100%);
    box-sizing: border-box;
    border: 1px solid #D0D0D0;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
    position: relative;
}

.content2 .list .left:hover {
    border-bottom: 1px solid #469F68;
    background: linear-gradient(180deg, #EAF4FF 0%, #FFFFFF 100%);
}

.content2 .list .left a:hover {
    background: url(../img/xiaohui.svg) no-repeat right bottom;
    position: absolute;
}

.content2 .list .left a {
    color: #000;
}

.content2 .list .left .title {
    width: 614px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    margin-top: 20px;
}

.content2 .list .left:hover .title {
    color: #0B4C95;
}

.content2 .list .left .cont {
    width: 614px;
    height: 50px;
    font-size: 14px;
    font-weight: normal;
    /* text-align: justify; */
    color: #9E9E9E;
    line-height: 25px;
    margin-top: 10px;
}

.content2 .list .left .time_num {
    display: flex;
    justify-content: flex-start;
    height: 25px;
    line-height: 25px;
    color: #AFAFAF;
    margin-top: 20px;
}

.content2 .list .left .time_num .time {
    margin-right: 20px;
}

.content2 .list .left .time_num .time .icon {
    display: flex;
}

.content2 .list .left .time_num .time .icon img {
    margin-right: 5px;
}

.content2 .list .left .time_num .hitNum .icon {
    display: flex;
}

.content2 .list .left .time_num .hitNum .icon img {
    margin-right: 5px;
}

/* 右边的盒子 */

.content2 .list .right {
    width: calc((100% - 40px) / 2);
    height: 208px;
    padding: 20px;

    box-sizing: border-box;
    border: 1px solid #D0D0D0;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
}

.content2 .list .right:hover {
    border-bottom: 1px solid #469F68;
    background: linear-gradient(180deg, #EAF4FF 0%, #FFFFFF 100%);
}

.content2 .list .right a:link {
    color: #000;
}

.content2 .list .right a:visited {
    color: #000;
}

.content2 .list .right .title {
    width: 614px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    margin-top: 20px;
}

.content2 .list .right .title:hover {
    color: #0B4C95;
}

.content2 .list .right .cont {
    width: 614px;
    height: 50px;
    font-size: 14px;
    font-weight: normal;
    /* text-align: justify; */
    color: #9E9E9E;
    line-height: 25px;
    margin-top: 10px;
}

.content2 .list .right .time_num {
    display: flex;
    justify-content: flex-start;
    height: 25px;
    font-size: 14px;
    line-height: 25px;
    color: #AFAFAF;
    margin-top: 20px;
}

.content2 .list .right .time_num .time {
    margin-right: 20px;
}

.content2 .list .right .time_num .time {
    margin-right: 20px;
}

.content2 .list .right .time_num .time .icon {
    display: flex;
}

.content2 .list .right .time_num .time .icon img {
    margin-right: 5px;
}

.content2 .list .right .time_num .hitNum .icon {
    display: flex;
}

.content2 .list .right .time_num .hitNum .icon img {
    margin-right: 5px;
}

/* 图说能源 */
.img_energy {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    position: relative;
}

.img_energy .container .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.img_energy .swiper-pagination {
    position: static;
    text-align: center;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2;
    margin-right: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #0B9095;
}

.img_energy .swiper-slide {
    padding-left: 20px;
}

.img_energy .swiper-slide a {
    position: relative;
    z-index: 9;
}

.img_energy .swiper-slide img {
    width: 100%;
    height: 240px;
    transition: all 0.3s ease;
}

.img_energy .swiper-slide img:hover {
    transform: scale(1.1);
}

.img_energy .swiper-slide a::before {
    content: '';
    width: 425px;
    height: 160px;
    position: absolute;
    left: -15px;
    top: -20px;
    background: linear-gradient(180deg, #469F68 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.img_energy .swiper-wrapper>div {
    display: inline-block;
}

.img_energy .swiper-wrapper .swiper-slide a {
    color: #000;
}

.img_energy .swiper-slide a>div {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.img_energy .swiper-slide a:hover {
    color: #0B4C95;

}

.img_energy .swiper-slide {
    border-bottom: 1px solid #EAEAEA;
    box-sizing: border-box;
}

.img_energy .swiper-slide:hover {
    border-bottom: 1px solid #469F68;
}

.img_energy .swiper-slide a:hover::before {
    background: linear-gradient(180deg, #0B4C95 0%, rgba(255, 255, 255, 0) 100%);
}

.wave1 {
    width: 100%;
    /* height: 120px; */
    margin-top: 70px;
}

.wave1 img {
    width: 100%;
}

/* 页脚 */
.footer {
    background-color: #0B4C95;
}

.footer .container .footerInfo {
    width: 100%;
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
}

.footer .container .footerInfo .left {
    display: inline-block;
    width: 680px;
}

.footer .center {
    width: 420px;
}

.footer .center .friendship-links {
    display: flex;
    justify-content: flex-end;
}

.footer .footerInfo .left .footerLogo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footerLogo .collegeLogo {
    width: 100%;
    height: 70px;
}

.footerLogo .energyLogo {
    width: 221.05px;
    height: 35.69px;
}

.footerLogo .logo_divider {
    width: 1.16px;
    height: 58.33px;
    background-color: #fff;
    margin: 0 22.58px;
    opacity: 0.25;
}

.address_phone {
    display: flex;
    justify-content: space-between;
    margin-top: 33px;
}

.address_phone .address,
.phone {
    display: flex;
    align-items: center;
}

.address_phone .address img {
    width: 24px;
    height: 24px;
}

.address_phone .address span {
    width: 323px;
    height: 24px;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;

}


.address_phone .phone span {
    width: 220px;
    height: 24px;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-left: 5px;
}

.address_phone .phone img {
    width: 20px;
    height: 20px;
}

/* 右边二维码 */
.footer .right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 65px;
}

.footer .right .publicNumber {
    width: 110px;
    height: 110px;
    margin-right: 30px;
}

.footer .right .publicNumber img {
    width: 100%;
    height: 100%;
}

.footer .right .publicNumber>div {
    text-align: center;
    margin-top: 10px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 25px;
}

.footer .right .phoneWebsite>div {
    text-align: center;
    margin-top: 10px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 25px;
}

/* 版权 */

.footer .abso {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.footer .footerEnd {
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: center;
    font-size: 16px;
    line-height: 35px;
    color: #FFFFFF;
    margin-bottom: 38px;
}

.footer .footerEnd>div {
    opacity: 0.8;
}

.footer .footerEnd .name {
    margin-left: 10px;
}

.footer .footerEnd .recordNum {
    margin-left: 30px;
}

.footer .footerEnd .networkSecurity {
    margin-left: 30px;
}

/* 中间下拉菜单 */
.friendship-links {
    display: inline-block;
    position: relative;
}

/* 中间那条线 */
.footer .divider {
    width: 100%;
    height: 0px;
    opacity: 0.1;
    border-top: 1px solid #FFFFFF;
    margin-top: 65px;
}


/* 下拉按钮样式 */
.center {

    display: flex;
    justify-content: flex-end;
}

.center .box {
    width: 260px;
    height: 45px;
    background: #4878B4;
}

.center .box h3 {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    color: #fff;
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
    cursor: pointer;
    opacity: 0.8;
}

.center .box h3::before {
    content: '';
    width: 15px;
    height: 9px;
    background: url(../img/arrow.png) center no-repeat;
    background-size: cover;
    position: absolute;
    right: 20px;
    top: 22px;
}

.center .box ul {
    display: none;
}

.center .box:hover ul {
    display: inline;
}

.center .box ul li {
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #000;
    background: #FFFFFF;
}

.center .box ul li:hover {
    color: #0a42dd;
}

.center .box ul a {
    color: #333;
    font-size: 15px;
}

/* ------------------------------------------ */


.fwxm_zcfg {
    width: 100%;
    height: 560px;
    height: 464px;
    position: relative;
    background: #DEEEFF;
}

.fwxm_zcfg::before {
    content: '';
    width: 50%;
    height: 100%;
    display: inline-block;
    background: url(../img/fwxm-ico.jpg) center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0px 500px 500px 0px;
    z-index: 1;
}

.fwxm_zcfg .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.fwxm {
    width: 50%;
}

.zcfg {
    width: 50%;
}



.fwxm .services {
    display: flex;
    flex-wrap: wrap;
}

.fwxm .services .gsfw {
    width: 280px;
    margin-bottom: 35px;
    margin-right: 25px;
}

.fwxm .services .gsfw a {
    width: 100%;
    display: inline-block;
}


.fwxm .services .gsfw .info1 {
    width: 100%;
    height: 100%;
    border-radius: 1000px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
    box-sizing: border-box;
    padding: 12px 14px;
}

.fwxm .services .gsfw .info1 .disc {
    font-size: 22px;
    font-weight: bold;
    color: #0B0B0B;
    margin-left: 10px;
}

.fwxm .services .gsfw .img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background: #FFFFFF;
    box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}

.fwxm .services .gsfw1 .img {
    background: url(../img/gsfw-ico.png) center no-repeat;
}

.fwxm .services .gsfw1:hover .img {
    background: url(../img/gsfw-ico-hover.png) center no-repeat #0B4C95;
}

.fwxm .services .gsfw2 .img {
    background: url(../img/gdfw-ico.png) center no-repeat #fff;
}

.fwxm .services .gsfw2:hover .img {
    background: url(../img/gdfw-ico-hover.png) center no-repeat #0B4C95;
}

.fwxm .services .gsfw3 .img {
    background: url(../img/grfw-ico.png) center no-repeat #fff;
}

.fwxm .services .gsfw3:hover .img {
    background: url(../img/grfw-ico-hover.png) center no-repeat #0B4C95;
}

.fwxm .services .gsfw4 .img {
    background: url(../img/tqfw-ico.png) center no-repeat #fff;
}

.fwxm .services .gsfw4:hover .img {
    background: url(../img/tqfw-ico-hover.png) center no-repeat #0B4C95;
}

.fwxm .services .gsfw5 .img {
    background: url(../img/jlsffw-ico.png) center no-repeat #fff;
}

.fwxm .services .gsfw5:hover .img {
    background: url(../img/jlsffw-ico-hover.png) center no-repeat #0B4C95;
}

.fwxm .services .gsfw6 .img {
    background: url(../img/zhbgfw-ico.png) center no-repeat #fff;
}

.fwxm .services .gsfw6:hover .img {
    background: url(../img/zhbgfw-ico-hover.png) center no-repeat #0B4C95;
}

.fwxm .services .gsfw:hover .info1 .disc {
    color: #0B4A91;
}


.zcfg-list {
    list-style: none;
    margin-left: 25px;
}

.news-item {
    padding: 0px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;

}

.news-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 75px;
    border-bottom: 1px dashed #0B4C95;
    opacity: 0.4;
    left: 0;
}

.news-item:nth-child(2) {
    padding-top: 0;
}


/* 左侧圆点指示器 */
.news-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #469F68;
    border-radius: 50%;
}

.news-content {
    flex-grow: 1;
    font-size: 20px;
    color: #2C2C2C;
    margin-left: 20px;
    line-height: 75px;
}


.news-date {
    color: #999999;
    font-weight: 500;
    white-space: nowrap;
    padding-right: 25px;
}

/* 鼠标悬停效果 */
.news-content:hover {
    color: #0B4C95;
    cursor: pointer;
}

.news-item:hover {
    border-bottom: 1px solid #0B4C95;
}

.news-item:hover::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #0B4C95;
    border-radius: 50%;
}

/* list页面 */
html body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.header1 {
    width: 100%;
    /* height: 610px; */
    top: 0;
    position: fixed;
    left: 0;
    z-index: 99;
    /* background: url(../img/header_bg.jpg) center no-repeat; */
    background-size: cover;
}


.header1_top {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    padding: 10px 100px;
    position: relative;
    z-index: 99;
}

.header1::before {
    content: '';
    width: 100%;
    height: 198px;
    display: inline-block;
    background: linear-gradient(180deg, #014591 0%, rgba(1, 69, 145, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
}


/* 新闻动态 */
.news_dynamic {
    position: relative;
}

.news_dynamic .news_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

.news_header .news_letter {
    width: 112px;
    height: 41px;
    opacity: 1;
    font-size: 28px;
    font-weight: bold;
    color: #0B4C95;
}

.news_header .hen {
    position: absolute;
    left: 2px;
    top: 56px;
    width: 110px;
    height: 2px;
    background: #0B4C95;
}

.news_nav {
    color: #999999;
}

.news_nav a {
    line-height: 42px;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #999999;
}

.news_nav span:last-of-type {
    display: none;
}

.news_dynamic .divider {
    width: 100%;
    height: 0px;
    opacity: 0.2;
    border-top: 2px solid #0B4C95;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* 左侧导航栏目 */
.nav-demo {
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 导航栏样式 */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.navbar-item {
    position: relative;
    display: block;
    text-decoration: none;
    color: #1E1E1E;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-item a {
    color: #1E1E1E;
}

/* .navbar-item h3::after {
    content: "›";
    font-size: 18px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 10px;
} */
.navbar-item h3.on::after {
    color: #FFFFFF;
}

.navbar-item h3.on .btn,
.navbar-item h3:hover .btn {
    color: #fff;
}


.navbar-item h3 {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-item h3.on {
    font-size: 18px;
    background: #0B4C95;
}

.navbar-item h3.on a {
    color: #FFFFFF;
}

.navbar-item:hover h3 {
    color: #FFFFFF;
    font-size: 18px;
    background: #0B4C95;
}

.navbar-item:hover h3 a {
    color: #FFFFFF;
}

.navbar-item h3:hover::after {
    transform: rotate(90deg);
}

.navbar-item.active h3::after {
    color: #fff;
    transform: rotate(90deg);
}

/*.dropdown-menu {
    display: none;
}*/

.dropdown-menu li a {
    color: #6D6D6D;
}

.dropdown-menu li.on a {
    color: #0B4C95;
}

.dropdown-menu li:hover a {
    color: #0B4C95;
}

/* .navbar-item:hover .dropdown-menu {
    display: block;
    background: #EDF6FF;
} */

.dropdown-menu-item {
    padding: 20px 0 20px 0;
    text-decoration: none;
    display: block;
    font-size: 16px;
    position: relative;
}

.dropdown-menu-item li a {
    color: #6D6D6D;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.content3 {
    width: 100%;
    display: flex;
}

/* 右边内容栏目 */
/* 新闻列表样式 */
.news-container {
    width: 100%;
    padding: 40px 0;
    margin-left: 30px;
    background: #FFFFFF;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
}


.news-item1 a {
    width: 100%;
    height: 70px;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.news-list .news-item1 .news-content {
    margin-left: 45px;
}

.news-list .news-item1 {
    position: relative;
    box-sizing: border-box;

}

.news-list .news-item1 a::after {
    content: '';
    width: 100%;
    height: 0;
    position: absolute;
    top: 69px;
    border-bottom: 1px solid #D8D8D8;
    opacity: 0.5;
}

.news-item1:last-child {
    border-bottom: none;
}

/* 左侧圆点指示器 */
.news-list .news-item1::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #1e88e5;
    border-radius: 50%;
}

.news-content {
    flex-grow: 1;
    font-size: 18px;
    color: #2c3e50;
    margin-left: 20px;
}

/* 鼠标悬停效果 */
.news-item1:hover {
    background: #0B4C95;
    cursor: pointer;
}

.news-item1:hover::before {
    background-color: white;
}

.news-item1:hover .news-content {
    color: white;
}

.news-item1:hover .news-date {
    color: rgba(255, 255, 255, 0.9);
}

/* 分页器 */

.page-box {
    display: flex;
    justify-content: center;
    margin-top: 95px;
    margin-bottom: 60px;
}


/* detail页面 */
.detail {
    width: 100%;
    padding: 50px 45px;
    position: relative;
    box-sizing: border-box;
}

.detail .title {
    width: 100%;
    height: auto;
    font-size: 30px;
    font-weight: bold;
    line-height: 34px;
    color: #272727;
    text-align: center;
}

.detail .timer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.detail .timer div {
    line-height: 34px;
    color: #9E9E9E;
    margin-right: 20px;
}

/* .news_dynamic .divider {
    width: 100%;
    height: 0px;
    opacity: 0.6;
    border-top: 1px solid #D8D8D8;
    margin-top: 15px;
    margin-bottom: 30px;
} */

.detail .content .text {
    font-size: 18px;
    line-height: 40px;
    color: #323232;
}

.detail .content .text p {
    margin: 10px 0;
}

.detail .content .img {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 上一篇下一篇 */
.detail-page {
    background: #FFFFFF;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
    height: 80px;
    width: 100%;
    margin-left: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
}

.detail-page .box {
    width: calc((100% - 30px) / 2);
}

.detail-page .box a {
    font-size: 18px;
    line-height: 45px;
    color: #9E9E9E;
}

.detail-page .box a:hover {
    color: #0B4C95;
}


/* picture页面 */
.pic1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 0 30px;
    position: relative;
}

.pic1 .box {
    width: calc((100% - 61px) / 3);
    height: 235px;
    margin-right: 30px;
    margin-bottom: 30px;
    position: relative;
}

.pic1 .box:nth-child(3n) {
    margin-right: 0;
}

.pic1 .box::after {
    content: '';
    position: absolute;
    width: 315px;
    height: 0;
    bottom: 0;
    border-bottom: 0.75px solid #E4E4E4;
}

.pic1 .box:hover {
    box-sizing: border-box;
    border: 1px solid #0B4C95;
}

.pic1 .box:hover .text {
    text-align: center;
}



.pic1 .box .img {
    width: 100%;
    overflow: hidden;

}

.pic1 .box .img img {
    width: 100%;
    height: 177.69px;
    transition: transform 0.5s ease;
}

.pic1 .box .img:hover img {
    transform: scale(1.2);
}

.pic1 .box .text {
    font-size: 16px;
    color: #2E2E2E;
    margin-top: 20px;
}

.nav_box1 .nav-demo {
    position: sticky;
    top: 200px;
}


/* 分页器 */


/* picContent页面 */
.info {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

.info .box:hover {
    border-bottom: 1px solid #469F68;
}

.info .box {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    box-sizing: border-box;
}

.info .box a {
    display: flex;
    align-items: center;
}

.info .box .img {
    width: 302px;
    overflow: hidden;
}

.info .box .img img {
    width: 100%;
    height: 165px;
    transition: transform 0.5s ease;
}

.info .box .img img:hover {
    transform: scale(1.2);
}

.info .box .tt {
    flex: 1;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 15px;
}

.info .box .title {
    color: #262626;
    font-size: 16px;
    font-weight: bold;
    line-height: 25px;
}

.info .box:hover .title {
    color: #0B4C95;
}

.info .box .desc {
    line-height: 25px;
    color: #262626;
    opacity: 0.5;
    margin-top: 10px;
}

.info .box .time {
    line-height: 25px;
    color: #0B4C95;
    margin-top: 20px;
}


/* 分页器 */

.page-box {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.page-box .pagination {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.pb_sys_style1 .p_no_d {
    border: 1px solid #0B4C95 !important;
    color: #fff;
    background-color: #0B4C95 !important;
}

.pb_sys_style5 .p_no_d,
.pb_sys_style5 .p_no a:hover {
    border: 1px solid #0B4C95 !important;
    color: #fff;
    background-color: #0B4C95 !important;
}

#newskeycode249298 {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #aaa;
    font-size: 14pt;
    box-sizing: border-box;
    padding-left: 20px;
    position: relative;
    background-repeat: no-repeat;
    padding-top: 3px;
    border: 1px solid #D3D3D3;
    outline-color: #3d5adb;
    margin-bottom: 30px;
}

.textlist .box {
    width: 100%;
    height: 136px;
    border-radius: 5px 10px 10px 10px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 0 30px;
}

.textlist .box a {
    height: 100%;
    display: flex;
    align-items: center;
}

.textlist .box .dete {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2E5EC1;
    margin-right: 30px;
}

.textlist .box .tt {
    flex: 1;
}

.textlist .box .d {
    font-size: 24px;
    font-weight: bold;
}

.textlist .box .y {
    font-size: 16px;
    margin-top: 5px;
}

.textlist .box .title {
    font-size: 18px;
    color: #3D3D3D;
    line-height: 25px;
    height: 25px;
}

.textlist .box .desc {
    color: #999999;
    line-height: 25px;
    height: 50px;
    margin-top: 7px;
}

.textlist .box .dete2 {
    color: #999999;
    margin-top: 7px;
}

.textlist .box:hover .dete2 {
    color: rgba(255, 255, 255, 0.7);
}

.textlist .box:hover {
    background: #2E5EC1;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.textlist .box:hover .title,
.textlist .box:hover .dete {
    color: #fff;
    font-weight: bold;
}

.textlist .box:hover .desc {
    color: rgba(255, 255, 255, 0.7);
}

.content3 .content-bg {
    width: 100%;
}

.nav .nav_li6 .sub {
    width: 155px;
}

.nav .nav_li7 .sub {
    width: 155px;
}

.nav .nav_li8 .sub {
    width: 210px;
}


.zcfglist {
    width: 100%;
    margin-top: 20px;
}

.zcfglist .box {
    width: 100%;
    height: 70px;
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 0 17px;
}

.zcfglist .box:last-of-type {
    margin-bottom: 0;
}

.zcfglist .box a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zcfglist .box .title {
    color: #333;
    font-size: 18px;
    flex: 1;
    box-sizing: border-box;
    padding: 0 15px;
    position: relative;
}

.zcfglist .box .dete {
    width: 100px;
    text-align: right;
    color: #AFAFAF;
}

.zcfglist .box .title::before {
    content: '';
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    border: 0.7px solid #469F68;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.zcfglist .box .dete::before {
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    background: url(../img/clock.svg) center no-repeat;
    background-size: cover;
    margin-right: 1px;
    position: relative;
    top: 1px;
}

.zcfglist .box:hover {
    background: #0B4C95;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.zcfglist .box:hover .title {
    color: #fff;
}

.zcfglist .box:hover .title::before {
    border: 1px solid #fff;
}

.zcfglist .box:hover .dete::before {
    background: url(../img/dete2.svg) center no-repeat;
    background-size: cover;
}

.sznylist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
}

.sznylist .box {
    width: calc((100% - 24px) /2);
    height: 84px;
    border-radius: 100000px;
    background: #FFFFFF;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sznylist .box a {
    font-size: 22px;
    font-weight: bold;
    color: #0B4C95;
}

.sznylist .box:hover {
    background: #0B4C95;
}

.sznylist .box:hover a {
    color: #fff;
    font-weight: bold;
}

@media (min-width: 0px) and (max-width: 1366px) {
    .header_box .logo img {
        width: 50%;
        height: 50%;
    }

    .nav>ul>li {
        margin-left: 14px;
    }

    .nav>ul>li>a {
        font-size: 16px;
    }

    .nav {
        position: relative;
        left: -80px;
    }
}

@media screen and (max-width: 1600px) {
    .logo_nav .logo {
        width: 25%;
    }

    .logo_nav .logo h1 img {
        width: 100%;
    }

    .nav>ul>li {
        margin-left: 20px;
    }
}

@media screen and (max-width: 1920px) {
    .nav>ul>li {
        margin-left: 39px;
    }
}