img {
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -o-crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.html {
    height: 100vh;
    overflow: hidden;
}

@keyframes fadeInup {
    0% {
        transform: translateY(0.5rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInupBig {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleBox {
    0% {
        transform: scale(1);
        opacity: .5;
    }

    100% {
        transform: scale(6);
        opacity: 0;
    }
}

@keyframes scaleBoxBig {
    0% {
        transform: scale(1);
        opacity: .5;
    }

    100% {
        transform: scale(10);
        opacity: 0;
    }
}

@keyframes pathLeft {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes pathRight {
    0% {
        clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 0);
    }

    100% {
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
    }
}

.w1720 {
    width: 90%;
    max-width: 1720px;
    margin: 0 auto;
}

.w1640 {
    width: 85.4%;
    max-width: 1640px;
    margin: 0 auto;
}

.w1450 {
    width: 75%;
    max-width: 1450px;
    margin: 0 auto;
}

:root {
    --pubCol: #00447d;
}

.font-60 {
    font-size: 1.5rem;
    line-height: 1.2;
}

.font-48 {
    font-size: 1.2rem;
    line-height: 1.2;
}

.font-36 {
    font-size: 0.9rem;
    line-height: 1.2;
}

.font-32 {
    font-size: 0.8rem;
    line-height: 1.2;
}

.pub-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in;
}

.pub-btn::before,
.pub-btn::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    transform: skew(15deg);
    transition: all 0.5s;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}

.pub-btn::before {
    left: -4%;
}

.pub-btn::after {
    right: -4%;
}

.pub-btn:hover::before,
.pub-btn:hover::after {
    width: 58%;
}

.pub-btn:hover span {
    color: #00447d;
    transition: 0.3s;
}

.pub-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in;
}

.pub-point {
    position: relative;
}

.pub-point:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform-origin: center center;
    transform: scale(0);
}

.pub-svg {
    overflow: hidden;
    position: relative;
}

.pub-svg .text {
    margin-right: 6px;
}

.pub-svg span {
    transition: 200ms;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.pub-svg svg {
    position: relative;
    top: 0;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #fff;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.pub-svg::after {
    content: "";
    background: #0069c1;
    position: absolute;
    z-index: 1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

/*.pub-svg:hover span {
  color: #00447d;
}

.pub-svg:hover svg {
  stroke: #00447d;
}*/

.pub-svg:hover::after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.banner .crumb {
    height: 2rem;
    background-color: #fff;
    padding: 0 calc(50vw - 810px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E7E7E7;
}

@media (max-width: 1700px) {
    .banner .crumb {
        padding: 0 6%;
    }
}

.banner .crumb a {
    color: #000000;
    line-height: 1.2;
    padding-right: .6rem;
    margin-right: .6rem;
    position: relative;
    transition: all .6s;
    text-transform:capitalize;
}

.banner .crumb a::after {
    content: '>';
    position: absolute;
    font-size: 16px;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
}

.banner .crumb a:last-child {
    margin-right: 0;
    padding-right: 0;
    color: #00447d;
}

.banner .crumb a:hover {
    color: #023867;
}

.banner .crumb a:last-child::after {
    display: none;
}

.search-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    z-index: 101;
    transform: translateY(-100%);
    height: 2.1rem;
}

.search-dialog .bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* border-radius: 100%; */
    /* transform: scale(0); */
    transform-origin: center;
    background-color: #fff;
}

.search-dialog .form-box {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.search-dialog .form-box form {
    width: 47%;
    height: 1.2rem;
    padding: 0 .6rem;
    display: flex;
    align-items: center;
    border: 1px solid #999999;
    margin-right: .9rem;
    border-radius: 1.2rem;
    /* transform: translateX(-.5rem); */
    /* opacity: 0; */
}

.search-dialog .form-box form input[type=submit] {
    width: .6rem;
    height: .6rem;
    margin-right: .7rem;
    background-image: url(../image/23.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

.search-dialog .form-box form input[type=text] {
    width: calc(100% - 2rem);
    height: 100%;
    background: none;
    color: #999999;
    font-size: .4rem;
}

.search-dialog .form-box form input[type=text]::placeholder {
    color: #999999;
}

.search-dialog .form-box .close {
    width: .75rem;
    cursor: pointer;
    /* transform: translateX(.5rem); */
    /* opacity: 0; */
}

.search-dialog .form-box .close img {
    width: 100%;
}

.search-dialog.search-dialog-slide {
    transform: translateY(0);
}

.search-dialog.search-dialog-slide .bg {
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}


/* .search-dialog.search-dialog-slide .form-box form {
  transform: translateX(0);
  opacity: 1;
  transition: transform .8s .8s ease-in-out;
}

.search-dialog.search-dialog-slide .form-box .close {
  transform: translateX(0);
  opacity: 1;
  transition: transform .8s 2s ease-in-out;
} */

.sec-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, .96);
    width: calc(100% + 4rem);
    height: auto;
    /*min-width: max-content;*/
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    text-align: center;
}


.sec-nav>a {
    display: inline-block;
    line-height: 1.5rem;
    margin-right: 1.5rem;
    /* padding: 10px .5rem; */
    /* line-height: 1.2; */
    color: #000;
    transition: all .3s;
}

.sec-nav2 {
    padding: .5rem 0;
    width: 220px;
    margin-left: -110px;
    left: 50%;
}

.sec-nav2 a {
    padding: .5rem 0;
    line-height: 1.5rem;
    margin-right: 0;
    padding: 10px 0.5rem;
    line-height: 1.2;
    display: block;
    color: #000;
}

.sec-nav>a:last-child {
    margin-right: 0;
}

.sec-nav>a:hover {
    /* background-color: #00447d; */
    color: #00447d;
}
.sec-nav2 a:hover {
    /* background-color: #00447d; */
    color: #00447d;
}

.sec-nav.pro-sec-nav {
    /*height: 10rem;*/
    /*width: calc(100% + 4rem);*/
    width:100%;
    max-height: 60vh;
    overflow-y:auto;
}

.sec-nav.pro-sec-nav.yyind {
    height: auto;
}

.sec-nav.pro-sec-nav .wrap {
    /*width: calc(100% - 11.2rem);*/
    margin: 0 auto;
    height: 100%;
    align-items: stretch;
    padding: 1.25rem 0 1rem;
    /*background-color:rgba(255,255,255,.9);*/

}

.sec-nav.pro-sec-nav .wrap .li2 {
    width: 23%;
    padding: 1rem .35rem 1rem .75rem;
    text-align: left;
    border-right: 1px solid #eaeaea;
}

.sec-nav.pro-sec-nav .wrap .li2 a {
    color: #000;
    margin-bottom: .35rem;
    line-height: 1.2;
    width: 100%;
    display: block;
    transition: all .4s;
}

.sec-nav.pro-sec-nav .wrap .item {
    width: 18%;
    margin-right: 2.5%;
}

.sec-nav.pro-sec-nav .wrap .item:nth-child(5n) {
    margin-right: 0;
}

.sec-nav.pro-sec-nav .wrap .item .tit3 {
    padding-bottom: .3rem;
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: .3rem;

    overflow: hidden;
    display: block;
    text-align: left;
}

.sec-nav.pro-sec-nav .wrap .item .tit3 span {
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    display: inline-block;
}

.sec-nav.pro-sec-nav .wrap .nitem {
    margin-bottom: .35rem;
}

.sec-nav.pro-sec-nav .wrap .nitem .tit4 {
    margin-bottom: .3rem;
    display: block;
    text-align: left;
}

.sec-nav.pro-sec-nav .wrap .nitem .tit5 {
    margin-bottom: .3rem;
    display: block;
    text-align: left;
}

.sec-nav.pro-sec-nav .wrap .li3 a:hover,
.sec-nav.pro-sec-nav .wrap .li3 a.cur,
.sec-nav.pro-sec-nav .wrap .li4 a:hover,
.sec-nav.pro-sec-nav .wrap .li4 a.cur {
    color: #0569bd;
}

.sec-nav.pro-sec-nav .wrap .li5 a:hover,
.sec-nav.pro-sec-nav .wrap .li5 a.cur {
    color: #000;
    text-decoration: underline;
}

.sec-nav.pro-sec-nav .wrap .li4 a,
.sec-nav.pro-sec-nav .wrap .li5 a {
    color: #333;
}

.sec-nav.pro-sec-nav .wrap .li2:nth-child(3) {
    border-right: none;
}

.sec-nav.pro-sec-nav .wrap .li5 {
    width: 24%;
}

.sec-nav.pro-sec-nav .wrap .li6 {
    width: 30%;
    padding: .5rem;
}

.sec-nav.pro-sec-nav .wrap .li6 .img {
    border-radius: .55rem;
    overflow: hidden;
}

.sec-nav.pro-sec-nav .wrap .li6 p {
    width: 100%;
    text-align: center;
    margin-top: .25rem;
}

.sec-nav.pro-sec-nav .wrap .list {
    width: calc(25% - 1.2rem);
    margin-right: 1.5rem;
}

.sec-nav.pro-sec-nav .wrap .list:last-child {
    margin-right: 0;
}

.sec-nav.pro-sec-nav .wrap .list .nav-tit {
    display: block;
    color: #000000;
    padding-bottom: .35rem;
    line-height: 1.2;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: .5rem;
}

.sec-nav.pro-sec-nav2 .wrap {
    /*width: calc(100% - 11.2rem);*/
    margin: 0 auto;
    padding: 1.25rem 0;
    /*background-color:rgba(255,255,255,.9);*/

}
.sec-nav.pro-sec-nav2 .wrap .list {
    /*width: calc(25% - 1.2rem);*/
    width:auto;
    margin-right:5rem;
}
.sec-nav.pro-sec-nav3 .wrap .list {
    margin-right:3.5rem;
}

/*.sec-nav.pro-sec-nav2 .wrap .list:nth-child(4n) {
  margin-right: 0;
}*/

.sec-nav.pro-sec-nav2 .wrap .list .nav-tit {
    display: block;
    color: #000000;
    padding-bottom: .35rem;
    line-height: 1.2;
    /*margin-bottom: .5rem;*/
}

.sec-nav.pro-sec-nav2 .wrap .list .a-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 6.8rem;
    padding: 0 .5rem;
}

.sec-nav.pro-sec-nav2 .wrap .list a:hover {
    color: #00447d;
}


.sec-nav.pro-sec-nav .wrap .list .a-inner a {
    display: block;
    color: #999;
    line-height: 1.2;
    margin-bottom: .5rem;
    margin-right: 1.25rem;
    text-align: left;
    transition: all .3s;
}

.sec-nav.pro-sec-nav .wrap .list .a-inner a:nth-child(n + 8) {
    margin-right: 0;
}

.sec-nav.pro-sec-nav .wrap .list .a-inner a:hover {
    color: #00447d;
}

.all-container {
    transform: translateY(-10%);
    transition: all 1s ease-in-out;
}

.all-containerStart {
    transform: translateY(0);
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    overflow: hidden;
    transition: all .8s ease-in-out;
}

.loading .progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 11px;
    z-index: 3;
}

.loading .progress .progress-bar {
    width: 0;
    height: 100%;
    background-color: #017ee6;
    transition: all .3s;
}

.loading .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
}

.loading .content .intro {
    width: 100%;
    margin: 0 auto 1.25rem;
}

.loading .content .intro div {
    width: 44%;
    margin: 0 auto 0.8rem;
}

.loading .content .intro p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    letter-spacing: 0.7rem;
    /* margin-right: -0.7rem; */
    width: max-content;
    margin: 0 auto;
}

.loading .content .percent {
    position: relative;
    margin: auto;
    width: max-content;
    text-align: center;
}

.loading .content .percent p {
    color: #fff;
}

.loading .content .percent span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 3px 0 #017ee6;
    -webkit-animation: move 1s infinite linear;
    animation: move 1s infinite linear;
}

.loading .ball {
    position: absolute;
    width: 41%;
    left: 50%;
    bottom: -40%;
    transform: translateX(-50%);
}

.loadEnd {
    transform: translateY(100%);
}

@-webkit-keyframes move {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes move {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.head-box {
    width: 100%;
    position: fixed;
    left: 0;
    z-index: 100;
    transition: all .3s;
}

.head-box-top {
    z-index: 101;
}

.head {
    width: 100%;
    /* padding-top: 1rem; */
    position: relative;
    transition: all .3s;
}

.pc-head {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    /* padding-right: 2.7rem; */
    height: 2.1rem;
}

.head-nav-box {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /*margin-right: 4.75rem;*/
    margin-right: 3.25rem;
}

.logo a {
    width: 155px;
    height: 35px;
    /* background-color: #00447d; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a svg {
    width: 155px;
    height: 35px;
}

.logo a img {
    width: 80%;
}

.pc-menu {
    width: 2.1rem;
    height: 2.1rem;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pc-menu div {
    width: 0.75rem;
    height: 1px;
    background-color: #fff;
    margin-bottom: 6px;
    transition: all 0.3s;
}

.pc-menu div:last-child {
    margin-bottom: 0;
}

.pc-menu:hover div:nth-child(2) {
    width: 0.6rem;
}

.pc-menu:hover div:nth-child(3) {
    width: 0.45rem;
}

.head-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-ls {
    height: 100%;
    line-height: 2.1rem;
    margin-right: 1.2rem;
    transition: all 0.3s;
}


/* .nav-ls:not(:first-child) {
  position: relative;
} */

.nav-ls:last-child {
    margin-right: 0;
}

.nav-ls>a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 2.1rem;
    color: #fff;
    position: relative;
    transition: all .3s;
}

.nav-ls:hover>a {
    color: #00447d;
}

.nav-ls.cur>a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: 0;
    transition: all .3s;
}

.head-rg {
    height: 100%;
}

.head-search {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100%;
    width: max-content;
    transition: all .3s;
}

.head-search p {
    color: #fff;
    transition: all .3s;
}

.head-search div {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
}

.head-search div img {
    width: 15px;
    height: 15px;
}

.head-search:hover {
    transform: translateY(-10px);
}

.pos-nav-box {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: -1rem;
    left: 0;
}

.pos-nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    background-color: #fff;
}

.pos-nav .lf {
    width: 31.25%;
    height: 100vh;
    background-color: #f7f7f7;
    padding: 1.5rem 2.7rem 1.5rem 1.5rem;
    position: relative;
}

.pos-nav .lf .close {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #313131;
    border-radius: 50%;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 1s;
    position: relative;
}

.pos-nav .lf .close img {
    position: relative;
    z-index: 2;
}

.pos-nav .lf .close:before {
    background-color: #00447d;
    transition: all 0.5s;
}

.pos-nav .lf .close:hover:before {
    transform: scale(1);
}

.pos-nav .lf .home {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #00447d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 1s 0.3s;
}

.pos-nav .lf .home img {
    position: relative;
    z-index: 2;
}

.pos-nav .lf .home:before {
    background-color: #313131;
    transition: all 0.5s;
}

.pos-nav .lf .home:hover:before {
    transform: scale(1);
}

.pos-nav .lf .intro {
    font-weight: bold;
    color: #999999;
    line-height: 1.3;
    margin-bottom: 1.1rem;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 1s 0.6s;
}

.pos-nav .lf .intro span {
    color: #333333;
}

.pos-nav .lf .nav {
    transform: translateY(1rem);
    opacity: 0;
    transition: all 1s 0.9s;
}

.pos-nav .lf .nav a {
    display: block;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    transition: all 0.3s;
}

.pos-nav .lf .nav a:hover {
    transform: translateX(10px);
}

.pos-nav .lf .btm {
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
}

.pos-nav .lf .btm a {
    display: block;
    color: #999999;
}

.pos-nav .lf .btm a:not(:last-child) {
    margin-bottom: 0.45rem;
}

.pos-nav .rg {
    width: 68.75%;
    background-color: #00447d;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 18vh 7vw 0 7vw;
}

.pos-nav .rg .li:nth-child(0) {
    transition: all 1s 0s;
}

.pos-nav .rg .li:nth-child(1) {
    transition: all 1s 0.3s;
}

.pos-nav .rg .li:nth-child(2) {
    transition: all 1s 0.6s;
}

.pos-nav .rg .li:nth-child(3) {
    transition: all 1s 0.9s;
}

.pos-nav .rg .li:nth-child(4) {
    transition: all 1s 1.2s;
}

.pos-nav .rg .li:nth-child(5) {
    transition: all 1s 1.5s;
}

.pos-nav .rg .li:nth-child(6) {
    transition: all 1s 1.8s;
}

.pos-nav .rg .li:nth-child(7) {
    transition: all 1s 2.1s;
}

.pos-nav .rg .li:nth-child(8) {
    transition: all 1s 2.4s;
}

.pos-nav .rg .li {
    width: 25%;
    margin-bottom: 6vh;
    transform: translateY(1rem);
    opacity: 0;
}

.pos-nav .rg .li a {
    display: block;
    color: #4378a5;
    line-height: 1.2;
    transition: all 0.3s;
}

.pos-nav .rg .li a:not(:last-child) {
    margin-bottom: 0.35rem;
}

.pos-nav .rg .li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.pos-nav .rg .li a:first-child {
    color: #fff;
    margin-bottom: 0.9rem;
}

.Up-box .pos-nav .lf .close,
.Up-box .pos-nav .lf .home,
.Up-box .pos-nav .lf .intro,
.Up-box .pos-nav .lf .nav {
    transform: translateY(0);
    opacity: 1;
}

.Up-box .pos-nav .rg .li {
    transform: translateY(0);
    opacity: 1;
}

#all-container {
    height: 100vh;
}

#all-pagination {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    right: 2.75rem;
    top: auto;
    transform: translate(0, 0);
    bottom: 2.1rem;
    width: 0.85rem;
    overflow: initial;
}

#all-pagination .swiper-pagination-bullet {
    width: 0.35rem;
    height: 2px;
    border-radius: 0;
    background-color: #fff;
    transition: all 0.3s;
}

#all-pagination .swiper-pagination-bullet span {
    display: block;
    width: max-content;
    height: max-content;
    position: absolute;
    color: #fff;
    right: calc(100% + .25rem);
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    line-height: 1.2;
    opacity: 0;
    transition: all .3s;
}

#all-pagination .swiper-pagination-bullet-active {
    width: 0.85rem;
}

#all-pagination .swiper-pagination-bullet-active span {
    opacity: 1;
}

#all-container .ban-container {
    height: 100vh;
}

#all-container .ban-container .swiper-slide {
    height: 100%;
}

#all-container .ban-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#all-container .ban-container .swiper-slide .ban-font {
    position: absolute;
    top: 30%;
    left: 7.3%;
}

#all-container .ban-container .swiper-slide .ban-font .h1 {
    font-size: 1.65rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.55rem;
}

#all-container .ban-container .swiper-slide .ban-font .h2 {
    line-height: 1.4;
    color: #f0f0f0;
    margin-bottom: 1.3rem;
}

#all-container .ban-container .swiper-slide .ban-font .more {
    display: block;
    width: 4.25rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    background-color: #00447d;
    border-radius: 0.55rem;
    color: #fff;
}

#all-container .ban-container .swiper-pagination {
    text-align: left;
    padding-left: calc(50vw - 810px);
    line-height: 1.2;
    bottom: 1.5rem;
}

#all-container .ban-container .swiper-pagination .swiper-pagination-bullet {
    height: 3px;
    width: 1rem;
    margin-right: 6px;
    margin-left: 0;
    background-color: #fff;
    opacity: .35;
    border-radius: 0;
}

#all-container .ban-container .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #fff;
}

@media (max-width: 1700px) {
    #all-container .ban-container .swiper-pagination {
        padding-left: 6%;
    }
}

.scrolldown {
    --color: #fff;
    --sizeX: 0.55rem;
    --sizeY: 0.85rem;
    position: relative;
    width: var(--sizeX);
    height: var(--sizeY);
    margin-left: var(sizeX/2);
    border: calc(var(--sizeX) / 10) solid var(--color);
    border-radius: 1.25rem;
    box-sizing: border-box;
    cursor: pointer;
}

.scrolldown::before {
    content: '';
    position: absolute;
    bottom: .35rem;
    left: 50%;
    width: .1rem;
    height: .1rem;
    margin-left: -2px;
    background-color: var(--color);
    border-radius: 100%;
    animation: scrolldown-anim 2s infinite;
    box-sizing: border-box;
    box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
    0% {
        opacity: 0;
        height: .1rem;
    }

    40% {
        opacity: 1;
        height: .25rem;
    }

    80% {
        transform: translate(0, 0.5rem);
        height: .25rem;
        opacity: 0;
    }

    100% {
        height: 3px;
        opacity: 0;
    }
}

