header {
    width: 100%;
    height: 153px;
    background: #00509F;
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1 {
    width: 31%;
}

h1 img {
    width: 100%;
    /* height: 75px; */
}

.topRight {
    position: relative;
}

.topLink {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    top: -20px;
}

.topLink a {
    color: rgba(255, 255, 255, 0.55);
}

.topLink span {
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin: 0 4px;
}

.topLink span:last-of-type {
    display: none;
}

.navgation {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navgation .search {
    width: 53px;
    height: 36px;
    border-radius: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 60px;
}

.navgation ul {
    height: 100%;
    height: 65px;
    display: flex;
    align-items: center;
}

.navgation ul .nli {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

.navgation ul .nli.li6 {
    width: 74px;
    flex: auto;
}

.navgation ul .nli::before {
    content: '';
    width: 33px;
    height: 0;
    border-bottom: 2px solid #fff;
    border-radius: 3px;
    display: inline-block;
    position: absolute;
    left: calc((100% - 33px) / 2);
    bottom: 8px;
    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: 18px;
    font-weight: bold;
    line-height: 28px;
}

.navgation ul li.on h3 a,
.navgation ul li:hover h3 a {
    font-weight: bold;
}

.navgation ul .sub {
    position: absolute;
    width: 160%;
    height: auto;
    left: -20%;
    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-radius: 5px;
}

.navgation ul li:hover .sub {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
}

.navgation ul .sub li {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-bottom: 1px solid #D8D8D8;
    position: relative;
}

.navgation ul .sub li:last-of-type {
    border: none;
}

.navgation ul .sub li a {
    color: #404040;
    font-size: 16px;
}

.navgation ul .sub li:hover a {
    color: #005492;
}

.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;
}

.navgation ul .sub li:hover .sub2 li a {
    color: #404040;
}

.navgation ul .sub li .sub2 li:hover a {
    color: #005492;
}

.banlist {
    width: 100%;
    position: relative;
}

.banlist .swiper-slide a,
.banlist .swiper-slide img {
    width: 100%;
}

.banlist .swiper-pagination {
    width: 100%;
    text-align: center;
    bottom: 40px;
    z-index: 99;
}

.banlist .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: none;
    box-sizing: border-box;
    border: 1px solid #fff;
    opacity: 1;
}

.banlist .swiper-pagination-bullet-active {
    background: #fff;
}

.banlist .swiper-prev,
.banlist .swiper-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 40px;
    z-index: 99;
    top: calc((100% - 60px) / 2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banlist .swiper-next {
    left: auto;
    right: 40px;
}

.banlist .swiper-prev:hover,
.banlist .swiper-next:hover {
    background: rgba(20, 50, 112, 0.7);
}

/* --------------------------- */

footer {
    width: 100%;
}

.foot {
    width: 100%;
    padding: 45px 0;
    border-top: 2px solid #F4F4F4;
    margin-top: 55px;
}

.foot .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ftlogo img {
    width: 50%;
    max-width: 100%;
}

.code .img {
    width: 109px;
    height: 109px;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    padding: 5px;
}

.code img {
    width: 100%;
    height: 100%;
}

.code p {
    text-align: center;
    color: #999;
    margin-top: 10px;
}

.foot .left {
    width: 70%;
}

.foot1 {
    width: 100%;
    padding: 45px 0;
    margin-top: 20px;
}

.foot1 .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.foot1 .left {
    width: 70%;
}

.contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 45px;
}

.contact .box {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.contact .box .ico {
    width: 43px;
    height: 43px;
    box-sizing: border-box;
    border: 1px solid #00509F;
    border-radius: 5px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .box .ico span {
    color: #004386;
    font-size: 24px;
}

.contact .box .text {
    width: calc(100% - 45px);
}

.banq {
    width: 100%;
    background: #00509F;
    padding: 22px 0;
}

.banq p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 25px;
    text-align: center;
}

.banq p br {
    display: none;
}

.banq p a {
    color: rgba(255, 255, 255, 0.6);
}

/* ----------------- */

.yqsb {
    width: 100%;
    background: url(../img/yqsbBg.jpg) center no-repeat;
    background-size: cover;
    padding-bottom: 65px;
    overflow: hidden;
}

.column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.column .title {
    font-size: 30px;
    font-weight: 500;
    color: #143270;
    position: relative;
}

.column2 .title {
    color: #fff;
}

.column .title::before {
    content: '';
    width: 197px;
    height: 10px;
    display: inline-block;
    background: url(../img/column-name-ico.png) center no-repeat;
    background-size: cover;
    position: absolute;
    left: -39px;
    bottom: -25px;
}

.column .more {
    display: flex;
    align-items: center;
    position: relative;
    top: 15px;
    font-size: 14px;
    color: #999999;
}

.column .more::after {
    content: '';
    width: 52px;
    height: 27px;
    display: inline-block;
    background: url(../img/more-blue.png) center no-repeat;
    background-size: cover;
    margin-left: 5px;
}

.column2 .more::after {
    background: url(../img/more-white.png) center no-repeat;
    background-size: cover;
}

.yqsblist {
    width: 100%;
}

.yqsblist .swiper-wrapper {
    position: relative;
    left: 31%;
}

.yqsblist .swiper-slide {
    width: 38%;
}

.yqsblist .swiper-slide-prev {
    margin-right: 30px;
}

.yqsblist .swiper-slide-next {
    margin-left: 30px;
}

.yqsblist .swiper-slide .img {
    width: 100%;
    overflow: hidden;
}

.yqsblist .swiper-slide .img img {
    width: 100%;
    height: 100%;
    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;
}


.yqsblist .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);
}

