@charset "utf-8";

/* CSS Document */

/*===========================header=============================*/

body {
    font-family: 苹方, Microsoft YaHei;
}

@font-face {

    font-family: OSWALD-DEMIBOLD;

    src: url(../fonts/OSWALD-DEMIBOLD.TTF);

}

@font-face {

    font-family: BARLOWCONDENSED-LIGHT;

    src: url(../fonts/BARLOWCONDENSED-LIGHT.TTF);

}

@font-face {

    font-family: BARLOWCONDENSED-BOLD;

    src: url(../fonts/BARLOWCONDENSED-BOLD.TTF);

}

@font-face {

    font-family: OSWALD-LIGHT;

    src: url(../fonts/OSWALD-LIGHT.TTF);

}

#header,
#nav ul li h3,
.top_menu {
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

#header {
    z-index: 999;
    height: 6.25rem;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 998;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

#header.xg,
#header:hover {
    height: 6.25rem;
    background: #093e96;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

#header>.m {
    display: flex;
    height: 100%;
    max-width: 1360px;
    justify-content: space-between;
    align-items: center;
    position: static;
}

#header .fr {
    display: flex;
}

#header #nav {
    display: flex;
    justify-content: space-between;
    width: 1000px;
}



#logo {
    flex-shrink: 0;
}

#logo a,
.foot_logo a {
    display: flex;
    height: 4.25rem;
    align-items: center;
}

#logo img {
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    height: 4.375rem;
}


#nav {
    flex-grow: 1;
}

#nav ul {
    display: flex;
    flex-grow: 1;
}

#nav ul li {
    float: left;
    position: relative;
    z-index: 0;
    flex-grow: 1;
    text-align: center;
}

#nav ul li a {
    display: block;
    font-size: 0;
    position: relative;
    z-index: 10;
}

#nav ul li h3 {
    font-size: 1rem;
    color: #fff;
    line-height: 6.25rem;
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
    display: inline-block;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: bold;

}

#nav ul li:last-child {
    margin-left: 1rem;
}

#nav ul li:last-child>a::before {
    content: '';
    position: absolute;
    background: url(../images/phone.svg)no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

#nav ul li:last-child>a::after {
    content: '';
    position: absolute;
    background: url(../images/arrow.svg)no-repeat;
    background-size: cover;
    width: 26px;
    height: 26px;
    right: -5%;
    top: 50%;
    transform: translate(0, -50%);
}

#header.xg #nav ul li h3,
#header:hover #nav ul li h3 {
    line-height: 6.25rem;
    color: #fff;
}


#header.xg #nav>ul>li:hover h3,
#header.xg #nav>ul>li.on h3,
#header:hover #nav>ul>li:hover h3,
#header:hover #nav>ul>li.on h3 {
    color: #fff;

}

#header #nav>ul>li::after {
    content: "";
    position: absolute;
    background: #fff;
    height: 1px;
    width: 70%;
    left: 50%;
    bottom: 0;
    opacity: 0;
    transition: 0.6s;
    transform: translate(-50%, 0);
}

#header #nav>ul>li.on::after,
#header #nav>ul>li:hover::after {
    opacity: 1;
}

/* #nav ul li.on h3,
#nav ul li:hover h3 {
    color: #fff;
} */



/* #nav ul li.on h3:before, #nav ul li:hover h3:before { transform: scaleX(1); }  */

#nav li .sub {
    position: absolute;
    position: absolute;
    padding-top: .5rem;
    left: 50%;
    top: 100%;
    z-index: 999;
    transform-origin: 0 0 0;
    transform: translateY(10px) translateX(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;

    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
}

#nav li .sub .box {
    padding: 0;
    text-align: left;
    background: rgba(255, 255, 255, .8);
    padding: 1rem 2rem;
    border-radius: 5px;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 5px #3333334d;
}

#nav li .sub a {
    padding: 0;
    line-height: 2rem;
    transition: .3s;
    font-size: .875rem;
    color: #000;
    text-align: center;
    white-space: nowrap;
}

#nav li .sub a:hover {
    color: #093e96;
}

#nav li:hover .sub {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateX(-50%);
}




@keyframes spin {

    to {
        transform: rotate(1turn);
    }

}

@keyframes spin2 {

    to {
        transform: rotate(-1turn);
    }

}

@keyframes spin-reverse {

    from {

        transform: rotate(1turn);

    }

}