.chevrons {
    padding: 6px 0 0 0;
    margin-left: -2px;
    margin-top: 1rem;
    width: .55rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chevrondown {
    margin-top: -6px;
    position: relative;
    border: solid var(--color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    width: .25rem;
    height: .25rem;
    transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
    animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
    animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

.side-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 1.9rem;
    height: 100vh;
    background-color: rgba(1, 0, 7, 0.5);
    backdrop-filter: blur(1%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 0 0 2.75rem;
}

.side-bar .lan {
    height: 2.1rem;
    line-height: 2.1rem;
    color: #fff;
}

.side-bar .share {
    display: flex;
    flex-direction: column;
}

.side-bar .share a {
    width: 0.6rem;
    display: flex;
    align-items: center;
    border: none;
    font-size: 0;
    border-radius: 0;
    height: .6rem;
    margin: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.side-bar .share a:not(:last-child) {
    margin-bottom: 0.85rem;
}


/* .side-bar .share a:nth-child(1) {
  background: url(../img/9.png) no-repeat center;
}

.side-bar .share a:nth-child(2) {
  background: url(../img/10.png) no-repeat center;
}

.side-bar .share a:nth-child(3) {
  background: url(../img/11.png) no-repeat center;
} */

.side-bar .social-share .icon-wechat .wechat-qrcode {
    top: 50%;
    transform: translateY(-50%);
    left: calc(-.5rem - 200px);
}

.side-bar .social-share .icon-wechat .wechat-qrcode:after {
    left: 100%;
    margin-left: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border-color: transparent transparent transparent #fff;
}

.side-bar .share a img {
    max-width: 100%;
}

.side-bar .share a:hover {
    background-color: transparent;
}

.pubSwiper {
    height: 100vh;
    position: relative;
}

.pubSwiper>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scend>img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.scend>img:first-child {
    display: block;
}

.pubSwiper .container {
    position: absolute;
    top: 0;
    left: 7.3%;
    height: 100%;
}

.first .container {
    padding-top: 26vh;
}

.first .container .tit {
    color: #fff;
    margin-bottom: .6rem;
}

.first .container .cont {
    color: #fff;
    line-height: 1.8;
    width: 34%;
    margin-bottom: 2.05rem;
}

.first .container .num {
    width: 34%;
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 0 0;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 1.75rem;
}

.first .container .num .li {
    width: 33.3%;
    margin-bottom: 1rem;
}

.first .container .num .li .intro {
    color: #fff;
    line-height: 1.2;
    margin-bottom: .3rem;
}

.first .container .num .li .wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.first .container .num .li .wrap span {
    color: #fff;
    font-weight: bold;
    margin-right: 1px;
}

.first .container .num .li .wrap p {
    color: #fff;
    line-height: 1.2;
}

.first .container .more {
    width: 4.15rem;
    height: 1.1rem;
    border-radius: 0.55rem;
    line-height: 1.1rem;
    text-align: center;
    background-color: #00447d;
    display: block;
    color: #fff;
    border: 1px solid #fff;
}

.first .container .more span {
    margin-right: .25rem;
}

.scend .container {
    padding-top: 30vh;
}

.scend .container .wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 60%;
}

.scend .container .wrap .lf {
    width: 36%;
    min-width: max-content;
}

.scend .container .wrap .lf .tit {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.8rem;
}

.scend .container .wrap .lf .tab span {
    display: block;
    line-height: 1.2;
    color: #fff;
    opacity: .5;
    font-size: .75rem;
    cursor: pointer;
    transition: all .3s;
}

.scend .container .wrap .lf .tab span:not(:last-child) {
    margin-bottom: 0.75rem;
}

.scend .container .wrap .lf .tab span:hover,
.scend .container .wrap .lf .tab span.cur {
    opacity: 1;
    font-weight: bold;
}

.scend .container .wrap .rg {
    width: 64%;
}

.scend .container .wrap .rg .change {
    padding-right: 1.6rem;
    padding-top: .1rem;
    animation: fadeInup 1s ease-in-out forwards;
}

.scend .container .wrap .rg .change .cont {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.6rem;
}

.scend .container .wrap .rg .change .more {
    display: block;
    width: 3.4rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    border-radius: .55rem;
    background-color: #00447d;
    color: #fff;
}

.scend .container .wrap .rg .change .more span {
    margin-right: .2rem;
}

.scend .container .tab-li {
    position: absolute;
    bottom: 1.7rem;
    left: 50%;
    width: 15.5rem;
    height: 2.2rem;
    transform: translateX(-50%);
}

.scend .container .tab-li>img {
    position: absolute;
    width: 13.5rem;
    height: 0.85rem;
    left: 50%;
    top: .25rem;
    transform: translateX(-50%);
}

.scend .container .tab-li .li-box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.scend .container .tab-li .li {
    width: max-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.scend .container .tab-li .li:hover div,
.scend .container .tab-li .li.cur div {
    transform: scale(1);
    margin: 0;
}

.scend .container .tab-li .li:hover div img,
.scend .container .tab-li .li.cur div img {
    transform: scale(1);
}

.scend .container .tab-li .li:hover p,
.scend .container .tab-li .li.cur p {
    opacity: 1;
}

.scend .container .tab-li .li div {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.2);
    transition: all .5s;
}

.scend .container .tab-li .li div img {
    max-width: 90%;
    max-height: 90%;
    object-fit: cover;
    transform: scale(0);
    transition: all .5s .3s;
}

.scend .container .tab-li .li p {
    color: #fff;
    line-height: 1.2;
    opacity: .5;
    transition: all .5s;
}

.scend .container .tab-li .li:nth-child(2) div {
    margin-top: .2rem;
}

.scend .container .tab-li .li:nth-child(3) div {
    margin-top: -.05rem;
}

.scend .container .tab-li .li:nth-child(4) div {
    margin-top: .25rem;
}

.third .container {
    padding-top: 3.5rem;
}

.third .container .top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: .4rem;
}

.third .container .top .intro {
    width: 50%;
    padding-top: 2rem;
}

.third .container .top .intro p {
    color: #000000;
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.third .container .top .intro a {
    display: block;
    color: #fff;
    width: 3.4rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    border-radius: .55rem;
    background-color: #00447d;
}

.third .container .top .intro a:hover {
    border: 1px solid #00447d;
}

.third .container .top .pic {
    position: relative;
    width: calc(50% - .5rem);
    height: 9.25rem;
    /* padding-left: .5rem; */
    overflow: hidden;
}

.third .container .top .pic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1;
}

.third .container .top .pic img {
    width: 100%;
    transition: all .3s;
}

.third .container .top .pic .pos-text {
    position: absolute;
    top: .75rem;
    left: 1.5rem;
    width: calc(100% - 2.4rem);
    z-index: 2;
}

.third .container .top .pic .pos-text p {
    color: #fff;
    margin-bottom: .4rem;
    line-height: 1.2;
}

.third .container .top .pic .pos-text div {
    color: #fff;
    font-size: .8rem;
    line-height: 1.5;
    font-weight: bold;
}

.third .container .top .pic:hover img {
    transform: scale(1.1);
}

.third .container .btm .tab {
    position: relative;
    margin-bottom: 1.05rem;
}

.third .container .btm .tab::after {
    content: '';
    position: absolute;
    width: 112.5%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    right: -1.6rem;
    bottom: 0;
}

.third .container .btm .tab span {
    color: #000;
    display: inline-block;
    padding: 0 4px .5rem;
    position: relative;
    cursor: pointer;
    transition: all .3s;
}

.third .container .btm .tab span:not(:last-child) {
    margin-right: .7rem;
}

.third .container .btm .tab span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    background-color: #00447d;
    bottom: 0;
    left: 0;
    transform-origin: left;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.third .container .btm .tab span.cur,
.third .container .btm .tab span:hover {
    font-weight: bold;
}

.third .container .btm .tab span.cur::after,
.third .container .btm .tab span:hover::after {
    width: 100%;
    transform-origin: right;
}

.third .container .btm .wrap .swiper-container.cur {
    animation: fadeInup 1s ease-in-out forwards;
}

.third .container .btm .wrap .swiper-container .swiper-pagination {
    display: none;
}

.third .container .btm .wrap .swiper-container .swiper-slide {
    width: 23.5%;
    height: 7rem;
    background-color: #f6f6f8;
}

.third .container .btm .wrap .swiper-container .swiper-slide:not(:last-child) {
    margin-right: 2%;
}

.third .container .btm .wrap .swiper-container .swiper-slide .img-box {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    overflow: hidden;
    clip-path: circle(0 at 50% 50%);
    transition: all .5s ease-out;
}

.third .container .btm .wrap .swiper-container .swiper-slide .img-box::after {
    content: '';
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.third .container .btm .wrap .swiper-container .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 1.2rem 1rem .5rem 0.65rem;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con .time {
    color: #333;
    margin-bottom: 1.3rem;
    line-height: 1.2;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con .time span {
    display: inline-block;
    line-height: 1.2;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con .time span:not(:last-child) {
    margin-right: .4rem;
    padding-right: .4rem;
    border-right: 1px solid #fff;
}

.third .container .btm .wrap .swiper-container .swiper-slide .pos-con .cont {
    color: #333;
    line-height: 1rem;
    max-height: 2rem;
    overflow: hidden;
}

.third .container .btm .wrap .swiper-container .swiper-slide:hover .img-box {
    clip-path: circle(100% at 50% 50%);
}

.third .container .btm .wrap .swiper-container .swiper-slide:hover .pos-con .time,
.third .container .btm .wrap .swiper-container .swiper-slide:hover .pos-con .cont {
    color: #fff;
}

.fouth {
    height: auto;
}

.foot {
    background-color: #f1f1f1;
    padding: 2rem 0 1rem;
}

.footer {
    width: 86%;
    margin-left: 7%;
}

.footer .f-top {
    padding-bottom: .95rem;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 1rem;
}

.footer .f-nav {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 2.7rem;
}

.footer .f-nav .lf {
    width: max-content;
}

.footer .f-nav .lf .f-logo {
    width: 5.35rem;
    margin-bottom: .5rem;
}

.footer .f-nav .lf .f-share {
    display: flex;
    margin-bottom: .8rem;
}

.footer .f-nav .lf .f-share a {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 0;
    margin: 0;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer .f-nav .lf .f-share a>img {
    max-width: 50%;
    max-height: 50%;
}

.footer .f-nav .lf .f-share a:not(:last-child) {
    margin-right: .35rem;
}


/* .footer .f-nav .lf .f-share a:nth-child(1) {
  background-image: url(../img/19.png);
}

.footer .f-nav .lf .f-share a:nth-child(2) {
  background-image: url(../img/20.png);
}

.footer .f-nav .lf .f-share a:nth-child(3) {
  background-image: url(../img/21.png);
} */

.footer .f-nav .lf .f-share a:hover {
    background-color: #00447D;
}

.footer .f-nav .lf .f-contact p {
    line-height: 1.2;
}

.footer .f-nav .lf .f-contact .tel {
    color: #222;
    margin-bottom: .25rem;
}

.footer .f-nav .lf .f-contact .phone {
    color: #00447d;
}

.footer .f-nav .rg {
    display: flex;
    max-width: calc(100% - 240px);
}

.footer .f-nav .rg .li:not(:last-child) {
    margin-right: 2rem;
}

.footer .f-nav .rg .li a {
    display: block;
    line-height: 1.2;
    color: #777;
    margin-bottom: .25rem;
    transition: all .3s;
}

.footer .f-nav .rg .li a:first-child {
    color: #333333;
    margin-bottom: .75rem;
    font-weight: bold;
}

.footer .f-nav .rg .li a:hover {
    color: #00447d;
}

.footer .cp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dfdfdf;
    padding-top: .55rem;
}

.footer .cp .net a {
    color: #666;
    line-height: 1.2;
    display: inline-block;
}

.footer .cp .net a img {
    display: inline-block;
}

.footer .cp .privacy a {
    display: inline-block;
    line-height: 1.2;
    color: #666;
    margin-right: .5rem;
}

.footer .cp .privacy a:last-child {
    margin-right: 0;
}

.ban-container .swiper-slide img {
    width: 100%;
    height: auto;
    min-height: 100%;
    transition: 1s linear 1s;
    transform: scale(1, 1);
}

.ban-container .swiper-slide-active img {
    transition: 5s linear;
    transform: scale(1.1, 1.1);
}

.ban-container .swiper-slide .h1 {
    opacity: 0;
    transform: translateY(1rem);
    transition: .5s linear;
}

.ban-container .swiper-slide-active .h1 {
    animation: fadeInupBig 1s ease-in-out forwards;
}

.ban-container .swiper-slide .h2 {
    opacity: 0;
}

.ban-container .swiper-slide-active .h2 {
    animation: fadeInupBig 1s .2s ease-in-out forwards;
}

.ban-container .swiper-slide .more {
    opacity: 0;
}

.ban-container .swiper-slide-active .more {
    animation: fadeInupBig 1s .4s ease-in-out forwards;
}

.all-container .swiper-slide .first .tit {
    opacity: 0;
}

.all-container .ani-slide .first .tit {
    animation: fadeInup 1s ease-in-out forwards;
}

.all-container .swiper-slide .first .cont {
    opacity: 0;
}

.all-container .ani-slide .first .cont {
    animation: fadeInup 1s .2s ease-in-out forwards;
}

.all-container .swiper-slide .first .num {
    opacity: 0;
}

.all-container .ani-slide .first .num {
    animation: fadeInup 1s .4s ease-in-out forwards;
}

.all-container .swiper-slide .first .more {
    opacity: 0;
}

.all-container .ani-slide .first .more {
    animation: fadeInup 1s .6s ease-in-out forwards;
}

.all-container .swiper-slide .scend .tit {
    opacity: 0;
}

.all-container .ani-slide .scend .tit {
    animation: fadeInup 1s ease-in-out forwards;
}

.all-container .swiper-slide .scend .tab {
    opacity: 0;
}

.all-container .ani-slide .scend .tab {
    animation: fadeInup 1s .2s ease-in-out forwards;
}

.all-container .swiper-slide .scend .rg {
    opacity: 0;
}

.all-container .ani-slide .scend .rg {
    animation: fadeInup 1s .3s ease-in-out forwards;
}

.all-container .swiper-slide .third .top .intro p {
    opacity: 0;
}

.all-container .ani-slide .third .top .intro p {
    animation: fadeInup 1s .1s ease-in-out forwards;
}

.all-container .swiper-slide .third .top .intro a {
    opacity: 0;
}

.all-container .ani-slide .third .top .intro a {
    animation: fadeInup 1s .3s ease-in-out forwards;
}

.all-container .swiper-slide .third .top .pic {
    opacity: 0;
}

.all-container .ani-slide .third .top .pic {
    animation: fadeInup 1s .4s ease-in-out forwards;
}

.all-container .swiper-slide .third .btm .tab {
    opacity: 0;
}

.all-container .ani-slide .third .btm .tab {
    animation: fadeInup 1s .6s ease-in-out forwards;
}

.all-container .swiper-slide .third .btm .wrap {
    opacity: 0;
}

.all-container .ani-slide .third .btm .wrap {
    animation: fadeInup 1s .8s ease-in-out forwards;
}

.product {
    padding: 1rem 0 2.55rem;
    background-color: #F1F1F1;
}

.product .top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .8rem;
}

.product .top-wrap .tit {
    color: #000000;
    line-height: 1.2;
    padding: 0 1rem;
}

.product .top-wrap .search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .6rem;
    height: 1.3rem;
    border-radius: .7rem;
    background-color: #fff;
}

.product .top-wrap .search input {
    background: none;
    width: calc(100% - 1rem);
    height: 100%;
    color: #666;
}

.product .top-wrap .search input::placeholder {
    color: #BDBDBD;
}

.product .top-wrap .search div {
    width: .6rem;
    cursor: pointer;
}

.product .top-wrap .search div img {
    width: 100%;
}

.product .cont-wrap {
    display: flex;
}

.product .cont-wrap .lf-side-box {
    width: 16.5%;
    margin-right: 1.5%;
}

.product .cont-wrap .lf-side {
    width: 100%;
}

.product .cont-wrap .lf-side .fis-li {
    margin-bottom: .35rem;
}

.product .cont-wrap .lf-side .fis-li:last-child {
    margin-bottom: 0;
}

.product .cont-wrap .lf-side .fis-li .clk-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .4rem .6rem .4rem .4rem;
    /*height: 1.05rem;*/
    line-height: 1.2;
    background-color: #f6f6f6;
    transition: all .3s;
    cursor: pointer;
}

.product .cont-wrap .lf-side .fis-li .clk-tit .icon {
    display: flex;
    align-items: center;
}

.product .cont-wrap .lf-side .fis-li .clk-tit .icon div {
    width: .4rem;
    margin-right: .3rem;
    position: relative;
    transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .clk-tit .icon div img {
    max-width: 100%;
    margin: 0 auto;
}

.product .cont-wrap .lf-side .fis-li .clk-tit .icon p {
    color: #000000;
    line-height: 1.2;
    transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .clk-tit span {
    line-height: 1.2;
    color: #000000;
    font-size: 16px;
    transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .clk-tit.cur span {
    transform: rotate(90deg);
}

.product .cont-wrap .lf-side .fis-li .clk-tit:hover,
.product .cont-wrap .lf-side .fis-li .clk-tit.cur {
    background-color: #00447d;
}

.product .cont-wrap .lf-side .fis-li .clk-tit:hover .icon .normal-block,
.product .cont-wrap .lf-side .fis-li .clk-tit.cur .icon .normal-block {
    opacity: 0;
}

.product .cont-wrap .lf-side .fis-li .clk-tit:hover .icon .hover-block,
.product .cont-wrap .lf-side .fis-li .clk-tit.cur .icon .hover-block {
    opacity: 1;
}

.product .cont-wrap .lf-side .fis-li .clk-tit:hover .icon p,
.product .cont-wrap .lf-side .fis-li .clk-tit.cur .icon p {
    color: #fff;
}

.product .cont-wrap .lf-side .fis-li .clk-tit:hover span,
.product .cont-wrap .lf-side .fis-li .clk-tit.cur span {
    color: #fff;
}

.product .cont-wrap .lf-side .fis-li .slide-cont {
    padding: .75rem .65rem .75rem 1rem;
    background-color: #F6F6F6;
    display: none;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li {
    margin-bottom: .75rem;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li:last-child {
    margin-bottom: 0;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit p {
    color: #020202;
    line-height: 1.2;
    transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11px;
    height: 11px;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit div span {
    width: 11px;
    height: 1px;
    background-color: #020202;
    transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit div span:nth-child(2) {
    position: absolute;
    width: 1px;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit.cur>p {
    color: #00447d;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit.cur div span:nth-child(2) {
    height: 0;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit:hover p {
    color: #00447d;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide {
    padding: .45rem .5rem;
    display: none;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide a {
    display: block;
    line-height: 1.2;
    margin-bottom: .4rem;
    color: #555555;
    cursor: pointer;
    transition: all .3s;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide a:last-child {
    margin-bottom: 0;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide a.cur,
.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide a:hover {
    color: #00447d;
}

.product .cont-wrap .rg-box {
    width: 82%;
    font-size: .8rem;
    color: #333;
}

.product .cont-wrap .rg-box .li-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.product .cont-wrap .rg-box .li-box .li {
    width: 24%;
    margin-right: 1.33%;
    margin-bottom: .55rem;
    position: relative;
}

.product .cont-wrap .rg-box .li-box .li:nth-child(4n) {
    margin-right: 0;
}

.product .cont-wrap .rg-box .li-box .li .pic {
    width: 100%;
    height: 7.5rem;
    background-color: #fff;
    overflow: hidden;
}

.product .cont-wrap .rg-box .li-box .li .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(.8);
    transition: all .3s;
}

.product .cont-wrap .rg-box .li-box .li .intro {
    width: 100%;
    height: 2.8rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.product .cont-wrap .rg-box .li-box .li .intro p {
    line-height: 1.2;
}

.product .cont-wrap .rg-box .li-box .li .intro .h1 {
    color: #010101;
    margin-bottom: 18px;
    width: 100%;
    padding: 0 .5rem;
    line-height: 1.2;
    text-align: center;
}

.product .cont-wrap .rg-box .li-box .li .intro .h2 {
    color: #707070;
    text-align: center;
    padding: 0 .4rem;
    line-height: 1.2;
}

.product .cont-wrap .rg-box .li-box .li .pos-more {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s;
}

.product .cont-wrap .rg-box .li-box .li .pos-more div {
    width: 3.4rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    border: 2px solid #F2F2F2;
    border-radius: .55rem;
    color: #fff;
}

.product .cont-wrap .rg-box .li-box .li:hover .pos-more {
    opacity: 1;
}

.product .cont-wrap .rg-box .li-box.dataBox .intro {
    height: 3rem;
    background-color: #F6F6F6;
    display: block;
    padding: .45rem .5rem;
}

.product .cont-wrap .rg-box .li-box.dataBox .intro .h1 {
    padding-bottom: .25rem;
    border-bottom: 1px solid #BCBCBC;
    margin-bottom: .3rem;
}

.product .cont-wrap .rg-box .li-box.dataBox .intro .h2 {
    position: relative;
    padding-left: .4rem;
    color: #666;
    font-size: 12px;
    text-align: left;
}

.product .cont-wrap .rg-box .li-box.dataBox .intro .h2::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #00447d;
}

.product .cont-wrap .rg-box .li-box.dataBox .pos-more {
    display: none;
}

.product .cont-wrap .rg-box .li-box.dataBox .li:hover .pic img {
    transform: scale(1.1);
}

.pub-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pub-page div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pub-page a {
    min-width: 1.05rem;
    height: 1.05rem;
    line-height:calc(1.05rem - 2px);
    text-align: center;
    border: 1px solid #AFAFAF;
    color: #656565;
    margin-right: 6px;
    transition: all .3s;
    border-radius: 50%;
}

.pub-page a:last-child {
    margin-right: 0;
}

.pub-page a.active,
.pub-page a:hover {
    background-color: #00447d;
    border-color: #00447d;
    color: #fff;
}

.pro-info {
    padding: 2.25rem 0 1.75rem;
}

.pro-info .wrap .pro-show {
    display: flex;
    align-items: center;
    margin-bottom: 1.3rem;
}

.pro-info .wrap .pro-show .lf {
    width: 50%;
    border: 1px solid rgba(0, 0, 0, .1);
}

.pro-info .wrap .pro-show .lf img {
    width: 100%;
}

.pro-info .wrap .pro-show .rg {
    width: 50%;
    padding-left: 1.3rem;
    padding-top: 0;
}

.pro-info .wrap .pro-show .rg .h1 {
    color: #00447d;
    line-height: 1.2;
    font-size: .7rem;
    margin-bottom: .3rem;
}

.pro-info .wrap .pro-show .rg .h2 {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: .2rem;
}

.pro-info .wrap .pro-show .rg .h3 {
    color: #707070;
    line-height: 2;
    /* margin-bottom: 1.05rem; */
}

.pro-info .wrap .pro-show .rg .info-container {
    width: 14.5rem;
    margin: 0;
}

.pro-info .wrap .pro-show .rg .info-container .swiper-slide {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: .5rem;
    cursor: pointer;
}

.pro-info .wrap .pro-show .rg .info-container .swiper-slide:last-child {
    margin-right: 0;
}

.pro-info .wrap .pro-show .rg .info-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-info .wrap .pro-show .rg .info-container .swiper-slide.cur {
    border: 1px solid #00447d;
}

.pro-info .wrap .info-vid {
    width: 100%;
    position: relative;
    margin-bottom: 1.75rem;
}

.pro-info .wrap .info-vid .pc-img {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    z-index: 2;
}

.pro-info .wrap .info-vid img,
.pro-info .wrap .info-vid video {
    width: 100%;
}

.pro-info .wrap .info-vid .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    cursor: pointer;
    z-index: 3;
}

.pro-info .wrap .info-vid .play div {
    width: .9rem;
    margin: 0 auto .45rem;
}

.pro-info .wrap .info-vid .play p {
    line-height: 1.2;
    text-align: center;
    color: #fff;
}

.pro-info .wrap .info-core {
    width: 89%;
    margin: 0 auto .3rem;
}

.pro-info .wrap .info-core .tit {
    color: #00447d;
    line-height: 1.2;
    font-size: .8rem;
    text-align: center;
    margin-bottom: 2.35rem;
}

.pro-info .wrap .info-core .li-box {
    display: flex;
    flex-wrap: wrap;
}

.pro-info .wrap .info-core .li-box .li {
    width: 33.33%;
    height: 3.5rem;
    border-right: 2px solid rgba(8, 90, 182, 0.1);
    margin-bottom: 2.25rem;
    text-align: center;
    padding-top: .45rem;
}

.pro-info .wrap .info-core .li-box .li:nth-child(3n) {
    border-right: none;
}

.pro-info .wrap .info-core .li-box .li .h1 {
    line-height: 1.2;
    color: #00447d;
    margin-bottom: .3rem;
}

.pro-info .wrap .info-core .li-box .li .h1 span {
    display: inline-block;
    line-height: 1.2;
}

.pro-info .wrap .info-core .li-box .li .h1 .fonb {
    font-size: 1.2rem;
    font-weight: bold;
}

.pro-info .wrap .info-core .li-box .li .h1 .fonl {
    font-size: .6rem;
}

.pro-info .wrap .info-core .li-box .li .h2 {
    color: #707070;
    line-height: 1.6;
}

.pro-info .wrap .tech-para {
    border-top: 1px solid #E2E2E2;
    padding: 2.5rem 0 2rem;
}

.pro-info .wrap .tech-para .tit {
    text-align: center;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.pro-info .wrap .tech-para .box {
    display: flex;
    flex-wrap: wrap;
}

.pro-info .wrap .tech-para .box .li-wrap {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: .5rem;
}

.pro-info .wrap .tech-para .box .li-wrap:nth-child(2) {
    margin-right: 0;
}

.pro-info .wrap .tech-para .box .li-wrap .intro {
    width: 100%;
    height: 1.15rem;
    line-height: 1.15rem;
    background-color: #E8E8E8;
    padding-left: 1.5rem;
    color: #000000;
}

.pro-info .wrap .tech-para .box .li-wrap .list p {
    width: 100%;
    padding-left: 1.5rem;
    color: #666;
    display: flex;
    align-items: stretch;
    background-color: #fff;
}

.pro-info .wrap .tech-para .box .li-wrap .list p span {
    display: inline-flex;
    align-items: center;
    min-height: 1.15rem;
    line-height: 1.2;
    width: 50%;
    /* height: 100%; */
    padding: 5px 0;
}

.pro-info .wrap .tech-para .box .li-wrap .list p:nth-child(2n) {
    background-color: #F7F7F7;
}

.pro-info .wrap .about-down {
    border-top: 1px solid #E2E2E2;
    padding: 2.5rem 0 1.75rem;
}

.pro-info .wrap .about-down .tit {
    color: #000000;
    font-size: .8rem;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.pro-info .wrap .about-down .li-box {
    display: flex;
    flex-wrap: wrap;
}

.pro-info .wrap .about-down .li-box .li {
    width: 49%;
    height: 1.75rem;
    margin-right: 2%;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .75rem 0 .95rem;
    background-color: #F0F0F0;
    transition: all .3s;
}

.pro-info .wrap .about-down .li-box .li:nth-child(2n) {
    margin-right: 0;
}

.pro-info .wrap .about-down .li-box .li .cont {
    width: 80%;
    color: #000000;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s;
}

.pro-info .wrap .about-down .li-box .li .icon {
    display: flex;
    align-items: center;
}

.pro-info .wrap .about-down .li-box .li .icon p {
    color: #000000;
    line-height: 1.2;
    margin-right: .2rem;
    transition: all .3s;
}

.pro-info .wrap .about-down .li-box .li .icon div {
    position: relative;
    width: 16px;
}

.pro-info .wrap .about-down .li-box .li .icon div img {
    width: 100%;
}

.pro-info .wrap .about-down .li-box .li:hover {
    background-color: #00447d;
}

.pro-info .wrap .about-down .li-box .li:hover .cont {
    color: #fff;
}

.pro-info .wrap .about-down .li-box .li:hover .icon p {
    color: #fff;
}

.pro-info .wrap .about-down .li-box .li:hover .icon .normal-block {
    opacity: 0;
}

.pro-info .wrap .about-down .li-box .li:hover .icon .hover-block {
    opacity: 1;
}

.plan {
    padding: 2.5rem 0;
}

.plan .tit {
    color: #000000;
    margin-bottom: 1.75rem;
    text-align: center;
}

.plan .wrap .li {
    overflow: hidden;
    margin-bottom: 1.8rem;
    /*display: block;*/
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
}

.plan .wrap .li:nth-child(even) {
    flex-flow: row-reverse wrap;
}

.plan .wrap .li:last-child {
    margin-bottom: 0;
}

.plan .wrap .li .lf {
    width: 40%;
    float: left;
    /*padding-top: 3rem;*/
    /*padding-top:1.5rem;*/
    padding-right: 3rem;
}

.plan .wrap .li .lf .h1 {
    color: #000000;
    font-size: .8rem;
    line-height: 1.4;
    margin-bottom: 1.05rem;
}

.plan .wrap .li .lf .cont {
    color: #000000;
    line-height: 2;
    margin-bottom: .75rem;
}

.plan .wrap .li .lf .intro a {
    display: block;
    padding-left: .5rem;
    position: relative;
    line-height: 1.2;
    color: #000;
    margin-bottom: .5rem;
    transition: all .3s;
}

.plan .wrap .li .lf .intro a:last-child {
    margin-bottom: .5rem;
}

.plan .wrap .li .lf .intro a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
    transition: all .3s;
}

.plan .wrap .li .lf .intro a:hover {
    color: #00447d;
    text-decoration: underline;
}

.plan .wrap .li .lf .intro a:hover::after {
    background-color: #00447d;
}

.plan .wrap .li .rg {
    width: 60%;
    float: right;
    border-radius: 1rem;
    overflow: hidden;
}


.plan .wrap .li .rg img {
    width: 100%;
}

.plan .wrap .li:nth-child(2n) .lf {
    float: right;
    padding-left: 2.25rem;
    padding-right: 0;
}

.plan-info {
    padding: 2.5rem 0 2.3rem;
}

.plan-info .overview {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.plan-info .overview .lf {
    width: 100%;
    margin-bottom: 1.5rem;
}

.plan-info .overview .lf .h1 {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: .55rem;
    text-align: center;
}

.plan-info .overview .lf .cont {
    width: 70%;
    color: #707070;
    line-height: 2;
    margin: 0 auto 1.25rem;
}

.plan-info .overview .lf .play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 1.1rem;
    background-color: #00447d;
    box-shadow: 18px 18px 51px 0px rgba(46, 115, 184, 0.05);
    border-radius: .55rem;
    cursor: pointer;
    margin: 0 auto;
}

.plan-info .overview .lf .play span {
    color: #fff;
    margin-right: .25rem;
    transition: all .3s;
}

.plan-info .overview .lf .play div {
    position: relative;
    z-index: 2;
    width: .35rem;
    font-size: .4rem;
    color: #fff;
    transition: all .3s;
}

.plan-info .overview .lf .play div img {
    width: 100%;
}

.plan-info .overview .lf .play:hover {
    border: 1px solid #00447d;
}

.plan-info .overview .lf .play:hover span {
    color: #00447d;
}

.plan-info .overview .lf .play:hover div {
    color: #00447d;
}

.plan-info .overview .rg {
    width: 75%;
}

.plan-info .overview .rg img {
    width: 100%;
}

.plan-info .overview .rg .swiper-pagination {
    position: relative;
    line-height: 1.2;
    margin-top: 1.25rem;
}

.plan-info .overview .rg .swiper-pagination .swiper-pagination-bullet-active {
    background: #00447d;
}

.plan-info .advance {
    background-color: #F8F8F8;
    padding: 2.25rem 0 3rem;
    margin-bottom: 0;
}

.plan-info .advance .tit {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.plan-info .advance .li-box {
    /* display: flex;
align-items: stretch;
justify-content: center; */
}

.plan-info .advance .li-box .swiper-pagination {
    position: relative;
    line-height: 1.2;
    margin-top: .75rem;
}

.plan-info .advance .li-box .swiper-pagination.swiper-pagination-lock {
    display: block;
    opacity: 0;
}

.plan-info .advance .li-box .swiper-pagination .swiper-pagination-bullet-active {
    background: #00447d;
}

.plan-info .advance .li-box .swiper-wrapper {
    align-items: stretch;
}

.plan-info .advance .li-box .li {
    width: 25%;
    height: auto;
    padding-left: .7rem;
    padding-right: 1.5rem;
    border-left: 1px solid #DBDBDB;
    padding-bottom: 6px;
    position: relative;
}

.plan-info .advance .li-box .li::after {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 1px;
    height: .45rem;
    background-color: #00447d;
}

.plan-info .advance .li-box .li .num {
    display: flex;
    align-items: center;
    margin-bottom: .4rem;
}

.plan-info .advance .li-box .li .num span {
    line-height: 1.2;
    color: #282828;
    font-size: .7rem;
    font-weight: 500;
    margin-right: .2rem;
}

.plan-info .advance .li-box .li .num p {
    color: #282828;
    font-size: .6rem;
    line-height: 1.2;
}

.plan-info .advance .li-box .li .cont {
    color: #797979;
    line-height: 1.6;
}

.plan-info .app-area {
    padding: 2.5rem 0;
}

.plan-info .app-area .tit {
    color: #000000;
    font-size: .8rem;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.75rem;
}

.plan-info .app-area .appArea-container .swiper-button-prev,
.plan-info .app-area .appArea-container .swiper-button-next {
    width: 1.1rem;
    height: 1.1rem;
    background-color: #fff;
    border-radius: 50%;
    color: #00447d;
    transition: all .3s;
}

.plan-info .app-area .appArea-container .swiper-button-prev::after,
.plan-info .app-area .appArea-container .swiper-button-next::after {
    font-size: .4rem;
}

.plan-info .app-area .appArea-container .swiper-button-prev:hover,
.plan-info .app-area .appArea-container .swiper-button-next:hover {
    background-color: #00447d;
    color: #fff;
}

.plan-info .app-area .appArea-container .swiper-button-prev {
    left: 0;
}

.plan-info .app-area .appArea-container .swiper-button-next {
    right: 0;
}

.plan-info .app-area .appArea-container .swiper-pagination {
    position: relative;
    line-height: 1.2;
    margin-top: 1rem;
    display: none;
}

.plan-info .app-area .appArea-container .swiper-slide {
    width: 32%;
    background-color: #F8F8F8;
    margin-right: 2%;
}

.plan-info .app-area .appArea-container .swiper-slide:last-child {
    margin-right: 0;
}

.plan-info .app-area .appArea-container .swiper-slide .pic {
    width: 100%;
    height: 7.5rem;
    overflow: hidden;
}

.plan-info .app-area .appArea-container .swiper-slide .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.plan-info .app-area .appArea-container .swiper-slide .intro {
    width: 100%;
    padding: 1rem 1rem;
}

.plan-info .app-area .appArea-container .swiper-slide .intro .h1 {
    color: #000000;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-info .app-area .appArea-container .swiper-slide:hover .pic img {
    transform: scale(1.1);
}

.plan-info .hot-pro {
    padding: 2.5rem 0;
}

.plan-info .hot-pro .tit {
    color: #000000;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.plan-info .hot-pro .hotPro-container .swiper-button-prev,
.plan-info .hot-pro .hotPro-container .swiper-button-next {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #fff;
    border:1px solid #d1d1d1;
    border-radius: 50%;
    color: #00447d;
    transition: all .3s;

}

.plan-info .hot-pro .hotPro-container .swiper-button-prev::after,
.plan-info .hot-pro .hotPro-container .swiper-button-next::after {
    font-size: .4rem;
}

.plan-info .hot-pro .hotPro-container .swiper-button-prev:hover,
.plan-info .hot-pro .hotPro-container .swiper-button-next:hover {
    background-color: #00447d;
    color: #fff;
}

.plan-info .hot-pro .hotPro-container .swiper-button-prev {
    left: 0;
}

.plan-info .hot-pro .hotPro-container .swiper-button-next {
    right: 0;
}

.plan-info .hot-pro .hotPro-container .swiper-slide {
    width: 32%;
    background-color: #F8F8F8;
    margin-right: 2%;
}

.plan-info .hot-pro .hotPro-container .swiper-slide:last-child {
    margin-right: 0;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .pic {
    width: 100%;
    height: 7.5rem;
    overflow: hidden;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .pic img {
    max-width: 80%;
    max-height: 80%;
    /*object-fit: cover;*/
    transition: all .3s;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .intro {
    width: 100%;
    height: 3.9rem;
    padding: 1.1rem 1rem 0;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .intro .h1 {
    color: #000000;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .95rem;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .intro .h2 {
    display: flex;
    align-items: center;
    color: #000000;
    line-height: 1.2;
    transition: all .3s;
}

.plan-info .hot-pro .hotPro-container .swiper-slide .intro .h2 i {
    margin-left: 7px;
}

.plan-info .hot-pro .hotPro-container .swiper-slide:hover .pic img {
    transform: scale(1.1);
}

.plan-info .hot-pro .hotPro-container .swiper-slide:hover .intro .h2 {
    color: #00447d;
}

.plan-info .about-case .tit {
    color: #000000;
    line-height: 1.2;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.plan-info .about-case .li-box {
    display: flex;
}

.plan-info .about-case .li-box .li {
    width: 32%;
    margin-right: 2%;
    background-color: #F8F8F8;
    display: block;
}

.plan-info .about-case .li-box .li :last-child {
    margin-right: 0;
}

.plan-info .about-case .li-box .li .pic {
    width: 100%;
    height: 5rem;
    overflow: hidden;
}

.plan-info .about-case .li-box .li .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.plan-info .about-case .li-box .li .intro {
    padding: 1.5rem 1.7rem 0;
    height: 6.6rem;
}

.plan-info .about-case .li-box .li .intro .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .45rem;
}

.plan-info .about-case .li-box .li .intro .h2 {
    color: #000000;
    line-height: 22px;
    height: 44px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: .55rem;
}

.plan-info .about-case .li-box .li .intro .h3 {
    display: flex;
    align-items: center;
    color: #00447d;
    line-height: 1.2;
    transition: all .3s;
}

.plan-info .about-case .li-box .li .intro .h3 i {
    margin-left: 7px;
}

.plan-info .about-case .li-box .li:hover .pic img {
    transform: scale(1.1);
}

.cases {
    padding: 2.25rem 0 2.3rem;
}

.cases .wrap .top-screen {
    margin-bottom: 1.65rem;
    background-color: #F7F7F7;
    padding: 1.2rem 1rem;
    box-shadow: 0px -2px 0px 0px #00447d;
}

.cases .wrap .top-screen .li {
    display: flex;
    align-items: center;
    margin-bottom: .6rem;
}

.cases .wrap .top-screen .li:last-child {
    margin-bottom: 0;
}

.cases .wrap .top-screen .li p {
    color: #333333;
    line-height: 1.2;
    margin-right: .5rem;
    margin-bottom: .25rem;
}

.cases .wrap .top-screen .li a {
    min-width: 1.45rem;
    height: .9rem;
    line-height: .9rem;
    text-align: center;
    padding: 0 .3rem;
    margin-right: .5rem;
    color: #333333;
    border-radius: .9rem;
    margin-bottom: .25rem;
    cursor: pointer;
    transition: all .3s;
}

.cases .wrap .top-screen .li a:last-child {
    margin-right: 0;
}

.cases .wrap .top-screen .li a:hover,
.cases .wrap .top-screen .li a.cur {
    background-color: #00447d;
    color: #fff;
}

.cases .wrap .change-wrap .change-cont {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: .5rem;
    animation: fadeInup 1.5s forwards linear;
}

.cases .wrap .change-wrap .change-cont .li {
    width: 31%;
    margin-right: 3.5%;
    background-color: #F8F8F8;
    margin-bottom: 1.25rem;
}

.cases .wrap .change-wrap .change-cont .li:nth-child(3n) {
    margin-right: 0;
}

.cases .wrap .change-wrap .change-cont .li .intro {
    padding: 1.5rem 1.35rem 0;
    height: 6.1rem;
}

.cases .wrap .change-wrap .change-cont .li .intro .h1 {

    color: #000000;
    overflow: hidden;
    margin-bottom: .4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s;
}

.cases .wrap .change-wrap .change-cont .li .intro .cont {
    color: #000000;
    line-height: .8rem;
    height: 1.6rem;
    overflow: hidden;
    margin-bottom: .5rem;
}

.cases .wrap .change-wrap .change-cont .li .intro .h2 {
    display: flex;
    align-items: center;
    color: #909090;
    line-height: 1.2;
    transition: all .3s;
}

.cases .wrap .change-wrap .change-cont .li .intro .h2 i {
    margin-left: 8px;
}

.cases .wrap .change-wrap .change-cont .li .pic {
    width: 100%;
    height: 7.5rem;
    overflow: hidden;
}

.cases .wrap .change-wrap .change-cont .li .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.cases .wrap .change-wrap .change-cont .li:hover .intro .h1 {
    color: #00447d;
}

.cases .wrap .change-wrap .change-cont .li:hover .pic img {
    transform: scale(1.1);
}

.case-info {
    padding: 3rem 0 2.6rem;
}

.case-info .top {
    padding-bottom: 2.6rem;
}

.case-info .top .wrap {
    overflow: hidden;
}

.case-info .top .wrap .lf {
    float: left;
    /*width: 80%;*/
    width: 50%;
    /* padding-top: 3.25rem; */
    padding-right: 3.8rem;
    margin: 0 auto 1rem;
}

.case-info .top .wrap .lf .h1 {
    color: #00447d;
    font-size: .6rem;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.case-info .top .wrap .lf .h2 {
    color: #000000;
    font-size: .8rem;
    line-height: 1.2;
    margin-bottom: .8rem;
    font-weight:bold;
}

.case-info .top .wrap .lf .cont {
    color: #707070;
    line-height: 1.6;
    max-height: 10rem;
    padding-right: 10px;
    overflow-y: auto;
}

.case-info .top .wrap .rg {
    /* float: right; */
    width: 100%;
}

.case-info .top .wrap .rg .swiper-pagination-bullet-active {
    background: #00447d;
}

.case-info .top .wrap .rg img {
    width: 100%;
    border-radius: .65rem;
}


.case-info .btm {
    background-color: #F2F2F2;
    padding: 2.5rem 0;
}

.case-info .btm .wrap {
    overflow: hidden;
}

.case-info .btm .wrap .intro {
    width: 48%;
    float: right;
    padding-top: 1.25rem;
    padding-left: 3.65rem;
}

.case-info .btm .wrap .intro .h1 {
    color: #00447d;
    font-size: .6rem;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.case-info .btm .wrap .intro .h2 {
    color: #000000;
    font-size: .8rem;
    line-height: 1.2;
    margin-bottom: .8rem;
}

.case-info .btm .wrap .intro .cont {
    color: #707070;
    line-height: 2;
    max-height: 9rem;
    overflow-y: auto;
    padding-right: 10px;
}

.case-info .btm .wrap .pic {
    width: 52%;
    float: left;
}

.case-info .btm .wrap .pic img {
    width: 100%;
    border-radius: .65rem;
}

.case-info .hot-pro {
    padding: 2.55rem 0 0;
    /* background-color: #F2F2F2; */
}

.case-info .hot-pro .tit {
    color: #000000;
    font-size: .8rem;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.75rem;
}

.case-info .hot-pro .wrap {
    display: flex;
}

.case-info .hot-pro .wrap .li {
    width: 30%;
    margin-right: 5%;
    background-color: #F8F8F8;
}
.case-info .hot-pro .wrap .li{
    border-radius:.5rem;
}
.case-info .hot-pro .wrap .li:last-child {
    margin-right: 0;
}

.case-info .hot-pro .wrap .li .pic {
    width: 100%;
    height: 7.5rem;
    overflow: hidden;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.case-info .hot-pro .wrap .li .pic img {
    max-width: 90%;
    max-height: 90%;
    /*object-fit: cover;*/
    transition: all .3s;
}

.case-info .hot-pro .wrap .li .intro {
    width: 100%;
    height: 3.85rem;
    padding: 1.1rem 1rem 0;
}

.case-info .hot-pro .wrap .li .intro .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .9rem;
}

.case-info .hot-pro .wrap .li .intro .h2 {
    display: flex;
    align-items: center;
    color: #000;
    line-height: 1.2;
    transition: all .3s;
}

.case-info .hot-pro .wrap .li .intro .h2 i {
    margin-left: 4px;
}

.case-info .hot-pro .wrap .li:hover .pic img {
    transform: scale(1.1);
}

.case-info .hot-pro .wrap .li:hover .intro .h2 {
    color: #00447d;
}

.service {
    padding: 1.9rem 0 2.7rem;
}

.service .wrap .h1 {
    color: #000000;
    line-height: 1.3;
    text-align: center;
    margin-bottom: .55rem;
    font-size: 1.2rem;
}

.service .wrap .h2 {
    color: #00447d;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.85rem;
}

.service .wrap .li-box {
    display: flex;
}

.service .wrap .li-box .li {
    width: 28%;
    height: 10rem;
    margin-right: 8%;
    border: 1px solid #D6D6D6;
    padding: 1.4rem .75rem 0;
    position: relative;
    border-radius:.25rem;
}

.service .wrap .li-box .li:last-child {
    margin-right: 0;
}

.service .wrap .li-box .li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 7px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00447d;
    transition: all .3s;
}

.service .wrap .li-box .li .icon {
    width: 2.7rem;
    height: 2.7rem;
    margin: 0 auto .8rem;
}

.service .wrap .li-box .li .icon img {
    max-width: 100%;
    margin: 0 auto;
}

.service .wrap .li-box .li .line {
    width: .6rem;
    height: 2px;
    background-color: #00447d;
    margin: 0 auto 1rem;
}

.service .wrap .li-box .li .h1 {
    color: #000000;
    line-height: 1.2;
    font-size: .7rem;
    text-align: center;
    margin-bottom: .4rem;
    transition: all .3s;
}

.service .wrap .li-box .li .cont {
    color: #000000;
    line-height: 1.7;
    text-align: center;
}

.service .wrap .li-box .li:hover::after {
    width: 100%;
}

.service .wrap .li-box .li:hover .h1 {
    color: #00447d;
}

.domestic {
    position: relative;
}

.domestic img {
    width: 100%;
}

.domestic .intro {
    width: 33%;
    position: absolute;
    right: 2.5rem;
    top: 28.4%;
}

.domestic .intro .tit {
    margin-bottom: .8rem;
}

.domestic .intro .cont {
    color: #000000;
    line-height: 2;
}

.domestic .point {
    position: absolute;
    top: 76.1%;
    left: 33%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #06438D;
}

.domestic .point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .5;
    background-color: #06438D;
    transform-origin: center center;
    animation: scaleBox 5s 2.5s linear infinite;
}

.domestic .point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .5;
    background-color: #06438D;
    transform-origin: center center;
    animation: scaleBox 5s linear infinite;
}

.overseas {
    padding: 1.35rem 0 .85rem;
    border-bottom: 1px solid #D5D5D5;
}

.overseas .wrap {
    display: flex;
}

.overseas .wrap .lf {
    padding-top: 3.25rem;
    padding-right: 2.55rem;
    width: 42%;
}

.overseas .wrap .lf .tit {
    margin-bottom: 1.2rem;
}

.overseas .wrap .lf .cont {
    color: #333333;
    line-height: 1.8;
}

.overseas .wrap .rg {
    width: 58%;
    position: relative;
}

.overseas .wrap .rg img {
    width: 100%;
}

.overseas .wrap .rg .point {
    position: absolute;
    top: 43%;
    left: 41%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #06438D;
}

.overseas .wrap .rg .point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .5;
    background-color: #06438D;
    transform-origin: center center;
    animation: scaleBox 5s linear infinite;
}

.overseas .wrap .rg .point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .5;
    background-color: #06438D;
    transform-origin: center center;
    animation: scaleBox 5s 2.5s linear infinite;
}

.overseas .wrap .rg .line {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.overseas .wrap .rg .line img {
    width: 100%;
}

.overseas .wrap .rg .line1 {
    /* width: 6.7rem;
  right: 70%;
  bottom: 50%; */
    animation: pathRight 10s ease-in-out infinite;
}

.overseas .wrap .rg .line2 {
    /* width: 7.1rem;
  bottom: -1.2rem;
  right: 110%; */
    animation: pathRight 10s ease-in-out infinite;
}

.overseas .wrap .rg .line3 {
    /* width: 2.25rem;
  top: -.1rem;
  left: 15%; */
    animation: pathLeft 10s ease-in-out infinite;
}

.overseas .wrap .rg .line4 {
    /* width: 11.8rem;
left: 20%;
top: -1.1rem; */
    animation: pathLeft 10s ease-in-out infinite;
}

.warranty {
    padding: 1.75rem 0 2rem;
}

.warranty .tit {
    color: #333;
    font-size: .8rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 2.25rem;
}

.warranty .wrap .top-box {
    margin-bottom: .75rem;
}

.warranty .wrap .top-box .li {
    border-bottom: 1px solid #D5D5D5;
    padding-bottom: .8rem;
    margin-bottom: .75rem;
}

.warranty .wrap .top-box .li:last-child {
    margin-bottom: 0;
}

.warranty .wrap .top-box .li .top-clk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
}

.warranty .wrap .top-box .li .top-clk p {
    color: #000000;
    line-height: 1.2;
}

.warranty .wrap .top-box .li .top-clk div {
    position: relative;
    width: .65rem;
}

.warranty .wrap .top-box .li .top-clk div img {
    width: 100%;
}

.warranty .wrap .top-box .li .btm-cont {
    padding: .5rem 1rem;
    color: #999;
    line-height: 1.5;
    display: none;
}

.warranty .wrap .top-box .li.cur .top-clk div .normal-block {
    opacity: 0;
}

.warranty .wrap .top-box .li.cur .top-clk div .hover-block {
    opacity: 1;
}

.warranty .wrap .btm-box {
    display: flex;
}

.warranty .wrap .btm-box .list {
    width: 50%;
    padding-right: 4rem;
}

.warranty .wrap .btm-box .list>p {
    color: #666666;
    line-height: 1.2;
    margin-bottom: 6px;
}

.warranty .wrap .btm-box .list div {
    color: #666666;
    line-height: 2;
}

.investor {
    padding: 2.5rem 0 2.4rem;
}

.investor .wrap .top-wrap {
    display: flex;
    align-items: center;
    background-color: #F8F8F8;
    margin-bottom: 3rem;
}

.investor .wrap .top-wrap .lf {
    width: 58%;
}

.investor .wrap .top-wrap .lf img {
    width: 100%;
}

.investor .wrap .top-wrap .rg {
    width: 42%;
}

.investor .wrap .top-wrap .rg p {
    color: #000000;
    line-height: 1.2;
    font-size: .8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.investor .wrap .top-wrap .rg a {
    display: block;
    width: 4.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    background-color: #00447d;
    text-align: center;
    border-radius: .6rem;
    color: #fff;
    margin: 0 auto;
}

.investor .wrap .top-wrap .rg a:hover {
    border: 1px solid #00447d;
}

.investor .wrap .btm-wrap .tab {
    display: flex;
    padding-bottom: .9rem;
    border-bottom: 3px solid #EFEFEF;
    margin-bottom: 1rem;
}

.investor .wrap .btm-wrap .tab span {
    width: max-content;
    line-height: 1.2;
    margin-right: 1rem;
    cursor: pointer;
    transition: all .3s;
}

.investor .wrap .btm-wrap .tab span:last-child {
    margin-right: 0;
}

.investor .wrap .btm-wrap .tab span:hover,
.investor .wrap .btm-wrap .tab span.cur {
    color: #00447d;
}

.investor .wrap .btm-wrap .li-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.investor .wrap .btm-wrap .li-box .li {
    width: 49%;
    height: 1.75rem;
    margin-right: 2%;
    background-color: #F0F0F0;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .75rem;
    transition: all .3s;
}

.investor .wrap .btm-wrap .li-box .li:nth-child(2n) {
    margin-right: 0;
}

.investor .wrap .btm-wrap .li-box .li .tit {
    color: #000000;
    width: 80%;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s;
}

.investor .wrap .btm-wrap .li-box .li .cont {
    display: flex;
    align-items: center;
}

.investor .wrap .btm-wrap .li-box .li .cont span {
    color: #000000;
    line-height: 1.2;
    margin-right: .2rem;
    transition: all .3s;
}

.investor .wrap .btm-wrap .li-box .li .cont div {
    width: 16px;
    position: relative;
}

.investor .wrap .btm-wrap .li-box .li .cont div img {
    width: 100%;
}

.investor .wrap .btm-wrap .li-box .li:hover {
    background-color: #00447d;
}

.investor .wrap .btm-wrap .li-box .li:hover .tit {
    color: #fff;
}

.investor .wrap .btm-wrap .li-box .li:hover .cont span {
    color: #fff;
}

.investor .wrap .btm-wrap .li-box .li:hover .cont .normal-block {
    opacity: 0;
}

.investor .wrap .btm-wrap .li-box .li:hover .cont .hover-block {
    opacity: 1;
}

.contact {
    padding: 2.5rem 0 2.5rem;
}

.contact .tit {
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
}

.contact .wrap .top {
    border: 1px solid #D5D5D5;
    width: 100%;
    padding: 1.8rem 1rem;
    margin-bottom: 1.45rem;
}

.contact .wrap .top .h1 {
    color: #00447d;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact .wrap .top .box {
    display: flex;
    justify-content: center;
}

.contact .wrap .top .box .list-box {
    width: max-content;
    /*max-width: 48%;
  margin-right: 4%;*/
    width: 50%;
    padding-right: 4%;
}

.contact .wrap .top .box .list-box .li {
    display: flex;
    align-items: flex-start;
    margin-bottom: .3rem;
}

.contact .wrap .top .box .list-box .li:last-child {
    margin-bottom: 0;
}

.contact .wrap .top .box .list-box .li div {
    width: 20px;
    margin-right: 20px;
    margin-top: 4px;
}

.contact .wrap .top .box .list-box .li div img {
    max-width: 100%;
    margin: 0 auto;
}

.contact .wrap .top .box .list-box .li p {
    color: #666666;
    line-height: 1.4;
    width: calc(100% - 40px);
}

.contact .wrap .top .box .list-box .li p span {
    color: #000000;
}

.contact .wrap .top .box .cont-box {
    width: max-content;
    /*max-width: 50%;*/
    width: 50%;
}

.contact .wrap .top .box .cont-box .intro {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
}

.contact .wrap .top .box .cont-box .intro div {
    width: 20px;
    margin-right: 20px;
}

.contact .wrap .top .box .cont-box .intro p {
    width: calc(100% - 40px);
    color: #000000;
    line-height: 1.2;
}

.contact .wrap .top .box .cont-box .cont-list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 40px;
}

.contact .wrap .top .box .cont-box .cont-list p {
    width: 100%;
    line-height: 1.4;
    margin-bottom: .3rem;
}

.contact .wrap .li-wrap {
    display: flex;
    align-items: stretch;
}

.contact .wrap .li-wrap .li {
    width: 48%;
    margin-right: 4%;
    border: 1px solid #D5D5D5;
    padding: 1.25rem;
    transition: all .3s;
}

.contact .wrap .li-wrap .li:last-child {
    margin-right: 0;
}

.contact .wrap .li-wrap .li .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .9rem;
    transition: all .3s;
}

.contact .wrap .li-wrap .li .line {
    width: 100%;
    height: 1px;
    background-color: #D3D3D3;
    margin-bottom: 1.2rem;
    transition: all .3s;
}

.contact .wrap .li-wrap .li .list {
    display: flex;
    align-items: center;
    margin-bottom: .45rem;
}

.contact .wrap .li-wrap .li .list:last-child {
    margin-bottom: 0;
}

.contact .wrap .li-wrap .li .list div {
    width: 20px;
    margin-right: 12px;
    position: relative;
}

.contact .wrap .li-wrap .li .list div img {
    max-width: 100%;
    margin: 0 auto;
}

.contact .wrap .li-wrap .li .list p {
    color: #666666;
    line-height: 1.2;
    transition: all .3s;
}

.contact .wrap .li-wrap .li .list p span {
    color: #000000;
    transition: all .3s;
}

.contact .wrap .li-wrap .li:hover {
    background-color: #00447d;
    border-color: #00447d;
}

.contact .wrap .li-wrap .li:hover p {
    color: #fff;
}

.contact .wrap .li-wrap .li:hover p span {
    color: #fff;
}

.contact .wrap .li-wrap .li:hover .line {
    background-color: rgba(255, 255, 255, .5);
}

.contact .wrap .li-wrap .li:hover .normal-block {
    opacity: 0;
}

.contact .wrap .li-wrap .li:hover .hover-block {
    opacity: 1;
}

.way {
    padding-bottom: 2.85rem;
}

.way .tit {
    text-align: center;
    margin-bottom: 2.5rem;
}

.way .wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: .25rem;
}

.way .wrap .li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: .75rem;
    border: 1px solid #D5D5D5;
    padding: 1.25rem;
    transition: all .3s;
}

.way .wrap .li:nth-child(2n) {
    margin-right: 0;
}

.way .wrap .li:last-child {
    margin-right: 0;
}

.way .wrap .li .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .9rem;
    transition: all .3s;
}

.way .wrap .li .line {
    width: 100%;
    height: 1px;
    background-color: #D3D3D3;
    margin-bottom: 1.2rem;
    transition: all .3s;
}

.way .wrap .li .list {
    display: flex;
    align-items: center;
    margin-bottom: .45rem;
}

.way .wrap .li .list:last-child {
    margin-bottom: 0;
}

.way .wrap .li .list div {
    width: 20px;
    margin-right: 12px;
    position: relative;
}

.way .wrap .li .list div img {
    max-width: 100%;
    margin: 0 auto;
}

.way .wrap .li .list p {
    color: #666666;
    line-height: 1.2;
    transition: all .3s;
}

.way .wrap .li .list p span {
    color: #000000;
    transition: all .3s;
}

.way .wrap .li:hover {
    background-color: #00447d;
    border-color: #00447d;
}

.way .wrap .li:hover p {
    color: #fff;
}

.way .wrap .li:hover p span {
    color: #fff;
}

.way .wrap .li:hover .line {
    background-color: rgba(255, 255, 255, .5);
}

.way .wrap .li:hover .normal-block {
    opacity: 0;
}

.way .wrap .li:hover .hover-block {
    opacity: 1;
}

.way .intro {
    color: #939393;
    line-height: 1.2;
    text-align: center;
}

.sales {
    padding-bottom: 2.05rem;
}

.sales .tit {
    text-align: center;
    margin-bottom: 2.15rem;
}

.sales .sub {
    font-size: .8rem;
    color: #666666;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.1rem;
}

.sales .wrap {
    display: flex;
    flex-wrap: wrap;
}

.sales .wrap .li {
    width: 18.5%;
    min-height: 6rem;
    margin-right: 1.875%;
    margin-bottom: .95rem;
    padding: 1.25rem 1rem .65rem;
    border: 1px solid #D5D5D5;
    transition: all .3s;
}

.sales .wrap .li:nth-child(5n) {
    margin-right: 0;
}

.sales .wrap .li .h1 {
    color: #000000;
    line-height: 1.2;
    text-align: center;
    line-height: 28px;
    height: 56px;
    overflow: hidden;
    margin-bottom: .4rem;
    transition: all .3s;
}

.sales .wrap .li .line {
    width: 100%;
    height: 1px;
    background-color: #D3D3D3;
    margin-bottom: .8rem;
    transition: all .3s;
}

.sales .wrap .li .phone {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sales .wrap .li .phone div {
    width: .4rem;
    position: relative;
    margin-right: .4rem;
}

.sales .wrap .li .phone div img {
    width: 100%;
}

.sales .wrap .li .phone p {
    color: #000000;
    line-height: 1.2;
    transition: all .3s;
}

.sales .wrap .li:hover {
    background-color: #00447d;
    border-color: #00447d;
}

.sales .wrap .li:hover .h1 {
    color: #fff;
}

.sales .wrap .li:hover .line {
    background-color: rgba(255, 255, 255, .5);
}

.sales .wrap .li:hover .phone .normal-block {
    opacity: 0;
}

.sales .wrap .li:hover .phone .hover-block {
    opacity: 1;
}

.sales .wrap .li:hover .phone p {
    color: #fff;
}

.sales .sub2 {
    color: #666666;
    font-size: .8rem;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.sales .wrap2 {
    display: flex;
    flex-wrap: wrap;
}

.sales .wrap2 .li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: .75rem;
    border: 1px solid #D5D5D5;
    padding: 1.25rem;
    transition: all .3s;
}

.sales .wrap2 .li:nth-child(2n) {
    margin-right: 0;
}

.sales .wrap2 .li:last-child {
    margin-right: 0;
}

.sales .wrap2 .li .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .9rem;
    transition: all .3s;
}

.sales .wrap2 .li .line {
    width: 100%;
    height: 1px;
    background-color: #D3D3D3;
    margin-bottom: 1.2rem;
    transition: all .3s;
}

.sales .wrap2 .li .list {
    display: flex;
    align-items: center;
    margin-bottom: .45rem;
}

.sales .wrap2 .li .list:last-child {
    margin-bottom: 0;
}

.sales .wrap2 .li .list div {
    width: 20px;
    margin-right: 12px;
    position: relative;
}

.sales .wrap2 .li .list div img {
    max-width: 100%;
    margin: 0 auto;
}

.sales .wrap2 .li .list p {
    color: #666666;
    line-height: 1.2;
    transition: all .3s;
}

.sales .wrap2 .li .list p span {
    color: #000000;
    transition: all .3s;
}

.sales .wrap2 .li:hover {
    background-color: #00447d;
    border-color: #00447d;
}

.sales .wrap2 .li:hover p {
    color: #fff;
}

.sales .wrap2 .li:hover p span {
    color: #fff;
}

.sales .wrap2 .li:hover .line {
    background-color: rgba(255, 255, 255, .5);
}

.sales .wrap2 .li:hover .normal-block {
    opacity: 0;
}

.sales .wrap2 .li:hover .hover-block {
    opacity: 1;
}

.office {
    padding: 2.6rem 0 1.5rem;
}

.office .tit {
    text-align: center;
    margin-bottom: 1.5rem;
}

.office .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.office .wrap .li {
    width: 48%;
    min-height: 7.5rem;
    margin-right: 4%;
    margin-bottom: 1rem;
    display: flex;
    padding: 1.05rem .9rem .5rem 1rem;
    border: 1px solid #D5D5D5;
}

.office .wrap .li:nth-child(2n) {
    margin-right: 0;
}

.office .wrap .li .icon {
    width: 3.25rem;
    margin-right: 1.1rem;
    margin-top: .95rem;
}

.office .wrap .li .icon img {
    width: 100%;
}

.office .wrap .li .intro {
    width: calc(100% - 4.35rem);
}

.office .wrap .li .intro .top {
    display: flex;
    align-items: flex-end;
    padding-bottom: .65rem;
    border-bottom: 1px solid #D3D3D3;
    margin-bottom: .7rem;
}

.office .wrap .li .intro .top p {
    font-size: .8rem;
    color: #000000;
    line-height: 1.2;
    margin-right: 1rem;
    transition: all .3s;
}

.office .wrap .li .intro .top span {
    color: #000000;
    line-height: 1.2;
    transition: all .3s;
}

.office .wrap .li .intro .list {
    display: flex;
    margin-bottom: .1rem;
}

.office .wrap .li .intro a.list:hover span {
    color: #00447d;
}

.office .wrap .li .intro a.list:hover p {
    color: #00447d;
}

.office .wrap .li .intro .list:last-child {
    margin-bottom: 0;
}

.office .wrap .li .intro .list .lf {
    width: 20px;
    margin-right: 12px;
    height: max-content;
    margin-top: 3px;
}

.office .wrap .li .intro .list .lf img {
    max-width: 100%;
    margin: 0 auto;
}



.office .wrap .li .intro .list .rg span {
    display: inline-block;
    color: #000000;
    width: 6.5em;
    vertical-align: top;
}

.office .wrap .li .intro .list .rg p {
    display: inline-block;
    line-height: 1.4;
    color: #666;
    width: calc(100% - 7.5em);
    word-break: break-all;
}

.office .wrap .li .intro .list .rg {
    width: 100%;
    display: flex;
    line-height: 1.5;
}

.office .wrap .li .intro .list .rg p {}

.agent {
    position: relative;
}

.agent img {
    width: 100%;
}

.agent .point {
    position: absolute;
    top: 75.7%;
    left: 33.1%;
    width: 9px;
    height: 9px;
    background-color: #00447d;
    border-radius: 50%;
}

.agent .point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .5;
    background-color: #06438D;
    transform-origin: center center;
    animation: scaleBox 5s linear infinite;
}

.agent .point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .5;
    background-color: #06438D;
    transform-origin: center center;
    animation: scaleBox 5s 2.5s linear infinite;
}

.agent .wrap {
    position: absolute;
    width: 17.75rem;
    right: 3.75rem;
    top: 3rem;
}

.agent .wrap .tit {
    text-align: center;
    margin-bottom: 1.4rem;
    color: #000;
}

.agent .wrap .top-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem;
    position: relative;
    z-index: 2;
}

.agent .wrap .top-tab .li {
    width: 7.8rem;
    height: 1.3rem;
    border-radius: .7rem;
    position: relative;
    margin-right: 1.25rem;
}

.agent .wrap .top-tab .li:last-child {
    margin-right: 0;
}

.agent .wrap .top-tab .li p {
    width: 100%;
    height: 100%;
    line-height: 1.3rem;
    padding-left: .75rem;
    color: #222222;
    background-color: #fff;
    border-radius: .7rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all .3s;
}

.agent .wrap .top-tab .li .arr {
    position: absolute;
    z-index: 2;
    right: .7rem;
    top: 50%;
    transform: translateY(-50%);
    color: #222222;
    font-size: 16px;
    transition: all .3s;
}

.agent .wrap .top-tab .li .pos-box-wrap {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 50%;
    left: 0;
    border-bottom-right-radius: .7rem;
    border-bottom-left-radius: .7rem;
    overflow: hidden;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
    display: none;
}

.agent .wrap .top-tab .li .pos-box {
    width: 100%;
    max-height: calc(5rem + 4px + .65rem);
    overflow-y: auto;
    background-color: #fff;
    padding-top: .65rem;
    border-bottom-right-radius: .7rem;
    border-bottom-left-radius: .7rem;
    transition: all .3s;
}

.agent .wrap .top-tab .li .pos-box::-webkit-scrollbar {
    width: 2px;
}

.agent .wrap .top-tab .li .pos-box::-webkit-scrollbar-thumb {
    background: #00447d;
}

.agent .wrap .top-tab .li .pos-box span {
    display: block;
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    padding-left: .75rem;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    cursor: pointer;
    transition: all .3s;
}

.agent .wrap .top-tab .li .pos-box span:last-child {
    border-bottom: none;
}

.agent .wrap .top-tab .li .pos-box span:hover {
    background-color: #00447d;
    color: #fff;
}

.agent .wrap .top-tab .li:hover p {
    background-color: #00447d;
    color: #fff;
}

.agent .wrap .top-tab .li:hover .arr {
    color: #fff;
}

.agent .wrap .top-tab .li.cur p {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #00447d;
    color: #fff;
}

.agent .wrap .top-tab .li.cur .arr {
    color: #fff;
}

.agent .wrap .top-bar {
    width: 100%;
    height: 1.5rem;
    display: flex;
    padding: 0 1rem;
    background-color: #00447d;
}

.agent .wrap .top-bar p {
    width: 33.33%;
    color: #fff;
    line-height: 1.5rem;
}

.agent .wrap .btm-cont .box {
    max-height: 10.5rem;
    overflow-y: auto;
    animation: fadeInup 1.5s linear forwards;
}

.agent .wrap .btm-cont .box::-webkit-scrollbar {
    width: 2px;
}

.agent .wrap .btm-cont .box .li {
    width: 100%;
    height: 1.5rem;
    display: flex;
    padding: 0 1rem;
    background-color: #fff;
    border-bottom: 1px solid #E6E6E6;
}

.agent .wrap .btm-cont .box .li:last-child {
    border-bottom: none;
}

.agent .wrap .btm-cont .box .li p {
    width: 33.33%;
    color: #000000;
    line-height: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.impower {
    padding: 2.4rem 0 2.5rem;
}

.impower .tit {
    color: #000000;
    margin-bottom: 1.4rem;
    text-align: center;
}

.impower .top-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.05rem;
}

.impower .top-tab .li {
    width: 7.8rem;
    height: 1.3rem;
    border-radius: .7rem;
    position: relative;
    margin-right: 1.25rem;
    position: relative;
    z-index: 2;
}

.impower .top-tab .li:last-child {
    margin-right: 0;
}

.impower .top-tab .li p {
    width: 100%;
    height: 100%;
    line-height: 1.3rem;
    padding-left: .75rem;
    color: #222222;
    background-color: #F1F1F1;
    border-radius: .7rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all .3s;
}

.impower .top-tab .li .arr {
    position: absolute;
    z-index: 2;
    right: .7rem;
    top: 50%;
    transform: translateY(-50%);
    color: #222222;
    font-size: 16px;
    transition: all .3s;
}

.impower .top-tab .li .pos-box-wrap {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 50%;
    left: 0;
    overflow: hidden;
    border-bottom-right-radius: .7rem;
    border-bottom-left-radius: .7rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    display: none;
}

.impower .top-tab .li .pos-box {
    width: 100%;
    max-height: calc(5rem + 4px + .65rem);
    overflow-y: auto;
    background-color: #fff;
    padding-top: .65rem;
    border-bottom-right-radius: .7rem;
    border-bottom-left-radius: .7rem;
    transition: all .3s;
}

.impower .top-tab .li .pos-box::-webkit-scrollbar {
    width: 2px;
}

.impower .top-tab .li .pos-box::-webkit-scrollbar-thumb {
    background: #00447d;
}

.impower .top-tab .li .pos-box span {
    display: block;
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    padding-left: .75rem;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    cursor: pointer;
    transition: all .3s;
}

.impower .top-tab .li .pos-box span:last-child {
    border-bottom: none;
}

.impower .top-tab .li .pos-box span:hover {
    background-color: #00447d;
    color: #fff;
}

.impower .top-tab .li:hover p {
    background-color: #00447d;
    color: #fff;
}

.impower .top-tab .li:hover .arr {
    color: #fff;
}

.impower .top-tab .li.search {
    padding: 0 .6rem 0 .75rem;
    display: flex;
    align-items: center;
    background-color: #F1F1F1;
}

.impower .top-tab .li.search input {
    width: calc(100% - .6rem);
    height: 100%;
    background: none;
    color: #333;
}

.impower .top-tab .li.search div {
    width: .6rem;
    cursor: pointer;
}

.impower .top-tab .li.search div img {
    width: 100%;
}

.impower .top-tab .li.cur p {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #00447d;
    color: #fff;
}

.impower .top-tab .li.cur .arr {
    color: #fff;
}

.impower .map-wrap {
    height: 20rem;
    position: relative;
}

.impower .map-wrap .mapbox {
    width: 100%;
    height: 100%;
}

.impower .map-wrap .map-text-box {
    position: absolute;
    top: 2.5rem;
    left: 10%;
    width: 12.4rem;
    height: 15.45rem;
    background-color: #fff;
    padding: 1.5rem .75rem 0 1rem;
}

.impower .map-wrap .map-text-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, transparent, white);
    z-index: 10;
}

.impower .map-wrap .map-text-box .detail-info {
    color: #000000;
    font-size: .7rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.impower .map-wrap .map-text-box .maptext-list {
    height: calc(100% - 2rem);
}

.impower .map-wrap .map-text-box .maptext-container {
    height: 100%;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-scrollbar {
    width: 1px;
    height: 100%;
    background: #CFCFCF;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-scrollbar .swiper-scrollbar-drag {
    width: 5px;
    background: #044EB2;
    left: -2px;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide {
    width: calc(100% - .6rem);
    height: max-content;
    border-bottom: 1px solid #CFCFCF;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    cursor: pointer;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide:last-child {
    margin-bottom: 0;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide .tits {
    color: #5D5D5D;
    line-height: 1.2;
    margin-bottom: .35rem;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide .txts {
    color: #5D5D5D;
    line-height: 1.2;
    margin-bottom: .9rem;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide .text {
    color: #00447d;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.impower .map-wrap .map-text-box .maptext-container .swiper-slide .text span {
    line-height: .8;
    margin-left: 2px;
}

.recruit {
    padding: 2.5rem 0;
}

.recruit .wrap {
    display: flex;
}

.recruit .wrap .pic {
    width: 58%;
}

.recruit .wrap .pic img {
    width: 100%;
}

.recruit .wrap .rg {
    width: 42%;
    padding-top: 1.25rem;
    padding-left: 2.5rem;
}

.recruit .wrap .rg .h1 {
    color: #000000;
    line-height: 1.2;
    font-size: .8rem;
    margin-bottom: .6rem;
}

.recruit .wrap .rg .cont {
    color: #707070;
    line-height: 1.7;
    padding-bottom: .95rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: .8rem;
}

.recruit .wrap .rg .intro {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: .9rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1.4rem;
}

.recruit .wrap .rg .intro p {
    width: 50%;
    padding-right:4%;
    color: #000000;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.recruit .wrap .rg .more {
    display: block;
    width: max-content;
    padding: 0 .75rem;
    height: 1.35rem;
    line-height: 1.35rem;
    background-color: #00447d;
    border-radius: .7rem;
    color: #FFFFFF;
}

.about-nav .nav-container .swiper-slide {
    margin-right: 2rem;
}

.about-nav .nav-container .swiper-slide:last-child {
    margin-right: 0;
}

.about {
    padding: 1.95rem 0 2.4rem;
}

.about .wrap {
    display: flex;
}

.about .wrap .lf {
    width: 48%;
    padding-right: 2rem;
}

.about .wrap .lf .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: 1.9rem;
}

.about .wrap .lf .intro {
    display: flex;
    align-items: flex-end;
    margin-bottom: .5rem;
}

.about .wrap .lf .intro p {
    color: #000000;
    font-size: .8rem;
    line-height: 1.2;
    margin-right: .3rem;
}

.about .wrap .lf .intro span {
    color: #666666;
    line-height: 1.2;
}

.about .wrap .lf .cont {
    color: #565656;
    line-height: 1.7;
    margin-bottom: 2.1rem;

}
.about .wrap .lf .cont p{
    text-align: justify;

}

.about .wrap .lf .li-wrap {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding: .75rem 0 0;
}

.about .wrap .lf .li-wrap .li {
    width: 33.33%;
    margin-bottom: 1rem;
}

.about .wrap .lf .li-wrap .li .top {
    color: #1C1C1C;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: .3rem;
}

.about .wrap .lf .li-wrap .li .num {
    display: flex;
    align-items: flex-end;
    font-weight: bold;
}

.about .wrap .lf .li-wrap .li .num p {
    color: #00447d;
    line-height: 1.2;
    font-size: .9rem;
    letter-spacing: -1px;
}

.about .wrap .lf .li-wrap .li .num span {
    color: #00447d;
    line-height: 1.2;
}

.about .wrap .pic {
    width: 50%;
}

.dev {
    padding: 2rem 0;
    background-color: #F4F4F4;
}

.dev .tit {
    color: #000000;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    padding: 0 5%;
}

.dev .wrap {
    position: relative;
}

.dev .wrap .dev-scrollbar {
    position: relative;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    margin-bottom: 2.5rem;
    padding: 0 5%;
}

.dev .wrap .dev-scrollbar .swiper-scrollbar-drag {
    height: 5px;
    background-color: #00447d;
    top: -5px;
}

.dev .wrap .dev-container .swiper-button-prev,
.dev .wrap .dev-container .swiper-button-next {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    box-shadow: 0.45rem 0.45rem 1.25rem 0px rgba(46, 115, 184, 0.05);
    font-size: .5rem;
    color: #1567C6;
    background-color: #fff;
    transition: all .3s;
}

.dev .wrap .dev-container .swiper-button-prev::after,
.dev .wrap .dev-container .swiper-button-next::after {
    display: none;
}

.dev .wrap .dev-container .swiper-button-prev svg,
.dev .wrap .dev-container .swiper-button-next svg {
    position: relative;
    top: 0;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #1567C6;
    stroke-width: 2;
}

.dev .wrap .dev-container .swiper-button-prev:hover,
.dev .wrap .dev-container .swiper-button-next:hover {
    background-color: #00447d;
}

.dev .wrap .dev-container .swiper-button-prev:hover svg,
.dev .wrap .dev-container .swiper-button-next:hover svg {
    stroke: #fff;
}

.dev .wrap .dev-container .swiper-button-prev {
    transform: rotate(180deg);
    left: 0;
}

.dev .wrap .dev-container .swiper-button-next {
    right: 0;
}

.dev .wrap .dev-container .swiper-slide {
    width: 23%;
    height: 12.5rem;
    margin-right: 2.66%;
}

.dev .wrap .dev-container .swiper-slide:last-child {
    margin-right: 0;
}

.dev .wrap .dev-container .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(15deg, #1155A3, #1771D8);
    z-index: 1;
    transition: all .5s;
}

.dev .wrap .dev-container .swiper-slide img {
    width: 100%;
    height: 100%;
}

.dev .wrap .dev-container .swiper-slide .pos-cont {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 3.25rem 1.25rem 0;
}

.dev .wrap .dev-container .swiper-slide .pos-cont p {
    color: #fff;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .h1 {
    color: #FFFFFF;
    font-size: 2rem;
    line-height: .8;
    text-align: center;
    margin-bottom: 1.25rem;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .h2 {
    font-size: .8rem;
    text-align: center;
    margin-bottom: .3rem;
    line-height: 1.2;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .intro {
    line-height: .7rem;
    max-height: 3.5rem;
    overflow-y: auto;
    color: #fff;
    padding-right: 5px;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .intro::-webkit-scrollbar {
    width: 3px;
}

.dev .wrap .dev-container .swiper-slide .pos-cont .intro::-webkit-scrollbar-thumb {
    background: #fff;
}

.dev .wrap .dev-container .swiper-slide:hover::after {
    opacity: 0;
}

.layout {
    position: relative;
}

.layout img {
    width: 100%;
}

.layout .tit {
    position: absolute;
    left: 5%;
    top: 2rem;
    line-height: 1.2;
    color: #FFFFFF;
}

.layout .pos-intro {
    position: absolute;
    right: 13%;
    top: 50%;
    transform: translateY(-50%);
    /* width: 16.25rem; */
    /* height: 13.5rem; */
    width: 13rem;
    height: 17rem;
    padding: 1.5rem .75rem 1.2rem;
    /* background-color: rgba(28, 110, 192, 0.8); */
    /* box-shadow: 0px 13px 27px 0px rgba(0, 0, 0, 0.24); */
}

.layout .pos-intro .h1 {
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.layout .pos-intro .h2 {
    color: #D0E8FF;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.layout .pos-intro .li-wrap {
    max-height: calc(100% - 2rem);
    overflow-y: auto;
    padding-right: 5px;
}

.layout .pos-intro .li-wrap::-webkit-scrollbar {
    width: 2px;
}

.layout .pos-intro .li-wrap::-webkit-scrollbar-thumb {
    background: #fff;
}

.layout .pos-intro .li-wrap .li {
    border-top: 2px solid rgba(231, 231, 231, 0.15);
    padding-top: .5rem;
    margin-bottom: .35rem;
}

.layout .pos-intro .li-wrap .li>p {
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: .4rem;
}

.layout .pos-intro .li-wrap .li div {
    color: #D0E8FF;
    line-height: 1.7;
    display: flex;
    flex-wrap: wrap;
}

.layout .pos-intro .li-wrap .li div p {
    width: 50%;
}

.layout .point {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.layout .point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .5;
    background-color: #fff;
    transform-origin: center center;
    animation: scaleBoxBig 10s linear infinite;
}

.layout .point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: .5;
    background-color: #fff;
    transform-origin: center center;
    animation: scaleBoxBig 10s 5s linear infinite;
}

.layout .point1 {
    left: 9.5%;
    top: 22%;
}

.layout .point2 {
    left: 5.5%;
    top: 25%;
}

.layout .point3 {
    left: 9%;
    top: 51.6%;
}

.layout .point4 {
    left: 16.3%;
    top: 27%;
}

.layout .point5 {
    left: 16.8%;
    top: 33.3%;
}

.layout .point6 {
    left: 19%;
    top: 42.3%;
}

.layout .point7 {
    left: 30.3%;
    top: 44%;
}

.layout .point8 {
    left: 35.3%;
    top: 55%;
}

.layout .point9 {
    left: 37.3%;
    top: 50%;
}

.layout .point10 {
    left: 40.8%;
    top: 43%;
}

.layout .point11 {
    left: 42.5%;
    top: 35%;
}

.layout .point12 {
    left: 46.4%;
    top: 76.8%;
}

.layout .point13 {
    left: 92.3%;
    top: 64%;
}

.layout .point14 {
    left: 40%;
    top: 41%;
}

.layout .point14 span {
    transform: translateY(-20px);
}

.research {
    padding: 1.7rem 0 2.45rem;
    background-color: #F8F8F8;
}

.research .wrap .tit {
    color: #000000;
    text-align: center;
    margin-bottom: .55rem;
}

.research .wrap .cont {
    color: #565656;
    line-height: 1.9;
    width: 45%;
    margin: 0 auto 1.85rem;
    text-align: center;
}

.research .wrap .box {
    overflow: hidden;
}

.research .wrap .box .lf {
    float: right;
    width: 45%;
    padding-top: 2rem;
    padding-left: 2.8rem;
}

.research .wrap .box .lf .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .7rem;
}

.research .wrap .box .lf .h2 {
    color: #565656;
    line-height: 2;
    margin-bottom: 1.4rem;
}

.research .wrap .box .lf .li-wrap {
    display: flex;
}

.research .wrap .box .lf .li-wrap .li {
    width: max-content;
    margin-right: 2.2rem;
}

.research .wrap .box .lf .li-wrap .li:last-child {
    margin-right: 0;
}

.research .wrap .box .lf .li-wrap .li .h3 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .4rem;
}

.research .wrap .box .lf .li-wrap .li .intro {
    display: flex;
    align-items: flex-end;
}

.research .wrap .box .lf .li-wrap .li .intro p {
    color: #00447d;
    font-size: 1.65rem;
    font-weight: 500;
    line-height: .8;
    margin-right: 6px;
}

.research .wrap .box .lf .li-wrap .li .intro span {
    color: #00447d;
    font-size: .875rem;
    line-height: .8;
}

.research .wrap .box .pic {
    width: 55%;
    float: left;
}

.research .wrap .box .pic img {
    width: 100%;
}

.advan {
    padding: 2.55rem 0 2.75rem;
}

.advan .tit {
    color: #000000;
    text-align: center;
    margin-bottom: 1.95rem;
}

.advan .wrap {
    display: flex;
}

.advan .wrap .lf {
    width: 50%;
    padding-top: 2.15rem;
    padding-right: 2.75rem;
}

.advan .wrap .lf .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .9rem;
}

.advan .wrap .lf .cont {
    color: #565656;
    line-height: 2;
}

.advan .wrap .rg {
    width: 50%;
}

.advan .wrap .rg img {
    width: 100%;
}

.cultrue {
    padding: 2.75rem 0 2.5rem;
}

.cultrue .wrap .tit {
    color: #000000;
    text-align: center;
    margin-bottom: 1.95rem;
}

.cultrue .wrap .top-li {
    width: 100%;
    position: relative;
    margin-bottom: 1.5rem;
}

.cultrue .wrap .top-li img {
    width: 100%;
}

.cultrue .wrap .top-li .pos-cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.cultrue .wrap .top-li .pos-cont .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
}

.cultrue .wrap .top-li .pos-cont .icon div {
    width: .9rem;
    margin-right: .3rem;
}

.cultrue .wrap .top-li .pos-cont .icon p {
    color: #FFFFFF;
    font-size: .8rem;
    line-height: 1.2;
}

.cultrue .wrap .top-li .pos-cont .intro {
    color: #FFFFFF;
    line-height: 2;
    text-align: center;
}

.cultrue .wrap .tit2 {
    color: #000000;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: .75rem;
}

.cultrue .wrap .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cultrue .wrap .tab span {
    color: #000000;
    line-height: 1.2;
    padding: 0 .4rem .6rem;
    position: relative;
    cursor: pointer;
    margin-right: 2.3rem;
    transition: all .3s;
}

.cultrue .wrap .tab span:last-child {
    margin-right: 0;
}

.cultrue .wrap .tab span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #00447d;
    transition: all .3s;
}

.cultrue .wrap .tab span.cur,
.cultrue .wrap .tab span:hover {
    color: #00447d;
}

.cultrue .wrap .tab span.cur::after,
.cultrue .wrap .tab span:hover::after {
    width: 100%;
}

.cultrue .wrap .swiper-box {
    display: flex;
    justify-content: space-between;
}

.cultrue .wrap .swiper-box .pic {
    position: relative;
    width: 54.5%;
    height: 11rem;
}

.cultrue .wrap .swiper-box .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.cultrue .wrap .swiper-box .pic img:first-child {
    display: block;
}

.cultrue .wrap .swiper-box .cul-container {
    width: 40.5%;
    margin: 1.75rem 0 0;
}

.cultrue .wrap .swiper-box .cul-container .swiper-pagination {
    line-height: 1.2;
    text-align: left;
    display: flex;
    align-items: center;
}

.cultrue .wrap .swiper-box .cul-container .swiper-pagination .swiper-pagination-bullet {
    width: .25rem;
    height: .25rem;
    border: 1px solid #AAAAAA;
    margin: 0 7px;
    background: none;
    position: relative;
    transition: all .3s;
}

.cultrue .wrap .swiper-box .cul-container .swiper-pagination .swiper-pagination-bullet-active {
    width: .35rem;
    height: .35rem;
}

.cultrue .wrap .swiper-box .cul-container .swiper-pagination .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #AAAAAA;
    border-radius: 50%;
    width: .25rem;
    height: .25rem;
}

.cultrue .wrap .swiper-box .cul-container .swiper-slide {
    width: 100%;
}

.cultrue .wrap .swiper-box .cul-container .swiper-slide .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.cultrue .wrap .swiper-box .cul-container .swiper-slide .h2 {
    color: #565656;
    line-height: 1.8;
}

.respon {
    padding: 3rem 0 2.7rem;
}

.respon .tit {
    color: #000000;
    text-align: center;
    margin-bottom: .8rem;
}

.respon .cont {
    line-height: 1.7;
    color: #000000;
    width: 53.33%;
    margin: 0 auto;
    text-align: center;
}

.policy {
    padding: 2.5rem 0 4.4rem;
}

.policy .h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 2.25rem;
}

.policy .h2 {
    color: #fff;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.5rem;
}

.policy .li-wrap {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 2.55rem;
}

.policy .li-wrap .li {
    width: max-content;
    position: relative;
    margin-right: 2rem;
}

.policy .li-wrap .li::after {
    content: '';
    position: absolute;
    width: 1rem;
    height: 2px;
    border-top: 2px dashed #fff;
    left: calc(100% + .5rem);
    top: .5rem;
}

.policy .li-wrap .li:last-child {
    margin-right: 0;
}

.policy .li-wrap .li:last-child::after {
    display: none;
}

.policy .li-wrap .li .icon {
    width: 1.1rem;
    margin: 0 auto .3rem;
}

.policy .li-wrap .li .icon img {
    max-width: 100%;
    margin: 0 auto;
}

.policy .li-wrap .li .intro {
    color: #fff;
    line-height: 1.2;
    text-align: center;
}

.policy .h3 {
    color: #fff;
    line-height: 1.2;
    text-align: center;
    margin-bottom: .7rem;
}

.policy .cont {
    color: #FFFFFF;
    line-height: 1.7;
    text-align: center;
    width: 58%;
    margin: 0 auto 1.2rem;
}

.policy .link-li {
    display: flex;
    flex-wrap: nowrap;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
}

.policy .link-li a {
    position: relative;
    width: max-content;
    padding-left: 12px;
    color: #fff;
    margin-right: .7rem;
    transition: all .3s;
}

.policy .link-li a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    transition: all .3s;
}

.policy .link-li a:last-child {
    margin-right: 0;
}

.policy .link-li a:hover {
    color: #FFFC00;
    text-decoration: underline;
}

.policy .link-li a:hover::after {
    background-color: #FFFC00;
}

.charity {
    padding: 2.65rem 0 2.1rem;
    background-color: #F4F4F4;
}

.charity .tit {
    color: #000000;
    text-align: center;
    margin-bottom: 1.75rem;
    line-height: 1.2;
}

.charity .charity-container {
    width: 100%;
    padding-left: 5%;
    /* margin-left: 5%; */
}

.charity .swiper-scrollbar {
    position: relative;
    margin-top: 1.9rem;
    height: 1px;
    width: 100%;
}

.charity .swiper-scrollbar .swiper-scrollbar-drag {
    height: 5px;
    background: #00447d;
}

.charity .charity-container .swiper-slide {
    width: 24%;
    margin-right: 1.5rem;
    background-color: #fff;
}

.charity .charity-container .swiper-slide:last-child {
    margin-right: 0;
}

.charity .charity-container .swiper-slide .pic {
    width: 100%;
    height: 6.25rem;
    overflow: hidden;
}

.charity .charity-container .swiper-slide .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.charity .charity-container .swiper-slide .intro {
    padding: .9rem;
    height: 6.9rem;
}

.charity .charity-container .swiper-slide .intro .h1 {
    color: #000000;
    line-height: .75rem;
    height: 1.5rem;
    overflow: hidden;
    margin-bottom: .5rem;
}

.charity .charity-container .swiper-slide .intro .cont {
    color: #000000;
    line-height: .75rem;
    height: 1.5rem;
    overflow: hidden;
    margin-bottom: .9rem;
}

.charity .charity-container .swiper-slide .intro .more {
    display: flex;
    align-items: center;
    color: #1B1B1B;
    line-height: 1.2;
    transition: all .3s;
}

.charity .charity-container .swiper-slide .intro .more .text {
    margin-right: 4px;
    line-height: 1.2;
}

.charity .charity-container .swiper-slide .intro .more svg {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #1B1B1B;
    stroke-width: 1;
    transition: all .3s;
}

.charity .charity-container .swiper-slide:hover .pic img {
    transform: scale(1.1);
}

.charity .charity-container .swiper-slide:hover .more {
    color: #00447d;
}

.charity .charity-container .swiper-slide:hover .more svg {
    stroke: #00447d;
}

.envir {
    padding: 2.25rem 0 2.55rem;
}

.envir .tit {
    color: #000000;
    text-align: center;
    margin-bottom: 2.25rem;
}

.envir .wrap .li {
    overflow: hidden;
    margin-bottom: 1.75rem;
}

.envir .wrap .li:last-child {
    margin-bottom: 0;
}

.envir .wrap .li .lf {
    width: 40%;
    float: left;
    padding-right: 3rem;
    padding-top: 2rem;
}

.envir .wrap .li .lf .h1 {
    color: #000000;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.envir .wrap .li .lf .cont {
    color: #000000;
    line-height: 2;
    margin-bottom: 3rem;
}

.envir .wrap .li .lf .more {
    background-color: #00447d;
    display: block;
    width: 3.4rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    color: #fff;
    border-radius: .55rem;
    border: 1px solid #00447d;
    transition: all .1s .4s;
}


/* .envir .wrap .li .lf .more:hover {
  background-color: transparent;
} */

.envir .wrap .li .rg {
    width: 60%;
    float: right;
}

.envir .wrap .li .rg img {
    width: 100%;
}

.envir .wrap .li:nth-child(2n) .lf {
    float: right;
    padding-right: 0;
    padding-left: 2.4rem;
    padding-top: 1.5rem;
}

.moral {
    padding: 2rem 0 2.4rem;
}

.moral .tit {
    color: #fff;
    text-align: center;
    margin-bottom: .7rem;
}

.moral .sub {
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1.4rem;
    text-align: center;
}

.moral .wrap {
    display: flex;
}

.moral .wrap .li {
    width: 33.3%;
    height: 13.9rem;
    padding: 1.6rem 2.5rem 0;
    transition: all .3s;
}

.moral .wrap .li .pic {
    width: 1.5rem;
    margin: 0 auto .5rem;
}

.moral .wrap .li .pic img {
    max-width: 100%;
    margin: 0 auto;
}

.moral .wrap .li .h1 {
    color: #fff;
    text-align: center;
    margin-bottom: .9rem;
    line-height: 1.2;
}

.moral .wrap .li .cont {
    color: #fff;
    line-height: .7rem;
    max-height: 7.7rem;
    overflow-y: auto;
    padding-right: 5px;
}

.moral .wrap .li .cont::-webkit-scrollbar {
    width: 3px;
}

.moral .wrap .li:hover {
    background-color: #1B87CA;
}

.purchase {
    padding: 2.9rem 0 2.6rem;
}

.purchase .tit {
    color: #000000;
    text-align: center;
    margin-bottom: .6rem;
}

.purchase .sub {
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.purchase .wrap {
    display: flex;
}

.purchase .wrap .lf {
    width: 39%;
    padding-top: 1.35rem;
    padding-right: 2.15rem;
}

.purchase .wrap .lf .h1 {
    color: #000000;
    line-height: 1.2;
    font-size: .8rem;
    margin-bottom: .8rem;
}

.purchase .wrap .lf .cont {
    color: #000000;
    line-height: 1.8;
}

.purchase .wrap .rg {
    width: 61%;
}

.purchase .wrap .rg img {
    width: 100%;
}

.honor {
    padding: 2.3rem 0 2.5rem;
}

.honor .tit {
    color: #000000;
    line-height: 1.2;
    text-align: center;
    margin-bottom: .9rem;
}

.honor .select {
    position: relative;
    width: 7.8rem;
    height: 1.3rem;
    border-radius: .7rem;
    background-color: #F1F1F1;
    margin: 0 auto 2rem;
    z-index: 2;
}

.honor .select .year {
    color: #999999;
    width: 100%;
    height: 100%;
    padding-left: .75rem;
    line-height: 1.3rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    border-radius: .7rem;
    transition: all .3s;
}

.honor .select .arr {
    position: absolute;
    right: .65rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .6rem;
    pointer-events: none;
    z-index: 2;
    color: #000;
    transition: all .3s;
}

.honor .select .change {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom-right-radius: 0.7rem;
    border-bottom-left-radius: 0.7rem;
    overflow: hidden;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1;
}

.honor .select .change .change-box {
    width: 100%;
    max-height: calc(5rem + 4px + 0.65rem);
    overflow-y: auto;
    background-color: #fff;
    padding-top: 0.65rem;
    border-bottom-right-radius: 0.7rem;
    border-bottom-left-radius: 0.7rem;
    transition: all .3s;
}

.honor .select .change .change-box::-webkit-scrollbar {
    width: 2px;
}

.honor .select .change .change-box::-webkit-scrollbar-thumb {
    background: #00447d;
}

.honor .select .change span {
    display: block;
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    padding-left: .75rem;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    cursor: pointer;
    transition: all .3s;
}

.honor .select .change span:last-child {
    border-bottom: none;
}

.honor .select .change span:hover {
    background-color: #00447d;
    color: #fff;
}

.honor .select:hover .year {
    background-color: #00447d;
    color: #fff;
}

.honor .select:hover .arr {
    color: #fff;
}

.honor .select.cur .year {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #00447d;
    color: #fff;
}

.honor .select.cur .arr {
    color: #fff;
}

.honor .list-ajax .change-cont {
    animation: fadeInup 1.5s forwards linear;
}

.honor .change-cont {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: .9rem;
}

.honor .change-cont .li {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 1.6rem;
}

.honor .change-cont .li:nth-child(4n) {
    margin-right: 0;
}

.honor .change-cont .li div {
    width: 100%;
    margin-bottom: .65rem;
    border-radius: 12px;
    overflow: hidden;
}

.honor .change-cont .li div img {
    width: 100%;
    transition: all .3s;
}

.honor .change-cont .li p {
    color: #333333;
    line-height: 1.2;
    height:48px;
    line-height:24px;
    text-align: center;
}

.honor .change-cont .li:hover div img {
    transform: scale(1.1);
}

.news {
    padding: 2.4rem 0;
    background-color: #F0F0F0;
}

.news .wrap .top-wrap {
    display: flex;
    align-items: stretch;
    background-color: #fff;
}

.news .wrap .top-wrap {
    margin-bottom: 2.35rem;
}

.news .wrap .top-wrap .pic {
    width: 50%;
    overflow: hidden;
}

.news .wrap .top-wrap .pic img {
    width: 100%;
    transition: all .3s;
}

.news .wrap .top-wrap .box {
    width: 50%;
    padding: 2.5rem 2.4rem 0 2rem;
}

.news .wrap .top-wrap .box .h1 {
    color: #999999;
    line-height: 1.2;
    margin-bottom: .8rem;
}

.news .wrap .top-wrap .box .h2 {
    color: #222222;
    font-size: .8rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .7rem;
    transition: all .3s;
}

.news .wrap .top-wrap .box .cont {
    color: #999999;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.news .wrap .top-wrap .box .more {
    display: block;
    width: 3.4rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    background-color: #00447d;
    border-radius: .55rem;
    color: #fff;
}

.news .wrap .top-wrap .box .more:hover {
    border: 1px solid #00447d;
}

.news .wrap .top-wrap:hover .pic img {
    transform: scale(1.1);
}

.news .wrap .top-wrap:hover .box .h2 {
    color: #00447d;
}

.news .btm-wrap .li-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: .4rem;
}

.news .btm-wrap .li-wrap .li {
    width: 31.8%;
    margin-right: 2.3%;
    margin-bottom: 1.65rem;
    background-color: #fff;
}

.news .btm-wrap .li-wrap .li:nth-child(3n) {
    margin-right: 0;
}

.news .btm-wrap .li-wrap .li .pic {
    width: 100%;
    height: 7.5rem;
    overflow: hidden;
    border-radius: .4rem;
}

.news .btm-wrap .li-wrap .li .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.news .btm-wrap .li-wrap .li .cont {
    padding: .65rem .7rem;
}

.news .btm-wrap .li-wrap .li .h1 {
    color: #000000;
    line-height: .75rem;
    height: 1.5rem;
    overflow: hidden;
    margin-top: .25rem;
}

.news .btm-wrap .li-wrap .li .h2 {
    color: #373737;
    line-height: 1.2;
    transition: all .3s;
}

.news .btm-wrap .li-wrap .li:hover .pic img {
    transform: scale(1.1);
}

.news .btm-wrap .li-wrap .li:hover .h1 {
    color: #03447c;
}


.news-info {
    padding: 2rem 0 2.5rem;
    /*background-color: #F2F2F2;*/
    background-color:#fff;
}

.news-info .wrap {
    display: flex;
}

.news-info .wrap .side {
    background-color: #fff;
    padding: 1.5rem;
    width: 20%;
    margin-right: .5rem;
}

.news-info .wrap .side .tit {
    color: #000;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.news-info .wrap .side a {
    display: block;
    position: relative;
    padding-left: 16px;
    margin-bottom: .45rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #E0E0E0;
}

.news-info .wrap .side a:last-child {
    margin-bottom: 0;
}

.news-info .wrap .side a::after {
    content: '';
    position: absolute;
    left: 0;
    top: .25rem;
    width: 6px;
    height: 6px;
    background-color: #838383;
    border-radius: 50%;
    transition: all .3s;
}

.news-info .wrap .side a p {
    color: #707070;
    line-height: .65rem;
    max-height: 1.3rem;
    overflow: hidden;
    transition: all .3s;
}

.news-info .wrap .side a:hover::after {
    background-color: #00447d;
}

.news-info .wrap .side a:hover p {
    color: #00447d;
    border-bottom-color: #00447d;
}

.news-info .wrap .cont {
    width: calc(80% - .5rem);
    background-color: #fff;
    padding: 1.35rem 4.1rem 1.9rem;
}

.news-info .wrap .cont .tit {
    color: #333;
    line-height: 1.2;
    font-size: 1rem;
    text-align: left;
    margin-bottom: .35rem;
    font-weight: bold;
}

.news-info .wrap .cont .time {
    color: #000000;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 1rem;
}

.news-info .wrap .cont .intro {
    border-top: 3px solid #EFEFEF;
    border-bottom: 3px solid #EFEFEF;
    padding-top: .75rem;
    padding-bottom: 1.2rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
    word-break: break-all;
}

.news-info .wrap .cont .intro img {
    display: inline-block;
    margin: 20px 0;
}

.news-info .wrap .cont .info-page {
    display: flex;
    align-items: center;
}

.news-info .wrap .cont .info-page .page-box {
    width: calc(100% - 4rem);
}

.news-info .wrap .cont .info-page .page-box a {
    display: block;
    color: #000000;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .4rem;
}

.news-info .wrap .cont .info-page .page-box a:last-child {
    margin-bottom: 0;
}

.news-info .wrap .cont .info-page .back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    background-color: #00447d;
    border-radius: .55rem;
    box-shadow: 18px 18px 51px 0px rgba(46, 115, 184, 0.05);
    color: #fff;
}

.news-info .wrap .cont .info-page .back .pic {
    width: 12px;
}

.news-info .wrap .cont .info-page .back .pic img {
    width: 100%;
}

.online {
    padding: 2rem 0 2.5rem;
}

.online .wrap .tit {
    color: #000000;
    line-height: 1.2;
    text-align: center;
    font-size: .8rem;
    margin-bottom: 1.45rem;
}

.online .wrap .form-box {
    width: 72%;
    margin: 0 auto 2.5rem;
}

.online .wrap .form-box .top-select {
    margin-bottom: 1.2rem;
}

.online .wrap .form-box .top-select .type {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.online .wrap .form-box .top-select .type span {
    color: #146ED4;
}

.online .wrap .form-box .top-select .box {
    display: flex;
    align-items: center;
}

.online .wrap .form-box .top-select .box .li {
    width: calc(20% - .5rem);
    margin-right: .5rem;
    background-color: #F4F4F4;


}

.online .wrap .form-box .top-select .box .li:last-child {
    margin-right: 0;
}

.online .wrap .form-box .top-select .box .li p {
    width: 100%;
    text-align: center;
    color: #000;
    cursor: pointer;
    background-size: 100% 115%;
    background-repeat: no-repeat;
    background-position: center bottom;
    height: 1.5rem;
    padding: 0 10px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;

}

.online .wrap .form-box .top-select .box .li.cur p {
    background-image: url(../img/156.png);
    color: #fff;
}

.online .wrap .form-box .li-wrap {
    display: flex;
    margin-bottom: .9rem;
}

.online .wrap .form-box .li-wrap:last-child {
    margin-bottom: 0;
}

.online .wrap .form-box .li-wrap .li {
    width: 48%;
    margin-right: 4%;
}

.online .wrap .form-box .li-wrap .li:last-child {
    margin-right: 0;
}

.online .wrap .form-box .li-wrap .li .type {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .4rem;
}

.online .wrap .form-box .li-wrap .li .type span {
    color: #146ED4;
}

.online .wrap .form-box .li-wrap .li input {
    width: 100%;
    height: 1.25rem;
    border: 1px solid #D5D5D5;
    padding: 0 .5rem;
    color: #666666;
}

.online .wrap .form-box .li-wrap.one-li .li {
    width: 100%;
    margin-right: 0;
}

.online .wrap .form-box .text-wrap {
    margin-bottom: .9rem;
}

.online .wrap .form-box .text-wrap .type {
    color: #000000;
    line-height: 1.2;
    margin-bottom: .2rem;
}

.online .wrap .form-box .text-wrap .type span {
    color: #146ED4;
}

.online .wrap .form-box .text-wrap textarea {
    width: 100%;
    height: 2.9rem;
    border: 1px solid #D5D5D5;
    padding: .25rem .5rem;
    color: #666666;
}

.online .wrap .form-box .sub-box {
    display: flex;
    align-items: center;
}

.online .wrap .form-box .sub-box .code-input {
    width: 40%;
    height: 1.25rem;
    border: 1px solid #D5D5D5;
    border-radius: 5px;
    display: flex;
    margin-right: .75rem;
}

.online .wrap .form-box .sub-box .code-input div {
    width: 1.6rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.online .wrap .form-box .sub-box .code-input input {
    width: calc(100% - 1.6rem);
    height: 100%;
    background: none;
    padding: 0 .4rem;
    color: #666666;
}

.online .wrap .form-box .sub-box .code {
    width: 3.75rem;
    height: 1.25rem;
    background-color: #F7F7F7;
    border-radius: 5px;
    margin-right: .9rem;
}

.online .wrap .form-box .sub-box .submit {
    width: 6.25rem;
    height: 1.25rem;
    border-radius: .625rem;
    background-color: #00447d;
    color: #fff;
    margin-right: .55rem;
}

.online .wrap .form-box .sub-box .reset {
    width: 6.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    text-align: center;
    border-radius: .625rem;
    background-color: #F4F4F4;
    color: #3D3C3C;
    cursor: pointer;
}

.online .wrap .btm-online {
    display: flex;
}

.online .wrap .btm-online .pic {
    width: 56%;
}

.online .wrap .btm-online .pic img {
    width: 100%;
}

.online .wrap .btm-online .box {
    width: 44%;
    padding: 3rem 0 0 2.1rem;
}

.online .wrap .btm-online .box .h1 {
    color: #000000;
    font-size: .8rem;
    line-height: 1.2;
    margin-bottom: .6rem;
}

.online .wrap .btm-online .box .cont {
    color: #707070;
    line-height: 2;
    margin-bottom: .9rem;
}

.online .wrap .btm-online .box .more {
    display: block;
    width: 4.25rem;
    height: 1.25rem;
    color: #fff;
    text-align: center;
    line-height: 1.25rem;
    border-radius: .625rem;
    background-color: #00447d;
}

.download {
    padding: 2.5rem 0 2.25rem;
}

.download .wrap .top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 2px solid #EFEFEF;
    margin-bottom: 1.5rem;
}

.download .wrap .top-wrap .tab.type {
    margin-bottom: .5rem;
}

.download .wrap .top-wrap .tab {
    display: flex;
}

.download .wrap .top-wrap .tab span {
    color: #000000;
    width: 5em;
    line-height: 1.2;
    margin-right: 1.25rem;
    cursor: pointer;
}

.download .wrap .top-wrap .tab span:last-child {
    margin-right: 0;
}

.download .wrap .top-wrap .tab span.cur,
.download .wrap .top-wrap .tab span:hover {
    color: #00447d;
}

.download .wrap .top-wrap .search {
    display: flex;
    justify-content: space-between;
    padding: 0 .6rem 0 .75rem;
    width: 11rem;
    height: 1.3rem;
    background-color: #f7f7f7;
    border-radius: .7rem;
    box-shadow: inset 0 0 1px 1px #e5e5e5;
}

.download .wrap .top-wrap .search input {
    width: calc(100% - 30px);
    background: none;
    color: #333;
}

.download .wrap .top-wrap .search div {
    width: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.download .wrap .top-wrap .search div img {
    width: 100%;
}

.download .wrap .change-cont .li-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: .8rem;
}

.download .wrap .change-cont .li-wrap .li {
    width: 17.5%;
    margin-right: 3.125%;
    margin-bottom: 1.05rem;
    border: 1px solid #d7d7d7;
    transition: all .3s;
    border-radius: .5rem;
    overflow: hidden;
}

.download .wrap .change-cont .li-wrap .li:nth-child(5n) {
    margin-right: 0;
}

.download .wrap .change-cont .li-wrap .li .pic {
    width: 100%;
    height: 7.5rem;
    overflow: hidden;
}

.zdownload .wrap .change-cont .li-wrap .li .pic {
    height: 9.7rem;
    display:block;
}

.download .wrap .change-cont .li-wrap .li .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.download .wrap .change-cont .li-wrap .li .cont {
    padding: .6rem .8rem .9rem;
}

.download .wrap .change-cont .li-wrap .li .cont .h1 {
    color: #000000;
    line-height: .6rem;
    height: 1.2rem;
    overflow: hidden;
    margin-bottom: .45rem;
    display: block;
    transition: all .3s;
}

.download .wrap .change-cont .li-wrap .li .cont .icon {
    display: flex;
    align-items: center;
}

.download .wrap .change-cont .li-wrap .li .cont .icon div {
    width: 13px;
    height: 13px;
    margin-left: 6px;
    margin-top: -2px;
}

.download .wrap .change-cont .li-wrap .li .cont .icon div svg {
    width: 100%;
    height: 100%;
    fill: #000;
    transition: all .3s;
}

.download .wrap .change-cont .li-wrap .li .cont .icon p {
    color: #000000;
    line-height: 1.2;
    transition: all .3s;
}

.download .wrap .change-cont .li-wrap .li:hover {
    border-color: #00447d;
}

.download .wrap .change-cont .li-wrap .li:hover .pic img {
    transform: scale(1.1);
}

.download .wrap .change-cont .li-wrap .li:hover .cont .h1 {
    color: #00447d;
}

.download .wrap .change-cont .li-wrap .li:hover .cont .icon svg {
    fill: #00447d;
}

.download .wrap .change-cont .li-wrap .li:hover .cont .icon p {
    color: #00447d;
}

.head-rg {
    display: flex;
    align-items: center;
}

.mb-select {
    display: none;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 0 .5rem;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: #fff;
    margin: 0 auto .5rem;
}

.mb-select p {
    color: #000;
    line-height: 1.2;
    margin-right: 10px;
}

.mb-select div {
    width: 30px;
}

.mb-select div img {
    width: 100%;
}

.head-move {
    transform: translateY(-2.1rem);
    opacity: 0;
}

.pub-nav .fix-nav {
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10;
    opacity: 1;
    pointer-events: inherit;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.pos-con {
    position: fixed;
    bottom: 10%;
    right: 1%;
    width: 1.3rem;
    z-index: 9;
}

.pos-con img {
    width: 100%;
}

.wel-side {
    padding-top: 0;
    transition: all .3s;
}

.f-share a {
    position: relative;
}

.f-share .wximg {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 50%;
    margin-left: -60px;
    bottom: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

.f-share a:hover .wximg {
    visibility:visible;
    opacity: 1;
}

.side-bar .share a {
    position: relative;
}

.side-bar .share .wximg {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    margin-top: -60px;
    right: 1rem;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.side-bar .share a:hover .wximg {
    opacity: 1;
}

.pop-img {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 199;
    top: 0;
    left: 0;
    display: none;
}

.pop-img .close-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pop-img .close-img {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -30px;
    right: -15px;
}

.pop-img .close-img img {
    width: 100%;
}

.pop-img .img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 2;
}

.pop-img .img-box img {
    width: 100%;
}

.mb-name-box {
    display: none;
    margin-bottom: .75rem;
    padding: 0 5%;
}

.mb-name-box .sec {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: .4rem;
    color: #333;
    font-weight: bold;
}

.mb-name-box .thr {
    font-size: 14px;
    line-height: 1.2;
    color: #444;
}


/*# sourceMappingURL=all.css.map */

.pop-online {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 199;
}

.pop-online .close-bg {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pop-online .wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 80%;
    background-color: #fff;
    padding: 2rem;
}

.pop-online .wrap .form-box {
    margin: 0;
}

.cases-swiper-box {
    width: 100%;
    position: relative;
}

.cases-swiper-box .swiper-button-prev,
.cases-swiper-box .swiper-button-next {
    color: #00447d;
}

.cases-swiper-box .swiper-button-prev::after,
.cases-swiper-box .swiper-button-next::after {
    font-size: 1rem;
}

.cases-swiper-box .swiper-button-prev {
    left: 5%;
}

.cases-swiper-box .swiper-button-next {
    right: 5%;
}

.case-info-swiper-box {
    position: relative;
    width: 50%;
    float: right;
}

.case-info .top .wrap .rg {
    /*width: 80%;*/
    width: 100%;
}

.case-info-swiper-box .swiper-button-prev,
.case-info-swiper-box .swiper-button-next {
    color: #00447d;
}

.case-info-swiper-box .swiper-button-prev::after,
.case-info-swiper-box .swiper-button-next::after {
    font-size: 1rem;
}

.group-swiper {
    /* margin-top: 2.85rem; */
    padding: 0 5%;
}

#swiper11 {
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    min-height: 1.5rem;
}

#swiper11 .swiper-wrapper {
    align-items: center;
    min-height: 1.5rem;
}

#swiper11 .swiper-slide {
    text-align: center;
    color: #444444;
}

#swiper11 .swiper-slide .tit {
    color: #000;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin-bottom: .6rem;
    position: relative;
    z-index: 2;
}

#swiper11 .swiper-slide .cont {
    color: #666;
    text-align: center;
    width: 60%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: .6rem;
    height: 3rem;
    overflow-y: auto;
}

#swiper11 .swiper-slide .cont::-webkit-scrollbar {
    width: 3px;
}

#swiper11 .swiper-slide .year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.75rem;
    line-height: 1.2;
    color: rgba(0, 105, 193, .1);
}

#swiper11 .swiper-button-prev,
#swiper11 .swiper-button-next {
    width: 35px;
    height: 35px;
    background-color: #BFBFBF;
    border-radius: 50%;
    margin-top: 0;
    transform: translateY(-50%);
}

#swiper11 .swiper-button-prev {
    left: 0;
}

#swiper11 .swiper-button-next {
    right: 0;
}