.yqsblist .swiper-slide .text {
    width: 100%;
    height: 153px;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    padding: 26px 35px;
}

.yqsblist .swiper-slide .title {
    color: #333;
    line-height: 25px;
    height: 25px;
    margin-bottom: 40px;
}

.yqsblist .swiper-slide .more {
    color: #143270;
    line-height: 35px;
    border-bottom: 1px solid rgba(153, 153, 153, 0.5);
    position: relative;
}

.yqsblist .swiper-slide .more::before {
    content: '';
    width: 19px;
    height: 19px;
    display: inline-block;
    background: url(../img/jt-ico.png) center no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 15px;
}

.yqsblist .swiper-slide-active .title {
    color: #143270;
}

.yqsblist .swiper-slide-active .more {
    color: #143270;
    border-bottom: 1px solid #006AAE;
}

.yqsblist .swiper-slide-active .more::before {
    background: url(../img/jt-ico-on.png) center no-repeat;
    background-size: cover;
}

.yqsblist .swiper-pagination1 {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.yqsblist .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: .5;
    margin: 0 4px;
}

.yqsblist .swiper-pagination-bullet-active {
    opacity: 1;
}

.fwzn-xshd {
    width: 100%;
    padding-bottom: 60px;
    overflow: hidden;
}

.fwzn-xshd .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fwzn {
    width: 52.5%;
}

.xshd {
    width: calc(47.5% - 45px);
}

.xshdlist li {
    width: 100%;
    height: 68px;
    background: #EAF1FF;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.xshdlist li.li2 {
    margin: 15px 0;
}

.xshdlist li .desc {
    line-height: 25px;
    height: 50px;
    color: #fff;
    margin: 10px 0 25px 0;
    display: none;
}

.xshdlist li .extend {
    display: none;
    font-weight: bold;
    line-height: 35px;
    color: #fff;
}

.xshdlist li .extend span {
    margin-right: 5px;
}

.xshdlist li .top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xshdlist li .title {
    color: #333;
    flex: 1;
    line-height: 25px;
    height: 25px;
}

.xshdlist li .dete {
    color: #999;
    width: 88px;
    text-align: right;
}

