@font-face {
    font-family: 'semibolditalic';
    src: url('/themes/xianying/public/assets/fonts/sarasa-term-slab-sc-semibolditalic.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td { margin:0; padding:0; }
body { background:#fff; color:#070731; font-size:14px; font-family: "微软雅黑",Verdana, Arial, Helvetica, sans-serif; }
td,th,caption { font-size:14px; }
h1, h2, h3, h4, h5, h6 { font-weight:normal; font-size:100%; }
address, caption, cite, code, dfn, em, strong, th, var { font-style:normal; font-weight:normal;}
a { color:#070731; text-decoration:none; }
a:hover { color: #0306FF;}
img { border:none; }
ol,ul,li { list-style:none; }
input, textarea, select, button { font:14px Verdana,Helvetica,Arial,sans-serif; border: 1px solid #333;}
table { border-collapse:collapse; }
html {overflow-y: scroll;}
/* css common */
.clearfix { *zoom:1; }
.clearfix:after {
content: "";
display: block;
clear: both;
}
.grey{
    background:#F5F7FA;
}
.w1440{ max-width: 1440px; padding: 0 25px; margin: 0 auto;}
.w1710{ max-width: 1710px; padding: 0 15px; margin: 0 auto;}
.w1400{max-width: 1400px; padding: 0 25px; margin: 0 auto;}
@media screen and (min-width:1280px)  and (max-width:1440px) {
    .w1440,
    .w1710,
    .w1400{
        padding: 0 100px;
    }
}
/*header*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background: #fff;
}
.header .box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header .box .logo{
    margin-top: 12px;
    margin-bottom: 13px;
}
.header .box ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.header .box ul li{
    margin: 0 10px;
    position: relative;
}
.header .box ul li .ul{

    position: absolute;
    z-index: 3;
    background: #fff;
    max-width: 130px;
    width: 110px;
    display: none;
    left: -36px;
    padding: 20px 10px 0;
}
.header .box ul li .ul a{
    display: block;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    border-top: 1px solid rgb(0 0 0 / 6%);
    color: #070731;
}
.header .box ul li .ul a:hover{
    color: #0055A5;
}
@media screen and (min-width:980px ) {
    .header .box ul li:hover .ul{display: block;}

}

.header .box ul li>a{
    font-size: 14px;
    line-height: 21px;
    color: #070731;
}
.header .language-search {
    display: flex;
    align-items: center;
}
.header .language-search .language{
    display: inline-block;
    margin-left: 20px;
    padding-left: 30px;
    background: url(/themes/xianying/public/assets/img/index/ico_9.svg) no-repeat center left;
    font-size: 15px;
    line-height: 24px;
    color: #070731;
    cursor:pointer
}
.header .language-search .search{
    height: 24px;
    border: 1px solid #A8B5C6;
    border-radius: 4px;
    padding: 2px;
}
.header .language-search .search form{
    height: 100%;
    display: flex;
}


.header .language-search .search input{
    width: 120px;
    border: 0;
}
.header .language-search .search input:focus{
    outline: none;
}
.header .language-search .search button{
    width: 24px;
    height: 24px;
    border: 0;
    overflow: hidden;
    line-height: 100;
    background: url(/themes/xianying/public/assets/img/index/ico_10.svg) no-repeat center;
    background-size: 80%;
    cursor: pointer;
}


.heaer-menu-button{
    display: none;
}
@media screen and (max-width:1024px ) {
    .header .box ul{
        height: 0px;
        opacity: 0;
        position: absolute;
        top: 65px;
        left: 0;
        background: #fff;
        border-top: 1px solid #f1f1f1;

        flex-direction: column;
        overflow: hidden;
        transition:  0.5s ;
        width: -webkit-fill-available;
        width: -moz-available;
    }
    .header .box ul.on{
        opacity: 1;
        padding:10px;
        display: block;
        height: calc(100vh - 85px);
    }
    .heaer-menu-button{
        display: block;
        width: 25px;
        height: 19px;
        margin-left: 20px;
        background-color: transparent;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 4px;
        position: relative;
    }
    .heaer-menu-button .icon-bar {
        display: block;
        width: 25px;
        height: 3px;
        border-radius: 1px;
        background-color: #000;
        position: static;
        margin: 0;
        transition:all 0.5s;
        margin-top: 5px;
    }

    .heaer-menu-button .icon-bar:nth-child(1) {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        margin-top: 0;
    }
    .heaer-menu-button.on .icon-bar {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -11px;
        margin-top: -1px;

    }
    .heaer-menu-button.on .icon-bar:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .heaer-menu-button.on .icon-bar:nth-child(2) {
        display: none;
    }
    .heaer-menu-button.on .icon-bar:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .header .box ul li{
        margin: 0 25px;
        padding: 10px 0;
        border-bottom: 1px #f7f7f7 solid;
    }
        .header .box ul li:last-child{
        border-bottom: 0;
    }

}
@media screen and (max-width:768px ) {
    .header .language-search .language{
        width: 0;
        overflow: hidden;
    }
    .heaer-menu-button{
        margin-left:10px;
    }
    .header .language-search .search input{
        width: 60px;
        border: 0;
    }
}

/*header-搜索*/
.header-form-search{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: #fff;
    z-index: 10;
    transition:  0.3s ;
    overflow: hidden;

}
.header-form-search.on{
    height: 65px;
}
.header-form-search .w1440{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.header-form-search .w1440 .header-field{
    width: -webkit-fill-available;
    border: 0;
    font-size: 16px;
    padding: 10px 20px;
}
.header-form-search .w1440 .header-clear{
    background: url(/themes/xianying/public/assets/img/index/ico_11.svg) no-repeat center;
    width: 24px;
    height: 24px;
    border: 0;
    cursor:pointer;
    margin-left: 30px;
}

@media screen and (max-width:768px ) {
    .header-form-search .w1440 .header-field{
            border: 1px solid #d9d9d9;
    border-radius: 5px;
    }
    .header-form-search .w1440 .header-clear{
            background-size: contain;
    }
}


/*首页banner*/
#home .banner {
    height: 100%;
    width: 100%;
    min-height: 720px;
    background-color: #000;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    display: block;
}
#home .banner .video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    z-index: 1;
}
#home .banner .slogin {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 1;

}
#home .banner .slogin-scroll {
    padding: 0 20%;
    overflow: hidden;
}
#home .banner .swiper-banner {
    height: 100px;
}
#home .banner .swiper-slide {
    height: 100px;
    letter-spacing: 7px;
}
#home .banner .swiper-slide .text {
    transition-duration: .3s;
    opacity: 0;
}
#home .banner .slogin-scroll .text {
    font-size: 80px;
    font-weight:lighter;
    line-height: 1.25;
}

