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-color: #fff;
    z-index: 99;
}

body.on::before {
    display: none;
}

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: 2rem;
    cursor: pointer;
}

.nav>ul {
    width: 60%;
    align-items: center;
}

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

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


.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 {
    position: relative;
    padding: 1.2rem 2.4rem 1.8rem 2.8rem;
}

.top1>.fp-tableCell>video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    /* opacity: .75; */
}

.fp-auto-height {
    height: auto !important;
}

.top1>.fp-tableCell>div {
    padding-top: 1rem;
}

.top1>.fp-tableCell>div>span {
    width: 100%;
    margin: 0 auto;
    margin-bottom: -0.4rem;
    transform: translateX(5%);
    /* margin-bottom: 0.6rem; */
}

.top1>.fp-tableCell>div>h1 {
    font-size: .3rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 10px;
    font-weight: 100;
}

.top1>.fp-tableCell>div>h1>img {
    margin: 0 0.1rem;
}

.top1>.fp-tableCell>div>p {
    font-size: .24rem;
    text-align: center;
    letter-spacing: 5px;
    color: #fff;
    margin: 0.5rem 0 1.2rem 0;
}

.top1>.fp-tableCell>div>a {
    width: 261px;
    height: 81px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #FFFFFF;
    transition: .5s;
    border-radius: 6px;
    text-align: center;
    line-height: 80px;
    font-size: .3rem;
    color: #fff;
    position: relative;
    margin: 0 auto;
    transform: scale(.7) translateX(-0.2rem);
}

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

.top1>.fp-tableCell>div>a>i {
    font-size: .3rem;
    color: #fff;
    position: absolute;
    top: 26px;
    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>a:hover>i {
    right: 16px;
    color: #008cff;
}

.top2 {
    /* background-color: #040B25; */
    /* background-image: url(../img/top2_bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: .8rem;
    position: relative;
}

h2.biaoti {}

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: .24rem;
    color: #fff;
    margin-left: 0.2rem;
}

.top2>.fp-tableCell>h2 {}

.top2>.fp-tableCell>h2>p {}

.top2>.fp-tableCell>div {
    margin-top: 1.8rem;
}

.top2>.fp-tableCell>div>h3 {
    font-size: .3rem;
    text-align: center;
    color: #fff;
    margin-bottom: .6rem;
}

.top2>.fp-tableCell>div>div {
    justify-content: center;
}

.top2>.fp-tableCell>div>div>div {
    font-size: .24rem;
    display: flex;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    padding: 0.18rem;
    background: linear-gradient(0deg, #362FCA, #3560FD, #2A43D3);
    /* border: 6px solid #40C0E7; */
    /* border-image: linear-gradient(0deg, #4B71F8, #40C0E7) 6 6; */
    /* box-shadow: 0px 59px 117px 0px rgb(58 37 200 / 35%); */
    border-radius: 6px;
}

.top2>.fp-tableCell>div>div>div:first-child {
    margin-right: .3rem;
}

.top2>.fp-tableCell>div>div>div>p {
    font-weight: bold;
    font-size: .4rem;
    color: #fff;
    background: url(../img/top2_txtbg.png) no-repeat center;
    background-size: cover;
}

.top2>.fp-tableCell>b {
    font-size: .3rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    background: linear-gradient(0deg, #2456E2 0%, #4DA7F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.top2>.fp-tableCell>p {
    font-size: .18rem;
    color: #fff;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 0.6rem;
    padding: 0 1.5rem;
}

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

@keyframes sx2 {
    0% {
        bottom: 100px;
    }

    20% {
        bottom: 150px;
    }

    26% {
        bottom: 100px;
    }

    31% {
        bottom: 125px;
    }

    36% {
        bottom: 100px;
    }

    40% {
        bottom: 110px;
    }

    44% {
        bottom: 100px;
    }

    47% {
        bottom: 104px;
    }

    50% {
        bottom: 100px;
    }

    100% {
        bottom: 100px;
    }
}

.top2>.fp-tableCell>i {
    width: .4rem;
    margin: 0 auto;
    position: absolute;
    left: 49%;
    animation: sx2 3s ease-in-out 0s infinite forwards;
}

.top3,
.top4,
.top5,
.top6,
.top7,
.top8 {
    /* background-color: #040B25; */
    padding-top: 0.8rem;
    position: relative;
}

.top3>.fp-tableCell>h2 {}

.top3>.fp-tableCell>h2>b {}

.top3>.fp-tableCell>h2>p {}

.top3>.fp-tableCell>div {
    margin-top: .5rem;
}

.top3 ul {
    position: relative;
}

.top3 ul>li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: .75rem 1.4rem;
    opacity: 0;
    z-index: 1;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    overflow: hidden;
    /* cursor: pointer; */
}

.top3 ul>li::after {
    width: 100%;
    height: 100%;
    background-color: #000;
    /* display: none;    */
    opacity: .5;
    z-index: 25;
    top: 0;
    left: 0;
}

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

.top3 ul>li>span {
    position: absolute;
    width: 1rem;
    right: 46%;
    top: 31%;
    transition: .5s;
    z-index: 30;
    cursor: pointer;
}

.top3 ul>li>span:hover {
    transform: scale(1.2);
}

.top3 ul>li>h4 {
    font-size: .36rem;
    color: #fff;
    font-family: "PANGMENZHENGDAOBIAOTITI-1";
    font-weight: normal;
    letter-spacing: 4px;
    position: relative;
    z-index: 10;
    opacity: 0;
}

.top3 ul>li>h4>i {
    color: #3b8eff;
    font-family: "PANGMENZHENGDAOBIAOTITI-1";
    display: inline-block;
}

.top3 ul>li>h4:nth-child(2) {
    padding-left: .5rem;
}

.top3 ul>li>b {
    margin: .4rem 0 .45rem 0;
    font-size: .24rem;
    color: #fff;
    position: relative;
    z-index: 10;
    opacity: 0;
}

.top3 ul>li>p {
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    opacity: 0;
    z-index: 10;
}

.top3 ul>li>video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    z-index: 20;
    transform: translateY(-8%);
}

