body,
html {
    width: 100%;
    height: auto;
    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 3.6rem;
    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>span>img {
    width: 100%;
}

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

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

.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: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>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,
.top3,
.top4,
.top5,
.top6,
.top0,
.top7 {
    position: relative;
    padding: 0.4rem 1rem;
    z-index: 15;
}

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

.top1 {
    padding-top: 3rem;
    padding-bottom: 6rem;
}

.top1>i {
    width: 35%;
    position: relative;
    z-index: 15;
}

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

.top1>u>img {
    width: 100%;
}

.top1>u::after {
    position: absolute;
    bottom: -20px;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #000848 10%, #0031A7 50%, #00063C 90%);
    filter: blur(10px);
    -webkit-filter: blur(10px);
}

.top1>span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    z-index: 10;
}

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

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

.top1>div>span {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 50px;
}

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

.top1>div>div>p {
    margin-bottom: 50px;
}

.top1>div>div>p>b {
    font-size: .24rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.top1>div>div>p>i {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.top1>div>div>a {
    width: 135px;
    height: 40px;
    border: 2px solid #FFFFFF;
    transition: .5s;
    border-radius: 6px;
    text-align: center;
    line-height: 34px;
    font-size: 16px;
    color: #fff;
    position: relative;
}

.top1>div>div>a>i {
    font-size: .24rem;
    color: #fff;
    position: absolute;
    top: 11px;
    right: 18px;
    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>div>div>a:hover {
    border: 2px solid #008cff;
    padding-right: 0.4rem;
    background: none;
    color: #008cff;
}

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

h2.biaoti {}

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

p.jj {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-size: 1rem;
    color: #00043D;
    background: linear-gradient(0deg, #00043D 0%, #009CFF 35%, #ACDFFF 65%, #009CFF 85%, #031B90 100%);
    box-shadow: 0px 3px 30px 0px #000B5C;
    border-radius: 20px;
}

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

p.jj>b {
    color: #00043D;
    /* margin-left: 0.15rem; */
    font-weight: bold;
    /* text-shadow: 1px 1px #000; */
}

.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: 90%;
    z-index: 10;
}

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

.sj_video>div>i,
.sj_video2>div>i {
    cursor: pointer;
    width: 35px;
    height: 35px;
    background-color: rgb(102 98 98 / 50%);
    font-size: 20px;
    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;
}

h3.tit {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h3.tit>i {
    max-width: 8rem;
    font-size: 1rem;
    font-family: SourceHanSansCN;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    /* text-shadow: 0px 3px 9px #000B5C; */
    background: linear-gradient(to left, #2054F5 0%, #32B3FF 40%, #FFFFFF 70%, #59C1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3.tit>a {
    font-size: .8rem;
    color: #fff;
    position: relative;
    padding: .4rem .8rem;
    font-weight: normal;
}

h3.tit>a::before {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #2054F5, #32B3FF, #FFFFFF, #59C1FF);
}

h3.tit>a::after {
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(270deg, #2054F5, #32B3FF, #FFFFFF, #59C1FF);
}

.top2 {
    padding-bottom: 1.65rem;
    position: relative;
}

.sj_nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 30px;
    width: 100%;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    background: rgba(0, 0, 0, .8);
}

.sj_nav>span {
    width: 130px;
}

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

.sj_nav>a {
    display: block;
    font-size: 18px;
}

.top1>span::before {
    position: absolute;
    top: -20px;
    height: 40px;
    width: 100%;
    left: 0;
    filter: blur(10px);
    background: linear-gradient(90deg, #000848 10%, #0031A7 50%, #00063C 90%);
}

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

.top2>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>p>i {
    display: inline-block;
    color: #2BC7FE;
}

.top2>ul {
    display: flex;
    padding: 0 1.8rem;
    justify-content: space-between;
    position: relative;
    z-index: 15;
}

.top2>ul>li {}

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

.top2>ul>li>p>b {
    font-size: .48rem;
    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>ul>li>p>b>img {
    width: .42rem;
}

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

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

.top2>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>div>span {
    position: absolute;
    bottom: 0;
    opacity: 0;
    animation-name: upup;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

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

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

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

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

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

.topjj .topjj_d>i.swjj_rt {}

.topjj .topjj_d>div {
    width: 75%;
}

.topjj .topjj_d>div>#swjj_2 {
    padding: 15px;
}

.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>h2 {
    padding-left: 3.6rem;
}

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

.top3>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>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>div>ul>li {
    position: relative;
    z-index: 20;
}


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

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

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

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

.top3>ul>li {
    cursor: pointer;
}

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

.top3>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>ul.t3_ul2>li>p {
    font-size: .16rem;
    text-align: center;
    color: #fff;
    transition: .5s;
}

.top3>ul.t3_ul2>li.on,
.top3>ul.t3_ul2>li.active {}

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

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

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

.top3>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>ul.t3_ul2>li.active::after {
    opacity: 1;
}

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

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

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

.top3>.t3_d2>div>span {
    width: 47%;
}

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

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

.top3>.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>.t3_d2>div>div>span {
    color: #fff;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

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

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

.top3>.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>.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>.t3_d2>div>div>div>p>i {
    font-size: .16rem;
    line-height: 1.5;
    color: #fff;
}

.top3>.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>.t3_d2>div>div::-webkit-scrollbar-thumb {
    background-color: #0028A7;
    border: 8px solid #01EEFF;
    border-radius: 7px;
}

.top4>ul {
    margin: 0.6rem 0 0.3rem 0;
    position: relative;
}

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

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

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

.top4>ul>li>div>p {
    font-size: 16px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.top4>ul>li>div>p>b {
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
}

.top4>ul>li>div>p>i {
    color: #fff;
    line-height: 1.5;
    margin-top: 0.4rem;
    display: block;
}

.top4>ul>li>div>b {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.5;
}

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

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

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

.top4>ul>li>div>div>a {
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    border: 2px solid #FFFFFF;
    display: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

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

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

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

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

.top4>ul>li>span {
    max-width: 2.9rem;
    display: none;
}

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

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

.top4 .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 .swiper-slide:hover>div,
.top4 .swiper-slide-active>div,
.top4 .swiper-slide.on>div {
    opacity: 1;
}

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

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

.top4>p {
    display: flex;
    justify-content: center;
    margin-top: 0.3rem;
}

.top4 .sw4_lf,
.top4 .sw4_rt {
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top4 .sw4_lf::after,
.top4 .sw4_rt::after {
    width: 8px;
    height: 8px;
    position: relative;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.top4 .sw4_lf::after {
    transform: rotate(-135deg) translate(-0.02rem, 0.02rem);
}

.top4 .sw4_rt {
    margin: 0;
}

.top4 .sw4_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: 6vh 5%;
    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: 3vh;
    right: 7%;
    width: 25px;
    height: 25px;
    background-color: #fff;
    font-size: 20px;
    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: 22px;
    color: #fff;
    margin-bottom: 0.3rem;
}

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

.top4 .n_form>ul>li {
    margin-top: 10px;
}

.top4 .n_form>ul>li>input {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 16px;
}

.top4 .n_form>button {
    display: block;
    width: 120px;
    padding: 10px;
    font-size: 18px;
    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>ul {
    margin-top: 0.5rem;
}

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

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

.top5>ul>li>i>img {
    width: 40px;
    transition: .5s;
}

.top5>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>ul>li>img {
    width: 100%;
}

.top7>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>h2 {}

.top6>ul {
    margin: 0.4rem 0;
    position: relative;
    z-index: 10;
}

.top6>ul>li {
    width: 100%;
    position: relative;
    margin-bottom: 2%;
}

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

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

.top6>ul>li>i>img {
    width: 40px;
    transition: .5s;
}

.top6>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>ul>li>div {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top6>ul>li>div>p {
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.top6>ul>li>div>p>i {
    width: 40px;
}

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

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

.top6>div {
    height: 120px;
}

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

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

.top6 .swiper-slide>span {
    width: 30px;
}

.top6 .swiper-slide>p {
    width: 55%;
}

.top6 .swiper-slide>p>b {
    font-size: 14px;
    color: #fff;
    transition: .5s;
    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 1;

    overflow: hidden;
}

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

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

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

.top6 .swiper-slide>i {
    font-size: 14px;
    color: #fff;
}


.top6>p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

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

.top6>p>span.swiper-pagination-bullet-active {
    width: 35px;
    background-color: #fff;
}

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

.top7,
.top7 {
    height: auto !important;
}

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

.top7>ul>li {}

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

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

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

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

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

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

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

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

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

.top7>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>div.foot>ul {
    display: flex;
    justify-content: flex-start;
}

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

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

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

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

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

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

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

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

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

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

}

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

    .nav>span {
        width: 18%;
    }

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

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

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

}

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

@media screen and (max-width:540px) {
    .nav {
        padding: 10px 30px;
        align-items: center;
        /* position: relative; */
        z-index: 55;
        background: #000;
    }

    .nav::after {
        display: none;
    }

    .nav>span {
        width: 130px;
        max-width: 130px;
        position: relative;
        z-index: 55;
    }

    .nav>ul {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 40;
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        height: auto;
        padding: 20px 0;
        padding-top: 70px;
        transition: .5s;
        transform: translateY(-100%);
    }

    .nav>ul.on {
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
    }

    .nav>ul>li {
        margin-left: 0;
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 10px 0;
        color: #fff;
        font-weight: 500;
    }

    .nav>ul>li>a:hover,
    .nav>ul>li.on>a {
        border-bottom: none;
    }

    #nav-icon {
        width: 28px;
        height: 26px;
        position: relative;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
        transform: translateY(6px);
        position: relative;
        z-index: 55;
    }

    #nav-icon span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #fff;
        border-radius: 2px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    #nav-icon span:nth-child(1) {
        top: 0px;
        transform-origin: left center;
    }

    #nav-icon span:nth-child(2) {
        top: 8px;
        transform-origin: left center;
    }

    #nav-icon span:nth-child(3) {
        top: 16px;
        transform-origin: left center;
    }

    #nav-icon span:nth-child(1) {
        top: 0px;
        transform-origin: left center;
    }

    #nav-icon.open span:nth-child(1) {
        transform: rotate(45deg);
        top: -2px;
        left: 6px;
    }

    #nav-icon.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    #nav-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 18px;
        left: 6px;
    }

    .top1 {
        background: url(../ph_img/top1.png) no-repeat bottom;
        background-size: 100% auto;
    }

    h2.biaoti>b {
        font-size: 30px;
        -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 {
        color: #fff;
        font-weight: normal;
        position: relative;
        z-index: 10;
        font-size: 26px;
        margin-top: -15px;
    }

    h2.biaoti>p>i {
        font-size: 16px;
        color: #fff;
        margin-top: 10px;
    }

    h2.biaoti>p>button {
        outline: none;
        border: 1px solid #fff;
        border-radius: 6px;
        padding: 10px;
        background: transparent;
        color: #fff;
        font-size: 16px;
        width: auto;
        margin-left: 0;
        cursor: pointer;
        margin-top: 10px;
    }

    .top2>p {
        font-size: 14px;
        line-height: 2;
        padding: 0;
    }

    .top2>ul {
        display: flex;
        padding: 0;
        flex-wrap: wrap;
    }

    .top2>ul>li {
        width: 48%;
    }

    .top2>ul>li:first-child {
        width: 100%;
        margin-bottom: 20px;
    }

    .top2>ul>li>p {
        justify-content: center;
    }

    .top2>ul>li>p>b {
        font-size: 18px;
    }

    .top2>ul>li>p>b>img {
        width: 30px;
    }

    .top2>ul>li>p>i {
        font-size: 16px;
    }

    .top2>ul>li>i {
        font-size: 14px;
    }

    .top3 {
        padding: 0.4rem 1rem;
    }

    .top3>h2 {
        padding-left: 0;
    }

    .top3>div,
    .top3>ul,
    .top3>.t3_d2 {
        padding: 0;
        flex-wrap: wrap;
    }

    .top3>.t3_d2>div {
        width: 100%;
        padding: 10px 0;
        background: none;
        box-shadow: none;
        flex-wrap: wrap;
    }

    .top3>.t3_d2>div>span {
        display: none;
    }

    .top3>.t3_d2>div>div {
        width: 100%;
        max-height: initial;
        display: none;
    }

    .top3>.t3_d2>div>div>i {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .top3>.t3_d2>div>div>div>b {
        font-size: 14px;
        width: 30%;
    }

    .top3>.t3_d2>div>div>div>p {
        width: 70%;
    }

    .top3>.t3_d2>div>div>div>p>b {
        font-size: 14px;
    }

    .top3>.t3_d2>div>div>div>p>i {
        font-size: 12px;
    }

    .top3>.t3_d2>div>p {
        width: 100%;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .top3>.t3_d2>div>p::after {
        width: 10px;
        height: 10px;
        border: 2px solid #fff;
        right: 0;
        top: 13px;
        border-left: none;
        border-bottom: none;
        transform: rotate(45deg);
        transition: .5s;
    }

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

    .top3>.t3_d2>div.on>p::after {
        transform: rotate(135deg);
    }

    .top3>.t3_d2>div>p>b,
    .top3>.t3_d2>div>p>i {
        color: #fff;
    }

    .top7>ul>li>p>i {
        width: 25px;
    }

    .top7>ul>li>p>b {
        font-size: 16px;
        margin-left: 10px;
    }

    .top7>ul>li>b {
        font-size: 16px;
    }

    .top7>ul>li>a {
        font-size: 14px;
        margin-top: 10px;
        display: -webkit-box;

        -webkit-box-orient: vertical;

        -webkit-line-clamp: 1;

        overflow: hidden;
    }

    .top7>ul>li:last-child>a::after {
        width: 10px;
        height: 10px;
        transform: rotate(-45deg) translate(15px, 0px);
    }

    .top7>ul>li:nth-child(1) {
        margin-bottom: 20px;
    }

    .top7>ul>li:nth-child(2) {
        width: 40%;
        border-left: none;
    }

    .top7>ul>li:nth-child(3) {
        width: 50%;
    }

    .top7>div.foot {
        flex-wrap: wrap;
        padding: 5% 5%;
        position: relative;
    }

    .top7>div.foot>ul {
        width: 100%;
    }

    .top7>div.foot>ul>li {
        margin-right: 0.8rem;
        display: flex;
        align-items: center;
        width: 45%;
        flex-wrap: wrap;
    }

    .top7>div.foot>ul>li>span {
        width: auto;
        display: table;
        margin: 0 auto;
    }

    .top7>div.foot>ul>li>p {
        font-size: 14px;
        margin-left: 0;
        color: #fff;
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .top7>div.foot>span {
        width: 50%;
        margin-top: 15px;
    }
}

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