

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        -ms-transform: translateX(50px);
        transform: translateX(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes circle_right {
    0% {
        transform: rotate(-135deg);
    }

    50%,
    100% {
        transform: rotate(45deg);
    }
}

@keyframes circle_right {
    0% {
        transform: rotate(-135deg);
    }

    50%,
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes circle_left {

    0%,
    50% {
        transform: rotate(-135deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@keyframes circle_left {

    0%,
    50% {
        transform: rotate(-135deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.circle_right {
    -webkit-animation-name: circle_right;
    animation-name: circle_right
}

.circle_left {
    -webkit-animation-name: circle_left;
    animation-name: circle_left
}

* {
    touch-action: pan-y;
}


/* TOP按钮 */
.menu_pon {
    position: fixed;
    right: 40px;
    bottom: 110px;
    margin-top: -85px;
    z-index: 32;
    /* display: none; */
}

.menu_pon .menu_Top {
    background: #00479d url(../images/Top_icon.png) no-repeat center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    cursor: pointer;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    transition: all .2s ease;
}

.menu_pon .menu_Top:hover {
    background-color: #e6002e;
    transition: all .5s;
}

/* header */
#header.act {
    background-color: #fff;
}
#header.on {
    background-color: #fff;
}

#header {
    width: 100%;
    min-width: 1200px;
    max-width: 1920px;
    margin: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
    height: 80px;
    transition: all .4s;
    -webkit-transition: all .4s;
    /* background-color: #fff; */
}
#header.act .logo {
    background: url(/images/index/logo_on.svg) no-repeat center;
    height: 56px;
    top: 11px;
}
#header.on .logo {
    background: url(/images/index/logo_on.svg) no-repeat center;
    height: 56px;
    top: 11px;
}

#header .logo {
    position: absolute;
    top: 11px;
    left: 40px;
    width: 230px;
    height: 56px;
    background: url(/images/index/logo.svg) no-repeat center;
}

#header .nav {
    position: absolute;
    top: 0;
    right: 71px;
}

#header .nav>ul {
    float: left;
}

#header .nav>ul li {
    float: left;
    text-align: center;
    position: relative;
}

#header .nav>ul li>a.on {
    color: #014099;
}

#header .nav>ul li>a {
    /* margin: 0 3px; */
    line-height: 80px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-weight: 700;
    padding-right: 40px;
}

#header .nav>ul li>a:hover {
    color: #014099;
}
#header.act .nav>ul li>a:hover {
    color: #014099;
}
#header.on .nav>ul li>a:hover {
    color: #014099;
}
#header.act .nav>ul li>a {
    color: #333;
}
#header.on .nav>ul li>a {
    color: #333;
}
#header.act .nav>ul li>a.on {
    color: #014099;
}
#header.on .nav>ul li>a.on {
    color: #014099;
}


#header.act .nav .search {
    background: url(/images/index/searchon.png) no-repeat center;
}
#header.on .nav .search {
    background: url(/images/index/searchon.png) no-repeat center;
}

#header .nav .search {
    float: left;
    /* margin-top: 30px; */
    margin-left: 0;
    width: 70px;
    /* line-height: 80px; */
    position: relative;
    /* margin-right: 20px; */
    /* width: 18px; */
    height: 18px;
    background: url(/images/index/search.png) no-repeat center;
    cursor: pointer;
    background-size: 18px 18px !important;
    height: 80px;
}

#header .nav .search::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 66px;
    width: 1px;
    height: 10px;
    background-color: #818591;
}
#header .search .ipt_box {
    display: none;
    width: 250px;
    height: 50px;
    background-color: #fff;
    border: 5px solid #014099;
    position: absolute;
    right: -201px;
    top: 80px;
    animation-duration: .4s;
    z-index: 10000;
    pointer-events: auto;
}

#header .search .ipt_box input {
    width: 190px;
    height: 40px;
    line-height: 40px;
    color: #808080;
    padding: 0 10px;
    border: 0 none;
}

#header .search .search_btn {
    width: 60px;
    height: 50px;
    line-height: 50px;
    background-color: #014099;
    position: absolute;
    right: -5px;
    top: -5px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}

/* #header .search:hover .ipt_box {
    display: block;
} */


#header .nav .lang {
    width: 75px;
    height: 30px;
    margin-top: 35px;
    margin-left: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .3);
    float: left;
}

#header .nav .language {
    width: 70px;
    text-align: center;
    position: relative;

}

/* #header .nav .language::before {
    content: '';
    position: absolute;
    right: 0;
    top: 36px;
    width: 12px;
    height: 7px;
    background: url(/images/index/language.png) no-repeat center;
} */
#header.act .nav .language::before {
    background: url(/images/index/languageon.png) no-repeat center;
}
#header.on .nav .language::before {
    background: url(/images/index/languageon.png) no-repeat center;
}

#header .nav .member {
    position: relative;
}

#header .nav .member>a {
    /* padding-left: 20px; */
    padding-right: 0;
}
#header .nav .member a:hover .icon{
    background: url(/images/index/Netgroupon1.png) no-repeat center;

}
#header .nav .member .icon {
    content: '';
    position: absolute;
    top: 32px;
    right: -31px;
    width: 20px;
    height: 20px;
    background: url(/images/index/Netgroup.png) no-repeat center;
}
#header.act .nav .member .icon {
    background: url(/images/index/Netgroupon.png) no-repeat center;
}
#header.on .nav .member .icon {
    background: url(/images/index/Netgroupon.png) no-repeat center;
}

#header .nav .lang p {
    font-size: 14px;
    line-height: 27px;
    color: #fff;
    padding-left: 15px;
    position: relative;
}
#header.act .nav .lang {
    border: 1px solid rgba(85, 85, 85, .3);
}
#header.on .nav .lang {
    border: 1px solid rgba(85, 85, 85, .3);
}
#header.act .nav .lang p {
    color: #555555;
}
#header.on .nav .lang p {
    color: #555555;
}
#header.act .nav .lang p::before {
    background: url(/images/lang_icoon.png) no-repeat center !important;

}
#header.on .nav .lang p::before {
    background: url(/images/lang_icoon.png) no-repeat center !important;

}

#header .nav .lang p::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50px;
    width: 10px;
    height: 10px;
    background: url(/images/lang_ico.png) no-repeat center;
}

#header .nav .Netgroup {
    float: left;
    /* line-height: 100px; */
    /* margin-left: 20px; */
}

#header .nav .Netgroup {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    position: relative;

}

#header .nav .Netgroup>a {
    padding-left: 0;
    padding-right: 0;
}
#header.act .nav .Netgroup {
    color: #555;
}
#header.on .nav .Netgroup {
    color: #555;
}
#header .nav .inner_bor1 {
    height: 4px;
    background-color: #e60021;
    position: absolute;
    left: 0;
    top: 76px;
    /* opacity: 0; */
    display: none;
}
#header.act .nav .inner_bor1 {
    height: 4px;
    background-color: #e60021;
    position: absolute;
    left: 0;
    top: 76px;
    /* opacity: 0; */
    display: block !important;
}
#header.on .nav .inner_bor1 {
    height: 4px;
    background-color: #e60021;
    position: absolute;
    left: 0;
    top: 76px;
    /* opacity: 0; */
    display: block !important;
}
.index_side .sidenav_top .sidenav_top_icon{top: 125px;}
/* #header.on .nav .Netgroup::before {
    background: url(/images/Netgroup_icoon.png) no-repeat center !important;

} */

/* #header .nav .Netgroup::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    width: 20px;
    height: 20px;
    background: url(/images/Netgroup_ico.png) no-repeat center;
} */

/* mouse */
#mouse {
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -26px;
    z-index: 999;
    text-align: center;
}

#mouse .ic1 {
    width: 58px;
    height: 28px;
    color: #ffffff;
    margin-bottom: 7px;
}