#swiper11 .swiper-button-prev::after,
#swiper11 .swiper-button-next::after {
    font-size: 14px;
    color: #FFFFFF;
}

#swiper12 {
    overflow: hidden;
    position: relative;
    padding-top: 5px;
}

#swiper12::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #BFBFBF;
    top: 12px;
    left: 0;
}

#swiper12 .swiper-slide {
    color: #444444;
    padding-top: 0.65rem;
    width: 11.1%;
    text-align: center;
}

#swiper12 .swiper-slide::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #BFBFBF;
}

#swiper12 .swiper-slide::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .2);
    /* background-color: #BFBFBF; */
}

#swiper12 .swiper-slide-active::after {
    width: 10px;
    height: 10px;
    background-color: #1543a1;
}

#swiper12 .swiper-slide-active {
    color:#00447d;
    font-size: .5rem;
}

.layout .point span {
    position: absolute;
    left: calc(100% + .4rem);
    top: 0;
    color: #fff;
    display: block;
    line-height: 1.2;
    white-space: nowrap;
}


/*æ–°åŠ å­—ä½“*/
.w1620 {
    width: 88%;
    margin: 0 auto;
    max-width: 1620px;
}

/*@font-face {
  font-family: "pop-b";
  src: url("../fonts/POPPINS-SEMIBOLD.woff2") format("woff2"),
    url("../fonts/POPPINS-SEMIBOLD.woff") format("woff"),
    url("../fonts/POPPINS-SEMIBOLD.ttf") format("truetype"),
    url("../fonts/POPPINS-SEMIBOLD.eot") format("embedded-opentype"),
    url("../fonts/POPPINS-SEMIBOLD.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "pop-m";
  src: url("../fonts/POPPINS-MEDIUM.woff2") format("woff2"),
    url("../fonts/POPPINS-MEDIUM.woff") format("woff"),
    url("../fonts/POPPINS-MEDIUM.ttf") format("truetype"),
    url("../fonts/POPPINS-MEDIUM.eot") format("embedded-opentype"),
    url("../fonts/POPPINS-MEDIUM.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "pop-r";
  src: url("../fonts/POPPINS-REGULAR.woff2") format("woff2"),
    url("../fonts/POPPINS-REGULAR.woff") format("woff"),
    url("../fonts/POPPINS-REGULAR.ttf") format("truetype"),
    url("../fonts/POPPINS-REGULAR.eot") format("embedded-opentype"),
    url("../fonts/POPPINS-REGULAR.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}*/