.xshdlist li.on {
    height: 276px;
    background: #28428C;
    background: linear-gradient(180deg, #28428C 0%, #0D44B6 100%);
}

.xshdlist li.on .desc,
.xshdlist li.on .extend {
    display: block;
}

.xshdlist li.on .title {
    color: #fff;
    font-weight: bold;
}

.xshdlist li.on .dete {
    display: none;
}

.fwznlist ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fwznlist li {
    width: calc((100% - 35px) / 2);
    box-sizing: border-box;
    padding: 0 15px 15px 0;
    position: relative;
    margin-bottom: 30px;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.fwznlist li:hover {
    top: -10px;
    transition: all 0.5s ease-in-out;
}

.fwznlist li::before {
    content: '';
    width: 100%;
    height: calc(100% - 15px);
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.fwznlist li.li1::before {
    background: linear-gradient(270deg, rgba(24, 45, 128, 0.21) 0%, rgba(24, 45, 128, 0) 100%);
}

.fwznlist li.li2::before {
    background: linear-gradient(270deg, rgba(0, 91, 255, 0.19) 0%, rgba(0, 91, 255, 0) 100%);
}

.fwznlist li.li3::before {
    background: linear-gradient(270deg, rgba(0, 130, 211, 0.19) 0%, rgba(0, 137, 211, 0) 100%);
}

.fwznlist li.li4::before {
    background: linear-gradient(270deg, rgba(0, 211, 158, 0.19) 0%, rgba(0, 211, 176, 0) 100%);
}

.fwznlist li a {
    height: 198px;
    background: #fff;
    position: relative;
    z-index: 9;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fwznlist li.li1 a {
    box-shadow: 0px 4px 30px 0px rgba(131, 0, 231, 0.1);
}

.fwznlist li.li2 a {
    box-shadow: 0px 4px 30px 0px rgba(0, 87, 243, 0.13);
}

.fwznlist li.li3 a {
    box-shadow: 0px 4px 30px 0px rgba(0, 165, 211, 0.12);
}

.fwznlist li.li4 a {
    box-shadow: 0px 4px 30px 0px rgba(0, 165, 211, 0.12);
}

.fwznlist li .title {
    line-height: 35px;
    height: 70px;
    color: #555;
}

.fwznlist li .more {
    color: rgba(3, 83, 161, 0.8706);
}

.fwznlist li .ico {
    position: absolute;
    width: 62.77px;
    height: 62.61px;
    opacity: .1;
    right: 27px;
    bottom: 21px;
}

.fwznlist li.li1 .ico {
    background: url(../img/fwzn-icon1.png) center no-repeat;
    background-size: 100% 100%;
}

.fwznlist li.li2 .ico {
    background: url(../img/fwzn-icon2.png) center no-repeat;
    background-size: 100% 100%;
}

.fwznlist li.li3 .ico {
    background: url(../img/fwzn-icon3.png) center no-repeat;
    background-size: 100% 100%;
}

.fwznlist li.li4 .ico {
    background: url(../img/fwzn-icon4.png) center no-repeat;
    background-size: 100% 100%;
}

.fwznlist li:hover .title {
    color: #00509F;
    font-weight: bold;
}

.news {
    width: 100%;
    background: url(../img/newsBg.jpg) center no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}

.news .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.xwdt {
    width: 45%;
}

.tzgg {
    width: calc(55% - 100px);
}

.tzgglist ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tzgglist li {
    width: calc((100% - 70px) / 2);
    margin-bottom: 65px;
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.tzgglist li .dete {
    width: 120px;
    height: 30px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.tzgglist li .title {
    line-height: 35px;
    height: 70px;
    color: #fff;
    margin-top: 20px;
}

.tzgglist li:hover {
    left: 10px;
    transition: all 0.5s ease-in-out;
}

.tzgglist li:hover .dete {
    background: #fff;
    color: #0F4DA7;
}

.tzgglist li:hover .title {
    font-weight: bold;
}

.newSlide {
    width: 100%;
    position: relative;
    /* box-sizing: border-box; */
    /* padding: 0 20px 20px 0; */
}

.newSlide::before {
    content: '';
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    display: inline-block;
    background: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
}

.newSlide .swiper-slide .img {
    overflow: hidden;
}

.newSlide .swiper-slide .img img {
    width: 100%;
    /* height: 342px; */
    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%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 166px;
    background: url(../img/mark.png) center bottom no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
}

.newSlide .swiper-slide {
    opacity: 0 !important;
}

.newSlide .swiper-slide-active {
    opacity: 1 !important;
}

.newSlide .swiper-slide .title {
    color: #fff;
    box-sizing: border-box;
    padding: 0 95px 0 20px;
    line-height: 25px;
    height: 25px;
}

.newSlide .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);
}

.newSlide .swiper-pagination1 {
    position: absolute;
    right: 35px;
    bottom: 20px;
    z-index: 99;
}

.newSlide .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: #fff;
    opacity: .5;
}

.newSlide .swiper-pagination-bullet-active {
    opacity: 1;
}

.newlist {
    width: 100%;
    margin-top: 35px;
}

.newlist li {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.newlist li:hover {
    left: 10px;
    transition: all 0.5s ease-in-out;
}

.newlist li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.newlist li .title {
    flex: 1;
    line-height: 25px;
    height: 25px;
    position: relative;
    box-sizing: border-box;
    padding-left: 20px;
}

.newlist li .title::before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 10px;
}

.newlist li .dete {
    width: 90px;
    text-align: right;
}

.jcxm {
    width: 100%;
    padding-bottom: 60px;
    overflow: hidden;
}

.jcxm .column {
    width: 52.3%;
}

.jcxmBox {
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    padding: 30px 30px 5px 30px;
    position: relative;
}

.tabHead {
    /* width: 55%; */
    width: 52.3%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    padding-right: 30px;
}

.tabHead .box {
    width: calc((100% - 61px) / 3);
    margin-right: 30px;
    height: 132px;
    border-radius: 10px;
    background: #E4F2FF;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.tabHead .box:nth-child(3n) {
    margin-right: 0;
}

.tabHead .box span {
    font-size: 45px;
    color: #00509F;
}

.tabHead .box .name {
    color: #333;
    margin-top: 10px;
}

.tabHead .box.active {
    background: #00509F;
}

.tabHead .box.active span {
    color: #fff;
}

.tabHead .box.active .name {
    color: #fff;
    font-weight: bold;
}

.tabCount {
    width: 40%;
    position: absolute;
    right: 50px;
    bottom: 0;
}

.jcxmSlide {
    width: 100%;
    height: 630px;
    border-radius: 20px 20px 0px 0px;
    background: linear-gradient(180deg, #2B4DAF 10%, rgba(40, 66, 140, 0) 100%);
    box-shadow: 0px -10px 15px 0px #D9D9D9;
    position: relative;
    box-sizing: border-box;
    padding: 30px 50px;
    display: none;
}

.jcxmSlide.active {
    display: block;
}

.jcxmSlide .swiper-slide {
    flex-direction: column;
    align-items: flex-start;
}

.jcxmSlide .swiper-slide .img {
    overflow: hidden;
    margin-top: 40px;
}

.jcxmSlide .swiper-slide .img img {
    width: 100%;
    /* height: 287px; */
    aspect-ratio: 16/9;
    border-radius: 10px;
}

.jcxmSlide .swiper-slide .title {
    color: #fff;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
}

.jcxmSlide .swiper-slide .more {
    width: 101px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    background: #fff;
    color: #0F4DA7;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}

.jcxmSlide .swiper-slide .desc {
    color: rgba(255, 255, 255, 0.8);
    margin: 15px 0 30px 0;
}

.jcxmSlide .swiper-slide .desc p {
    line-height: 25px;
    height: 25px;
    margin: 13px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.jcxmSlide .swiper-pagination1 {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 45px;
    bottom: 10%;
    z-index: 9;
    left: 0;
}

.jcxmSlide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #fff;
    opacity: .5;
    cursor: pointer;
    margin-right: 10px;
}

.jcxmSlide .swiper-pagination-bullet-active {
    opacity: 1;
}

/* --------------------------------------- */
.mbheader {
    width: 100%;
    display: none;
    height: 60px;
    background: #00509F;
    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;
}

.mbheader .header-con .logo a {
    width: 100%;
    display: inline-block;
}

.mbheader .header-con .logo img {
    width: 100%;
    /* max-height: 45px; */
    height: 45px;
}

.sp_header {
    height: 50px;
    background: #fff;
    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: 9999;
    background: #eee;
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
    font-size: 14px;
    line-height: 40px;
    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: 14px
}

.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;
}

.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: #00509F
}

.sjj_nav ul li ul li>ul {
    margin-left: 10px
}


.pb_sys_style1 .p_no_d {
    border: 1px solid #00509F !important;
    background-color: #00509F !important;
}

/* 教工风采-内页 */
.crumb {
    margin: 15px 0 10px;
}

.crumb .path {
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.crumb .path a,
.crumb .path span {
    color: #909090;
}

.crumb .path span:last-of-type {
    display: none;
}

.pos {
    position: relative;
}

.drivder {
    width: 100%;
    height: 0;
    border-bottom: 1px solid #E2E2E2;
}

.main-content {
    display: flex;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}

.left-nav {
    width: 21.5%;
    height: 100%;
    background: #00509F;
    box-sizing: border-box;
}

.left-nav .disc {
    width: 100%;
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    padding: 20px 0 10px 0;
}

.left-nav .nav {
    width: 94%;
    background: #FFFFFF;
    margin: 10px 10px;
    box-sizing: border-box;
    padding: 0 0 30px 0;
}

.left-nav ul {
    width: 90%;
    height: 99%;
    padding: 0 0 0 30px;
    box-sizing: border-box;
}

.left-nav ul li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(216, 216, 216, 0.5);
}

.left-nav ul li.on a {
    color: #00509F;
}

.left-nav ul li.on {
    color: #00509F;
    border-bottom: 1px solid #00509F;
}

.left-nav ul li.on .img {
    background: url(../img/ny-arrow-gold.png) no-repeat center;
}

.left-nav ul li.on .img img {
    display: none;
}

.left-nav ul li:hover {
    border-bottom: 1px solid #00509F;
}

.left-nav ul li:hover a {
    color: #00509F
}

.left-nav ul li:hover .img {
    background: url(../img/ny-arrow-gold.png);
}

.left-nav ul li:hover .img img {
    display: none;
}

.left-nav ul li .img {
    width: 13px;
    height: 17px;
}

.left-nav li a {
    font-size: 18px;
    font-weight: bold;
    color: #272727;
    line-height: 40px;
    padding: 15px 0;
}

.right-list {
    width: 78.5%;
    height: 100%;
    /* padding: 20px 20px; */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 35px;
}

.right-list .drivder {
    margin-bottom: 30px;
}

.right-list .box {
    width: calc((78.5% - 115px) / 3);
    position: relative;
    padding: 25px 35px;
    margin: 0 0 60px 0;
    background: #FFFFFF;
    background-image: url(../img/avatar-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 35%;
    background-position: center bottom;
    box-shadow: 0px 4px 30px 0px rgba(0, 87, 243, 0.13);
}

.right-list .box:hover .name {
    color: #00509F;
}

.right-list .box::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(161, 161, 161, 0.19) 0%, rgba(176, 176, 176, 0) 100%);
    z-index: -1;
}

.right-list .box:hover::after {

    background: linear-gradient(270deg, rgba(0, 91, 255, 0.19) 0%, rgba(0, 91, 255, 0) 100%);
}

.right-list .box .img {
    width: 100%;
    overflow: hidden;
}

.right-list .box .img img {
    width: 100%;
}

.right-list .box:hover .img img {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}

.right-list .box .name {
    font-size: 20px;
    font-weight: bold;
    color: #555555;
    line-height: 35px;
    margin-top: 20px;
}

.right-list .box .job {
    line-height: 25px;
    letter-spacing: -0.04em;
    color: #999999;
    margin-top: 5px;
}

/* 分页器 */

.page-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* 详情页 */
.detail-content {
    width: 78.5%;
    height: 100%;
    margin-left: 45px;
    box-sizing: border-box;
    position: relative;
}

.detail-content .driv {
    min-height: 350px;
}

.detail-content .drivder {
    margin-bottom: 40px;
}

.driv {
    padding: 75px;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px 0px rgba(0, 87, 243, 0.13);
    position: relative;

}

.detail-content .driv::after {
    content: "";
    width: 100%;
    height: calc(100% - 6px);
    position: absolute;
    top: 20px;
    right: -13px;
    background: linear-gradient(270deg, rgba(161, 161, 161, 0.19) 0%, rgba(176, 176, 176, 0) 100%);
    z-index: -1;
}

.dbox .title {
    font-size: 32px;
    font-weight: bold;
    line-height: 45px;
    color: #373737;
    text-align: center;
}

.dbox .info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #9E9E9E;
    margin: 20px 0 15px;
}

.dbox .info>div {
    margin: 0 25px;
}

.dbox .dtl {
    margin-top: 30px;

}


.dbox .dtl p {
    font-size: 18px;
    line-height: 35px;
    /* text-indent: 2rem; */
    margin-bottom: 20px;
    color: #333333;
}

.dbox .dtl .disc {
    margin-top: 65px;
}

.dbox .dtl .disc p {
    font-weight: 400;
    line-height: 35px;
    font-size: 16px;
    text-indent: 0;
    margin-bottom: 10px;
    color: #666666;
}

.detail-page {
    width: 100%;
}

.detail-page .box {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    margin-bottom: 10px;
}

.detail-page .box:hover {
    background: #00509F;
    color: #FFFFFF;
}

.detail-page .box:hover a {
    color: #FFFFFF;
}

.detail-page .box1 {
    margin: 30px 0 30px;
}

.detail-page .box a {
    font-size: 16px;
    line-height: 40px;
    color: #8C8C8C;
}

/* picture box */
.picture-content {
    width: calc(100% - 21%);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 35px;
    box-sizing: border-box;
}

.picture-content .drivder {
    margin-bottom: 30px;
}

.picture-content .box {
    width: 48%;
    position: relative;
    margin-bottom: 45px;
}

.picture-content .box a {
    position: relative;
    display: inline-block;
}

.picture-content .box::after {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    background: #DBEDFF;
    z-index: -1;
}

.picture-content .box .img {
    width: 100%;
    overflow: hidden;
}

.picture-content .box .img img {
    width: 100%;
}

.picture-content .box:hover .img img {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}

.picture-content .box .img .back {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.77) 100%);
}