#mouse .ic2 {
    margin: 0 auto;
    width: 27px;
    height: 55px;
    /* background: url(/images/mouse-ic.png); */
    animation: Tmouse 1s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}

@keyframes Tmouse {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

/* 入场动画 */
.fixedVdio.nomax {
    max-width: 100% !important;

}

.fixedVdio.nomax .imgLocation {
    max-width: 100% !important;
    /* background-color: #00479d; */
}

.fixedVdio {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    z-index: 10000;
    margin: auto;
}

.fixedVdio.on {
    top: -200%;
    transition: all .5s;
}

.fixedVdio video {
    display: block;
    height: 100%;
    /* z-index: 999999; */
    /* max-width: 1920px; */
    margin: 0 auto;
}

.fixedVdio .imgLocation {
    display: block;
    /* height: 100%; */
    z-index: 999999;
    max-width: 1920px;
    margin: 0 auto;
}



/* footer */

footer {
    height: 80px;
    /* background-color: #2c2b2a ; */
}

footer .content {
    width: 100%;
    height: 80px;
    background: url(/images/test/footer.jpg) no-repeat center;
    position: relative;
    z-index: 30;
    border-top: 1px solid #ebebeb;
    margin: auto;
}

/* footer .fo_le{
    margin-left: 30px;
    float: left;
    line-height: 80px;
}
footer .fo_ri{
    margin-right: 30px;
    float: right;
    line-height: 80px;
} */
.foot {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    /* HEIGHT: 70PX; */
}

/* banner */


.banner {
    position: relative !important;
    width: 100%;
    height: 100vh !important;
    position: relative;
    margin: auto !important;
    max-width: 1920px;
}

.banner .bd {
    width: 100%;
    height: 100vh !important;
    overflow: hidden;
}

.banner .bd ul {
    width: 100% !important;
    height: 100vh !important;
}

.banner .bd li {
    width: 100% !important;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.banner .bd li>a{
    width: 100%;
    height: 100%;
    display: block;
}
.banner .bd li:nth-of-type(1){
    background: url(/images/index/img001.png) no-repeat center;
    width: 100%;
    background-size: cover;
    padding-bottom: 56.2%;
}
.banner .bd li .img {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner .bd li .content {
    width: 1260px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}
/* .banner .bd li .ban_t3 .text01{
    text-align: center;
    padding-top: 500px;
}
.banner .bd li .ban_t3 .text01 em{
    font-size: 48px;
}
.banner .bd li .ban_t3 .text01 h3{
    line-height: 60px;
    width: 458px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 24px;
}
.banner .bd li .ban_t3 .text01 h4 {
    color:#1145ff !important;
    font-size: 60px !important;
    text-transform: uppercase;
    font-family: 'DINENGSCHRIFT';
    letter-spacing: 6px;
    font-weight: bold;
} */
.banner .bd li .ban_t2.ban {
    padding-top: 190px; 
}
.banner .bd li .ban_t3.ban .text01 {
    position: absolute;
    right: 0;
    top: 260px;
}   
.banner .bd li .ban_t3.ban .text01 h4{
    line-height: 36px;
}

.banner .bd li .ban_t3.ban .text01 p{
   color: #1775cb;
}
.banner .bd li .ban_t4  .text01 h3{
    position: relative;
    left: 130px;
    line-height: 60px;
    font-size: 36px !important;
}
.banner .bd li .ban_t4  .text01 h3 em{
    font-size: 60px;
}
.banner .bd li .ban_t4  .text01 h4{
    text-transform: uppercase;
    font-family: 'DINENGSCHRIFT';
    font-size: 50px !important;
}
.banner .bd li .ban_t5  .text01{
    position: absolute;
    right: 200px;
    top: 330px;

}
.banner .bd li .ban_t5  .text01 h3{
    position: relative;
    left: 130px;
    line-height: 60px;
    font-size: 36px !important;
}
.banner .bd li .ban_t5  .text01 h3 em{
    font-size: 60px;
}
.banner .bd li .ban_t5  .text01 h4{
    font-size: 50px !important;
    font-family: 'DINENGSCHRIFT';
    text-transform: uppercase;
    /* font-weight: bold; */
    padding-top: 10px;
    margin-bottom: 15px !important;
}




.banner .bd li .ban {
    width: 1260px;
    padding-top: 230px;
    margin: auto;
    z-index: 99;
}
.banner .bd li .ban_t h4{
    line-height: 36px;
}

.banner .bd li .content .text01 h3{
    font-size: 26px;
    color: #ffffff;
    font-family: 'DINENGSCHRIFT';
    text-transform: uppercase;margin-bottom: 15px;
}
.banner .bd li .content .text01 h4{
    font-size: 30px;
    color: #ffffff;margin-bottom: 20px;
}
.banner .bd li .content .text01 p{
    font-size: 30px;
    color: #1750f2;
   
    font-weight: bold;
    font-family: 'DINENGSCHRIFT';
    text-transform: uppercase;
    line-height: 28px;
}

.banner .bd li .content  .text01 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    
}


.banner video {
    object-fit: cover;
    position: absolute;
    left: 0;right: 0;
    top: 0;

    /* position: absolute;
    bottom: -56px;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%); */
    margin: 0 auto;
    /* min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%; */
    width: 100%;
    height:100%;
    min-height: 100%;
    max-height: 100%;
}
/* .banner video:focus {
  outline:none;
} */

/* 分页器 */
.ms-skin-default .ms-bullet {
    width: 30px;
    height: 30px;
    margin: 0 4px;
    position: relative;

    /* background: url(/images/index-anx.png) no-repeat center; */
}

.ms-bullet.ms-bullet-selected {
    border-radius: 50%;
    /* background: url(/images/index-anx-on.png) no-repeat center; */
    -webkit-animation: circle_right 6s linear infinite;
    -moz-animation: circle_right 6s linear infinite;
    -o-animation: circle_right 6s linear infinite;
    animation: circle_right 6s linear infinite;
    border-top: 2px solid #e51721;
    border-right: 2px solid #e51721;

}

.ms-bullets.ms-dir-h {
    text-align: center;
    position: absolute;
    bottom: 43% !important;
    right: 40px;
    z-index: 120;
    width: auto !important;

}

.ms-bullet {
    float: initial;
}



.banner .hd {
    /* height: 0; */
    text-align: center;
    position: absolute;
    bottom: 50%;
    right: 40px;
    z-index: 120;
}

.banner .hd li {
    /* display: inline-block; */
    width: 30px;
    height: 30px;
    margin: 0 4px;
    position: relative;
    /* background: url(/images/index-anx.png) no-repeat center; */
}

.banner .hd li.on {
    /* background: url(/images/index-anx-on.png) no-repeat center; */
}

.banner .hd li .circle_process {
    display: none;
    left: 5px;
    top: 4px;
}

.banner .hd li.on .circle_process {
    display: block;
}

/* 遮罩层 */
.bg {
    position: fixed;
    /* top: 0; */
    left: 0;
    /* right: 0; */
    bottom: -100%;
    width: 100%;
    height: 100vh;
    /* background: url(/images/test/bg.png) repeat; */
    z-index: 999;
    transition: all 1s;
    -webkit-transition: 1s;
    /* display: none; */
}

.height {
    position: relative;
    width: 100%;
    height: 100%;
}

/* .height:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(/images/test/bg.png) repeat;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity .4s ease-out;
    -webkit-transition: opacity .4s ease-out;
    z-index: 7;
} */

.mask .height:before {
    opacity: 1;
    filter: alpha(opacity=100);
    transition: opacity .4s ease-out;
    -webkit-transition: opacity .4s ease-out;
}

.bg.on {
    /* display: block; */
    bottom: 0;
}

.aaaa {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;

}

.icon1 {
    max-width: 1920px;
    margin: auto;
    width: 100%;
}

.icon1 .box {
    z-index: 20;
    /* padding-top: 450px; */
    /* position: absolute; */
    /* right: 0; */
    /* left: 0; */
    /* bottom: 0; */
    width: 100%;
    display: flex;
    margin: auto;
    max-width: 1920px;
    height: 100%;
}

.icon1 .box .item {
    float: left;
    position: relative;
    bottom: -34px;
}

.icon1 .box .item::before {
    content: '';
    display: block;
    clear: both;
}

.icon1 .box .item3 {
    position: absolute;
    left: 791px;
    bottom: -426px;
    z-index: 20;
}

.icon1 .box .item5 {
    position: absolute;
    right: 30px;
}

.icon1 .box .item4 {
    position: relative;
    /* right: 360px; */
    z-index: 22;
    /* bottom: -400px; */
    margin-top: -0px;
}

.icon1 .box .item4 .img1 {
    margin-top: 0;
    position: relative;
    bottom: -400px;
    left: 0;
    z-index: 55;

    display: inline-block;
}

.icon1 .box .item4 .img2 {}

.icon1 .img_dim {
    position: absolute;
    bottom: 0;
    /* right: 0; */
    left: 655px;
    top: 0;
    /* width: 100%; */
    margin-top: 190px;
    max-width: none;
    -webkit-filter: blur(7px);
    filter: blur(7px);
    /* transition: all .7s; */
    opacity: 0;

}

.icon1 .img_dim.on {
    transition: all .7s;
    opacity: 1;
}

.btnWrap {
    position: absolute;
    bottom: 35px;
    right: 233px;
    z-index: 99;
}

#masterslider .btnWrap .box .playState.play {
    background-image: url("/images/icon_pause.png");
}

#masterslider .btnWrap .box .playState.stop {
    background-image: url("/images/icon_play.png");
}