#home .banner .swiper-slide-duplicate-active .text, #home .banner .swiper-slide-active .text {
    transform: translateX(0);
    opacity: 1;
}

#home .chuangzhonghei{
    font-size: 24px;
}
/*.slogin-4 {
    font-size: 48px !important;
    letter-spacing: 2px !important;
}*/
.video-load-poster {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 2;
}
@media screen and (max-width:1440px ) {
    #home .banner .swiper-banner{
            height: 75px;
    }
   #home .banner .slogin-scroll .text {
        font-size: 52px;
        line-height: 1.25;
    }
    #home .chuangzhonghei{
        font-size: 22px;
    }
}
@media screen and (max-width:1366px ) {
    #home .banner .swiper-banner{
            height: 62px;
    }
    #home .banner .slogin-scroll .text {
        font-size: 42px;
        line-height: 1.25;
    }
    #home .chuangzhonghei{
        font-size: 20px;
    }
}
@media screen and (max-width:1200px ) {
    #home .banner .swiper-banner{
            height: 51px;
    }
    #home .banner .slogin-scroll .text {
        font-size: 38px;
        line-height: 1.25;
    }
    #home .chuangzhonghei{
        font-size: 18px;
    }
}
@media screen and (max-width:768px ) {
    #home .banner .slogin{
        opacity: 1;
    }
    #home .banner .slogin-scroll{
        padding: 0;
    }
    #home .banner .swiper-banner{
        height: 55px;
    }

}
@media screen and (max-width:450px ) {
    #home .banner .swiper-banner{
        height: 45px;
    }
    #home .banner .slogin-scroll .text{
            font-size: 32px;
    }
    #home .chuangzhonghei{
        font-size: 12px;
        padding: 0 30px;
    }
}
/*首页地图*/
.index-Map{
    padding-top: 84px;
    padding-bottom:127px ;
}
.office-wrap {
    position: relative;
    text-align: right;

}
.office-left {
    z-index: 5;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 80px;
    text-align: left;
}
.office-left  .office-left-title{
    font-size: 48px;
    line-height: 64px;
    color: #070731;
    margin-bottom: 6%;
    margin-top: 22%;
}
.office-left  .office-left-p{
    font-size: 18px;
    line-height: 27px;
    color: #070731;
    max-width: 420px;
}
.office-left .office-num{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 420px;
    margin-top: 32%;
}
.office-left .office-num .onum-item{
    display: flex;
    flex-direction: column;

}
.office-left .office-num .onum-item__digit{
    font-size: 76px;
    line-height: 102px;
    font-family: Roboto;
    font-weight: bold;
    color: #0055A5;
    display: inline-flex;
    align-items: flex-start;
}
.office-left .office-num .onum-item__digit i{
    font-style: inherit;
    font-weight: 300;
    font-size: 56px;
    line-height: 80px;
}
.office-left .office-num .onum-item:nth-child(1),
.office-left .office-num .onum-item:nth-child(3){
    max-width: 167px;
    width: 100%;
}
.office-left .office-num .onum-item:nth-child(2),
.office-left .office-num .onum-item:nth-child(4){
    max-width: 202px;
    width: 100%;
}
.office-left .office-num .onum-item .onum-item__txt{

    font-size: 18px;
    line-height: 26px;
    color: #070731;
}
.office-box {
    display: inline-block;
    vertical-align: top;
    width: 75.33333%;
    max-width: 1387px;
    position: relative;
}
.office-box::before {
    padding-top: 54.51%;
    content: "";
    display: block
}
.img-box>img {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.office-item{
    position: absolute;
    margin-top: -15px;
    margin-left: -15px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(18,38,170,0.14);
}
.office-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-color: #1226AA;
    opacity: .07;
}
.office-item::before {
    content: "";
    position: absolute;
    top: 37%;
    left: 37%;
    width: 28%;
    height: 28%;
    border-radius: 50%;
    background-color: #0055A5;
}
.office-item__name {
    position: absolute;
    top: 100%;
    left: 50%;
    font: 400 12px/16px "微软雅黑";
    color: #333;
    text-transform: uppercase;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: max-content;
}
.office-item__name.right_font{
    top: 7px;
        left: 44px;
}
.core .office-item__name{
    font-size: 16px;
    font-weight: bold;
    line-height: 21px;
    color: #070731;
}
.core.office-item{
    width: 30px;
    height: 30px;
}
.core.office-item::before {
    top: 33.3333%;
    left: 33.3333%;
    width: 33.3333%;
    height: 33.3333%;
}
.office-item.current::after {
    animation: scale2 3s linear infinite;
}
@keyframes scale2 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(2);
        transform: scale(2)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@media screen and (max-width:1440px ) {
    .office-left{
                left:20px;

    }

    .office-left .office-left-title{
        margin-top: 5%;
        font-size: 42px;
    line-height: 55px;
    }
    .office-left .office-num{
        margin-top: 12%;
    }
    .index-technology .swiper-slide .w1440{
            padding: 0 90px;
    }
    .office-left .office-num .onum-item__digit{

    font-size: 70px;
    line-height: 97px;

    }
    .office-left .office-num .onum-item__digit i{
        font-size: 51px;
    line-height: 68px;
    }
}