.picture-content .box .text {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
}

/* 图文列表页 */
.picContent {
    width: 78.5%;
    height: 100%;
    box-sizing: border-box;
    margin-left: 45px;
}

.picContent ul {
    width: 100%;
    margin-top: 30px;
    position: relative;
}

.picContent ul li {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.04em;
    color: #999999;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px 0px rgba(0, 87, 243, 0.13);
    padding: 20px;
    margin: 35px 0;
    position: relative;
}

.picContent .img img {
    width: 100%;
    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;
}

.picContent .img {
    overflow: hidden;
    width: 30%;
}

.picContent .img: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);
}

.picContent ul li::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 15px;
    right: -15px;
    background: linear-gradient(270deg, rgba(161, 161, 161, 0.19) 0%, rgba(176, 176, 176, 0) 100%);
    z-index: -1;
}

.picContent ul li:hover::after {
    background: linear-gradient(270deg, rgba(0, 91, 255, 0.19) 0%, rgba(0, 91, 255, 0) 100%);
}

.picContent ul li a {
    display: flex;
    align-items: center;
}

.picContent ul li .text {
    margin-left: 30px;
    flex: 1;
}

.picContent .text .title {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 35px;
    color: #555555;
}

.picContent li:hover .text .title {
    font-weight: bold;
    line-height: 35px;
    color: #00509F;
}

