/* å¤´éƒ¨ */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99; 
    /* height: fit-content;
    position: sticky;
    top: 0px; */
}
.headPc{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 70px;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
    position: relative;
    transition: all .5s;
    background: #fff;
    height: 80px;
}
.headPc .headPc-left .logo{
    display: block;
    width: 220px;
}
.headPc .headPc-right{
    display: flex;
    align-items: center;
}
.headPc .headPc-right ul{
    display: flex;
    align-items: center;
}
.headPc .headPc-right ul>li{
    margin: 0 20px;
    line-height: 40px;
    position: relative;
}
.headPc .headPc-right ul>li .panel {
    position: absolute;
    top: 68px;
    left: -30px;
    padding: 5px 0;
    opacity: 0;
    transition-delay: 0.1s;
    transition-duration: 0.3s;
    z-index: -1;
    visibility: hidden;
    background-color: #fff;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0px 8px 48px 0px rgb(27 13 73 / 16%);
}
.headPc .headPc-right ul>li .panel .menu-arrow{
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -16px;
    width: 0px;
    height: 0px;
    border: 8px solid transparent;
    border-bottom-color: #FFF;
}
.headPc .headPc-right ul>li .panel a{
    display: block;
    padding: 8px 30px;
    font-size: 14px;
    color: #333;
    line-height: 20px;
    white-space: nowrap;
}
.headPc .headPc-right ul>li .panel a:hover{
    background-color: #e2e9f8;
    color: #333;
}
.headPc .headPc-right ul>li:hover .panel {
    filter: alpha(opacity = 100);
    opacity: 1;
    transition-delay: 0.1s;
    transition-duration: 0.3s;
    z-index: 1;
    visibility: visible;
}
.headPc .headPc-right ul>li>a{
    transition: all .2s;
    font-size: 16px;
    color: #333;
    line-height: 22px;
}
.headPc .headPc-right ul>li:hover>a{
    color: #2C529F;
}
.headPc .headPc-right ul>li.active>a{
    color: #2C529F;
}
.headPc .headPc-right ul>li.active>a::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 2px solid #2C529F;
}

.headMob {
    display: none;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
}

.headMob .mob-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.headMob .mob-box .box-left .logo{
    width: 150px;
}
.headMob .box-right-warp{
    display: flex;
    align-items: center;
}
.mob-bg {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 7;
    left: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}
.headMob.headMob-active .mob-bg {
    opacity: 1;
    visibility: inherit;
}
.mob-list {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    width: 100%;
    top: 0;
    right: -100%;
    z-index: 8;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    box-shadow: 0 -8px 16px 0 rgb(0 0 0 / 16%);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
}
.headMob.headMob-active .mob-list {
    right: 0;
    opacity: 1;
    visibility: inherit;
}
.mob-list .list-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mob-list .top-left {
    float: left;
}
.mob-list .top-left img{
    width: 60%;
}
.mob-list .top-right {
    float: right;
}
.mob-list .top-right .clone {
    display: inline-block;
    background: url(../images/icon-phone-guanbi-white.svg) no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
}
.mob-list .list-cent {
    margin-top: 30px;
}
.mob-list .box-list>li {
    padding: 12px 0;
    position: relative;
}
.mob-list .box-list>li:not(:last-child) {
    border-bottom: 1px solid #818181;
}
.mob-list .box-list > li > a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #252931;
}
.mob-list .list-cent .con-laug{
    margin-top: 30px;
}
.mob-list .list-cent .laug-box{
    margin-top: 20px;
}
.mob-list .list-cent .laug-box a {
    font-size: 14px;
    font-weight: 400;
    color: #383C45;
    opacity: .5;
    line-height: 20px;
    vertical-align: middle;
}
.mob-list .list-cent .laug-box a.active {
    opacity: 1;
}

