header {
    width: 100%;
    position: relative;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}

.header::before {
    content: '';
    width: 100%;
    min-height: 290px;
    display: inline-block;
    background: url(../img/mark.png) center top no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.head {
    padding: 25px 0 30px 0;
    position: relative;
    z-index: 9;
}

.head .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head h1 .img2 {
    display: none;
}

.head h1 img {
    height: 62px;
}

.topRight {
    display: flex;
    align-items: center;
}

.topLink {
    cursor: pointer;
}

.header .search {
    width: 176px;
    position: relative;
    margin-left: 18px;
}

.header .search input {
    border: none;
}

.header .search input.search-in {
    width: 176px;
    height: 32px;
    border-radius: 5px;
    line-height: 32px;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 14px;
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .3);
}

.header .search input.search-btn {
    width: 14px;
    height: 14px;
    background: url(../img/ss.png) center no-repeat;
    position: absolute;
    right: 15px;
    top: 9px;
}

/* Safari，Chrome WebKit browsers */
.search input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* 火狐 Mozilla Firefox 4 to 18 */
.search input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* 火狐 Mozilla Firefox 19+ */
.search input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Internet Explorer 10+ */
.search input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.navgation {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.navgation ul {
    height: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navgation ul .nli {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex: 1; */
    padding: 0 16px;
}

.navgation ul .nli.li6 {
    width: 74px;
    flex: auto;
}

.navgation ul .nli::before {
    content: '';
    width: 100%;
    height: 0;
    border-bottom: 2px solid #fff;
    border-radius: 3px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -1px;
    opacity: 0;
}

.navgation ul .nli.on::before,
.navgation ul .nli:hover:before {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.navgation ul li h3 a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.navgation ul li.on h3 a,
.navgation ul li:hover h3 a {
    font-weight: bold;
}

.navgation ul .sub {
    position: absolute;
    width: 120%;
    height: auto;
    left: -10%;
    background: #fff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 999;
    border-top: 3px solid #004898;
    padding: 10px 0;
}

.navgation ul li:hover .sub {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
}

.navgation ul .sub li {
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    position: relative;
}

.navgation ul .sub li:last-of-type {
    border: none;
}

.navgation ul .sub li a {
    color: #2E2E2E;
    font-size: 16px;
}

.navgation ul .sub li:hover a {
    color: #004898;
}

.navgation ul .sub2 {
    width: 130%;
    position: absolute;
    left: 100%;
    top: 40%;
    flex-direction: column;
    background: #fff;
    z-index: 99;
    height: auto;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
    display: none !important;
}

.navgation ul .sub li:hover .sub2 {
    display: flex !important;
}

.navgation ul .sub2 li {
    height: 35px;
    line-height: 35px;
}

.navgation ul .sub2 li a {
    color: #404040;
    font-weight: normal;
    font-size: 16px;
}

.navgation ul .sub li:hover .sub2 li a {
    color: #404040;
    font-weight: normal;
}

.navgation ul .sub li .sub2 li:hover a {
    color: #005492;
}

.header_active {
    background: #004898;
}

.header_active::before {
    display: none;
}

/* -------------------------------------------- */

.banlist {
    width: 100%;
    position: relative;
}

.banlist .swiper-slide a,
.banlist .swiper-slide img {
    width: 100%;
}

.banlist .swiper-prev,
.banlist .swiper-next {
    position: absolute;
    width: 34px;
    height: 58px;
    cursor: pointer;
    left: 0;
    top: calc((100% - 58px) / 2);
    background: rgba(0, 0, 0, .35);
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banlist .swiper-next {
    left: auto;
    right: 0;
    background: rgba(0, 0, 0, .35);
}

.banlist .swiper-next:hover,
.banlist .swiper-prev:hover {
    background: #0B4A93;
}

#scrolltop {
    width: 64px;
    height: 64px;
    box-sizing: border-box;
    text-align: center;
    position: fixed;
    right: 25px;
    bottom: 20px;
    z-index: 100;
    cursor: pointer;
    background: #0B4A93;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    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%);
    border: 1px solid #fff;
}

#scrolltop .iconfont {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: url(../img/toTop.png) center no-repeat;
    background-size: cover;
}

/* ----------------------------------------------------------- */

.content1 {
    width: 100%;
    padding-bottom: 100px;
    background: url(../img/content1Bg.jpg) center bottom no-repeat;
    background-size: 100% auto;
    overflow: hidden;
}

.about {
    width: 100%;
    padding: 70px 0 30px 0;
}

.about .title {
    font-size: 36px;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 30px;
}

.about .title a {
    color: #2C2C2C;
}

.about .desc {
    line-height: 30px;
    color: #858585;
    height: 90px;
    text-align: center;
}

.number {
    width: 100%;
    position: relative;
}

.number .img img {
    width: 100%;
}

.numlist {
    width: 100%;
    height: 126px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    box-sizing: border-box;
    padding: 0 40px;
}

.numlist .box {
    color: #fff;
}

.numlist .box .p2 {
    font-size: 18px;
}

.numlist .box .p1 {
    font-size: 20px;
}

.numlist .box .p1 span {
    font-size: 40px;
}


.news {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 100px;
}

.newSlide {
    width: 52.5%;
    position: relative;
}

.newSlide .swiper-slide a {
    display: inline-block;
    width: 100%;
}

.newSlide .swiper-slide .img {
    overflow: hidden;
}

.newSlide .swiper-slide .img img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    /* aspect-ratio: 16/9; */
}

.newSlide .swiper-slide .text {
    width: 100%;
    height: 84px;
    background: #125098;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newSlide .swiper-slide .title {
    color: #fff;
    font-weight: bold;
    line-height: 26px;
    height: 26px;
    margin-bottom: 10px;
}

.newSlide .swiper-slide .dete {
    opacity: .5;
    color: #fff;
}

.newSlide .swiper-pagination {
    bottom: 17px;
    right: 22px;
}

.newSlide .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 0.5;
    background: #fff;
    margin: 0 4px;
}