#masterslider .btnWrap .box .playState {
    float: left;
    width: 56px;
    height: 56px;
    margin-left: 66px;
    margin-right: 66px;
    cursor: pointer;
    background: no-repeat center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    border: 1px solid #ffffff;
    transition: all .3s;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

#masterslider .next,
#masterslider .prev {
    display: block;
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    z-index: 99;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    transition: all .7s;
}

#masterslider .next {
    right: 0;
    background: #fff url("../images/icon_next.png") no-repeat center;
}

#masterslider .prev {
    left: 0;
    background: #fff url("../images/icon_prev.png") no-repeat center;
}

#masterslider .prev:hover {
    background-position: 5px center;
}

#masterslider .next:hover {
    background-position: 30px center;
}

.banner .hd ul li.on em {}


.circle_process {
    width: 20px;
    height: 21px;
    position: absolute;
    right: -8px;
    top: -7px;
    border-radius: 50%;
    /*overflow: hidden;*/
    cursor: pointer;
}

.circle_process:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    /* border: 1px solid #FFF; */
    position: absolute;
    left: 0px;
    top: 0;
}

.circle_process .wrapper {
    width: 11px;
    height: 22px;
    position: absolute;
    top: 0;
    overflow: hidden;
    z-index: 50;
}

.circle_process .right {
    right: 0;
}

.circle_process .left {
    left: 0;
}

.circle_process .circle {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-radius: 50%;
    position: absolute;
    top: 0;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.circle_process .rightcircle {
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    right: 0;

}

.circle_process .leftcircle {
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    left: 0;

}

.on .circle_process .rightcircle {
    border-top: 2px solid #e51721;
    border-right: 2px solid #e51721;
}

.on .circle_process .leftcircle {
    border-bottom: 2px solid #e51721;
    border-left: 2px solid #e51721;
}

.playProcess1 .rightcircle {
    -webkit-animation: circle_right 6s linear infinite;
    -moz-animation: circle_right 6s linear infinite;
    -o-animation: circle_right 6s linear infinite;
    animation: circle_right 6s linear infinite;
}

.playProcess1 .leftcircle {
    -webkit-animation: circle_left 6s linear infinite;
    -moz-animation: circle_left 6s linear infinite;
    -o-animation: circle_left 6s linear infinite;
    animation: circle_left 6s linear infinite;
}

.playProcess1.li2 .leftcircle {
    -webkit-animation: circle_left 10s linear infinite;
    -moz-animation: circle_left 10s linear infinite;
    -o-animation: circle_left 10s linear infinite;
    animation: circle_left 10s linear infinite;
}

.playProcess1.li2 .rightcircle {
    -webkit-animation: circle_right 10s linear infinite;
    -moz-animation: circle_right 10s linear infinite;
    -o-animation: circle_right 10s linear infinite;
    animation: circle_right 10s linear infinite;
}


@keyframes circle_right {
    0% {
        transform: rotate(-135deg);
    }

    50%,
    100% {
        transform: rotate(45deg);
    }
}

@keyframes circle_left {

    0%,
    50% {
        transform: rotate(-135deg);
    }

    100% {
        transform: rotate(45deg);
    }
}


.icon1 {
    height: 100%;
    width: 100%;
}

.icon1 img {
    display: block;
    margin: 0 auto;
}



.banner .hd {
    text-align: center;
    position: absolute;
    bottom: 43% !important;
    right: 40px;
    z-index: 120;
    width: auto !important;
}

.banner .hd ul {
    text-align: center;
    font-size: 0;
}

.banner .hd li {
    vertical-align: top;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.banner .hd li:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin: -3px 0 0 -3px;
}

.banner .hd li .l {
    position: absolute;
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
}

.banner .hd li .r {
    position: absolute;
    width: 15px;
    height: 30px;
    top: 0;
    right: 0;
    overflow: hidden;
    border-radius: 0 15px 15px 0;
}

.banner .hd li .l:after {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid #e60012;
    border-color: transparent #e60012 #e60012 transparent;
    transform: rotate(-45deg);
}

.banner .hd li .r:after {
    content: " ";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid #e60012;
    border-color: #e60012 transparent transparent #e60012;
    transform: rotate(-45deg);
}

.banner .hd li.one.on .l:after {
    /* -webkit-animation: circle_right 7s 0s linear 1 forwards;
    -moz-animation: circle_right 7s 0s linear 1 forwards;
    -o-animation: circle_right 7s 0s linear 1 forwards; */
    animation: circle_right 10s 0s linear    1 forwards;
}

.banner .hd li.one.on .r:after {
    /* -webkit-animation: circle_right 11s 3.5s linear 1 forwards;
    -moz-animation: circle_right 11s 3.5s linear 1 forwards;
    -o-animation: circle_right 11s 3.5s linear 1 forwards;
    animation: circle_right 11s 3.5s linear 1 forwards; */
    -webkit-animation: circle_right 10s 5s linear 1 forwards;
    -moz-animation: circle_right 10s 5s linear 1 forwards;
    -o-animation: circle_right 10s 5s linear 1 forwards;
    animation: circle_right 10s 5s linear 1 forwards;
}

.banner .hd li.on .l:after {
    -webkit-animation: circle_right 5s linear 1 forwards;
    -moz-animation: circle_right 5s linear 1 forwards;
    -o-animation: circle_right 5s linear 1 forwards;
    animation: circle_right 5s linear 1 forwards;
}

.banner .hd li.on .r:after {
    -webkit-animation: circle_right 4.9s 2.5s linear 1 forwards;
    -moz-animation: circle_right 4.9s 2.5s linear 1 forwards;
    -o-animation: circle_right 4.9s 2.5s linear 1 forwards;
    animation: circle_right 4.9s 2.5s linear 1 forwards;
}

.banner .hd li.on:after {
    background-color: #e60012;
}

@keyframes circle_right {
    0% {
        transform: rotate(-45deg);
    }

    50%,
    100% {
        transform: rotate(135deg);
    }
}

.bg_cof.on.no-index {
    position: unset;

}

.bg_cof.on {
    opacity: 0;
    z-index: 1;
}

.bg_cof {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 1;
    transition: all 2.5s;
}

.shade.on .shade-top,
.shade .shade-bottom {
    /* background-color: #fff ; */
}

.shade {
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100vh;
    max-width: 1920px;
    margin: auto;
    /* overflow: hidden; */
}

@media screen and (max-width:1400px) {

    .shade .shade-top,
    .shade .shade-bottom {
        transition: all 2.2s cubic-bezier(0.77, 0, 0.175, 1) .5s !important;
        /* -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s; */
        /* -moz-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;  */
        /* -o-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s; */
    }

    .shade.show .shade-top {
        left: -100% !important;
        /* width: 50% !important; */
    }

    .shade.show .shade-bottom {
        right: -100% !important;
        /* width: 50% !important; */
    }
}

.shade .shade-top,
.shade .shade-bottom {
    position: absolute;
    width: 100%;
    height: 50%;
    /* background: #fff; */
    top: 0%;
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 1.2s;
    /* -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s; */
    /* -moz-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;  */
    /* -o-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s; */
    z-index: 111;
}

.shade .shade-top {
    background: url(/images/shade_le1.png) no-repeat center;
    width: 1087px;
    height: 942px;
    left: -10px;
    top: auto;
}

.shade .shade-bottom {
    top: auto;
    right: 0%;
    background: url(/images/shade_ri1.png) no-repeat center;
    width: 982px;
    height: 942px;
}

.shade .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    z-index: 2;
}