.picContent .text .disc {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.04em;
    color: #999999;
}

.picContent .text .read-more {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0 0 0;
}

.picContent .text .read-more .read {
    font-size: 14px;
    line-height: 30px;
    color: rgba(3, 83, 161, 0.8706);
}

.picContent .text .read-more .arrow {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.picContent .text .read-more .arrow img {
    width: 24px;
}

.picContent li:hover .book {
    width: 63px;
    height: 63px;
    background: url(../img/book-blue.png);
    position: absolute;
    top: 55%;
    right: 20px;
}

.picContent li:hover .book img {
    display: none;
}

.picContent .book img {
    position: absolute;
    top: 55%;
    right: 20px;
}

/* list页面 */
.list1 {
    width: 78.5%;
    height: 100%;
    box-sizing: border-box;
    margin-left: 45px;
}

.list1 ul {
    width: 100%;
    margin-top: 30px;
    position: relative;
}

.list1 ul li {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.04em;
    color: #999999;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px 0px rgba(0, 87, 243, 0.13);
    padding: 40px 30px 30px 30px;
    margin: 35px 0;
    position: relative;
}

.list1 ul li::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 15px;
    right: -15px;
    background: linear-gradient(270deg, rgba(161, 161, 161, 0.19) 0%, rgba(176, 176, 176, 0) 100%);
    z-index: -1;
}

