.banner {
    width: 100%;
    position: relative;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header::before {
    content: '';
    width: 100%;
    height: 382px;
    display: inline-block;
    background: url(../img/mark.png) center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.head {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 9;
}

.head .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head h1 img {
    height: 77px;
}

.head h1 .img1 {
    display: block;
}

.head h1 .img2 {
    display: none;
}

.searchText {
    display: flex;
    align-items: center;
}

.searchText .link a {
    width: 98px;
    height: 36px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 16px;
}

.header .search {
    position: relative;
    margin-left: 30px;
}

.header .search input {
    border: none;
}

.header .search input.search-in {
    width: 300px;
    height: 45px;
    border-radius: 20px;
    line-height: 45px;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    outline: none;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.3);
}

.header .search .search-btn {
    position: absolute;
    right: 20px;
    top: 11px;
    border: none;
    width: 25px;
    height: 24px;
    background: url(../img/ss.png) center no-repeat;
}

/* Safari，Chrome WebKit browsers */
.search input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* 火狐 Mozilla Firefox 4 to 18 */
.search input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* 火狐 Mozilla Firefox 19+ */
.search input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Internet Explorer 10+ */
.search input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.navigation {
    width: 100%;
}

.nav {
    width: 100%;
    height: 66px;
    line-height: 66px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

.nav h3 a {
    color: #fff;
}

.nav .nLi {
    height: 66px;
    float: left;
    display: inline;
    text-align: center;
    position: relative;
}

.nav .nLi.last {
    margin: 0;
}

.nav .nLi h3 {
    height: 77px;
}

.nav .nLi h3 a {
    display: inline-block;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.nav .sub {
    display: none;
    width: 160px;
    top: 100%;
    position: absolute;
    background: #fff;
    line-height: 60px;
    left: 50%;
    border-top: 3px solid #144EBD;
    transform: translateX(-50%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.nav .sub li {
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000;
    zoom: 1;
    float: left;
    width: 100%;
    position: relative;
}

.nav .sub a {
    display: block;
    color: #2E2E2E;
    font-size: 16px;
}

.nav .sub a:hover {
    color: #014591;
    font-weight: bold;
}

/* .nav .on h3 a {
    color: #144EBD;
} */

.nav .nLi.on {
    border-top: 2px solid #144EBD;
}

.nav .sub li .three-nav {
    position: absolute;
    left: 100%;
    display: none;
    top: 0;
    width: 116px;
    background: rgba(20, 78, 189, 0.6);
    padding: 10px 0;
}

.nav .sub li .three-nav li a {
    color: #fff;
}

.nav .sub li:hover .three-nav {
    display: block;
}

.nav .nLi:hover .sub {
    display: block;
}

.header_active {
    background: #fff;
    box-shadow: -0.0625rem 0 0.625rem 0 rgb(0 0 0 / 7%), 0.3125rem 1.25rem 2.5rem 0 rgb(0 0 0 / 4%);
}

.header_active::before {
    display: none;
}

.header_active h1 .img1 {
    display: none;
}

.header_active h1 .img2 {
    display: block;
}

.header_active .nav .nLi h3 a {
    color: #333;
}

.header_active .head {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.header_active .searchText .link a {
    color: #707070;
    border: 1px solid #eee;
    background: #eee;
}

.header_active .search input.search-in {
    background: #eee;
    color: #B0B0B0;
    border: 1px solid #eee;
}

.header_active .search input.search-in::placeholder {
    color: #B0B0B0;
}

/* Safari，Chrome WebKit browsers */
.header_active .search input.search-in::-webkit-input-placeholder {
    color: #B0B0B0;
}

/* 火狐 Mozilla Firefox 4 to 18 */
.header_active .search input.search-in:-moz-placeholder {
    color: #B0B0B0;
}

/* 火狐 Mozilla Firefox 19+ */
.header_active .search input.search-in::-moz-placeholder {
    color: #B0B0B0;
}

/* Internet Explorer 10+ */
.header_active .search input.search-in:-ms-input-placeholder {
    color: #B0B0B0;
}


.header_active .search .search-btn {
    background: url(../img/ss2.png) center no-repeat;
}

/* ----- banner大图 ----- */
.banner1 {
    padding: 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
}

.banner1 ul li {
    width: 100%;
    overflow: hidden;
}

.banner1 ul li a {
    width: 100%;
    display: block;
}

.banner1 ul li .img {
    overflow: hidden;
    width: 100%;
}

.banner1 ul li .img img {
    opacity: 0;
    width: 100%;
}

.banner1 ul li .img .imgLi {
    width: 100%;
    transition: 0s;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: all 0.5s ease-in-out;
}

.banner1 ul li:hover .img .imgLi {
    transform: scale(1.05);
}

.banner1 ul li .img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.banner1 .swiper-prev,
.banner1 .swiper-next {
    position: absolute;
    left: 0;
    width: 34px;
    height: 58px;
    background: #144EBD;
    display: flex;
    align-items: center;
    justify-content: center;
    top: calc((100% - 58px) / 2);
    cursor: pointer;
    z-index: 9;
}

.banner1 .swiper-prev img,
.banner1 .swiper-next img {
    width: 8px;
}

.banner1 .swiper-next {
    left: auto;
    right: 0;
}

.banner1 .swiper-prev:hover,
.banner1 .swiper-next:hover {
    background: rgba(106, 33, 198, 0.7);
    backdrop-filter: blur(10px);
}

.banner1 .swiper-btn {
    width: auto;
    height: 26px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.banner1 .swiper-pagination {
    width: 100%;
    text-align: center;
    bottom: 20px;
}

.banner1 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 8px;
    opacity: 1;
    background: #fff;
    margin: 0 3px;
}

.banner1 .swiper-pagination-bullet-active {
    background: #144EBD;
}

.banner_box {
    width: 100%;
    position: relative;
}

.swiper-scroll-btn {
    z-index: 56;
    position: absolute;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    background: rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    border: 1.35px solid #D8D8D8;
    border-radius: 100%;
    overflow: hidden;
    cursor: pointer;
    bottom: 85px;
}

.swiper-scroll-btn .btn-icon {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: url(../img/down-icon2.png) no-repeat center center;
    cursor: pointer;
    animation: downico 1.5s ease-out infinite;
}

/* ----------------------------------- */

.main {
    width: 100%;
    position: relative;
    background: url(../img/content1Bg.jpg) center top no-repeat;
    background-size: 100% auto;

    /* background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/content1Bg.jpg); */
}

.main-bg2 {
    width: 100%;
    height: 847px;
    position: absolute;
    left: 0;
    bottom: 85px;
    z-index: 1;
    background: url(../img/yzsfwBg.png) center no-repeat;
    background-size: cover;

    /* 添加动画 */
    animation: floatBg 4s ease-in-out infinite alternate;
}

/* 定义浮动动画 */
@keyframes floatBg {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
        /* 向上浮动15px */
    }
}

.main-bg2 img {
    width: 100%;
}

.yzsfw {
    position: relative;
    z-index: 19;
    overflow: hidden;
}

.column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0 35px 0;
}

.column .title {
    box-sizing: border-box;
    padding: 0 32px;
    position: relative;
}

.column .title .star1 {
    width: 27px;
    height: 27px;
    background: url(../img/star1.png) no-repeat;
    position: absolute;
    left: 0;
    top: -11px;
    animation: pulse2 2s ease-in-out infinite;
}

.column .title .star2 {
    width: 16px;
    height: 16px;
    background: url(../img/star2.png) no-repeat;
    position: absolute;
    left: 140px;
    top: -22px;
    animation: pulse2 2s ease-in-out infinite;
}

.column .title::before {
    content: '';
    width: 188px;
    height: 57px;
    display: inline-block;
    background: url(../img/column-yuan.png) no-repeat;
    position: absolute;
    left: 0;
    top: -22px;
}

.column .title .en {
    color: #D0D0D0;
    text-align: center;
    margin-top: 5px;
    position: relative;
}

.column .title .en::before {
    content: '';
    width: 67px;
    height: 6px;
    display: inline-block;
    background: url(../img/column-en-ico1.png);
    margin-right: -25px;
}

.column .title .en::after {
    content: '';
    width: 67px;
    height: 6px;
    display: inline-block;
    background: url(../img/column-en-ico2.png);
    margin-left: -25px;
}

.column .more {
    width: 74px;
    height: 30px;
    background: url(../img/more-icon.png) center no-repeat;
    background-size: cover;
    display: inline-block;
}

.column .more:hover {
    background: url(../img/more-icon2.png) center no-repeat;
    background-size: cover;
}

.news {
    width: 100%;
    /* background: url(../img/content1Bg.jpg) center top no-repeat;
    background-size: cover; */
    position: relative;
    z-index: 11;
    overflow: hidden;
}

.tzgg {
    width: 100%;
    overflow: hidden;
}

.newSlide {
    width: 880px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    position: relative;
}

.newSlide .swiper-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.newSlide .swiper-slide .text {
    width: 100%;
    height: 170px;
    background: #fff;
    box-sizing: border-box;
    padding: 60px 30px 0 30px;
}

.newSlide .swiper-slide .date {
    width: 95px;
    height: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(203, 157, 114, 0.8);
    backdrop-filter: blur(10px);
    position: absolute;
    left: 30px;
    bottom: 127px;
}

.newSlide .swiper-slide .title {
    font-weight: bold;
    color: #202020;
    line-height: 30px;
    height: 30px;
}

.newSlide .swiper-slide .desc {
    line-height: 25px;
    height: 50px;
    text-align: justify;
    color: #9F9F9F;
    margin-top: 5px;
}

.newSlide .swiper-slide .d {
    font-size: 36px;
    color: #fff;
}

.newSlide .swiper-slide .y {
    color: #fff;
}

.newSlide .swiper-slide:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.newSlide .swiper-slide:hover .title {
    color: #144EBD;
}

.newSlide .swiper-prev,
.newSlide .swiper-next {
    position: absolute;
    left: 0;
    width: 52px;
    height: 58px;
    background: #144EBD;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 38%;
    cursor: pointer;
    z-index: 9;
}

.newSlide .swiper-prev img,
.newSlide .swiper-next img {
    width: 8px;
}

.newSlide .swiper-next {
    left: auto;
    right: 0;
}

.newSlide .swiper-prev:hover,
.newSlide .swiper-next:hover {
    background: rgba(106, 33, 198, 0.7);
    backdrop-filter: blur(10px);
}

.newlist {
    flex: 1;
    box-sizing: border-box;
    padding-left: 40px;
    height: 100%;
}



.newlist ul {
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    padding: 32px;
    position: relative;
}

.newlist-icon1 {
    width: 4px;
    height: 109px;
    background: linear-gradient(to bottom, #144EBD 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    transition: all 0.5s ease-in-out;
}

.newlist-icon2 {
    width: 109px;
    height: 4px;
    background: linear-gradient(to right, #144EBD 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    transition: all 0.5s ease-in-out;
}

.newlist-icon3 {
    width: 109px;
    height: 4px;
    background: linear-gradient(to left, #6B21C5 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    transition: all 0.5s ease-in-out;
}

.newlist-icon4 {
    width: 4px;
    height: 109px;
    background: linear-gradient(to top, #6B21C5 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    transition: all 0.5s ease-in-out;
}

.newlist li {
    width: 100%;
    padding-bottom: 21px;
    margin-bottom: 21px;
    border-bottom: 1px solid #DEE3F1;
    position: relative;
}

.newlist li a {
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.newlist li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #144EBD;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.newlist ul:hover .newlist-icon1,
.newlist ul:hover .newlist-icon4 {
    height: 100%;
}

.newlist ul:hover .newlist-icon2,
.newlist ul:hover .newlist-icon3 {
    width: 100%;
}

.newlist li:last-of-type {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.newlist li .date {
    color: #BEBEBE;
}

.newlist li .date::before {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../img/dete-yellow.png) center no-repeat;
    background-size: cover;
    margin-right: 3px;
    position: relative;
    top: 1px;
}

.newlist li .title {
    line-height: 30px;
    height: 60px;
    text-align: justify;
    color: #202020;
    margin-top: 5px;
}

.newlist li:hover::before {
    width: 100%;
}

.newlist li:hover .title {
    font-weight: bold;
    color: #144EBD;
}

.newlist li:hover a {
    left: 10px;
}

.nav-box {
    width: 100%;
    padding: 70px 0;
}

.nav-box ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nav-box ul li {
    width: 31.42%;
    height: 70px;
    border-radius: 200px;
    position: relative;
}

.nav-box ul li.li1 {
    background: #144EBD;
}

.nav-box ul li.li2 {
    background: #6A21C6;
}

.nav-box ul li.li3 {
    background: #147CBD;
}

.nav-box ul li a {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-box ul li .name {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.nav-box ul li:hover .name {
    left: 10px;
}

.nav-box ul li .ico {
    width: 94px;
    height: 94px;
    box-sizing: border-box;
    padding: 6px;
    border-radius: 50%;
    margin-right: 10px;
}

.nav-box ul li.li1 .ico {
    background: #144EBD;
}

.nav-box ul li.li2 .ico {
    background: #6A21C6;
}

.nav-box ul li.li3 .ico {
    background: #147CBD;
}

.nav-box ul li .ico_i {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-box ul li .ico_i::before {
    content: '';
    width: 63px;
    height: 63px;
    display: inline-block;
    border-radius: 50%;
    background: url(../img/yuan-icon1.png) no-repeat;
    position: absolute;
    left: 9.5px;
    top: 9.5px;
    animation: rotateClockwise 8s linear infinite;
}

.nav-box ul li .ico_i::after {
    content: '';
    width: 71px;
    height: 71px;
    display: inline-block;
    border-radius: 50%;
    background: url(../img/yuan-icon2.png) no-repeat;
    position: absolute;
    left: 5.5px;
    top: 5.5px;
    animation: rotateCounterClockwise 8s linear infinite;
}

.nav-box ul li .ico img {
    width: 38px;
}

/* 顺时针旋转动画 */
@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 逆时针旋转动画 */
@keyframes rotateCounterClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.nav-box ul li .more {
    position: absolute;
    right: 30px;
    top: 23px;
}

.nav-box ul li .more::before {
    content: '';
    width: 28px;
    height: 28px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    right: -9px;
    opacity: .3;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
    /* 添加呼吸动画 */
}

/* 呼吸动画效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes pulse2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.nav-box ul li .more img {
    position: relative;
    z-index: 5;
}

.djgz_aljz {
    width: 100%;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.bgImg {
    width: 100%;
    height: 986px;
    position: absolute;
    left: 0;
    right: 0;
    top: -345px;
    z-index: 1;
    /* background: url(../img/bgImg.jpg) center top no-repeat;
    background-size: 100% auto; */

    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/bgImg.jpg);
}

.bgImg img {
    width: 100%;
}

.djgz_aljz .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.djgz {
    width: 50%;
    background: #fff;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.55) 100%);
    backdrop-filter: blur(60px);
    box-shadow: 0px 4px 50px 0px rgba(50, 149, 219, 0.15);
    box-sizing: border-box;
    padding: 0 50px 50px 50px;
}

.djgzlist li {
    width: 100%;
    height: 90px;
    background: linear-gradient(90deg, #FCF6F1 0%, rgba(255, 244, 235, 0) 100%);
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.djgzlist li::before {
    content: '';
    width: 4px;
    height: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #CA9A6D;
    transition: all 0.5s ease-in-out;
    z-index: 9;
}


.djgzlist li a {
    position: relative;
    z-index: 8;
}

.djgzlist li .title {
    color: #323232;
    line-height: 25px;
    height: 25px;
    margin-bottom: 10px;
    transition: all .6s;
}

.djgzlist li .dete {
    color: #BEBEBE;
}

.djgzlist li .dete::before {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../img/dete-yellow.png) center no-repeat;
    background-size: cover;
    margin-right: 3px;
    position: relative;
    top: 1px;
}

.djgzlist li:hover::before {
    height: 100%;
}

.djgzlist li:hover .dete::before {
    background: url(../img/dete-white.png) center no-repeat;
    background-size: cover;
}

.djgzlist li:hover .title {
    color: #fff;
    font-weight: bold;
}

.djgzlist li:hover .dete {
    color: #fff;
}

.djgzlist li .bg {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #144EBD;
    z-index: 1;
}



.djgzSlide {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0 12px 12px 0;
    margin-bottom: 30px;
}

.djgzSlide::before {
    content: '';
    width: 403px;
    height: 105px;
    background: #CA9A6D;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
}

.djgzSlide .swiper-slide {
    opacity: 0 !important;
}

.djgzSlide .swiper-slide-active {
    opacity: 1 !important;
}

.djgzSlide .swiper-slide a {
    display: flex;
    flex-wrap: wrap;
}

.djgzSlide .swiper-slide .img {
    width: 260px;
}

.djgzSlide .swiper-slide .img img {
    width: 100%;
    height: 148px;
    object-fit: cover;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.djgzSlide .swiper-slide .text {
    flex: 1;
    box-sizing: border-box;
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(13.08px);
}

.djgzSlide .swiper-slide .title {
    font-weight: bold;
    color: #202020;
    line-height: 30px;
    height: 60px;
    margin-bottom: 30px;
}

.djgzSlide .swiper-slide .dete {
    color: #BEBEBE;
}

.djgzSlide .swiper-slide:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.djgzSlide .swiper-slide:hover .title {
    color: #144EBD;
}


.djgzSlide .swiper-pagination {
    right: 34px;
    bottom: 32px;
}

.djgzSlide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D8D8D8;
    opacity: 1;
    margin: 0 4px;
}

.djgzSlide .swiper-pagination-bullet-active {
    background: #144EBD;
}


.aljz {
    width: 50%;
    background: #fff;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.55) 100%);
    backdrop-filter: blur(60px);
    box-shadow: 0px 4px 50px 0px rgba(50, 149, 219, 0.15);
    box-sizing: border-box;
    padding: 0 50px 50px 50px;
}

.aljzlist li {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    background: #fff;
    background: rgba(236, 240, 243, 0.2);
    box-shadow: 1px 1px 2px 0px rgba(255, 255, 255, 0.3),
        -1px -1px 2px 0px rgba(209, 217, 230, 0.5),
        inset -18px 18px 30px 0px rgba(209, 217, 230, 0.2),
        inset 18px -18px 30px 0px rgba(209, 217, 230, 0.2),
        inset -18px -18px 30px 0px rgba(255, 255, 255, 0.9),
        inset 18px 18px 30px 0px rgba(209, 217, 230, 0.9);
    margin-bottom: 32px;
    box-sizing: border-box;
    padding: 30px 32px;
    position: relative;
}

.aljzlist li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 3px solid #1A4BBE;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease-in-out;
    border-radius: 20px;
}

.aljzlist li .title {
    color: #212121;
    line-height: 25px;
    height: 25px;
    margin-bottom: 10px;
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.aljzlist li .text p {
    line-height: 28px;
    text-align: justify;
    color: #838383;
}

.aljzlist li .text p img {
    margin-right: 5px;
}

.aljzlist li:hover::before {
    width: 100%;
    border-radius: 20px;
}

.aljzlist li:hover .title {
    color: #144EBD;
    font-weight: bold;
    left: 10px;
}


/* 双创风采 */

.scfc {
    width: 100%;
    background: url(../img/scfcBg.png) center no-repeat;
    background-size: cover;
}

.scfcSlide {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0 32px 80px 32px;
}

.scfcSlide .swiper-slide {
    width: 57.5%;
    flex-direction: column;
}

.scfcSlide .swiper-slide .img {
    width: 100%;
    overflow: hidden;
}

.scfcSlide .swiper-slide .img img {
    width: 100%;
    /* height: 443px; */
    aspect-ratio: 16/9;
    /* border-radius: 10px; */
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.scfcSlide .swiper-slide-active:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}


.scfcSlide .swiper-slide .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    line-height: 64px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    padding: 0 15px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
}

.scfcSlide .swiper-slide-active .title {
    opacity: 1;
}

.scfcSlide .swiper-prev,
.scfcSlide .swiper-next {
    width: 64px;
    height: 64px;
    background: #144EBD;
    box-sizing: border-box;
    border: 1.48px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 50%;
    top: 37%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    right: 0;
    cursor: pointer;
    z-index: 99;
}

.scfcSlide .swiper-prev img,
.scfcSlide .swiper-next img {
    height: 20px;
}

.scfcSlide .swiper-prev {
    right: auto;
    left: 0;
}

.scfcSlide .swiper-prev:hover,
.scfcSlide .swiper-next:hover {
    background: #6A21C6;
}

.scfcSlide .swiper-pagination1 {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    display: none;
}

.scfcSlide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    margin: 0 4px;
    background: rgba(0, 56, 140, 0.42);
}

.scfcSlide .swiper-pagination-bullet-active {
    background: #00388C;
}

.yzsfw .column {
    justify-content: center;
}

.yzsfw_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.yzsfw_list .box {
    width: calc((100% - 40px) / 5);
    height: 330px;
    border-radius: 0px 0px 500px 500px;
    background: linear-gradient(0deg, #E8F6FC 0%, rgba(255, 255, 255, 0) 100%);
    box-sizing: border-box;
    padding: 0 76px;
    padding-bottom: 45px;
    display: flex;
    align-items: flex-end;
}

.yzsfw_list .box2,
.yzsfw_list .box4 {
    border-radius: 500px 500px 0px 0px;
    background: linear-gradient(180deg, #E8F6FC 0%, rgba(255, 255, 255, 0) 100%);
    padding-top: 45px;
    align-items: flex-start;
}

.yzsfw_list .box .ico {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.yzsfw_list .box .ico::before {
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    border: 1px dashed rgba(106, 33, 198, 0.2);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.yzsfw_list .box .ico img {
    transition: transform 0.5s;
}

.yzsfw_list .box p {
    font-size: 24px;
    font-weight: bold;
    color: #1E1E1E;
    text-align: center;
    margin-top: 15px;
}

.yzsfw_list .box a {
    display: flex;
    flex-direction: column;
}

.yzsfw_list .box2 a,
.yzsfw_list .box4 a {
    flex-direction: column-reverse;
}

.yzsfw_list .box2 p,
.yzsfw_list .box4 p {
    margin: 0 0 15px 0;
}

.yzsfw_list .box:hover .ico img {
    animation: jello 1s linear;
}

.yzsfw_list .box:hover::before {
    animation: rotateCounterClockwise 8s linear infinite;
}

.yzsfw_list .box:hover p {
    color: #144EBD;
}

/* ---------------------------------------------------------- */

.footer {
    width: 100%;
    /* height: 316px; */
    background: url(../img/footerBg.jpg) center no-repeat;
    background-size: cover;
}

.banq {
    width: 100%;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.banq p {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.banq p br {
    display: none;
}

.banq p a {
    color: rgba(255, 255, 255, 0.5);
}

.foot {
    width: 100%;
    padding: 53px 0 46px 0;
}

.foot .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.foot_right {
    display: flex;
    align-items: center;
}

.code {
    width: 108px;
    border-radius: 5px;
    background: #fff;
    box-sizing: border-box;
    padding: 5px;
    margin-left: 25px;
}

.code img {
    width: 98px;
    height: 98px;
}

.code p {
    width: 90%;
    margin: 0 auto;
    height: 23px;
    line-height: 23px;
    text-align: center;
    border-radius: 3px;
    background: #144EBD;
    opacity: 0.7;
    color: #fff;
    margin-top: 8px;
}

.yqlj .box {
    width: 248px;
    box-sizing: border-box;
    border: 1px solid rgba(216, 216, 216, .3);
    margin-right: 70px;
    position: relative;
}

.yqlj .box h3 {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0 18px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    position: relative;
}

.yqlj .box h3::before {
    width: 16px;
    height: 8px;
    display: inline-block;
    background: url(../img/jt.png) center no-repeat;
    content: '';
    position: absolute;
    right: 18px;
    top: 20px;
}

.yqlj .box ul {
    position: absolute;
    bottom: 100%;
    left: -1px;
    width: calc(100% + 2px);
    background: #EAF6FF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0px 0px;
    box-sizing: border-box;
    padding: 0 18px;
    display: none;
    z-index: 99;
}

.yqlj .box ul li {
    width: 100%;
    line-height: 24px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.yqlj .box ul li::before {
    content: '';
    width: 5px;
    height: 10px;
    display: inline-block;
    background: url(../img/yqlj-li-ico.png) center no-repeat;
    position: absolute;
    right: 0;
    top: 18px;
}

.yqlj .box ul li:hover::before {
    background: url(../img/yqlj-li-ico2.png) center no-repeat;
}

.yqlj .box ul li a {
    font-size: 16px;
    color: #2A2A2A;
    width: 92%;
    display: block;
}

.yqlj .box ul li:hover a {
    color: #144EBD;
}

.yqlj .box:hover {
    background: #fff;
    border-radius: 0px 0px 10px 10px;
}

.yqlj .box:hover h3 {
    font-weight: bold;
    color: #144EBD;
}

.yqlj .box:hover h3::before {
    background: url(../img/jt2.png) center no-repeat;
}

.ftlogo {
    margin-right: 107px;
}

.ftlogo img {
    height: 62px;
}

.foot_left_top {
    display: flex;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}

.contact p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.contact p:first-of-type {
    margin-right: 155px;
}

/* ----------------------------------------------------------- */

/* --- 通知公告 ---  */



.tzggBox {
    width: calc(100% + 230px);
    margin-left: -115px;
    /* height: 500px; */
    position: relative;
    overflow: hidden;
    z-index: 99;
    border-radius: 15px;
}

.tzggBox .tzggBox_bg {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    z-index: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    -webkit-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
    background: #D0DFF4;
    border-radius: 25px;
    border-radius: 15px;
}

.tzggBox.active .tzggBox_bg {
    width: 100%;
}

.tzggBox_bg img {
    width: 100%;
    border-radius: 15px;
}

.tzggBox_bg::before {
    width: 98%;
    content: '';
    height: 22px;
    display: inline-block;
    background: #fff;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.tzggBox_bg::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/tzgglist_bg.png) center no-repeat;
    background-size: cover;
    top: 12px;
    bottom: 22px;
    width: 100%;
    z-index: -1;
    border-radius: 15px;
}

.tzggBox.active .tzgglist {
    opacity: 1;
}

.tzgglist {
    width: 100%;
    opacity: 0;
    box-sizing: border-box;
    padding: 12px 53px 22px 53px;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 1s linear 1s;
    -o-transition: all 1s linear 1s;
    transition: all 1s linear 1s;
    border-radius: 15px;
}

.tzgglist_bg {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0 60px;
    padding-bottom: 30px;
    /* box-shadow: -0.0625rem 0 0.625rem 0 rgb(0 0 0 / 7%), 0.3125rem 1.25rem 2.5rem 0 rgb(0 0 0 / 4%); */
}

.tzgglist_bg .column {
    padding-top: 85px;
}

.tzggBox_bg .s10-rjz {
    width: 53px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    border-radius: 15px;
}

.tzggBox_bg .s10-ljz {
    width: 53px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    border-radius: 15px;
}

.tzgglist ul {
    width: 100%;
    position: relative;
    z-index: 99;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tzgglist ul li {
    width: calc((100% - 81px) / 3);
    margin-right: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    border-right: 1px solid rgba(216, 216, 216, .5);
    padding-bottom: 25px;
    margin-bottom: 50px;
    position: relative;
}

.tzgglist ul li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #6A21C6;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.tzgglist ul li:nth-child(3n) {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.tzgglist ul li a {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.tzgglist ul li:hover a {
    top: -10px;
}

.tzgglist ul li .dete {
    width: 108px;
    height: 68px;
    display: inline-block;
    background: url(../img/tzgg-dete-bg.png) center no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 10px;
    color: #144EBD;
}

.tzgglist ul li .d {
    font-size: 24px;
    font-weight: bold;
}


.tzgglist ul li .title {
    flex: 1;
    line-height: 30px;
    height: 60px;
    text-align: justify;
    color: #1E1E1E;
}

.tzgglist ul li:hover::before {
    width: calc(100% - 40px);
}

.tzgglist ul li:nth-child(3):hover::before,
.tzgglist ul li:nth-child(6):hover::before {
    width: 100%;
}

.tzgglist ul li:hover .dete {
    background: url(../img/tzgg-dete-bg2.png) center no-repeat;
    color: #fff;
}

.tzgglist ul li:hover .title {
    font-weight: bold;
    color: #6A21C6;
}

.tzgglist ul li:nth-child(4),
.tzgglist ul li:nth-child(5),
.tzgglist ul li:nth-child(6) {
    margin-bottom: 0;
}

#scrolltop {
    width: 64px;
    height: 64px;
    box-sizing: border-box;
    text-align: center;
    position: fixed;
    right: 25px;
    bottom: 20px;
    z-index: 100;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #144EBD;
    box-sizing: border-box;
    border: 1.48px solid #FFFFFF;
}

#scrolltop span {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: url("../img/toTop.png") center no-repeat;
}

/* -------------------  移动端 ------------------- */
.mbheader {
    width: 100%;
    display: none;
    height: 60px;
    background: #0065D1;
    z-index: 1000;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
}

.mbheader .header-con {
    width: 90%;
    margin: 0 auto;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mbheader .header-con h1 a {
    display: inline-block;
}

.mbheader .header-con .logo {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.mbheader .header-con .logo a {
    width: 100%;
    display: inline-block;
}

.mbheader .header-con .logo img {
    max-height: 30px;
    /* max-width: 100%; */
}

.sp_header {
    height: 50px;
    background: #004898;
    position: fixed;
    z-index: 10;
    width: 100%;
}

.sp_logo {
    padding: 10px;
    float: left;
    height: 50px;
    width: 70%;
}

.sp_logo img {
    margin: auto;
    width: 100%;
    height: 100%;
}

.sp_nav {
    width: 30px;
    position: relative;
    cursor: pointer;
    height: 30px;
    margin-top: 10px;
    flex: none;
}

.sp_nav span {
    display: block;
    background: #fff;
    width: 30px;
    height: 2px;
    position: absolute;
    transition: all ease 0.35s
}

.sp_nav span:nth-of-type(1) {
    top: 0px
}

.sp_nav span:nth-of-type(2) {
    top: 10px
}

.sp_nav span:nth-of-type(3) {
    top: 20px
}

.sp_nav_se span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
    width: 0
}

.sp_nav_se span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg)
}

.sjj_nav {
    position: absolute;
    z-index: 999;
    background: #eee;
    width: 100%;
    height: auto !important;
    padding-bottom: 30px;
    font-size: 14px;
    line-height: 30px;
    top: -1000%;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
}

.nav_show {
    top: 80px
}

.sjj_nav>ul>li:first-child {
    overflow: hidden;
    border-top: 0
}

.sjj_nav>ul>li:first-child>a {
    float: left;
    width: calc(100% - 70px)
}

.sjj_nav>ul>li:first-child .language {
    float: right;
    width: 70px;
    overflow: hidden;
    line-height: 30px;
    margin-top: 5px
}

.sjj_nav>ul>li:first-child .language a {
    width: 35px;
    float: left;
    border-left: 1px #ddd solid;
    text-align: center;
    color: #999;
}

.sjj_nav ul li i {
    position: absolute;
    top: 5px;
    right: 0px;
    border-left: 1px #ddd solid;
    height: 30px;
    padding: 0px 7px 0 7px;
}

.sjj_nav ul li i svg {
    transform: rotate(-90deg);
    transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se svg {
    transform: rotate(0deg)
}

.sjj_nav ul li {
    border-top: 1px #ddd solid;
    margin-left: 20px;
    position: relative;
    line-height: 40px;
    font-size: 13px
}

.sjj_nav>ul>li:last-child {
    border-bottom: 1px #ddd solid;
}

.sjj_nav ul li ul {
    display: none
}

.sjj_nav ul li a {
    color: #666;
    /* width: 80% */
}

.sjj_nav ul li ul li a {
    color: #999;
    display: block;
    text-align: left;
}

.sjj_nav ul li i svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

.sjj_nav ul li .sjj_nav_i_se svg {
    fill: #004898
}

.sjj_nav ul li ul li>ul {
    margin-left: 10px
}

.nydt img {
    width: 100%;
}

.nmain {
    width: 100%;
    background: url(../img/nmainBg.png) center no-repeat;
    background-size: cover;
}

.nmain .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.subNav {
    width: 300px;
    box-sizing: border-box;
    border: 1px solid #fff;
    margin-top: -105px;
    border-radius: 15px;
    position: sticky;
    z-index: 22;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    top: 225px;
}

.subNav .name {
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    width: 100%;
    height: 105px;
    line-height: 105px;
    box-sizing: border-box;
    padding-left: 30px;
    border-radius: 15px 15px 0px 0px;
    background: rgba(20, 78, 189, 0.8);
    backdrop-filter: blur(10px);
}

.subNav .list {
    box-sizing: border-box;
    padding-bottom: 25px;
    background: #fff;
}

.subNav .list li {
    width: 100%;
    position: relative;
}

.subNav .list .li::before {
    content: '';
    width: 18px;
    height: 85px;
    display: inline-block;
    background: url(../img/subNav-icon.png) no-repeat;
    position: absolute;
    left: 100%;
    top: 0;
    opacity: 0;
}

.subNav .list .li.on::before {
    opacity: 1;
}

.subNav .list li h3 {
    width: 100%;
    line-height: 70px;
    height: 70px;
    font-size: 18px;
    box-sizing: border-box;
    padding: 0 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subNav .list li h3 .icon {
    width: 12px;
    height: 100%;
    display: inline-block;
    background: url(../img/nav-jt1.png) center center no-repeat;
    cursor: pointer;
}

.subNav .list li h3 a {
    flex: 1;
    display: inline-block;
    color: #272727;
    border-bottom: 1px solid #EDEDED;
}

.subNav .list li.on h3 {
    background: #144EBD;
}

.subNav .list li.on h3 a {
    color: #fff;
    font-weight: bold;
    border: none;
}

.subNav .list li:hover h3 a {
    color: #144EBD;
    font-weight: bold;
}

.subNav .list li.on:hover h3 a {
    color: #fff;
}

.subNav .list li:hover h3 .icon {
    background: url(../img/nav-jt2.png) center no-repeat;
}

.subNav .list li.on h3 .icon {
    background: url(../img/nav-jt3.png) center no-repeat;
    transform: rotate(90deg);
}

.subNav .list ul {
    background: #EDF3FF;
    box-sizing: border-box;
    padding: 0 30px 0 43px;
    display: none;
}

.subNav .list ul li {
    width: 100%;
    line-height: 50px;
    height: 50px;
    border-bottom: 1px solid rgba(20, 78, 189, 0.1);
    position: relative;
}

.subNav .list ul li:last-of-type {
    border: none;
}

.subNav .list ul li::before {
    content: '';
    width: 6px;
    height: 12px;
    display: inline-block;
    background: url(../img/nav-jt1.png) no-repeat;
    position: absolute;
    right: 0;
    top: 28px;
}

.subNav .list ul li a {
    color: #272727;
    font-size: 16px;
}

.subNav .list ul li.on a,
.subNav .list ul li:hover a {
    color: #144EBD;
    font-weight: bold;
}

.subNav .list ul li.on::before,
.subNav .list ul li:hover::before {
    background: url(../img/nav-jt2.png) no-repeat;
}

.subNav .list li.on ul {
    display: block;
}

.mcontent {
    width: calc(100% - 300px - 50px);
}

.crumbs {
    width: 100%;
    height: 40px;
}

.crumbs .list {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.crumbs .list a {
    color: #757575;
}

.crumbs .list span {
    color: #757575;
    margin: 0 3px;
}

.crumbs .list a:last-of-type {
    color: #144EBD;
}

.crumbs .list span:last-of-type {
    display: none;
}

.listBg {
    width: 100%;
    box-sizing: border-box;
    padding: 40px;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 95px;
}

.textlist ul li {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #EEEEEE;
    margin-bottom: 30px;
    padding: 25px 15px;
    position: relative;
}

.textlist ul li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #144EBD;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.textlist ul li a {
    display: flex;
    align-items: center;
}

.textlist ul li .date {
    width: 108px;
    height: 68px;
    display: inline-block;
    background: url(../img/tzgg-dete-bg.png) center no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 10px;
    color: #144EBD;
}

.textlist ul li .d {
    font-size: 24px;
}

.textlist ul li .text {
    flex: 1;
}

.textlist ul li .title {
    color: #333;
    line-height: 25px;
    height: 25px;
}

.textlist ul li .desc {
    color: #9E9E9E;
    line-height: 21px;
    height: 21px;
    margin-top: 5px;
}

.textlist ul li:hover {
    background: linear-gradient(180deg, #EFF5FF 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.textlist ul li:hover .date {
    background: url(../img/tzgg-dete-bg3.png) center no-repeat;
    color: #fff;
}

.textlist ul li:hover .title {
    color: #144EBD;
    font-weight: bold;
}

.textlist ul li:hover::before {
    width: 100%;
}

.textlist ul li .date2 {
    color: #B9B9B9;
    display: none;
}

.textlist ul li .date2::before {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../img/dete-blue.png) center no-repeat;
    background-size: cover;
    margin-right: 3px;
    position: relative;
    top: 1px;
}

.piclist ul li {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #EEEEEE;
    margin-bottom: 30px;
    position: relative;
}

.piclist ul li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #144EBD;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.piclist ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.piclist ul li .img {
    width: 300px;
}

.piclist ul li .img img {
    width: 100%;
}

.piclist ul li .text {
    width: calc(100% - 300px);
    box-sizing: border-box;
    padding: 20px 25px;
}

.piclist ul li .title {
    color: #353535;
    line-height: 25px;
    height: 25px;
}

.piclist ul li .desc {
    line-height: 25px;
    height: 50px;
    text-align: justify;
    color: #A4A4A4;
    margin: 12px 0 15px 0;
}

.piclist ul li .date {
    color: #B9B9B9;
}

.piclist ul li .date::before {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(../img/dete-blue.png) center no-repeat;
    background-size: cover;
    margin-right: 3px;
    position: relative;
    top: 1px;
}

.piclist ul li:hover {
    background: linear-gradient(180deg, #EFF5FF 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.piclist ul li:hover::before {
    width: 100%;
}

.piclist ul li:hover .title {
    color: #144EBD;
    font-weight: bold;
}

.picture ul {
    display: flex;
    flex-wrap: wrap;
}

.picture ul li {
    width: calc((100% - 65px) / 3);
    margin-right: 32px;
    margin-bottom: 30px;
    background: #EDEDED;
}

.picture ul li:nth-child(1),
.picture ul li:nth-child(2) {
    width: calc((100% - 32px) / 2);
}

.picture ul li:nth-child(3n + 2) {
    margin-right: 0;
}


.picture ul li .img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.picture ul li .title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    height: 50px;
    color: #272727;
    box-sizing: border-box;
    padding: 0 15px;
}

.picture ul li:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.picture ul li:hover .title {
    background: #144EBD;
    color: #fff;
    font-weight: bold;
}

.con-detail {
    box-sizing: border-box;
    border: 1px solid #E7E7E7;
    margin-bottom: 75px;
}

.con-detail .titler {
    width: 100%;
    box-sizing: border-box;
    padding: 25px 35px;
    background: #EDF5FF;
    border-left: 3px solid #144EBD;
}

.titler .title {
    font-size: 30px;
    font-weight: bold;
    color: #292929;
    margin-bottom: 20px;
}

.titler .timer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.titler .timer .dete {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.titler .timer .dete>div {
    color: #9E9E9E;
    margin-right: 25px;
}

.detail {
    box-sizing: border-box;
    padding: 30px 0;
}

.detail .dtl {
    padding-bottom: 30px;
}

.detail.danye .dtl {
    padding: 0;
    border: none;
}

.detail p {
    font-size: 18px;
    line-height: 40px;
    color: #323232;
    margin: 10px 0;
    display: block !important;
}

.detail img,
.detail video {
    max-width: 100%;
    height: auto;
}

.detail-page .box {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #EEEEEE;
    padding: 0 20px;
}

.detail-page .box:first-of-type {
    margin-bottom: 20px;
}

.detail-page .box a {
    color: #9E9E9E;
}

.detail-page .box:hover {
    box-sizing: border-box;
    border: 1px solid #144EBD;
}

.detail-page .box:hover a {
    color: #144EBD;
}

.danye {
    border: none;
    padding: 0;
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

.share {
    zoom: 1;
}

.share:after {
    content: "";
    display: block;
    clear: both;
}

.share a {
    float: left;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-left: 13px;
    cursor: pointer;
    display: block;
}

.share a i {
    display: block;
    width: 26px;
    height: 26px;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    transition: .4s all;
}

.share a:hover i {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.share #share-icon {
    width: 26px;
    height: 26px;
    float: left;
    display: none;
}

.share #share-icon img {
    width: 100%;
    height: 100%;
}

.share .share-qqzone {
    background: none
}

.share .share-qqzone i {
    background: url("../img/shareqqzone.png") center center no-repeat;
    background-size: 80%;
}

.share .share-qqzone:hover {
    background-color: none;
}

.share .share-wechat {
    position: relative;
    background-color: none;
}

.share .share-wechat i {
    background: url("../img/sharewechat.png") center center no-repeat;
    background-size: 80%;
}

.share .share-wechat:hover {
    background-color: none;
}

.share .share-weibo {
    background: none;
}

.share .share-weibo i {
    background: url("../img/shareweibo.png") center center no-repeat;
    background-size: 80%;
}

.share .share-weibo:hover {
    background-color: none;
}

.share .bg-code {
    left: -36px;
    z-index: 10;
}

.share .qrcode {
    position: absolute;
    top: 36px;
    border: 1px solid #ccc;
    padding: 5px;
    background: #fff;
    display: none;
    width: 100px;
    left: -130%;
    z-index: 11;
    text-align: center;
}

.share .close-btn {
    position: absolute;
    background: #fff;
    color: #000;
    font-size: 12px;
    z-index: 12;
    width: 12px;
    height: 12px;
    line-height: 12px;
    text-align: center;
    right: -39px;
    top: 50px;
    display: none;
    cursor: pointer;
}

.fenxiang {
    display: flex;
    align-items: center;
    color: #9C9C9C;
    margin-left: 30px;
}

.fontSize {
    display: flex;
    align-items: center;
    color: #9C9C9C;
}

.fontSize span {
    margin-right: 15px;
    cursor: pointer;
}

.fontSize .on {
    color: #0073C3;
    font-weight: bold;
}

.detail .large p,
.detail .large p span {
    font-size: 34px !important;
    line-height: 55px !important;
}

.detail .big p,
.detail .big p span {
    font-size: 26px !important;
    line-height: 45px !important;
}

.searchlist {
    width: 100%;
    margin-top: 25px;
}

.searchlist .box {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: -0.0625rem 0 0.625rem 0 rgb(0 0 0 / 7%), 0.3125rem 1.25rem 2.5rem 0 rgb(0 0 0 / 4%);
}

.searchlist .box .title {
    color: #333;
    line-height: 25px;
    height: 25px;
}

.searchlist .box .desc {
    color: #999;
    line-height: 21px;
    height: 42px;
    margin: 5px 0 10px 0;
}

.searchlist .box .dete {
    color: #666;
}

#newskeycode252643 {
    box-sizing: border-box;
    width: 100%;
    height: 45px;
    line-height: 45px;
    outline: none;
    border-radius: 5px;
    border: 1px solid #999;
    background: #fff;
    padding: 0 15px;

}

#searchBtn {
    position: absolute;
    right: 0;
    width: 60px;
    height: 45px;
    background: #144EBD;
    border: none;
    color: #fff;
    border-radius: 5px;
}

.pb_sys_style1 .p_no_d {
    border: 1px solid #144EBD !important;
    color: #fff;
    background-color: #144EBD !important;
}

/* ----------------------------------------------- */

.yzsfw_list .box path,
.yzsfw_list .box rect {
    fill: none;
    stroke: url(#master_svg0_2_459);
    stroke-width: 1;
    stroke-dasharray: 600;
    stroke-dashoffset: 0;

    /* stroke: #144EBD; */
    /* stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: none;
    stroke-dashoffset: 0; */
}

.yzsfw_list .box:hover path,
.yzsfw_list .box:hover rect {
    animation: drawLine 2s ease-in-out forwards;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 600;
    }

    100% {
        stroke-dashoffset: 0;
    }
}