.mob-list .box-list .icon-bottom{
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../images/phone-icon-bottom.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 16px;
}
.mob-list .box-list > li.active .icon-bottom {
    background: url(../images/phone-icon-top.svg) no-repeat center;
    background-size: contain;
}
.mob-list .box-list .two-list {
    margin: 10px 0;
    display: none;
}
.mob-list .box-list .two-list>li {
    width: 100%;
}
.mob-list .box-list .two-list>li>a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #252931;
}
.mob-list.mob-listEn .box-list .two-list>li {
    width: 100%;
    float: left;
}
.common_more{ text-align: center; width: 100%; display: inline-block; margin: 20px auto 0; }
.common_more a{ display: inline-block; background-color: #fff; border: 1px solid #2C529F; width: 160px; line-height: 40px; text-align: center; font-size: 16px;color: #2C529F; text-transform: capitalize; font-size: 16px; border-radius: 50px;}
.common_more a:hover{ background-color: #2C529F; color: #fff;}

.grey_bg{
    background-color: #f5f5f5;
}
.pt20{
    padding-top: 20px;
}
.pt50{
    padding-top: 50px;
}
.pb20{
    padding-bottom: 20px;
}
.pb50{
    padding-bottom: 50px;
}
.business_box .row,.about_box .row,.adv_box .row,.news_box .row,.job_box .row,.contact_box .row{
    padding-top: 50px;
}
.business_box .col-xl-4,.news_box .col-xl-6{
    margin-bottom: 30px;
}
.business_box .bus_item{
    background: #FFF;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 1%);
    border-radius: 10px;
    display: inline-block;
    padding: 30px 30px;
    width: 100%;
    text-align: center;
    position: relative;
}
.bus_item .bus_img img{
    width: 80px;
    height: 80px;
}
.bus_item .bus_tit{
    font-size: 20px;
    font-weight: 400;
    color: #383C45;
    line-height: 28px;
    margin-top: 15px;
}
.bus_item .bus_more{
    font-size: 14px;
    margin-top: 20px;
}
.bus_more .more{
    border-radius: 50px;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #2C529F;
    color: #2C529F;
     transition: all .5s;
}
.bus_more .more:hover{
    border: 1px solid #2C529F;
    background-color: #2C529F;
    color: #fff;
}
.popup{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .6);
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 100;
    top: 0;
    display: none;
}
.popup_box {
    position: absolute;
    width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
}
.popup_close{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup_close img{
    width: 12px;
    height: 12px;
    object-fit: cover;
}
.popuo_main{
    font-size: 14px;
    line-height: 30px;
    padding: 20px;
}
.popuo_main h2{
    font-size: 20px;
    color: #383C45;
    line-height: 33px;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}
/* 关于我们 */
.about_box .about_img{

}
.about_box .about_img .img{
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50px 0;
}
.about_box .about_info{
    line-height: 28px;
    color: #383C45;
    font-size: 16px;
    position: relative;
    padding: 0 20px;
}
.about_box .about_info .yh01{
    position: absolute;
    left: -1%;
    top: 0;
    width: 20px;
}
.about_box .about_info .yh02{
    position: absolute;
    right: -1%;
    bottom: 0;
    width: 20px;
}
.about_box .about_info .right-con{
    height: 420px;
    overflow-y: auto;
    padding-right: 30px;
}
.about_box .about_info .right-con::-webkit-scrollbar{
    width: 4px;
    height: 4px;
    background-color:#ECECEC;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}
.about_box .about_info .right-con::-webkit-scrollbar-thumb{
    background-color: #113275;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}
/* 我们的优势 */
.adv_box{
    background: url("../images/index_adv_bg.png") no-repeat;
    background-size: cover;
}
.adv_box .adv_list{ margin: 0 15px 20px 15px; display: inline-block; width: 100%; border-bottom: 1px solid #eee; border-right: 1px solid #eee; background: #fff; border-radius: 10px;}
.adv_box .adv_list ul li{ width: 33.3333%; display: block; float: left; height: 240px;transition: all .5s;}
.adv_box .adv_list ul li:hover{box-shadow: rgba(0,0,0,.2) 0px 0px 30px; cursor: pointer;}
.adv_list .adv_item{width: 100%;border-left: 1px solid #eee; border-top: 1px solid #eee; border-radius: 10px; padding: 50px 40px; height: 100%; text-align: center; position: relative;}

.adv_item .adv_cover{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    background-color: #fff;
    visibility: hidden;
    border-radius: 10px;
    display: inline-block;
    padding: 30px 30px;
    font-size: 15px;
    text-align: left;
    line-height: 30px;
    z-index: 10;
    transition: all .5s;
}
.adv_item:hover .adv_cover{
    opacity: 1;
    visibility: inherit;
}
.adv_cover .tit{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}
.adv_img { width: 80px; height: 80px; margin: 0 auto; background-color: #668FE5; border-radius: 80px;}
.adv_img img{ width: 50px; height: 50px; margin-top: 15px;}
.adv_text { margin-top: 20px; line-height: 26px; font-size: 20px;}
/* 新闻资讯 */
.news_item{width:100%;background-color: #fff; padding: 20px; border-radius: 8px; border: 1px solid #DBDBDB;}
.news_item a{display: flex;}
.news_img{ width: 40%;}
.news_img img{ width: 100%; height: 140px;}
.news_text{ width: 60%; margin-left: 20px;}
.news_item:hover{border:1px solid #2C529F;}
.news_item:hover .news_tit{color: #2C529F;}
.news_tit{ margin-bottom:15px; margin-top: 5px; overflow: hidden;text-overflow: ellipsis; white-space: nowrap;font-size: 18px; font-weight: bold; color: #555;}
.news_text p{ font-size: 14px; line-height: 24px;height: 80px; color: #555;text-align: justify;}
.news_text span{ font-size: 14px; color: #888;}

/* 底部 */
.footer{width:100%;background-color:#1B2545;padding-top:50px;height:auto;overflow:hidden}
.other-link{ display: flex;}
.other-link .foot-contact{float:right}
.link-look{padding-bottom:40px; flex: 1;}
.link-list{float:left;width:25%}
.link-list h3{height:40px;line-height:20px;font-size:16px;color:#fff}
.link-list ul li a{line-height:30px;color:#aaa;font-size:14px}
.link-list ul li a:hover{color:#fff}
.foot-contact{width:320px}
.foot-companyname{height:30px;line-height:18px;font-size:18px;color:#fff;}
.foot-phone{font-size:14px;color:#bbb; margin-bottom: 10px; line-height: 24px;}
.footer-bottom{text-align:center;padding:12px 0;border-top:1px solid #42444B}
.footer-bottom p{line-height:26px;font-size:14px;color:#aaa}
.footer-bottom p span{margin-left:17px}
.foot_wechat,.foot_web{width:100%;height:100px}
/* åº•éƒ¨ */
/* å…¬å…±æ ç›®å›¾ */
.com-banner {
    position: relative;
}
.com-banner .com-bannerImg {
    width: 100%;
    max-width: 100%;
}
.com-bannerTxt {
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}
.com-bannerTxt h2{
    font-size: 48px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 67px;
}
.com-bannerTxt span{
    width: 3px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 3px;
    display: inline-block;
    margin: 12px 0;
}
.com-bannerTxt h3 img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    padding: 3px;
}
.com-twolist{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
}
.com-twolist .twolist-box{
    background: rgb(17 50 117 / 90%);
    border-radius: 10px 10px 0px 0px;
    display: flex;
    align-items: center;
}
.com-twolist .twolist-box .box-left{
    position: relative;
}
.com-twolist .twolist-box .box-left a{
    position: absolute;
    left: 43px;
    top: 24px;
}
.com-twolist .twolist-box .box-left a img{
    width: 24px;
    height: 24px;
}
.com-twolist .twolist-ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 30px;
}
.com-twolist .twolist-ul li:not(:last-child){
    margin-right: 30px;
}
.com-twolist .twolist-ul a{
    /* display: inline-block; */
    border-radius: 5px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
}
.com-twolist .twolist-ul a span{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 24px;
    vertical-align: middle;
    padding-right: 8px;
}
.com-twolist .twolist-ul a:hover span{
    text-decoration: underline;
}
.com-twolist .twolist-ul a i{
    vertical-align: middle;
    opacity: 0;
    transition: all .2s;
}
.com-twolist .twolist-ul a.active{
    background: #FFFFFF;
}
.com-twolist .twolist-ul a.active span{
    color: #113275;
}
.com-twolist .twolist-ul a.active i{
    opacity: 1;
}
/* .com-twolist .twolist-ul a:hover{
    background: #FFFFFF;
}
.com-twolist .twolist-ul a:hover span{
    color: #113275;
}
.com-twolist .twolist-ul a:hover i{
    opacity: 1;
} */
/* å…¬å…±æ ç›®å›¾ */
/* é¦–é¡µ */
.index-banner{
    width: 100%;
    position: relative;
}
.index-banner .index-swiper .banner-box .video{
    height: 100vh;
    object-fit: cover;
}
.index-banner .index-swiper .banner-box .bannerImg{
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    height: 100vh;
}
.index-banner .index-swiper .banner-box{
    position: relative;
}
.index-banner .index-swiper .banner-tit{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(0);
    opacity: 0;
    transition: all 1.8s;
    text-align: center;
}
.index-banner .index-swiper .swiper-slide.swiper-slide-active .banner-tit {
    opacity: 1;
    transform: translateY(-50%);
}
.index-banner .index-swiper .banner-tit h2{
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 36px;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.7);
}
.index-banner .index-swiper .banner-tit i{
    display: inline-block;
    width: 35px;
    height: 5px;
    background: #E60012;
    border-radius: 3px;
    margin-top: 21px;
}
.index-banner .index-swiper .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    background: inherit;
    opacity: 1;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.index-banner .index-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 35px;
    height: 14px;
    opacity: 1;
    border-radius: 7px;
    background: #fff;
    border: 1px solid #FFFFFF;
}
.index-banner .index-swiper .swiper-pagination{
    bottom: 21%;
}
.index-banner .index-swiper .swiper-pagination .swiper-pagination-bullet{
    margin: 0 4px;
}
.index-banner  .banner-cont{
    width: 100%;
    position: absolute;
    bottom: 40px;
    z-index: 3;
}
.index-banner  .banner-cont .banner-list{
    background: rgb(255 255 255 / 75%);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    justify-content: end;
    display: flex;
    justify-content: space-between;
}
.index-banner .list-ul{
    display: flex;
    align-items: center;
    padding-left: 15px;
}
.index-banner .list-ul h2 span{
    font-size: 45px;
    font-weight: bold;
    color: #2C529F;
    line-height: 65px;
}
.index-banner .list-ul li{
    text-align: center;
    padding: 0 20px;
}
.index-banner .list-ul h2 i{
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
    vertical-align: top;
    padding-left: 3px;
}
.index-banner .list-ul p{
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
}
.index-banner .list-bg{
    position: relative;
}
.index-banner .list-bg img{
    max-width: 100%;
}
.index-banner .list-bg .list-video{
    position: absolute;
    bottom: 25px;
    right: 30px;
    cursor: pointer;
}
.index-banner .list-bg .list-video i{
    display: inline-block;
    background: url(../images/banner-list-video-play.svg) no-repeat center;
    background-size: contain;
    width: 37px;
    height: 37px;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.index-phone-video{
    padding-top: 30px;
    display: none;
}
.index-phone-video .list-bg .list-video{
    text-align: center;
}
.index-phone-video .list-bg .list-video a{
    display: block;
    position: relative;
    width: 100%;
}
.index-phone-video .list-bg .list-video a img{
    width: 100%;
}
.index-phone-video .list-bg .list-video i {
    display: inline-block;
    background: url(../images/banner-list-video-play.svg) no-repeat center;
    background-size: contain;
    width: 37px;
    height: 37px;
    position: absolute;
    left: 10px;
    bottom: 10px;
}
.index-phone-video .list-ul {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: -10px;
    margin-right: -10px;
}
.index-phone-video .list-ul h2 span {
    font-size: 40px;
    font-weight: bold;
    color: #2C529F;
    line-height: 60px;
}
.index-phone-video .list-ul h2 i {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
    vertical-align: top;
    padding-left: 5px;
    padding-top: 10px;
    display: inline-block;
}
.index-phone-video .list-ul p {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
}
.index-phone-video .list-ul li {
    text-align: center;
    padding: 0 10px;
}
/* é¦–é¡µ */

.pd80{
    padding: 80px 0;
}
.pd50{
    padding: 50px 0;
}
.mt60{
    margin-top: 60px;
}
.index-com-tit{
    display: flex;
    justify-content: space-between;
}
.index-com-tit .tit-left{
    flex: 1;
}
.index-com-tit .tit-left h2{
    position: relative;
}
.index-com-tit .tit-left p{
    position: absolute;
    top: -10px;
    left: 0;
}
.index-com-tit .tit-left p span{
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    line-height: 54px;
}
.index-com-tit .tit-left p span.titBlue{
    color: #025CBD;
}
.index-com-tit .tit-left p span.titwhite{
    color: #fff;
}
.index-com-tit .tit-left h3{
    font-size: 16px;
    font-weight: 400;
    color: #757B8E;
    line-height: 32px;
    margin-top: 20px;
}
.index-com-tit.index-com-tit-white .tit-left p span{
    color: #fff;
}
.index-com-tit.index-com-tit-white .tit-left h3{
    color: #D4D4D4;
}
.index-com-tit .tit-right .index-comLink{
    display: inline-block;
    background: linear-gradient(180deg, #FF0E2C 0%, #E30613 100%);
    border-radius: 5px;
    padding: 8px 20px;
}
.index-com-tit .tit-right .index-comLink span{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22px;
    vertical-align: middle;
    padding-right: 30px;
}
.index-com-tit .tit-right .index-comLink i{
    display: inline-block;
    background: url(../images/index-com-right-w.svg) no-repeat center;
    background-size: contain;
    width: 15px;
    height: 15px;
    vertical-align: middle;
}

.index-product-box{
    display: flex;
    margin-top: 23px;
    overflow: hidden;
}
.index-product-box .ilt{
    background: #113275;
    width: 37.5%;
    /* padding: 4% 4% 0 8.3%; */
    padding: 4% 4% 0 13.5%;
    float: left;
}
.index-product-box .ilt .ilt-box{
    display: none;
    transition: all .3s;
}
.index-product-box .ilt .ilt-box.act{
    display: block;
}
.index-product-box .irt{
    background: #E9EDF0;
    float: right;
    width: 62.5%;
    text-align: center;
    padding: 130px 0 66px 0;
}
.index-product-box .irt .irtImg{
    max-width: 100%;
}
.index-product-box .irt .irt-box{
    display: inline-block;
    position: relative;
}
.index-product-box .ilt .box-tit{
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 25px;
}
.index-product-box .ilt .box-tit i{
    display: inline-block;
    width: 50px;
    height: 50px;
}
.index-product-box .ilt .box-tit i.icon-jz{
    background: url(../images/index-product-lt-icon-jzjz.svg) no-repeat center;
    background-size: contain;
}
.index-product-box .ilt .box-tit i.icon-lkll{
    background: url(../images/index-product-lt-icon-lkll.svg) no-repeat center;
    background-size: contain;
}
.index-product-box .ilt .box-tit i.icon-gyjz{
    background: url(../images/index-product-lt-icon-gyjz.svg) no-repeat center;
    background-size: contain;
}
.index-product-box .ilt .box-tit i.icon-jln{
    background: url(../images/index-product-lt-icon-jnh.svg) no-repeat center;
    background-size: contain;
}
.index-product-box .ilt .box-tit .tit-con{
    margin-left: 15px;
}
.index-product-box .ilt .box-tit .tit-con h2{
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 34px;
}
.index-product-box .ilt .box-tit .tit-con h3{
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.index-product-box .ilt .box-ul li{
    margin-top: 20px;
}
.index-product-box .ilt .box-ul a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    transition: all .3s;
    border-radius: 5px 23px 23px 5px;
}
.index-product-box .ilt .box-ul a span{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 30px;
    position: relative;
    padding-left: 35px;
    transition: all .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.index-product-box .ilt .box-ul a span::after{
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/index-product-lt-yuan-w.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.index-product-box .ilt .box-ul a .icon-right{
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../images/index-product-lt-right.svg) no-repeat center;
    background-size: contain;
    opacity: 0;
    transition: all .3s;
}
.index-product-box .ilt .box-ul a:hover{
    background: #FFFFFF;
}
.index-product-box .ilt .box-ul a:hover span{
    color: #113275 ;
}
.index-product-box .ilt .box-ul a:hover .icon-right{
    opacity: 1;
}
.index-product-box .ilt .box-ul a:hover span::after{
    background: url(../images/index-product-lt-yuan-r.svg) no-repeat center;
    background-size: contain;
}
.index-product-box .irt .irt-ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.index-product-box .irt .irt-ul li{
    width: 62px;
    height: 62px;
    background: rgb(255, 255, 255 , 70%);
    border-radius: 50%;
    padding: 8px;
    position: absolute;
}
.index-product-box .irt .irt-ul li .img{
    width: 46px;
    height: 46px;
    background: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    line-height: 43px;
    overflow: hidden;
}
.index-product-box .irt .irt-ul li .img img{
    max-width: 100%;
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all .3s;
}
.index-product-box .irt .text{
    position: absolute;
    left: -65px;
    bottom: 92%;
}
.index-product-box .irt .text .text-xian img{
    max-width: 100%;
    transition: all .3s;
}
.index-product-box .irt .text .text-con{
    background: url(../images/index-product-rXing-w.svg) no-repeat center;
    background-size: cover;
    width: 175px;
    padding: 12px 6px;
    position: absolute;
    bottom: 99%;
    right: 63%;
    transition: all .3s;
}
.index-product-box .irt .text .text-con p{
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    transition: all .3s;
    margin-left: -10px;
}
.index-product-box-en .irt .text .text-con p{
    font-size: 14px;
}
.index-product-box .irt .text .text-xian .Rixian-red{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.index-product-box .irt .irt-ul .li_1{
    top: 73%;
    left: 58%;
}
.index-product-box .irt .irt-ul .li_2{
    top: 25%;
    left: 83%;
}
.index-product-box .irt .irt-ul .li_3{
    top: 80%;
    left: 20%;
}
.index-product-box .irt .irt-ul .li_4{
    top: 35%;
    left: 50%;
}
.index-product-box .irt .irt-ul li.act .img{
    background: #E30613;
}
.index-product-box .irt .irt-ul li.act .img .riImg1{
    margin-top: -86px;
}
.index-product-box .irt .irt-ul li.act .text .text-con{
    background: url(../images/index-product-rXing-b.svg) no-repeat center;
    background-size: cover;
}
.index-product-box .irt .irt-ul li.act .text .text-con p{
    color: #E30613;
}
.index-product-box .irt .irt-ul li.act .text .text-xian .Rixian-red{
    opacity: 1;
}

.index-product-head{
    border-bottom: 1px solid #ECEEF3;
}
.index-product-head .head-left{
    display: flex;
    padding: 50px 0 26px 0;
}
.index-product-head a{
    position: relative;
}
.index-product-head a img{
    width: 26px;
    height: 26px;
    vertical-align: middle;
}
.index-product-head a:last-child{
    margin-left: 50px;
}
.index-product-head a span{
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    line-height: 33px;
    vertical-align: middle;
    padding-left: 10px;
}
.index-product-head a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -28px;
    width: 0;
    height: 3px;
    background: #113275;
}
.index-product-head a.active::after{
    width: 100%;
}
.index-product-cont .cont-img{
    background: #FFFFFF;
    padding: 60px 0;
}
.index-product-cont .cont-img img{
    max-width: 100%;
    height: 216px;
    object-fit: cover;
    width: 100%;
}
.index-product-cont .indexProduct-cont{
    display: block;
    background: #F7F7F7;
    padding: 10px 10px 28px 10px;
}
.index-product-cont .indexProduct-cont p{
    font-size: 18px;
    font-weight: 400;
    color: #113275;
    line-height: 25px;
    text-align: center;
    margin-top: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 50px;
}
.index-product-cont-en .indexProduct-cont p{
    -webkit-line-clamp: 4;
    min-height: 100px;
}
.index-product-cont .cont1{
    height: 0;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
}
.index-product-cont .cont1.active{
    height: auto;
    overflow: inherit;
}
.index-product-cont .swiper-button-prev{
    left: 95%;
}
.index-product-cont .swiper-button-next{
    right: 0;
}
.index-product-cont .swiper-button-next,
.index-product-cont .swiper-button-prev{
    background: #F7F7F7;
    width: 24px;
    height: 24px;
    top: -70px;
    border-radius: 50%;
}
.index-product-cont .swiper-button-next::after,
.index-product-cont .swiper-button-prev::after{
    font-size: 16px;
    color: #113275;
    font-weight: bold;
}
.index-phone-pro{
    display: none;
    flex-wrap: wrap;
}
.index-phone-pro{
    margin-left: -10px;
    margin-top: 20px;
}
.index-phone-pro li{
    width: 50%;
    padding: 10px;
}
.index-phone-pro a{
    display: block;
    background: #DDD;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 25px;
    text-align: center;
    padding: 10px 6px;
    transition: all .2s;
}
.index-phone-pro li.active a{
    background: #E30613;
    color: #FFFFFF;
}

.index-case{
    background: url(../images/index-case-bg.png) no-repeat center;
    background-size: cover;
}
.index-com-tit-case .case-tit-right .case-comLink {
    display: inline-block;
    background: #ECEEF3;
    border-radius: 5px;
    padding: 8px 20px;
    width: 44%;
    margin-left: 15px;
    position: relative;
}
.index-com-tit-case .case-tit-right .case-comLink span{
    font-size: 16px;
    font-weight: 400;
    color: #113275;
    line-height: 22px;
    vertical-align: middle;
    padding-right: 30px;
}
.index-com-tit-case .case-tit-right .case-comLink i {
    display: inline-block;
    background: url(../images/index-com-right-grey.svg) no-repeat center;
    background-size: contain;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.index-com-tit-case .case-tit-right{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: end;
    width: 28%;
}
.index-com-tit-case.index-com-tit{
    justify-content: space-between;
}
.index-com-tit-case .case-tit-right .case-comLink.active{
    background: #E30613;
}
.index-com-tit-case .case-tit-right .case-comLink.active span{
    color: #fff;
}
.index-com-tit-case .case-tit-right .case-comLink.active i{
    background: url(../images/index-com-right-w.svg) no-repeat center;
    background-size: contain;
    transform: rotate(90deg);
    transform-origin: center top;
}
.index-com-tit-case .case-tit-right-en{
    width: 48%;
    margin-top: -12px;
}
.index-com-tit-case .case-tit-right-en a{
    margin-top: 12px;
}

.index-case .case-box{
    margin-top: 45px;
    display: none;
}
.index-case .case-box.active{
    display: block;
}
.index-case .indexCase-swiper .indexCase-cont{
    position: relative;
    display: inline-block;
}
.index-case .indexCase-swiper .indexCase-cont img{
    max-width: 100%;
    height: 511px;
    object-fit: cover;
    width: 100%;
    transition: all .5s;
}
.index-case .indexCase-swiper .indexCase-cont:hover img{
    transform: scale(1.1);
}
.index-case .indexCase-swiper .indexCase-cont .cont-bg{
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(137,137,137,0) 0%, rgb(0 0 0 / 45%) 100%);
}
.index-case .indexCase-swiper .indexCase-cont p{
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 27px;
    position: absolute;
    bottom: 32px;
    left: 26px;
}
.index-case .indexCase-swiper .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: 1;
}
.index-case .indexCase-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #E30613;
}
.index-case .indexCase-swiper .swiper-pagination{
    text-align: right;
    padding-right: 30px;
    bottom: 32px;
}
.index-case .indexCase-right{
    display: block;
    position: relative;
    overflow: hidden;
}
.index-case .indexCase-right img{
    max-width: 100%;
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: all .5s;
}
.index-case .indexCase-right:hover img{
    transform: scale(1.1);
}
.index-case .indexCase-right .cont-bg{
    position: absolute;
    width: 100%;
    height: 35%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(137,137,137,0) 0%, rgb(0 0 0 / 45%) 100%);
}
.index-case .indexCase-right p{
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 27px;
    position: absolute;
    bottom: 22px;
    left: 25px;
}
.index-case .indexCase-right-box{
    margin-bottom: -30px;
}
.index-case .indexCase-right-box>div{
    padding-bottom: 30px;
}
.indexNewsBox{
    margin-top: 40px;
}
.indexNewsBox .box-left{
    display: block;
}
.indexNewsBox .box-left .left-img img{
    max-width: 100%;
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.indexNewsBox .box-left .left-text{
    padding: 30px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
}
.indexNewsBox .box-left .left-text h2{
    font-size: 18px;
    font-weight: bold;
    color: #113275;
    line-height: 38px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;    
    padding-right: 30px;
}
.indexNewsBox .box-left .left-text h2::after{
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/index-news-right-blue.svg) no-repeat center;
    background-size: contain;
}
.indexNewsBox .box-left .left-text h3{
    margin: 15px 0;
}
.indexNewsBox .box-left .left-text h3 img{
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.indexNewsBox .box-left .left-text h3 span{
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 25px;
    vertical-align: middle;
    padding-left: 6px;
}
.indexNewsBox .box-left .left-text p{
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.indexNewsBox .box-right1{
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    display: block;
}
.indexNewsBox .box-right1 h2{
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    line-height: 38px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;    
    padding-right: 30px;
    transition: all .3s;
}
.indexNewsBox .box-right1:hover h2{
    color: #113275;
}
.indexNewsBox .box-right1 h2::after{
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/index-news-right-grey.svg) no-repeat center;
    background-size: contain;
}
.indexNewsBox .box-right1 h3{
    margin: 15px 0 20px 0;
}
.indexNewsBox .box-right1 h3 img{
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.indexNewsBox .box-right1 h3 span{
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 25px;
    vertical-align: middle;
    padding-left: 6px;
}
.indexNewsBox .box-right1 p{
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.indexNewsBox .box-right2{
    background: #FFFFFF;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    padding: 20px 30px;
    margin-top: 25px;
}
.indexNewsBox .box-right2 a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indexNewsBox .box-right2 li{
    padding: 19px 0;
}
.indexNewsBox .box-right2 li:not(:last-child){
    border-bottom: 1px dashed #D1D1D1;
}
.indexNewsBox .box-right2 a h3{
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 38px;
    position: relative;
    padding-left: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    flex: 1;
    padding-right: 10px;
    transition: all .3s;
}
.indexNewsBox .box-right2 a:hover h3{
    color: #113275;
}
.indexNewsBox .box-right2 a h3::after{
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #113275;
    border-radius: 50%;
}
.indexNewsBox .box-right2 a span{
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
}


.index-partner{

}
.index-partner .partner-phone{
    display: none;
}
.index-partner .partner-phone-en{
    padding-top: 20px;
}
.index-partner .partner-phone .phone-list{
    margin-top: 20px;
    padding-bottom: 30px;
}
.index-partner .partner-phone .phone-list img{
    width: 100%;
}
/*å“ç‰Œå±•ç¤º*/
.index_partner {   padding: 40px 0 40px; overflow: hidden; position: relative;height: 100%;}
.partner_list {margin-top: 50px;}
.partner_list_en {margin-top: 100px;}
.index_partner .g_link_box {padding: 90px 0 0; position: relative; z-index: 100}
.partner_img_box {position: relative;height: 0; padding-bottom: 27.47%;}
.part_img {position: absolute; width: 100%;height: 100%;box-sizing: border-box; background: center no-repeat;background-size: contain;}
.part_img img {width: 100%;}

.index_partner{position: relative;}
.index_partner .box_logo{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: #fff; z-index: 1;}
.index_partner .img{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-position: center; background: url(/static/images/index-partner-logo.svg) no-repeat center; z-index: 2;}
.index_partner .part_img_b{ position: absolute; width: 100%; height: 100%; background: center no-repeat;background-size: contain;}

.section.one .index_partner .part_img.img1{ transition-delay: 2.4s;}
.section.one .index_partner .part_img.img2{ transition-delay: 2.8s; }
.section.one .index_partner .part_img.img3{ transition-delay: 3.2s;}
.section.one .index_partner .part_img.img4{ transition-delay: 3.6s; }

.section.one .index_partner .part_img_b.img1_b{ transition-delay: 2s; animation: ppzs 4s infinite; }
.section.one .index_partner .part_img_b.img2_b{ transition-delay: 2.4s; animation: ppzs 4.5s 1s infinite; }
.section.one .index_partner .part_img_b.img3_b{ transition-delay: 2.8s; animation: ppzs 5.2s 0.5s infinite; }
.section.one .index_partner .part_img_b.img4_b{ transition-delay: 3.2s; animation: ppzs 5s 1.5s infinite; }

.index_partner .index-com-tit{ transform: translate(0,-100px); opacity: 0; transition: all 2s 1.5s;}
.index_partner .g_link_box{ transform: translate(0,100px); opacity: 0; transition: all 2s 1.5s;}


@keyframes ppzs{
    0% { transform: translate(0,0) rotate(0.1deg);}
    40% { transform: translate(0,10px) rotate(0.1deg);}    
    80% { transform: translate(0,-10px) rotate(0.1deg);}    
    100% { transform: translate(0,0) rotate(0.1deg);}
}



/*é¦–é¡µåŠ¨ç”»*/
.index_header .header {opacity: 0; transform: translateY(-60px);}
.section.active .header {opacity: 1; transform: translateY(0); transition: all 1.5s 0s;}
.ban_ad_left {opacity: 0; transform: translateX(-60px);}
.section.active .ban_ad_left {opacity: 1; transform: translateX(0); transition:all 1s 0s;}
.ban_ad_right {opacity: 0; transform: translateX(60px);}
.section.active .ban_ad_right {opacity: 1; transform: translateX(0); transition:all 1s 0s;}

.index_news .index-com-tit {transform: translate(-100px,0);opacity: 0;}
.section.one .index_news .index-com-tit{transform: translate(0,0);opacity: 1;transition: all 1.6s ease-out 0.2s;}
.index_new_tab {transform: translate(100px,0);opacity: 0;}
.section.one .index_new_tab {transform: translate(0,0);opacity: 1;transition: all 1.2s ease-out 0.2s;}
.index_news_swiper .swiper-slide{transform: translate(0,100px);opacity: 0;}
.section.one .swiper-slide {transform: translate(0,0);opacity: 1;}
.section.one .index_news_swiper .swiper-slide:nth-child(1) {transition: all 1s ease-out 0.4s;}
.section.one .index_news_swiper .swiper-slide:nth-child(2) {transition: all 1s ease-out 0.8s;}
.section.one .index_news_swiper .swiper-slide:nth-child(3) {transition: all 1s ease-out 1.2s;}
.section.one .index_news_swiper .swiper-slide:nth-child(4) {transition: all 1s ease-out 1.6s;}
.index_news .g_link_box {opacity: 0; transform: scale(0.5,0.5);}
.section.one .index_news .g_link_box {opacity: 1; transform: scale(1,1); transition: all 1s ease-out 1.2s;}

.index_buju {transform: translate(0,100px);opacity: 0;}
.section.one .index_buju {transform: translate(0,0);opacity: 1;transition: all 1s;}


.index_partner .img{opacity: 1; transition: all 3s 0s;}
.index_partner .part_img{opacity: 0; transform: scale(5); transition:all 2s 0s; /*transition: transform 2s, opacity 2s; transition-duration:2s;transition-delay: 2s;*/}

.section.one .box_logo {opacity: 0; transform: translate(0,100%); transition: all 0.6s ease-out 0.2s;}
.section.one .index_partner .img {opacity: 0; transform: scale(1.5); transition-delay: 1s;}
.section.one .index_partner .part_img {opacity: 1; transform: scale(1);  transition-delay: 4s;}
.section.one .index_partner .index-com-tit { transform: translate(0,0); opacity: 1; transition-delay: 4s;}
.section.one .index_partner .g_link_box { transform: translate(0,0); opacity: 1; transition-delay: 4s;}

/*å“ç‰Œå±•ç¤º*/
.ppzs_box {background-color: #f5f5f5;}
.ppzs_num_box {text-align: center; padding: 45px 0;}
.ppzs_num {display: inline-block; padding: 0 115px;}
.ppzs_num .num {font-size: 90px; color: #ff9900; line-height: 100px;}
.ppzs_num .tit {font-size: 20px; font-weight: bold; line-height: 30px; padding: 8px 0;}

.ppzs_logo_box {padding: 10px 0 100px;}
.ppzs_logo_box .logo_ul {margin: -5px;}
.ppzs_logo_box .logo_ul .li {float: left; width: 20%; box-sizing: border-box; padding: 5px;}
.ppzs_logo_box .img {position:relative; width: 264px;height: 212px; background: #fff; text-align: center; box-sizing: border-box; line-height: 210px;}
.ppzs_logo_box .img img {max-width: 100%; max-height: 100%;transform: scale(0.6,0.6);}
.ppzs_item {position: relative; cursor: pointer;transition:all 0.4s;-webkit-transition:all 0.4s;}
.ppzs_logo_box .img_con { width: 812px; height: 0; opacity: 0; transition:all 0.4s;-webkit-transition:all 0.4s; z-index: 10; position: absolute; top: 0; left: 0; background: #fff; box-sizing: border-box; color: #666; font-size: 16px; line-height: 26px; overflow: hidden;}
.ppzs_logo_box .img_con .img {position: absolute; left: 0; top: 0;}
.ppzs_logo_box .img_con .img img {transform:scale(1,1);}
.img_con .ppzs_p {overflow-x: hidden;  padding: 40px 50px 40px 274px; box-sizing: border-box; height: 100%;}

.ppzs_logo_box .li:hover .img_con {height: 434px; opacity: 1;box-shadow: 5px 4px 12px 0px rgba(0, 0, 0, 0.11);}


.ppzs_logo_box .left .img_con {right: 0; left: auto;}
.ppzs_logo_box .top .img_con {bottom: 0; top: auto;}
.left .img_con .ppzs_p {padding: 40px 274px 40px 50px;}
.ppzs_logo_box .left .img_con .img {right: 0; left: auto;}

.com-titArr h2{
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 48px;
    text-align: center;
    position: relative;
}
.com-titArr h2::after{
    content: "";
    width: 40px;
    height: 3px;
    background: #2C529F;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
}
.com-titArr p{
    font-size: 18px;
    color: #666;
    text-align: center;
    position: relative;
    margin-top: 30px;
}
.com-titArr.com-titArr-white h2{
    color: #fff;
}
.com-titArr.com-titArr-white h2::after{
    background: #fff;
}
.com-titArr-white p{
    font-size: 18px;
    color: #fff;
    text-align: center;
    position: relative;
    margin-top: 30px;
}
.about-wh .row{
    margin-top: 50px;
}
.about-wh{
    padding: 67px 0 100px 0;
    background: url(../images/about-wh-bg.png) no-repeat center;
    background-size: cover;
}
.about-wh .wh-box{
    position: relative;
}
.about-wh .slide_img {
    position: relative;
}
.about-wh .slide_img img{
    max-width: 100%;
    width: 100%;
    height: 250px;
}
.about-wh .slide_img .s_img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 9;
}
.about-wh .slide_img .s_img .s_img1,.about-wh .slide_img .s_img .s_img2{
    width: 122px;
    height: 122px;
}
.about-wh .slide_img .s_img2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.about-wh .slide_txt {
    background: #FFFFFF;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.06);
    border-radius: 0px 0px 10px 10px;
    text-align: center;
    padding: 30px 15px 50px 15px;
    position: relative;
}
.about-wh .slide_txt h2{
    font-size: 24px;
    font-weight: 600;
    color: #113275;
    line-height: 33px;
}
.about-wh .slide_txt p{
    font-size: 18px;
    font-weight: 400;
    color: #999999;
    line-height: 25px;
    margin-top: 6px;
    position: relative;
}
.about-wh .slide_txt p::after{
    content: "";
    width: 50px;
    height: 2px;
    background: #113275;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
}

.about-wh .slide_hide {
    position: absolute;
    top: 100%;
    /* left: 10px; */
    /* right: 10px; */
    bottom: 10px;
    overflow: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 100%;
    border-radius: 10px;
}
.about-wh .slide_hide .hide_tit {
    width: 100%;
    height: 250px;
    background-color: rgba(0, 69, 165, .8);
    color: #fff;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding-top: 110px;
}
.about-wh .slide_hide .hide_tit h2{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 33px;
}
.about-wh .slide_hide .hide_tit p{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 25px;
    margin-top: 6px;
    position: relative;
}
.about-wh .slide_hide .hide_tit p::after{
    content: "";
    width: 50px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
}
.about-wh .slide_hide .hide_desc {
    height: 30%;
    background: #FFFFFF;
    padding: 20px 40px;
    box-sizing: border-box;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    padding-top: 60px;
}
.about-wh-en .slide_hide .hide_desc{
    padding-top: 45px;
}

.about-wh .wh-box:hover .s_img {
    top: 10px;
}
.about-wh .wh-box:hover .s_img1 {
    opacity: 0;
}
.about-wh .wh-box:hover .s_img2 {
    opacity: 1;
}
.about-wh .wh-box:hover .slide_hide {
    top: 0;
}

.about-lc{
    padding: 70px 0 50px 0;
}
.about-lc .aboutlc-top .top-list{
    text-align: center;
}
.about-lc .aboutlc-top .top-list h2{
    font-size: 143px;
    font-weight: bold;
    color: #113275;
    line-height: 154px;
    background: linear-gradient(180deg, #2441A5 0%, #014198 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-lc .aboutlc-top .top-list .list-txt{
    width: 50%;
    margin: auto
}
.about-lc .aboutlc-top .top-list p{
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 28px;
    margin-top: 15px;
}
.about-lc .aboutlc-top{
    background: url(../images/about-lc-bg.png) no-repeat bottom;
    background-size: contain;
    padding-top: 60px;
    padding-bottom: 150px;
}
.about-lc .lc-bot{
    padding-top: 18px;
}
.about-lc .aboutlc-thumbs .con-box{
    padding-top: 13px;
    display: inline-block;
}
.about-lc .aboutlc-thumbs .con-box p{
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
    position: relative;
    padding-top: 32px;
    transition: all .3s;
}
.about-lc .aboutlc-thumbs .con-box p::after{
    content: "";
    width: 32px;
    height: 32px;
    background: url(../images/about-lc-icon.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -13px;
    transition: all .3s;
}
.about-lc .aboutlc-thumbs .swiper-slide-thumb-active .con-box p{
    color: #113275;
}
.about-lc .aboutlc-thumbs .swiper-slide-thumb-active .con-box p::after{
    width: 39px;
    height: 39px;
}
.about-lc .swiper-button-next,.about-lc .swiper-button-prev{
    color: #ccc;
}
.about-lc .swiper-button-next{
    right: 5%;
}
.about-lc .swiper-button-prev{
    left: 5%;
}
.about-ry{
    padding: 75px 0;
    background-size: cover;
    position: relative;
}
.about-ry .ry-box .aboutRy-swiper{
    margin-top: 60px;
}

.about-ry .aboutRy-con {
    text-align: center;
}
.about-ry .aboutRy-con img{
    max-width: 100%;
    height: 156px;
    object-fit: cover;
}
.about-ry .aboutRy-con p{
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    margin-top: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 48px;
}
.about-ry-en .aboutRy-con p{
    -webkit-line-clamp: 6;
    font-size: 14px;
}
.about-ry .swiper-button-next,.about-ry .swiper-button-prev{
    color: #ccc;
}
.about-ry .swiper-button-next{
    right: 2%;
}
.about-ry .swiper-button-prev{
    left: 2%;
}
/* å…³äºŽæˆ‘ä»¬ */

/* äº§å“ */
.pro1-list{
    padding: 40px 0 80px 0;
}
.pro1-list .row{
    margin-top: 30px;
}
.pro1-list .row .col-xl-6{
    padding-top: 30px;
}
.pro1-box{
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
    padding: 45px 0 45px 30px;
    position: relative;
}
.pro1-box .box-left{
    flex: 1;
}
.pro1-box .box-left h2{
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    line-height: 36px;
}
.pro1-box .box-left p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    margin-top: 18px;
}
.pro1-box .box-right img{
    max-width: 100%;
    width: 335px;
    height: 223px;
    object-fit: contain;
}
.pro1-box h3{
    font-size: 18px;
    font-weight: 400;
    color: #113275;
    line-height: 27px;
    position: absolute;
    left: 32px;
    bottom: 27px;
    z-index: 3;
    transition: all.3s;
}
.pro1-box h3::after{
    content: "";
    width: 32px;
    height: 32px;
    background: url(../images/pro1-icon-right.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -45px;
    transition: all .5s;
}
.pro1-box::after{
    content: "";
    width: 10px;
    height: 83px;
    background: linear-gradient(270deg, #2761AD 0%, #113275 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
}
.pro1-box:hover::after{
    width: 100%;
}
.pro1-box:hover h3{
    color: #FFFFFF;
}
.pro1-box:hover h3::after{
    background: url(../images/pro1-icon-right-white.svg) no-repeat center;
    background-size: contain;
    right: -700%;
}

.pro3-list{
    padding: 40px 0 100px 0;
}
.pro3-list .item_list{
    margin-top: 70px;
}
.pro3-list .item_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pro3-list .item {
    background: url(../images/pro3-item-bg.png) no-repeat center;
    background-size: cover;
    /* width: 100%; */
    flex: 0 0 49%;
    height: 130px;
    margin-bottom: 60px;
    padding-left: 31px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-radius: 10px;
}
.pro3-list .item #pdf {
    position: relative;
    z-index: 3;
}
.pro3-list .item p {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    flex: 1;
    line-height: 28px;
    padding-left: 56px;
    z-index: 90;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.pro3-list .item #xiazai1 {
    margin-right: 27px;
    transition: all .3s ease;
    z-index: 90;
    cursor: pointer;
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.pro3-list .item #xiazai {
    display: none;
    margin-right: 27px;
    transition: all .3s ease;
    z-index: 90;
    cursor: pointer;
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.pro3-list .item::after {
    content: '';
    width: 0;
    height: 100%;
    background: linear-gradient(270deg, #E30613 0%, rgba(227,6,19,0) 100%);
    position: absolute;
    right: 0;
    top: 0;
    transition: all .5s ease;
    border-radius: 10px;
}
.pro3-list .item:hover::after {
    width: 100%;
}
.pro3-list .item:hover #xiazai {
    display: block;
}
.pro3-list .item:hover #xiazai1 {
    display: none;
}

.pro2-list{
    padding: 40px 0 120px 0;
}
.pro2-list .row{
    margin-top: 30px;
}
.pro2-list .row .col-xl-4{
    padding-top: 30px;
}
.pro2-box{
    display: block;
}
.pro2-box .box-tit{
    padding: 36px 15px;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
    border-top: 8px solid #113275;
    transition: all .3s;
}
.pro2-box .box-tit h2{
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    line-height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 72px;
}
.pro2-box-en .box-tit h2{
    -webkit-line-clamp: 3;
    min-height: 108px;
}
.pro2-box .box-tit p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    margin-top: 20px;
    min-height: 24px;
}
.pro2-box .box-img img{
    max-width: 100%;
    height: 296px;
    object-fit: cover;
    width: 100%;
}
.pro2-box:hover .box-tit{
    border-top-color: #E30613;
}


.pro1Show-head{
    background: #FFFFFF;
    padding: 23px 70px;
    height: fit-content;
    position: sticky;
    top: 88px;
    z-index: 20;
}
.pro1Show-head .box-right span{
    padding-right: 18px;
}
.pro1Show-head .box-right {
    display: flex;
    align-items: center;
}
.pro1Show-head .box-right a{
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #020F1E;
    line-height: 24px;
}
.pro1Show-head .box-right li:not(:last-child) a::after {
    content: "";
    width: 14px;
    height: 14px;
    background: url(../images/pro1Show-head-icon-right.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.pro1Show-head .box-right li:not(:last-child) a {
    padding-right: 52px;
}
.pro1Show-top{
    background: url(../images/pro1Show-top-bg.png) no-repeat center;
    background-size: cover;
    padding: 145px 0 60px 0;
}
.pro1Show-top .top-left img{
    max-width: 100%;
}
.pro1Show-top .right1 h2{
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    line-height: 50px;
}
.pro1Show-top .right1 p{
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 25px;
    margin-top: 14px;
    margin-top: 12px;
}
.pro1Show-top .right1{
    padding-top: 10px;
    padding-bottom: 28px;
    border-bottom: 1px solid #D8D8D8;
}
.pro1Show-top .right2{
    margin-top: 50px;
}
.pro1Show-top .right2 h2{
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
}
.pro1Show-top .right2 ul{
    display: flex;
    margin-top: 28px;
}
.pro1Show-top .right2 ul li{
    text-align: center;
}
.pro1Show-top .right2 ul li:not(:last-child){
    margin-right: 40px;
}
.pro1Show-top .right2 ul h3{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 22px;
}
.pro1Show-top .right2 ul p{
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    margin-top: 12px;
}
.pro1Show-top .right3{
    margin-top: 45px;
}
.pro1Show-top .right3 a{
    background: #113275;
    display: inline-block;
    padding: 13px 45px;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
}
.product_content {
    padding: 50px 0 100px 0;
}

.product_content .com_title {
    font-size: 36px;
    font-weight: 500;
    color: #000000;
    line-height: 50px;
    padding-left: 27px;
    position: relative;
}

.product_content .com_title::after {
    content: '';
    width: 17px;
    height: 34px;
    background: url(../images/pro1Show-bot-tit-bg.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 17%;
}
.product_content .overview{
        padding-bottom: 40px;
    border-bottom: 2px solid #F1F1F1;
}
.product_content .overview p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
    margin-top: 25px;
    text-align: justify;
}
.product_content_en .overview p{
    text-align: inherit;
}


.product_content .character {
    padding-top: 59px;
    padding-bottom: 40px;
    border-bottom: 2px solid #F1F1F1;
}

.product_content .character .list {
    margin-top: 25px;
}

.product_content .character .list p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
}

.product_content .character .item {
    margin-bottom: 36px;
    display: flex;
}

.product_content .character .item img {
    width: 155px;
    height: 160px;
}

.product_content .character .text {
    margin-left: 20px;
}

.product_content .character .item h2 {
    font-size: 21px;
    font-weight: 600;
    color: #000000;
    line-height: 29px;
    margin-bottom: 11px;
}

.product_content .character .item p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
}

.product_content .science {
    padding-top: 59px;
    padding-bottom: 40px;
    border-bottom: 2px solid #F1F1F1;
}

.product_content .science .pshow-jscs  img {
    max-width: 100%;
    height: auto;
    /* width: 30%; */
}

.product_content .science .pshow-tip{
    margin-top: 8px;
}
.product_content .science .pshow-tip  p{
    font-size: 16px;
    font-weight: 400;
    color: #E30613;
    line-height: 26px;
}

.product_content .science h2 {
    margin-bottom: 25px;
}

.product_content .pdf {
    padding-top: 69px;
    padding-bottom: 80px;
    border-bottom: 2px solid #F1F1F1;
}

.product_content .pdf .item{
    margin-bottom: 0;
    margin-top: 69px;
}
.product_content .correlation {
    padding-top: 69px;
    padding-bottom: 80px;
    border-bottom: 2px solid #F1F1F1;
}

.product_content .correlation .list {
    display: flex;
    justify-content: space-between;
    margin-top: 47px;
}

.product_content .correlation .item {
    text-align: center;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border: 1px solid #E3E3E3;
    flex-direction: column;
    justify-content: flex-end;
    flex: 0 0 45.5%;
}

.product_content .correlation .item .img {
    width: 100%;
    padding: 52px 71px;
}

.product_content .correlation .item img {
    display: block;
    width: 100%;
    height: 100%;
    /* object-fit: none; */
}

.product_content .correlation .item .title {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-left: 28px;
    border-top: 1px solid #E3E3E3;
    min-height: 75px;
    position: relative;
}

.product_content .correlation .item .title img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    position: absolute;
    right: 0;
    transition: all .3s ease-out;
}

.product_content .correlation .item .title .red1 {
    opacity: 0;
    visibility: hidden;
}

.product_content .correlation .item:hover .white1 {
    opacity: 0;
    visibility: hidden;
}

.product_content .correlation .item:hover .red1 {
    opacity: 1;
    visibility: inherit;
}

.product_content .correlation .item .title b {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 25px;
}


.product_content .choice{
    padding-top: 69px;
    padding-bottom: 80px;
    border-bottom: 2px solid #F1F1F1;
}

.product_content .cart-box {
    background: #FFFFFF;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 18px;
    margin-top: 69px;
}

.product_content .cart-box .box-left {
    display: flex;
    align-items: center;
}

.product_content .cart-box .box-left p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 22px;
    margin-left: 8px;
}
.product_content .case {
    padding-top: 69px;
    margin-bottom: 161px;
}

.product_content .case .list {
    display: flex;
    flex-direction: column;
    margin-top: 31px;
}

.product_content .case .list .item {
    display: flex;
    background: #F8F8F8;
    padding: 7px;
    margin-bottom: 24px;
}

.product_content .case .list .item>img {
    margin-right: 20px;
    max-width: 208px;
    max-height: 135px;
}

.product_content .case .list .text {
    padding-top: 7px;
}

.product_content .case .list .text h2 {
    font-size: 21px;
    font-weight: 600;
    color: #000000;
    line-height: 29px;
    margin-bottom: 11px;
}

.product_content .case .list .text p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product_content .right_list {
    position: sticky;
    top: 158px;
    background-color: #fff;

}

.product_content .right_list dl {
    /* padding-left: 20px; */
    margin-bottom: 28px;
}

.product_content .right_list dd {
    padding-left: 20px;
    transition: all .1s;
}

.product_content .right_list dd a {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 60px;
}

.product_content .right_list dl>.active {
    background: #F8F8F8;
    border-right: 4px solid #113275;
}

.product_content .right_list dl>.active a {
    color: #113275;
}

.product_content .enquiry .text {
    background: #F8F8F8;
    padding: 20px;
}

.product_content .enquiry>img {
    max-width: 100%;
}

.product_content .enquiry .text h2 {
    font-size: 21px;
    font-weight: 600;
    color: #333333;
    line-height: 32px;
    margin-bottom: 19px;
}

.product_content .enquiry .text p {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 42px;
}

.product_content .enquiry .text>div {
    display: flex;
    align-items: center;
}

.product_content .enquiry .text img {
    margin-right: 11px;
}

.product_content .enquiry .btn1 {
    display: inline-block;
    width: 100%;
    padding: 17px 68px;
    line-height: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    background: #113275;
    margin-top: 19px;
    text-align: center;
    cursor: pointer;
}
.product_content .on {
    left: 0;
}

.showPro2-top .top-left .shop-img img{
    width: 100%;
    height: 447px;
    object-fit: cover;
}
.showPro2-top .top-left .shop-banner-nav img{
    width: 100%;
    height: 101px;
    object-fit: cover;
}
.showPro2-top .top-left .shop-banner-nav{
    margin-top: 20px;
}
.showPro2-top{
    background: url(../images/pro2Show-top-bg.png) no-repeat center;
    background-size: cover;
    padding: 145px 0 60px 0;
}
.showPro2-top .right1 h2{
    font-size: 36px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #000000;
    line-height: 50px;
}
.showPro2-top .right1 p{
    font-size: 18px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 25px;
    margin-top: 12px;
}
.showPro2-top .right1{
    padding-bottom: 28px;
    border-bottom: 1px solid #D8D8D8;
}
.showPro2-top .right2{
    margin-top: 35px;
}
.showPro2-top .right2 h3{
    font-size: 20px;
    font-family: SourceHanSansCN-Bold, SourceHanSansCN;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    margin-bottom: 20px;
}
.showPro2-top .right2 ul li{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 36px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}
.showPro2-top .right2 ul li::after{
    content: "";
    width: 17px;
    height: 15px;
    background: url(../images/pro2Show-top-icon-dbx.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.showPro2-bot .bot1{
    background: linear-gradient(180deg, #FBFBFB 0%, #F5F5F5 100%);
}
.showPro2-bot .bot1 ul{
    display: flex;
    align-items: center;
}
.showPro2-bot .bot1 ul a{
    font-size: 18px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 25px;
    display: inline-block;
    padding: 15px 45px;
}
.showPro2-bot .bot1 ul a.act{
    background: #E30613;
    color: #fff;
}
.showPro2-bot .bot2{
    padding: 40px 0 80px 0;
}
.showPro2-bot .bot2-list{
    display: none;
}
.showPro2-bot .bot2-list.active{
    display: block;
}
.showPro2-bot .bot2-list p{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 30px;
}
.showPro2-bot .bot2-list img{
    height: auto;
}
/* äº§å“ */
/* æ¡ˆä¾‹ */
.case-list .row{
}
.case-list .row .col-xl-6{
    padding-bottom: 30px;
}
.case-list .list-box{
    display: block;
}
.case-list .list-box .box-img>img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.case-list .list-box .box-txt{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    transition: all .3s;
    position: relative;
}
.case-list .list-box .box-txt::after{
    content: "";
    width: 10px;
    height: 100%;
    background: linear-gradient(270deg, #2761AD 0%, #113275 100%);
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s;
}
.case-list .list-box:hover .box-txt::after{
    width: 100%;
}
.case-list .list-box .box-txt h3{
    font-size: 20px;
    font-family: SourceHanSansCN-Bold, SourceHanSansCN;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
    transition: all .3s;
    z-index: 3;
}
.case-list .list-box .box-txt .txt-icon{
    z-index: 3;
}
/* .case-list .list-box:hover .box-txt{
    background: linear-gradient(270deg, #2761AD 0%, #113275 100%);
} */
.case-list .list-box:hover .box-txt h3{
    color: #FFFFFF;
}
/* æ¡ˆä¾‹ */
/* æ–°é—» */
.news-list .row{
}
.news-list .row .col-xl-4{
    padding-bottom: 30px;
}
.news-list .box1-text{
    padding: 25px 6px;
}
.news-list .box1-text p img{
    vertical-align: middle;
}
.news-list .box1-text p span{
    font-size: 16px;
    font-family: SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    vertical-align: middle;
    padding-left: 10px;
}
.news-list .box1-text h2{
    font-size: 18px;
    font-family: SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    color: #06092D;
    line-height: 34px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 68px;
    margin: 10px 0 20px 0;
}
.news-list .box1-text h3{
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 34px;
    transition: all .3s;
}
.news-list .box1 .box1-img{
    overflow: hidden;
}
.news-list .box1 .box1-img img{
    transition: all .5s;
    height: 275px;
    object-fit: cover;
    width: 100%;
}
.news-list .box1:hover .box1-img img{
    transform: scale(1.1);
}
.news-list .box1:hover .box1-text h2{
    color: #025CBD;
}

.latestDetail .left-dt .dt-top h2{
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    line-height: 39px;
}
.latestDetail .left-dt .dt-top p{
    margin: 35px 0 20px 0;
    display: flex;
}
.latestDetail .left-dt .dt-top p i{
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 21px;
    padding-left: 10px;
}
.latestDetail .left-dt .dt-top p span:first-child{
    padding-right: 15px;
    display: flex;
}
.latestDetail .left-dt .dt-top p span:last-child{
    border-left: 1px solid #D8D8D8;
    padding-left: 15px;
    display: flex;
}
.latestDetail .left-dt .dt-top {
    border-bottom: 1px solid #D8D8D8;
}
.latestDetail .left-dt .dt-cont {
    padding: 30px;
}
.latestDetail .left-dt .dt-cont .dt_img{
    text-align: center;
}
.latestDetail .left-dt .dt-cont .dt_img img{
    max-width: 800px;
    margin: 20px auto ;
}
.latestDetail .left-dt .dt-cont h2{
    font-size: 20px;
    font-weight: 400;
    color: #333;
    line-height: 32px;
    margin-top: 8px;
}
.latestDetail .left-dt .dt-cont p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
    margin-top: 8px;
}
.latestDetail .left-dt .dt-cont a{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #007bff;
    line-height: 30px;
}
.latestDetail .left-dt .dt-cont video{
    max-width: 100%;
    margin: 20px auto;
}
.latestDetail .right-box1 {
    background: #F7FAFC;
    padding: 24px;
}

.latestDetail .right-box1 ul {
    margin-top: 24px;
}

.latestDetail .right-box1 h3 {
    font-size: 24px;
    font-family:"Microsoft YaHei", SourceHanSansCN-Bold, SourceHanSansCN;
    font-weight: bold;
    color: #333333;
    line-height: 36px;
}

.latestDetail .right-box1 li {
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 20px;
}

.latestDetail .right-box1 li:not(:last-child) {
    margin-bottom: 20px;
}

.latestDetail .right-box1 a {
    font-size: 16px;
    font-family:"Microsoft YaHei",  SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    display: flex;
}
.latestDetail .right-box1 a img{
    width: 97px;
    height: 68px;
}
.latestDetail .right-box1 a span{
    padding-left: 12px;
}

.latestDetail .right-box1 a:hover {
    color: #2552A2;
}

.latestDetail .right-box2 {
    margin-top: 20px;
    border: 1px solid #E9E9E9;
}

.latestDetail .right-box2 .box2-link {
    display: inline-block;
    background: #F7FAFC;
    border-bottom: 1px solid #E9E9E9;
    padding: 20px 0;
    width: 100%;
    text-align: center;
}

.latestDetail .right-box2 .box2-link span {
    font-size: 18px;
    font-family:"Microsoft YaHei",  SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    color: #333333;
    line-height: 27px;
}

.latestDetail .right-box2 .box2-link i {
    background: url(../images/latestDetail-icon-fanhui.svg) no-repeat center;
    background-size: contain;
    width: 16px;
    height: 14px;
    display: inline-block;
    margin-left: 6px;
}

.latestDetail .right-box2 .bot2-box {
    padding: 20px;
}

.latestDetail .right-box2 .bot2-box h3 {
    font-size: 18px;
    font-family:"Microsoft YaHei",  SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    color: #B1B1B1;
    line-height: 27px;
    margin-bottom: 5px;
}

.latestDetail .right-box2 .bot2-box a {
    font-size: 16px;
    font-family:"Microsoft YaHei",  SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    color: #666666;
    line-height: 29px;
    transition: all .3s;
}

.latestDetail .right-box2 .bot2-box:first-child {
    border-bottom: 1px solid #E9E9E9;
}

.latestDetail .right-box2 .bot2-box a:hover {
    color: #2552A2;
}

.latestDetail .right-box3 {
    background: #F7FAFC;
    border: 1px solid #E5E5E5;
    border-top: 3px solid #0E3F8E;
    margin-top: 20px;
    padding: 30px;
}

.latestDetail .right-box3 p {
    font-size: 18px;
    font-family:"Microsoft YaHei",  SourceHanSansCN-Regular, SourceHanSansCN;
    font-weight: 400;
    color: #333333;
    line-height: 27px;
    text-align: center;
}

.latestDetail .right-box3 .box3-bot {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
}

.latestDetail .right-box3 .box3-bot a {
    padding: 10px 25px;
    display: inline-block;
    background: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 29px;
}
.contact_box{}
.contact_box .contact_lft{
    background-color: #fafafa;
    padding: 30px;
    height: 300px;
    border-radius: 10px;
}
.contact_lft .h3{ font-size: 22px; color: #333; margin-bottom: 25px; font-weight: bold;}
.contact_lft .contact_info{}
.contact_lft .contact_info p{ display: flex; align-items: center; font-size: 16px; color: #666; margin-bottom: 15px; line-height: 28px;}
.contact_lft .contact_info p img{
    margin-left: 8px;
    margin-right: 10px;
    width: 18px;
}
.contact_rgt{border-radius: 10px;}
.contact_rgt .contact_map{
    width: 100%;
    height: 300px;
}
/* æ–°é—» */

/* åˆä¼™äººæ‹›å‹Ÿ */
.partner1 .partner1-box{
    display: flex;
}
.partner1 .box-left,.partner1 .box-right{
    width: 50%;
}
.partner1 .box-left{
    position: relative;
}
.partner1 .box-left .leftIcon{
    position: absolute;
    top: 60px;
    left: 60px;
}
.partner1 .box-right{
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    border-radius: 0px 10px 10px 0px;
    padding: 55px 65px;
    position: relative;
}
.partner1 .box-right .right-tit h2{
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    line-height: 45px;
    margin-top: 10px;
}
.partner1 .box-right .right-ul{
    margin-top: 24px;
}
.partner1 .box-right .right-ul li{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 36px;
    position: relative;
    padding-left: 25px;
}
.partner1 .box-right .right-ul li::after {
    content: "";
    width: 17px;
    height: 15px;
    background: url(../images/pro2Show-top-icon-dbx.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.partner1 .box-right .right-logo{
    position: absolute;
    right: 46px;
    bottom: 37px;
}
.index-fg img {
    width: 100%;
}
.partner2 .down-cont{
	margin-top: 48px;
}
.partner2 .cont-box{
	background: #FFFFFF;
    box-shadow: 0px 0px 14px rgb(0 0 0 / 10%);
	border-radius: 14px;
	display: inline-block;
	padding: 50px 30px;
	width: 100%;
    height: 100%;
	text-align: center;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
    border: 5px solid #fff;
    border-radius: 10px;
    overflow: hidden;
}
.partner2 .cont-box:hover{
    background: rgba(255,255,255,0.6);
    border-image: linear-gradient(180deg, rgba(39, 97, 173, 1), rgba(17, 50, 117, 1)) 5 5;
	padding: 30px 30px 70px 30px;
    border: 5px solid rgba(39, 97, 173, 1);
}
.partner2 .cont-box:hover img{
	-webkit-animation: icon-bounce 0.5s alternate;
    -moz-animation: icon-bounce 0.5s alternate;
    -o-animation: icon-bounce 0.5s alternate;
    animation: icon-bounce 0.5s alternate;
}
/* animation */
@keyframes icon-bounce {
	0%, 100% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
}
	25% {
		-moz-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
}
	50% {
		-moz-transform: rotate(-15deg);
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}
	75% {
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	85% {
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
}
.partner2 .cont-box h2{
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    line-height: 33px;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
    margin: 28px 0 14px 0;
    transition: all .3s;
}
.partner2 .cont-box:hover h2{
    color: #113275;
}
.partner2 .cont-box p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
    text-align: center;
    text-transform: uppercase;
}
.partner3{
    background: url(../images/partner3-bg.png) no-repeat center;
    background-size: cover;
}
.partner3 .row{
   margin-bottom: -30px;
}
.partner3 .col-xl-4{
    padding-bottom: 30px;
}
.partner3 .box-cent{
    display: block;
    background: #FFFFFF;
    border-radius: 10px;
    opacity: 0.8;
    backdrop-filter: blur(5px);
    padding: 28px 15px 50px 15px;
    text-align: center;
    height: 100%;
}
.partner3 .box-cent p{
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    line-height: 34px;
    margin-top: 10px;
	text-align: center;
    min-height: 68px;
}
.partner3 .box-cent:hover img{
	-webkit-animation: icon-bounce 0.5s alternate;
    -moz-animation: icon-bounce 0.5s alternate;
    -o-animation: icon-bounce 0.5s alternate;
    animation: icon-bounce 0.5s alternate;
}
.partner4{
    background: url(../images/partner4-bg.png) no-repeat center;
    background-size: cover;
    padding-bottom: 0;
}
.partner4 .partner4-box{
    text-align: center;
    margin-bottom: -2px;
}
.partner5{
    background: url(../images/partner5-bg.png) no-repeat center;
    background-size: cover;
}
.jy-info-past3-l{
    float: left;
    width: 50%;
}
.jy-info-past3-r{
    width: 50%;
    padding-left: 72px;
    float: right;
}
.jy-info-past3-l h2{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 27px;
}
.jy-info-past3-l h3{
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    line-height: 50px;
    margin: 30px 0 50px 0;
}
.jy-info-past3-l p{
    font-size: 16px;
    font-weight: 400;
    color: #C8E0FF;
    line-height: 32px;
    margin-bottom: 60px;
}
.jy-info-past3-l h4{
    font-size: 14px;
    font-weight: 400;
    color: #C8E0FF;
    line-height: 20px;
    margin-bottom: 6px;
}
.jy-info-past3-l h5 {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}
.jy-info-past3-p a{
    font-size: 16px;
    font-weight: 400;
    color: #113275;
    line-height: 57px;
    width: 189px;
    height: 57px;
    background: #FFFFFF;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    padding-left: 30px;
    text-align: center;
    float: left;
    margin-right: 60px;
}

.jy-info-past3-p a:hover img.act{
    display: inline-block;
}
.jy-info-past3-p a img{
    position: absolute;
    top: 15px;
    left: 39px;
}
.jy-info-past3-p a img.act{
    display: none;
}
.jy-info-past3-pp i{
    width: 57px;
    height: 57px;
    background: url("../images/partner5-icon-tel.svg") center;
    border-radius: 50%;
    position: relative;
    float: left;
    margin-right: 10px;
}
.city input,.city select{
    width: 31%;
    height: 50px;
    background: rgb(255 255 255 / 40%);
    border-radius: 5px;
    border: none;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 20px;
    margin-left: 15px;
}
.city select>option{
    color: #000;
}
.city .market{
    margin-left: 0;
}
.ct{
    display: none;
}
.ct.active{
    display: inline-block;
}
.citt-in input{
    width:100%;
    height: 50px;
    background: rgb(255 255 255 / 40%);
    border-radius: 5px;
    border: none;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 20px;
    margin-top: 40px;
}
.citt-ins input{
    width: 189px;
    height: 57px;
    background: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #113275;
    line-height: 22px;
    margin-top: 40px;
    background-color: #fff;
    border-color: #fff;
    box-shadow: none;
}
.citt-in input::-webkit-input-placeholder{
    color: #fff;
}
.citt-ins input.btn-primary:hover {
    color: #113275;
    background-color: #fff;
    border-color: #fff;
}
.citt-ins input.btn-primary.active {
    color: #113275;
    background-color: #fff;
    border-color: #fff;
}
/* 人才招聘 */
.zhwlist{ width: 100%; padding: 0 15px;}
.zhwlist li{padding: 25px; border-bottom: 1px solid #E6E6E6; }
.zhwlist li:last-child{border-bottom: 0; }
.zhwlist .tit{line-height: 40px; cursor: pointer; width: 100%;display: flex; justify-content: space-between; align-items: center;}
.zhwlist .tit .h3{ font-size: 18px; font-weight: inherit; width: 30%; margin-bottom: 0;}
.zhwlist .tit span{float: right;}
.zhwlist .cons{padding: 10px 0; display: none;}
.zhwlist .con h3{padding-bottom: 1em; padding: 0 0 15px;}
.zhwlist .con .txt{color: #666; line-height: 2em;}
.zhwlist .con{padding-top: 20px; font-size: 16px; line-height: 30px;}
.zhwlist .email {margin-top: 20px;}
.zhwlist .email a{display: block;
    margin-top: 40px;
    width: 230px;
    line-height: 50px;
    box-sizing: border-box;
    border-radius: 50px;
    background: #2C529F;
    color: #fff;
    text-align: center;
    font-size: 16px;}
.zhwlist li.cur .tit span{background: url(../images/zhkico2.png) no-repeat; background-size: 100%;}
.zhwlist li.cur .tit span img{opacity: 0;}
/* è”ç³»æˆ‘ä»¬ */
.contact1{
    background: url(../images/contact1-bg.png) no-repeat center;
    background-size: cover;
}
.contact1 .contact1-left{
    padding-top: 65px;
    float: left;
}
.contact1 .contact1-right{
    float: right;
}
.contact1 .left-tit h3{
    font-size: 36px;
    font-weight: 400;
    color: #113275;
    line-height: 50px;
    position: relative;
}
.contact1 .left-tit h3::before{
    content: "";
    width: 67px;
    height: 6px;
    background: #113275;
    border-radius: 3px;
    position: absolute;
    left: 0;    
    top: -20px;
}
.contact1 .left-tit h3::after{
    content: "";
    width: 67px;
    height: 6px;
    background: #E30613;
    border-radius: 3px;
    position: absolute;
    left: 6%;    
    top: -20px;
}
.contact1 .left-tit h2{
    font-size: 52px;
    font-weight: 800;
    color: #113275;
    line-height: 78px;
    margin-top: 7px;
}
.contact1 .contact1-left .left-ul{
    margin-top: 50px;
}
.contact1 .contact1-left .left-ul li{
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 27px;
    position: relative;    
    padding-left: 45px;
}
.contact1 .contact1-left .left-ul li::after{
    content: "";
    width: 29px;
    height: 29px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.contact1 .contact1-left .left-ul li.email::after{
    background: url(../images/contact1-icon-email.svg) no-repeat center;
    background-size: contain;
}
.contact1 .contact1-left .left-ul li.tel::after{
    background: url(../images/contact1-icon-tel.svg) no-repeat center;
    background-size: contain;
}
.contact1 .contact1-left .left-ul li.adddress::after{
    background: url(../images/contact1-icon-adress.svg) no-repeat center;
    background-size: contain;
}
.contact1 .contact1-left .left-ul li.home::after{
    background: url(../images/contact1-icon-home.svg) no-repeat center;
    background-size: contain;
} 
/* .contact1 .contact1-left .left-ul li:first-child::after{
    background: url(../images/contact1-icon-email.svg) no-repeat center;
    background-size: contain;
} */
/* .contact1 .contact1-left .left-ul li:nth-child(2)::after{
    background: url(../images/contact1-icon-tel.svg) no-repeat center;
    background-size: contain;
} */
/* .contact1 .contact1-left .left-ul li:nth-child(3)::after{
    background: url(../images/contact1-icon-home.svg) no-repeat center;
    background-size: contain;
} */
/* .contact1 .contact1-left .left-ul li:nth-child(3)::after{
    background: url(../images/contact1-icon-adress.svg) no-repeat center;
    background-size: contain;
}
.contact1 .contact1-left .left-ul li:nth-child(4)::after{
    background: url(../images/contact1-icon-adress.svg) no-repeat center;
    background-size: contain;
} */
.contact1 .contact1-left .left-ul li:not(:last-child){
    margin-bottom: 25px;
}
.contact1 .contact1-right{
    position: relative;
}
.contact1 .contact1-right .map-tw{
    position: absolute;
    right: 0;
    bottom: 0;
}
.contact1 .contact1-right .map-list{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.contact1 .map-list .map1{
    position: absolute;
    top: 67%;
    left: 49%;
}
.contact1 .map-list .map2{
    position: absolute;
    top: 58%;
    left: 57%;
}
.contact1 .map-list .map3{
    position: absolute;
    top: 73%;
    left: 63%;
}
.contact1 .map-list .map4{
    position: absolute;
    top: 86%;
    left: 64%;
}
.contact1 .map-list .map5{
    position: absolute;
    top: 43%;
    left: 72.5%;
}
.contact1 .map-list .map6{
    position: absolute;
    /*top: 63%;*/
    /*left: 75%;*/
    
    top: 59%;
    left: 71%;
}
.contact1 .map-list .map7{
    position: absolute;
    /*top: 70%;*/
    /*left: 75%;*/
    top: 67%;
    left: 72%;
}
.contact1 .map-list .list-box{
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 20px;
    position: absolute;
    width: 450px;
    left: 100%;
    top: 100%;
    z-index: 3;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: transform .3s, opacity .3s, visibility .3s, -webkit-transform .3s;
}
.contact1 .map-list .list-box .box-tit{
    display: flex;
    align-items: center;
}
.contact1 .map-list .list-box .box-tit h2{
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    line-height: 36px;
    margin-left: 13px;
}
.contact1 .map-list .list-box .box-address{
    margin-top: 10px;
}
.contact1 .map-list .list-box .box-address p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
}
.contact1 .map-list .list-box .box-phone{
    margin-top: 10px;
}
.contact1 .map-list .list-box .box-phone p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 32px;
}
.contact1 .map-list .list-yuan{
    width: 18px;
    height: 18px;
    background: rgb(255, 255, 255 , 0.9);
    border-radius: 50%;
    animation: dw 2s ease-in infinite;
}
.contact1 .map-list .list-yuan::after{
    content: "";
    width: 9px;
    height: 9px;
    background: #0E4BAF;
    border-radius: 50%;
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translate(-50%,-50%);
    animation: dwa 2s ease-in infinite;
}
.contact1 .map-list li:hover .list-box{
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
@keyframes dw {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}
@keyframes dwa {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    5% {
        -webkit-transform: scale(1.1);
    }

    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}


.contact2 .contact2-box{
    position: relative;
}
.contact2 .contact2-box .cont-yuan{
    position: absolute;
    top: 62px;
    right: 62px;
}
.contact2 .contact2-box .cont-text{
    position: absolute;
    left: 30px;
    bottom: 34px;
}
.contact2 .contact2-box .cont-text h2{
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    line-height: 30px;
}
.contact2 .contact2-box .cont-text p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 28px;
    margin-top: 13px;
    margin-bottom: 25px;
    min-height: 56px;
}
.contact2 .contact2-box .cont-text a{
    display: inline-block;
    background: linear-gradient(180deg, #2441A5 0%, #014198 100%);
    box-shadow: 0px 0px 5px 0px rgba(17,50,117,0.6);
    border-radius: 23px;
    padding: 12px 30px;
}
.contact2 .contact2-box .cont-text a img{
    vertical-align: middle;
}
.contact2 .contact2-box .cont-text a span{
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 21px;
    padding-left: 12px;
    vertical-align: middle;
}

.contact3-left .left-tit h3{
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    line-height: 48px;
    position: relative;
}
.contact3-left .left-tit h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #173274;
    border-radius: 2px;
    position: absolute;
    left: 0;
    bottom: -12px;
}
.contact3-left p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    margin-top: 30px;
}
.contact3-right .form-group label{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
}
.contact3-right .form-group .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #025CBD;
    outline: 0;
    box-shadow: inherit;
}
.contact3-right .form-group button{
    width: 175px;
    height: 40px;
    background: #025CBD;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    border: none;
    color: #fff;
    font-size: 18px;
}
/* è”ç³»æˆ‘ä»¬ */

/* åˆ†é¡µ */
.text-center{
    z-index: 2;
    position: relative;
}
.pager .pagination{
    margin: 25px 0;
}
.pager ul{
    justify-content: center;
}
.pager li {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 32px;
    margin: 0 5px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #7F7F7F;
}
.pager li.active {
    background: #2C529F;
    color: #fff;
}
.pager li:hover {
    background: #2C529F;
    color: #fff;
}
.pager li:hover a {
    color: #fff;
}
.pager li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #7F7F7F;
}
/* åˆ†é¡µ */
.loadmore{
    text-align: center;
    margin: 25px 0;
}
.loadmore .loadmore-tips{
    font-size: 22px;
    font-weight: 400;
    color: #2C529F;
    line-height: 30px;
}

/* æœç´¢ç»“æžœé¡µ */
.search-cont{
    padding: 140px 0 40px 0;
    border-top: 1px solid #E0E0E0;
}
.search-cont .search-txt p{
	font-size: 20px;
	font-weight: 400;
	color: #333333;
	line-height: 28px;
}
.search-cont .search-txt p>strong{
	color: #2C529F;
}
.search-cont .search-list{
	margin-top: 20px;
}
.search-cont .search-box p{
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	line-height: 20px;
}
.search-cont .search-box h2{
	font-size: 20px;
	font-weight: 400;
	color: #333333;
	line-height: 28px;
	margin-top: 10px;
}
.search-cont .search-box{
	padding: 25px 0;
	position: relative;
}
.search-cont .search-box::before{
	content: "";
	width: 100%;
	height: 2px;
	background:#ECECEC;
	position: absolute;
	bottom: 0;
	left: 0;
}
.search-cont .search-box::after{
	content: "";
	width: 0;
	height: 2px;
	background:#ECECEC;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
}
.search-cont .search-box:hover::after{
	background: #113275;
    width: 100%;
}
.search-cont .left-search{
	display: flex;
    margin: 20px 0;
    border: 1px solid #2552A2;
    padding-left: 15px;
    border-radius: 25px;
    overflow: hidden;
}
.search-cont .left-search input {
    flex: 1;
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
    line-height: 20px;
    background: #fff;
}
.search-cont .left-search button{
	outline: none;
    border: none;
    background: #2552A2;
    padding: 10px 25px;
}
.search-cont .left-search button span {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22px;
    vertical-align: middle;
    padding-left: 5px;
}

@media screen and (min-width: 1400px){
    .container {
        max-width: 1400px;
    }
}
@media screen and (max-width:1024px){
    .pt50{
        padding-top: 30px;
    }
    .com-titArr-white p{
        font-size: 16px;
        line-height: 24px;
    }
    .com-titArr h2{
        font-size: 24px;
    }
    .headMob{
        display: block
    }
    .headPc{
        display: none;
    }
    .footer{
        overflow: auto;
        padding-top: 10px;
    }
    .footer .container{
        display: none;
    }
    .footer-bottom{
        padding: 12px 10px;
        border-top: 0;
    }
    .business_box .col-xl-4, .news_box .col-xl-6{
        margin-bottom: 20px;
    }
    .business_box .row, .about_box .row, .adv_box .row, .news_box .row, .job_box .row, .contact_box .row{
        padding-top: 40px;
    }
    .news_item a{
        display: block;
    }
    .news_img{
        width: 100%;
    }
    .news_img img{
        height: auto;
    }
    .news_text{
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    .news_text p{
        height: auto;
        margin-bottom: 10px;
    }
    .index-banner{
        margin-top: 60px;
    }
    .index-banner .banner-cont{
        display: none;
    }
    .index-banner .index-swiper .slide-video{
        display: none;
    }
    .index-banner .index-swiper .banner-box .bannerImg{
        height: 23vh;
    }
    .index-phone-video{
        display: block;
    }
    .index-phone-video .list-ul h2 span{
        font-size: 32px;
    }
    .adv_box .adv_list{
        padding: 0 15px 0;
        margin-bottom: 0;
        border: 0;
        background: transparent;
    }
    .adv_box .adv_list ul li{
        width: 100%;
        margin-bottom: 20px;
    }
    .adv_list .adv_item{
        border: 1px solid #eee;
        border-radius: 8px;
        background: #fff;
    }
    .com-banner .com-bannerImg {
        height: 320px;
        object-fit: cover;
    }
    .com-twolist .twolist-box .box-left>img{
        height: 56px;
    }
    .com-twolist .twolist-box .box-left a {
        left: 36px;
        top: 16px;
    }
    .com-bannerTxt h2 {
        font-size: 30px;
        line-height: 45px;
    }
    .com-bannerTxt span {
        width: 2px;
        height: 30px;
        margin: 6px 0;
    }
    .com-bannerTxt span h3 img{
        width: 20px;
    }
    .headTwo .box-left .left-img img {
        width: 330px;
        height: 140px;
    }
    .headTwo .box-right {
        padding-left: 50px;
    }
    .com-twolist{
        display: none;
    }
    .com-bannerTxt h2 {
        font-size: 26px;
        line-height: 38px;
    }
    .about_box .about_info{
        padding: 0;
        margin-top: 30px;
    }
    .about-wh{
        padding: 30px 0 10px 0;
    }
    .about_box .about_info .right-con{
        padding-right: 15px;
    }
    .about-wh .row>div {
        padding-bottom: 50px;
    }
    .about-lc{
        padding: 30px 0 0 0;
    }
    .about-lc .aboutlc-top{
        padding-bottom: 0px;
    }
    .about-lc .aboutlc-top .top-list h2{
        font-size: 70px;
        line-height: 80px;
    }
    .about-lc .lc-bot{
        display: none;
    }
    .about-lc .swiper-button-next,.about-ry .swiper-button-next{
        right: 5%;
    }
    .about-ry{
        padding: 30px 0 30px;
    }
    .about-lc .swiper-button-prev,.about-ry .swiper-button-prev{
        left: 5%;
    }
    .news-list .box1 .box1-img img{
        height: auto;
    }
    .case-list .list-box .box-img>img{
        height: auto;
    }
    .popup_box{
        width: 90%;
    }
    .latestDetail .left-dt .dt-cont .dt_img img{
        width: 100%;
    }
    .latestDetail .container .row{
        margin-left: 0;
    }
    .latestDetail .left-dt .dt-top h2{
        font-size: 26px;
    }
    .latestDetail .left-dt .dt-top p{
        margin: 20px 0;
    }
    .latestDetail .left-dt .dt-cont{
        padding: 10px;
    }
    .zhwlist li{
        padding: 20px 0px;
    }
    .zhwlist .tit{
        display: inline-block;
        line-height: 30px;
    }
    .zhwlist .tit .h3{
        font-size: 15px;
        width: 100%;
        margin-bottom: 10px;
    }
    .zhwlist .tit span img{
        width: 25px;
    }
}