.shade.show {
    visibility: hidden;
    overflow: hidden;
}

.shade.show .loading {
    display: none;
}

.shade.show .shade-top {
    left: -80%;
}

.shade.show .shade-bottom {
    right: -80%;
}


.w1200 {
    margin: 0 auto;
    width: 1200px;
}


.pub_Ban{margin-top: 80px;}
.busBottom{overflow: hidden;}
.subCompanyInfo1List { width: 555px !important;}
.business1 .index_cont2-ri{overflow: hidden;}
.bus2Pro3>div{overflow: hidden;}
.bus2Pro3{ overflow: hidden; width: 100%;}
.bus1CorePro4{ overflow: hidden;}
.bus4List{ overflow: hidden;}
.bus4_main .bus4List>div{overflow: hidden;}
.bus4ListEvenLf{width: 418px !important;}
.bus1CorePro2 {
    overflow: hidden;
}
.bus1CorePro3{overflow: hidden;}
#main .subNav .subnav_til .inner_bor1 {
    height: 4px;
    background-color: #e60021;
    position: absolute;
    left: 0;
    top: 76px;
    /* opacity: 0; */
    display: none;
}
.inno2_center .middle_nav{
    margin-bottom: 100px;
}
.middle_nav .middle_nav_con{position: relative;}
.middle_nav .middle_nav_con .up_icon{position: absolute;}
.middle_nav .middle_nav_con .down_icon {
    position: absolute;
}
/* 二级导航 */

#header .nav {}

#header .nav .nav_er {
    display: none;
    position: absolute;
    left: -42px;
    top: 80px;
    /* height: auto !important; */
    /* padding-left: 30px; */
    width: 124px;
    background: #014099;
    overflow: hidden;
    border-radius: 5px;
    /* transition: all .5s; */
    padding: 0 10px;
}

#header .nav .nav_er .list {
    padding: 20px 0 ;
}

#header .nav .nav_er .list>a {
    text-align: center;
    color: #fff;
    /* line-height: 30px; */
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    line-height: 18px;
    /* margin-right: 30px; */
}
#header .nav .nav_er .list>a:nth-last-child(1){
    margin-bottom: 0;
}
#header .nav .nav_er .list>a.nomargin_ {
    padding: 0 5px;
}

#header .nav .nav_er .list>a.nomargin_:hover {
    margin-right: 5px;
}

#header .nav .nav_er .list>a.nomargin_:hover::before {
    right: 0;
}

#header .nav .nav_er .list>a:hover {
    color: #e60021;
    /* margin-right: -5px; */
    transition: all .5s;
}
#header .nav .nav_er .list>a i {
    position: relative;
    display: inline-block;
}
#header .nav .nav_er .list>a i:before {
    content: '';
    position: absolute;
    top:4.5px;
    right: -5px;
    width: 4px;
    height: 8px;
    background: url(/images/index/navicon.png) no-repeat center;
    opacity: 0;
    filter: Alpha(opacity=0);
    -webkit-transition: all .7s;
    transition: all .7s;
}
#header .nav .nav_er .list>a:hover i:before{
    opacity: 1;
    filter: Alpha(opacity=100);
    right: -7px;
}

/* #header .nav .longtext .nav_er {
    left: -36px;
}
#header .nav  .Netgroup .nav_er  {
    min-width: 70px;
    left: 0;
} */
.morei{
	font-size: 14px;
	    color: #666;
	    text-align: right;
	    /* padding-right: 20px; */
	    /* border: 1px solid #013f94; */
	    float: right;
	    /* padding: 3px 10px; */
	    border-bottom: 1px solid #ddd;
	    margin-right: 15px;
	    margin-top: 35px;
}
.sidenav{
   height: calc(100% - 80px) !important;
   /* top:  80px !important; */
   /* display: none; */
   padding-top: 80px;
}
/* .sidenav.sidenav_active{
    display: block;
} */
.sidenav.index_side{
    /* top: 80px; */
    padding-top: 80px;
	overflow: auto;
}



/* 北斗星通 */
div#luxy div, div#luxy li {
    box-sizing: border-box;
}
.index_cont1 {
    height: 350px;
    background-color: #fff;
    padding-top: 50px;

}

.index_cont1 .index_cont1-le {
    float: left;
    width: 380px;
    overflow: hidden;
    height: 250px;
    margin-left: -20px;
    margin-top: -75px;
    /* position: absolute; */
    /* left: 0; */
}

.index_cont1 .index_cont1-mod {
    float: left;
    width: 920px;
    padding: 0 24px 0 20px;
}

.index_cont1 .index_cont1-mod .yux-dt li {
    float: left;
    width: 162px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin-right: 5px;
    background-color: #e0e0e0;
    color: #666666;
    cursor: pointer;
}

.index_cont1 .index_cont1-mod .yux-dt li:last-child {
    margin-right: 0;
}

.index_cont1 .index_cont1-mod .yux-dt li.on {
    background-color: #003e94;
    color: #fff;
}

.index_cont1 .yux-dt{
    overflow: hidden;
    margin-bottom: 30px;
    float: right;
    /* width: 100%; */
    text-align: right;
}
.index_cont1 .yux-dd {
    /* overflow: hidden; */
}
.index_cont1 .yux-dd .li {
    display: block;
}
.index_cont1 .yux-dd .li + .li {
    display: none;
}

.index_cont1 .yux-dd .ban {
    width: 100%;
    float: left;
    position: relative;
}


.index_cont1 .yux-dd .ban .bd ul {
    width: 100% !important;
    height: 100% !important;
}

.index_cont1 .yux-dd .ban .bd {
    width: 920px !important;
    height: 250px !important;
}

.index_cont1 .yux-dd .ban .bd li {
    /* width: 100% !important; */
    height: 100%;
    width: 100%  !important;
    /* height: 180px !important; */
}

.index_cont1 .yux-dd .ban .bd li .text {
    width: 500px;
    float: right;
    margin-right: 40px;
    /* position: absolute; */
    /* right: 0; */
    z-index: 99;
}

.index_cont1 .yux-dd .ban .bd li .text h2 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 300;
}

.index_cont1 .yux-dd .ban .bd li .text .time {
    font-size: 24px;
    color: #003e94;
    margin-bottom: 10px;
}