@media screen and (max-width:1366px ) {
    .office-left .office-left-title{
        font-size: 38px;
        line-height: 47px;
    }
}

@media screen and (max-width:1200px ) {
    .office-left{
                left: 0;
    position: inherit;
        padding: 0 25px;
    }
    .office-box{
        width: 100%;
        max-width:inherit;
    }
    .office-left .office-left-title{
        margin-top: 0%;
        margin-bottom:30px;
    }
    .office-left .office-left-p{
        max-width:initial;
    }
    .office-left .office-num{
        margin-top:20px;
         max-width: initial;
    }

}
@media screen and (max-width:1024px ) {

    .office-left .office-left-title{
        font-size: 31px;
        line-height: 42px;
    }
    .office-left .office-left-p{
        font-size: 16px;
        line-height: 22px;
        max-width: 294px;
    }
    .office-left .office-num .onum-item__digit{
        font-size: 60px;
        line-height: 85px;
    }
    .office-left .office-num .onum-item__digit i{
        font-size: 45px;
        line-height: 52px;
    }
    .office-left .office-num .onum-item .onum-item__txt{
        font-size: 15px;
    }
}
@media screen and (max-width:768px ) {
    .index-Map{
            padding-top: 50px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width:640px ) {
    .office-left .office-num .onum-item__digit{
        font-size: 40px;
    line-height: 60px;
    }
    .office-left .office-num .onum-item__digit i{
        font-size: 31px;
    line-height: 40px;
    }
    .office-left .office-num .onum-item .onum-item__txt{
        font-size: 14px;
    }
    .office-left .office-num .onum-item{
        width: 50%!important;
    }
    .office-item__name{
        font: 400 10px/16px "微软雅黑";
    }
    .core .office-item__name{
        font-size:12px;
    }
}
/**/

.index-product{
    padding-top: 4%;
    text-align: center;
    padding-bottom: 2.8905%;
}
.index-product h3{
    font-size: 40px;
    line-height: 52px;
    font-weight: 300;
    color: #070731;
}
.index-product p{
    max-width: 420px;
    margin: auto;
    font-size: 16px;
    line-height: 24px;
    padding: 19px 0 2.9%;
}
.index-product ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
}
.index-product ul li{
    width: 33.3%;
    position: relative;
    overflow: hidden;
}
.index-product ul li::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/themes/xianying/public/assets/img/index/ico.png) no-repeat center bottom;
        background-size: contain;
    z-index: 1;
}
.index-product ul li .img{
    padding-top: 67.1%;
}
.index-product ul li img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.index-product ul li .ico_box{
    position: absolute;
    bottom: 13.8%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}
