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

}

* {
    font-family: Microsoft YaHei, '微软雅黑';
}

@font-face {
    font-family: "PANGMENZHENGDAOBIAOTITI-1";
    src: url("PANGMENZHENGDAOBIAOTITI-1.woff2") format("woff2"),
        url("PANGMENZHENGDAOBIAOTITI-1.woff") format("woff"),
        url("PANGMENZHENGDAOBIAOTITI-1.ttf") format("truetype"),
        url("PANGMENZHENGDAOBIAOTITI-1.eot") format("embedded-opentype"),
        url("PANGMENZHENGDAOBIAOTITI-1.svg") format("svg"),
        url("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%);
    /* 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: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 52%, rgba(255, 255, 255, 0) 100%);
}

.nav.on {
    opacity: 0;
}

.nav>span {
    width: auto;
    max-width: 16%;
    cursor: pointer;
}

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

.nav>ul>li {
    font-size: .18rem;
    margin-left: 1rem;
}

.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>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>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: space-between;
    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: #fff;
    opacity: .5;
    transition: .5s;
}

.qie>ul.on>li>p {
    color: #333;
}

.qie>ul>li.on>p {
    opacity: 1;
}

.qie>ul>li>span {
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid #fff;
    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(180deg, #FFB351 0%, #F08541 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,
.topjj,
.top3,
.top4,
.top5,
.top6,
.top7,
.top0 {
    position: relative;
    padding: 1rem 3.6rem 1.8rem 3.6rem;
    z-index: 15;
}

.top0 {}

.top0>.fp-tableCell {}

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

.top1 {
    background: url(../img/top1_bg.png) no-repeat center;
    background-size: cover;
}

.top1>.fp-tableCell {}

.top1>.fp-tableCell>video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.top1>.fp-tableCell>span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.top1>.fp-tableCell>span>i {
    width: 100%;
    height: 100%;
}

.top1>.fp-tableCell>div {
    /* padding: 0 2.55rem; */
    position: relative;
    z-index: 15;
}

.top1>.fp-tableCell>div>span {
    width: 8.8rem;
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
    opacity: 1;
}

.top1>.fp-tableCell>div.on>span {
    opacity: 1;
}

.top1>.fp-tableCell>div>div {
    /* display: flex; */
    align-items: flex-start;
}

.top1>.fp-tableCell>div>div>p {
    margin-right: .5rem;
    opacity: 1;
}

.top1>.fp-tableCell>div.on>div>p {
    margin-right: 1.5rem;
    opacity: 1;
}

.top1>.fp-tableCell>div>div>p>b {
    font-size: .36rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.6rem;
}

.top1>.fp-tableCell>div>div>p>i {
    font-size: .16rem;
    color: #fff;
    line-height: 1.5;
}

.top1>.fp-tableCell>div>div>a {
    width: 190px;
    height: 52px;
    border: 2px solid #FFFFFF;
    transition: .5s;
    border-radius: 6px;
    text-align: center;
    line-height: 47px;
    font-size: 20px;
    color: #fff;
    position: relative;
}

.top1>.fp-tableCell>div>div>a>i {
    font-size: .24rem;
    color: #fff;
    position: absolute;
    top: 11px;
    right: 26px;
    transition: .5s;
    transform: scaleY(1.5);
    -webkit-transform: scaleY(1.5);
    -moz-transform: scaleY(1.5);
    -ms-transform: scaleY(1.5);
    -o-transform: scaleY(1.5);
}

.top1>.fp-tableCell>div>div>a:hover {
    border: 2px solid #008cff;
    padding-right: 0.4rem;
    background: none;
    color: #008cff;
}

.top1>.fp-tableCell>div>div>a:hover>i {
    right: 16px;
    color: #008cff;
}

h2.biaoti {
    /* display: flex;
    justify-content: center;
    align-items: center;
    font-size: .5rem;
    color: #fff;
    line-height: 1;
    position: relative;
    z-index: 15;
    margin-top: 0.4rem;
    margin-bottom: -0.4rem; */
}

h2.biaoti>i {
    margin-right: 0.15rem;
}

h2.biaoti>b {
    font-size: .6rem;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(0deg, #5E92FF 0%, #0028D2 100%);
    font-weight: bold;
    opacity: 0.5;
}

h2.biaoti>p {
    font-size: .48rem;
    color: #fff;
    margin-top: -0.15rem;
    font-weight: normal;
    position: relative;
    z-index: 10;
}

h2.biaoti>p>i {
    display: inline;
    font-size: 12px;
    color: #fff;
    margin-left: 0.2rem;
}

h2.biaoti>p>button {
    outline: none;
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 0.1rem;
    background: transparent;
    color: #fff;
    font-size: .2rem;
    width: 3rem;
    margin-left: 1rem;
    cursor: pointer;
}

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;
    }
}