.index_cont1 .yux-dd .ban .bd li .text .p {
    font-size: 14px;
    color: #87868c;
}
.index_cont1 .yux-dd .ban .hd {
    position: absolute;
    left: 380px;
    bottom: 75px;
    width: 100%;
  }
  
 .index_cont1 .yux-dd  .ban .hd ul li {
    float: left;
    width: 30px;
    height: 4px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin-right: 10px;
    transition: all .4s;
    cursor: pointer;
    /* position: relative;
    left: 38%; */
    display: block !important;
  }
  .index_cont1 .yux-dd  .ban .bd ul li.onn_block {
    display: block !important;
    opacity: 1 !important;
  }
 .index_cont1 .yux-dd  .ban .hd ul li.on {
    background-color: #003e94;
    
  }
  .index_cont1-ri{
      float: left;
      width: 280px;
      position: relative;
  }
.index_cont1-ri .tit{
    width: 56px;
    padding-top: 10px;
    padding-bottom: 5px;
    border-bottom: 3px solid #003e94;
    margin-bottom: 30px;
}
.index_cont1-ri .num{
    color: #dd0000;
    position: relative;
    display: flex;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
    position: relative;
    top: 10px;
}

.index_cont1-ri .num .num-ri{
    padding-top: 15px;
    display: flex;
}
.index_cont1-ri .num em{
    font-size: 60px;
    font-family: 'Dincond-Regular';
    /* position: relative; */
    /* float: left; */
}
.index_cont1-ri .num .icon{
    /* position: absolute; */
	width: 16px;
	height: 13px;
    right: -20px;
    top: 17px;
    margin-left: 10px;
    /* margin-top: 16px; */
	background: url(/images/index/icon.png) no-repeat;
	background-size: 16px ;
}
.index_cont1-ri .num.on{
	 color: #009641;
	
}
.index_cont1-ri .num.on .icon{
	background: url(/images/index/icon_a.png) no-repeat;
	background-size: 16px ;
}
.index_cont1-ri .num span{
    /* position: absolute; */
    right: -80px;
    top: 16px;
    font-size: 24px;
    /* margin-top: 15px; */
    margin-left: 5px;
    font-family: 'Dincond-Regularalternate';
    font-weight: bold;
}
.index_cont1-ri .percentage{
    width: 68px;
    height: 24px;
    background-color: #dd0000;
    color: #fff;
    font-size: 14px;
    text-align: center;
   float: right;
    margin-left: 45px;
}
.index_cont1-ri .text{
    margin-top: 30px;
}
.index_cont1-ri .text p{
    color: rgba(0, 0, 0, .5);
}

.index_cont2 {
    background: url(/images/index/index_cont2bg.jpg) no-repeat center;
    width: 100%;
    height: 400px;
}
.index_cont2 .index_cont2-le{
    padding-top: 80px;
    color: #fff;
    width: 320px;
    margin-right: 20px;
    float: left;
}
.index_cont2 .index_cont2-le h4{
    font-size: 14px;
}
.index_cont2 .index_cont2-le h3{
    font-size: 22px;
    margin-bottom: 30px;
}

.index_cont2 .index_cont2-ri{
    float: right;
    padding-top: 24px;
}

.index_cont2-ri ul li {
    float: left;
    width: 261px;
    height: 300px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
    cursor: pointer;
    margin-right: 8px;
    /* padding: 100px 0 100px 0; */
    color: #fff;
    position: relative;
    transition: all .5s;

}
.index_cont2-ri ul li:last-child{
    margin-right: 0;
}
.index_cont2-ri ul li p{
    color: #fff;
    text-align: center;
    /* padding-top: 143px; */
    z-index: -1;
    height: 360px;
} 
.index_cont2-ri ul li .itemText{

}
.index_cont2-ri ul li:hover p img{
    opacity: 0;
}
.index_cont2-ri ul li.indexItem3  p img{
    margin-left: -20px;
}
.index_cont2-ri ul li p img{
    /* padding-top: 100px; */
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -40px;

}
.index_cont2-ri ul li em{
    transition: all .5s;
    display: block;
    z-index: 300;
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
}
.index_cont2-ri ul li .itemImg> div,
.index_cont2-ri ul li .itemImg img{
  opacity: 0;
}
.index_cont2-ri ul li .itemImg {
    /* height: 360px; */
    /* z-index: -1; */
    overflow: hidden;
}
.index_cont2-ri ul li .itemImg img{
    /* transform: scale(1.05); */
    transition: all .5s;
}
.index_cont2-ri ul li:hover .itemImg> div,
.index_cont2-ri ul li:hover .itemImg  img{
    /* transform: scale(1.1); */
    transition: all .5s ease-in-out;
  opacity: 1;

}
.index_cont2-ri ul li:hover  
 /* .index_cont2-ri ul li p.bsBtn1 {
    background: url(/images/index/bsbtn1.png) no-repeat center 100px;
}
 .index_cont2-ri ul li p.bsBtn2 {
    background: url(/images/index/bsbtn2.png) no-repeat center 100px;
}
.index_cont2-ri ul li p.bsBtn3 {
    background: url(/images/index/bsbtn3.png) no-repeat center 100px;
} */


.index_cont2-ri ul li:hover em{
    background: none !important;
    transition: all .5s;
    /* margin-top: 10px; */
}
 .index_cont2-ri ul li .hover{
    width: 260px;
    height: 360px;
    position: absolute;
    bottom: -360px;
    transition: all .5s;
    z-index: -10;
}
.index_cont2-ri ul li:hover p{
    /* background: none; */
}
.index_cont2-ri ul li.indexItem1{
    width: 532px;
    transition: all .5s;
}
.index_cont2-ri ul li.indexItem1:hover{
    /* border: 0; */
}
.index_cont2-ri ul li.indexItem1:hover .bsBtn1,
.index_cont2-ri ul li.indexItem1:hover .icon{
    opacity: 0;
    transition: all .4s;
}
.index_cont2-ri ul li.indexItem1 .hover{
    /* background: url(/images/index/index_cont2-bus1on.jpg) no-repeat top  center; */
    /* background: url(/images/index/index_cont2-bus1on.jpg) no-repeat top  center; */
}
 .index_cont2-ri ul li.indexItem2 .hover{
    background: url(/images/index/index_cont2-bus2on.jpg) no-repeat top  center;
}
.index_cont2-ri ul li.indexItem3 .hover{
    background: url(/images/index/index_cont2-bus3on.jpg) no-repeat top  center;
}
.index_cont2-ri ul li:hover .hover{
    bottom: 0;
}
/* .index_cont2-ri ul li.indexItem1:hover {
    background: url(/images/index/index_cont2-bus1on.jpg) no-repeat top  center;
}
 .index_cont2-ri ul li.indexItem2:hover {
    background: url(/images/index/index_cont2-bus2on.jpg) no-repeat top  center;
}
.index_cont2-ri ul li.indexItem3:hover {
    background: url(/images/index/index_cont2-bus3on.jpg) no-repeat top  center;
} */
.index_cont2-ri ul li .icon{
    /* display: none; */
    text-align: center;
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -13px;
    transition: all .5s;
}
.index_cont2-ri ul li:hover .icon{
    display: block;
    margin-left: -5px;
    transition: all .5s;
}