.index-product ul li .ico_box .ico{
    height: 72.53px;
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 100;
    background-size: inherit;
    margin: 0 auto;

}
.index-product ul li .ico_box span{
    display: block;
    font-size: 24px;
    line-height: 31px;
    color: #fff;
    margin-top: 13px;
}
.index-product ul li .ico_box a{
    height: 0;
    overflow: hidden;
    display: block;
    transition:  0.3s ;
    border-radius: 0px;
    font-size: 0;

}

.index-product ul li:hover .ico_box a{
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    margin-top: 15px;
    border-radius: 50px;
    border: 1px solid;

}
.index-product ul li:hover .ico_box a:hover{
    background: #0055A5;
    border: 1px solid #0055A5;
}

@media screen and (max-width:1024px ) {
    .index-product ul li .ico_box .ico{
            height: 45.53px;
            background-size: contain;
    }
    .index-product ul li .ico_box span{
        font-size: 18px;
    line-height: 28px;
    }
}
@media screen and (max-width:768px ) {
    .index-product ul li{
        width:50%;
    }
    .index-product p{
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media screen and (max-width:450px ) {
    .index-product ul{
        padding: 0 15px;
    }
    .index-product ul li{
        width:100%;
    }
    .index-product ul li:before{
        background-size: contain;
    }
    .index-product h3{
        font-size: 31px;
    line-height: 39px;
    }
}

.index-technology .swiper {
    width: 100%;

  }

.index-technology  .swiper-slide {
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
}
.index-technology  .swiper-slide img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}


.index-technology  .swiper-slide img.pc-banner{}
.index-technology  .swiper-slide img.mobile-banner{display:none}
.index-technology  .swiper-slide .w1440{
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #E8EBF2;
}
.index-technology  .swiper-slide h4{
    font-size: 48px;
    line-height: 64px;
}
.index-technology  .swiper-slide p{
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
    max-width: 650px;

}
.index-technology  .swiper-slide a{
    width: 182px;
    height: 55px;
    border-radius: 50px;
    border: 1px solid #fff;
    font-size: 16px;
    line-height: 55px;
    text-align: center;
    color: #fff;
    margin-top: 40px;
    transition:  0.3s ;
}
.index-technology  .swiper-slide a:hover{
    background: #0055A5;
    border: 1px solid #0055A5;
}
.index-technology .swiper-pagination{
    right: inherit;
    left: 40px;
}
.index-technology .swiper-pagination .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    position: relative;
    background: transparent;
    margin-bottom: 5px;
    opacity: 1;
}
.index-technology .swiper-pagination .swiper-pagination-bullet::after{
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: 1;
    content: "";
    position: absolute;
    border-radius: 50%;
    top: 7px;
    left: 7px;
}
.index-technology .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before{
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}