.newSlide .swiper-pagination-bullet-active {
    opacity: 1;
}

.newBox {
    width: calc(47.5% - 30px);
}

.tabHead {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.tabHead .title {
    display: flex;
    align-items: center;
}

.tabHead .title a {
    margin-right: 65px;
    box-sizing: border-box;
    padding-left: 20px;
    position: relative;
    opacity: 0.4;
}

.tabHead .title a::before {
    content: '';
    width: 0;
    height: 80%;
    display: inline-block;
    border-left: 4px solid #0B4A93;
    position: absolute;
    left: 0;
    top: 15%;
}

.tabHead .title a.on {
    opacity: 1;
}

.tabHead .title .name {
    font-size: 28px;
    font-weight: bold;
    color: #2C2C2C;
}

.tabHead .title .en {
    font-size: 13px;
    color: #2C2C2C;
    opacity: 0.5;
}

.tabHead .title a.on .name {
    font-size: 36px;
}

.tabHead .title a.on .en {
    font-size: 16px;
}

.tabHead .more {
    width: 130px;
    height: 50px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabHead .more a {
    display: none;
    color: #B0B0B0;
    font-size: 16px;
}

.tabHead .more a.on {
    display: block;
}

.tabHead .more a:hover,
.column .more:hover {
    color: #104F98;
}

.tabCount1 .item {
    display: none;
}

.tabCount .item.active {
    display: block;
}

.tabCount li.f {
    width: 100%;
}

.tabCount li.f .dete {
    width: 91px;
    height: 77px;
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid #125098;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tabCount li.f .dete .d {
    font-size: 24px;
    color: #125098;
}

.tabCount li.f .dete .y {
    opacity: 0.5;
    color: #125098;
}

.tabCount li.f a {
    width: 100%;
    display: flex;
    align-items: center;
}

.tabCount li.f .text {
    flex: 1;
    box-sizing: border-box;
    padding-left: 17px;
}

.tabCount li.f .title {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    color: #2E2E2E;
    height: 30px;
}

.tabCount li.f .xian {
    width: 100%;
    display: block;
    border-top: 1px solid rgba(46, 46, 46, .2);
    margin: 7px 0;
}

.tabCount li.f .desc {
    color: #2E2E2E;
    opacity: .5;
    line-height: 21px;
    height: 21px;
}

.tabCount li.f:hover .title {
    color: #104F98;
}

.tabCount li.n {
    width: 100%;
    margin-top: 21px;
}

.tabCount li.n a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabCount li.n .title {
    flex: 1;
    color: #333;
    line-height: 25px;
    height: 25px;
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.tabCount li.n .title::before {
    content: '◇';
}

.tabCount li.n .dete {
    opacity: 0.5;
    color: #333;
    width: 105px;
    text-align: right;
}

.tabCount li.n:hover .title {
    color: #104F98;
    left: 10px;
    transition: all 0.5s ease-in-out;
}



.column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 0 40px 0;
}

.column .title {
    box-sizing: border-box;
    padding-left: 20px;
    position: relative;
}

.column .title::before {
    content: '';
    width: 5px;
    height: 55px;
    background: #0B4A93;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 10px;
}

.column .title .name {
    font-size: 36px;
    font-weight: bold;
    color: #2C2C2C;
}

.column .title .en {
    color: #2C2C2C;
    opacity: .5;
    font-size: 16px;
}

.column .more {
    width: 130px;
    height: 50px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0B0B0;
    font-size: 16px;
}

.content3 {
    width: 100%;
    display: inline-block;
    background: url(../img/content3Bg.png) center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.sysxlist {
    width: 100%;
}

.sysxlist ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sysxlist li {
    width: calc((100% - 30px) / 2);
    height: 110px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
}

.sysxlist li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #0B4A93;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.sysxlist li a {
    display: flex;
    align-items: center;
}

.sysxlist li .dete {
    width: 80px;
    height: 70px;
    background: #EFF7FF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sysxlist li .d {
    font-size: 24px;
    color: #0B4C95;
}

.sysxlist li .y {
    color: #9E9E9E;
}

.sysxlist li .text {
    flex: 1;
    box-sizing: border-box;
    padding-left: 20px;
}

.sysxlist li .title {
    color: #0B0B0B;
    line-height: 25px;
    height: 25px;
    margin-bottom: 10px;
}

.sysxlist li .desc {
    opacity: 0.5;
    color: #0B0B0B;
    line-height: 21px;
    height: 21px;
}

.sysxlist li:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.sysxlist li:hover .dete {
    background: #0B4A93;
}

.sysxlist li:hover .d,
.sysxlist li:hover .y {
    color: #fff;
}

.sysxlist li:hover .title {
    color: #0B4A93;
}

.sysxSlide {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0 35px;
    margin-bottom: 60px;
}



.sysxSlide .swiper-slide {
    width: 60%;
    flex-direction: column;
}

.sysxSlide .swiper-slide .img {
    width: 100%;
    overflow: hidden;
}

.sysxSlide .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;
}

.sysxSlide .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);
}


.sysxSlide .swiper-slide .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 67px;
    background: rgba(0, 0, 0, 0.5);
    line-height: 67px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    padding: 0 15px;
    opacity: 0;
}

.sysxSlide .swiper-slide .title a {
    color: #fff;
    width: 100%;
    display: inline-block;
    height: 45px;
    line-height: 45px;
}

.sysxSlide .swiper-slide-active .title {
    opacity: 1;
}

