*{
    box-sizing: border-box;
}

html,body{
    color: #333;
    font-family: Arial, Helvetica, sans-serif, '黑体', Heiti;
}

body{
    height: 100%;
}

.img-cover{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.img-contain{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.reset-height{
    line-height: 1;
}

.link:hover{
color: #F18D00;
}

.light{
    color: #fff !important;
}

.fz-gray{
    color: #A0A0A0;
}

.bold{
    font-weight: bold;
}

.fz-28{
    font-size: 28px;
}

.fz-24{
    font-size: 24px;
}

.fz-16{ font-size: 16px !important}

.fz-14{
    font-size: 14px;
}

.fz-42{
    font-size: 42px;
}

.fz-32{
    font-size: 32px;
}

.orange{
    color: #F18D00;
}


.blue{
    color: #00498F;
}

a{
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

a.text-through{
    text-decoration: underline !important;
}

.flexbox{
    display: flex;
}

.flex1{
    flex: 1;
}

.inline-flex{
    display: inline-flex;
}

.v-center{
    display: flex;
    align-items: center;
}

.h-center{
    display: flex;
    justify-content: center;
}

.column{
    flex-direction: column;
}

.home-container{
    position: relative;
    width: 1320px;
    margin: 0 auto;
}

.container{
    position: relative;
    min-width: 1320px;
    max-width: 1920;
    margin: 0 auto;
    padding: 0 100px !important;
}

header{
    height: 100px;
    background-color: #fff;
    margin: 0 auto;
    min-width: 1200px;
    max-width: 1900px;
    padding: 0 34px;
}

header .logo{ 
    display: inline-flex;
    height: 50px;
}

header .logo-right{
    margin-left: 12px;
}

nav{
    justify-content: flex-end;
    padding-top: 14px;
}

nav >div{
    position: relative;
    height: 100%;
    margin: 0 15px;
    /* overflow: hidden; */
}

nav ul {
    display: none;
    margin: 0;
    padding: 0 20px;
    background-color: #ffffffab;
    position: absolute;
    width: max-content;
    top: 100%;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, .1);
    transition: all .2s ease-in-out;
    z-index: 10000;
    backdrop-filter: blur(10px);
    transform: translateX(-50%);
    left: 50%;
}

nav ul li{
    padding: 0;
    list-style: none;
}

nav ul li .sub-nav{
    display: flex;
    padding: 20px 0;
    font-size: 16px;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    transition: all .3s ease-in-out;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

nav ul li .sub-nav:hover{
    color: #F18D00;
    font-weight: 500;
}

nav a.nav{
    display: flex;
    /* width: 66px; */
    height: 100%;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    position: relative;
}

nav .nav-container:hover a.nav,
nav .nav-container.active a.nav{
    color: #F18D00;
}

nav .nav-container:hover a.nav::after,
nav .nav-container.active a.nav::after{
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: #F18D00;
    bottom: 0px;
    left: 0px;
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    background: #033163 url(../assets/footer-bg.png) center no-repeat; 
    background-size: cover;
}

footer .footer-qrcode{
    display: block;
    width: 60px;
    margin-top: 20px;
}

footer .footer-logo{
    height: 50px;
    vertical-align: middle;
    margin-right: 30px;
}

footer .sep-line{
    height: 1px;
    background-color: #fff;
    margin: 20px 0;
}

footer p{
    font-size: 16px;
}

footer p span{
    display: inline-flex;
}

footer p .footer-icon{
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

footer p .icon-addr{
    background-image: url(../assets/address_icon.png);
}


footer p .icon-email{
    background-image: url(../assets/email_icon.png);
}

footer p .icon-tel{
    background-image: url(../assets/phone_icon.png);
}

.header-opts{
    margin-left: 60px;
    padding-top: 14px;
}

.header-opts .sep-line{ 
    height: 16px;
    width: 1px;
    background-color: #ddd;
    margin: 0 15px;
}

.header-opts a{
    color: #00498F;
    font-size: 14px;
}

.header-opts .icon{
    width: 16px;
    height: 16px;
}
.header-opts .search-icon{
    background: url(../assets/search-icon.png) center center no-repeat;
    background-size: contain;
}
.header-opts .lang-icon{
    margin-right: 6px;
    background: url(../assets/lang-icon.png) center center no-repeat;
    background-size: contain;
}

.banner{
    height: 600px;
}

.banner-left{
    height: 600px;

}

.banner-right{
    height: 600px;
    width: 40%;
    padding: 80px 30px;
    background-image: url(../assets/banner-right.png);
}

.banner-right >div{
    width: 420px;
}

.banner-right .time{
    width: 50px;
    margin-right: 30px;
    color: #FFAF3F;
}

.banner-right a{
    padding: 35px 0;
}

.banner-right a .title{
    line-height: 1.5;
}

.banner-right a:hover .title,
.banner-right a.active .title{
    text-decoration: underline;
}

.banner-right a:not(:last-child){
    border-bottom: 1px solid #F5F5F5;
}

.block-title-container{
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    align-items: center;
}

.block-title-container .icon-more-dark,
.block-title-container .icon-more{
    right: 0px;
    top: 20px;
}

.block-title{
    display: inline-flex;
    position: relative;
    font-size: 36px;
    font-weight: bolder;
    height: 60px;
    align-items: center;
    color: #00498F;
}

.block-title::before{
    content: '';
    position: absolute;
    width: 100%;
    background-color: #F18D00;
    height: 3px;
    top: 0;
}

.zxdt{
    /* height: 640px; */
    padding: 80px 0px;
    background-color: #f0f0f0;
    background-image: url(../assets/home-dt-bg.png);
}

.zxdt-banner{
    width: 700px;
}

.home-news-list{
    margin-left: 40px;
    justify-content: space-between;
}

.home-news-list-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 122px;
    padding: 20px 36px;
    background-color: #fff;
}

.home-news-list-item:hover{
    background-color: #F18D00;
}

.home-news-list-item:hover div,
.home-news-list-item:hover span{
    color: #fff !important;
}

.home-news-list-item:hover .icon-calendar{
    background-image: url(../assets/icons/calendar-white.png) !important;
}

.home-news-list-item:hover .icon-next-active{
    background-image: url(../assets/icons/icon-next-white.png) !important;
}

.xshd-news-item{
    padding: 20px 0px;
    border-bottom: 1px solid #B8B8B8;
}

.xshd-news-item:hover .bold{
color: #F18D00;
}

.xscg{
    /* height: 760px; */
    padding: 80px 0px 70px 0px;
    background-color: #849CB2;
    background-image: url(../assets/home_bg2.png);
}

.video-wrapper{
    width: 100%;
    height: 100%;
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.13);
}

.calendar-wrapper{
    width: 400px;
    height: 390px;
    margin-right: 50px !important;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.23);
}

.xscg .swiper{
    height: 550px;
}

.xscg .swiper .swiper-wrapper{
    padding-top: 70px;
}

.xscg-item{
    position: relative;
    transition: all .2s ease-in-out;
    /* width: 300px !important; */
    height: 390px !important;
    background-color: #fff;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.14);
    /* transform: scale(1) !important; */
}

.xscg .swiper .swiper-slide{
    height:100%;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.4)
}
.xscg .swiper .swiper-slide img{width:100%;height:100%;object-fit:cover}
/* 突出中间卡片、两边轻微弱化 */
.xscg .swiper .swiper-slide:not(.swiper-slide-active){filter:brightness(.9) saturate(.95)}