.index_new_box{
    background: #fff;
    margin:0 2.102%;
    margin-top: -70px;
    padding-top: 70px;
    padding-bottom: 93px;
    z-index: 3;
    position: relative;
    border-radius: 3px 3px 0 0;
}
.index_new_box h2{
    margin: 0 auto;
    font-size: 40px;
    line-height:52px;
    color: #070731;
    text-align: center;
    margin: 35px 0 50px;
}
.index_new_box .more{

    font-size: 16px;
    line-height: 53px;
    border: 1px solid #A8B5C6;
    color: #070731;
    text-align: center;
    display: block;
    width: 242px;
    border-radius:50px;
    margin: 0 auto;
    margin-top: 28px;
}
.index_new_box .more:hover{
    background: #0b2d71;
    color: #fff;
}

.index_new_box  .new_list{
    display: flex;
    justify-content: space-between;
}
.index_new_box .new_left{
    width: 49.167%;
}
.index_new_box .new_left .img{
    position: relative;
    overflow: hidden;
    padding-top: 54.2%;
}
.index_new_box .new_left img{
    position: absolute;
    top:50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    border-radius: 3px 3px 0 0;
}
.index_new_box .new_left .con{
    margin-top: 27px;
}
.index_new_box  .new_left .con h4{
    font-size: 24px;
    line-height: 31px;
    color: #070731;
    margin-bottom: 7px;
}

.index_new_box  .new_left a:hover .con h4{
    color: #0055A5;
}
.index_new_box  .new_left .con time{
    font-size: 16px;
    line-height: 24px;
    color: #A8B5C6;
}
.index_new_box  .new_left .con p{
    color: #6A6A83;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16.9px;
}
.index_new_box  .new_lu{
    width: 47.778%;
}
.index_new_box  .new_lu li a{

    margin-bottom: 25px;
}
.index_new_box  .new_lu li a{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 25px;
}