.list1 ul li:hover::after {
    background: linear-gradient(270deg, rgba(0, 91, 255, 0.19) 0%, rgba(0, 91, 255, 0) 100%);
}

.list1 ul li a {
    display: flex;
    align-items: center;
}

.list1 ul li .text {
    margin-left: 30px;
}

.list1 .text .title {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 35px;
    color: #555555;
}

.list1 li:hover .text .title {
    font-weight: bold;
    line-height: 35px;
    color: #00509F;
}

.list1 .text .disc {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.04em;
    color: #999999;
}

.list1 .text .read-more {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0 0 0;
}

.list1 .text .read-more .read {
    font-size: 14px;
    line-height: 30px;
    color: rgba(3, 83, 161, 0.8706);
}

.list1 .text .read-more .arrow {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.list1 .text .read-more .arrow img {
    width: 24px;
}

.list1 li:hover .book {
    width: 63px;
    height: 63px;
    background: url(../img/book-blue.png);
    position: absolute;
    top: 55%;
    right: 20px;
}

.list1 li:hover .book img {
    display: none;
}

.list1 .book img {
    position: absolute;
    top: 55%;
    right: 20px;
}

/* 仪器设备 */
.yqsb-box {
    width: 78.5%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 35px;
    box-sizing: border-box;
}

.news .column .more,
.yqsb .column .more {
    color: #fff;
}

.yqsb-box .drivder {
    margin-bottom: 30px;
}

.yqsb-box .box {
    width: calc((100% - 50px)/2);
    position: relative;
    margin-bottom: 35px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.yqsb-box .box .img {
    width: 100%;
    overflow: hidden;
}

.yqsb-box .box .img img {
    width: 100%;
}

.yqsb-box .box:hover .img img {
    width: 100%;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.yqsb-box .box .text {
    width: 100%;
    font-size: 18px;
    line-height: 35px;
    color: #333333;
    padding: 10px 0;
    margin-left: 35px;
}

.yqsb-box .box:hover .text {
    color: #143270;
    font-weight: bold;
}

.yqsb-box .read-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 35px 30px 35px;
}

.yqsb-box .read-more .read {
    line-height: 35px;
    color: #143270;
}

.yqsb-box .read-more img {
    width: 50%;
    height: 50%;
}

.yqsb-box .box .read-more .arrow {
    display: flex;
    justify-content: center;
}

.yqsb-box .box .underline {
    width: 85%;
    height: 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.5);
    box-sizing: border-box;
    position: absolute;
    left: 35px;
    bottom: 30px;
}

.yqsb-box .box:hover .underline {
    border-top: 1px solid #006AAE;
}

.yqsb-box .box:hover .read-more .arrow {
    width: 35px;
    height: 35px;
    background: url(../img/yqsb-arrow-blue.png) center no-repeat;
    background-size: 50% 50%;
}

.yqsb-box .box:hover .read-more .arrow img {
    display: none;
}

/* 教师风采介绍-个人简历 */
.introduce {
    width: 78.5%;
    height: 100%;
    /* padding: 30px 0 30px 30px; */
    margin-left: 35px;
    box-sizing: border-box;
}

.introduce .drivder {
    margin-bottom: 30px;
}

.jbxx {
    width: 100%;
    background: #EFFAFF;
    box-sizing: border-box;
}

.jbxx .info {
    width: 120px;
    height: 50px;
    line-height: 50px;
    background: #00509F;
    text-align: center;
}

.jbxx .info span {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    color: #FFFFFF;
}

.jbxx .left {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
}

.jbxx .right {
    height: 100%;
}

.jbxx .left .item {
    width: 40%;
    display: flex;
    align-items: center;
    padding: 30px 30px;
}

.jbxx .left .item .label {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    color: #00509F;
    white-space: nowrap;
}

.jbxx .item1 {
    padding: 0 30px;
}

.jbxx .item1 .label {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: #00509F;
    padding: 15px 0;
}

.jbxx .item1 .content {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #3D3D3D;
    padding: 0 0 30px 0;
}

.jbxx .temp {
    display: flex;
    flex-wrap: wrap;
}

.jbxx .right {
    text-align: center;
}

.jbxx .right img {
    width: 100%;
}

.jyjl {
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
    /* padding-bottom: 35px; */
}

.jyjl .box {
    margin-bottom: 20px;
    padding-bottom: 35px;
    background: #EFFAFF;
}

.jyjl .box:last-of-type {
    margin: 0;
}

.jyjl .info {
    width: 120px;
    height: 50px;
    line-height: 50px;
    background: #00509F;
    text-align: center;
}

.jyjl .info span {
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    color: #FFFFFF;
}

.jyjl .disc {
    font-size: 16px;
    line-height: 30px;
    color: #3D3D3D;
    padding: 35px 35px 0 35px;
}

.jyjl .disc .title {
    font-size: 18px;
    font-weight: 700;
}

.pb_sys_style1 .p_no_d {
    border: 1px solid #0B4C95 !important;
    color: #fff;
    background-color: #0B4C95 !important;
}

.pb_sys_style5 .p_no_d,
.pb_sys_style5 .p_no a:hover {
    border: 1px solid #0B4C95 !important;
    color: #fff;
    background-color: #0B4C95 !important;
}

#newskeycode244716 {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #aaa;
    font-size: 14pt;
    box-sizing: border-box;
    padding-left: 20px;
    position: relative;
    background-repeat: no-repeat;
    padding-top: 3px;
    border: 1px solid #D3D3D3;
    outline-color: #3d5adb;
    margin-bottom: 30px;
}

