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/partner/css/PANGMENZHENGDAOBIAOTITI-1.otf") format("opentype");
}

body::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #040B25 0%, #000346 100%);
    /* 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;
    cursor: pointer;
}

.nav>ul {
    width: 60%;
    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 {
    position: relative;
    padding: .6rem 2.4rem 1.8rem 2.8rem;
}

.top1>.fp-tableCell {}

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

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

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

.top1>.fp-tableCell>div>span {
    width: 75%;
    margin: 1rem auto;
    margin-bottom: 2.2rem;
}

.top1>.fp-tableCell>div>p {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 0.15rem;
}

.top1>.fp-tableCell>div>p>b {
    color: #0018A5;
    background: url(../image/top1_ico.png) left no-repeat;
    background-size: cover;
    padding: 4px 12px;
}

.top1>.fp-tableCell>div>p>i {
    color: #fff;
    margin-left: 0.1rem;
}

.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);
    margin-top: 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(../image/top2_bg7.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom left;
    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: 0.6rem;
}

.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(../image/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;
    margin-top: 1.7rem;
    /* padding: 0 1.5rem; */
}

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

.top2>.fp-tableCell>i {
    margin: 0 auto;
    display: table;
}

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


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

.top3 {
    position: relative;
}

.top3.t3 {
    padding-top: 0;
    overflow: hidden;
}

.top3>.fp-tableCell>span {
    width: 100%;
    padding: 0 .8rem 0 1rem;
    position: absolute;
    top: 4.75rem;
    left: 0;
    z-index: 1;
}

.top3>.fp-tableCell>h4 {
    margin-top: 0.6rem;
    font-weight: normal;
    font-size: .24rem;
    color: #fff;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid #fff;
    position: relative;
}