.index_new_box .new_lu .img{
    position: relative;
    padding: 12.356%  17.443%;
    overflow: hidden;
}
.index_new_box .new_lu img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height:100%;
    transform: translate(-50%,-50%);
}
.index_new_box .new_lu .con{
    padding-left: 33.3px;
}
.index_new_box  .new_lu .con h4{
    font-size: 24px;
    line-height: 31px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: #070731;
}
.index_new_box .new_lu li a:hover .con h4{
     color: #0055A5;
}
.index_new_box  .new_lu .con time{
    font-size: 16px;
    line-height: 24px;
    color: #A8B5C6;
}
.index_new_box  .new_lu .con p{
    font-size: 16px;
    line-height: 24px;
    color: #6A6A83;
    margin-top: 19px;
    display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
@media screen and (max-width:1440px ) {
    .index-technology .swiper-wrapper,
    .index-technology .swiper-slide{
        height: 727px !important;
    }
}
@media screen and (max-width:1366px ) {
    .index-technology .swiper-wrapper,
    .index-technology .swiper-slide{
        height: 689px !important;
    }
}
@media screen and (max-width:1200px ) {
    .index-technology .swiper-wrapper,
    .index-technology .swiper-slide{
        height: 606px !important;
    }

    .index_new_box .new_left .con h4{
        font-size: 20px;
    line-height: 31px;
    }
    .index_new_box .new_left .con time{
         font-size: 14px;
        line-height: 20px;
    }
    .index_new_box .new_left .con p{
                 font-size: 16px;
        line-height: 20px;
        margin-top: 5px;
        margin-bottom: 20px;
    }
    .index_new_box .new_lu .con h4{
        font-size: 18px;
        line-height: 24px;
    }
    .index_new_box .new_lu .con time {
        font-size: 14px;
        line-height: 20px;
    }
    .index_new_box .new_lu .con p{
         font-size: 16px;
        line-height: 20px;
        margin-top: 5px;

    }
    .index_new_box .new_lu .con{
        padding-left:20px;
    }
}
@media screen and (max-width:1024px ) {
    .index-technology .swiper-wrapper,
    .index-technology .swiper-slide{
        height: 516px !important;
    }
}
@media screen and (max-width:768px ) {
    .index-technology .swiper-slide img.pc-banner{
        display: none;
    }
    .index-technology .swiper-slide img.mobile-banner{
        display: block;
            width: auto;
    height: 100%;
    }
    .index-technology .swiper-wrapper,
    .index-technology .swiper-slide{
        height: 550px !important;
    }
    .index-technology .swiper-slide h4{
        font-size: 28px;
    line-height: 35px;
    }
    .index-technology .swiper-slide .w1440{
        padding: 0 40px;
    }
    .index-technology .swiper-pagination{
        left: 12px;
    }
    .index-technology .swiper-slide a{
            width: 140px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    }
    .index_new_box{
        padding-top: 10px;
    }
    .index_new_box .new_list{
            flex-direction: column;
    }
    .index_new_box .new_lu,
    .index_new_box .new_left{
        width: 100%;
    }
    .index_new_box .new_lu li a{
            flex-direction: column;
    }
    .index_new_box .new_lu .img{
        padding-top: 50%;
        width: -webkit-fill-available;
    }
    .index_new_box .new_lu .img img{
        width: 100%;
    }
    .index_new_box .new_lu .con{
        padding-top: 10px;
        padding-left: 0;
    }
    .index_new_box h2{
            font-size: 31px;
    line-height: 39px;
    margin: 25px 0 25px;
    }
}
/*footer*/
.footer{
    background: #0B2D71;
}
.footer_box{

}
.footer_box .footer_one{
    padding-top: 57px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-bottom: 135px;
}
.footer_box .footer_menu{
    width: 71%;
}
.footer_box .footer_menu ul{
    display: flex;
}
.footer_box .footer_menu ul li{
    max-width: 120px;
    width: 100%;
}
.footer_box .footer_menu ul li h5{
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 20px;
}
.footer_box .footer_menu ul li .list{

}
.footer_box .footer_menu ul li a{
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: rgb(255 255 255 / 50%);
    margin-bottom: 8px;
}
.footer_box .footer_menu ul li a:hover{
    color: #fff;
}
.footer_box .footer_contact{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.footer_box .footer_contact .footer_contact_con{
    margin-right: 23px;
}
.footer_box .footer_contact h5{
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 18px;
}
.footer_box .footer_contact h6{
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}
.footer_box .footer_contact .tal{
    font-size: 17px;
    line-height: 21px;
    color: #fff;
    font-weight: bolder;
}
.footer_box .footer_contact .mail{
    font-size: 14px;
    line-height: 20px;
    color: rgb(255 255 255 / 50%);
}
.footer_box .footer_contact .ico {
    margin: 15px 0 0;
        display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.footer_box .footer_contact .ico a{
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #d1d1d1;
    margin-right: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
        background: #009dd9;
}
.footer_box .footer_contact .ico a img{
    width:60%;
    display: block;
}
.footer_box .footer_contact .button_title{
    display: block;
    width: 112px;
    line-height: 31px;
    font-size: 14px;
    color: #fff;
    background: #009DD9;
    text-align: center;
    border-radius: 85px;
    margin-top: 12px;
}
.footer_box .footer_contact .button_title:hover{
    background: #1182ad;
}
.footer_box .footer_contact .or{
    border-radius: 5px;
    overflow: hidden;
}
.footer_box .footer_contact .or img{
    width: 139px;
}
.footer_box .foonter_two{
    display: flex;
    justify-content: space-between;
    line-height: 63px;
}
.footer_box .foonter_two .copyright{
font-size: 14px;
color: rgb(255 255 255 / 50%);
}
.footer_box .foonter_two .copyright a{
    color: rgb(255 255 255 / 50%);
}
.footer_box .foonter_two .footer-links{
    color: rgb(255 255 255 / 50%);
}
.footer_box .foonter_two .footer-links a{
    font-size: 14px;
    color: rgb(255 255 255 / 50%);
    margin: 0 12px;
}
.footer_box .foonter_two .footer-links .language{
    display: inline-block;
    margin-left: 20px;
    padding-left: 30px;
    background: url(/themes/xianying/public/assets/img/index/ico_8.png) no-repeat center left;
}
.footer_box .foonter_two a:hover{
    color: #fff;
}
@media screen and (max-width:768px ) {
    .footer_box .footer_one{
            flex-direction: column;
                padding-top: 30px;
    padding-bottom: 30px;
    }
    .footer_box .footer_menu{
        width:100%;
    }
    .footer_box .foonter_two{
            flex-direction: column;
    }
    .footer_box .foonter_two .copyright{
        line-height: 1.3;
    }
}

@media screen and (max-width:640px ) {
    .footer_box .footer_contact{
        margin-top: 10px;
    }
    .footer_box .footer_menu ul{
            flex-direction: column;
    }
    .footer_box .footer_menu ul li{
        max-width: 100%;
        width: 100%;
    }
    .footer_box .footer_menu ul li .list{
        display: none;
    }
    .footer_box .footer_menu ul li .list.open{
        display: block;
    }
    .footer_box .footer_menu ul li h5{
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 40px;
        border-bottom: 1px solid rgb(255 255 255 / 9%);
        position:relative;
    }
    .footer_box .footer_menu ul li h5::before{
    content: "";
    display: block;
    position: absolute;
    top: 19px;
    right: 0;
    width: 18px;
    height: 2px;
    background-color: #A8B5C6;
}
.footer_box .footer_menu ul li h5::after{
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    right: 8px;
    width: 2px;
    height: 18px;
    background-color: #A8B5C6;
}
.footer_box .footer_menu ul li h5.open::after{
    display: none;
}
    .footer_box .foonter_two .footer-links a{
        margin: 0;
    }
    .footer_box .foonter_two .footer-links span{
        margin: 0 5px;
    }
    .footer_box .foonter_two .footer-links .language{
        margin-left: 10px;
    }
}
/*公共锚点导航*/

.public-anchor-memnu{
    background: #fff;
    border-bottom: 1px solid #E8EBF2;
    height: 65px;
}
.public-anchor-memnu .w1440.navFix{
    position: fixed;
    width:calc(100%);
    z-index: 12;
    top: 0;
    background: #fff;
    max-width: initial;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);

}
@media screen and (min-width: 1280px) and (max-width: 1440px){
    .public-anchor-memnu .w1440.navFix{
       /* width:calc(100% - 200px);*/
          width:calc(100%);
    }
}
.public-anchor-memnu ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.public-anchor-memnu ul li{
    margin: 0 20px;
    position: relative;
}
.public-anchor-memnu ul li a{
    display: block;
    font-size: 16px;
    line-height: 64px;
    color: #070731;
}
.public-anchor-memnu ul li a.active::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    background: #0055A5;
}
.public-anchor-memnu ul li.active::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    background: #0055A5;
}
.nav-mobile{display: none;}
@media screen and (max-width:640px ) {

    .public-anchor-memnu ul{
        width:max-content;

    }
    .public-anchor-memnu .w1440.navFix{
        overflow: auto;
        width: 100%;
    }
    .public-anchor-memnu ul li{
        margin: 0 10px;
    }
    .public-anchor-memnu .w1440{
        width: 100%;
    padding: 0 ;
    overflow: auto;
    }
}

