body,
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;

}

* {
    font-family: Microsoft YaHei, 'å¾®è½¯é›…é»‘';
}

@font-face {
    font-family: "PANGMENZHENGDAOBIAOTITI-1";
    src: url("../font/PANGMENZHENGDAOBIAOTITI-1.woff2") format("woff2"),
        url("../font/PANGMENZHENGDAOBIAOTITI-1.woff") format("woff"),
        url("../font/PANGMENZHENGDAOBIAOTITI-1.ttf") format("truetype"),
        url("../font/PANGMENZHENGDAOBIAOTITI-1.eot") format("embedded-opentype"),
        url("../font/PANGMENZHENGDAOBIAOTITI-1.svg") format("svg"),
        url("https://www.digiwin.com/other/2024BrandRenewal/css/PANGMENZHENGDAOBIAOTITI-1.otf") format("opentype");
}

body::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, #000848 10%, #0031A7 50%, #00063C 90%); */
    background: #fff;
    /* z-index: -1; */
}


body:not([class*=isIE]) * {
    /* cursor: none !important; */
}

.cursor-inner {
    position: relative;
    width: 0;
    height: 0;
    -webkit-transition: transform .3s, -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -moz-transition: transform .3s, -webkit-transform .3s;
    -ms-transition: transform .3s, -webkit-transform .3s;
    -o-transition: transform .3s, -webkit-transform .3s;
}

.cursor {
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-5rem);
    -ms-transform: translateY(-5rem);
    transform: translateY(-5rem);
    display: block;
    width: 0;
    height: 0;
    border-radius: 100%;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.cursor__circle,
.cursor__point {
    position: absolute;
    top: -0.8rem;
    left: -0.8rem;
    width: 1.6rem;
    height: 1.6rem;
}

.cursor__point {
    border-radius: 100%;
    background-color: hsla(0, 0%, 100%, .1);
    border: 0.05rem solid hsla(0, 0%, 100%, .3);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.cursor i {
    display: block;
}

.cursor__circle {
    opacity: 0;
    border-radius: 100%;
    border: 0.05rem solid #fff;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.cursor__circle,
.cursor__point {
    /* position: absolute;
    top: -0.8rem;
    left: -0.8rem;
    width: 1.6rem;
    height: 1.6rem; */
    position: absolute;
    top: -0.2rem;
    left: -0.2rem;
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid #fff;
}

.cursor__circle-2 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.cursor.active .cursor__circle,
.cursor.manual-active .cursor__circle {
    animation-name: circle-repeat-2;
}

.cursor.active .cursor__point,
.cursor.manual-active .cursor__point {
    background-color: hsla(0, 0%, 100%, .4);
    transform: scale(.2);
}

@keyframes circle-repeat-2 {
    0% {
        opacity: 1;
        transform: scale(0);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }

    60% {
        opacity: 0;
        transform: scale(2);
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
    }

    100% {
        opacity: 0;
        transform: scale(3);
        -webkit-transform: scale(3);
        -moz-transform: scale(3);
        -ms-transform: scale(3);
        -o-transform: scale(3);
    }
}

/* *********************å¯¼èˆª********************* */
.nav {
    width: 100%;
    position: fixed;
    z-index: 50;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    padding: 0.2rem 2.8rem;
    padding-right: 2.4rem;
    padding-bottom: 0.4rem;
    /* background-color: rgba(0, 0, 44, .2); */
}

.nav::after {
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 52%, rgba(255, 255, 255, 0) 100%);
}

.nav.on {
    opacity: 0;
    display: none;
}

.nav>span {
    width: auto;
    max-width: 14%;
    cursor: pointer;
    position: relative;
}

/* .nav>span>img {
    transition: .5s;
}

.nav>span>img:last-child {
    position: absolute;
    opacity: 0;
}

.nav.on>span>img {
    opacity: 0;
}

.nav.on>span>img:last-child {
    opacity: 1;
} */

.nav>ul {
    /* width: 65%; */
    width: 80%;
    align-items: center;
    justify-content: flex-end;
}

.nav>ul>li {
    font-size: 0.22rem;
    margin-left: .4rem;
}

.nav>ul>li>a {
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transform: translateY(0.15rem);
    padding-bottom: 0.1rem;
    cursor: pointer;
}

.nav>ul>li>a>i {
    color: #fff;
    font-size: .24rem;
    display: inline-block;
}

/* 
.nav.on>ul>li>a,
.nav.on>ul>li>a>i {
    color: #333;
} */

.nav>ul>li>a:hover,
.nav>ul>li.on>a {
    border-bottom: 1px solid #fff;
}

.sj_liuyan {
    /* width: 2.5rem; */
    width: 230px;
    position: fixed;
    z-index: 50;
    bottom: 1%;
    right: 0.4rem;
    min-width: 230px;
    cursor: pointer;
}

@keyframes shangxia {
    0% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    100% {
        transform: translateY(-10%);
        -webkit-transform: translateY(-10%);
        -moz-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
        -o-transform: translateY(-10%);
    }
}

.sj_liuyan>i {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    animation-name: shangxia;
    animation-delay: 0s;
    animation-duration: .8s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.sj_liuyan>u {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: .5s;
    opacity: 0;
}

.sj_liuyan>p {
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    line-height: 1.5;
    transition: .5s;
    opacity: 0;
}

.sj_liuyan:hover>p,
.sj_liuyan:hover>u {
    opacity: 1;
}

/* åº•å±‚ */
#sw1 {
    width: 100%;
    height: 100%;
    position: relative;
}

#sw1>div>div.swiper-slide {
    width: 100%;
    height: 100%;
    /* opacity: 0 !important; */
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    z-index: -1;
}