.sj_video,
.sj_video2 {
    position: fixed;
    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: 70%;
    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;
}

.top2 {
    background: url(../img/n_top2_bg.png) no-repeat bottom left;
    background-size: 100% auto;
    position: relative;
    z-index: 15;
}

.top2>.fp-tableCell>p {
    font-size: .2rem;
    color: #fff;
    line-height: 3;
    margin-top: .8rem;
    padding: 0 1rem;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 15;
}

.top2>.fp-tableCell>p>i {
    display: inline-block;
    color: #2BC7FE;
}

.top2>.fp-tableCell>ul {
    display: flex;
    padding: 0 .8rem;
    justify-content: space-between;
    position: relative;
    z-index: 15;
    margin-top: 0.8rem;
}

.top2>.fp-tableCell>ul>li {}

.top2>.fp-tableCell>ul>li>p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top2>.fp-tableCell>ul>li>p>b {
    font-size: .58rem;
    font-weight: 400;
    color: #007EE9;
    background: linear-gradient(0deg, #F0F1F7 0%, #05BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.top2>.fp-tableCell>ul>li>p>b>img {
    width: .42rem;
}

.top2>.fp-tableCell>ul>li>p>i {
    margin-left: .1rem;
    font-size: .24rem;
    color: #fff;
}

.top2>.fp-tableCell>ul>li>i {
    margin-top: .15rem;
    color: #fff;
    font-size: .16rem;
    text-align: center;
}

.top2>.fp-tableCell>div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

@keyframes upup {
    0% {
        opacity: 0;
        bottom: 0;
    }

    10% {
        opacity: 1;
        bottom: .4rem;
    }

    85% {
        opacity: 1;
    }

    100% {
        bottom: 4.4rem;
        opacity: 0;
    }
}

.top2>.fp-tableCell>div>span {
    position: absolute;
    bottom: 0;
    opacity: 0;
    animation-name: upup;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.top2>.fp-tableCell>div>.t2_sp1 {
    left: .2rem;
    width: 3.85rem;
    animation-delay: 5s;
}

.top2>.fp-tableCell>div>.t2_sp2 {
    left: 4.35rem;
    width: .16rem;
    animation-delay: 1s;
}

.top2>.fp-tableCell>div>.t2_sp3 {
    right: 8.2rem;
    width: 1.05rem;
}

.top2>.fp-tableCell>div>.t2_sp4 {
    right: .8rem;
    width: 3.15rem;
    animation-delay: 2s;
}

/** ---------------------精彩集锦­------------------- **/
.topjj {
    position: relative;
    /* padding: .4rem 1rem 1rem 1rem; */
    z-index: 15;
}

.topjj .topjj_d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .4rem;
    width: 120%;
    transform: translateX(-10%);
}

.topjj .topjj_d>i {
    width: 30px;
    cursor: pointer;
}

.topjj .topjj_d>i.swjj_rt {}

.topjj .topjj_d>div {
    width: 91%;
    display: flex;
    justify-content: space-between;
}

.topjj .topjj_d>div>#swjj_1 {
    width: 80%;
}

