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/digiwin2023/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%);
    /* 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,
.top3,
.top4,
.top5,
.top6,
.top7,
.top0 {
    position: relative;
    padding: 1rem 2.4rem 1.8rem 2.8rem;
    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(../image/top1_bg6.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: 6.7rem;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    opacity: 0;
}

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

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

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

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

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

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

.top2 {
    padding: 1.5rem 3.4rem;
    padding-top: 1rem;
    position: relative;
    z-index: 15;
    /* background: url(../image/top2_bg9.png) no-repeat center; */
    /* background-size: cover; */
}

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

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

.top2>.fp-tableCell>div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../image/top2_bg32.png) no-repeat center;
    background-size: cover;
    z-index: 1;
}

.top2>.fp-tableCell>div>i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../image/top2_bg9.png) no-repeat center;
    background-size: cover;
    animation-name: light;
    animation-duration: 1.5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    z-index: 10;
}

.top2>.fp-tableCell>p {
    margin-bottom: .4rem;
    margin-top: .6rem;
    position: relative;
    z-index: 15;
}

.top2>.fp-tableCell>i {
    font-size: .2rem;
    color: #fff;
    text-align: justify;
    line-height: 1.8;
    padding: 0px 13%;
    position: relative;
    z-index: 15;
    margin-top: 1rem;
}

.top3 {
    background: none;
    padding-top: 1rem;
}

.top2>.fp-tableCell>h2>i,
.top3>.fp-tableCell>h2>i {
    width: 3.75rem;
}

.top3>.fp-tableCell>p {
    margin: .7rem 0 .1rem 0;
}

.top3>.fp-tableCell>div {
    display: flex;
    justify-content: space-between;
}

.top3>.fp-tableCell>div>span {
    width: 33%;
}

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

.top3>.fp-tableCell>div>ul {
    width: 61%;
    overflow-y: auto;
    height: 6.8rem;
    padding-right: .2rem;
}

.top3>.fp-tableCell>div>ul::-webkit-scrollbar {
    width: 10px;
    height: 6px;
    transition: .5s;
    background-color: #DDDDDD;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    border-radius: 20px;
}

.top3>.fp-tableCell>div>ul::-webkit-scrollbar-thumb {
    background-color: #2345A7;
    border: 3px solid #2345A7;
    border-radius: 20px;
}

.top3>.fp-tableCell>div>ul>li {
    display: flex;
    padding: 0.24rem 0;
    border-bottom: 1px solid #fff;
}

.top3>.fp-tableCell>div>ul>li>p {
    width: 30%;
}

.top3>.fp-tableCell>div>ul>li>p:last-child {
    width: 70%;
}

.top3>.fp-tableCell>div>ul>li>p>span {
    font-size: .24rem;
    color: #fff;
}

.top3>.fp-tableCell>div>ul>li>p>i {
    font-size: .16rem;
    color: #fff;
    margin-top: 0.15rem;
    line-height: 1.5;
}

.top3>.fp-tableCell>div>ul>li>p>b {
    font-size: .24rem;
    font-weight: bold;
    color: #fff;
}

.top4 {}

.top4 h2.biaoti>i {
    width: 3.6rem;
}

.top4>.fp-tableCell>i {
    position: absolute;
    top: 1rem;
    left: 0;
    width: 100%;
    height: 100%;
}

.top4>.fp-tableCell>ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0.6rem;
    padding: 0 2rem;
}


.top4>.fp-tableCell>ul>li {
    /* width: 12%;
    margin-right: 5.6%; */
    width: 18%;
    margin-right: 2.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;
}

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

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

.top5 {}

.top5>.fp-tableCell>h2>i {
    width: 2.04rem;
}

.top5>.fp-tableCell>i {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0rem;
    top: 5.5rem;
    z-index: -1;
}

.top5>.fp-tableCell>div {
    margin-top: 0.8rem;
    padding: 0 10%;
}