.fon-m {
    font-family: "Verdana", "Arial", Helvetica, Tahoma, sans-serif;
    font-weight: 400;
}

.fon-b {
    font-family: "Verdana", "Arial", Helvetica, Tahoma, sans-serif;
    font-weight: bold;
}

.fon-r {
    font-family: "Verdana", "Arial", Helvetica, Tahoma, sans-serif;
}

#zpostion {
    position: relative;
    top: -2.1rem;
}

.news {
    background: #fff;
}

.news-tip {
    margin-bottom: 1.25rem;
    align-items: self-start;
}

.news-tip span {
    padding: 7px 0;
    line-height: 1.2;
    margin-right:15px;
}

.news-tip .sp {
    border: 1px solid #666;
    padding: 6px 10px 4px;
    box-sizing: content-box;
    margin-right: .25rem;
    margin-bottom: .25rem;
    cursor: pointer;
    transition: all .5s;
}

.news-tip .spbox {
    width: calc(100% - 220px);
    margin-right: .2rem;
    margin-bottom: -.25rem;
}

.news-tip .sp:hover,
.news-tip .sp.cur {
    color: #03447c;
    border: 1px dashed #03447c;
}

.news .btm-wrap .li-wrap .li .cont {
    padding: .75rem 0 0;
}

@media (max-width:767px) {
    .news-tip span {
        width: 100%;
        margin-bottom: .25rem;
    }

    .news-tip .spbox {
        width: 100%;
        margin-right: 0.25rem;
    }

    .news-tip {
        margin-bottom: 1rem;
    }
}