@keyframes spin-reverse2 {

    from {

        transform: rotate(-1turn);

    }

}



/*首页banner*/

#banner {
    position: relative;
}


#banner .swiper {
    height: 100vh;
}

#banner .slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
}

#banner .swiper-button-next,
#banner .swiper-button-prev {
    width: 4.5rem !important;
    height: 4.5rem !important;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    transition: all .5s;
}

#banner .nexts {

    right: 10%;
}

#banner .prevs {

    left: 10%;
}

#banner .swiper-button-white svg path {
    fill-opacity: .6;
}

#banner .swiper-button-next:hover,
#banner .swiper-button-prev:hover {
    border: 2px solid #fff;
}

#banner .swiper-pagination span {
    width: 4.5rem;
    height: 3px;
    background: transparent;
    transition: .5s;
    border-radius: 50%;
    padding: 0;
    position: relative;
}

#banner .swiper-pagination span:before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    background: rgba(255, 255, 255, .25);
}

#banner .swiper-pagination {
    bottom: 5% !important;
}

#banner .swiper-pagination span:after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    left: 0;
    margin-left: 0;
    position: absolute;
    top: 0;
    background: #feb300;
}

#banner .swiper-pagination span.swiper-pagination-bullet-active:after {
    animation: anim-h 4s linear forwards;
    -webkit-animation: anim-h 4s linear forwards;
}

@-webkit-keyframes anim-h {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes anim-h {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


.s_tt {}

.s_tt span {
    font-size: 1.5rem;
    color: #772b1b;
    font-family: HELVETICANEUELTPRO;
    text-transform: uppercase;
}

.s_tt h3 {
    font-family: SLIDEQIUHONGREGULAR;
    font-size: 3.75rem;
    color: #333333;
    letter-spacing: -.625rem;
}


.relative {
    position: relative;
}

#n_banner {
    height: 42.5rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 9;
    background-size: cover !important;
}

#dh {
    border: 1px solid #e1e2e6;
    height: 4rem;
}

#dh ul,
#dh .m {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#dh ul li {
    border: 1px solid #dddde1;
    height: 4rem;
    width: 12.5rem;
    transition: all .3s;
}

#dh ul li a {
    color: #3b3b3b;
    font-size: 1rem;
    line-height: 1.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all .3s;

}

#dh ul li:not(:first-child) {
    border-left: none;
}

#dh ul li.on {
    background: #0da945;
}

#dh ul li:hover,
#dh ul li.on {
    color: #fff;
    border-top: 1px solid #0da945;
    border-bottom: 1px solid #0da945;
}

#dh ul li.on a,
#dh ul li:hover a {
    color: #fff;
}

.position {
    left: 0;
    bottom: 0;
    font-size: .9375rem;
    color: #838486;
    display: flex;
    align-items: center;
}

.position>svg {
    margin-right: 5px;
    width: 1.255rem;
    height: 1.25rem;
}

.position a {
    margin: 0 4px;
    transition: all .5s;
}
.position a:hover {
    color: #093e96;
}
.position span,
.position a,
.position i {
    font-size: .8125rem;
    color: #828386;
    flex-shrink: 0;
    -moz-transition: all 0.36s ease-in-out;
    -webkit-transition: all 0.36s ease-in-out;
    -o-transition: all 0.36s ease-in-out;
    -ms-transition: all 0.36s ease-in-out;
    transition: all 0.36s ease-in-out;
}

.position i {
    margin: 0px 3px 2px;
    font-style: normal;
    width: 8px;
    height: 8px;
}

.page .boxp {
    display: flex;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.page a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #393939;
    margin-right: 10px;
    border: 1px solid #d4d4d4;
    flex-shrink: 0;
    min-width: 2.5rem;
    height: 2.5rem
}

.page a span {
    padding: 0 1.625rem;
    white-space: nowrap
}

.page a.on , .page a:hover {
    border: 1px solid #255db2;
    background: #255db2;
    color: #fff
}

.page .centers {
    justify-content: center;
}




#m_n_nav {
    display: none;
    line-height: 50px;
    position: relative;
    z-index: 9;
    width: 100%;
    background: #0da945;
}


#m_n_nav .m {
    display: flex;
    align-items: center;
    justify-content: space-between
}

#bnt_back svg {
    fill: #fff;
    vertical-align: middle;
    width: 26px;
    height: 26px
}

#m_n_nav h1 {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 50px
}

#bnt_sub_nav {
    cursor: pointer;
    color: #fff;
    font-size: 18px
}