.top5>.fp-tableCell>div>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.top5>.fp-tableCell>div>div>p {
    width: 15%;
    justify-content: flex-start;
}

.top5>.fp-tableCell>div>div>ul {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    width: 80%;
    padding: 0.15rem;
    border: 1px solid #009CFF;
    background: linear-gradient(-15deg, rgb(3 27 144 / 50%) 0%, rgb(0 4 61 / 50%) 55.00000000000001%, rgb(0 156 255 / 50%) 100%);
    box-shadow: 0px 3px 9px 0px #000B5C;
    border-radius: 10px;
}

.top5>.fp-tableCell>div>div>ul>li {
    width: 18%;
    margin-right: 2%;
    height: 0.5rem;
    background: #fff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

/* .top5>.fp-tableCell>div>div:nth-child(2)>ul>li {
    width: 24%;
    margin-right: 1%;
} */

.top5>.fp-tableCell>div>div:last-child {
    margin-bottom: 0;
}

.top5>.fp-tableCell>div>div:last-child>ul>li {
    /* width: 18%; */
    margin-bottom: 2%;
}

.top5>.fp-tableCell>div>div:last-child>ul {
    padding-bottom: 0.2rem;
}

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

.top5>.fp-tableCell>div>div:nth-child(3)>ul>li>img {
    width: 70%;
}

.top6 {}

.top6>.fp-tableCell>h2>i {
    width: 3.6rem;
}

.top6>.fp-tableCell>p {
    margin: .6rem 0 .2rem 0;
}

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

.top6 .swiper-container {
    padding-bottom: 0.4rem;
}

.top6 .swiper-slide {
    padding: .2rem;
    border: 1px solid #009CFF;
    background: linear-gradient(-15deg, #031B90 0%, #00043D 55.00000000000001%, #009CFF 100%);
    box-shadow: 0px 3px 9px 0px #000B5C;
    border-radius: 10px;
    cursor: pointer;
}

.top6 .swiper-slide>span {
    display: table;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.top6 .swiper-slide>p {
    margin: .1rem 0 .3rem 0;
    font-size: .16rem;
    color: #fff;
    line-height: 1.5;
    text-align: justify;

}

.top6 .swiper-slide>a {
    font-size: .16rem;
    color: #32B3FF;
    text-align: right;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top6 .swiper-slide:hover>a {
    color: #fff;
}

.top6 .scrollbar7 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}

.top6 .scrollbar7>span {
    margin-left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.top6 .scrollbar7>span.swiper-pagination-bullet-active {
    width: 50px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.top6 .scrollbar7>span:first-child {
    margin-left: 0;
}

.top6>.fp-tableCell>div.t5_vid {
    padding: .3rem;
    margin-top: 0.45rem;
    background-color: #00043D;
    background: url(../image/top1_bg6.png) no-repeat center;
    background-size: cover;
    position: relative;
}

.top6>.fp-tableCell>div.t5_vid>video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    left: 0;
}

.top6>.fp-tableCell>div.t5_vid::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #000000;
    opacity: .5;
}

.top6>.fp-tableCell>div.t5_vid>p {
    position: relative;
    z-index: 10;
}

.top6>.fp-tableCell>div.t5_vid>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: absolute;
    bottom: 1.6rem;
    left: 2.2rem;
    z-index: 10;
}

.top6>.fp-tableCell>div.t5_vid>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);
}

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

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