.activity-list1 {}

.activity-list1 .title {
    margin-bottom: 1.2rem;
}

.activity-list1 .ulbox {
    margin-bottom: -1.25rem;
}

.activity-list1 .li {
    background-color: #f6f6f6;
    border-radius: .4rem;
    padding: 1.25rem 0;
    width: 48%;
    margin-bottom: 1.25rem;
}

.activity-list1 .li .img {
    width: 36%;
    /*height: 4.75rem;*/
    height: 7.5rem;
    overflow: hidden;
}

.activity-list1 .li .img img {
    /*width: 100%;
  height: 100%;
  object-fit: cover;*/
    transition: all .8s;
}

.activity-list1 .li .text {
    padding: 0 .75rem;
    width: 64%;
}

.activity-list1 .li .text .tit3 {
    margin-bottom: .3rem;
    transition: all .8s;
}

.activity-list1 .li .text .tit4 {
    height: calc(15px * 1.6 * 3);
    margin-bottom: .6rem;
    overflow: hidden;
}

.activity-list1 .li .bot .sp:nth-child(2) {
    margin-left: .65rem;
}

.activity-list1 .li .bot .sp img {
    margin-right: .2rem;
}

.activity-list1 .li .bot .sp span {
    line-height: 1.2;
}

.activity-list1 .li:hover .img img {
    transform: scale3d(1.1, 1.1, 1);
}