.topjj .topjj_d>div>#swjj_2 {
    padding: 15px;
    width: 20%;
    height: 7rem;
}

.topjj .topjj_d>div .swiper-slide {
    transition: .5s;
    box-shadow: 0px 0px 15px 0px transparent;
}

#swjj_2 .swiper-slide {
    cursor: pointer;
}

.topjj .topjj_d>div .swiper-slide-active {
    box-shadow: 0px 0px 15px 0px #008cff;
}

.topjj .topjj_d>div .swiper-slide>img {
    width: 100%;
}

.top3 {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
}

.top3>.fp-tableCell>h2 {
    padding-left: 3.6rem;
}

.top3>.fp-tableCell>div {
    margin: 0.5rem auto 0.2rem auto;
    display: flex;
    justify-content: space-between;
    padding: 0 3.1rem;
    position: relative;
}

.top3>.fp-tableCell>div>i {
    position: absolute;
    top: 0.2rem;
    left: 3.6rem;
    width: 12rem;
    height: 0.1rem;
    background: linear-gradient(90deg, #21C5FE 0%, #D4EBF8 100%);
    border-radius: 5px;
    z-index: 5;
}

.top3>.fp-tableCell>div>ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.15rem 0.7rem;
    background: linear-gradient(90deg, #000953 0%, #002BAB 51%, #00094C 100%);
    box-shadow: inset 0px 0px 10px 0px #01EAFD;
    border-radius: 20px;
}

.top3>.fp-tableCell>div>ul>li {
    position: relative;
    z-index: 20;
}


.top3>.fp-tableCell>div>ul>li>span {
    width: 0.2rem;
    height: 0.2rem;
    background: linear-gradient(180deg, #FFB351 0%, #F08541 100%);
    border-radius: 50%;
}

.top3>.fp-tableCell>div>span {
    position: absolute;
    top: 0.15rem;
    left: 3.1rem;
    height: 0.2rem;
    z-index: 10;
    width: 4.65rem;
    transition: .5s;
}

.top3>.fp-tableCell>div>span>img {
    width: 100%;
    height: 100%;
}

.top3>.fp-tableCell>ul {
    padding: 0 3.6rem;
    display: flex;
    justify-content: space-between;
}

.top3>.fp-tableCell>ul>li {
    cursor: pointer;
}

.top3>.fp-tableCell>ul.t3_ul2>li {
    position: relative;
    padding-bottom: 0.2rem;
}

.top3>.fp-tableCell>ul.t3_ul2>li>b {
    font-size: .24rem;
    margin-bottom: 0.15rem;
    color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top3>.fp-tableCell>ul.t3_ul2>li>p {
    font-size: .16rem;
    text-align: center;
    color: #fff;
    transition: .5s;
}

.top3>.fp-tableCell>ul.t3_ul2>li.on,
.top3>.fp-tableCell>ul.t3_ul2>li.active {}

.top3>.fp-tableCell>ul.t3_ul2>li.over>b,
.top3>.fp-tableCell>ul.t3_ul2>li.over>p {
    color: #999;
}

.top3>.fp-tableCell>ul.t3_ul2>li.on>b,
.top3>.fp-tableCell>ul.t3_ul2>li.active>b {
    color: #fff;
}

.top3>.fp-tableCell>ul.t3_ul2>li.on>p,
.top3>.fp-tableCell>ul.t3_ul2>li.active>p {
    color: #fff;
}

.top3>.fp-tableCell>ul.t3_ul2>li::after {
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFB351 0%, #F08541 100%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top3>.fp-tableCell>ul.t3_ul2>li.active::after {
    opacity: 1;
}

.top3>.fp-tableCell>.t3_d2 {
    padding: 0 2.6rem;
    position: relative;
}

.top3>.fp-tableCell>.t3_d2>div {
    width: 100%;
    padding: 0.45rem 0.3rem 0.45rem 0.6rem;
    border-radius: 30px;
    background: linear-gradient(90deg, #000953 0%, #002BAB 51%, #00094C 100%);
    box-shadow: inset 0px 0px 10px 0px rgb(0 236 255 / 70%);
    display: flex;
    justify-content: space-between;
    position: absolute;
    opacity: 0;
    z-index: 1;
    top: 0;
    left: 0;
}

@keyframes shangxia2 {
    0% {
        transform: rotate(45deg) translate(0%, 0%);
        -webkit-transform: rotate(45deg) translate(0%, 0%);
        -moz-transform: rotate(45deg) translate(0%, 0%);
        -ms-transform: rotate(45deg) translate(0%, 0%);
        -o-transform: rotate(45deg) translate(0%, 0%);
    }

    100% {
        transform: rotate(45deg) translateY(-100%);
        -webkit-transform: rotate(45deg) translate(-100%, -100%);
        -moz-transform: rotate(45deg) translateY(-100%);
        -ms-transform: rotate(45deg) translateY(-100%);
        -o-transform: rotate(45deg) translateY(-100%);
    }
}

.top3>.fp-tableCell>.t3_d2>div::after {
    bottom: 0.3rem;
    right: 0.26rem;
    width: 0.15rem;
    height: 0.15rem;
    border: 3px solid #fff;
    border-top: none;
    border-left: none;
    animation-name: shangxia2;
    animation-delay: 0s;
    animation-duration: .8s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.top3>.fp-tableCell>.t3_d2>div.on {
    position: relative;
    z-index: 10;
    opacity: 1;
}

.top3>.fp-tableCell>.t3_d2>div>span {
    width: 47%;
    color: #fff;
    font-size: .3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
}

.top3>.fp-tableCell>.t3_d2>div>span>button {
    display: block;
    padding: 0.2rem 0.5rem;
    font-size: .24rem;
    border-radius: 6px;
    border: 2px solid #fff;
    outline: none;
    color: #fff;
    background: transparent;
    margin: 0 auto;
    margin-bottom: 0.2rem;
    cursor: pointer;
    transition: .5s;
}

.top3>.fp-tableCell>.t3_d2>div>span>button:hover {
    border: 2px solid #008cff;
    color: #008cff;
}

.top3>.fp-tableCell>.t3_d2>div>span>img {
    width: 100%;
}

.top3>.fp-tableCell>.t3_d2>div>div {
    width: 50%;
    max-height: 3.7rem;
    overflow: auto;
    padding-right: 0.6rem;
}

.top3>.fp-tableCell>.t3_d2>div>div>i {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .24rem;
    font-weight: bold;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(180deg, #bddef1 0%, #45c2f4 100%);
}

.top3>.fp-tableCell>.t3_d2>div>div>i>img {
    width: 83%;
}

.top3>.fp-tableCell>.t3_d2>div>div>div {
    display: flex;
    justify-content: space-between;
    margin-top: 0.25rem;
}

.top3>.fp-tableCell>.t3_d2>div>div>div>b {
    font-size: .2rem;
    color: #fff;
    width: 24%;
    line-height: 1.5;
}

.top3>.fp-tableCell>.t3_d2>div>div>div>p {
    width: 75%;
}

.top3>.fp-tableCell>.t3_d2>div>div>div>p>b {
    font-size: .2rem;
    color: #fff;
    margin-bottom: 0.14rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5;
}

.top3>.fp-tableCell>.t3_d2>div>div>div>p>b::after {
    position: relative;
    display: block;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, #01EEFF 0%, rgba(38, 116, 252, 0.01) 99%);
    /* width: 50%; */
}

.top3>.fp-tableCell>.t3_d2>div>div>div>p>i {
    font-size: .16rem;
    line-height: 1.5;
    color: #fff;
}

.top3>.fp-tableCell>.t3_d2>div>div::-webkit-scrollbar {
    width: 0.13rem;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    background: #0028A7;
    border-radius: 7px;
}

.top3>.fp-tableCell>.t3_d2>div>div::-webkit-scrollbar-thumb {
    background-color: #0028A7;
    border: 8px solid #01EEFF;
    border-radius: 7px;
}

/* 
.top4>.fp-tableCell>ul {
    margin: 0.6rem 0 0.3rem 0;
    position: relative;
}

.top4>.fp-tableCell>ul>li {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: .5s;
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1.8rem 0 0.6rem;
    background: url(../img/n_top4_bg.png) no-repeat center;
    background-size: 100% 100%;
    box-shadow: 0px 3px 9px 0px #000B5C;
    width: 100%;
    overflow: hidden;
}

.top4>.fp-tableCell>ul>li.on {
    position: relative;
    z-index: 10;
    opacity: 1;
}

.top4>.fp-tableCell>ul>li>div {
    width: 60%;
    padding-bottom: 0.55rem;
    flex-direction: column;
    justify-content: space-between;
}

.top4>.fp-tableCell>ul>li>div>p {
    width: 150%;
    display: flex;
    font-size: .24rem;
    align-items: center;
    margin-bottom: 0.3rem;
}

.top4>.fp-tableCell>ul>li>div>p>b {
    font-weight: bold;
    color: #fff;
    margin-right: 0.3rem;
}

.top4>.fp-tableCell>ul>li>div>p>i {
    color: #fff;
}

.top4>.fp-tableCell>ul>li>div>b {
    font-size: .3rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.7rem;
}

.top4>.fp-tableCell>ul>li>div>div {
    display: flex;
}

.top4>.fp-tableCell>ul>li>div>div>span {
    padding: 0.15rem 0.55rem;
    color: #fff;
    font-size: .2rem;
    background: linear-gradient(-90deg, #3059F9 0%, #59A3F6 100%);
    border-radius: 5px;
    margin-right: 0.2rem;
    cursor: pointer;
    display: none;
}

.top4>.fp-tableCell>ul>li>div>div>span:hover {
    background: linear-gradient(to right, #ffb252 0%, #f18541 100%);
}

.top4>.fp-tableCell>ul>li>div>div>a {
    padding: 0.15rem 0.55rem;
    color: #fff;
    font-size: .2rem;
    border-radius: 5px;
    border: 2px solid #FFFFFF;
    display: none;
}

.top4>.fp-tableCell>ul>li>div>div>a:last-child {
    display: block;
}

.top4.on>.fp-tableCell>ul>li>div>div>a {
    display: block;
}

.top4.on>.fp-tableCell>ul>li>div>div>a:last-child {
    display: none;
}

.top4>.fp-tableCell>ul>li>div>div>a:hover {
    border: 2px solid transparent;
    background: linear-gradient(to right, #ffb252 0%, #f18541 100%);
}

.top4>.fp-tableCell>ul>li>span {
    max-width: 3.8rem;
    height: 2.3rem;
    transform: translateY(-40%);
} */

.top4>.fp-tableCell>ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0.3rem;
    padding: 0;
    width: 120%;
    transform: translateX(-10%);
}


.top4>.fp-tableCell>ul>li {
    /* width: 12%;
    margin-right: 5.6%; */
    width: 12.5%;
    margin-right: 1.5%;
    margin-bottom: 1%;
    position: relative;
    padding: 0 0.05rem;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    border-top-left-radius: 40px;
    overflow: hidden;
    cursor: pointer;
}

.top4>.fp-tableCell>ul>li:hover {
    box-shadow: 0px 0px 20px 4px #0d91ef;
}

.top4>.fp-tableCell>ul>li.ma_rt {
    margin-right: 0;
}

.top4>.fp-tableCell>ul>li::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 80%;
    width: 100%;
    background: linear-gradient(0deg, #009CFF, transparent);
}

.top4>.fp-tableCell>ul>li>span {
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 100%;
    margin: 0 auto;
    max-height: 1.25rem;
}

.top4>.fp-tableCell>ul>li>span>img {
    width: 100%;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top4>.fp-tableCell>ul>li:hover>span>img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.top4>.fp-tableCell>ul>li>b {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 0.1rem;
}

.top4>.fp-tableCell>ul>li>p {
    font-size: 13px;
    color: #fff;
    position: relative;
    z-index: 10;
    padding: 0.05rem 0;
    text-align: center;
    line-height: 1.5;
}

.top4>.fp-tableCell>ul>li>i {
    font-size: 13px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 20;
    padding: 0.05rem;
    text-align: center;
    background: linear-gradient(0deg, #009CFF, transparent);
    color: #fff;
    opacity: 0;
    transition: .5s;
    z-index: 10;
    height: 34%;
    line-height: 1.5;
}

.top4>.fp-tableCell>ul>li:hover>p {
    opacity: 0;
}

.top4>.fp-tableCell>ul>li:hover>i {
    opacity: 1;
}

.top4>.fp-tableCell .swiper-slide {
    position: relative;
    border: 1px solid #009CFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3px 9px 0px #000B5C;
}

.top4>.fp-tableCell .swiper-slide>img {
    width: 100%;
}

.top4>.fp-tableCell .swiper-slide>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0.2rem;
    background: linear-gradient(0deg, #000953 0%, rgba(0, 43, 171, 0) 100%);
    transition: .5s;
    opacity: 0;
}

.top4>.fp-tableCell .swiper-slide:hover>div,
.top4>.fp-tableCell .swiper-slide.on>div {
    opacity: 1;
}

.top4>.fp-tableCell .swiper-slide>div>b {
    font-size: .2rem;
    text-align: center;
    margin-bottom: 0.1rem;
    color: #fff;
}

.top4>.fp-tableCell .swiper-slide>div>p {
    font-size: .16rem;
    text-align: center;
    color: #fff;
    line-height: 1.5;
}

.top4>.fp-tableCell>p,
.top6>.fp-tableCell>b {
    display: flex;
    justify-content: center;
    margin-top: 0.3rem;
}

.top4>.fp-tableCell .sw4_lf,
.top4>.fp-tableCell .sw4_rt,
.top6>.fp-tableCell .sw6_lf,
.top6>.fp-tableCell .sw6_rt {
    width: 0.3rem;
    height: 0.3rem;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top4>.fp-tableCell .sw4_lf::after,
.top4>.fp-tableCell .sw4_rt::after,
.top6>.fp-tableCell .sw6_lf::after,
.top6>.fp-tableCell .sw6_rt::after {
    width: .12rem;
    height: .12rem;
    position: relative;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.top6>.fp-tableCell .sw6_lf::after,
.top4>.fp-tableCell .sw4_lf::after {
    transform: rotate(-135deg) translate(-0.02rem, 0.02rem);
}

.top4>.fp-tableCell .sw4_rt,
.top6>.fp-tableCell .sw6_rt {
    margin: 0;
}

.top4>.fp-tableCell .sw4_rt::after,
.top6>.fp-tableCell .sw6_rt::after {
    transform: rotate(45deg) translate(-0.02rem, 0.02rem);
}

.top4 .n_form {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    padding: 15vh 20%;
    background: rgba(0, 0, 0, .8);
    transition: .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: scale(0);
}

.top4 .n_form.on {
    transform: scale(1);
}

.top4 .n_form>i {
    position: absolute;
    top: 20vh;
    right: 20%;
    width: .4rem;
    height: .4rem;
    background-color: #fff;
    font-size: .3rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.top4 .n_form>p {
    text-align: center;
    font-size: .4rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.top4 .n_form>ul {
    width: 40%;
    margin: 0 auto;
}

.top4 .n_form>ul>li {
    margin-top: 0.2rem;
}

.top4 .n_form>ul>li>input {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0.1rem 0.15rem;
    border-radius: 6px;
    font-size: .2rem;
}

.top4 .n_form>button {
    display: block;
    width: 1.6rem;
    padding: 0.15rem 0;
    font-size: .24rem;
    border-radius: 6px;
    outline: none;
    margin: 0 auto;
    margin-top: 0.5rem;
    cursor: pointer;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    transition: .5s;
}

.top4 .n_form>button:hover {
    border-color: #008cff;
    color: #008cff;
}

.top5>.fp-tableCell>ul {
    margin-top: 0.5rem;
}

.top5>.fp-tableCell>ul>li {
    width: 23%;
    position: relative;
    margin-bottom: 2%;
    box-shadow: 0px 3px 9px 0px #000B5C;
}

.top5>.fp-tableCell>ul>li>i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.top5>.fp-tableCell>ul>li>i>img {
    width: 0.6rem;
    transition: .5s;
}

.top5>.fp-tableCell>ul>li>i:hover>img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.top5>.fp-tableCell>ul>li>img {
    width: 100%;
}

.top7>.fp-tableCell>div.foot {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.25rem 2.8rem;
    background: none;
    background-color: #00022D;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top6 {
    padding-left: 0;
    padding-right: 0;
}

.top6>.fp-tableCell>h2 {
    padding-left: 3.6rem;
}

.top6>.fp-tableCell>ul {
    margin: 0.4rem 0;
    padding: 0 3.6rem;
    position: relative;
    z-index: 10;
    justify-content: flex-start;
}

.top6>.fp-tableCell>ul>li {
    width: 32%;
    position: relative;
    margin-bottom: 1.3%;
    margin-right: 1.3%;
}

.top6>.fp-tableCell>ul>li>img {
    width: 100%;
}

.top6>.fp-tableCell>ul>li>i {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    align-items: center;
    padding-right: 0.4rem;
    cursor: pointer;
    z-index: 10;
}

.top6>.fp-tableCell>ul>li>i>img {
    width: 0.6rem;
    transition: .5s;
}

.top6>.fp-tableCell>ul>li>i:hover>img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.top6>.fp-tableCell>ul>li>div {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top6>.fp-tableCell>ul>li>div>p {
    display: flex;
    align-items: flex-end;
    padding: 0.2rem;
}

.top6>.fp-tableCell>ul>li>div>p>i {
    width: 0.6rem;
}

.top6>.fp-tableCell>ul>li>div>p>b {
    font-size: .16rem;
    color: #fff;
    margin-bottom: 0.1rem;
    margin-left: 0.15rem;
}

.top6>.fp-tableCell>span {
    position: absolute;
    top: 1.6rem;
    right: 3.6rem;
    width: 4rem;
}

.top6>.fp-tableCell>div {
    padding: 0 2.6rem;
    height: 2.6rem;
}

.top6>.fp-tableCell .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
    padding: 0.2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.top6>.fp-tableCell .swiper-slide:hover {
    background: linear-gradient(0deg, #3059F9 0%, #59A3F6 100%);
}

.top6>.fp-tableCell .swiper-slide>span {
    width: 0.6rem;
}

.top6>.fp-tableCell .swiper-slide>p {
    width: 83%;
}

.top6>.fp-tableCell .swiper-slide>p>b {
    font-size: .2rem;
    color: #fff;
    transition: .5s;
}

.top6>.fp-tableCell .swiper-slide-active>p>b,
.top6>.fp-tableCell .swiper-slide:hover>p>b {
    margin-bottom: 0.2rem;
}

.top6>.fp-tableCell .swiper-slide>p>i {
    font-size: .16rem;
    color: #fff;
    transition: .5s;
    transform: translateY(0.5rem);
}

.top6>.fp-tableCell .swiper-slide:hover>p>i,
.top6>.fp-tableCell .swiper-slide-active>p>i {
    transform: translateY(0);
}

.top6>.fp-tableCell .swiper-slide>i {
    font-size: .16rem;
    color: #fff;
}


.top6>.fp-tableCell>p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.1rem;
}

.top6>.fp-tableCell>p>span {
    width: .1rem;
    height: .1rem;
    opacity: 1;
    background-color: #fff;
    margin: 0 .05rem;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top6>.fp-tableCell>p>span.swiper-pagination-bullet-active {
    width: .5rem;
    background-color: #fff;
}

/* .top7>.fp-tableCell>div.foot {
    height: auto !important;
} */

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

.top7>.fp-tableCell>ul {
    margin: 0.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top7>.fp-tableCell>ul>li {}

.top7>.fp-tableCell>ul>li:first-child {
    width: 46%;
}

.top7>.fp-tableCell>ul>li:nth-child(2) {
    padding: 0 0.65rem;
    border: 1px dashed #fff;
    border-top: none;
    border-bottom: none;
}

.top7>.fp-tableCell>ul>li:nth-child(3) {}

.top7>.fp-tableCell>ul>li>p {
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
}

.top7>.fp-tableCell>ul>li>p:last-child {
    margin-bottom: 0;
}

.top7>.fp-tableCell>ul>li>p>i {
    width: 0.4rem;
}

.top7>.fp-tableCell>ul>li>p>b {
    font-size: .24rem;
    color: #fff;
    line-height: 1.5;
    margin-left: 0.15rem;
}

.top7>.fp-tableCell>ul>li>b {
    font-weight: bold;
    font-size: .2rem;
    color: #fff;
    margin-bottom: 0.05rem;
}

.top7>.fp-tableCell>ul>li>a {
    font-size: .16rem;
    color: #fff;
    margin-top: 0.2rem;
}

.top7>.fp-tableCell>ul>li>a:hover {
    text-decoration: underline;
}

.top7>.fp-tableCell>ul>li:last-child>a::after {
    width: 0.1rem;
    height: 0.1rem;
    border: 1px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(-45deg) translate(0.2rem, 0.25rem);
}

.top7>.fp-tableCell>div.foot>ul {
    display: flex;
    justify-content: flex-start;
}

.top7>.fp-tableCell>div.foot>ul>li {
    margin-right: .8rem;
    display: flex;
    align-items: center;
}

.top7>.fp-tableCell>div.foot>ul>li:last-child {
    margin-right: 0;
}

.top7>.fp-tableCell>div.foot>ul>li>span {
    width: .9rem;
}

.top7>.fp-tableCell>div.foot>ul>li>p {
    font-size: .16rem;
    margin-left: .2rem;
    color: #fff;
}

.top7>.fp-tableCell>div.foot>span {
    width: 2.3rem;
}

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

    .top4>.fp-tableCell>ul>li>b {
        font-size: 14px;
    }

    .top4>.fp-tableCell>ul {
        padding: 0;
    }

    .top4>.fp-tableCell>ul>li>p {
        font-size: 12px;
        width: 110%;
        margin-left: -5%;
    }
}

@media screen and (max-width:1366px) {
    .top4>.fp-tableCell>ul {
        transform: translateX(-14%) scale(.8);
        transform-origin: top;
        width: 140%;
    }
}

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

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

    @media screen and (max-width:1440px) {
        .top1>.fp-tableCell>div>p {
            margin-bottom: 0.15rem;
        }

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

        .top1>.fp-tableCell>div>div>a>i {
            font-size: .3rem;
        }

    }

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

        .nav>span {
            width: 18%;
        }

        .top1>.fp-tableCell>div>div>p>b {
            font-size: 18px;
        }

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

        .top1>.fp-tableCell>div>div>p>i {
            font-size: 14px;
        }

    }

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

    #container {
        background-color: rgba(0, 0, 0, 0.5);
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        /* background-color: #040B25; */
        background-color: #020613;
    }
}