#bnt_sub_nav svg {
    fill: #fff;
    height: 16px;
    vertical-align: middle;
    width: 16px
}

#bnt_sub_nav img {
    display: block;
    height: 15px
}

#bnt_sub_nav.on img {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

#sub_nav_content {
    background: #f0f3f5;
    display: none;
    box-shadow: 0 0 5px #999;
    z-index: 9
}

#sub_nav_content ul {
    padding: 10px
}

#sub_nav_content ul li {
    display: block;
    line-height: 28px;
    margin: 1rem 0
}

#sub_nav_content ul li a {
    display: block;
    border-left: 2px solid #db0018;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    padding-left: 10px;
    color: #535455
}

#sub_nav_content ul li.on a {
    color: #db0018
}

#sub_nav_content dl {
    font-size: 0;
    overflow: hidden;
    background: #fff;
    padding: 10px 0;
    border-top: 1px solid #e7e7e7
}

#sub_nav_content dt {
    position: relative;
    background: #fff;
    z-index: 999;
    margin-bottom: 0
}

#sub_nav_content dt a {
    margin: 0 20px;
    display: block;
    color: #333;
    line-height: 30px;
    font-size: 13px;
    vertical-align: top
}

#sub_nav_content dt a i {
    position: absolute;
    right: 15px;
    top: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    display: none
}


#swiper1 .swiper-button-white:hover svg path {
    fill-opacity: 1;
}


#swiper1>img {
    position: absolute;
    width: 18px;
    height: 28px;
}

#banner .swiper-pagination span {
    width: 4.5rem;
    height: 3px;
    background: transparent;
    transition: .5s;
    border-radius: 50%;
    padding: 0;
    position: relative;
}

#banner .swiper-pagination span:before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    background: rgba(255, 255, 255, .25);
}

#banner .swiper-pagination span:after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    left: 0;
    margin-left: 0;
    position: absolute;
    top: 0;
    background: #305ae1;
}

#banner .swiper-pagination span.swiper-pagination-bullet-active:after {
    animation: anim-h 4s linear forwards;
    -webkit-animation: anim-h 4s linear forwards;
}

@-webkit-keyframes anim-h {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes anim-h {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}



/* since2010 */
#since {
    width: 100%;
    position: relative;
    background-size: cover;
}

#since .intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#since .intro .inleft {
    display: flex;
    flex-direction: column;
}

#since .intro .inleft {
    margin-right: 8rem;
}



#since .intro .inright {
    flex-shrink: 0;
}

#since .intro .inleft h5 {
    color: #fff;
    font-size: 2.125rem;
    line-height: 3rem;
    margin: 1rem 0 2rem;
}

#since .intro .inleft p {
    color: #fff;
    font-size: .9375rem;
    line-height: 1.75rem;
}



.zscon {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    top: 0;
    z-index: 10;
    padding: 0 8rem;
    display: flex;
    flex-direction: column;
    transition: all .5s;
}
.zstit h4 {
    color: #fff;
    font-weight: bold;
    font-size: 2.1875rem;
    margin: 1.25rem 0 1.5rem;
}

.zscon p {
    font-size: 1rem;
    line-height: 2rem;
    color: #fff;
}

.zstit svg {
    width: 3.75rem;
    height: 3.75rem;
}

.tit {
    text-align: center;
}

.tit h5 {
    color: #060606;
    font-size: 2.375rem;
    line-height: 3.5rem;
    font-weight: bold;
}

.tit p {
    color: #464646;
    font-size: 1.0625rem;
    line-height: 3.5rem;

}



/* 我们优势 */

#ouradv {
    width: 100%;
    position: relative;
    background: url(../images/wavebg.jpg)no-repeat;
    background-size: cover;
}

#ouradv .dashed {
    background: url(../images/dashed.png)no-repeat;
    width: 31.0625rem;
    height: 31.0625rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
}


#ouradv .soild {
    width: 28.5625rem;
    height: 28.5625rem;
    border-radius: 50%;
    border: 2px solid #9eb3fb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#ouradv .soild::before {
    content: '';
    position: absolute;
    width: 343px;
    height: 330px;
    background: url(../images/binzhou.png)no-repeat;
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

@keyframes spins {

    from {

        transform: rotateZ(0deg);

    }

    to {

        transform: rotateZ(360deg);

    }

}