.activity-list1 .li:hover .tit3 {
    color: #03447c;
}

@media (max-width:1280px) {

    .activity-list1 .li .img,
    .activity-list1 .li .text {
        width: 100%;
    }

    .activity-list1 .li .text {
        padding: 0.75rem;
    }

    .activity-list1 .li .img {
        height: 13rem;
    }

    .activity-list1 .li {
        overflow: hidden;
    }
}

@media (max-width:768px) {
    .activity-list1 .li .img {
        height: 15rem;
    }

    .activity-list1 .li {
        padding-top: 0;
    }
}


@media (max-width:767px) {
    .activity-list1 .li {
        width: 100%;
    }

    .activity-list1 .li {
        margin-bottom: .85rem;
    }

    .activity-list1 .li .img {
        height: 14rem;
    }

    .activity-list1 .li {
        padding-top: 0;
    }
}


.activity-list2 {
    padding-top: 4rem;
}

.activity-list2 .ul {}

.activity-list2 .ul .li {
    padding: 2rem 0;
    border-bottom: 1px solid #e8e8e8;
    flex-flow: row-reverse wrap;
}

.activity-list2 .ul .li .text {
    width: 61.5%;
}

.activity-list2 .ul .li .time {
    margin-bottom: .25rem;
}

.activity-list2 .ul .li .tit3 {
    margin-bottom: .6rem;
    transition: all .6s;
}

.activity-list2 .ul .li .tit4 {
    height: calc(16px * 1.6 * 2);
    margin-bottom: 1.7rem;
    overflow: hidden;
}

.activity-list2 .ul .li .more {
    width: 170px;
    height: 50px;
    border: 1px solid #bfbfbf;
    border-radius: 50px;
    line-height: 1.2;
    transition: all .6s;
    color: #909090;
}

.activity-list2 .ul .li .more .icon {
    width: 20px;
    height: 15px;
    fill: #909090;
    margin-left: .25rem;
    transition: all .6s;
}

.activity-list2 .ul .li .img {
    width: 31.5%;
    height: 7.5rem;
    border-radius: .5rem;
}

.activity-list2 .ul .li .img img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    transition: all .6s;
}

.activity-list2 .ul .li:hover .img img {
    transform: scale3d(1.1, 1.1, 1);
}

.activity-list1 .li:hover .img img {
    transform: scale3d(1.1, 1.1, 1);
}

.activity-list2 .ul .li:hover .tit3 {
    color: #03447c;
}

.activity-list2 .ul .li:hover .more {
    color: #fff;
    background: #03447c;
    border: 1px solid #03447c;
}

.activity-list2 .ul .li:hover .more .icon {
    fill: #fff;
}

@media (max-width:767px) {
    .activity-list2 {
        padding-top: 2.5rem;
    }

    .activity-list2 .ul .li .text {
        width: 100%;
        padding: 1rem .6rem 0;
    }

    .activity-list2 .ul .li .img {
        width: 100%;
    }

    .activity-list2 .ul .li .more {
        width: 120px;
        height: 35px;
    }

    .activity-list2 .ul .li .tit4 {
        margin-bottom: .55rem;
    }

    .activity-list2 .ul .li {
        padding: 2rem 0 1rem;
    }
}

.news-info2 {
    background: #fff;
    padding: 3rem 0 2.65rem;
}

.news-info2 .wrap .cont .time {
    margin-bottom: .8rem;
}

.news-info2 .wrap {
    width: 1320px;
    max-width: 88%;
    margin: 0 auto;
}

.news-info2 .wrap .cont {
    width: 100% !important;
    background-color: transparent;
    padding: 0 !important;
}

.news-info2 .wrap .cont .intro {
    border-bottom: none;
    padding-bottom: 0 !important;
}

.news-info2 .wrap .cont .info-page {
    justify-content: center
}

.news-info2 .wrap .cont .info-page .back {
    width: 170px;
    height: 50px;
    border-radius: 50px;
}

.news-info2 .wrap .cont .info-page .back .icon {
    width: 22px;
    height: 16px;
    margin-left: .2rem;
    fill: #fff;
}

.news-info2 .wrap .cont .info-page .back:hover .icon {
    fill: #00447d;
    z-index: 4;
}

.news-info2 .wrap .cont .info-page .back {
    transition: all .5s;
}

.news-info2 .wrap .cont .info-page .back:hover {
    box-shadow: 0px 2px 15px 4px rgba(46, 115, 184, 0.05);
    background-color: transparent;
}

.zwarranty {
    padding: 3.75rem 0 3rem;
}

.zwarranty .w1320 {
    width: 1320px;
    max-width: 88%;
    margin: 0 auto;
}

.zwarranty .icon {
    width: 25px;
    height: 25px;
    fill: #717171;
    transition: all .5s;
}

.zwarranty .wrap .top-box .li .top-clk p {
    transition: all .5s;
    line-height: 1.2;
}

.zwarranty .wrap .top-box .li {
    padding: .55rem 0;
    margin-bottom: 0;
}

.zwarranty .wrap .top-box .li .btm-cont {
    line-height: 1.8;
    padding: 1.25rem 0 .5rem;
}

.zwarranty .wrap .top-box .li {
    border-bottom: 1px solid #e6e6e6;
}

.zwarranty .wrap .top-box .li .top-clk p {
    width: calc(100% - 60px);
    transition: all .5s;
}
@media (min-width:768px) {
    .zwarranty .wrap .top-box .li:hover .top-clk p {
        color: #03447c;
    }
}

.zwarranty .wrap .top-box .li.cur .top-clk p {
    color: #03447c;
}

.zwarranty .wrap .top-box .li.cur .top-clk .icon {
    transform: rotate(-45deg);
}



@media (max-width:767px) {
    .zwarranty .wrap .top-box .li .btm-cont {
        padding-top: .78rem;
    }
}

.zcases .wrap .top-screen {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 1.25rem;
    background-color: transparent;
    padding: 0;
    padding-bottom: .75rem;
    box-shadow: none;
}

.zcases .wrap .change-wrap .change-cont .li {
    border-radius: .5rem;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.06);
}

.cases .wrap .change-wrap .change-cont .li .intro {
    padding: .65rem .7rem .75rem;
    height: auto;

}

.cases .wrap .change-wrap .change-cont .li .intro .cont {
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}

.cases .wrap .change-wrap .change-cont .li:hover .intro .h2 {
    color: #00447d;
}

.zdownload .wrap .top-wrap {
    flex-flow: row wrap;
}

.zdownload .wrap .top-wrap .tab.type {
    margin-bottom: 0;
}

.zdownload .tab-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 2px solid #EFEFEF;
    margin-bottom: 1rem;
}

.zdownload .wrap .top-wrap {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 1.25rem;
}

.zdownload .wrap .top-wrap .tab-box span {
    width: auto;
    padding: .4rem .55rem;
    transition: all .5s;
    border-radius: 50px;
    margin-right: .3rem;
}

.zdownload .wrap .top-wrap .tab-box span a {
    color: #000;
}

.zdownload .wrap .top-wrap .tab-box span:hover,
.zdownload .wrap .top-wrap .tab-box span.cur {
    background: #00447d;
    color: #fff;
}

.zdownload .wrap .top-wrap .tab-box span:hover a,
.zdownload .wrap .top-wrap .tab-box span.cur a {
    color: #fff;
}

.zdownload .wrap .top-wrap .file .sp {
    margin-right: .7rem;
}

.zdownload .wrap .top-wrap .file span {
    width: auto;
    padding-left: 20px;
    margin-right: .7rem;
    position: relative;
}

.zdownload .wrap .top-wrap .file span:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 12px;
    left: 0;
    top: 50%;
    margin-top: -6px;
    background: url(../zimg/cur0.png) no-repeat center center;
    background-size: 100% 100%;
}

.zdownload .wrap .top-wrap .file span.cur:before {
    background: url(../zimg/cur1.png) no-repeat center center;
}


.zonline .wrap {
    width: 1000px;
    max-width: 90%;
}

.zonline .wrap .form-box {
    width: 100%;
}

.zonline .wrap .form-box .li-wrap .li .type {
    width: 110px;
    padding-right: 10px;
    margin-bottom: 0;
}

.zonline .wrap .form-box .li-wrap .li input {
    width: calc(100% - 110px);
    height: 36px;
}

.zonline .wrap .form-box .li-wrap .li {
    width: 47%;
    margin-right: 6%;
}

.zonline .wrap .form-box .sub-box .code-input div {
    position: relative;
}

.zonline .wrap .form-box .sub-box .code-input div:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 24px;
    background-color: #e5e5e5;
    right: 0;
    top: 50%;
    margin-top: -12px;
}

.zonline .wrap .form-box .sub-box .code-input {
    width: 55%;
}



.new-plan-info .overview {
    border-bottom: 1px solid #efefef;
}

.new-plan-info .overview .lf {
    width: 580px;
    margin-right: 40px;
}

.new-plan-info .overview .cases-swiper-box .img2 {
    width: 100%;
}

.new-plan-info .overview .lf .h1 {
    text-align: left;
}

.new-plan-info .overview .lf .cont {
    text-align: left;
    width: 100%;
    margin-left: 0;
}

.new-plan-info .overview .lf .play {
    margin: 0 0;
}

.new-plan-info .overview .cases-swiper-box {
    width: calc(100% - 620px);
    border-radius: 1rem;
    box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.06);
}

.new-plan-info .overview .icon {
    position: absolute;
    width: .9rem;
    height:.9rem;
    fill:#00447d;
    right: .55rem;
    bottom: .55rem;
}

.new-plan-info .overview {
    margin-bottom: 0;
    padding-bottom: 2.5rem;
}

.new-plan-info .advance {
    background-color: #fff;
    padding: 2.25rem 0 2rem;
    border-bottom: 1px solid #efefef;
}

.new-plan-info .advance .li-box {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.new-plan-info .advance .li-box .li {
    border: none;
    width: 23%;
    margin-right: 2%;
    border-radius: .4rem;
    background-color: #fff;
    padding: 1rem .75rem 1.25rem;
    transition: all .5s;
}

.new-plan-info .advance .li-box .li::after {
    display: none;
}

.new-plan-info .advance .li-box .li:hover {
    box-shadow: 0 5px 35px 0 rgba(0, 0, 0, .06);
    z-index: 6;
}

.new-plan-info {
    padding-bottom: 0;
}

.new-plan-info .hot-pro .hotPro-container {
    padding: 20px;
}

.new-plan-info .hot-pro .hotPro-container .swiper-slide {
    background-color: #fff;
    border-radius: .55rem;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .06);
    overflow: hidden;
}

.new-plan-info .hot-pro .hotPro-container .swiper-slide {
    width: 31.33%;
    margin-right: 2%;
}

.new-plan-info .hot-pro .hotPro-container .swiper-slide .intro {
    height: 3rem;
    padding: .65rem .75rem;
}

.new-plan-info .hot-pro .hotPro-container .swiper-slide .intro .h1 {
    margin-bottom: .5rem;
}

.new-plan-info .about-case {
    padding-bottom: 2.5rem;
}

@media (max-width: 1280px) {
    .new-plan-info .overview .lf {
        width: 100%;
        margin-bottom: 2rem;
    }

    .new-plan-info .overview .cases-swiper-box {
        width: 100%;
    }
}



.new-plan-info .about-case .li-box {
    padding: 0 20px;
}

.new-plan-info .about-case .li-box .li {
    border-radius: .55rem;
    background-color: #fff;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .06);
    overflow: hidden;
    width: 31%;
    margin-right: 3.5%;
}

.new-plan-info .about-case .li-box .li .intro {
    padding: .75rem;
    height: 5.5rem;
}

.new-plan-info .about-case .li-box .li .intro .h3,
.new-plan-info .hot-pro .hotPro-container .swiper-slide .intro .h2 {
    color: #909090;
    transition: all .5s;
}

.new-plan-info .about-case .li-box .li:hover .h3 {
    color: #03447c;
}


@media (max-width: 1280px) {
    .plan-info .w1620 {
        width: 92%;
    }
}

@media (max-width:767px) {
    .zonline .wrap .form-box .li-wrap .li {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 18px !important;
    }

    .zonline .wrap .form-box .li-wrap {
        margin-bottom: 0 !important;
    }

    .online .wrap .form-box .sub-box .code-input {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .zonline .wrap .form-box .sub-box .code-input div {
        display: flex !important;
        width: 3rem !important;
    }

    .zonline .wrap .form-box .sub-box .code-input div img {
        height: 18px;
    }

    .zonline .wrap .form-box .li-wrap .li .type {
        width: 90px;
    }

    .zonline .wrap .form-box .li-wrap .li input {
        width: calc(100% - 90px);
    }
}

.new-product .tab {
    padding-top: .55rem;
    margin-bottom: 1.25rem;
}

.new-product .tab .sp {
    margin-right: .5rem;
}

.new-product .tab span {
    padding-left: 26px;
    margin-right: 0.7rem;
    position: relative;
    cursor: pointer;
}

.new-product .tab span:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    margin-top: -8px;
    background: url(../zimg/cur2.png) no-repeat center center;
    background-size: 100% 100%;
}

.new-product .tab span.cur:before {
    background: url(../zimg/cur3.png) no-repeat center center;
    background-size: 100% 100%;
}

.new-product .tab span.cur {
    color: #00447d;
}