.index_cont3{
    height: 330px;
    padding: 40px 0;
}
.index_cont3 .w1200>a{
    display: block;
    float: left;
    margin-right: 10px;
    overflow: hidden;
    height: 250px;
    transition: all .5s;
}
.index_cont3 .w1200>a:last-child{
    margin-right: 0;
}
/* .index_cont3 .w1200>a.brand{
    background: url(/images/index/brand.jpg) no-repeat  center;
    width: 390px;
    height: 250px;  
}
.index_cont3 .w1200>a.annual{
    background: url(/images/index/annual.jpg) no-repeat  center;
    width: 530px;
    height: 250px; 
}
.index_cont3 .w1200>a.contact{
    background: url(/images/index/contact.jpg) no-repeat  center;
    width: 260px;
    height: 250px; 
    margin-right: 0;
} */
.index_cont3 .w1200 h4{
    padding-left: 30px;
    padding-top: 45px;
    font-size: 22px;
    position: absolute;
}
.index_cont3 .w1200 a>.img{
    position: relative;
}
.index_cont3 .w1200 a> .img img{
    transition: all .5s;

}
.index_cont3 .w1200 a:hover img{
    transform: scale(1.1);
    transition: all .5s;
}
.index_cont3 .w1200 a:hover>h4{
    /* color: rgba(255, 255, 255, .8); */
    transition: all .4s;
}
.index_cont3 .w1200 a:hover .icon{
    padding-left: 10px;
    transition: all .5s;

}
.index_cont3 .w1200 a:hover .icon img{
    transform: scale(1);
    opacity: 1;

}
.index_cont3 .w1200 .icon{
    /* padding-top: 135px; */
    /* padding-left: 30px; */
    transition: all .5s;
    position: absolute;
    bottom: 50px;
    left: 30px;
}
.index_cont3 .w1200 .icon img{
    opacity: 0;
}
.index_cont3 .w1200  h4{
    color: #003e94;
    font-weight: bold;
    z-index: 11;
}
.index_cont3 .w1200 .annual h4{
    color: rgba(255, 255, 255, .4);
}




/* footer */
footer {
    width: 100%;
    height: 400px;
    max-width: 1920px;
    margin: auto;
    background: #333;
}
/* 
footer p,
footer a {
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
    line-height: 24px;
} */

/* footer a {
    display: inline;
} */

footer a:hover {
    color: #fff;
}

/* 
footer .w100 {
    width: 100%;
    margin: auto;
}

footer .top .phone {
    float: left;
    padding-left: 46px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    color: #9a9a9a;
    font-family: "Brandon-Bold";
    background: url(/images/f_icon_phone.png) no-repeat left center;
}

footer .top .ri {
    float: right;
    height: 40px;
}

footer .top .ri a {
    float: left;
    position: relative;
    font-size: 14px;
    color: #9a9a9a;
    padding-right: 48px;
    height: 44px;
    line-height: 44px;
    background: no-repeat right center;
}
footer .top .ri .login_{
	padding-right: 40px;
}
footer .top .ri .attention {
    background-image: url(/images/f_icon_wx.png);
}

footer .top .ri .code_img {
    position: absolute;
    bottom: 50px;
    left: -42px;
    width: 118px;
    height: 125px;
    background: url(/images/wxQcBg.png) no-repeat;
    padding: 5px 5px;
    display: none;
}

footer .bom {
    height: 279px;
} */

footer .fo_nav .title>li {
    float: left;
    margin-right: 35px;
    font-size: 13px;
    color: #e2dede;
    text-align: left;
}
footer .fo_nav .title>li > a {
    font-weight: bold;
}
footer .fo_nav .title>li ul li a{
    font-size: 12px;
}


footer .fo_nav .title>li:last-of-type {
    margin-right: 0;

}


footer .fo_nav .title ul {
    margin-top: 16px;
}


footer .fo_nav .title ul li a:hover {
    color: #a3a1a1 !important;
}

footer .fo_nav .title ul li a {
    text-decoration: none;
    color: #fff;
    opacity: 0.4;
    transition: all .7s;
}

footer .fo_nav .title>li a {
    text-decoration: none !important;
    color: #fff;
    opacity: 0.4;
    text-align: left;
}

footer .fo_nav .title ul {
    margin-top: 16px;
}

footer .fo_nav .title ul li {
    cursor: pointer;
    text-align: left;
    color: #6e6d6d;
    margin-bottom: 5px;
}

footer .fo_nav .title ul li a:hover {
    color: #fff !important;
    opacity: 1;
}



footer .bom .le {
    float: left;
    padding-top: 60px;
    width: 470px;
    /* overflow: hidden; */

}
footer .bom .le>div{
    float: left;
}
footer .bom .le .fole_top {
    margin-bottom: 20px;
}
footer .bom .le .fole_top .logo{
    margin-bottom: 40px;
}
footer .bom .le .fole_top .text p{
    float: left;
    margin-right: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
    line-height: 24px;
}
footer .bom .le .fole_mod{
    margin-bottom: 62px;
}
footer .bom .le .fole_mod li{
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}
footer .bom .le .fole_mod li.wx{
    background: url(/images/index/wx.png) no-repeat center;
   
}
footer .bom .le .fole_mod li.wb{
    background: url(/images/index/wb.png) no-repeat center;
}
footer .bom .le .fole_mod li.wb>a{
    height: 100%;
    display: block;
    position: unset;
    transform: unset;
    width: unset;
}
footer .bom .le .fole_mod li.tt{
    background: url(/images/index/tt.png) no-repeat center;
}
footer .bom .le .fole_mod li .code_img{
    display: none;
    bottom: 37px;
    position: absolute;
    width: 106px;
    height: 105px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
}
footer .bom .le .fole_mod li:hover>.code_img{
    display: block;
}

footer .fole_bot {
    float: left;
    height: 80px;
    width: 100%;
  
    border-top: 1px solid #3f3f3f;
}
footer .fole_bot>p{
    line-height: 80px;
    color: rgba(255, 255, 255, .3);
    display: flex;
}
footer .fole_bot em a{
    position: relative;
    margin-right: 7px;
    margin-left: 7px;
}
footer .fole_bot em:nth-of-type(1) >a::before{
    content: unset;
}
footer .fole_bot em a::before{
    content: '·';
    position: absolute;
    left: 63px;
    top: -2px;
}
footer .fole_bot em:hover a::before{
    color: rgba(255, 255, 255, .3);
}
footer .fole_bot em:last-of-type a:before{
    content: none;
}
footer .bom .ri {
    float: right;
    padding-top: 80px;
}
/* 
footer .siteSelect {
    float: left;
    position: relative;
    z-index: 33;
}

footer .siteSelect span {
    display: block;
    width: 290px;
    height: 50px;
    font-size: 14px;
    color: #a7a7a7;
    border: 1px solid #858585;
    line-height: 48px;
    padding-left: 15px;
    background: url(/images/f_siteSelect_icon.png) 263px center no-repeat;
    cursor: pointer;
}

footer .siteSelect ul {
    display: none;
    position: absolute;
    width: 290px;
    max-height: 287px;
    overflow: hidden;
    overflow-y: auto;
    bottom: 100%;
    left: 0;
    background: #a7a7a7;
}

footer .siteSelect ul a {
    color: #e2e2e2;
    display: block;
    font-size: 12px;
    line-height: 45px;
    padding-left: 15px;
    border-top: 1px solid #989898;
    margin-bottom: 0;

}

footer .siteSelect ul a:hover {
    color: #e7091b;
}

footer .siteSelect.on span {
    background-image: url(/images/f_siteSelect_icon-on.png);
} */

/* .fp-viewing-4 footer .pop.statement_pop .popBody {
    z-index: 999999999;
}

.fp-viewing-4 footer .pop.statement_pop .bg {
}

.fp-viewing-4 footer .pop.statement_pop {
    top: 368px;
} */


/* ????????°????????— */
footer .bom .le .foot_statement {
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin-right: 15px;
}
footer .bom .le .foot_statement::before{
    content: '·';
    position: absolute;
    top: 0;
    right: -17px;
    width: 10px;
}

.pop.statement_pop .title {
    padding-bottom: 44px;
    margin: 0;
    border: none;
}

.pop.statement_pop .title .en {
    font-family: 'Gilroy-Medium';
    font-size: 30px;
    color: #e1d1d0;
    line-height: 1;
    text-transform: none;
    margin-bottom: 12px;
}