#ouradv .soild .adv1,
#ouradv .soild .adv2,
#ouradv .soild .adv3,
#ouradv .soild .adv4 {
    width: 4.6875rem;
    height: 4.6875rem;
    border-radius: 50%;
    background: url(../images/advico.png)no-repeat;
    background-size: cover;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ouradv .soild .adv1 {
    left: 0%;
    top: 10%;
}

#ouradv .soild .adv2 {
    right: 0%;
    top: 10%;
}

#ouradv .soild .adv3 {
    left: 0%;
    bottom: 10%;
}

#ouradv .soild .adv4 {
    right: 0%;
    bottom: 10%;
}

#ouradv .dashed h6 {
    color: #2858f4;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    height: 48px;
    width: 204px;
}

#ouradv .dashed .msk p {
    color: #616161;
    font-size: 1rem;
    line-height: 1.625rem;
}

#ouradv .dashed .advs1,
#ouradv .dashed .advs2,
#ouradv .dashed .advs3,
#ouradv .dashed .advs4 {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 20rem;

}

#ouradv .dashed .advs1 {
    left: 0%;
    top: 10%;
}

#ouradv .dashed .advs2 {
    right: 0%;
    top: 10%;
}

#ouradv .dashed .advs3 {
    left: 0%;
    bottom: 10%;
}

#ouradv .dashed .advs4 {
    right: 0%;
    bottom: 10%;
}

#ouradv .dashed .advs1 h6,
#ouradv .dashed .advs3 h6 {
    background: url(../images/lefth6.png)no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3rem;
}

#ouradv .dashed .advs2 h6,
#ouradv .dashed .advs4 h6 {
    background: url(../images/righth6.png)no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 3rem;
}

#ouradv .dashed .advs1,
#ouradv .dashed .advs3 {
    text-align: right;
    align-items: flex-end;
}

#ouradv .dashed .advs2,
#ouradv .dashed .advs4 {
    text-align: left;
}

#ouradv .dashed .advs1 {
    left: -22rem;
    top: 12%;
}

#ouradv .dashed .advs2 {
    right: -22rem;
    top: 12%;
}

#ouradv .dashed .advs3 {
    left: -22rem;
    bottom: 2%;
}

#ouradv .dashed .advs4 {
    right: -22rem;
    bottom: 2%;
}


#ouradv .soild #adv {
    border-radius: 50%;
    width: 16.5625rem;
    height: 16.5625rem;
}


/**
波浪*/
@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}

.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
}

.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.wave {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveMiddle,
.waveMiddles {
    background-size: 50% 100px;
}

.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}

.waveAnimation .waveMiddles {
    animation: move_wave 15s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
}

.waveAnimation .waveBottom {
    animation: move_wave 20s linear infinite;
}



/* 成功案例 */

#success ul , #n_success ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

#success ul li a ,
#n_success ul a{
    position: relative;
    display: block;
}

#success ul li a .yincang ,
#n_success ul li a .yincang {
    opacity: 0;
    position: absolute;
    transition: all .5s;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    padding: 0 1.5rem;
}

#success ul li:hover a .yincang ,
#n_success ul li:hover a .yincang {
    opacity: 1;
}

#success ul li a .yincang p ,
#n_success ul li a .yincang p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.875rem;
    margin-bottom: 1rem;
}

#success .lj,
#inset .lj ,
#new .lj {
    justify-content: center;
}


/* 安装实景 */

#inset {
    position: relative;
    width: 100%;
    background: #eeeff1;
}

#anz .swiper-slide {
    display: flex;
    flex-direction: column;
}

#anz .swiper-slide .img {
    margin-bottom: 1.25rem;
    border-radius: 10px;
    position: relative;
}

#anz .swiper-slide .img:last-child {
    margin-bottom: 0;
}

#anz .swiper-slide:nth-child(even) {
    padding-top: 3.75rem;
}

#anz img {
    display: block;

}

#anz .img:hover img {
    transform: scale(1.1) rotate(.1deg);
    -webkit-transform: scale(1.1) rotate(.1deg);
    -moz-transform: scale(1.1) rotate(.1deg);
    -ms-transform: scale(1.1) rotate(.1deg);
    -o-transform: scale(1.1) rotate(.1deg);
}

#anz p {
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 1.0625rem;
    text-align: center;
    width: 100%;
    line-height: 6rem;
    height: 5rem;
    background: -webkit-linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, .9) 100%);
}

/* 服务流程 */

#service {
    width: 100%;
    position: relative;
    background-color: #1f1f1f;
    background-size: cover;
}