.new-product .cont-wrap .lf-side-box {
    width: 25%;
    margin-right: 5%;
}

.new-product .cont-wrap .lf-side .fis-li .clk-tit {
    padding: .725rem 1rem;
    border-radius: 50px;
    height: auto;
    color: #222;
}

.new-product .cont-wrap .lf-side .fis-li .slide-cont {
    background-color: transparent;
}

.new-product .cont-wrap .lf-side .fis-li .clk-tit:hover,
.new-product .cont-wrap .lf-side .fis-li .clk-tit.cur {
    background-color: #f6f6f6;
    color: #03447c;
}

.new-product .cont-wrap .lf-side .fis-li .clk-tit:hover .icon p,
.new-product .cont-wrap .lf-side .fis-li .clk-tit.cur .icon p {
    background-color: #f6f6f6;
    color: #03447c;
}

.new-product .cont-wrap .rg-box {
    width: 70%;
}

.new-product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: .5rem;
}

.new-product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-slide {
    padding-left: 0;
}

.new-product .cont-wrap .rg-box .li-box .li {
    width: 31%;
    margin-right: 3.5%;
    border-radius: .55rem;
    overflow: hidden;
}

.new-product .cont-wrap .rg-box .li-box .li:nth-child(4n) {
    margin-right: 3.5%;
}

.new-product .cont-wrap .rg-box .li-box .li:nth-child(3n) {
    margin-right: 0;
}

.new-product {
    background-color: #fff;
}

.new-product .cont-wrap .rg-box .li-box .li .pos-more {
    display: none;
}

.new-product .cont-wrap .rg-box .li-box .li .intro {
    width: 100%;
    height: 2.8rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-top: none;
}

.new-product .cont-wrap .rg-box .li-box .li .h1 {
    transition: all .8s;
}

.new-product .cont-wrap .rg-box .li-box .li {
    transition: all .8s;
    padding-bottom: .6rem;
}

.new-product .cont-wrap .rg-box .li-box .li:hover .h1 {
    color: #03447c;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit div span {
    width: 9px;
    height: 1px;
    background-color: #020202;
    transition: all .3s;
    transform: rotate(135deg);
    left: -6px;
    position: relative;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit div span:nth-child(2) {
    position: absolute;
    width: 1px;
    height: 9px;
    top: auto;
    left: auto;
    transform: translate(-50%, -50%);
    transform: rotate(135deg);
    left: 6px;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit.cur div span:nth-child(2) {
    height: 11px;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit div {
    left: -12px;
    transform: rotate(-180deg);
    transition: all .5s;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
}

.product .cont-wrap .lf-side .fis-li .slide-cont .sec-li .sec-tit.cur div {
    transform: rotate(0);
}

.n-about .about .wrap .lf .intro p {
    font-size: inherit;
    color: #03447c;
}

.n-about .about .wrap .lf .intro span {
    color: #03447c;
}

.n-about .about .wrap .lf .h1 {
    margin-bottom: 1.25rem;
}

.n-about .about .wrap .lf .li-wrap {
    border-top: none;
    border-bottom: none;
    padding: .8rem 0 0;
}

.n-about .about .wrap .pic {
    overflow: hidden;
    position: relative;
}

.n-about .about .wrap .pic img {
    border-radius: .5rem;
}

.n-about .about .wrap .pic .icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
}

.n-about .dev {
    background: url(../zimg/about2bg.jpg) no-repeat center bottom;
    background-size: cover;
}

.n-about .dev .warptext {
    width: 1100px;
    max-width: 80%;
    margin: 0 auto;
}

.n-about .dev #swiper11 .warptext .year {
    position: relative;

    top: 0;
    left: 0;
    transform: translateX(0);
    font-size: 2.5rem;
    line-height: 1.2;
    color: #03447c;
}

.n-about .dev #swiper11 .warptext .text {
    width: calc(100% - 280px);
}

.n-about #swiper11 .swiper-slide .tit {
    text-align: left;
}

.n-about #swiper11 .swiper-slide .cont {
    text-align: left;
}

.n-about #swiper11 .swiper-slide .cont {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: .6rem;
    height: 3rem;
    padding-right: 5px;
    overflow-y: auto;
}

.n-about #swiper11 .swiper-slide .tit {
    padding: 0;
}

.n-about .group-swiper {
    padding: 0 7.8%
}

.n-about #swiper12::after {
    background: #d6e4f3;
}

.n-about #swiper12 .swiper-slide {
    line-height: 1.2;
}

.n-about #swiper12 .swiper-slide::before {
    border: 1px solid #d6e4f3;
}

.n-about #swiper12 .swiper-slide::after {
    background: #d6e4f3;
}

.n-about #swiper12 .swiper-slide-active::before {
    border: 1px solid #03447c;
}

.n-about #swiper12 .swiper-slide-active::after {
    background: #03447c;
}

.n-about #swiper12 .swiper-slide-active {
    font-size: .9rem;
}

.n-about #swiper11 .swiper-button-prev,
.n-about #swiper11 .swiper-button-next {
    width: 45px;
    height: 45px;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    margin-top: -23.5px;
    content: '';
    box-sizing: content-box;
    transition: all .5s;
}

.n-about #swiper11 .swiper-button-prev:hover,
.n-about #swiper11 .swiper-button-next:hover {
    background-color: #03447c;
    border: 1px solid #03447c;
}

.n-about #swiper11 .swiper-button-prev:hover .icon,
.n-about #swiper11 .swiper-button-next:hover .icon {
    fill: #fff;
}

.n-about #swiper11 .swiper-button-prev:after {
    content: '';
}

.n-about #swiper11 .swiper-button-next:after {
    content: '';
}

.n-about #swiper11 .swiper-button-prev .icon,
.n-about #swiper11 .swiper-button-next .icon {
    width: .45rem;
    height: .35rem;
}

@media (max-width: 1280px) {
    .n-about .dev #swiper11 .warptext .text {
        width: calc(100% - 210px);
    }
}

@media (max-width: 767px) {
    .n-about .dev #swiper11 .warptext .year {
        width: 100%;
        margin-bottom: .85rem;
        text-align: left;
    }

    .n-about .dev #swiper11 .warptext .text {
        width: 100%;
    }

    .n-about .dev .warptext {
        width: 100%;
        max-width: none;
    }
}


.n-honor {
    padding: 2.5rem 0;
    background-color: #fff;
}

.n-honor .titbox {
    margin-bottom: 1.4rem;
}

.n-honor .honor-list {
    margin-top: 1.5rem;
}

.n-honor .buttonbox {
    width: 110px;
    height: 45px;
}

.n-honor .buttonbox .swiper-button-prev {
    left: 0;
}

.n-honor .buttonbox .swiper-button-next {
    right: 0;
}

.n-honor .buttonbox .swiper-button-prev,
.n-honor .buttonbox .swiper-button-next {
    width: 45px;
    height: 45px;
    border: 1px solid #d6d6d6;
    background: #fff;
    margin-top: -23.5px;
    content: '';
    box-sizing: content-box;
    border-radius: 50%;
    transition: all .5s;
}

.n-honor .buttonbox .swiper-button-prev:after,
.n-honor .buttonbox .swiper-button-next:after {
    display: none;
}

.n-honor .buttonbox .swiper-button-prev .icon,
.n-honor .buttonbox .swiper-button-next .icon {
    width: .45rem;
    height: .35rem;
}

.n-honor .buttonbox .swiper-button-prev:hover,
.n-honor .buttonbox .swiper-button-next:hover {
    background-color: #03447c;
    border: 1px solid #03447c;
}

.n-honor .buttonbox .swiper-button-prev:hover .icon,
.n-honor .buttonbox .swiper-button-next:hover .icon {
    fill: #fff;
}

.n-honor .swiper-slide {
    background-color: #f6fbff;
    border-radius: .4rem;
    overflow: hidden;
    transition: background .5s;
}

.n-honor .item {
    border-radius: .4rem;
    overflow: hidden;
    border: 1px solid #d4d4d4;
}

.n-honor .item .img {
    width: 100%;
    height: 10.5rem;
    padding: 1rem;
    background: #fff;
    overflow: hidden;
}

.n-honor .item .img a {
    width: 100%;
    height: 100%;
    display: block !important;
}

.n-honor .item .img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.n-honor .item .tit {
    padding: .4rem;
    border-top: 1px solid #d4d4d4;

}

.n-honor .swiper-slide:hover {
    background: #03447c;
    color: #fff;
}

.n-honor .swiper-slide:hover .item {
    border: 1px solid #d4d4d4;
}

@media (max-width: 767px) {
    .n-honor .titbox .tit {
        width: calc(100% - 120px);
        line-height: 1.2;
    }
}


.n-map {
    padding: 1.25rem 0 2.5rem;

}

.n-map .img {
    overflow-x: auto;
    position: relative;
    width:1420px;
    max-width:88%;
    margin:1rem auto 0;
}

.n-map .img2 {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 900px;
    z-index: 2;
}

.n-map .img img {
    min-width: 900px;
}

.n-map .img .text {
    position: absolute;
    width: 9rem;
    padding: 15px;
    border-radius: 10px;
    right: 33%;
    top: 40%;
    background: rgba(3, 68, 124, .2);
    z-index: 2;
}



@media (max-width: 1580px) {
    .n-map .img .text {
        width: 8.5rem;
    }
}

@media (max-width: 1024px) {
    .n-map .img .text {
        left: 380px;
    }
}


.banner-oem span {
    line-height: 1.4;
}

.banner-oem .hrefbtn {
    width: 170px;
    height: 50px;
    border-radius: 50px;
    background: #fff;
    color: #03447c;
    margin-top: 1.25rem;
}

.banner-oem .hrefbtn .icon {
    width: 16px;
    height: 15px;
    margin-left: .4rem;
    fill: #03447c;
}

.banner-oem .banner-intro {
    top: 50%;
}

@media (min-width:769px) and (max-width:1024px) {
    .head-rg {
        padding-right: 3%;
    }
}

.oem-list1 {
    background: #fff;
    padding: 3.5rem 0 3rem;
}

.oem-list1 .ul {
    margin-top: 2.5rem;
}

.oem-list1 .li {
    width: 25%;
    padding: 0 2%;
}

.oem-list1 .li .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto .5rem;
}

.oem-list1 .li .icon img {
    transition: all .5s;
}

.oem-list1 .li .icon .img2 {
    opacity: 0;
}

.oem-list1 .li .tit3 {
    width: 100%;
    transition: all .5s;
}

.oem-list1 .li .tit4 {
    width: 100%;
    margin-top: .25rem;
}

@media (min-width: 1024px) {
    .oem-list1 .li:hover .img1 {
        opacity: 0;
    }

    .oem-list1 .li:hover .img2 {
        opacity: 1;
    }

    .oem-list1 .li:hover .tit3 {
        color: #03447c;
    }
}




@media (max-width: 1024px) {
    .oem-list1 {
        padding: 2rem 0;
    }

    .oem-list1 .ul {
        margin-top: 1.2rem;
    }
    .oem-list1 .li .img1 {
        opacity: 0;
    }

    .oem-list1 .li .icon .img2 {
        opacity: 1;
    }

    .oem-list1 .li .tit3 {
        color: #03447c;
    }
}

@media (max-width:767px) {
    .oem-list1 .li {
        width: 50%;
        margin-bottom: .7rem;
    }
}

.oem-list2 {
    padding: 0 1.5rem;
}

.oem-list2 .bg {
    position: relative;
    width: 100%;
    height: 19.5rem;
    border-radius: .5rem;
}

.oem-list2 .leftbox {
    width: 48%;
}

.oem-list2 .text {
    z-index: 4;
}

.oem-list2 .tit3 {
    color: #040000;
    margin-top: 1.25rem;
}

.oem-list2 .img {
    width: 30.5%;
    margin-right: 2.78rem;
}

@media (max-width: 996px) {
    .oem-list2 .leftbox {
        width: 100%;
        margin-bottom: 1rem;
    }

    .oem-list2 .img {
        width: 100%;
        margin-right: 0;
    }

    .oem-list2 .bg {
        height: auto;
        padding: 1.5rem 0;
    }

    .oem-list2 .text {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }
}


.oem-list3 {
    padding: 4rem 0 3rem;
}

.oem-list3 .contentbox {
    margin-top: 1rem;
    padding: 0 35px;
}

.oem-list3 .contentbox .img {
    width: 100%;
    height: 9rem;
    border-radius: .5rem;
    background: #fff;
    padding: .65rem 1rem;
    margin-bottom: .55rem;
    transition: all .5s;
}

.oem-list3 .contentbox .img img {
    max-width: 100%;
    max-height: 100%;
}

.oem-list3 .contentbox .oem3-container {
    padding: 25px 10px;
}

.oem-list3 .contentbox .swiper-slide .img {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.06);
}

.oem-list3 .contentbox .swiper-slide .img img {
    transition: all .5s;
}

.oem-list3 .contentbox .swiper-slide:hover .img img {
    transform: scale3d(1.05, 1.05, 1);
}

.oem-list3 .swiper-button-prev {
    left: 3%;
}

.oem-list3 .swiper-button-next {
    right: 3%;
}

.oem-list3 .swiper-button-prev,
.oem-list3 .swiper-button-next {
    width: 45px;
    height: 45px;
    border: 1px solid #d6d6d6;
    background: #fff;
    margin-top: -23.5px;
    content: '';
    box-sizing: content-box;
    border-radius: 50%;
    transition: all .5s;
}

.oem-list3 .swiper-button-prev:after,
.oem-list3 .swiper-button-next:after {
    display: none;
}

.oem-list3 .swiper-button-prev .icon,
.oem-list3 .swiper-button-next .icon {
    width: .45rem;
    height: .35rem;
}

.oem-list3 .swiper-button-prev:hover,
.oem-list3 .swiper-button-next:hover {
    background-color: #03447c;
    border: 1px solid #03447c;
}

.oem-list3 .swiper-button-prev:hover .icon,
.oem-list3 .swiper-button-next:hover .icon {
    fill: #fff;
}

@media (max-width:767px) {
    .oem-list3 {
        padding: 2rem 0 0;
    }

    .oem-list3 .contentbox {
        margin-top: 0;
    }
}

.oem-list4 {
    padding: 3.5rem 0 1.7rem;
    background: #fff;
    position: relative;
    z-index: 2;
}

.oem-list4 .imgbox-container {
    padding-bottom: 1.25rem;
}

.oem-list4 .imgbox-container .img {
    border-radius: .5rem;
    overflow: hidden;
    height: 6.5rem;
}

.oem-list4 .imgbox-container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oem-list4 .imgbox {
    margin-top: 6.15rem;
}

.oem-list4 .imgbox .swiper-pagination {
    bottom: 0;
}

.oem-list4 .imgbox .swiper-pagination span {
    background-color: #bbbcbc;
}

.oem-list4 .imgbox .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #03447c;
}

.oem-list4 .warpimg {
    width: 1040px;
    margin: 0 auto;
}

.oem-list4 .warpimg .item {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.oem-list4 .warpimg .item:nth-child(1){
    left: 3.5%;
    top: 2%;
}

.oem-list4 .warpimg .itembox {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.oem-list4 .warpimg .item img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    transition: all .5s;
}

.oem-list4 .warpimg .item img:nth-child(2) {
    opacity: 0;
}

.oem-list4 .warpimg .item.cur img:nth-child(1) {
    opacity: 0;
}

.oem-list4 .warpimg .item.cur img:nth-child(2) {
    opacity: 1;
}

.oem-list4 .itemimg {
    border-radius: .55rem;
    padding: 10px 10px .5rem;
    width: 8rem;
    background-color: #f6f6f6;
    position: absolute;
    cursor: pointer;
    z-index: 6;
    transition: all .5s;
}

.oem-list4 .itemimg .img {
    border-radius: .55rem;
    overflow: hidden;
}

.oem-list4 .itemimg .img img {
    transition: all .5s;
}

.oem-list4 .itemimg p {
    margin-top: .5rem;
    line-height: 1.2;
    text-align: center;
}

.oem-list4 .itemimg1 {
    bottom: -21%;
    left: 12%;
}

.oem-list4 .itemimg2 {
    bottom: 9%;
    left: -23%;
}

.oem-list4 .itemimg3 {
    bottom: 43%;
    left: -21%;
}

.oem-list4 .itemimg4 {
    top: 6%;
    left: 20.5%;
}

.oem-list4 .itemimg5 {
    top: 2%;
    right: -29%;
}

.oem-list4 .itemimg6 {
    top: 43%;
    right: -29%;
}

.oem-list4 .itemimg7 {
    top: 81%;
    right: -21%;
}

.oem-list4 .itemimg:hover,
.oem-list4 .itemimg.cur {
    background: #fff;
    box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.06);
}

.oem-list4 .itemimg:hover img {
    transform: scale3d(1.1, 1.1, 1);
}

.oem-list4 .tabul-container {
    margin-top: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #d1d1d1;
    overflow: hidden;
}

.oem-list4 .tabul-container .swiper-slide {
    width: auto;
}

.oem-list4 .tabul-container .li {
    position: relative;
    transition: all .5s;
}

.oem-list4 .tabul-container .li.cur {
    color: #03447c;
}

.oem-list4 .tabul-container .li.cur:before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 2px;
    bottom: -.75rem;
    background-color: #03447c;
    opacity: 0;
}

.oem-list4 .tabul-container .li.cur:before {

    opacity: 1;
}

@media (max-width: 1681px) {

    .oem-list4 .itemimg1 {
        bottom: -16%;
        left: 15%;
    }

    .oem-list4 .itemimg2 {
        bottom: 9%;
        left: -23%;
    }

    .oem-list4 .itemimg3 {
        bottom: 43%;
        left: -12%;
    }

    .oem-list4 .itemimg4 {
        top: 6%;
        left: 26.5%;
    }

    .oem-list4 .itemimg5 {
        top: 2%;
        right: -18%;
    }

    .oem-list4 .itemimg6 {
        top: 43%;
        right: -17%;
    }

    .oem-list4 .itemimg7 {
        top: 81%;
        right: -10%;
    }


}

@media (max-width: 1481px) {

    .oem-list4 .itemimg1 {
        bottom: -16%;
        left: 12%;
    }

    .oem-list4 .itemimg2 {
        bottom: 9%;
        left: -9%;
    }

    .oem-list4 .itemimg3 {
        bottom: 43%;
        left: -9%;
    }

    .oem-list4 .itemimg4 {
        top: 6%;
        left: 31%;
    }

    .oem-list4 .itemimg5 {
        top: 2%;
        right: -7%;
    }

    .oem-list4 .itemimg6 {
        top: 43%;
        right: -7%;
    }

    .oem-list4 .itemimg7 {
        top: 81%;
        right: 2%;
    }


}

@media (max-width: 1281px) {
    .oem-list4 .itemimg {
        width: 240px;
    }

    .oem-list4 .mapbox {
        transform: scale3d(.8, .8, 1);
    }

    .oem-list4 .imgbox {
        margin-top: 4.5rem;
    }

}

@media (max-width: 1024px) {
    .oem-list4 .imgbox {
        margin-top: 1.5rem;
    }

    .oem-list4 {
        padding-top: 1.5rem;
    }
}


.oem-list5 {
    padding: 3rem 0;
}

.oem-list5 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.oem-list5 .tit2 {
    margin-bottom: 1rem;
}

.oem-list5 .formbox {
    width: 20rem;
}

.oem-list5 .input1 {
    width: 49%;
    height: 65px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background: #f9f9f9;
    padding: 0 .6rem;
    margin-bottom: 2%;
}

.oem-list5 .contentbox {
    position: relative;
    z-index: 3;
}

.oem-list5 .contentbox .input2 {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    padding: .4rem .6rem;
    height: 5.5rem;
    margin-bottom: .75rem;
}

.oem-list5 .contentbox .coadbox {
    width: 100%;
}

.oem-list5 .contentbox .coadbox .input1 {
    width: 100%;
    padding-right: 180px;
}

.oem-list5 .contentbox .coadbox .captcha {
    width: 150px;
    height: 65px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.oem-list5 .contentbox .input3 {
    width: 10rem;
    height: 1.75rem;
    border-radius: 1.75rem;
    background: #03447c url(../zimg/osm5icon1.png) no-repeat 60% 50%;
    padding-right: 1rem;
    transition: all .5s;
}

.oem-list5 .contentbox .input3:hover {
    background-color: #0069c1;
}

@media (max-width: 996px) {
    .oem-list5 .input1 {
        height: 45px;
    }

    .oem-list5 .contentbox .input2 {
        height: 3.5rem;
    }

    .oem-list5 .contentbox .coadbox .captcha {
        width: 120px;
        height: 45px;
    }

    .oem-list5 .formbox {
        width: 16rem;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .oem-list5 {
        padding: 2rem 0;
    }
}



@media (max-width: 1024px) {
    .pc-head {
        width: 100%;
        padding-left: 5%;
    }

    .logo a svg {
        width: auto;
        height: 1rem;
    }
}

@media (max-width: 767px) {
    .logo a {
        width: auto;
    }

    .logo a svg {
        height: 0.7rem;
    }
}

#all-container {
    height: auto;
    position: relative;
    z-index: 2;
}

#all-container .ban-container .swiper-slide .ban-font .more {
    display: block;
    width: 4.25rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    background-color: #ffffff;
    border-radius: 0.55rem;
    color: #03447c;
}

#all-container .ban-container .swiper-slide .ban-font .more svg {
    /*fill:#03447c;*/
    stroke: #03447c;
}

.ilist2 {
    padding: 2.75rem 0 .65rem;
    background: #fff;
    position: relative;
    z-index: 3;
}

.ilist2 .tit2 span {
    color: #03447c;
}

.ilist2 .por-container {
    margin-top: 1.5rem;
    padding: 20px 0 1.5rem;
}

.ilist2 .por-container .item {
    padding: 24px 70px;
}

.ilist2 .por-container .text {
    width: 48%;
}

.ilist2 .por-container .text .tit3 {
    color: #000;
    padding-bottom: .25rem;
    margin-bottom: .3rem;
    border-bottom: 1px solid #e4e4e4;
    transition: all .5s;
}

.ilist2 .por-container .text .tit4 {
    margin-bottom: 1.5rem;
}

.ilist2 .por-container .img {
    width: 48%;
    height: 10rem;
    padding-top: .5rem;
}

.ilist2 .por-container .img img {
    max-height: 100%;
}

.ilist2 .por-container .swiper-slide {
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.06);
}

.ilist2 .por-container .more {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #f6f6f6;
    transition: all .5s;
}

.ilist2 .por-container .more .icon {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: all .5s;
}

.ilist2 .por-container .swiper-pagination {
    bottom: 0;
}

.ilist2 .por-container .swiper-pagination span {
    width: 1rem;
    height: 3px;
    background: #e2e2e2;
    margin: 0 4px;
    border-radius: 0 !important;
    opacity: 1;
}

.ilist2 .por-container .swiper-pagination span.swiper-pagination-bullet-active {
    background: #03447c;
}

.ilist2 .por-container .swiper-slide:hover .tit3 {
    color: #03447c;
}

.ilist2 .por-container .swiper-slide:hover .more {
    background-color: #03447c;
}

.ilist2 .por-container .swiper-slide:hover .icon {
    fill: #fff;
}

@media (max-width: 768px) {
    .ilist2 .por-container .text {
        width: 100%;
        margin-bottom: .65rem;
    }

    .ilist2 .por-container .img {
        width: 100%;
    }

    .ilist2 .por-container .item {
        padding: 1rem 1.25rem;
    }

}

@media (max-width: 767px) {
    .ilist2 .por-container {
        margin-top: 1rem;
    }


}

.ilist3 {
    position: relative;
    background: #fff;
    padding-bottom: 3rem;
}

.ilist3 .bg {
    position: relative;
    width: 100%;
    height: 35px;
}

.ilist3 .tabul {
    margin-top: 2.5rem;
}

.ilist3 .tabul .li {
    margin: 0 .35rem;
    padding: 15px .65rem;
    background: #f1f1f1;
    border-radius: 50px;
    cursor: pointer;
}

.ilist3 .tabul .li img {
    margin-right: .25rem;
    width: .75rem;
    filter: grayscale(0);
    opacity: 1;
}

.ilist3 .tabul .li:hover,
.ilist3 .tabul .li.cur {
    background: #03447c;
    color: #fff;
    transition: all .6s;
}

.ilist3 .tabul .li:hover img,
.ilist3 .tabul .li.cur img {
    filter: grayscale(100%) brightness(10);
    opacity: .95;
}

.ilist3 .warpbox {
    margin-top: 2rem;
}

.ilist3 .leftbox {
    width: 44%;
}

.ilist3 .img {
    width: 52%;
    border-radius: .55rem;
    box-shadow: 5px 5px 15px 0 rgb(0, 0, 0, .1);
}

.ilist3 .img .btn {
    width: 2.25rem;
    height: 2.25rem;
    background: #fff;
    z-index: 3;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-right-radius: .55rem;
    border-top-left-radius: .55rem;
}

.ilist3 .img .btn img {
    width: .7rem;
}

.ilist3 .leftbox .tit3 {
    margin-bottom: 1.5rem;
}

.ilist3 .leftbox .tit3 span {
    color: #03447c;
}

.ilist3 .leftbox .more {
    display: block;
    width: 4.25rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    background-color: #00447d;
    border-radius: 0.55rem;
    color: #fff;
}

.ilist3 .tabitem {
    display: none;
}