.pop.statement_pop .title .cn {
    font-size: 26px;
    color: #4c4c4c;
    line-height: 1;
}

.pop.statement_pop .close {
    width: 66px;
    height: 66px;
    background: url(/images/close02.png) no-repeat center #ede6e6;
    border-radius: 50%;
}

.pop.statement_pop .detailed {
    height: 266px;
    overflow: auto;
    padding-right: 10px;
}

.pop.statement_pop h3 {
    font-size: 16px;
    color: #4c4c4c;
    line-height: 26px;
    margin-top: 14px;
}

.pop.statement_pop p {
    color: #808080;
    line-height: 26px;
}

.pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
}

.pop .bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.pop .popBody {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -210px;
    width: 1200px;
    height: 500px;
    background-color: #fff;
    padding: 42px 40px;
    animation: popBody 1s;
    -webkit-animation: popBody 1s;
}

.pop .close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 30px;
    height: 30px;
    background: url(/images/close.png) no-repeat center #cec7be;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}

.pop .title {
    padding-bottom: 30px;
    margin-bottom: 26px;
    border-bottom: 1px solid #dddddd;
}

.pop .title .cn {
    font-size: 20px;
    color: #333333;
    line-height: 26px;
}

.pop .title .en {
    font-size: 16px;
    color: #d4d4d4;
    line-height: 26px;
    text-transform: uppercase;
}

.pop .detailed h3 {
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    margin-top: 14px;
}

.pop .detailed p {
    color: #999999;
    margin-bottom: 0;
}

.pop .link {
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #e0201b;
    margin-top: 30px;
}

.pop.recruitment2_pop .detailed {
    height: 270px;
    overflow-y: auto;
    padding-right: 20px;
}

/* video */
.pop.video_pop .popBody {
    padding: 0;
    background: none;
    text-align: center;
}

.video_pop video {
    height: 500px;
    object-fit: cover;
}

/* é??????????— */
.pop.house_pop .popBody {
    width: 400px;
    height: 400px;
    margin-left: -200px;
}

.pop.house_pop .info h3 {
    color: #535353;
    font-size: 24px;
    text-align: center;
    font-weight: normal;
}

.pop.house_pop .info p {
    font-size: 14px;
    color: #535353;
    margin-top: 20px;
}

.pop.house_pop .info input {
    width: 100%;
    height: 48px;
    border: 1px solid #e6dbd3;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #535353;
    box-sizing: border-box;
    padding-left: 20px;
    margin-top: 20px;
}

.pop.house_pop .info button {
    width: 100%;
    height: 48px;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    background: #e0201b;
    margin-top: 40px;
}
.subCompanyInfo2List{
    width: 530px !important;
}
.busBottomConLf{
    position: relative;
}
.investor_ban, .res_ban,.innovate_ban,.news_ban{
    margin-top: 80px;
}
.news_main1>ul>li>a h2{
    font-size: 20px;
    top: 31px;
}
.news_main1>ul>li:hover>a h4,
.news_main1>ul>li:hover>a p{
    color: rgba(255, 255, 255, 1);
}
.ab3_main .hd ul li{
    width: 278px;
    height: 80px;
    padding: 90px 25px 76px;
}
#footer .pa{
    position: absolute;
}
#footer.mainFooter{
    height: auto !important;
}
.map, .state{
    top: 65%;
}
.state{
	top: 50%;
}
.bus4ListEven  .bus4ListEvenLf {
    padding: 10px 15px 15px 15px !important;
    margin-bottom: 20px;
    margin-top: 30px;
    overflow:hidden;
}
.bus4ListEvenLf>.bus4ListEvenLf_scroll>p {
    color: #A6A49E;
    font-size: 12px;
    line-height: 18px;
    text-align: justify;
}
.bus4ListEvenLf .bus4ListEvenLf_scroll{
     overflow: auto;
     max-height: 210px;
     height: 111px;
    padding-right: 10px;
}

.bus4ListEvenLf .bus4ListEvenLf_scroll::-webkit-scrollbar{
    display:block;
}
/* #footer .map, .state {
    top: auto !important;
    bottom: 15% !important;
} */



@media screen and (max-width: 1280px) {
    #header .nav>ul li>a {
        padding-right: 25px;
    }
}

.subNav .subnav_til li{
    margin-right: 50px !important;
}
.subNav .subnav_til li:nth-child(1) .tit{    padding-right: 20px;}
/* 2025.3.21新增 */
.subNav .subnav_til .tit{
    cursor: pointer;
    color: #6f6f6f;
    position: relative;
    /* padding-right: 40px; */
}
.subNav .subnav_til .tit::after{
   background: url(/images/business_nav-ic.png) no-repeat center;
    content: '';
    display: block;
    width: 12px;
    height: 7px;
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -4px;
}
.subNav .subnav_til ul{
    overflow: visible !important;
}
.subNav .subnav_til ul::after{
    content: '';
    clear: both;
    display: block;
}
.subNav .subnav_til li{
    position: relative;
}
.subNav .subnav_til .sub-item{
    text-align: left;
    width: 150px;
    margin: 0 auto;
    line-height: 1;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
    color: #808080;
    z-index: 10;
} 
.subNav .subnav_til .sub-item:nth-last-child(1){
    border-bottom: 0;
    margin-bottom: 0;
}
.subNav .subnav_listNav{
    display: none;
    position: absolute;
    top: 80px;
    left: -25px;
    right: 0;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 1px 0px 83px rgba(0, 0, 0, .15);
    padding-top: 20px;
    width: 190px;
    /* padding-top: 100px; */
    /* background: url(/images/business1-mask.png) no-repeat center; */
}
.subNav .subnav_listNav::after{
    /* content: ''; */
    position: absolute;
    top: -60px;
    left: -50px;
   
    z-index: -1;
}


#header .nav .nav_er .tit{
    display: block;
    /* border-bottom: 1px solid #3466ad; */
    width: 150px;
    /* margin: 0 auto 20px; */
    padding: 0 20px;
} 
#header .nav .nav_er .tit .span{
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    line-height: 18px;  
    position: relative;
    text-align: left;
}
#header .nav  .long3 .list> a{
    text-align: left;
    padding-left: 20px;
}
#header .nav  .long3 .height .list> a{
    position: relative;
    top: 18px;
}
#header .nav .nav_er.height .tit .span::after{
    transform: rotate(180deg);
}
#header .nav .nav_er .tit .span::after{
    background: url(/images/business_nav-ic2.png) no-repeat center;
    content: '';
    display: block;
    width: 13px;
    height: 7px;
    position: absolute;
    right: -11px;
    top: 50%;
    margin-top: -4px;
    transition: all .6s;
}
#header .nav .nav_er .tit  .subnav_listNav .sub-item:hover,
#header .nav .nav_er .tit .span:hover{
    color: #e60021;
}
#header .nav .nav_er .tit .subnav_listNav{
    display: none;
    /* margin-bottom: 10px !important; */
} 
#header .nav .nav_er .tit  .subnav_listNav .sub-item{
    color: #fff;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 10px;
    text-align: left;
} 
#header .nav .nav_er.height .tit .subnav_listNav{
    display: block;
    animation: fadeIn .4s;
}
#header .nav .nav_er.height{
    height: 160px !important;
}
#header .nav .nav_er.height::after{
    content: '';
    position: absolute;
    bottom: 46px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 1px;
    background-color: #3466ad;
    width: 131px;
}
.subNav{
    z-index: 1;
    position: relative;
}