#service .tit h5,
#service .tit p {
    color: #fff;
}

.liucheng {
    position: relative;
    height: 500px;
}

.liucheng ul {
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.liucheng ul li:nth-child(odd) .num {
    background: url(../images/shangy.png)no-repeat;
    background-size: cover;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: -2px;
}

.liucheng ul li:nth-child(even) .num {
    background: url(../images/xiay.png)no-repeat;
    background-size: cover;
    justify-content: center;
    margin-top: -2px;
}

.liucheng .num {
    width: 190px;
    height: 95px;
    display: flex;
    color: #fff;
    font-weight: bold;
    font-family: Barlow Condensed;
    font-size: 1.75rem;
    position: relative;
}

.liucheng i {
    display: block;
    background: url(../images/lines.png)center no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 133px;
    margin: auto;
    position: relative;
    z-index: 10;
}

.liucheng ul li:nth-child(odd) i {
    margin-bottom: 1.25rem;
    margin-top: 1rem;
}

.liucheng ul li:nth-child(even) i {
    transform: rotate(180deg);
    margin-top: 2.75rem;
}

.liucheng .lines {
    position: absolute;
    top: 45%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .7);
}

.liucheng .lcms {
    text-align: center;
}

.liucheng .lcms h5 {
    color: #ffffff;
    font-size: 1.375rem;
    line-height: 1.5;
}

.liucheng .lcms p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap
}
.liucheng .numbg {
    height: 200px;
    display: flex;
    position: relative;

    overflow: hidden;
}
.liucheng ul li:nth-child(odd) .numbg {
    margin-bottom: 1rem;
    justify-content: center;
    align-items: flex-end;
}
.liucheng ul li:nth-child(even) .numbg {
    margin-top: 2.25rem;
    justify-content: center;
}

.liucheng ul li:nth-child(odd)  .num span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 105px 105px 0 0;
    border: 2px solid rgba(112, 139, 238, .75);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-animation: circleScale 4s linear infinite;
    -moz-animation: circleScale 4s linear infinite;
    -ms-animation: circleScale 4s linear infinite;
    animation: circleScale 4s linear infinite;
}
.liucheng ul li:nth-child(even)  .num span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 105px 105px;
    border: 2px solid rgba(112, 139, 238, .75);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-animation: circleScale 4s linear infinite;
    -moz-animation: circleScale 4s linear infinite;
    -ms-animation: circleScale 4s linear infinite;
    animation: circleScale 4s linear infinite;
}

.liucheng ul li:nth-child(odd) span:nth-of-type(2) ,
.liucheng ul li:nth-child(even) span:nth-of-type(2) {
    animation-delay: 1s;
}

.liucheng ul li:nth-child(odd) span:nth-of-type(3) ,
.liucheng ul li:nth-child(even) span:nth-of-type(3) {
    animation-delay: 2s;
}


@keyframes circleScale {

    0% {

        opacity: 1;

        transform: scale(1);

        -webkit-transform: scale(1);

        -moz-transform: scale(1);

        -ms-transform: scale(1);



    }



    100% {

        opacity: 0;

        -webkit-transform: scale(1.6);

        -moz-transform: scale(1.6);

        -ms-transform: scale(1.6);

        transform: scale(1.6);

    }

}



/* 新闻动态 */

#new {
    background: #eeeff1;
}

#newdt .newcon {
    padding-right: 1rem;
    padding-top: 1.875rem;
}
#newdt img {
    display: block;
    height: 230px;
}
#newdt h5 {
    color: #3c3c3c;
    font-size: 1.125rem;
    line-height: 1.5rem;

}

#newdt p {
    color: #969696;
    font-size: 13px;
    line-height: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: .5rem 0;
}

#newdt .newcon span {
    color: #828282;
    font-size: 13px;
    line-height: 1.875rem;
}


#new .swiper-button-next,
#new .swiper-button-prev {
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 50%;
    border: 2px solid #c9c9ca;
    transition: all .5s;
    top: 55%;
}

#new .swiper-button-white svg path {
    fill: fill="#989898";
    transition: all .5s;
}

#new .swiper-button-white:hover svg path {
    fill: #093e96;
}
#new .swiper-button-white:hover {
    border: 2px solid #093e96;
}




#foot {
    background: #093e96;
}

#foot .boxs .m{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
#foot .boxs {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
#foot .boxs .navs ul {
    width: 650px;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