.textlist .box {
    width: 100%;
    height: 136px;
    border-radius: 5px 10px 10px 10px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 0 30px;
}

.textlist .box a {
    height: 100%;
    display: flex;
    align-items: center;
}

.textlist .box .dete {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2E5EC1;
    margin-right: 30px;
}

.textlist .box .tt {
    flex: 1;
}

.textlist .box .d {
    font-size: 24px;
    font-weight: bold;
}

.textlist .box .y {
    font-size: 16px;
    margin-top: 5px;
}

.textlist .box .title {
    font-size: 18px;
    color: #3D3D3D;
    line-height: 25px;
    height: 25px;
}

.textlist .box .desc {
    color: #999999;
    line-height: 25px;
    height: 50px;
    margin-top: 7px;
}

.textlist .box .dete2 {
    color: #999999;
    margin-top: 7px;
}

.textlist .box:hover .dete2 {
    color: rgba(255, 255, 255, 0.7);
}

.textlist .box:hover {
    background: #2E5EC1;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.textlist .box:hover .title,
.textlist .box:hover .dete {
    color: #fff;
    font-weight: bold;
}

.textlist .box:hover .desc {
    color: rgba(255, 255, 255, 0.7);
}

.content3 .content-bg {
    width: 100%;
}

.nav .nav_li6 .sub {
    width: 155px;
}

.nav .nav_li7 .sub {
    width: 155px;
}

.index-foot {
    border: none;
    margin: 0;
}

.detail {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 40px;
    background: #fff;
    box-shadow: 0px 4px 30px 0px rgba(0, 87, 243, 0.13);
}

.detail::after {
    content: "";
    width: 100%;
    height: calc(100% - 6px);
    position: absolute;
    top: 20px;
    right: -13px;
    background: linear-gradient(270deg, rgba(161, 161, 161, 0.19) 0%, rgba(176, 176, 176, 0) 100%);
    z-index: -1;
}