.top3 ul>li>p>i {
    margin-right: .1rem;
}

.top3 ul>li>p>i:nth-child(2) {
    margin-left: .5rem;
}

.top3 .swiper-container {
    margin-top: .29rem;
}

.top3 .swiper-slide {
    height: auto;
    padding: .3rem;
    background: url(../img/top3_bg.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    pointer-events: auto !important;
    border-radius: 6px;
    border: 1px solid transparent;
    /* transform: translateX(-105%); */
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.top3 .swiper-slide:hover {
    background: url(../img/top3_hover.png) no-repeat center;
    background-size: cover;
    border: 1px solid #008cff;
}

.top3 .swiper-slide>p {
    font-size: .2rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: .3rem;
}

.top3 .swiper-slide>a {
    margin-top: .3rem;
    border: 1px solid #FFFFFF;
    display: table;
    padding: .12rem .48rem;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top3 .swiper-slide:hover>a {
    background: #643bff;
    border: 1px solid transparent;
    /* background: linear-gradient(-90deg, #3059F9 0%, #59A3F6 100%); */
}

.top3 span {
    margin-top: .2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top3 span>i {
    cursor: pointer;
}

.top3 span>i:last-child {
    margin-left: .6rem;
    font-size: .12rem;
    color: #fff;
    font-weight: bold;
}

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

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

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

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

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

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

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

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

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

.top4 {}

.top4 ul {
    margin-top: 0.8rem;
}

.top4 ul>li {
    width: 22%;
    background-image: url(../img/top4_bg.png);
    position: relative;
    background-color: #000215;
    transition: .5s;
    border-radius: 6px;
    border: 1px solid transparent;
    overflow: hidden;
}

.top4 ul>li:hover {
    background-image: url(../img/top4_bg1.png);
    border: 1px solid #008cff;
    transform: translateY(-0.38rem);
    overflow: inherit;
}

.top4 ul>li>div {
    position: absolute;
    bottom: -0.05rem;
    z-index: 20;
    left: -0.1rem;
    padding: 0.25rem 0.3rem;
    transition: .5s;
    width: 100%;
}

.top4 ul>li>div>b {
    font-weight: bold;
    font-size: .24rem;
    color: #fff;
    transition: .5s;
    opacity: 1;
}

.top4 ul>li>div>p {
    font-size: .2rem;
    color: #fff;
    line-height: 1.2;
    margin-top: 0.15rem;
    transition: .5s;
    opacity: 1;
    width: 200%;
}

.top4 ul>li:hover>div>b,
.top4 ul>li:hover>div>p {
    opacity: 0;
}

.top4 ul>li>div>i {
    position: absolute;
    z-index: -1;
    opacity: 0;
    bottom: 0%;
    left: 100%;
    transition: .5s;
    width: 100%;
    /* height: 100%; */
    background: linear-gradient(-90deg, rgba(48, 89, 249, 0) 0%, #643bff 100%);
    border-radius: 6px;
    color: #fff;
    font-size: .16rem;
    z-index: 30;
    padding: 0.15rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.top4 ul>li>span {
    position: relative;
    overflow: hidden;
}

.top4 ul>li>span>img {
    position: relative;
    z-index: 10;
    width: 100%;
    transition: .5s;
    transform: translateX(0.4rem);
    -webkit-transform: translateX(0.4rem);
    -moz-transform: translateX(0.4rem);
    -ms-transform: translateX(0.4rem);
    -o-transform: translateX(0.4rem);
}

.top4 ul>li>span>img:last-child {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
}

.top4>.fp-tableCell>b {
    font-weight: bold;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #2456E2 0%, #4DA7F3 100%);
    font-size: .36rem;
    text-align: center;
    margin: 0.4rem 0 0.35rem 0;
}

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

.top4 ul>li:hover>span {
    overflow: inherit;
}

.top4 ul>li:hover>span>img {
    opacity: 0;
}

.top4 ul>li:hover>span>img:last-child {
    opacity: 1;
}

.top4 ul>li:hover>div {
    bottom: 0.25rem;
    left: -0.3rem;
}

.top4 ul>li:hover>div>i {
    opacity: 1;
    left: 0;
}

.top5>.fp-tableCell>div {
    margin-top: 0.2rem;
    align-items: center;
}

.top5 .t5_lf {
    width: 270px;
    height: 230px;
    position: relative;
    transform: scale(1.5) translateX(20%);
    -webkit-transform: scale(1.5) translateX(20%);
    -moz-transform: scale(1.5) translateX(20%);
    -ms-transform: scale(1.5) translateX(20%);
    -o-transform: scale(1.5) translateX(20%);
    /* margin-top: 0.5rem; */
}

.top5 .t5_lf>img {
    width: 100%;
}

.top5 .t5_lf>p {
    font-size: 12px;
    text-align: center;
    color: #fff;
    /* position: absolute; */
    width: 100%;
    /* top: -100%; */
    transform: translateX(0.2rem);
    margin-top: .3rem;
}

.top5 .t5_lf>p>i {
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.2rem;
}

.top5 .t5_lf>p>i>img {
    width: .6rem;
    margin-right: .2rem;
}

.top5 .t5_circle {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 16px;
    left: 35px;
}

.top5 .t5_txt {
    font-size: 38px;
    color: #fff;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 40%;
    left: 0;
}

.top5 .t5_rt {
    width: 62%;
    padding: .4rem .22rem;
    border: 1px solid #008cff;
    border-radius: 10px;
    padding-bottom: 0.2rem;
}

.top5 .t5_rt>p {
    font-size: .24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.top5 .t5_rt>p>b {
    font-weight: bold;
    color: #fff;
}

.top5 .t5_rt>p>i {


    background-image: linear-gradient(to right, #2456E2 0%, #4DA7F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top5 .t5_rt>p>u {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-top: 0.2rem;
}

.top5 .t5_rt>ul {
    display: flex;
    justify-content: space-around;
    margin-top: 0.15rem;
}

.top5 .t5_rt>ul>li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
}

.top5 .t5_rt>ul>li>img {
    width: 0.6rem;
    margin-right: 0.2rem;
}

.top5 .t5_rt>i {
    width: 100%;
    height: 4px;
    margin: .2rem 0;
    border-radius: 10px;
    background: linear-gradient(-90deg, #081439 0%, #008cff 100%);
}

.top5 .t5_rt .swiper-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.top5 .t5_rt .swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-radius: 10px;
    padding-right: 0.5rem;
    pointer-events: auto !important;
    padding: 0.2rem 0.3rem 0.2rem 0.2rem;
    flex-wrap: wrap;
    overflow: hidden;
    width: 49%;
    background: #0C1943;
    margin-bottom: 0.15rem;
    height: auto;
    cursor: pointer;
}

.top5 .t5_rt .swiper-slide::after {
    width: 100%;
    height: 100%;
    left: 100%;
    top: 0;
    background: linear-gradient(-90deg, #643bff 0%, rgba(48, 89, 249, 0) 100%);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top5 .t5_rt .swiper-slide:hover:after {
    left: 0;
}

.top5 .t5_rt .swiper-slide>p {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: .2rem;
    width: 80%;
    color: #00beff;
    /* padding: 0 0.2rem; */
    position: relative;
    z-index: 10;
    line-height: 1.5;
}

.top5 .t5_rt .swiper-slide>p>b {
    font-size: .16rem;
    width: 100%;
    position: relative;
    z-index: 10;
    color: #fff;
    margin-bottom: 0.05rem;
}

.top5 .t5_rt .swiper-slide>p>i {
    margin-top: 0.05rem;
    font-size: .16rem;
    color: #fff;
    line-height: 1.5;
}

.top5 .t5_rt .swiper-slide>i {
    width: .2rem;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    position: relative;
    z-index: 20;
}

.top5 .t5_rt .swiper-slide>i>img {
    transition: .5s;
}

.top5 .t5_rt .swiper-slide>i>img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(180deg);
    opacity: 0;
}

.top5 .t5_rt .swiper-slide:hover>i>img {
    opacity: 0;
}

.top5 .t5_rt .swiper-slide:hover>i>img:last-child {
    opacity: 1;
}

.top5 .t5_rt .swiper-slide>div {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-left: .25rem;
    display: flex;
    /*justify-content: center;
    */
    align-items: center;
    padding-right: .8rem;
    line-height: 1.6;
    font-size: .16rem;
    color: #fff;
    opacity: 0;
    background: linear-gradient(90deg, #643bff 0%, #59A3F6 100%);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    left: 100%;
    display: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.top5 .t5_rt .scrollbar5 {}

.top5 .t5_rt .scrollbar5 .swiper-scrollbar-drag {
    background: linear-gradient(to bottom, #FFCF3F 0%, #EF6739 100%);
}

.top5 .t5_rt .swiper-slide:hover>div,
.top5 .t5_rt .swiper-slide.on>div {
    left: 0;
    opacity: 1;
}

.top5 .t5_rt .swiper-slide:hover>i,
.top5 .t5_rt .swiper-slide.on>i {
    transform: rotate(180deg);
}

.top6 {}

.top6 ul {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

@keyframes dong2 {
    0% {
        transform: scale(.7);
        -webkit-transform: scale(.7);
        -moz-transform: scale(.7);
        -ms-transform: scale(.7);
        -o-transform: scale(.7);
    }

    100% {
        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 {
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: linear-gradient(to bottom, #86beff 0%, #305af9 100%);
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    position: relative;
    transform: scale(.7);
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    -o-transform: scale(.7);
    animation-name: dong;
    animation-delay: 0s;
    animation-duration: 8s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.top6 ul>li:hover {
    background: none;
    transform: scale(.7);
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    -o-transform: scale(.7);
    box-shadow: 0px 0px 20px 8px rgb(255 255 255 / 50%);
    animation-name: dong2;
    animation-delay: 0s !important;
    animation-duration: .2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.top6 ul>li:nth-child(2) {
    margin-top: 0.43rem;
    animation-delay: 1.2s;
}

.top6 ul>li:nth-child(3) {
    margin-top: -0.63rem;
    animation-delay: .6s;
}

.top6 ul>li:nth-child(4) {
    margin-top: .7rem;
}

.top6 ul>li:nth-child(5) {
    margin: -0.2rem 0 0 1rem;
    animation-delay: .4s;

}

.top6 ul>li:nth-child(6) {
    margin: -0.3rem -1.5rem 0 -1rem;
    animation-delay: 2s;
}

.top6 ul>li:nth-child(7) {
    margin: -0.6rem 3rem 0 0;

}

.top6 ul>li>i {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    opacity: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-image: url(../img/top6.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.top6 ul>li:nth-child(2)>i {
    background-image: url(../img/top6_2.png);
}

.top6 ul>li:nth-child(3)>i {
    background-image: url(../img/top6_3.png);
}

.top6 ul>li:nth-child(4)>i {
    background-image: url(../img/top6_4.png);
}

.top6 ul>li:nth-child(5)>i {
    background-image: url(../img/top6_5.png);
}

.top6 ul>li:nth-child(6)>i {
    background-image: url(../img/top6_6.png);
}

.top6 ul>li:nth-child(7)>i {
    background-image: url(../img/top6_7.png);
}

.top6 ul>li>i>img {
    opacity: 0;
}

.top6 ul>li:hover>i {
    opacity: 1;
}

.top6 ul>li>p {
    font-size: .24rem;
    font-weight: bold;
    line-height: 2;
    text-align: center;
    transition: .8s;
    opacity: 0;
    position: relative;
    z-index: 20;
    color: #fff;
}

.top6 ul>li:hover>p {
    opacity: 1;
}

.top6 ul>li>div {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top6 ul>li>div>p {
    font-size: .28rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.top6 ul>li>div>b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #305AF9; */
}

@keyframes state1 {
    0% {
        opacity: .5;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

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

.top6 ul>li>div>b>i {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background: #305AF9; */
    background: linear-gradient(to bottom, #86beff 0%, #305af9 100%);
    z-index: -1;
    border-radius: 50%;
    animation-duration: 2.4s;
    animation-name: state1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-name: state1;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-direction: alternate;
}

.top6 ul>li:hover>div>b>i {
    animation: none;
    -webkit-animation: none;
}

.top6 ul>li>div>b>i:nth-child(2) {
    animation-delay: 1.2s;
}

/* .top6 ul>li>div>b>i:last-child {
    animation-delay: 1.5s;
} */
.top7 {
    position: relative;
}

.top7 #sw7 {
    margin-bottom: .25rem;
}

.top7 #sw7 .swiper-slide {
    /* height: auto; */
}

.top7 #sw7 .swiper-slide>ul {
    margin-top: 0.6rem;
    height: 100%;
}

.top7 #sw7 .swiper-slide>ul>li {
    width: 23.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top7 #sw7 .swiper-slide>ul>li>div {
    background: #0C1943;
    border-radius: 6px;
    cursor: pointer;
}

.top7 #sw7 .swiper-slide>ul>li>div>span {
    overflow: hidden;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.top7 #sw7 .swiper-slide>ul>li>div>span>img {
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top7 #sw7 .swiper-slide>ul>li>div: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);
}

.top7 #sw7 .swiper-slide>ul>li>div>div {
    padding: 0.2rem;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>span {
    align-items: center;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>span>i {
    width: 0.9rem;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    height: 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>span>i>img {
    max-height: 100%;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>span>u {
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>span>u:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.top7 #sw7 .swiper-slide>ul>li>div>div>span>a {
    font-size: .16rem;
    color: #305AF9;
    transition: .5s;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>p {
    font-size: .16rem;
    color: #fff;
    line-height: 1.5;
    margin: 0.2rem 0;
    text-align: justify;
    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    overflow: hidden;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>div>p {
    font-size: .14rem;
    color: #fff;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>div>a {
    transition: .5s;
    font-size: .16rem;
    color: #305AF9;
}

.top7 #sw7 .swiper-slide>ul>li>div>div>div>a:hover,
.top7 #sw7 .swiper-slide>ul>li>div>div>span>a:hover {
    color: #008cff;
}

.top7 #sw7 .sj_one {
    height: 100%;
}

.top7 #sw7 .sj_two {
    height: 65%;
}

.top7 #sw7 .sj_three {
    height: 32%;
}

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

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

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

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

.top8 {}

.top8>.fp-tableCell>h2 {
    margin-bottom: .5rem;
}

.top8>.fp-tableCell>div {
    /* height: 70%;
    overflow: auto; */
}

.top8>.fp-tableCell>div::-webkit-scrollbar {
    width: 5px;
    transition: .5s;
    background-color: transparent;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    border-radius: 6px;
}

.top8>.fp-tableCell>div:hover::-webkit-scrollbar {
    width: 5px;
}

.top8>.fp-tableCell>div::-webkit-scrollbar-thumb {
    background-color: #fff;
    border: 5px solid #fff;
    border-radius: 6px;
}

.top8>.fp-tableCell>div>div {}

.top8>.fp-tableCell>div>div>div {
    width: 50%;
}

.top8>.fp-tableCell>div>p,
.top8>.fp-tableCell>div>div>div>p {
    font-size: .24rem;
    color: #fff;
    margin-bottom: .15rem;
}

.top8>.fp-tableCell ul {
    justify-content: flex-start;
    margin-bottom: 0.2rem;
}

.top8>.fp-tableCell ul>li {
    width: 13%;
    margin-right: 1.5%;
    margin-bottom: 1%;
    transition: .5s;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.top8>.fp-tableCell>div>div>div:first-child {
    width: 13.3%;
    margin-right: 1%;
}

.top8>.fp-tableCell>div>div>div:last-child {
    width: 85.5%;
}

.top8>.fp-tableCell>div>div>div ul>li {
    width: 32%;
    margin-right: 1.8%;
    margin-bottom: 2%;
}

.top8>.fp-tableCell>div>div>div:first-child ul>li {
    width: 100%;
}

.top8>.fp-tableCell>div>div>div:last-child ul>li {
    width: 15.2%;
}

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

.top8>.fp-tableCell ul>li>p {
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: #fff;
    color: #333;
    border-radius: 6px;
    overflow: hidden;
    line-height: 1.2;
    padding: 0.1rem;
}

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

.foot {
    position: relative;
    height: auto !important;
    padding: .8rem 1.6rem;
    /* background-color: #040B25; */
    background-color: #020613;
    padding: 0.8rem 1.6rem 0.2rem 1.6rem;
}

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

.foot>.fp-tableCell>.bac {
    background-image: url(../img/foot_bg.png);
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.35rem 0 0.3rem 0;
}

.foot>.fp-tableCell>.bac>span {
    position: absolute;
    left: 2rem;
    bottom: 0;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    width: 20%;
    overflow: hidden;
}

.foot>.fp-tableCell>.bac>span>img {
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    transition-delay: .8s;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
}

.foot.active>.fp-tableCell>.bac>span>img {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
}

.foot>.fp-tableCell>.bac>p {
    font-size: .24rem;
    font-weight: bold;
    color: #fff;
    margin-right: .13rem;
    margin-left: .28rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.foot>.fp-tableCell>.bac>p>i {
    width: 1.3rem;
    margin-right: 0.28rem;
}

.foot>.fp-tableCell>.bac>ul {
    margin-right: 2.47rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.foot>.fp-tableCell>.bac>ul>li {
    margin-left: .37rem;
}

.foot>.fp-tableCell>.bac>ul>li>span {
    display: table;
    margin: 0 auto;
    width: 1.06rem;
}

.foot>.fp-tableCell>.bac>ul>li>p {
    margin-top: .15rem;
    font-size: .15rem;
    color: #fff;
}

.foot>.fp-tableCell>.bac>ul>li>p>i {
    color: #FDDC00;
    display: inline-block;
}

.foot>.fp-tableCell>div:last-child {
    margin-top: .2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.foot>.fp-tableCell>div:last-child>p {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    font-size: .16rem;
    color: #fff;
}

.foot>.fp-tableCell>div:last-child>p>u {}

.foot>.fp-tableCell>div:last-child>p>i {
    margin-left: .15rem;
    position: relative;
    width: 0.4rem;
    cursor: pointer;
}

.foot>.fp-tableCell>div:last-child>p:first-child>i>img:first-child {
    opacity: .5;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.foot>.fp-tableCell>div:last-child>p:first-child>i:hover>img:first-child {
    opacity: 1;
}

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

.foot>.fp-tableCell>div:last-child>p:first-child>i:first-child:hover>img:last-child {
    opacity: 1;
}

.foot>.fp-tableCell>div:last-child>p:last-child {
    margin-left: 3.5rem;
}

.foot::after,
.top7::after {
    position: absolute;
    width: 100%;
    height: 5px;
    /* background-color: #040B25; */
    background-color: #020613;
    top: -3px;
    left: 0;
}

.foot::before {
    width: 100%;
    height: 4px;
    /* background-color: #040B25; */
    background-color: #020613;
    position: absolute;
    bottom: -2px;
    left: 0;
}

@media screen and (max-width:1440px) {
    .top5 .t5_lf>p {
        top: -80%;
        transform: translateX(0.7rem);
        -webkit-transform: translateX(0.7rem);
        -moz-transform: translateX(0.7rem);
        -ms-transform: translateX(0.7rem);
        -o-transform: translateX(0.7rem);
    }


    .top7 #sw7 .swiper-slide>ul>li>div>div>a,
    .top7 #sw7 .swiper-slide>ul>li>div>div>span>a,
    .top7 #sw7 .swiper-slide>ul>li>div>div>p {
        font-size: 14px;
    }

    .top7 #sw7 .swiper-slide>ul>li>div>div>div>p {
        font-size: 12px;
    }

    .top7 #sw7 .sj_two {
        height: 62%;
    }

    .top7 #sw7 .sj_three {
        height: 35%;
    }

    .top5 .t5_lf {
        transform: scale(1.2) translateX(8%);
        -webkit-transform: scale(1.2) translateX(8%);
        -moz-transform: scale(1.2) translateX(8%);
        -ms-transform: scale(1.2) translateX(8%);
        -o-transform: scale(1.2) translateX(8%);
    }

    .sj_liuyan {
        right: 0.13rem;
    }
}

@media screen and (max-width:1400px) {
    .top5 .t5_lf>p {
        top: -65%;
    }

    .top5 .t5_lf {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    .top7 #sw7 .swiper-slide>ul {
        margin-top: 0.3rem;
    }

    .top5>.fp-tableCell>div {
        margin-top: 0.3rem;
    }

    .top5 .t5_rt>.swiper-container {
        height: 300px !important;
    }

    .top1>.fp-tableCell>div>p {
        margin: 0.5rem 0;
    }

    .top1>.fp-tableCell>div>span {
        margin-bottom: 0;
    }

    .top1>.fp-tableCell>div {
        padding-top: 0.5rem;
    }

    .top5 .t5_rt {
        width: 67%;
        padding: 0.2rem;
    }

    .top5 .t5_rt .swiper-slide {
        padding: 0.1rem 0.2rem;
    }
}

@media screen and (max-width:1280px) {
    .top5 .t5_rt {
        width: 60%;
    }
}

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