#foot .boxs .navs ul li a {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.25rem;
    position: relative;
    padding-bottom: .5rem;
}
#foot .boxs .navs ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    transition: all .8s;
    background: #fff;
}
#foot .boxs .navs ul li a:hover::before {
    width: 100%;
}


#foot .boxsle>p {
    color: #eeeff1;
    font-size: .9375rem;
    line-height: 2rem;
    display: flex;
    align-items: center;
}

#foot .boxsle>p a {
    color: rgba(255, 255, 255, .43);
    color: .9375rem;
    line-height: 1.5rem;
    display: flex;
    align-items: center;

}

#foot .boxsle>p a svg {
    margin: 0 8px 0 12px;
}

#foot .boxsri {
    display: flex;

}
#foot .boxsri img {
    width: 121px;
    height: 121px;
}
#foot .boxsri  .zix {
    margin-right: 25px;
}

#foot .boxsri  .zix a svg path {
    fill: #093e96;
    transition: all .5s;
}

#foot .boxsri  .zix a  {
    width: 7.8125rem;
    height: 2.5rem;
    border-radius: 20px;
    margin-left: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #093e96;
    font-size: .9375rem;
    line-height: 1.25rem;
    gap: 5px;
    margin-bottom: 2rem;
    transition: all .5s;
    border: 2px solid transparent;
}
#foot .boxsri  .zix a:hover {
    color: #fff;
    background: #093e96;
    border: 2px solid #fff;
}
#foot .boxsri  .zix a:hover svg path {
    fill: #fff;
}
#foot .boxsri  .zix P {
    text-align: right;
    color: #fff;
}


.copyright {
    font-size: .875rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.25rem;
    text-align: center;
    padding: 1.5rem 0;
}

.copyright a {
    transition: all .5s;
}
.copyright a:hover {
    color: #fff;
}


#n_banner {
    height: 410px;
    text-align: center;
}

.zidh {
    height: 4.0625rem;
}
.zidh.hui {
    border-bottom: 1px solid #dddde1;
}

.zidh .m {
    align-items: center;
}
.zidh.wu .m {
    justify-content: flex-end;
}
.zidh.hui .m {
    justify-content: space-between;
}

.zidh ul li {
    width: 12.5rem;
    text-align: center;
    border: 1px solid #dddde1;
    border-bottom: none;
}
.zidh ul li+li {
    border-left: 0;
}
.zidh ul li:last-child {
    border-left: 0;
}
.zidh ul li a {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #3b3b3b;
    z-index: 10;
    font-size: 1rem;
    line-height: 1.1875rem;
    transition: all .5s;
}

.zidh ul li a:after {
    bottom: 0;
    content: '';
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    display: block;
    width: 0;
    height: 101%;
    position: absolute;
    z-index: -1;
    background: #255db2;
}

.zidh ul li:hover a:after, .zidh ul li.on a::after {
    opacity: 1;
    visibility: visible;
    width: 102%;
}

.fx {
    display: flex;
}
.zifz {
    height: 100%;
}

.position .last-a {
    color: #4c4d4e;
}

.zidh ul li.on a , .zidh ul li:hover a  {
    color: #fff;
}
.position a img {
    margin-bottom: 2px;
}

.byc {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
.bycs.on {
    width: calc(100% - 800px);
    flex-shrink: 0;
}
.bycs {
    overflow: hidden;
    flex-grow: 1;
    position: relative;
}
/* .bycs .nr ,  .bycs.on .bt {
  display: none;
}
.bycs.on .nr {
  display: block;
} */
.bycs::before {
    content: "";
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    height: 100%;
    opacity: 0;
    transition: all .8s;
}
.bycs.on::before {
    opacity: 1;
}
.bycs>.zstit {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    line-height: 1.5rem;
    font-size: 1.375rem;
    transition: all .5s;
}
.bycs .zs_tit p {
    margin-top: 1.5rem;
    font-size: 1.375rem;
    line-height: 1.5rem;
    height: 3rem;
}
.bycs {
    transition: .7s;
    width: 375px;
    height: 100%;
}

.bycs + .bycs {
    margin-left: 10px;
}

.bycs > .bl {
    height: 845px;
    background-position: center center !important;
    background-size: cover !important;
}

.bycs.on>.zstit {
    opacity: 0;
    transition: all .5s;
}

#since .bycs.on .zscon {
    position: relative;
    opacity: 1;
    visibility: visible
}