.sysb{
    position: relative;
    height: 660px;
    padding: 42px 0px 70px 0px;
}

.sysb .swiper2{
    height: 350px;
}

.swiper-prev-next{
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.swiper-prev{
    left: -70px;
    background-image: url(../assets/icons/prev_icon_normal.png);
}

.swiper-next{
    right: -70px;
    background-image: url(../assets/icons/next_icon_normal.png);
}

.swiper-prev-light{
    background-image: url(../assets/icons/prev_icon_active.png);
}

.swiper-next-light{
    background-image: url(../assets/icons/next_icon_active.png);
}

.light-swiper-pagination span{
    width: 14px;
    height: 14px;
    background-color: #000;
    border: 1px solid #fff;
}

.light-swiper-pagination .swiper-pagination-bullet-active{
    background-color: #FF8800;
    border-color: #FF8800;
}

.sysb-item{
    position: relative;
    display: block;
    height: 350px !important;
    background-color: #f0f0f0;
}

.sysb-item .title{
    position: absolute;
    width: 100%;
    bottom: 0px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.sub-banner{
    display: flex;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: flex-end;
}

.xs-banner{
    background-image: url(../assets/banner/xueshu-banner.png);
}

.js-banner{
    background-image: url(../assets/banner/zhongxinjieshao-banner.png);
}

.zp-banner{
    background-image: url(../assets/banner/zhaopin-banner.png);
}   

.fx-banner{
    background-image: url(../assets/banner/yanjiufangxiang-banner.png);
}

.breadcrumbs{
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: flex-end;
}

.breadcrumbs a,
.breadcrumbs span{
    display: inline-flex;
    color: #fff;
    font-size: 13px;
    align-items: center;
}

.breadcrumbs a:hover{
    color: #F18D00;
}

aside{
    position: relative;
    width: 200px;
    margin-right: 68px;
    z-index: 10000;
    margin-top: -70px;
}

.aside-nav{
    height: 60px;
    width: 200px;
    background: url(../assets/sidebar-nav-bg.png) center no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    padding-left: 30px;
}

aside ul{
    margin: 0;
    padding: 0;
}

aside ul li{
    padding: 0;
    list-style: none;
}

aside ul li a{
    display: flex;
    font-size: 16px;
    height: 50px;
    padding-left: 30px;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #D6D6D6;
}

aside ul li a.active::before,
aside ul li a:hover::before{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    left: 0px;
    border: 8px solid transparent;
    border-top-color: #F18D00;
    transform: rotate(-90deg);
}

aside ul li a.active.rotate::before{
    transform: rotate(0deg);
    top: 20px;
}

aside ul li a.active,
aside ul li a:hover{
    color: #F18D00;
}

aside .sub-link{
    line-height: 1;
    padding-left: 60px !important;
}

aside  .aside-nav-link +ul{
    height: 0px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

aside  .aside-nav-link +ul.active{
    height: auto;
}

aside .sub-link:hover::before,
aside .sub-link:active::before{
    left: 35px;
}

.content-wrapper{
    min-height: 500px;
}

.content-wrapper .details-title{
    color: #00498F;
    margin-top: 50px;
    padding-bottom: 10px;
    margin-bottom: 5px;
    font-size: 36px;
    border-bottom: 1px solid #D6D6D6;
}

.grid-container{
    display: grid;
}

.grid2{
    padding: 36px 0;
    gap: 36px 36px;
    grid-template-columns: 1fr 1fr;
}

.grid4{
    padding: 38px 0;
    gap: 38px 38px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.yjfx-list-item{
    height: 340px;
}

.more-link{
    color: #00498F;
    text-decoration: underline;
    padding-top: 26px;
    font-size: 14px;
}

.elps1{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.elps2{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.elps3{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.yjfx-list-item .img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 280px;
    background-color: #D6D6D6;
    border-bottom: 5px solid #F18D00;
}

.yjfx-list-item:hover{
    color: #F18D00;
}

.yjfx-list-item:hover .icon-next{
    background-image: url(../assets/icons/icon-next-active.png) !important;
}

.yjfx-list-item .title{
    height: 70px;
    font-size: 20px;
}

.yjfx-list-item .title>div{
    padding-right: 20px;
}

.no-border{
    border: none !important;
}

.news-banner{
    width: 220px;
    height: 150px;
    background-color: #D6D6D6;
    margin-right: 40px;
}

.news-list{
    margin: 0;
    padding: 34px 0;
}

.width{
    width: 1;
}

.news-list .news-list-item{ 
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #D6D6D6;
}

.news-list .news-list-item a{
    display: block;
    padding: 16px 0;
} 

.news-list .news-list-item.pd19 a{
    padding: 18px 0;
}

.news-list .news-list-item a .title{
    font-size: 14px;
    margin-bottom: 13px;
}

.news-list .news-list-item a:hover .title{
    color: #F18D00;
    text-decoration: underline;
}

.news-list .news-list-item .time{
    color: #B8B8B8;
    font-size: 13px;
    align-items: center;
}

.icon-more{
    display: inline-flex;
    width: 20px;
    height: 20px;
    padding: 0 !important;
    background-image: url("../assets/icons/icon-more-white.png");
}

.icon-more-dark{
    display: inline-flex;
    width: 20px;
    height: 20px;
    background-image: url("../assets/icons/icon-more-blue.png");
}

.icon-next{
    display: inline-flex;
    width: 24px;
    height: 8px;
    background: url(../assets/icons/icon-next-normal.png) center no-repeat;
    background-size: contain;
}

.icon-next-active{
    background-image: url(../assets/icons/icon-next-active.png);
}

.icon-page{
    display: inline-flex;
    width: 16px;
    height: 16px;
    background: url(../assets/icons/icon-page.png) center no-repeat;
    background-size: contain;
    margin-right: 10px;
}

.icon-calendar{
    display: inline-flex;
    width: 16px;
    height: 16px;
    background: url(../assets/icons/calendar-normal.png) center no-repeat;
    background-size: contain;
    margin-right: 10px;
}

.news-list .news-list-item a:hover .icon-next{
    background-image: url(../assets/icons/icon-next-active.png)
}

.news-list .news-list-item a:hover .icon-calendar{
    background-image: url(../assets/icons/calendar-active.png)
}

.news-list .news-list-item2{
    list-style: none;
    margin: 30px 0;
    position: relative;
}

.news-list .news-list-item2 .time-container{
    width: 120px;
    height: 150px;
    margin-right: 40px;
    background: url(../assets/news-time-bg.png) center no-repeat;
    background-size: cover;
}

.news-list .news-list-item2 .news-banner{
    margin-right: 30px;
}

.news-list .news-list-item2::after{
    content: '';
    position: absolute;
    width: calc(100% - 250px);
    height: 1px;
    background-color: #D6D6D6;
    bottom: 0px;
    left: 250px;
}

.news-list .news-list-item2.type2::after{
    width: calc(100% - 160px);
    left: 160px;
}

.news-list .news-list-item2 .divider{
    width: 1px;
    height: 105px;
    background-color: #FFD6A8;
    margin: 0 32px;
}

.news-list .news-list-item2 a .elps2{
    line-height: 1.4;
    margin-top: 20px;
}

.news-list .news-list-item2.type2 a .elps2{
    margin: 0;
}

.device-item{
    position: relative;
    height: 280px;
    overflow: hidden;
}

.device-item .device-img{ 
    display: block;
    height: 100%;
    background-color: #D6D6D6;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.device-item .device-info{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 14px;
    transition: all 0.2s ease-in-out;
    transform: translate3d(0, 66%, 0);
}

.device-item .device-info p{
    font-size: 14px;
}

.device-item .mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F18D00;
    opacity: 0.85;
    transition: all 0.1s ease-in-out;
    transform: translate3d(0, -100%, 0);
}

.device-item:hover .device-info,
.device-item:hover .mask{ 
    transform: translateY(0);
}

.device-item:hover .device-info p:first-child{
    font-size: 18px !important;
}

.userinfo-container{
    padding: 34px 34px 20px 34px;
    height: 444px;
    line-height: 1.8;
    background: url(../assets/user-info-bg.png) center no-repeat;
}

.userinfo-container h2{
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px dashed #fff;
}

.user-info-content{
    overflow-y: auto;
}

.content-wrapper .avatar{
    position: relative;
    width: 350px;
    height: 444px;
}

.content-wrapper .avatar .desc{
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    padding: 24px 24px 8px 24px;
}

.contents p{
    line-height: 1.8;
}

.team-avatar{
    height: 376px !important;
    width: 620px !important;
}

.team-info-container{
    justify-content: space-around;
    padding: 40px 30px;
    height: 376px;
    background: url(../assets/team-bg.png) center no-repeat;
}

.icon-user{
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-image: url(../assets/icons/user.png);
}

.icon-team{
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-image: url(../assets/icons/team.png);
}

.team-line{
    padding-top: 14px;
    margin-top: 8px;
    line-height: 1.4;
    border-top: 1px solid #D6D6D6;
}

.team-list{
    margin-top: 50px;
}

.team-list >a:nth-child(even){
    direction: rtl;
}

.team-list .team-list-item{
    position: relative;
    justify-content: space-between;
    margin-bottom: 50px;
}

.team-list .team-list-item .team-info{
    justify-content: space-around;
    padding: 24px;
    direction: ltr;
}   

.team-list .team-list-item .line{
    position: absolute;
    height: 2px;
    background-color: #F18D00;
    top: 60px;
}

.team-list >a:nth-child(odd) >div:first-child,
.team-list >a:nth-child(even) >div:last-child{
    margin-top: 15px;
}

.team-list >a:nth-child(odd) .line{
    width: 170px;
    left: 50%;
    margin-left: -125px;
}

.team-list >a:nth-child(even) .line{
    width: 110px;
    left: 50%;
    margin-left: -55px;
    top: 50px;
}

.team-list >a:hover .title{
    color: #F18D00;
    text-decoration: underline;
}

.team-list .team-list-item .icon-next{
    display: inline-flex;
    width: 24px;
    height: 8px;
    background: url("../assets/icons/icon-next-active.png") center no-repeat;
    background-size: cover;
}

.team-list .team-list-item .team-info{ 
    width: 490px;
    height: 320px;
    background: url(../assets/team-bg.png) center no-repeat;
    background-size: cover;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, .1);
}

.team-list .team-list-item .team-image{
    width: 520px;
    height: 320px;
    background-color: #D6D6D6;
}

.user-avatar{
    background-color: #D6D6D6;
    width: 236px;
    height: 280px;
    position: relative;
    transition: all .25s ease-in-out;
}

.user-avatar:hover{ 
    transform: scale(1.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
}

.user-avatar >div{
    position: absolute;
    width: 100%;
    bottom: 0px;
    height: 44px;
    font-size: 16px;
    color: #fff;
    border-bottom: 5px solid #F18D00;
    background-color: rgba(158, 181, 203, 0.70)
}

.office-item{
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #00498F;
}

.office-item .office-dept{
    width: 200px;
}

.office-item .office-email{
    width: 280px;
}

.office-item .office-loc{
    text-align: right;
}

#mapContainer{
    width: 508px;
    height: 350px;
}

#mapContainer +.addr-block{
    background-color: #F5F5F5;
    padding: 35px;
}

#mapContainer +.addr-block .sep-line{
    height: 1px;
    background-color: #7c7c7c;
    margin: 40px 0;
}

#mapContainer +.addr-block p{
    margin: 24px 0;
}

.addr-block .icon-addr{
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url(../assets/icons/address.png) center no-repeat;
    background-size: cover;
}

.addr-block .icon-tel{
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url(../assets/icons/phone.png) center no-repeat;
    background-size: cover;
}

.addr-block .icon-email{
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url(../assets/icons/email.png) center no-repeat;
    background-size: cover;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 拼图容器 */
.photo-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.photo-item{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* background: #D6D6D6; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.photo-item:nth-child(3),
.photo-item:nth-child(5),
.photo-item:nth-child(6){
    grid-row: span 2;
}

.photo-item:hover .photo-item-overlay{
    bottom: 0;
}

.photo-item-overlay{
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 50px 20px 20px;
    overflow: hidden;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ff8800a7);
    transition: all 0.3s ease;
    line-height: 1.4;
}


.height1{
    line-height: 1;
}

.justify-center{
    display: flex;
    justify-content: space-between;
}

.flod-btn{
    text-indent: -999em;
    overflow: hidden;
    width: 20px;
    height: 20px;
background: url(../assets/icons/unflod.png) center no-repeat;
    background-size: cover;
cursor: pointer;
}

.flod-btn.unflod{
background-image: url(../assets/icons/flod.png) 
}

.pages-links{
height: 0;
overflow: hidden;
}

.pages-links.active{
height: auto;
}