.sysxSlide .swiper-prev,
.sysxSlide .swiper-next {
    width: 64px;
    height: 64px;
    background: #0B4A93;
    box-sizing: border-box;
    border: 1.19px solid #FFFFFF;
    border-radius: 50%;
    top: calc((100% - 64px) / 2);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    right: 0;
    cursor: pointer;
    z-index: 99;
}

.sysxSlide .swiper-prev {
    right: auto;
    left: 0;
}

/* .sysxSlide .swiper-prev:hover,
.sysxSlide .swiper-next:hover {
    background: #E3A62A;
} */

/* 优秀学子 */

.content4 {
    width: 100%;
    background: url(../img/content4Bg.jpg) center no-repeat;
    background-size: 100% 100%;
    padding-bottom: 106px;
    overflow: hidden;
}

.yxxzSlide {
    width: 100%;
    position: relative;
}

.yxxzSlide .swiper-slide {
    position: relative;
    box-sizing: border-box;
    padding: 0 42px;
}

.yxxzSlide .swiper-slide::before {
    content: '';
    width: 100%;
    height: 243px;
    background: linear-gradient(0deg, #EDF4FF 35%, #FFFAF3 100%);
    box-shadow: 0px 3.89px 29.17px 0px rgba(11, 74, 147, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    /* transition: all 0.5s ease-in-out; */
}

.yxxzSlide .swiper-slide .img {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.yxxzSlide .swiper-slide .img img {
    width: 100%;
    aspect-ratio: 3/4;
    /* height: 285px; */
    object-fit: cover;
}

.yxxzSlide .swiper-slide .img img {
    width: 100%;
}

.yxxzSlide .swiper-slide .text {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0;
}

.yxxzSlide .swiper-slide .title {
    font-weight: bold;
    color: #0B4A93;
    text-align: center;
    line-height: 35px;
    height: 35px;
}

.yxxzSlide .swiper-slide .xian {
    width: 90%;
    height: 0;
    border-top: 0.97px solid #0B4A93;
    opacity: .2;
    display: block;
    margin: 15px auto;
}

.yxxzSlide .swiper-slide .desc {
    color: #9E9E9E;
    text-align: center;
    line-height: 25px;
    height: 50px;
}

.yxxzSlide .swiper-slide:hover .img {
    box-sizing: border-box;
    border: 0.97px solid #0B4A93;
    box-shadow: 0px 3.89px 29.17px 0px rgba(11, 74, 147, 0.5);
    transition: all 0.5s ease-in-out;
}

.yxxzSlide .swiper-slide:hover::before {
    background: #EDF4FF;
    box-sizing: border-box;
    border: 0.97px solid #0B4A93;
    box-shadow: 0px 3.89px 29.17px 0px rgba(11, 74, 147, 0.1);
    /* transition: all 0.5s ease-in-out; */
}

.yxxzSlide .swiper-pagination1 {
    width: 100%;
    text-align: center;
    margin-top: 60px;
}

.yxxzSlide .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 4px;
    opacity: 1;
    background: #D8D8D8;
}

.yxxzSlide .swiper-pagination-bullet-active {
    background: #0B4A93;
}

/* ------------------------------- */

footer {
    width: 100%;
    background: url(../img/footerBg.jpg) center no-repeat;
    background-size: cover;
    padding-top: 65px;
}

.foot {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.ftlogo img {
    height: 54px;
    max-width: 100%;
}

.foot_left {
    width: 50%;
}

.codes {
    display: flex;
}

.codes .code {
    box-sizing: border-box;
    padding: 6px;
    background: #fff;
    border-radius: 5px;
    margin-left: 30px;
}

.codes .code img {
    width: 106px;
    height: 106px;
}

.codes .code p {
    width: 100px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 3px;
    background: #0B4A93;
    font-size: 15.4px;
    color: #fff;
    margin: 10px auto 0 auto;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact .box {
    display: flex;
    align-items: center;
    margin-right: 40px;
    margin-bottom: 32px;
}



.contact .box .ico {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .box .ico::before {
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    background: url(../img/contact-box.png) center no-repeat;
    background-size: 100% 100%;
    animation: rotategz linear 30s infinite;
    position: absolute;
    left: 0;
    top: 0;
}

@keyframes rotategz {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact .box .tt {
    box-sizing: border-box;
    padding-left: 30px;
}

.contact .box .tt p {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}

.contact .box .tt p:first-of-type {
    font-weight: bold;
}

.banq {
    width: 100%;
    padding: 25px 0;
}

.banq p {
    color: rgba(255, 255, 255, .8);
    text-align: center;
    line-height: 25px;
}

.banq p a {
    color: rgba(255, 255, 255, .8);
}

.banq p br {
    display: none;
}

/* ---党建工作 */

.content5 {
    width: 100%;
    padding-bottom: 100px;
    overflow: hidden;
    background: url(../img/content5Bg.jpg) center no-repeat;
    background-size: 100% 100%;
}

.tabHead2 {
    margin: 0;
    padding: 100px 0 45px 0;
}

.dj-infolist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.dj-infolist .box {
    width: calc((100% - 38px) /2);
    height: 208px;
    background: linear-gradient(180deg, #FFFDF5 0%, #FFFFFF 100%);
    box-sizing: border-box;
    border: 1px solid #D0D0D0;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0 35px;
    display: flex;
    align-items: center;
    position: relative;
}

.dj-infolist .box::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #0B4A93;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.dj-infolist .box .title {
    line-height: 30px;
    text-align: justify;
    height: 30px;
    color: #333;
}

.dj-infolist .box .desc {
    line-height: 25px;
    height: 50px;
    text-align: justify;
    color: #9E9E9E;
    margin: 10px 0 20px 0;
}

.dj-infolist .box .deter {
    display: flex;
    align-items: center;
    color: #AFAFAF;
}

.dj-infolist .box .deter>div {
    display: flex;
    align-items: center;
    margin-right: 18px;
}

.dj-infolist .box .deter .dete::before {
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    background: url(../img/dete-ico.svg) center no-repeat;
    background-size: 100% 100%;
    margin-right: 3px;
}

.dj-infolist .box .deter .click::before {
    content: '';
    width: 18px;
    height: 10px;
    display: inline-block;
    background: url(../img/click-ico.svg) center no-repeat;
    background-size: 100% 100%;
    margin-right: 3px;
}

.dj-infolist .box .deter img {
    margin-right: 2px;
}

.dj-infolist .box:hover {
    background: linear-gradient(180deg, #EAF4FF 0%, #FFFFFF 100%);
}

.dj-infolist .box:hover .title {
    color: #0B4A93;
}

.dj-infolist .box:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.dj-piclist ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.dj-piclist li {
    width: calc((100% - 81px) / 3);
    background: linear-gradient(0deg, #F1F1F1 0%, rgba(255, 255, 255, 0) 100%);
    box-sizing: border-box;
    padding: 0 30px;
    position: relative;
}

.dj-piclist li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #0B4A93;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.dj-piclist li.li2 {
    background: linear-gradient(180deg, #F1F1F1 0%, rgba(255, 255, 255, 0) 100%);
}



.dj-piclist li.li2::before {
    bottom: auto;
    top: 0;
}

.dj-piclist li.li2 a {
    display: flex;
    flex-direction: column-reverse;
}

.dj-piclist li .img {
    overflow: hidden;
}

.dj-piclist li .img img {
    width: 100%;
    aspect-ratio: 16/9;
    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;
}

.dj-piclist li .text {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0 30px 0;
}

.dj-piclist li .title {
    color: #0B0B0B;
    line-height: 25px;
    height: 25px;
}

.dj-piclist li .tt {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.dj-piclist li .desc {
    flex: 1;
    line-height: 25px;
    height: 50px;
    text-align: justify;
    color: #9E9E9E;
    box-sizing: border-box;
    padding-left: 15px;
}

.dj-piclist li .dete {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.dj-piclist li .d {
    font-size: 18px;
    color: #0B4A93;
}

.dj-piclist li .xain {
    width: 18px;
    height: 2px;
    background: #0B4A93;
    display: block;
    margin: 5px 0;
}

.dj-piclist li .y {
    color: #9E9E9E;
}

.dj-piclist li:hover {
    background: linear-gradient(0deg, #EAF4FF 0%, rgba(216, 216, 216, 0) 100%);
}

.dj-piclist li.li2:hover {
    background: linear-gradient(0deg, rgba(216, 216, 216, 0) 0%, #EAF4FF 100%);
}

.dj-piclist li:hover .title {
    color: #0B4A93;
}

.dj-piclist 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);
}

.dj-piclist li:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.tabCount2 {
    width: 100%;
}

.tabCount2 .item {
    display: none;
}

.tabCount2 .item.active {
    display: block;
}

.content2 {
    width: 100%;
    background: url(../img/content2Bg.jpg) center no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 110px 0;
}

.rmzySlide {
    width: 100%;
    position: relative;
    /* background: url(../img/rmzy_text_bg.png) top right no-repeat;
    background-size: 35% 95%; */
}


.column-rmzy {
    width: 282px;
    height: 106px;
    position: absolute;
    right: 5%;
    top: -10px;
    background: url(../img/rmzyBg.png) center no-repeat;
    background-size: 100% 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-rmzy::before {
    content: '';
    width: 55px;
    height: 5px;
    background: #0B4A93;
    display: inline-block;
    position: absolute;
    left: calc((100% - 55px) / 2);
    bottom: 0;
}

.column-rmzy .name {
    font-size: 36px;
    font-weight: bold;
    color: #2C2C2C;
    text-align: center;
}

.column-rmzy .en {
    font-size: 16px;
    opacity: 0.5;
    color: #2C2C2C;
    text-align: center;
}

.rmzySlide::after {
    content: '';
    width: 32.85%;
    height: 93%;
    height: calc(100% - 30px);
    display: inline-block;
    background: url(../img/rmzy_text_bg.png) center no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.rmzy_img {
    width: 74.5%;
    box-sizing: border-box;
    padding: 40px 0 0 40px;
    position: relative;
}

.rmzy_img a {
    width: 100%;
    position: relative;
    z-index: 99;
}

.rmzySlide::before {
    content: '';
    width: 100%;
    height: calc(100% - 40px);
    display: inline-block;
    background: #fff;
    background: linear-gradient(90deg, #E8F4FF 5%, rgba(255, 235, 210, 0) 100%);
    position: absolute;
    left: 0;
    top: 10px;
}

.rmzy_img img {
    width: 100%;
    height: 558px;
    object-fit: cover;
}

.rmzy_text {
    flex: 1;
    box-sizing: border-box;
    padding: 0 28px;
    position: relative;
    top: 20px;
}

.rmzy_text .title a {
    width: 100%;
    display: inline-block;
    font-weight: bold;
    color: #0B4A93;
    text-align: center;
}

.rmzy_text .title2 {
    width: 100%;
    height: 84px;
    background: url(../img/zyjsBg.png) center no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 25px 0 30px 0;
    box-sizing: border-box;
    padding: 0 10px;
}

.rmzy_text .title2 p {
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}

.rmzy_text .desc {
    line-height: 30px;
    text-align: center;
    height: 120px;
    color: #A4A4A4;
}

.rmzy_text .more {
    width: 130px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: #0B4A93;
    margin: 30px auto 0 auto;
}

.rmzy_text .more a {
    color: #fff;
}

.rmzy-btn {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    z-index: 9;
    right: 25.5%;
    box-sizing: border-box;
    padding: 20px 20px 20px 50px;
    background: url(../img/rmzy-btn-bg.png) center right no-repeat;
    background-size: 100% 100%;
}

.rmzy-btn .swiper-pagination1 {
    margin: 0 10px;
}

.rmzy-btn .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    opacity: 1;
    margin: 0 3.5px;
    background: rgba(255, 255, 255, 0.6);
}

.rmzy-btn .swiper-pagination-bullet-active {
    background: #0B4A93;
}

.rmzy-btn .swiper-prev,
.rmzy-btn .swiper-next {
    cursor: pointer;
}


/* ------------------------------------------- */
.nydt {
    width: 100%;
    position: relative;
}

.nydt .img img {
    width: 100%;
}

.crumbs {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    padding-bottom: 40px;
}

.crumbs::before {
    content: '';
    width: 100%;
    height: 223px;
    opacity: 0.58;
    display: inline-block;
    background: url(../img/crumbsBg.png) center bottom no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.crumbs .container {
    position: relative;
    z-index: 99;
}

.crumbs .name {
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.crumbs .name::before {
    content: '';
    width: 100%;
    height: 0;
    display: inline-block;
    border-bottom: 1px solid #fff;
    position: absolute;
    right: 103%;
    top: 50%;
}

.crumbs .list {
    font-size: 18px;
    color: #fff;
}

.crumbs .list a {
    color: #fff;
}

.crumbs .list span:last-of-type {
    display: none;
}


/* -------------------  移动端 ------------------- */

.mbheader {
    width: 100%;
    display: none;
    height: 60px;
    background: #125098;
    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;
    margin-right: 20px;
    position: relative;
}

.mbheader .header-con .logo a {
    width: 100%;
    display: inline-block;
}

.mbheader .header-con .logo img {
    max-height: 40px;
    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: 30px;
    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
}

.zqdhBtn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 0 20px;
    text-align: center;
}

.zqdhBtn .btn {
    background: #125098;
    color: #fff;
    line-height: 25px;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
}

.zqdh_list {
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    display: none;
}

.zqdh_list .item {
    margin-top: 20px;
}

.zqdh_list .name {
    color: #125098;
    font-size: 17px;
    font-weight: bold;
}

.zqdh_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.zqdh_list ul li {
    width: 50%;
    margin: 0;
}

/* -------------------------------- */

.pb_sys_style1 .p_no_d {
    border: 1px solid #004898 !important;
    background-color: #004898 !important;
}



.nmain {
    width: 100%;
    box-sizing: border-box;
    padding: 50px 0;
    background: #f7f7f7;
}

.nmain .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.subNav {
    width: 17.5%;
    /* position: relative; */
    position: sticky;
    top: 218px;
}

.subNav .box {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 10px 0 0 10px;
}

.subNav .box::before {
    content: '';
    width: calc(100% - 10px);
    height: calc(100% - 13px);
    display: inline-block;
    background: #004898;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.subNav ul {
    width: 100%;
    background: #fff;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
    position: relative;
    z-index: 9;
    box-sizing: border-box;
    padding: 10px 25px 130px 25px;
    background: url(../img/subNav-img.png) center bottom no-repeat #fff;
    background-size: 100% auto;
}

.subNav ul li {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid #E7E7E7;
}

.subNav ul li:last-of-type {
    border: none;
}

.subNav ul li h3 {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding-right: 15px;
}

.subNav ul li h3::after {
    content: '>';
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    color: #B6B6B6;
}

.subNav ul li .sub {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0 0 10px;
}

.subNav ul li .sub a {
    width: 100%;
    font-size: 16px;
    line-height: 35px;
    display: inline-block;
    color: #2C2C2C;
}

.subNav ul li h3 a {
    font-size: 18px;
    color: #2C2C2C;
}

.subNav ul li.on h3 a,
.subNav ul li:hover h3 a {
    color: #004898;
    font-weight: bold;
}

.subNav ul li.on h3::after,
.subNav ul li:hover h3::after {
    color: #004898;
}

.subNav ul li .sub a:hover,
.subNav ul li .sub a.on {
    color: #004898;
    font-weight: bold;
}

.ncontent {
    /* width: calc(100% - 17.5% - 50px); */
    flex: 1;
    box-sizing: border-box;
    padding-left: 50px;
}

.textlist .info li {
    width: 100%;
    height: 65px;
    background: #fff;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 0 20px;
}

.textlist .info li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.textlist .info li .title {
    color: #2A2A2A;
    flex: 1;
    height: 30px;
    line-height: 30px;
}

.textlist .info li .dete {
    color: #AFAFAF;
    display: flex;
    align-items: center;
    width: 110px;
    justify-content: flex-end;
}

.textlist .info li .dete::before {
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    background: url(../img/dete-ico.svg) center no-repeat;
    background-size: cover;
    margin-right: 3px;
}

.textlist .info li:hover {
    background: #004898;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
}

.textlist .info li:hover .title {
    color: #fff;
}

.textlist .info li:hover .dete {
    color: #fff;
}

.textlist .info li:hover .dete::before {
    background: url(../img/dete-ico2.svg) center no-repeat;
    background-size: cover;
}

.piclist .info li {
    width: 100%;
    margin-bottom: 30px;
    background: #fff;
    position: relative;
}

.piclist .info li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 1px solid #004898;
    transition: all 0.5s ease-in-out;
}

.piclist .info li a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.piclist .info li .img {
    width: 31.5%;
    overflow: hidden;
}

.piclist .info 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;
}

.piclist .info li .text {
    flex: 1;
    box-sizing: border-box;
    padding: 30px;
}

.piclist .info li .title {
    color: #0B0B0B;
    line-height: 30px;
    height: 30px;
}

.piclist .info li .desc {
    line-height: 25px;
    height: 50px;
    text-align: justify;
    color: #9E9E9E;
    margin: 10px 0 20px 0;
}

.piclist .info li .dete {
    color: #AFAFAF;
    display: flex;
    align-items: center;
}

.piclist .info li .dete::before {
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    background: url(../img/dete-ico.svg) center no-repeat;
    margin-right: 3px;
}

.piclist .info li:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.piclist .info 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);
}

.piclist .info li:hover .title {
    color: #004898;
}

.piclist .info li:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
}

.picture .info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.picture .info li {
    width: calc((100% - 53px) / 3);
    margin-right: 26px;
    margin-bottom: 25px;
    position: relative;
}

.picture-list li .video {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    box-sizing: border-box;
    background: url(../img/video.svg) center no-repeat;
    border: 0.45px solid #fff;
    position: absolute;
    left: calc((100% - 51px) / 2);
    top: calc((100% - 51px) / 2);
}

.picture-list li:hover .video {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.picture .info li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-bottom: 1px solid #004898;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.picture .info li:nth-child(3n) {
    margin-right: 0;
}

.picture .info li .img {
    overflow: hidden;
}

.picture .info li .img img {
    width: 100%;
    object-fit: cover;
    height: 197px;
    /* aspect-ratio: 16/9; */
    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 .info li .title {
    width: 100%;
    line-height: 50px;
    height: 50px;
    text-align: center;
    border-bottom: 0.8px solid #D8D8D8;
    color: #2C2C2C;
}

.picture .info li:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.picture .info li:hover .title {
    color: #004898;
}

.picture .info 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);
}

.detail_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.detail {
    width: 67%;
    min-height: 480px;
    box-sizing: border-box;
    padding: 30px 40px;
    background: #fff;
}

.detail .title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #2C2C2C;
}

.detail .timer {
    width: 100%;
    border-bottom: 1px solid rgba(216, 216, 216, .5);
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: space-between;
    padding: 25px 0 10px 0;
}

.detail .timer .left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #9C9C9C;
}

.detail .timer .left>div {
    margin-right: 20px;
}

.detail .dtl {
    box-sizing: border-box;
    padding: 25px 0;
}

.danye .dtl {
    padding: 0;
}


.detail .dtl p,
.detail .dtl p span {
    font-size: 18px !important;
    line-height: 40px !important;
    color: #0A0A0A;
    text-align: justify;
}

.detail .dtl.big p,
.detail .dtl.big p span {
    font-size: 22px !important;
    line-height: 50px !important;
}

.detail .dtl.large p,
.detail .dtl.large p span {
    font-size: 30px !important;
    line-height: 60px !important;
}

.detail .dtl img,
.detail .dtl video {
    max-width: 100% !important;
    height: auto;
}

.detail-page {
    width: 100%;
}

.detail-page .box {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    margin-top: 27px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 0 16px;
    display: flex;
    align-items: center;
    position: relative;
}

.detail-page .box a {
    color: #9E9E9E;
    font-size: 16px;
    line-height: 25px;
    height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.detail-page .box:hover {
    background: #004898;
}

.detail-page .box:hover a {
    color: #fff;
}

.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;
}

.detail .timer .right {
    display: flex;
    align-items: center;
    max-width: 41%;
}

.fenxiang {
    display: flex;
    align-items: center;
    color: #9C9C9C;
    margin-left: 30px;
}


.tjxw_box {
    width: calc(100% - 67% - 30px);
    background: #fff;
    border-top: 3px solid #004898;
    box-sizing: border-box;
    padding: 40px 30px;
    position: sticky;
    top: 218px;
}


.tjxw_box .name {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    line-height: 40px;
    color: #2C2C2C;
    padding-bottom: 10px;
    border-bottom: 2px solid #EBEBEB;
    position: relative;
    margin-bottom: 20px;
}

.tjxw_box .name::before {
    content: '';
    width: 96px;
    height: 0;
    border-bottom: 2px solid #004898;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.tjxw_box ul {
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    position: relative;
}

.tjxw_box ul::before {
    width: 0;
    height: 95%;
    content: '';
    display: inline-block;
    border-left: 1px solid #EBEBEB;
    position: absolute;
    left: 0;
    top: 15px;
}

.tjxw_box li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #EBEBEB;
    position: relative;
}

.tjxw_box li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    position: absolute;
    left: -23px;
    top: 17px;
}

.tjxw_box li:last-of-type {
    border: none;
}

.tjxw_box li .title {
    color: #0B0B0B;
    line-height: 28px;
    height: 56px;
    text-align: justify;
    margin-top: 8px;
}

.tjxw_box li .dete {
    color: #AFAFAF;
    display: flex;
    align-items: center;
}

.tjxw_box li .dete::before {
    content: '';
    width: 13px;
    height: 13px;
    display: inline-block;
    background: url(../img/dete-ico.svg) center no-repeat;
    margin-right: 3px;
}

.tjxw_box li:hover .title {
    color: #004898;
    font-weight: bold;
}

.tjxw_box li:hover::before {
    background: #004898;
}

.tealist .info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tealist .info li {
    width: calc((100% - 38px) / 2);
    box-sizing: border-box;
    padding: 0 25px 25px 25px;
    position: relative;
    margin-bottom: 40px;
}

.tealist .info li::before {
    content: '';
    width: 100%;
    height: calc(100% - 40px);
    display: inline-block;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.tealist .info li::after {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #004898;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.tealist .info li:hover::after {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.tealist .info li a {
    display: flex;
    position: relative;
    z-index: 99;
}

.tealist .info li .left {
    width: 30%;
    width: 39%;
}

.tealist .info li .img {
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    background: #fff;
}

.tealist .info li .img img {
    width: 100%;
}

.tealist .info li .right {
    flex: 1;
    box-sizing: border-box;
    padding-left: 20px;
    padding-top: 60px;
}

.tealist .info li .name {
    width: 90px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    font-size: 18px;
    box-sizing: border-box;
    border: 1px solid #004898;
    color: #333333;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    margin: 20px auto 10px auto;
}

.tealist .info li .name2 {
    font-size: 16px;
    color: #8D8D8D;
    margin: 0 auto;
    text-align: center;
}

.tealist .info li .desc {
    font-size: 16px;
    line-height: 30px;
    height: 120px;
    text-align: justify;
    color: #8D8D8D;
    margin-bottom: 30px;
}

.tealist .info li .more {
    width: 130px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #fff;
    font-size: 16px;
    color: #B0B0B0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.tealist .info li:hover .name {
    color: #fff;
    background: #004898;
}

.tealist .info li:hover .more {
    color: #004898;
}

/* --------------------------------------- */

.pictureSlide {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0 35px;
    margin-bottom: 60px;
}


.pictureSlide .swiper-wrapper {
    position: relative;
    left: 21.5%;
}

.pictureSlide .swiper-slide {
    width: 57.5%;
    flex-direction: column;
}

.pictureSlide .swiper-slide .img {
    width: 100%;
    overflow: hidden;
}

.pictureSlide .swiper-slide .video {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    box-sizing: border-box;
    background: url(../img/video.svg) center no-repeat;
    border: 0.45px solid #fff;
    position: absolute;
    left: calc((100% - 51px) / 2);
    top: calc((100% - 51px) / 2);
    transition: all 0.5s ease-in-out;
}

.pictureSlide .swiper-slide .img img {
    width: 100%;
    height: 350px;
    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;
}

.pictureSlide .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);
}


.pictureSlide .swiper-slide .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 54px;
    background: rgba(0, 0, 0, 0.5);
    line-height: 54px;
    text-align: center;
    box-sizing: border-box;
    padding: 0 15px;
    opacity: 0;
    color: #fff;
}

.pictureSlide .swiper-slide:hover .video {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.pictureSlide .swiper-slide-active .title {
    opacity: 1;
}

.pictureSlide .swiper-prev,
.pictureSlide .swiper-next {
    width: 50px;
    height: 50px;
    background: #0B4A93;
    box-sizing: border-box;
    border: 1.27px solid #FFFFFF;
    border-radius: 50%;
    top: calc((100% - 50px) / 2);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    cursor: pointer;
    z-index: 99;
}

.pictureSlide .swiper-prev {
    right: auto;
    left: 0;
}

.pb_sys_style1 .p_no_d {
    border: 1px solid #004898 !important;
    background-color: #004898 !important;
}

/* --------------------------- */

.content6 {
    width: 100%;
    background: url(../img/content6Bg.jpg) center no-repeat;
    background-size: cover;
    padding-bottom: 140px;
}

.content6 .column {
    width: 62.5%;
}

.jsfcBox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}

.jsfcBox .left {
    width: calc(100% - 37.5%);
    box-sizing: border-box;
    padding-right: 60px;
}

.jsfc-s1 {
    width: 37.5%;
    margin-top: -90px;
}

.jsfc-s1 .swiper-slide {
    opacity: 0 !important;
}

.jsfc-s1 .swiper-slide-active {
    opacity: 1 !important;
}


.jsfc-s1 .swiper-slide a {
    display: inline-block;
    width: 100%;
    /* box-shadow: 0px 6px 18px 0px rgba(13, 13, 13, 0.2); */
}

.jsfc-s1 .swiper-slide:hover .img {
    transform: scale(1.1);
}


.scale {
    border-radius: 50%;
    overflow: hidden;
}

.imged {
    padding-bottom: 65%;
    width: 100%;
    display: block;
    overflow: hidden;
    background-size: cover !important;
    background-position: center center !important;
}

.jsfc-s1 .swiper-slide .img {
    padding-bottom: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.jsfc-s1 .swiper-slide .scale {
    box-sizing: border-box;
    padding: 25px;
    background: linear-gradient(231deg, #BEDCFF 15%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0) 96%);
}

.jsfc-s2 .swiper-slide a {
    display: inline-block;
    width: 100%;
}

.jsfc-s2 .swiper-slide .title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.jsfc-s2 .swiper-slide .name {
    font-size: 30px;
    font-weight: bold;
    color: #2C2C2C;
    margin-right: 30px;
}

.jsfc-s2 .swiper-slide .name2 {
    font-size: 18px;
    color: #969696;
}

.jsfc-s2 .swiper-slide .desc {
    font-size: 18px;
    line-height: 35px;
    height: 140px;
    text-align: justify;
    color: #585858;
    margin-top: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.jsfc-s3 {
    width: 100%;
    box-sizing: border-box;
    padding: 0 85px;
    position: relative;
    margin-top: 50px;
}

.jsfc-s3 .swiper-slide a {
    width: 100%;
}

.jsfc-s3 .swiper-slide .imged {
    padding-bottom: 100%;
}

.jsfc-s3 .swiper-slide .title {
    text-align: center;
    color: #2C2C2C;
    margin-top: 20px;
}

.jsfc-s3 .swiper-slide-active .title {
    color: #0B4A93;
    font-weight: bold;
}

.jsfc-s3 .swiper-slide .pis {
    box-sizing: border-box;
    padding: 7px;
    background: #fff;
    border-radius: 50%;
}

.jsfc-s3 .swiper-slide-active .pis {
    background: #0B4A93;
    box-sizing: border-box;
    border: 1px solid;
    border-image: linear-gradient(220deg, #BFDDFF 15%, rgba(255, 255, 255, 0) 87%, rgba(255, 255, 255, 0) 87%);
}

.jsfc-s3 .swiper-next,
.jsfc-s3 .swiper-prev {
    width: 43px;
    height: 12px;
    position: absolute;
    left: 0;
    top: calc((100% - 12px) / 2);
    background: url(../img/tea-prev.png) center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    z-index: 9;
    /* transition: all 0.5s ease-in-out; */
}

.jsfc-s3 .swiper-next {
    left: auto;
    right: 0;
    background: url(../img/tea-next.png) center no-repeat;
    background-size: 100% 100%;
}

.jsfc-s3 .swiper-prev:hover {
    width: 58px;
    height: 28px;
    top: calc((100% - 28px) / 2);
    background: url(../img/tea-prev2.png) center no-repeat;
    background-size: 100% 100%;
    /* transition: all 0.5s ease-in-out; */
}

.jsfc-s3 .swiper-next:hover {
    width: 58px;
    height: 28px;
    top: calc((100% - 28px) / 2);
    background: url(../img/tea-next2.png) center no-repeat;
    background-size: 100% 100%;
    /* transition: all 0.5s ease-in-out; */
}



/* -------------------------------------- */

.menuBox {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: url(../img/menuBoxBg.jpg) center no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.menuTop {
    width: 100%;
    box-sizing: border-box;
    padding: 23px 75px 23px 37px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.menuTop .logo img {
    height: 62px;
}

.menuBtn2 {
    width: 76px;
    height: 77px;
    display: inline-block;
    background: url(../img/menuBtnBg.png) center no-repeat;
    background-size: cover;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menuBtn2 .ico {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: url(../img/close.png) center no-repeat;
    background-size: cover;
}

.menuTop .right {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-right: 35px;
}

.menuBox .footer {
    width: 100%;
}

.menuBox .footer .banq {
    width: 100%;
}

.menuBox.on {
    opacity: 1;
    visibility: visible;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.menuBox_home {
    width: 100%;
    height: calc(100vh - 108px);
    box-sizing: border-box;
    padding-top: 80px;
}

.menu_head {
    width: 100%;
    height: 92px;
    box-sizing: border-box;
    padding: 0 136px 0 60px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 130px;
}

.menu_head::after {
    content: '';
    width: 100%;
    height: 4px;
    display: inline-block;
    background: linear-gradient(180deg, #000082 34%, #410087 59%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.menuBtn.cur .ico {
    width: 24px;
    height: 24px;
    background: url() no-repeat;
}

.rightBtn {
    display: flex;
    align-items: center;
}



.search2 {
    width: 315px;
    height: 39px;
    border-radius: 10000px;
    position: relative;
    margin-left: 25px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
    margin-right: 30px;
}

.search2 .search-in {
    width: 100%;
    height: 39px;
    border: none;
    outline: none;
    border-radius: 5px;
    box-sizing: border-box;
    padding-left: 15px;
    color: rgba(255, 255, 255, .6);
    border-radius: 10000px;
    background: rgba(0, 0, 0, .3);
}

.search2 .search-in::placeholder {
    color: rgba(255, 255, 255, .8);
}

.search2 .search-btn {
    width: 18px;
    height: 18px;
    background: url(../img/ss.png) no-repeat;
    background-size: cover;
    position: absolute;
    right: 20px;
    top: 9px;
    border: none;
}

.toplink2 a {
    width: 118px;
    height: 39px;
    font-size: 18px;
    border-radius: 1000px;
    box-sizing: border-box;
    border: 0.5px solid rgba(255, 255, 255, .3);
    background: rgba(0, 0, 0, .3);
    color: rgba(255, 255, 255, .6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_list {
    width: 100%;
    margin-bottom: 70px;
}

.menu_list .name {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 45px;
    position: relative;
    display: inline-block;
}

.menu_list .name::before {
    content: '';
    width: 43px;
    height: 0;
    display: inline-block;
    border-top: 2px solid #FFFFFF;
    position: absolute;
    left: 0;
    bottom: -12px;
    opacity: .5;
}

.menu_list .list ul {
    display: flex;
    flex-wrap: wrap;
}

.menu_list .list li {
    width: calc((100% - 61px) / 6);
    height: 60px;
    line-height: 60px;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}

.menu_list .list li:nth-child(6n) {
    margin-right: 0;
}

.menu_list .list li a {
    width: 100%;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_list .list li a::before {
    content: '';
    width: 25px;
    height: 25px;
    display: inline-block;
    background: url(../img/menu-logo.png) center no-repeat;
    background-size: 100% 100%;
    margin-right: 5px;
    display: none;
}

.menu_list .list li:hover {
    box-sizing: border-box;
    border: 1px solid #fff;
    transition: all 0.5s ease-in-out;
}

.menu_list .list li:hover a {
    font-weight: bold;
}

.menu_list .list li:hover a::before {
    display: block;
}

/* ------------------------------- */

.head h1 {
    position: relative;
}

.h1-link {
    width: 64% !important;
    position: absolute;
    left: 0;
    height: 100%;
    display: inline-block;
}

.ftlogo {
    position: relative;
}

.list-page {
    width: 100%;
    margin-top: 40px;
}

.picture .list-page {
    margin-top: 15px;
}

.link_btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.link_btn a {
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    padding: 0 13px;
    border-radius: 10px;
    background: #05448b;
    color: #fff;
    margin-right: 14px;
}
.link_btn a:hover {
background-color: #f90;
}