/*crumbs-面包屑*/
.crumbs{
    margin-top: 65px;
    background-color: #F5F7FA;
    line-height: 48px;
    color: hsla(240, 75%, 11%, 0.41);
}
.crumbs a{
    font-size: 14px;
    color: #070731;
}
.crumbs span{
    font-size: 14px;
    color: #A8B5C6;
}
.gongyong{
    display: none;
    position: fixed;
    bottom: 5%;
    right: 20px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px #d1d1d1;
    background: #fff;
    transition:all 0.5s;
}
.gongyong:hover{
        box-shadow: 0px 0px 10px #0b2d71;
}
@media screen and (max-width:640px ) {
    .crumbs{
        line-height: 28px;
        padding: 10px 0;
    }
}
@media screen and (max-width:1440px ) {
    .index_new_box h2,
    .index-product h3{
        font-size: 36px;
        line-height: 52px;
    }
    .index-technology .swiper-slide h4{
        font-size: 40px;
    line-height: 54px;
    }
    .index-product ul li .ico_box span,
    .index_new_box .new_left .con h4,
    .index_new_box .new_lu .con h4{
        font-size: 22px;
        line-height: 29px;
    }
    .index-product ul li:hover .ico_box a,
    .index-technology .swiper-slide p,
    .index_new_box .new_left .con p,
    .index_new_box .new_lu .con p{
        font-size: 15px;
    }
}
@media screen and (max-width:1366px ) {
    .index-product ul li .ico_box .ico{
        height: 58.53px;
            background-size: contain;
    }
}

<!--耗时1759761613.3447秒-->