.top3>.fp-tableCell>h4::after {
    width: 1.45rem;
    height: 4px;
    background: linear-gradient(90deg, #FFB351 0%, #F08541 100%);
    bottom: -1px;
    left: 0;
}

.top3>.fp-tableCell>h4>i {
    color: #fff;
    display: inline-block;
    margin-left: 0.1rem;
}

.top3>.fp-tableCell>h4.t3_h4 {
    margin-top: 0;
}

.top3>.fp-tableCell>ul {
    padding: 0.2rem 0.4rem 0 0.5rem;
    position: relative;
    z-index: 10;
}

.top3>.fp-tableCell>ul>li {
    margin-left: 0.23rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 0.18rem;
    border-bottom: 1px solid #fff;
    margin-bottom: 0.2rem;
    position: relative;
    /* cursor: pointer; */
}

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

.top3>.fp-tableCell>ul>li>div {}

.top3>.fp-tableCell>ul>li>div>p {
    display: flex;
    font-size: .2rem;
    color: #fff;
    margin-bottom: 0.1rem;
    align-items: baseline;
    transition: .5s;
}

.top3>.fp-tableCell>ul>li>div>p>span {
    background: linear-gradient(-90deg, #3059F9 0%, #59A3F6 100%);
    border-radius: 6px;
    font-size: .16rem;
    color: #fff;
    padding: 0.05rem;
    margin-right: 0.1rem;
}

.top3>.fp-tableCell>ul>li>div>p>i {
    font-size: .16rem;
    color: #999;
    margin-left: 0.15rem;
    transition: .5s;
}

.top3>.fp-tableCell>ul>li>div>span {
    display: flex;
    transition: .5s;
    font-size: .16rem;
    color: #fff;
    align-items: flex-end;
}

.top3>.fp-tableCell>ul>li>div>span>i {
    margin-right: 0.1rem;
}

.top3>.fp-tableCell>ul>li>p {
    display: none;
}

.top3>.fp-tableCell>ul>li>p>i {
    border-radius: 14px;
    border: 1px solid #FFFFFF;
    margin-bottom: 0.08rem;
    padding: 0.07rem 0.12rem;
    font-size: .16rem;
    color: #fff;
    transition: .5s;
}

.top3>.fp-tableCell>ul>li>p>span::before {
    color: #fff;
    position: relative;
    width: 5px;
    height: 5px;
    background: linear-gradient(0deg, #3059F9 0%, #59A3F6 100%);
    border-radius: 50%;
    margin-right: 0.05rem;
}

.top3>.fp-tableCell>ul>li>p>span {
    font-size: .16rem;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    transition: .5s;
}

.top3>.fp-tableCell>ul>li::before {
    width: 0.08rem;
    height: 0.08rem;
    background: linear-gradient(0deg, #3059F9 0%, #59A3F6 100%);
    border-radius: 50%;
    left: -0.2rem;
    top: 0.1rem;
}

.top3>.fp-tableCell>ul>li::after {
    height: 0.8rem;
    width: 2px;
    left: -0.17rem;
    background: linear-gradient(0deg, #3059F9 0%, #59A3F6 100%);
    top: 0.25rem;
}

.top3>.fp-tableCell>ul>li:hover {}

.top3>.fp-tableCell>ul>li:hover::before,
.top3>.fp-tableCell>ul>li:hover::after {
    background: linear-gradient(90deg, #FFB351 0%, #F08541 100%);
}

.top3>.fp-tableCell>ul>li:hover>div>p {
    color: #00DEFF;
}

.top3>.fp-tableCell>ul>li:hover>div>p>span {
    background: linear-gradient(90deg, #FFB351 0%, #F08541 100%);
}

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

.top3>.fp-tableCell>ul>li:hover>p>i {
    background: linear-gradient(90deg, #FFB351 0%, #F08541 100%);
    border: 1px solid transparent;
}

.top3>.fp-tableCell>ul>li:hover>p>span {
    color: #00DEFF;
}

.top3>.fp-tableCell>ul>li:hover>p>span::before {
    background: linear-gradient(180deg, #FFB351 0%, #F08541 100%);
}

.top4 {}

.top4>.fp-tableCell {}

.top4>.fp-tableCell>i {
    position: absolute;
    top: 5.8rem;
    left: 0.85rem;
}

.top4>.fp-tableCell>ul {
    justify-content: flex-start;
    margin-top: 0.7rem;
}

.top4>.fp-tableCell>ul>li {
    width: 13%;
    margin-right: 8.6%;
    position: relative;
    margin-bottom: 0.9rem;
}

.top4>.fp-tableCell>ul>li>i {}

.top4>.fp-tableCell>ul>li>span {
    position: absolute;
    top: -0.4rem;
    left: 0.05rem;
    width: 100%;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
    transform: translateX(-100%);
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}

.top4>.fp-tableCell>ul.on>li>span {
    opacity: 1;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}

.top4>.fp-tableCell>ul>li>b {
    font-size: .16rem;
    color: #fff;
    position: absolute;
    background: linear-gradient(-90deg, #3059F9 0%, #59A3F6 100%);
    border-radius: 22px 0px 22px 0px;
    padding: 0.07rem 0.18rem;
    text-align: center;
    right: -0.47rem;
    bottom: 0.27rem;
    -webkit-border-radius: 22px 0px 22px 0px;
    -moz-border-radius: 22px 0px 22px 0px;
    -ms-border-radius: 22px 0px 22px 0px;
    -o-border-radius: 22px 0px 22px 0px;
}

.top4>.fp-tableCell>ul>li>p {
    font-size: .2rem;
    color: #fff;
    position: absolute;
    font-weight: bold;
    bottom: -0.33rem;
    left: 0.35rem;
}

.top4>.fp-tableCell>ul>li>p>i {
    font-weight: normal;
    font-size: .16rem;
    margin-top: 0.1rem;
    color: #fff;
}

.top5 {
    padding-top: .8rem;
}

.top5>.fp-tableCell {}

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

.top5>.fp-tableCell>div>video {
    width: 100%;
}

.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(../image/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;
    padding-bottom: 0.4rem;
    position: relative;
}

.foot>.fp-tableCell>.bac>p>b {
    position: absolute;
    bottom: 0;
    color: #fff;
    width: 96%;
    font-size: .18rem;
    text-align: 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) {
    .top1>.fp-tableCell>div>p {
        margin-bottom: 0.15rem;
    }
}

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

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