.top6>.fp-tableCell>div.t5_vid>i {
    display: table;
    position: relative;
    z-index: 10;
    width: 1.35rem;
    margin: 0.9rem auto;
    cursor: pointer;
    transition: .5s;
    transform: scale(.8);
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top6>.fp-tableCell>div.t5_vid>i:hover {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.top7 {
    padding-right: 2.8rem;
}

.top7>.fp-tableCell>h2>i {
    width: 2.65rem;
}

.top7>.fp-tableCell>div {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0.28rem 0.3rem 1.05rem;
    background: url(../image/top6_bg10.png) no-repeat center;
    background-size: 100% 100%;
    align-items: center;
    margin-top: 1rem;
}

.top7>.fp-tableCell>div>span {
    width: 49%;
    cursor: pointer;
}

.top7>.fp-tableCell>div>div {
    width: 45%;
}

.top7>.fp-tableCell>div>div>div:last-child {
    margin-bottom: 0;
}

.top7>.fp-tableCell>div>div>h3 {
    font-size: .36rem;
    font-weight: bold;
    color: #FFFFFF;
    background: linear-gradient(0deg, #40A7FF 0%, #FFFFFF 94.9951171875%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.32rem;
}

.top7>.fp-tableCell>div>div>div {
    display: flex;
    margin-bottom: 0.8rem;
    justify-content: space-between;
}

.top7>.fp-tableCell>div>div>div>i {
    width: 8%;
}

.top7>.fp-tableCell>div>div>div>p {
    padding-top: 0.1rem;
    width: 90%;
}

.top7>.fp-tableCell>div>div>div>p>b {
    font-size: .24rem;
    color: #fff;
}

.top7>.fp-tableCell>div>div>div>p>i {
    font-size: .18rem;
    color: #fff;
    margin: 0.2rem 0;
}

.top7>.fp-tableCell>div>div>div>p>a {
    font-size: .2rem;
    color: #fff;
    width: 1.9rem;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    padding: 0.17rem 0;
    text-align: center;
    transition: .5s;
}

.top7>.fp-tableCell>div>div>div>p>a:hover {
    color: #008cff;
    border-color: #008cff;
}

.top7>.fp-tableCell>div>div>div>p>span {
    font-size: .2rem;
    font-weight: bold;
    color: #fff;
}

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

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

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

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

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

@media screen and (max-height:940px) {
    .top3>.fp-tableCell>p {
        margin: 0.4rem 0 0.2rem 0;
    }

    .top3>.fp-tableCell>div>span {
        width: 33%;
        padding-left: 3%;
    }

    .top3>.fp-tableCell>div>ul {
        height: 6.2rem;
    }
}

@media screen and (max-height:940px) and (min-width:1450px) {
    .top3>.fp-tableCell>p {
        margin: 0.8rem 0 0.2rem 0;
    }
}

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

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

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

    .top3>.fp-tableCell>p {
        margin: .8rem 0 .2rem 0;
    }

    .top4>.fp-tableCell>ul>li {
        /* width: 19%;
        margin-right: 1.2%;
        margin-bottom: 1.2%; */
    }

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

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

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

@media screen and (max-width:1366px) {
    .top3>.fp-tableCell>div>span {
        width: 28%;
    }

    .nav>span {
        width: 18%;
    }

    .top3>.fp-tableCell>div>ul {
        height: 5.8rem;
    }

    .top4>.fp-tableCell>ul {
        transform: scale(.8);
        transform-origin: top;
        /* padding: 0 1.2rem; */
    }

    .top5>.fp-tableCell>div>div>ul {
        padding: .2rem;
    }

    .top1>.fp-tableCell>div>div>p>b,
    .top3>.fp-tableCell>div>ul>li>p>b,
    .top3>.fp-tableCell>div>ul>li>p>span {
        font-size: 18px;
    }

    p.jj,
    .top7>.fp-tableCell>div>div>div>p>span,
    .top2>.fp-tableCell>i {
        font-size: 16px;
    }

    .top6 .swiper-slide>p {
        font-size: 12px;
    }

    .top7>.fp-tableCell>div>div>div>p>i,
    .top3>.fp-tableCell>div>ul>li>p>i,
    .top6 .swiper-slide>a,
    .top1>.fp-tableCell>div>div>p>i {
        font-size: 14px;
    }

    .top6>.fp-tableCell>div.t5_vid>i {
        margin: 0.5rem auto;
    }
}

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