#sw1>div>div.swiper-slide-active {
    opacity: 1 !important;
    z-index: 20;
}

.qie {
    position: absolute;
    right: 1.1rem;
    top: 0%;
    height: 100%;
    width: auto;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    /* display: none; */
}


.qie.on {
    display: flex;
}

.qie>div {
    transform: translateX(-0.09rem);
    -webkit-transform: translateX(-0.09rem);
    -moz-transform: translateX(-.09rem);
    -ms-transform: translateX(-.09rem);
    -o-transform: translateX(-.09rem);
    width: 0.23rem;
}

.qie>ul {
    margin: 0.15rem 0;
}

.qie>ul>li {
    font-size: .18rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.2rem;
    height: 0.3rem;
}

.qie>ul>li:last-child {
    margin-bottom: 0;
}

.qie>ul>li>p {
    color: #333;
    opacity: .5;
    transition: .5s;
}

.qie>ul.on>li>p {}

.qie>ul>li.on>p {
    opacity: 1;
    font-size: .24rem;
    color: #003682;
    font-size: .24rem;
    font-weight: bold;
}

.qie>ul>li>span {
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid #3059F9;
    border-radius: 50%;
    margin-left: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(.3);
    transition: .5s;
}

.qie>ul>li>span>i {
    width: 0.15rem;
    height: 0.15rem;
    border-radius: 50%;
    background: linear-gradient(0deg, #3059F9 0%, #59A3F6 100%);
    transition: .5s;
    opacity: 0;
}

.qie>ul>li.on>span {
    transform: scale(1);
}

.qie>ul>li.on>span>i {
    opacity: 1;
    transition-delay: .5s;
}

.pad {
    padding-left: 3.6rem;
    padding-right: 3.6rem;
}

.top1,
.top2,
.top3,
.top4,
.top5,
.top6,
.top7,
.topzb,
.top_jj,
.topzx,
.top0 {
    position: relative;
    padding: 1.2rem 2.8rem 1rem 2.8rem;
    z-index: 15;
}

.top0 {}

.top0>.fp-tableCell {}

.top0>.fp-tableCell>video {
    width: 85%;
    display: block;
    margin: 0 auto;
    margin-top: 0.8rem;
}

h2.biaoti {
    display: table;
    color: #fff;
    line-height: 1;
    position: relative;
    z-index: 15;
    margin: 0 auto;
}

h2.biaoti>p {
    font-size: .3rem;
    color: #0057A3;
    font-style: italic;
    line-height: .8;
    text-shadow: 0px 3px 9px #000B5C;
}

h2.biaoti>b {
    font-size: .5rem;
    display: table;
    font-weight: bold;
    color: #003682;
    letter-spacing: 5px;
    position: relative;
    z-index: 10;
}

h2.biaoti>i {
    position: absolute;
    top: -.1rem;
    width: 120%;
    left: -10%;
}

.top2 {
    /* padding: 1.5rem 3.6rem; */
    position: relative;
    z-index: 15;
    background: url(../image/top3_bg9.png) no-repeat bottom left;
    background-size: 100% 110%;
    background-position: 0% 5%;
}

.top2 .t2_yuan,
.t5_yuan {
    position: absolute;
    top: -2.4rem;
    left: -2.2rem;
    width: 4.5rem;
}

p.jj {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .2rem;
}

p.jj>i {
    width: 0.3rem;
}

p.jj>b {
    color: #fff;
    margin-left: 0.15rem;
    font-weight: bold;
}

span.ding {
    position: absolute;
    width: 20%;
    left: 40%;
    top: 0;
    z-index: 10;
    overflow: hidden;
}

span.ding>img {
    transform: translateY(-0.4rem);
}

@keyframes light {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.ma_bt {
    margin-bottom: 0 !important;
}

.sj_video,
.sj_video2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    transform: scale(0);
}

.sj_video.on,
.sj_video2.on {
    transform: scale(1);
}

.sj_video>div,
.sj_video2>div {
    position: relative;
    width: 60%;
    z-index: 10;
}

.sj_video>div>video,
.sj_video2>div>video {
    width: 100%;
}

.sj_video>div>i,
.sj_video2>div>i {
    cursor: pointer;
    width: 0.5rem;
    height: 0.5rem;
    background-color: rgb(102 98 98 / 50%);
    font-size: .28rem;
    color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sj_video>div>i:hover,
.sj_video2>div>i:hover {
    background-color: rgb(33 33 33 / 100%);
}

.sj_video>i,
.sj_video2>i {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: .3;
    top: 0%;
    left: 0%;
}

.bg_lf {
    position: absolute;
    bottom: 0;
    left: 2.4rem;
    width: 0.4rem;
}

.bg_rt {
    position: absolute;
    bottom: 0;
    right: 2.4rem;
    width: 0.4rem;
}


.pc-page__aside[data-v-91586072],
.pc-page__aside {
    display: none !important;
}

.topzb {
    /* padding: 1.2rem .8rem; */
    position: relative;
    z-index: 20;
}

.topzb .zb {
    margin-top: .4rem;
}

.topzb .zb>iframe {
    height: 6.5rem;
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-bottom: .4rem;
}

.top1 {
    position: relative;
    z-index: 10;
}

.top1 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 1;
}

.sj_top1 {
    position: relative;
    z-index: 10;
    margin-top: 22vh;
}

.sj_top1>span {
    width: 75%;
    margin: 0 auto;
}

.sj_top1>span>img {
    width: 100%;
}

.sj_top1>p {
    font-size: .32rem;
    color: #003783;
    text-align: center;
    line-height: 2;
    margin-top: .8rem;
    /* font-weight: bold; */
    margin-bottom: 1.2rem;
}

@keyframes drop {
    0% {
        top: 0px;
        opacity: 0;
    }

    30% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

.sj_top1>i {
    width: .6rem;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    cursor: pointer;
    animation-name: drop;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

/** ---------------------èƒŒæ™¯------------------- **/
.top0 {}

.top0 .t2_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    cursor: pointer;
    transform: scaleY(1.05);
    transform-origin: bottom;
}

.sj_top0 {
    /* margin-top: 1rem; */
    position: relative;
    z-index: 10;
    padding: 0 .8rem;
}

.sj_top0>p {
    font-size: .2rem;
    color: #333;
    line-height: 2.4;
    text-align: justify;
    padding: 0 .4rem;
    margin-top: .6rem;
    text-indent: 2em;
}

.sj_top0>ul {
    display: flex;
    justify-content: space-between;
    margin-top: 0.8rem;
    position: relative;
    z-index: 10;
}

@keyframes dong {
    0% {
        transform: translate(5px, 5px);
        -webkit-transform: translate(5px, 5px);
        -moz-transform: translate(5px, 5px);
        -ms-transform: translate(5px, 5px);
        -o-transform: translate(5px, 5px);
    }

    25% {
        transform: translate(0px, 0px);
        -webkit-transform: translate(0px, 0px);
        -moz-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        -o-transform: translate(0px, 0px);
    }

    50% {
        transform: translate(-5px, -5px);
        -webkit-transform: translate(-5px, -5px);
        -moz-transform: translate(-5px, -5px);
        -ms-transform: translate(-5px, -5px);
        -o-transform: translate(-5px, -5px);
    }

    75% {
        transform: translate(5px, 5px);
        -webkit-transform: translate(5px, 5px);
        -moz-transform: translate(5px, 5px);
        -ms-transform: translate(5px, 5px);
        -o-transform: translate(5px, 5px);
    }

    100% {
        transform: translate(0px, 0px);
        -webkit-transform: translate(0px, 0px);
        -moz-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        -o-transform: translate(0px, 0px);
    }
}

.sj_top0>ul>li {
    position: relative;
    width: 17%;
    animation-name: dong;
    animation-delay: 0s;
    animation-duration: 8s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.sj_top0>ul>li:nth-child(1) {
    top: -.5rem;
    animation-delay: 3.4s;
}

.sj_top0>ul>li:nth-child(3) {
    top: -.5rem;
    animation-delay: 2s;
}

.sj_top0>ul>li:nth-child(4) {
    animation-delay: 1.2s;
}

.sj_top0>ul>li>i {
    transition: .5s;
    opacity: 0;
}

.sj_top0>ul>li>p {
    font-size: .21rem;
    position: absolute;
    top: .3rem;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    transition: .5s;
    opacity: 0;
    transform: scale(.9);
}

.sj_top0>ul>li>b {
    font-size: .24rem;
    color: #003682;
    font-weight: bold;
    text-align: center;
    margin-top: .1rem;
    transition: .5s;
    transform: translateY(-1.5rem);
}

.sj_top0>ul>li>i {
    opacity: 1;
}

.sj_top0>ul>li>p {
    opacity: 1;
}

.sj_top0>ul>li>b {
    transform: translateY(0%);
}

/** ---------------------ç›´æ’­------------------- **/
.sj_topzb {}

.sj_topzb>p {
    margin-top: .2rem;
}

/** ---------------------äº®ç‚¹------------------- **/
.sj_top2 {
    position: relative;
}

.sj_top2>ul {
    display: flex;
    justify-content: space-between;
    margin-top: 1.8rem;
    position: relative;
    z-index: 10;
}

.sj_top2>ul>li {
    position: relative;
    width: 20%;
}

.sj_top2>ul>li:nth-child(1) {
    top: -.5rem;
}

.sj_top2>ul>li:nth-child(3) {
    top: -1rem;
}

.sj_top2>ul>li:nth-child(4) {
    top: .2rem;
}

.sj_top2>ul>li>i {
    transition: .5s;
    opacity: 0;
}

.sj_top2>ul>li>p {
    font-size: .21rem;
    position: absolute;
    top: .3rem;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    transition: .5s;
    opacity: 0;
}

.sj_top2>ul>li>b {
    font-size: .24rem;
    color: #003682;
    font-weight: bold;
    text-align: center;
    margin-top: .1rem;
    transition: .5s;
    transform: translateY(-1.5rem);
}

.sj_top2>ul>li:hover>i,
.sj_top2>ul>li.on>i {
    opacity: 1;
}

.sj_top2>ul>li:hover>p,
.sj_top2>ul>li.on>p {
    opacity: 1;
}

.sj_top2>ul>li:hover>b,
.sj_top2>ul>li.on>b {
    transform: translateY(0%);
}

.sj_top2>span {
    position: absolute;
    top: 1rem;
    left: 0;
    z-index: 1;
    opacity: .4;
}

@keyframes upup {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }

    10% {
        opacity: 1;
        transform: translateY(-10%);
    }

    50% {
        transform: translateY(-20%);
    }

    85% {
        opacity: 1;
        transform: translateY(-25%);
    }

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

.sj_top2>span>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation-name: upup;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.sj_top2>span>img:nth-child(1) {
    position: relative;
}

.sj_top2>span>img:nth-child(2) {
    animation-delay: 2.4s;
}

.sj_top2>span>img:nth-child(3) {
    animation-delay: 4s;
}


/** ---------------------è®®ç¨‹------------------- **/
.top3 {
    position: relative;
    z-index: 10;
    background: url(../image/top4_bg19.png) no-repeat center;
    background-size: cover;
}

.top3 {
    position: relative;
    z-index: 10;
    background: url(../image/top4_bg19.png) no-repeat center;
    background-size: cover;
}

.sj_top3 {}

.sj_top3>div {
    position: relative;
}

.sj_top3>div>span {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    margin-top: .8rem;
    width: 50%;
    transition: .5s;
}

.sj_top3>div>span>img {
    position: relative;
    transform-origin: center;
    transform: rotateY(90deg);
    transition: .5s;
    width: 100%;
}

.sj_top3>div>span>img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.sj_top3.on>div>span {
    transition-delay: 1.2s;
    transform: scale(1.5);
    opacity: 0;
}

.sj_top3.on>div>span>img {
    transition-delay: .7s;
    transform: rotateY(0deg);
}

.sj_top3>i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sj_top3>i>img {
    opacity: 1;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_top3>i>img:last-child {
    position: absolute;
    width: 100%;
    opacity: 0;
}

.sj_top3.on>i>img {
    opacity: 0;
    transition-delay: 1.2s;
}

.sj_top3.on>i>img:last-child {
    opacity: 1;
}

.sj_top3>div>div {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    align-items: center;
    margin-top: .8rem;
}

.sj_top3>div>div>span {
    width: 53%;
}

.sj_top3>div>div>p {
    width: 47%;
}

.sj_top3>div>div>p>b {
    color: #003682;
    font-size: .26rem;
    font-weight: bold;
    text-align: center;
}

.sj_top3>div>div>p>i {
    font-size: .2rem;
    color: #333;
    margin: .5rem 0;
    line-height: 1.7;
    text-align: center;
}

.sj_top3>div>div>p>a {
    background: linear-gradient(0deg, #3059F9 0%, #59A3F6 100%);
    border-radius: 6px;
    padding: .15rem .35rem;
    font-size: .24rem;
    color: #fff;
    display: table;
    margin: 0 auto;
}

.sj_top3>div>div>p>a:hover {
    background: linear-gradient(to right, #ffb252 0%, #f18541 100%);
}

.sj_top3.on>div>div {
    transition-delay: 1.2s;
    opacity: 1;
}

/** ---------------------å˜‰å®¾------------------- **/
.top4 {
    background: url(../image/top5_bg12.png) no-repeat center;
    background-size: cover;
}

.sj_top4 {}

.sj_top4>div {
    display: flex;
    justify-content: flex-start;
    margin-top: .7rem;
}

.sj_top4>div>div {
    width: 12%;
    padding-top: .25rem;
    margin-right: 4%;
}

.sj_top4>div>div>div {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.sj_top4>div>div>div>i {
    width: 100%;
}

.sj_top4>div>div>div>b {
    font-size: .48rem;
    color: #003682;
    font-weight: bold;
}

.sj_top4>div>div>div>p {}

.sj_top4>div>div>div>p>b {
    font-size: .2rem;
    color: #003682;
    font-weight: bold;
}

.sj_top4>div>div>div>p>i {
    font-size: .2rem;
    color: #003682;
    margin-top: .1rem;
    transform: translateX(-.1rem);
}

.sj_top4>div>div>i {
    display: table;
    margin: 0 auto;
    width: .2rem;
}

.sj_top4>div>ul {
    width: 70%;
    position: relative;
}

.sj_top4>div>ul>li {
    display: flex;
    justify-content: flex-start;
    padding: .1rem .2rem;
    /* max-height: 1rem; */
    margin-bottom: .14rem;
    background: linear-gradient(90deg, #E7F0FF 0%, #FFFFFF 100%);
    border-radius: 6px;
    border: 1px solid;
    align-items: center;
    transition: .5s;
    height: .50rem;
}

.sj_top4>div>ul>li:nth-child(9),
.sj_top4>div>ul>li:nth-child(8) {
    height: auto;
}

.sj_top4>div>ul>li:first-child {
    position: absolute;
    top: -.35rem;
    left: 0;
    width: 100%;
    padding: 0 .2rem;
    height: auto;
    border: none;
    background: none;
}

.sj_top4>div>ul>li>i {
    font-size: .19rem;
    color: #333;
    transition: .5s;
    width: 20%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_top4>div>ul>li>b {
    font-size: .19rem;
    font-weight: bold;
    color: #333;
    transition: .5s;
    width: 45%;
    line-height: 1;
}

.sj_top4>div>ul>li:last-child>b {
    width: 80%;
    line-height: 1.5;
    position: relative;
}

.sj_top4>div>ul>li>b>span {
    color: #333;
    transition: .5s;
    font-size: .14rem;
    line-height: 1.5;
    /* margin-top: .1rem; */
    position: relative;
}

.sj_top4>div>ul>li>b>span:first-child {
    margin-top: .1rem;
}

.sj_top4>div>ul>li:last-child>b::before,
.sj_top4>div>ul>li:last-child>b::after {
    content: '';
    width: .03rem;
    height: .03rem;
    background: #333;
    border-radius: 50%;
    top: .09rem;
    left: -.12rem;
}

.sj_top4>div>ul>li:last-child>b::before {
    bottom: .13rem;
    top: auto;
}

.sj_top4>div>ul>li>p {
    font-size: .14rem;
    color: #333;
    transition: .5s;
    width: 37%;
    line-height: 1.5;
}

.sj_top4>div>ul>li:first-child>i,
.sj_top4>div>ul>li:first-child>b,
.sj_top4>div>ul>li:first-child>p {
    font-weight: bold;
}

.sj_top4>div>ul>li:first-child>p {
    font-size: .19rem;
}

.sj_top4>div>ul>li:hover {
    background-image: url(../image/top5_bg13.png);
    background-size: cover;
    border-color: transparent;
}

.sj_top4>div>ul>li:hover>p,
.sj_top4>div>ul>li:hover>b,
.sj_top4>div>ul>li:hover>b>span,
.sj_top4>div>ul>li:hover>i {
    color: #fff;
}

.t4_yuan {
    position: absolute;
    top: -2.4rem;
    right: -2.2rem;
    width: 4.5rem;
}

/** ---------------------åª’ä½“------------------- **/
.top5 {
    z-index: 25;
}

.t5_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.sj_top5 {}

.sj_top5>h2 {
    margin-bottom: .8rem;
}



.zb>p,
.sj_top5>p {
    font-size: .24rem;
    color: #003682;
    margin-bottom: .45rem;
    font-weight: bold;
    /* display: flex; */
    /* align-items: flex-end; */
}

.zb>p>i,
.sj_top5>p>i {
    font-size: .14rem;
    font-weight: normal;
    margin-top: .2rem;
}

.zb>div,
.sj_top5>div {
    padding: .4rem .2rem;
    transform: translateY(-.4rem);
    justify-content: flex-start;
}

.zb>div {
    /* padding-right: 0; */
    justify-content: space-between;
}

.zb>div>div,
.sj_top5>div>div {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    width: 19%;
    margin-right: 5%;
}

.zb>div>div {
    margin-right: 0;
}

.zb>div>div:last-child {
    justify-content: flex-end;
}

.sj_top5>div>div.scrollbarjj {
    justify-content: center;
}

.zb>div>div>span,
.sj_top5>div>div>span {
    width: .45rem;
    margin-right: .2rem;
}

.sj_top5>div>div.scrollbarjj>span {
    width: .15rem;
    height: .15rem;
}

.sj_top5>div>div>p {}

.zb>div>div>p>a,
.sj_top5>div>div>p>a {
    font-size: .18rem;
    margin-bottom: .1rem;
    transition: .5s;
    cursor: default;
}

.sj_top5>div>div>p>a:hover {
    /* color: #5297f6; */
}

.zb>div>div>p>i,
.sj_top5>div>div>p>i {
    font-size: .18rem;
}

.sj_top5 ul {
    justify-content: flex-start;
    margin-bottom: 0;
}

.sj_top5 ul>li {
    width: 15%;
    margin-right: 4.5%;
    margin-bottom: 4%;
    transition: .5s;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.sj_top5 ul>li:nth-child(5n) {
    margin-right: 0;
}

.sj_top5 ul>li:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    box-shadow: 0px 0px 15px 0px #008cff;
}

/** ---------------------å¾€å±Š------------------- **/

.top6 {
    /* padding-left: 0;
    padding-right: 0; */
    position: relative;
    z-index: 20;
}

.sj_top6 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: .8rem;
}

.sj_top6>div {
    width: 35%;
}

.sj_top6>div>p {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.sj_top6>div>p:first-child {
    margin-bottom: .4rem;
}

.sj_top6>div>p>img {
    width: 100%;
    transition: .5s;
}

.sj_top6>div>p>i {
    font-size: .24rem;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: .1rem 0;
    color: #fff;
    text-align: center;
    width: 100%;
    line-height: 1.5;
    font-weight: bold;
    display: none;
    background: linear-gradient(to top, #325ef8, #d5eefb61);
}

.sj_top6>div>p:hover>img {
    transform: scale(1.2);
}

.sj_top6>ul {
    width: 60%;
    background: linear-gradient(45deg, #e3ebff 0%, #f8f9ff 100%);
    border-radius: .12rem;
    border: 1px solid #ffffff;
    padding: .45rem;
    padding-left: .8rem;
    height: 5.75rem;
    overflow: auto;
}

.sj_top6>ul::-webkit-scrollbar {
    width: 0.13rem;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    background: transparent;
    /* background: linear-gradient(0, #4560ff 0%, #f671d4 100%); */
    border-radius: 7px;
}

.sj_top6>ul::-webkit-scrollbar-thumb {
    /* background-color: #0028A7; */
    background: linear-gradient(0, #325ef8 0%, #d5eefb 100%);
    border-radius: 7px;
    border: 0px;
}

.sj_top6>ul>li {
    position: relative;
    padding: .2rem 0;
    border-bottom: 1px solid #e9e9ed;
    cursor: pointer;
}

.sj_top6>ul>li>p {
    font-size: 0.22rem;
    color: #1d2541;
    position: relative;
    transition: .5s;
}

.sj_top6>ul>li>p::before {
    width: .1rem;
    height: .1rem;
    border-radius: 50%;
    top: .05rem;
    left: -.2rem;
    background: #1d2541;
    transition: .5s;
}

.sj_top6>ul>li>i {
    font-size: .18rem;
    margin-top: .2rem;
    color: #7d8292;
}

.sj_top6>ul>li:hover>p {
    color: #4b8af7;
}

.sj_top6>ul>li:hover>p::before {
    background: #4b8af7;
}

/** ---------------------å³°ä¼šé‡‘å¥------------------- **/
.top_jj {
    position: relative;
    z-index: 25;
    background: url(../image/top5_bg12.png) no-repeat center;
    background-size: cover;
}

.sj_jj>ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /* width: 80%; */
    margin: 0 auto;
    margin-top: .8rem;
}

.sj_jj>ul>li {
    /* width: 20%; */
    /* width: 16%; */
    width: 14%;
    position: relative;
    margin-bottom: 3%;
    transform: translateY(.5rem);
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.sj_jj>ul.on>li {
    transform: translateY(0rem);
    opacity: 1;
}

.sj_jj>ul>li>img {
    width: 60%;
    /* width: 100%; */
    /* margin: 0 auto; */
}

.sj_jj>ul>li>p {
    position: relative;
    bottom: auto;
    width: 100%;
}

.sj_jj>ul>li>p>b {
    font-size: .2rem;
    color: #003682;
    font-weight: bold;
    /* text-align: center; */
    margin-bottom: .1rem;
    margin-top: .2rem;
}

.sj_jj>ul>li>p>i {
    font-size: .15rem;
    color: #333;
    /* text-align: center; */
    line-height: 1.5;
}



/** ---------------------åº•éƒ¨------------------- **/
.foot {
    position: relative;
    height: auto !important;
    /* background: #001365; */
    padding: 0.4rem 1.8rem;
    z-index: 25;
    background-color: rgba(222, 222, 222, .3);
}

.foot>.fp-tableCell {
    height: auto !important;
}

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

.footer>ul {}

.footer>ul>li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: .4rem;
}

.footer>ul>li:last-child {
    margin-bottom: 0;
}

.footer>ul>li>b {
    margin-right: 0.15rem;
    font-size: .5rem;
    display: table;
    font-weight: 400;
    color: #FFFFFF;
    background: linear-gradient(105deg, #1CC2FF 0%, #CEFFFF 64.990234375%, #A2F3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 5px;
}

.footer>ul>li>i {
    font-size: .3rem;
    font-weight: bold;
    color: #2C58CF;
    margin-left: .1rem;
    font-style: italic;
}

.footer>ul>li>span {
    padding: .1rem .15rem;
    font-size: .2rem;
    color: #fff;
    background: #1CC2FF;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.footer>ul>li>u {
    height: 1px;
    width: 100%;
    background-color: #1CC2FF;
}

.footer>ul>li>p {
    font-size: .2rem;
    color: #333;
    width: 100%;
    margin-top: .1rem;
    padding-left: .15rem;
}

.footer>span {
    width: 33%;
}

.footer>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 50%;
}

.footer>div>span {
    /* width: 100%; */
    width: 65%;
    display: flex;
    justify-content: center;
    margin-bottom: .2rem;
    align-items: center;
}

.footer>div>i {
    width: 100%;
    margin-top: .6rem;
    text-align: center;
    font-size: .22rem;
}

.footer>div>p {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer>div>p:last-child {
    /* margin-left: .3rem; */
}

.footer>div>p>span {
    width: 40%;
}

.footer>div>p:last-child>span {
    transform: scale(.9);
    box-shadow: 0px 0px 0px 3px #fff;
}

.footer>div>p>i {
    font-size: .16rem;
    color: #333;
    margin-top: .2rem;
    text-align: center;
}

.foot_d2 {
    margin-top: .8rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.foot_d2>p {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    font-size: .16rem;
    color: #333;
}

.foot_d2>p>u {}

.foot_d2>p>i {
    margin-left: .15rem;
    position: relative;
    width: 0.4rem;
    cursor: pointer;
}

.foot_d2>p:first-child>i>img:first-child {
    opacity: .5;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.foot_d2>p:first-child>i:hover>img:first-child {
    opacity: 1;
}

.foot_d2>p:first-child>i:first-child>img:last-child {
    position: absolute;
    top: -1.2rem;
    left: 0;
    max-width: 1000%;
    width: 1rem;
    transition: .5s;
    opacity: 0;
}

.foot_d2>p:first-child>i:first-child:hover>img:last-child {
    opacity: 1;
}

.foot_d2>p:last-child {
    margin-left: 3.5rem;
}

@media screen and (max-height:940px) {}

@media screen and (max-height:940px) and (min-width:1450px) {}

@media screen and (max-width: 1440px) {

    .nav>ul>li {
        margin-left: .4rem;
    }

}

@media screen and (max-width:1366px) {

    .nav>span {
        width: 18%;
    }

    p.jj {
        font-size: 16px;
    }
}

@media screen and (max-width:1280px) {

    .sj_video>div,
    .sj_video2>div {
        width: 90%;
    }
}

#index_main {
    z-index: 10;
}

#container {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: transparent;
}