@media (max-width: 996px) {
    .ilist3 .leftbox .tit3 {
        margin-bottom: 1rem;
    }

    .ilist3 .leftbox {
        width: 100%;
        margin-bottom: 1rem;
    }

    .ilist3 .img {
        width: 100%;
    }

    .ilist3 .leftbox .more {
        margin: 0 auto;
    }
}

@media (max-width: 996px) {
    .ilist3 .leftbox .tit3 {
        text-align: center;
    }
}

@media (max-width:767px) {
    .ilist3 .leftbox .tit3,.ilist4 .tit2{
        font-size:26px;
        line-height:1.2;
    }

    .ilist3 .tabul .li {
        font-size: 12px;
        margin: 0 0.1rem;
        padding: 10px 0.2rem;
        /*width:23%;*/
        width: 31%;
        line-height: 1.2;
    }

    .ilist3 .tabul .li img {
        display: none;
    }

    .ilist3 .tabul {
        width: 94%;
    }

    .ilist3 .m-block {
        width: 100%;
    }

    .ilist3 .tabul {
        margin-top: 1.5rem;
    }

    .ilist3 .img .btn {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.ilist4 {
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.ilist4 .contentbox {
    padding: 3.85rem 0 2rem;
    overflow: hidden;
}

.ilist4 .contentbox .bg {
    position: absolute;
    width: calc(100% - 3rem);
    height: 100%;
    left: 1.5rem;
    top: 0;
    z-index: 1;
    border-radius: 0.5rem;
}

.ilist4 .contentbox .warpbox {
    position: relative;
    z-index: 4;
}

.ilist4 .tit2 {
    margin-bottom: 2.25rem;
}

.ilist4 .ul {
    margin-bottom: 1.5rem;
}

.ilist4 .li {
    width: 25%;
    padding-left: 2.25rem;
    padding-right: 1rem;
}

.ilist4 .li .icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: .5rem;
}

.ilist4 .more {
    display: block;
    width: 4.25rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    background-color: #ffffff;
    border-radius: 0.55rem;
    color: #03447c;
    margin: 0 auto;
}

.ilist4 .more svg {
    /*fill:#03447c;*/
    stroke: #03447c;
}

@media (max-width: 996px) {
    .ilist4 .li {
        padding-left: 1%;
        padding-right: 1%;
        display: flex;
        flex-flow: column wrap;
        justify-content: flex-start;
        align-items: center;
    }

    .ilist4 .li .tit4 {
        text-align: center;
    }

}

@media (max-width:767px) {
    .ilist4 {
        padding: 0 5%;
    }

    .ilist4 .contentbox .bg {
        width: 92%;
        left: 4%;
    }

    .ilist4 .li {
        width: 50%;
        margin-bottom: .85rem;
    }

    .ilist4 .li {
        align-items: flex-start;
        padding-right: 4%;
    }

    .ilist4 .li .tit4 {
        text-align: left;
    }
}




.ilist5 {
    background: #fff;
    padding: 2rem 0 3.25rem;
    position: relative;
    z-index: 3;
}

.ilist5 .titlebox {
    margin-bottom: 2rem;
}

.ilist5 .leftbox {
    width: 46%;
    height: 10rem;
    margin-right: 7%;
}

.ilist5 .leftbox img {
    border-radius: .55rem;
}

.ilist5 .rightbox {
    width: 47%;
}

.ilist5 .rightbox .li {
    margin-bottom: 1.35rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid #e8e8e8;
    display: block;
}

.ilist5 .rightbox .li:last-child {
    margin-bottom: 0;
}


.ilist5 .more {
    display: block;
    width: 4.25rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    background-color: #00447d;
    border-radius: 0.55rem;
    color: #fff;
}

.ilist5 .rightbox .li .tit3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: .25rem;
}

.ilist5 .rightbox .li .tipbtn {
    padding: 0 .25rem;
    background-color: #e2e2e2;
    border-radius: 28px;
    height: 28px;
    margin-right: .5rem;
    transition: all .5s;
}

.ilist5 .rightbox .li:hover .tipbtn,
.ilist5 .rightbox .li.cur .tipbtn {
    background: #00447d;
    color: #fff;
}

@media (max-width: 768px) {
    .ilist5 .leftbox {
        width: 100%;
        margin-bottom: 1.25rem;
        margin-right: 0;
    }

    .ilist5 .rightbox {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .ilist5 {
        padding: 2rem 0;
    }

    .ilist5 .m-block-768 {
        margin: 1rem auto 0;
        width: 4.25rem;
    }
}

.footer .formbox {
    width: 312px;
    border: 1px solid #777777;
    height: 42px;
    border-radius: 40px;
}

.footer .formbox form {
    width: 100%;
    height: 40px;

}

.footer .formbox .input1 {
    width: 210px;
    padding: 0 .4rem;
    height: 40px;
    border: none;
    background: transparent;

}

.footer .formbox .input2 {
    width: 96px;
    height: 40px;
    border-radius: 40px;
    line-height: 40px;
    background: #00447d;
    color: #fff;

}

@media (max-width: 1681px) {
    .activity-list1 .li .text .tit4 {
        height: calc(14px * 1.6 * 3);
    }

    .activity-list2 .ul .li .tit4 {
        height: calc(15px * 1.6 * 3);
    }
}

@media (max-width: 1481px) {
    .activity-list1 .li .text .tit4 {
        height: calc(13px * 1.6 * 3);
    }

    .activity-list2 .ul .li .tit4 {
        height: calc(14px * 1.6 * 3);
    }
}

@media (max-width: 1281px) {
    .activity-list1 .li .text .tit4 {
        height: calc(12px * 1.6 * 3);
    }

    .activity-list2 .ul .li .tit4 {
        height: calc(13px * 1.6 * 3);
    }
}

@media (max-width: 768px) {
    .activity-list2 .ul .li .tit4 {
        height: calc(12px * 1.6 * 3);
    }
}


.new-product .cont-wrap .rg-box .li-box .li {
    transition: all .5s;
}

.new-product .cont-wrap .rg-box .li-box .li:hover {
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.06);
}


/*æ•ˆæœ*/
/*
#all-container .ban-container .swiper-slide .ban-font .more:hover{

  color:#fff;
}*/
.pub-svg {
    transition: all .5s 0s;
}

.pub-svg:hover {
    background: transparent;
    transition: all .5s .3s;
}

#all-container .ban-container .swiper-slide .ban-font .more,
.ilist4 .more {
    transition: all .5s 0s;
}

#all-container .ban-container .swiper-slide .ban-font .more:hover,
.ilist4 .more:hover {
    background: transparent;
    transition: all .5s .3s;
}

#all-container .ban-container .swiper-slide .ban-font .more:hover span,
.ilist4 .more:hover span {
    color: #fff;
}

#all-container .ban-container .swiper-slide .ban-font .more:hover:after,
.ilist4 .more:hover:after {
    background-color: #03447c;
}

#all-container .ban-container .swiper-slide .ban-font .more:hover svg,
.ilist4 .more:hover svg {
    stroke: #fff;
}

.plan-info .overview .lf .play:hover span {
    color: #fff;
}

.plan-info .overview .lf .play:hover div {
    color: #fff;
}

.banner-oem .hrefbtn {
    transition: all .5s;
}

.banner-oem .hrefbtn:hover {
    background-color: #03447c;
    color: #fff;
}

.banner-oem .hrefbtn:hover .icon,
.news-info2 .wrap .cont .info-page .back:hover .icon {
    fill: #fff;
}

.ilist5 .leftbox {
    overflow: hidden;
    border-radius: .5rem;
}

.ilist5 .leftbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale3d(1, 1, 1);
    transition: all .5s;
}

.ilist5 .leftbox:hover img {
    transform: scale3d(1.1, 1.1, 1);
}

.ilist3 {
    overflow: hidden;
}

.n-about .about .wrap .pic {
    border-radius: .5rem;
}

.n-about .about .wrap .pic img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.online .wrap .form-box .top-select .box .li,
.online .wrap .form-box .top-select .box .li p {
    border-radius: .35rem;
}

.online .wrap .form-box .li-wrap .li input {
    border-radius: 1.25rem;
}

.online .wrap .form-box .text-wrap textarea {
    border-radius: .5rem;
}

.online .wrap .form-box .sub-box .code-input {
    border-radius: 1.25rem;
    overflow: hidden;
}

.old-pop-online .wrap .form-box {
    width: 100%;
}

.old-pop-online .wrap .form-box .li-wrap,
.online .wrap .form-box .text-wrap {
    margin-bottom: .4rem;
}

.cultrue .wrap .top-li .pos-cont .intro {
    line-height: 1.4;
}

.n-about #swiper12 .swiper-slide {
    cursor: pointer;
}

.n-about .about .wrap .pic img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: all .5s;
}

.n-about .about .wrap .pic:hover img {
    transform: scale3d(1.1, 1.1, 1);
}


#swiper12 .swiper-slide {
    font-family: "Arial";
}

#swiper12 .swiper-slide.swiper-slide-active {
    font-weight: bold;
}

#swiper11.swiper-container-fade .swiper-slide {
    transition-property: inherit !important;
}

#swiper11.swiper-container-fade .swiper-slide .warptext {
    opacity: 0;
    transition: opacity .5s;
}

#swiper11.swiper-container-fade .swiper-slide-active.swiper-slide .warptext {
    opacity: 1;
}

.plan .wrap .li .lf .more {
    display: block;
    width: 4.25rem;
    height: 1.1rem;
    line-height: 1.1rem;
    text-align: center;
    background-color: #00447d;
    border-radius: 0.55rem;
    color: #fff;
    margin-top: 1rem;
}

@media (max-width: 769px) {
    .new-product .cont-wrap .lf-side .fis-li .clk-tit {
        border-radius: 0;
    }

    .new-product .cont-wrap .lf-side .fis-li .slide-cont {
        background-color: #fff;
    }

    .sales .wrap .li {
        margin-right: 0 !important;
    }

    .sales .wrap .li .h1 {
        height: auto;
        line-height: 1.2;

    }
}

@media (max-width: 1024px) {

    .ilist5 .more,
    .ilist4 .more,
    .ilist3 .leftbox .more,
    #all-container .ban-container .swiper-slide .ban-font .more,
    .plan .wrap .li .lf .more {
        width: 140px !important;
    }

}

@media (max-width: 768px) {
    .ilist5 .more {
        margin-top: .55rem;
    }
}

@media (max-width: 767px) {
    .new-product .tab .sp {
        width: 100%;
    }
}

.ilist4 .li sup {
    top: 8px;
    margin-left: .25rem;
}

.news-info .f-share {
    display: flex;
    margin-bottom: 1rem;
    margin-left: .65rem;
}

.news-info .f-share a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 0;
    margin: 0;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 .15rem;
    margin-top: -6px;
}

.news-info .f-share span {
    margin-right: 5px;
}

.news-info .f-share a img {
    width: auto;
    height: 13px;
}

.news-info .wrap .cont .time {
    width: 100%;
}

.news-info .f-share {
    width: 100%;
    margin-left: 0;
}
}

.sec-nav.pro-sec-nav .wrap .li4 .subli-item {
    display: none;
}

.sec-nav.pro-sec-nav .wrap .li5 .warp2item {
    display: none;
}

.sec-nav.pro-sec-nav .wrap .li5 .subli2-item {
    display: none;
}

@media (min-width: 767px) {
    .ilist4 .tit2 br {
        display: none;
    }


}

/*.sec-nav.pro-sec-nav{
  display:block !important;
}*/

.sec-nav.pro-sec-nav .wrap .li6 .img {
    height: 4rem;
    background: #d7e6fb;
    border-radius: .25rem;
    overflow: hidden;
}

.sec-nav.pro-sec-nav .wrap .li6 .img img {
    max-width: 90%;
    max-height: 90%;
}

/*.sec-nav.pro-sec-nav {
  height: 300px;
  overflow-y: auto;
}*/

.sec-nav.pro-sec-nav::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.mb-head .mb-nav-scd a {
    color: #fff !important;
}

.n-about .about .wrap .pic .icon {
    z-index: 3;
}

.n-about .about .wrap .video-btn {
    z-index: 2;
}

.n-about .about .wrap .pic img {
    z-index: 1;
}

@media (max-width:996px) {
    .case-info-swiper-box {
        width: 100%
    }

    .case-info .btm .wrap .intro .cont {
        overflow: initial;
        max-height: none;
    }
}

@media (max-width: 767px) {
    .sales .wrap2 .li .list p {
        line-height: 1.4;
    }

    .sales .wrap2 .li .h1 {
        line-height: 1.2;
    }

    .office .wrap .li .intro .list .rg p {
        font-size: 13px;
    }

    .ilist2 .tit2 {
        padding: 0 5%;
    }

    .footer .formbox {
        width: 100%;
    }

    .news-info .f-share a {
        width: 1rem;
        height: 1rem;
    }

    .mb-nav-frs::after {
        right: 0.3rem;
    }

    .office .wrap .li .intro .list {
        margin-bottom: 0.3rem;
    }

    .office .wrap .li .intro .list:last-child .lf {
        margin-top: 0;
    }


}


#all-container .ban-container .swiper-slide {
    overflow: hidden;
}

#homevideo {
    position: relative;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.ban-container .play {
    width: 2rem;
    height: 2rem;
    display: none;
}

.ban-container .play svg {
    width: 2rem;
    height: 2rem;
}

.online .wrap .form-box .sub-box .code-input .captcha_ok {
    line-height: 1.25rem;
    padding-right: 0.5rem;
}

.way .intro {
    padding: 0 5%;
}

.n-honor .honor-list .honor-container {
    padding: 0 2px 0 0;
}

.oem-list5 .contentbox .coadbox {
    position: relative;
}

.oem-list5 .contentbox .coadbox .captcha_ok {
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translate(0, -70%);
}


/*@media (max-width:1481px) {
  .sec-nav.pro-sec-nav {
    height: 240px;
  }
}*/

/*.ilist3 .leftbox .more:hover:after{
  background-color: #0069c1;
}
.ilist3 .leftbox .more:hover span{
  color:#fff;
}
.ilist3 .leftbox .more:hover svg{
  stroke: #fff;
}*/
.pro-info {
    padding: 0;
}

.n-prolist1 {
    height: auto;
    width: 100%;
    position: relative;
}

.n-prolist1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}

.n-prolist1 .contentbox {
    padding-top: 4rem;
    padding-bottom: 2.25rem;
    position: relative;
    z-index: 3;
}

.n-prolist1 .contentbox .leftbox {
    width: 50%;
    padding-top: 1.75rem;
}

.n-prolist1 .contentbox .leftbox .tit3 {
    color: #fff;
    margin-bottom: 5px;
}

.n-prolist1 .contentbox .leftbox .tit4 {
    color: #fff;
    margin-bottom: .7rem;
}

.n-prolist1 .contentbox .leftbox .tipbox {
    margin-bottom: .7rem;
}

.n-prolist1 .contentbox .leftbox .tipli {
    min-width: 4rem;
    background: #fff;
    height: 40px;
    border-radius: 40px;
    margin-right: .25rem;
    color: #03447c;
    padding:0 .5rem;
}

.n-prolist1 .contentbox .leftbox .p {
    color: #474747;
    margin-bottom: 2.5rem;
}

.n-prolist1 .contentbox .btnbox a {
    width: 1.5rem;
    height: 1.5rem;
    background: #fff;
    border-radius: 50%;
    margin-right: .5rem;
}

.n-prolist1 .contentbox .rightbox {
    /*width:32%;*/

    width: 43.2%;
    height: 17.5rem;
}

.n-prolist2 {
    padding: 3rem 0 6rem;
    position: relative;
    z-index: 3;
    background: #fff;
}

.n-prolist2 .tit2 {
    margin-bottom: 2.8rem;
}

.n-prolist2 .leftbox,
.n-prolist2 .rightbox {
    padding-top: 1.5rem;
    width: 25%;
}

.n-prolist2 .tit4 {
    color: #03447c;
    margin-bottom: .5rem;

}

.n-prolist2 .item .tit5 {
    min-height: 130px;
}

.n-prolist2 .item {
    margin-bottom: 1.75rem;
}

.n-prolist2 .imgbox {
    width: 35%;
    height: 16.75rem;
}

.n-prolist2 .img {
    z-index: 4;
    max-height: 100%;
}

.n-prolist2 .img1 {
    position: relative;
    z-index: 1;
    max-height: 100%;
}

.pro-info .wrap .info-vid {
    margin-bottom: 0;
}

.info-vid {
    width: 100%;
    /*height:19rem;*/
    background: #000;
    position: relative;
    z-index: 1;
}

.info-vid .play p {
    margin-bottom: 20px;
}

.pro-info .wrap .tech-para {
    border-top: 1px solid transparent;
    padding: 3rem 0 1rem;
}

.pro-info .wrap .tech-para .box .li-wrap .intro {
    background-color: transparent;
    border-bottom: 1px solid #e5e5e5;
}

.pro-info .wrap .tech-para .box .li-wrap .intro {
    padding: .5rem;
    color: #03447c;
    height: auto;
    line-height: 1.2;
}

.pro-info .wrap .tech-para .box .li-wrap .list p {
    padding: .4rem .5rem;
}

.pro-info .wrap .tech-para .box .li-wrap .list p span {
    min-height: auto;
    line-height: 1.4;
}

.pro-info .wrap .tech-para .box .li-wrap {
    width: 47%;
    margin-right: 6%;
}

.pro-info .wrap .about-down {
    border-top: 1px solid transparent;
    padding: 1rem 0 3.5rem;
}

.pro-info .wrap .about-down .tit {
    margin-bottom: .9rem;
}

.pro-info .wrap .about-down .li-box .li {
    height: auto;
    margin-right: 2%;
    margin-bottom: 0;
    padding: .75rem 1.25rem .75rem 0.4rem;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    width: 45.5%;
    margin-right: 9%;
    transition: all .5s;
}

.pro-info .wrap .about-down .li-box .li:hover {
    background: transparent;
    color: #03447c;
    border-bottom: 1px solid #cddae5;
}

.pro-info .wrap .about-down .li-box .li:hover .cont {
    color: #03447c;
}

.pro-info .wrap .about-down .tabul {
    margin-bottom: 1.9rem;
}

.pro-info .wrap .about-down .tabul .li {
    padding: 0 .85rem;
    height: 50px;
    color: #212121;
    margin: 0 .35rem;
    background: #f5f5f5;
    border-radius: 50px;
    cursor: pointer;
    transition: all .5s;
}

.pro-info .wrap .about-down .tabul .li:hover,
.pro-info .wrap .about-down .tabul .li.cur {
    background: #03447c;
    color: #fff;
}

@media (max-width: 1480px) {
    .n-prolist1 .contentbox {
        padding-top: 4rem;
    }
}

@media (max-width:1024px) {
    .pro-info {
        padding: 0 !important;
    }

    .n-prolist1 {
        height: auto;
        padding-bottom: 1.5rem;
    }

    .n-prolist1 .contentbox .leftbox {
        width: 100%;
        margin-bottom: 1.5rem;
        padding-top: 0;
    }

    .n-prolist1 .contentbox .rightbox {
        width: 100%;
    }
}

@media (max-width:996px) {
    .n-prolist1 .contentbox {
        padding-top: 3.5rem;
    }
}

@media (max-width:767px) {
    .n-prolist1 .contentbox .rightbox {
        height: 12rem;
    }

    .n-prolist2 .tit2 {
        margin-bottom: 1.25rem;
    }

    .n-prolist2 .leftbox,
    .n-prolist2 .rightbox {
        width: 100%;
        margin-bottom: 0;
        padding-top: 0;
    }

    .n-prolist2 .imgbox {
        position: relative;
        width: 100%;
        margin-top: 1rem;
    }

    .n-prolist2 .item {
        margin-bottom: .85rem;
    }

    .n-prolist2 .item .tit5 {
        min-height: auto;
    }

    .n-prolist2 {
        padding-bottom: 3rem;
    }

    /*.info-vid{
        height:12rem;
    }*/
    .pro-info .wrap .about-down .tabul .li {
        width: 100%;
        height: 40px;
        margin-bottom: .45rem;
    }

    .pro-info .wrap .about-down .tabul {
        margin-bottom: .9rem;
    }

    .pro-info .wrap .about-down {
        padding-bottom: 1.2rem !important;
    }

    .n-prolist1 .contentbox .leftbox .p {
        margin-bottom: 1.5rem;
    }

    .n-prolist1 .contentbox .btnbox a img {
        width: .5rem;
    }

    .n-prolist2 .imgbox {
        height: 12rem;
    }

    .office .wrap .li .intro .list .rg p {
        margin-top: 4px;
    }

    .contact .wrap .li-wrap .li .list p {
        line-height: 1.4;
    }

    .oem-list5 .input1 {
        border-radius: 8px;
    }
}

@media (max-width:767px) {
    .plan-info .about-case .li-box .li .pic {
        height: 7rem;
    }
}


.pctel .telbox {
    width: 220px;
    height: 1.5rem;
    line-height: 1.5rem;
    border-radius: 1.5rem;
    color: #333;
    padding-left: 1.8rem;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

.pctel:hover .telbox {
    opacity: 1;
    visibility: visible;
}


.way .intro {
    width: 1200px;
    margin: 0 auto;
    max-width: 100%;
    line-height: 1.6;
    text-align: center;
}

.way .tit,
.contact .tit,
.sales .tit,
.office .tit,
.cultrue .wrap .tit,
.honor .tit {
    font-weight: bold;
}

.banner-intro p {
    font-weight: bold;
}

.service .wrap>.h1,
.domestic .intro .tit,
.overseas .wrap .lf .tit,
.warranty .tit {
    font-weight: bold;
}

.contact .wrap .top,
.sales .wrap2 .li,
.office .wrap .li {
    border-radius: .5rem;
    overflow: hidden;
}

@media (max-width:1440px) {
    .contact .wrap .top .box .cont-box .cont-list p {
        font-size: 14px;
    }

    .contact .wrap .top .box .cont-box .intro p,
    .contact .wrap .top .box .list-box .li p {
        font-size: 14px;
    }

}

.n-prolist1 .contentbox .leftbox .tit4,
.n-prolist2 .tit2 {
    font-weight: bold;
}


.nimg-container .swiper-pagination span {
    background: #03447c;
}

.n-prolist2 .img {
    width: 100%;
}

.nimg-container {
    width: 15.25rem;
}

.contact .wrap .top .box .list-box .enmap{
    border-radius:.5rem;
    overflow: hidden;
}
.recruit .wrap .pic,.cultrue .wrap .top-li{
    border-radius:.5rem;
    overflow: hidden;
}
.warranty .wrap .top-box .li .btm-cont{
    padding: 0.75rem 0;
}

@media (max-width:1024px) {
    .ilist4 .tit2 br{
        display:none;
    }
}
@media (max-width:767px) {
    .sales .wrap2 .li .list p span{
        display:none;
    }
    .contact .wrap .top .box .list-box .li p span{
        display:none;
    }
    .contact .wrap .top .box .list-box .enmap{
        height: 6rem;
        object-fit: cover;
        border-radius:.25rem;
        overflow: hidden;
    }
    .office .wrap .li .intro .list .rg span{
        display:none;
    }
    .office .wrap .li .intro .list .rg p{
        width:100%;
    }
    .office .wrap .li .intro .list .rg p{
        word-break: break-word;
    }
    .oem-list1 .li{
        width:100%;
    }
    .cases .wrap .top-screen .li a{
        margin-right: 0.3rem;
    }

    .pro-info .wrap .about-down .warptabul{
        overflow-x:auto;
    }
    .pro-info .wrap .about-down .tabul{
        width:800px;
        margin-bottom:.5rem;
    }
    .pro-info .wrap .about-down .tabul .li{
        max-width:30%;
        margin-bottom:0;
        margin-left:0;
        margin-right:3%;
    }
    .pro-info .wrap .about-down .warptabul{
        margin-bottom:.9rem;
    }
    .footer{
        margin-left: 5%;
    }

    .ilist2 .por-container .swiper-button-next,.ilist2 .por-container .swiper-button-prev{
        display:none;
    }
    .oem-list5 .contentbox .coadbox .input1{
        padding-right:5rem;
    }

}

.case-info.active{
    padding-bottom:0;
    border-bottom:1px solid #9f9f9f;
}

.contact .wrap .top .box .list-box .li a{
    color:#333;
}
.contact .wrap .top .box .list-box .li a:hover{
    color:#03447c;
}





#cookieToast{
    z-index: 9999;
    background: rgba(0,0,0,.4);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
#cookieToast .cookie-toast-box{
    padding: 24px 64px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height:auto;
    z-index: 99999;
    background: #f5f5f5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid #dadada;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#cookieToast .cookie-toast-box .title{
    margin-bottom:.45rem;
}
#cookieToast .cookie-toast-box .cookie-toast-msg{
    color: #000;
    font-size: 12px;
    line-height: 16px;
}
#cookieToast .cookie-toast-box .cookie-toast-button-warp div{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 108px;
    height: 48px;
    background: #0b8df5;
    color: #fff;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    margin:0 5px;
}

#cookieToast .cookie-toast-box .cookie-toast-msg{
    width: calc(100% - 260px);
}
@media (max-width: 996px) {
    #cookieToast .cookie-toast-box{
        padding: 16px 6%;
        height:auto;
    }


}
@media (max-width: 767px) {
    #cookieToast .cookie-toast-box{
        flex-flow:row wrap;
    }
    #cookieToast .cookie-toast-box .cookie-toast-msg{
        width:100%;
        margin-bottom:.65rem;
    }
}

.news-info .wrap .cont .intro{
    word-break: break-word;
    text-align: justify;
}
.news-info .wrap .cont .intro p{
    text-align: justify;
}