/* 2025.3.31新增 */
.index_cont2-ri ul li.indexItem1{
    cursor: auto;
}
.business1-1_p4nav .tab_ul ul{
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
}
.business1-1_p4nav .tab_ul ul li{
    height: auto;
    padding:  36px;
    font-size: 15px;
    color: #808080;
    transition: all .4s;
    cursor: pointer;
    background-color: #f2f2f2;

}
.business1-1_p4nav .tab_ul ul li:hover,
.business1-1_p4nav .tab_ul ul li.on{
    background-color: #0054c2;
    color: #fff;
}
.business1-1_p4nav .tab_cont{
    position: relative;
}
.business1-1_p4nav .tab_cont>div:nth-child(1){
    display: block;
}
.business1-1_p4nav .tab_cont>div{
    padding: 40px 25px 40px 40px;
    overflow: hidden;
    border-left: 2px solid #ededed;
    border-right: 2px solid #ededed;
    border-bottom: 2px solid #ededed;
    display: none;
}
.business1-1_p4nav .tab_cont .le{
    float: left;
    width: 286px;
    margin: 0 auto;
    text-align: center;
}
.business1-1_p4nav .tab_cont .ri{
    float: left;
    width: calc(100% - 322px);
    border-left: 2px solid #ededed;
    padding-left: 30px;
}
.business1-1_p4nav .tab_cont .ri .p{
    margin-bottom: 30px;
}
.business1-1_p4nav .tab_cont .ri .p h6{
    position: relative;
    color: #4c4c4c;
    font-size: 18px;
    line-height: 1;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
}
.business1-1_p4nav .tab_cont .ri .p h6::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 18px;
    background-color: #0054c2;
}
.business1-1_p4nav .tab_cont .ri .p ul li,
.business1-1_p4nav .tab_cont .ri .p p{
    color: #808080;
}
.business1-1_p4nav .tab_cont .ri .p ul li{
    position: relative;
    padding-left: 15px;
}
.business1-1_p4nav .tab_cont .ri .p ul li::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #df000f;
    border-radius: 50%;
}

.business1-1 .bus4ChinaMapCom >h3{
    color: #0054c2;
    font-size: 18px;
    margin-bottom: 30px;
}
.business1-1 .bus4_main .p{
    margin-bottom: 40px;
}
.business1-1 .bus4_main .p p{
    color: #808080;
    margin-bottom: 30px;
    margin-top: 20px;
}
.business1-1 .bus4_main .p h5{
    font-size: 16px;
    color: #666;
    font-weight: 600;
    position: relative;
    margin-bottom: 7px;
    padding-left: 15px;
}
.business1-1 .bus4_main .p h5::before{
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #df000f;
}


.business1 .business1_cont1 .w1200{
    padding-top: 50px;
    /* display: flex;
    justify-content: space-between; */
}
.business1 .business1_cont1 .w1200 .Box{
    position: relative;
    width: 100%;
    height: 358px;
    margin-top: 50px;
    overflow: hidden;
    float: left;
}
.business1 .business1_cont1 .w1200 .flex{
    overflow: hidden;
}
.business1 .business1_cont1 .w1200 p{
    color: #808080;
}
.business1 .business1_cont1 .w1200 .Box:nth-child(1){
    width: 705px;
}
.business1 .business1_cont1 .w1200 .Box:nth-child(2){
    width: 465px;
    margin-left: 30px;
}
.business1 .business1_cont1 .w1200 .Box img{
    position: absolute;transition: all .5s ease;
}
.business1 .business1_cont1 .w1200 .Box:nth-child(2) img:nth-child(1),
.business1 .business1_cont1 .w1200 .Box:nth-child(1) img:nth-child(1){
    opacity: 1;
}
.business1 .business1_cont1 .w1200 .Box:nth-child(2) img:nth-child(2),
.business1 .business1_cont1 .w1200 .Box:nth-child(1) img:nth-child(2){
    opacity: 0;
}
.business1 .business1_cont1 .w1200 .Box:nth-child(2):hover img:nth-child(1),
.business1 .business1_cont1 .w1200 .Box:nth-child(1):hover img:nth-child(1){
    opacity: 0;
}
.business1 .business1_cont1 .w1200 .Box:nth-child(2):hover img:nth-child(2),
.business1 .business1_cont1 .w1200 .Box:nth-child(1):hover img:nth-child(2){
    opacity: 1;
}

.index_cont2-ri  .itemImg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.index_cont2-ri .indexItem1 .t1{
    position: absolute;
    top: 30px;
    width: 100px;
    height: 200px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: end;
    left: 90px;
    z-index: 1000 !important;
}
.index_cont2-ri .indexItem1 .t2{
    position: absolute;
    top: 30px;
    width: 140px;
    height: 200px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: end;
    right: 78px;
    z-index: 1000 !important;
}
.index_cont2-ri .indexItem1 .t3{
    width: 100%;
    height: 100%;
    bottom: 0 !important;
    right: 0;
    left: 0;
    font-size: 16px;
}
.index_cont2-ri .indexItem1 .t3 p{
    position: absolute;
    bottom: 25px;
    right: 0;
    left: 0;
    text-align: center;
}
.index_cont2-ri .indexItem1 .itemImg a{
    position: absolute;
    /* bottom: 80px;
    width: 100px;
    height: 70px; */
    z-index: 10;

   
}
.index_cont2-ri .indexItem1 .itemImg a>p{
    height: auto;
    display: block;
    opacity: .75;
    color: #fff;
    transition: all .5s;
}
.index_cont2-ri .indexItem1 .itemImg a>p:hover{
    color: #fff;
    opacity: 1;
}
.business1_cont1 .index_cont2-ri ul{
    display: flex;
    justify-content: space-between;
    height: 358px;
}
.business1_cont1 .index_cont2-ri .indexItem1{
    width: 705px;
    height: 358px;
   background: url(/images/business/business1-b1.jpg) no-repeat center;
}
.business1_cont1 .index_cont2-ri .indexItem2{
    width: 465px;
    height: 358px;
    background: url(/images/business/business1-b2.jpg) no-repeat center;
 }
 .business1_cont1 .index_cont2-ri ul li .itemImg img{
    transform: scale(1) !important;
 }
 .business1_cont1  .index_cont2-ri {
    margin-top: 40px;
 }
 .business1_cont1  .index_cont2-ri .indexItem1 .t1{
    left: 160px;
    bottom: auto;
    top: 80px;
}
 .business1_cont1 .index_cont2-ri .indexItem1 .t2{
    right: 141px;
    bottom: auto;
    top: 80px;
}
.index_cont2-ri ul li:hover em{
    bottom: 68px;
}
.business1_cont1 .index_cont2-ri ul li:hover em {
    bottom: 88px;
}


.business1_cont1 .index_cont2-ri ul li em{
    font-size: 16px;
    /* bottom: 80px !important; */
    color: #fff;
}
.business1 .index_cont2-ri ul li .icon {
    /* bottom: 50px !important; */
}

.business1-1 .index_cont2-ri li.indexItem1{
    width: 100%;
    height: auto;
}
.business1-1  .index_cont2-ri ul li .itemImg> a{
    opacity: 1 ;
}
.business1-1 .index_cont2-ri ul li:hover .itemImg img{
    transform: scale(1) !important; 
}
.business1-1 .index_cont2-ri ul li .itemImg img{
    opacity: 1 !important;
}
.business1-1 .index_cont2-ri .itemImg{
    position: unset;
}
.business1-1 .index_cont2-ri .indexItem1 .t2 {
    right: 189px;
}

.business1-1 .index_cont2-ri .indexItem1 .t1 {
    left: 199px;
}
.business1-1 .index_cont2-ri .indexItem1 .itemImg a{
    bottom: auto;
    top: 60px;
}
.business1-1.pub_center .middle_inner{
    padding-bottom: 80px;
}
.worldMap,.subCompanyInfo>div{
    display: block !important;
}
.business1 .index_cont2-ri ul .indexItem2  p img{
    margin-left: -20px;
}
.subCompanyInfo2List>li{
    font-size: 16px !important;
}